@charset "UTF-8";

/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";

/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #CE5957;
  --title-color: #161921;
  --body-color: #74787C;
  --smoke-color: #F5F5F5;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-color: #8b8e95;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E0E0E0;
  --title-font: "Hind Madurai", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 70px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 24px;
}

.h6,
h6 {
  font-size: 20px;
}

/* Large devices */
@media (max-width: 1199px) {

  .h1,
  h1 {
    font-size: 40px;
  }

  .h2,
  h2 {
    font-size: 36px;
  }

  .h3,
  h3 {
    font-size: 30px;
  }

  .h4,
  h4 {
    font-size: 24px;
  }

  .h5,
  h5 {
    font-size: 20px;
  }

  .h6,
  h6 {
    font-size: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .h1,
  h1 {
    font-size: 36px;
  }

  .h2,
  h2 {
    font-size: 30px;
  }

  .h3,
  h3 {
    font-size: 26px;
  }

  .h4,
  h4 {
    font-size: 22px;
  }

  .h5,
  h5 {
    font-size: 18px;
  }

  .h6,
  h6 {
    font-size: 16px;
  }
}

/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
p.has-drop-cap {
  margin-bottom: 20px;
}

.page--item p:last-child .alignright {
  clear: right;
}

.blog-title,
.pagi-title,
.breadcumb-title {
  word-break: break-word;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
  color: var(--body-color);
}

.bypostauthor,
.gallery-caption {
  display: block;
}

.page-links,
.clearfix {
  clear: both;
}

.page--item {
  margin-bottom: 30px;
}

.page--item p {
  line-height: 1.8;
}

.content-none-search {
  margin-top: 30px;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.alignleft {
  display: inline;
  float: left;
  margin-bottom: 10px;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-bottom: 10px;
  margin-left: 1.5em;
  margin-right: 1em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 0 5px;
}

.wp-block-columns {
  margin-bottom: 1em;
}

figure.gallery-item {
  margin-bottom: 10px;
  display: inline-block;
}

figure.wp-block-gallery {
  margin-bottom: 14px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
  font-size: 12px;
  color: var(--body-color);
  line-height: 1.5;
  padding: .5em 0;
}

.wp-block-cover p:not(.has-text-color),
.wp-block-cover-image-text,
.wp-block-cover-text {
  color: var(--white-color);
}

.wp-block-cover {
  margin-bottom: 15px;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  margin: .5em 0;
  font-size: 14px;
}

.wp-block-media-text,
.wp-block-media-text.alignwide,
figure.wp-block-gallery {
  margin-bottom: 30px;
}

.wp-block-media-text.alignwide {
  background-color: var(--smoke-color);
}

.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
  line-height: 1.4;
}

.wp-block-latest-comments a {
  color: inherit;
}

.wp-block-button {
  margin-bottom: 10px;
}

.wp-block-button:last-child {
  margin-bottom: 0;
}

.wp-block-button .wp-block-button__link {
  color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: var(--title-color);
  color: var(--title-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

ol.wp-block-latest-comments li {
  margin: 15px 0;
}

ul.wp-block-latest-posts {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

ul.wp-block-latest-posts a {
  color: inherit;
}

ul.wp-block-latest-posts a:hover {
  color: var(--theme-color);
}

ul.wp-block-latest-posts li {
  margin: 15px 0;
}

.wp-block-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.wp-block-search .wp-block-search__input {
  width: 100%;
  max-width: calc(100% - 120px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding-left: 20px;
}

.wp-block-search .wp-block-search__button {
  margin: 0;
  width: 120px;
  border: none;
  height: 50px;
  color: #fff;
  background-color: var(--theme-color);
}

.wp-block-search .wp-block-search__button:hover {
  background-color: var(--title-color);
  opacity: 0.8;
}

ul.wp-block-rss a {
  color: inherit;
}

.wp-block-group.has-background {
  padding: 15px 15px 1px;
  margin-bottom: 30px;
}

.wp-block-table td,
.wp-block-table th {
  border-color: rgba(0, 0, 0, 0.1);
}

.wp-block-table.is-style-stripes {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .as-btn {
  top: 32px;
}

@media (max-width: 782px) {

  .logged-in .will-sticky .sticky-active.active,
  .logged-in .preloader .as-btn {
    top: 46px;
  }
}

@media (max-width: 600px) {

  .logged-in .will-sticky .sticky-active.active,
  .logged-in .preloader .as-btn {
    top: 0;
  }
}

.post-password-form .theme-input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 20px;
}

.post-password-form .theme-input-group .theme-input-style {
  width: 100%;
  max-width: calc(100% - 120px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding-left: 20px;
}

.post-password-form .theme-input-group .submit-btn {
  margin: 0;
  width: 120px;
  border: none;
  height: 50px;
  color: #fff;
  background-color: var(--theme-color);
}

.post-password-form .theme-input-group .submit-btn:hover {
  background-color: var(--title-color);
  opacity: 0.8;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 1em;
}

.page-links>.page-links-title {
  margin-right: 10px;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text),
.page-links>a {
  display: inline-block;
  padding: 5px 13px;
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-right: 10px;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text):hover,
.page-links>a:hover {
  opacity: 0.8;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: transparent;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text).current,
.page-links>a.current {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.page-links span.screen-reader-text {
  display: none;
}

.blog-single .wp-block-archives-dropdown {
  margin-bottom: 30px;
}

.blog-single.format-quote,
.blog-single.format-link,
.blog-single.tag-sticky-2,
.blog-single.sticky {
  border-color: transparent;
  position: relative;
}

.blog-single.format-quote .blog-content,
.blog-single.format-link .blog-content,
.blog-single.tag-sticky-2 .blog-content,
.blog-single.sticky .blog-content {
  background-color: var(--smoke-color);
  padding: 40px;
  border: none;
}

.blog-single.format-quote .blog-content:before,
.blog-single.format-link .blog-content:before,
.blog-single.tag-sticky-2 .blog-content:before,
.blog-single.sticky .blog-content:before {
  display: none;
}

.blog-single.format-quote:before,
.blog-single.format-link:before,
.blog-single.tag-sticky-2:before,
.blog-single.sticky:before {
  content: '\f0c1';
  position: absolute;
  font-family: 'Font Awesome 5 Pro';
  font-size: 5rem;
  opacity: 0.3;
  right: 15px;
  line-height: 1;
  top: 15px;
  color: var(--theme-color);
  z-index: 1;
}

.blog-single.tag-sticky-2::before,
.blog-single.sticky::before {
  content: "Featured";
  right: 0;
  top: 0;
  font-size: 18px;
  color: var(--white-color);
  background-color: var(--theme-color);
  font-family: var(--title-font);
  opacity: 1;
  text-transform: capitalize;
  padding: 10px 23px;
  font-weight: 400;
}

.blog-single.format-quote:before {
  content: "\f10e";
}

.blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories,
.blog-single .blog-content .wp-block-archives-dropdown {
  display: block;
  margin-bottom: 30px;
}

.blog-details .blog-single:before {
  display: none;
}

.blog-details .blog-single .blog-content {
  background-color: transparent;
  overflow: hidden;
}

.blog-details .blog-single.format-chat .blog-meta {
  margin-bottom: 20px;
}

.blog-details .blog-single.format-chat .blog-content>p:nth-child(2n) {
  background: var(--smoke-color);
  padding: 5px 20px;
}

.blog-details .blog-single.tag-sticky-2,
.blog-details .blog-single.sticky,
.blog-details .blog-single.format-quote,
.blog-details .blog-single.format-link {
  box-shadow: none;
  border: none;
  background-color: transparent;
}

.blog-details .blog-single.tag-sticky-2:before,
.blog-details .blog-single.sticky:before,
.blog-details .blog-single.format-quote:before,
.blog-details .blog-single.format-link:before {
  display: none;
}

.as-search {
  background-color: #f3f3f3;
  margin-bottom: 30px;
  border: 1px solid #f3f3f3;
}

.as-search .search-grid-content {
  padding: 30px;
  /* Small devices */
}

@media (max-width: 767px) {
  .as-search .search-grid-content {
    padding: 20px;
  }
}

.as-search .search-grid-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: -0.2em;
}

.as-search .search-grid-title a {
  color: inherit;
}

.as-search .search-grid-title a:hover {
  color: var(--theme-color);
}

.as-search .search-grid-meta>* {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.as-search .search-grid-meta>*:last-child {
  margin-right: 0;
}

.as-search .search-grid-meta a,
.as-search .search-grid-meta span {
  color: var(--body-color);
}

/* Large devices */
@media (max-width: 1199px) {

  .blog-single.format-quote:before,
  .blog-single.format-link:before,
  .blog-single.tag-sticky-2:before,
  .blog-single.sticky:before {
    font-size: 14px;
    padding: 8px 16px;
  }

  .blog-single.format-quote .blog-content,
  .blog-single.format-link .blog-content,
  .blog-single.tag-sticky-2 .blog-content,
  .blog-single.sticky .blog-content {
    padding: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .blog-single.format-quote:before,
  .blog-single.format-link:before,
  .blog-single.tag-sticky-2:before,
  .blog-single.sticky:before {
    font-size: 14px;
    padding: 8px 16px;
  }

  .blog-single.format-quote .blog-content,
  .blog-single.format-link .blog-content,
  .blog-single.tag-sticky-2 .blog-content,
  .blog-single.sticky .blog-content {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .wp-block-search .wp-block-search__input {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .wp-block-latest-comments {
    padding-left: 10px;
  }

  .page--content.clearfix+.as-comment-form {
    margin-top: 24px;
  }
}

/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}

@media (min-width: 1700px) {
  .as-container {
    --main-container: 1450px;
    -webkit-transform: translateX(-115px);
    -ms-transform: translateX(-115px);
    transform: translateX(-115px);
  }
}

@media (min-width: 1600px) {
  .as-container {
    --main-container: 1350px;
    -webkit-transform: translateX(-65px);
    -ms-transform: translateX(-65px);
    transform: translateX(-65px);
  }

  .as-container2 {
    --main-container: 1680px;
  }
}

@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/*------------------- 2.2. Grid -------------------*/
.slick-track>[class*=col] {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1199px) {
  .row:not([class*="gx-"]) {
    --bs-gutter-x: 30px;
  }
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

@media (min-width: 1500px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }

  .gx-25 {
    --bs-gutter-x: 25px;
  }

  .gx-40 {
    --bs-gutter-x: 40px;
  }
}

/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 60px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid var(--border-color);
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 9999px;
  border-radius: 0;
  font-size: 16px;
  width: 100%;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  color: var(--body-color);
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

select.style2,
.form-control.style2,
.form-select.style2,
textarea.style2,
input.style2 {
  border: 1px solid transparent;
  padding-left: 52px;
  background-image: none;
}

select.style2~i,
.form-control.style2~i,
.form-select.style2~i,
textarea.style2~i,
input.style2~i {
  color: var(--theme-color);
  font-weight: 400;
  top: 22px;
  left: calc((var(--bs-gutter-x) / 2) + 25px);
  max-width: 16px;
}

select.style2:focus,
.form-control.style2:focus,
.form-select.style2:focus,
textarea.style2:focus,
input.style2:focus {
  border-color: #eaeaea;
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

option:checked,
option:focus,
option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked~label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"]~label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"]~label:before {
  content: '';
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"]~label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"]~label::before {
  content: '\f111';
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked~label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group>i {
  display: inline-block;
  position: absolute;
  right: calc((var(--bs-gutter-x) / 2) + 25px);
  top: 21px;
  font-size: 16px;
  color: var(--body-color);
}

.form-group>i.fa-envelope {
  padding-top: 1px;
}

.form-group>i.fa-comment {
  margin-top: -2px;
}

.form-group.has-label>i {
  top: 50px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(.375em + 0.5875rem) right calc(.375em + .8875rem);
}

.row.no-gutters>.form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.slick-track>[class*=col] {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

.slick-track {
  min-width: 100%;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 2px 0;
  margin: 38px 0 30px 0;
  line-height: 0;
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.slick-dots li {
  display: inline-block;
  margin-right: 25px;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots button {
  font-size: 0;
  padding: 0;
  background-color: transparent;
  width: 8px;
  height: 8px;
  line-height: 0;
  border-radius: 9999px;
  border: none;
  background-color: var(--dots-bg, #D8D8D8);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
}

.slick-dots button:hover {
  border-color: var(--theme-color);
}

.slick-dots button:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}

.slick-dots .slick-active button {
  background-color: var(--theme-color);
}

.slick-dots .slick-active button::before {
  opacity: 1;
  visibility: visible;
}

.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.05);
  left: var(--pos-x, -100px);
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 60px) / -2);
  z-index: 2;
  border-radius: 0;
}

.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}

.slick-arrow.slick-next {
  right: var(--pos-x, -100px);
  left: auto;
}

.slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}

.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -70px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -17px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    margin-right: 40px;
  }

  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }

  .slick-dots {
    margin: 8px 0 38px 0;
  }
}

/*------------------- 2.5. Mobile Menu -------------------*/
.as-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.as-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: #ce5957;
}

.as-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.as-menu-wrapper .as-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -17px;
  top: 17px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 34px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.as-menu-wrapper .as-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.as-menu-wrapper .as-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.as-menu-wrapper.as-body-visible {
  opacity: 1;
  visibility: visible;
}

.as-menu-wrapper.as-body-visible .as-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.as-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.as-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.as-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.as-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.as-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}

.as-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}

.as-mobile-menu ul li.as-active>a {
  color: var(--theme-color);
}

.as-mobile-menu ul li.as-active>a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.as-mobile-menu ul li ul li {
  padding-left: 20px;
}

.as-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.as-mobile-menu ul .as-item-has-children>a .as-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.as-mobile-menu ul .as-item-has-children>a .as-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.as-mobile-menu ul .as-item-has-children.as-active>a .as-mean-expand:before {
  content: '\f068';
}

.as-mobile-menu>ul {
  padding: 0 40px;
}

.as-mobile-menu>ul>li:last-child {
  border-bottom: none;
}

.as-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
}

.as-menu-toggle.style-text,
.as-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.as-menu-toggle.style-text i,
.as-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.as-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .as-menu-wrapper .as-menu-area {
    width: 100%;
    max-width: 270px;
  }

  .as-mobile-menu>ul {
    padding: 0 20px;
  }
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--title-color);
}

.preloader .as-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}

.loader {
  width: 96px;
  height: 48px;
  display: inline-block;
  position: relative;
  background: #fff;
  border-radius: 48px 48px 0 0;
  box-sizing: border-box;
  overflow: hidden;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 12px;
  border-radius: 24px 24px 0 0;
  background: var(--theme-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.loader::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 32px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  background: var(--theme-color);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  box-sizing: border-box;
  -webkit-animation: animloader 2s linear infinite alternate;
  animation: animloader 2s linear infinite alternate;
}

@-webkit-keyframes animloader {
  0% {
    -webkit-transform: rotate(-70deg);
    transform: rotate(-70deg);
  }

  10% {
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  20%,
  45%,
  35% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  40%,
  30% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50%,
  60% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  55%,
  65%,
  75% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  70% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  85%,
  90% {
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
  }

  95% {
    -webkit-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  100%,
  93% {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
  }
}

@keyframes animloader {
  0% {
    -webkit-transform: rotate(-70deg);
    transform: rotate(-70deg);
  }

  10% {
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  20%,
  45%,
  35% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  40%,
  30% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50%,
  60% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  55%,
  65%,
  75% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  70% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  85%,
  90% {
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
  }

  95% {
    -webkit-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  100%,
  93% {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
  }
}

/*------------------- 3.2. Buttons -------------------*/
.as-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 22px 36.5px;
  border-radius: 0;
}

.as-btn:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 300%;
  background-color: var(--title-color);
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  z-index: -1;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.as-btn>i {
  margin-left: 5px;
}

.as-btn:hover,
.as-btn.active {
  color: var(--white-color);
}

.as-btn:hover::before,
.as-btn.active::before {
  height: 300%;
}

.as-btn.style2 {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  padding: 20px 34.5px;
}

.as-btn.style2:hover {
  color: var(--title-color);
}

.as-btn.style2:hover:before {
  background-color: var(--white-color);
}

.as-btn.style3:hover {
  color: var(--title-color);
}

.as-btn.style3:before {
  background-color: var(--white-color);
}

.as-btn.style4 {
  color: var(--title-color);
  background-color: var(--white-color);
}

.as-btn.style4:before {
  background-color: var(--theme-color);
}

.as-btn.style5 {
  background-color: var(--white-color);
  color: var(--theme-color);
  border: 2px solid #EEEEEE;
  padding: 20px 34.5px;
}

.as-btn.style5:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}

.as-btn.style5:hover:before {
  background-color: var(--theme-color);
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, #ffffff);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  border: none;
}

.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.play-btn>i {
  display: inline-block;
  width: var(--icon-size, 120px);
  height: var(--icon-size, 120px);
  line-height: var(--icon-size, 120px);
  text-align: center;
  background-color: var(--white-color);
  color: var(--theme-color);
  font-size: var(--icon-font-size, 1.5em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after,
.play-btn:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
}

.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}

.link-btn:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.link-btn:hover {
  color: var(--theme-color);
}

.link-btn:hover::before {
  width: 100%;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}

.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.scroll-btn:before {
  content: '';
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: white;
  border-radius: inherit;
  z-index: 1;
}

.scroll-btn:focus i,
.scroll-btn:hover i {
  background-color: var(--title-color);
  color: var(--white-color);
}

.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }

  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
}

.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }

  .scrollToTop {
    right: 20px;
  }

  .scrollToTop.show {
    bottom: 20px;
  }
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 16px);
  margin-top: -0.2em;
  font-size: 48px;
  line-height: 1.25;
}

.sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  font-family: var(--title-font);
  text-transform: uppercase;
  margin-top: -0.41em;
  margin-bottom: 22px;
  display: block;
}

.shadow-title {
  font-family: var(--title-font);
  font-size: 150px;
  font-weight: bold;
  line-height: initial;
  background: -webkit-linear-gradient(top, #E9E9E9 0%, transparent 84.54%);
  background: linear-gradient(180deg, #E9E9E9 0%, transparent 84.54%);
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.shadow-title.dark-color {
  background: -webkit-linear-gradient(top, #232732 0%, transparent 84.54%);
  background: linear-gradient(180deg, #232732 0%, transparent 84.54%);
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 16px);
  position: relative;
  z-index: 2;
}

.title-area .sec-title {
  margin-bottom: 15px;
}

.title-area.mb-0 .sec-title {
  margin-bottom: -0.41em;
}

.sec-btn {
  margin-bottom: var(--section-title-space);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .sec-title {
    font-size: 42px;
  }

  .shadow-title {
    font-size: 120px;
  }

  .title-area,
  .sec-title {
    --section-title-space: 75px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 18px;
  }

  .sec-title {
    font-size: 38px;
  }

  .shadow-title {
    font-size: 96px;
  }

  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }

  .title-area.mb-30,
  .sec-title.mb-30 {
    margin-bottom: 25px;
  }

  .title-area.mb-40,
  .sec-title.mb-40 {
    margin-bottom: 30px;
  }

  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 32px;
  }

  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 35px;
  }

  .title-area.mb-25,
  .sec-title.mb-25 {
    margin-bottom: 15px;
  }

  .title-area.mb-35,
  .sec-title.mb-35 {
    margin-bottom: 25px;
  }

  .sec-btn {
    --section-title-space: 65px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .sec-title {
    font-size: 34px;
  }

  .shadow-title {
    font-size: 88px;
  }

  .sub-title {
    margin-bottom: 12px;
  }

  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }

  .title-area.mb-30,
  .sec-title.mb-30 {
    margin-bottom: 20px;
  }

  .title-area.mb-40,
  .sec-title.mb-40 {
    margin-bottom: 25px;
  }

  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 27px;
  }

  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 28px;
  }

  .sec-btn {
    --section-title-space: 50px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sec-title {
    font-size: 30px;
  }

  .shadow-title {
    font-size: 60px;
  }

  .title-area {
    max-width: 372px;
  }

  .title-area.text-center {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .shadow-title {
    font-size: 50px;
    top: 55%;
  }

  .sec-title {
    font-size: 28px;
  }
}

/*------------------- 3.4. Common -------------------*/
.image-scale-hover {
  overflow: hidden;
}

.image-scale-hover img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  -ms-transform: scale(1.001);
  transform: scale(1.001);
}

.image-scale-hover:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: .35em .55em;
  border-radius: 50%;
}

.as-social {
  --icon-size: 40px;
}

.as-social a {
  display: inline-block;
  width: var(--icon-size);
  height: 40px;
  line-height: var(--icon-size);
  background-color: var(--smoke-color);
  color: var(--body-color);
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
}

.as-social a:last-child {
  margin-right: 0;
}

.as-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.as-social.style2 a {
  border-radius: 50%;
}

.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}

.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-group.style2 {
  gap: 20px;
  -webkit-column-gap: 55px;
  -moz-column-gap: 55px;
  column-gap: 55px;
}

.as-video {
  position: relative;
}

.as-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--black-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation,
.play-btn:after,
.play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
  animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.scalein.as-animated {
  --animation-name: scalein;
}

.slidetopleft.as-animated {
  --animation-name: slidetopleft;
}

.slidebottomright.as-animated {
  --animation-name: slidebottomright;
}

.slideinleft.as-animated {
  --animation-name: slideinleft;
}

.slideinright.as-animated {
  --animation-name: slideinright;
}

.slideinup.as-animated {
  --animation-name: slideinup;
}

.slideindown.as-animated {
  --animation-name: slideindown;
}

.rollinleft.as-animated {
  --animation-name: rollinleft;
}

.rollinright.as-animated {
  --animation-name: rollinright;
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}

.as-animated {
  opacity: 1;
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes rollinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}

@-webkit-keyframes rollinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}

/*=================================
    04. Website Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.widget_nav_menu>ul,
.widget_meta>ul,
.widget_pages>ul,
.widget_archive>ul,
.widget_categories>ul {
  margin: 0 0 -15px 0;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  background-color: var(--white-color);
  margin: 0 0 15px 0;
  padding: 17px 45px 17px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--body-color);
}

.widget_nav_menu a::before,
.widget_meta a::before,
.widget_pages a::before,
.widget_archive a::before,
.widget_categories a::before {
  content: '\f061';
  position: absolute;
  right: 25px;
  top: 16px;
  font-family: var(--icon-font);
  font-weight: 400;
  color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: #ffffff !important;
  background-color: var(--theme-color);
}

.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
  color: var(--white-color);
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}

.widget_nav_menu li:last-child a,
.widget_meta li:last-child a,
.widget_pages li:last-child a,
.widget_archive li:last-child a,
.widget_categories li:last-child a {
  border-bottom: none;
}

.widget_nav_menu li>span,
.widget_meta li>span,
.widget_pages li>span,
.widget_archive li>span,
.widget_categories li>span {
  text-align: center;
  position: absolute;
  right: 25px;
  top: 12px;
  font-size: 14px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu li:hover>span,
.widget_meta li:hover>span,
.widget_pages li:hover>span,
.widget_archive li:hover>span,
.widget_categories li:hover>span {
  color: var(--white-color);
}

.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.wp-block-archives a:not(:hover) {
  color: inherit;
}

.as-blog ul.wp-block-archives li {
  margin: 5px 0;
}

.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color);
  margin-bottom: 40px;
  position: relative;
}

.widget select,
.widget input {
  height: 55px;
  border: none;
  background-color: var(--input-bg, #fff);
  border-radius: 0;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.07em 0 29px 0;
}

.widget .search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.widget .search-form input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget .search-form button {
  border: none;
  width: 55px;
  height: 55px;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
}

.widget .search-form button:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: 1px solid #ececec;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10.5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 0;
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}

.tagcloud {
  margin-right: -10px;
  margin-bottom: -10px;
}

.recent-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post .media-img {
  margin-right: 15px;
  width: 150px;
}

.recent-post .media-img img {
  width: 100%;
}

.recent-post .post-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 -0.1em 0;
  font-family: var(--title-font);
}

.recent-post .recent-post-meta {
  margin-bottom: 4px;
}

.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
}

.recent-post .recent-post-meta a i {
  margin-right: 8px;
}

.wp-block-calendar,
.calendar_wrap {
  position: relative;
  background-color: #fff;
  padding-bottom: 0;
  border: none;
}

.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 14px;
  color: var(--title-color);
  font-weight: 500;
  z-index: 1;
}

.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
  color: inherit;
}

.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
  left: auto;
  right: 20px;
}

.wp-block-calendar caption,
.calendar_wrap caption {
  caption-side: top;
  text-align: center;
  color: var(--title-color);
  background-color: #f1dbbe;
}

.wp-block-calendar th,
.calendar_wrap th {
  font-size: 14px;
  padding: 5px 5px;
  border: none;
  text-align: center;
  border-right: 1px solid #fff;
  color: #01133c;
  font-weight: 500;
}

.wp-block-calendar th a,
.calendar_wrap th a {
  color: inherit;
}

.wp-block-calendar td,
.calendar_wrap td {
  font-size: 14px;
  padding: 5px;
  color: #01133c;
  border: 1px solid #ededed;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.wp-block-calendar #today,
.calendar_wrap #today {
  color: var(--theme-color);
  background-color: var(--white-color);
  border-color: #ededed;
}

.wp-block-calendar thead,
.calendar_wrap thead {
  background-color: #f6f6f6;
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
  display: none;
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sidebar-gallery .gallery-thumb {
  overflow: hidden;
}

.sidebar-gallery .gallery-thumb img {
  width: 100%;
}

.widget_shopping_cart {
  text-align: left;
}

.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.widget_shopping_cart .mini_cart_item {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 0 0 32px 110px;
  margin: 0 0 27px 0;
  min-height: 90px;
}

.widget_shopping_cart .remove {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--title-color);
  line-height: 1;
  font-size: 18px;
}

.widget_shopping_cart .remove:hover {
  color: var(--theme-color);
}

.widget_shopping_cart .img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 1px solid var(--border-color);
}

.widget_shopping_cart .product-title {
  font-size: 14px;
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
}

.widget_shopping_cart .amount {
  display: block;
  font-weight: 600;
  color: var(--title-color);
  font-size: 16px;
}

.widget_shopping_cart .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 12px;
}

.widget_shopping_cart .qut-btn {
  border: 1px solid var(--border-color);
  background-color: transparent;
  display: inline-block;
  background-color: transparent;
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 12px;
  z-index: 1;
  position: relative;
}

.widget_shopping_cart .qut-btn:hover {
  background-color: var(--title-color);
  border-color: transparent;
  color: var(--white-color);
}

.widget_shopping_cart .qty-input {
  border: 1px solid var(--border-color);
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 40px;
  font-size: 12px;
  padding: 0;
  height: 25px;
  margin: 0 -1px;
}

.widget_shopping_cart .subtotal {
  float: right;
  text-align: right;
  font-size: 12px;
  margin-top: 19px;
}

.widget_shopping_cart .subtotal>span:not(.amount) {
  color: var(--body-color);
  font-weight: 300;
}

.widget_shopping_cart .subtotal .amount {
  font-size: 12px;
  display: inline-block;
}

.widget_shopping_cart .total {
  color: var(--title-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
  font-size: 18px;
}

.widget_shopping_cart .total .amount {
  font-size: inherit;
  display: inline-block;
  color: var(--theme-color);
}

.widget_shopping_cart .as-btn {
  margin-right: 10px;
  padding: 16px 33px;
  font-weight: 500;
}

.widget_shopping_cart .buttons {
  margin: 0;
}

.sidebar-area ul.wp-block-latest-posts {
  margin-bottom: 0;
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
  margin-bottom: 0;
}

.sidebar-area .wp-block-tag-cloud a,
.sidebar-area .tagcloud a {
  border: none;
}

.sidebar-area .newsletter-form button {
  width: 100%;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  margin-top: 10px;
}

.sidebar-area .widget .wp-block-search {
  margin-bottom: 0;
}

.sidebar-area .wp-block-group__inner-container h2 {
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 20px;
  margin-top: -0.07em;
}

.sidebar-area ol.wp-block-latest-comments {
  padding: 0;
  margin: 0;
}

.sidebar-area ol.wp-block-latest-comments li {
  line-height: 1.5;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.recent-product .product-title {
  font-size: 16px;
}

.price_slider_wrapper {
  margin-top: -0.5em;
}

.price_slider_wrapper .price_label span {
  display: inline-block;
  color: var(--body-color);
}

.price_slider_wrapper .ui-slider {
  height: 4px;
  position: relative;
  width: 100%;
  background-color: #E0E0E0;
  border: none;
  margin-top: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 0;
}

.price_slider_wrapper .ui-slider-range {
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--theme-color);
}

.price_slider_wrapper .ui-slider-handle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 10.5px;
  padding: 0;
  border: none;
  cursor: pointer;
  position: absolute;
  margin-top: -3px;
  z-index: 2;
  box-shadow: 0px 8px 13px 0px rgba(255, 79, 38, 0.21);
  background-color: var(--theme-color);
  -webkit-transform: translateX(-1px);
  -ms-transform: translateX(-1px);
  transform: translateX(-1px);
}

.price_slider_wrapper .ui-slider-handle:focus {
  outline: none;
  box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15);
}

.price_slider_wrapper .ui-slider-handle:last-child {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}

.price_slider_wrapper button,
.price_slider_wrapper .button {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
  border-radius: 50px;
  border: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 7px 20px;
  min-width: 100px;
  font-size: 16px;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
  background-color: var(--title-color);
}

.product_list_widget {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.product_list_widget .recent-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.product_list_widget .recent-post:last-child {
  margin-bottom: 0;
}

.product_list_widget .recent-post .media-img {
  width: 70px;
  margin-right: 20px;
}

.product_list_widget .recent-post-title {
  font-size: 20px;
  margin-bottom: 7px;
}

.product_list_widget .recent-post-title a {
  color: inherit;
}

.product_list_widget .recent-post-title a:hover {
  color: var(--theme-color);
}

.product_list_widget .star-rating {
  font-size: 12px;
  margin-bottom: 3px;
}

.widget_download {
  background-color: var(--title-color);
}

.widget_download .widget_title {
  color: var(--white-color);
}

.donwload-media-wrap {
  margin-top: -4px;
  margin-bottom: -4px;
}

.download-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #212632;
}

.download-media_icon {
  margin-right: 15px;
}

.download-media_icon i {
  font-size: 32px;
  color: var(--white-color);
}

.download-media_title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: -4px;
}

.download-media_text {
  color: var(--white-color);
  font-size: 14px;
}

.download-media_btn {
  margin-left: auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
}

.download-media_btn:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.download-media:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget_offer {
  padding-top: 60px;
  padding-bottom: 60px;
}

.offer-banner {
  text-align: center;
}

.offer-banner .banner-logo {
  margin-bottom: 20px;
}

.offer-banner .banner-title {
  color: var(--black-color);
  max-width: 280px;
  margin: 0 auto 20px auto;
}

.offer-banner .offer {
  background-color: var(--white-color);
  padding: 30px 30px 60px 30px;
}

.offer-banner .offer-title {
  margin-bottom: 3px;
  text-transform: uppercase;
}

.offer-banner .offer-text {
  font-family: var(--title-font);
  margin-bottom: -0.3em;
}

.offer-banner .as-btn {
  margin-top: -30px;
}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }

  .widget_title {
    font-size: 20px;
  }

  .recent-post .post-title {
    font-size: 18px;
    line-height: 24px;
  }

  .widget_offer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }

  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .widget {
    padding: 30px 20px;
  }
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
}

.footer-widget .widget_title {
  position: relative;
  border: none;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
  border-bottom: 0;
  padding: 0 0 13px 0;
  margin: 0 0 38px 0;
  max-width: 275px;
}

.footer-widget .widget_title:before,
.footer-widget .widget_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  background-color: var(--theme-color);
}

.footer-widget .widget_title:after {
  width: 16px;
  border: 3px solid var(--title-color);
  height: 10px;
  background-color: transparent;
  bottom: -3px;
  left: 40px;
  -webkit-animation: footerLine 7s linear infinite;
  animation: footerLine 7s linear infinite;
}

.footer-widget.widget_meta,
.footer-widget.widget_pages,
.footer-widget.widget_archive,
.footer-widget.widget_categories,
.footer-widget.widget_nav_menu {
  margin-bottom: 40px;
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
  margin-top: -2px;
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 28px;
  margin-bottom: 25px;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  position: relative;
}

.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
  content: "\f356";
  font-weight: 900;
  left: 0;
  top: 0;
  color: inherit;
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.footer-widget.widget_meta a:hover:before,
.footer-widget.widget_pages a:hover:before,
.footer-widget.widget_archive a:hover:before,
.footer-widget.widget_categories a:hover:before,
.footer-widget.widget_nav_menu a:hover:before {
  color: var(--theme-color);
}

.footer-widget.widget_meta li>span,
.footer-widget.widget_pages li>span,
.footer-widget.widget_archive li>span,
.footer-widget.widget_categories li>span,
.footer-widget.widget_nav_menu li>span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 280px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2B2F3A;
}

.footer-widget .recent-post .media-img {
  margin-right: 20px;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .footer-logo {
  margin-bottom: 15px;
}

.as-widget-schedule {
  margin-top: -0.25em;
}

.as-widget-schedule .footer-info {
  padding-left: 0;
}

.footer-table {
  margin-top: -15px;
  border: none;
  margin-bottom: 0;
}

.footer-table th,
.footer-table td {
  border: none;
  padding: 8px 0;
  font-size: 16px;
}

.footer-table td {
  padding-left: 50px;
}

.footer-table th {
  padding-right: 13px;
  font-weight: 500;
  color: var(--white-color);
}

@-webkit-keyframes footerLine {
  0% {
    left: 40px;
  }

  50% {
    left: 0;
  }

  100% {
    left: 40px;
  }
}

@keyframes footerLine {
  0% {
    left: 40px;
  }

  50% {
    left: 0;
  }

  100% {
    left: 40px;
  }
}

.footer-text {
  margin-bottom: 25px;
  margin-top: -0.5em;
}

.footer-info-title {
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 10px;
  margin-top: -0.2em;
}

.footer-info {
  position: relative;
  margin: 0 0 25px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0 0 35px;
  max-width: 300px;
}

.footer-info:last-child {
  margin-bottom: 0;
}

.footer-info i {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  font-size: 10px;
}

.footer-info:nth-child(2) i {
  background-color: var(--theme-color);
}

.footer-info:nth-child(3) i {
  background-color: var(--title-color);
}

/*------------------- 4.2. Header  -------------------*/
.as-header {
  position: relative;
  z-index: 41;
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

.will-sticky .sticky-active.active {
  top: 0;
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  text-transform: uppercase;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .main-menu a {
    font-size: 16px;
  }
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu>ul>li {
  margin: 0 18px;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\f107";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  top: 1px;
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\f105";
  float: right;
  top: 3px;
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:before {
  content: "\f0ad";
  position: absolute;
  top: 8px;
  left: -3px;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 700;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 4px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
}

.main-menu ul.mega-menu>li>a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu>li>a:hover {
  padding-left: 0;
}

.menu-style1>ul>li>a {
  padding: 16.5px 0;
  color: var(--white-color);
}

.header-link-btn {
  color: var(--white-color);
  font-size: 16px;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 600;
}

.header-link-btn i {
  margin-right: 10px;
}

.header-link-btn:hover {
  color: var(--theme-color);
}

.header-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-info_icon {
  color: var(--title-color);
  font-size: 32px;
  margin: 0 15px 0 0;
}

.header-info_label {
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
}

.header-info_link {
  color: var(--title-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
}

.header-info_link a {
  color: inherit;
}

.header-info_link a:hover {
  color: var(--theme-color);
}

.header-search .form-group {
  margin: 0;
  width: 367px;
  max-width: 100%;
  position: relative;
}

.header-search input {
  background-color: var(--smoke-color);
  border: none;
  padding: 0 20px;
}

.header-search button {
  background-color: transparent;
  color: var(--theme-color);
  border: none;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.logo-style1 {
  padding: 20px 0;
  text-align: center;
}

@media (min-width: 767px) {
  .logo-style1 {
    position: relative;
    height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--smoke-color);
    padding: 0 55px 0 0;
    margin: 0;
  }

  .logo-style1:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    width: 99999px;
    background-color: inherit;
  }
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.header-links li:not(:last-child) {
  padding: 0 20px 0 0;
  margin: 0 17px 0 0;
}

.header-links li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  margin: -10px 0 0 0;
}

.header-social .social-title {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin: 0 10px 0 0;
}

.header-social a {
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.header-social a:last-child {
  margin-right: 0;
}

.header-social a:hover {
  color: var(--theme-color);
}

.dropdown-toggle::after {
  content: '\f107';
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 20px) !important;
  left: calc(50% - 10px) !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  text-align: center;
  border-color: var(--border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
}

.dropdown-menu a {
  color: var(--body-color);
}

.dropdown-menu a:hover {
  color: var(--theme-color);
}

.dropdown-menu:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

/* Header 1 ---------------------------------- */
.header-layout1 .header-top {
  background-color: var(--smoke-color);
  border-bottom: 1px solid #e9e9e9;
  padding: 16.5px 0;
}

.header-layout1 .menu-area {
  background-color: var(--title-color);
}

/* Small devices */
@media (max-width: 767px) {
  .header-search {
    margin: 0 0 20px 0;
  }
}

/* Header 2 ---------------------------------- */
.header-layout2 .header-top {
  background-color: var(--title-color);
  padding: 15px 0;
  --body-color: #fff;
}

.header-layout2 .header-top a,
.header-layout2 .header-top li,
.header-layout2 .header-top p {
  color: var(--body-color);
}

.header-layout2 .header-top a:hover {
  color: var(--theme-color);
}

.header-layout2 .header-top li:before {
  background-color: #464C5B;
}

.header-layout2 .dropdown-menu {
  --body-color: #74787C;
}

.header-layout2 .icon-btn {
  --icon-bg: #F5F5F5;
}

.header-layout2 .main-menu>ul>li {
  margin: 0 12px;
}

.header-layout2 .main-menu>ul>li>a {
  padding: 50px 0;
}

.header-layout2 .header-link-btn {
  margin-left: 15px;
  color: var(--theme-color);
}

.header-layout2 .header-link-btn:hover {
  color: var(--title-color);
}

.header-layout2 .as-menu-toggle {
  margin: 20px 0;
}

.logo-shape1 {
  padding: 20px 0;
  background-color: var(--theme-color);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-shape1:before,
.logo-shape1:after,
.logo-shape1 .shape {
  content: "";
  height: 100%;
  width: 2222px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  right: -67px;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
}

.logo-shape1:after {
  background-color: #C51726;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  z-index: -2;
}

.logo-shape1 .shape {
  right: -95px;
  background-color: rgba(197, 23, 38, 0.1);
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout2 .header-link-btn {
    display: none;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout2 .main-menu>ul>li>a {
    padding: 35px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-layout2 .as-menu-toggle {
    margin: 15px 0;
  }

  .logo-shape1 {
    max-width: 150px;
  }

  .logo-shape1:before,
  .logo-shape1:after {
    right: -40px;
  }

  .logo-shape1 .shape {
    right: -55px;
  }
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  position: relative;
  z-index: 2;
}

.footer-wrapper .newsletter-title {
  color: var(--white-color);
}

.widget-area {
  padding-top: var(--section-space);
  padding-bottom: 75px;
}

.copyright-wrap {
  padding: 29px 0;
}

.copyright-text {
  margin: 0;
}

.footer-layout1 {
  background-color: var(--title-color);
  --body-color: #8b8e95;
}

.footer-layout1 .copyright-wrap {
  padding: 40px 0;
  background-color: #1B1F29;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-layout1 .copyright-wrap {
    padding: 25px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-layout1 .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 38px;
  }
}

/* Footer 2 ---------------------------------- */
.footer-layout2 {
  --body-color: #8b8e95;
}

.footer-layout2 .widget-area {
  padding-top: 80px;
  padding-bottom: 55px;
}

.footer-layout2 .footer-top {
  padding-top: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid #262A35;
}

.footer-layout2 .copyright-wrap {
  padding: 45px 0;
  border-top: 1px solid #2A2F3D;
}

.footer-layout2 .copyright-text {
  text-align: center;
}

.footer-logo {
  background-color: #cd5252;
  padding: 30px 15px;
  text-align: center;
}

.newsletter-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}

.newsletter-wrap .newsletter-title {
  margin-bottom: 0;
  max-width: 420px;
}

.newsletter-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 424px;
}

.newsletter-form input {
  background-color: #252934;
  border: none;
}

.newsletter-form input:focus {
  background-color: #252934;
  color: var(--body-color);
}

.newsletter-form .as-btn {
  min-width: 150px;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-top .footer-logo {
    max-width: 280px;
    margin: 0 auto 30px auto;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-layout2 .widget-area {
    padding-top: 60px;
    padding-bottom: 35px;
  }

  .footer-layout2 .footer-top {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .footer-layout2 .copyright-wrap {
    padding: 30px 0;
  }

  .footer-wrapper .newsletter-title {
    font-size: 26px;
  }

  .footer-wrapper .newsletter-form {
    max-width: 380px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .newsletter-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }

  .newsletter-wrap .newsletter-title {
    text-align: center;
  }

  .footer-wrapper .newsletter-form {
    max-width: 500px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .newsletter-form .as-btn {
    min-width: 110px;
    padding: 22px 15px;
  }
}

/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  min-width: 450px;
  background-color: var(--theme-color);
  padding: 16.5px 0 16.5px 30px;
  position: relative;
}

.breadcumb-menu:after,
.breadcumb-menu:before {
  content: '';
  position: absolute;
}

.breadcumb-menu:after {
  left: 100%;
  bottom: 0;
  top: 0;
  width: 99999px;
  background-color: inherit;
}

.breadcumb-menu::before {
  left: -40px;
  top: 0;
  bottom: 0;
  border-top: 60px solid transparent;
  border-right: 40px solid var(--theme-color);
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: '/';
  position: relative;
  margin-left: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white-color);
  font-family: var(--title-font);
  text-transform: uppercase;
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 600;
  font-size: 16px;
  color: var(--white-color);
  font-family: var(--title-font);
  text-transform: uppercase;
}

.breadcumb-menu-wrap {
  min-height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
  margin: 90px 0 0 0;
}

.breadcumb-title {
  font-size: 60px;
  color: var(--white-color);
  margin: -0.3em 0 -0.35em 0;
}

.breadcumb-wrapper {
  background-color: var(--title-color);
  padding-top: 150px;
  overflow: hidden;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 48px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding-top: 80px;
  }

  .breadcumb-menu-wrap {
    margin: 50px 0 0 0;
  }

  .breadcumb-title {
    font-size: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-menu {
    padding-left: 0;
    min-width: 100%;
  }

  .breadcumb-menu:before,
  .breadcumb-menu:after {
    display: none;
  }

  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 14px;
  }

  .breadcumb-menu-wrap {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }

  .breadcumb-wrapper {
    text-align: center;
  }

  .breadcumb-title {
    font-size: 36px;
  }
}

/*------------------- 4.5. Pagination  -------------------*/
.as-pagination {
  margin-bottom: 30px;
}

.as-pagination ul {
  margin: 0;
  padding: 0;
}

.as-pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}

.as-pagination li:last-child {
  margin-right: 0;
}

.as-pagination li:first-child {
  margin-left: 0;
}

.as-pagination span,
.as-pagination a {
  display: inline-block;
  text-align: center;
  position: relative;
  border: none;
  color: var(--title-color);
  background-color: var(--smoke-color);
  font-family: var(--title-font);
  width: 55px;
  height: 55px;
  line-height: 55px;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
}

.as-pagination span.active,
.as-pagination span:hover,
.as-pagination a.active,
.as-pagination a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  box-shadow: none;
}

/* Small devices */
@media (max-width: 767px) {

  .as-pagination span,
  .as-pagination a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

/*------------------- 4.6. Blog  -------------------*/
blockquote {
  display: block;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  background-color: var(--quote-bg, #F5F5F5);
  padding: 50px 40px 50px 220px;
  margin: 35px 0;
  line-height: 1.667;
}

blockquote p,
blockquote pre {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}

blockquote p a,
blockquote pre a {
  color: inherit;
}

blockquote:before {
  content: '\f10e';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  width: 180px;
  height: 100%;
  text-align: center;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

blockquote cite {
  display: block;
  font-size: 18px;
  font-family: var(--body-font);
  position: relative;
  padding-left: 45px;
  line-height: 1;
  font-weight: 600;
  margin-top: 27px;
  margin-bottom: -0.2em;
  font-style: normal;
  color: var(--theme-color);
}

blockquote cite:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 30px;
  height: 2px;
  border-top: 2px solid var(--theme-color);
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  margin-right: 26px;
  font-size: 14px;
  color: var(--body-color);
}

.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
}

.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  color: var(--theme-color);
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-category {
  margin-bottom: -10px;
}

.blog-category a {
  display: inline-block;
  color: var(--white-color);
  padding: 4.5px 24.5px;
  margin-right: 5px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background-color: var(--theme-color);
}

.blog-category a:hover {
  background-color: var(--white-color);
  color: var(--body-color);
  border-color: var(--theme-color);
}

.blog-title a {
  color: inherit;
}

.blog-title a:hover {
  color: var(--theme-color);
}

.as-blog {
  margin-bottom: 30px;
}

.blog-inner-title {
  font-size: 36px;
  margin-top: -0.3em;
  margin-bottom: 30px;
}

.blog-author {
  margin-top: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--smoke-color);
}

.blog-author .auhtor-img {
  min-height: 100%;
}

.blog-author .auhtor-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.blog-author .author-name {
  font-size: 24px;
  margin-top: -0.2em;
  margin-bottom: 6px;
}

.blog-author .author-text {
  margin-bottom: 13px;
}

.blog-author .media-body {
  padding: 35px 40px 30px 40px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.blog-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--smoke-color);
  border-bottom: 1px solid var(--smoke-color);
  padding: 30px 0;
}

.blog-navigation .nav-text {
  font-size: 18px;
  font-family: var(--title-font);
  color: var(--title-color);
  display: inline-block;
  font-weight: 600;
}

.blog-navigation .nav-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.blog-navigation .nav-btn.next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.blog-navigation .nav-btn:hover .nav-text {
  color: var(--theme-color);
}

.blog-navigation .blog-btn {
  font-size: 38px;
  color: var(--smoke-color);
}

.blog-navigation .blog-btn:hover {
  color: var(--theme-color);
}

.blog-single {
  position: relative;
  margin-bottom: 60px;
}

.blog-single:not(.has-post-thumbnail) {
  padding: var(--blog-space-y, 60px) var(--blog-space-x, 60px);
  background-color: var(--smoke-color);
}

.blog-single .blog-title {
  margin-bottom: 13px;
  font-size: 36px;
}

.blog-single .as-btn {
  margin-top: 13px;
}

.blog-single .blog-date {
  color: var(--body-color);
}

.blog-single .blog-date i {
  color: var(--theme-color);
  margin: 0 10px 0 0;
}

.blog-single .share-links-title {
  font-size: 20px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 700;
  margin: 0 15px 0 0;
  display: inline-block;
}

.blog-single .share-links {
  margin: 14px 0 0 0;
  border-top: 1px solid var(--smoke-color);
  border-bottom: 1px solid var(--smoke-color);
  padding: 30px 0;
}

.blog-single .share-links>.row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-y: 20px;
}

.blog-single .share-links .tagcloud {
  display: inline-block;
}

.blog-single .social-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}

.blog-single .social-links li {
  display: inline-block;
  margin-right: 13px;
}

.blog-single .social-links li:last-child {
  margin-right: 0;
}

.blog-single .social-links a {
  line-height: 1;
  font-size: 16px;
  color: var(--title-color);
  text-align: center;
  display: block;
}

.blog-single .social-links a:hover {
  color: var(--theme-color);
}

.blog-single .blog-meta {
  margin: -0.3em 0 18px 0;
}

.blog-single .blog-content {
  margin: 0 0 0 0;
  padding: 0;
  position: relative;
}

.blog-single .blog-audio {
  line-height: 1;
}

.blog-single .blog-audio,
.blog-single .blog-img {
  position: relative;
  margin: 0 0 42px 0;
  background-color: var(--smoke-color);
}

.blog-single .blog-img {
  background-color: var(--smoke-color);
}

.blog-single .blog-img .slick-arrow {
  --pos-x: 30px;
  border: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.blog-single .blog-img .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.blog-single .blog-img .play-btn {
  --icon-size: 60px;
  --icon-font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}

.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.blog-details .blog-single {
  padding: 0;
  background-color: transparent;
  margin-bottom: -10px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 40px;
  }

  .blog-single .blog-audio,
  .blog-single .blog-img {
    margin: 0 0 30px 0;
  }

  .blog-single .blog-title {
    font-size: 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  blockquote {
    font-size: 16px;
    padding: 40px 20px 40px 120px;
  }

  blockquote:before {
    width: 100px;
    font-size: 52px;
  }

  blockquote cite {
    margin-top: 23px;
  }

  .blog-single {
    --blog-space-x: 30px;
  }

  .blog-inner-title {
    font-size: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  blockquote {
    padding: 100px 20px 40px 20px;
  }

  blockquote:before {
    height: 60px;
    width: 100%;
    font-size: 2.5rem;
  }

  .blog-inner-title {
    font-size: 26px;
  }

  .blog-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-author .auhtor-img img {
    width: 100%;
  }

  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 20px;
  }

  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.6;
  }

  .blog-single .share-links-title {
    font-size: 18px;
    display: block;
    margin: 0 0 10px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .blog-author .media-body {
    padding: 35px 20px 30px 20px;
  }

  .blog-navigation .nav-img {
    width: 50px;
  }

  .blog-navigation .nav-btn {
    gap: 8px;
  }

  .blog-navigation .nav-text {
    font-size: 14px;
  }

  .blog-navigation .blog-btn {
    display: none;
  }
}

/*------------------- 4.7. Comments  -------------------*/
.as-comment-form {
  margin-top: var(--blog-space-y, 60px);
  margin-bottom: 40px;
  padding: 60px;
  background-color: var(--smoke-color);
  position: relative;
}

.as-comment-form .row {
  --bs-gutter-x: 20px;
}

.as-comment-form .blog-inner-title {
  margin-bottom: 0px;
}

.as-comment-form .form-title {
  margin-top: -0.35em;
}

.as-comment-form .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}

.as-comment-form .form-text {
  margin-bottom: 25px;
}

.as-comment-form select,
.as-comment-form .form-control,
.as-comment-form .form-select,
.as-comment-form textarea,
.as-comment-form input {
  border: 1px solid var(--smoke-color);
}

.as-comments-wrap {
  margin-top: var(--blog-space-y, 60px);
  margin-bottom: var(--blog-space-y, 40px);
}

.as-comments-wrap .description p:last-child {
  margin-bottom: -0.5em;
}

.as-comments-wrap .comment-respond {
  margin: 30px 0;
}

.as-comments-wrap pre {
  background: #ededed;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.as-comments-wrap blockquote {
  background-color: #eaf8f9;
}

.as-comments-wrap li {
  margin: 0;
}

.as-comments-wrap .as-post-comment {
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  border-bottom: 1px solid var(--smoke-color);
}

.as-comments-wrap ul.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.as-comments-wrap ul.comment-list ul ul,
.as-comments-wrap ul.comment-list ul ol,
.as-comments-wrap ul.comment-list ol ul,
.as-comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}

.as-comments-wrap .comment-avater {
  width: 110px;
  height: 110px;
  margin-right: 25px;
  overflow: hidden;
}

.as-comments-wrap .comment-avater img {
  width: 100%;
}

.as-comments-wrap .comment-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: -6px;
  position: relative;
}

.as-comments-wrap .commented-on {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 400;
  color: var(--body-color);
}

.as-comments-wrap .commented-on i {
  margin-right: 7px;
  font-size: 0.9rem;
}

.as-comments-wrap .name {
  margin-bottom: 6px;
  font-size: 20px;
}

.as-comments-wrap .comment-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.as-comments-wrap .text {
  color: #6b6b6b;
  margin-bottom: -0.5em;
}

.as-comments-wrap .text:last-child {
  margin-bottom: 0;
}

.as-comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 80px;
}

.as-comments-wrap .reply_and_edit {
  position: absolute;
  top: 0;
  right: 0;
}

.as-comments-wrap .reply_and_edit a {
  margin-right: 10px;
}

.as-comments-wrap .reply_and_edit a:last-child {
  margin-right: 0;
}

.as-comments-wrap .reply-btn {
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-color);
  display: inline-block;
}

.as-comments-wrap .reply-btn i {
  margin-right: 7px;
}

.as-comments-wrap .reply-btn:hover {
  color: var(--title-color);
}

.as-comments-wrap .star-rating {
  font-size: 12px;
  margin-bottom: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 80px;
}

.as-comments-wrap.as-comment-form {
  margin: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .as-comments-wrap .children {
    margin-left: 40px;
  }

  .as-comment-form {
    padding: 45px 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .as-comments-wrap .as-post-comment {
    display: block;
  }

  .as-comments-wrap .star-rating {
    position: relative;
    top: 0;
    right: 0;
  }

  .as-comments-wrap .comment-top {
    display: block;
  }

  .as-comments-wrap .comment-avater {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .as-comments-wrap .children {
    margin-left: 40px;
  }

  .as-comments-wrap .children {
    margin-left: 30px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .as-comment-form {
    padding: 40px 15px;
  }
}

/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.as-hero-wrapper {
  position: relative;
}

.as-hero-wrapper .slick-arrow {
  --icon-size: 80px;
  --pos-x: 100px;
  font-size: 24px;
  z-index: 4;
  border-radius: 50%;
  z-index: 5;
  visibility: visible;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: var(--white-color);
}

.as-hero-wrapper .slick-arrow:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.as-hero-wrapper .btn-group {
  gap: 30px;
}

.hero-shape {
  position: absolute;
  bottom: 0%;
  right: 0;
}

.as-hero-bg {
  position: absolute;
  inset: 0;
}

.as-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .as-hero-wrapper .slick-arrow {
    --pos-x: 20px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .as-hero-wrapper .slick-arrow {
    --icon-size: 60px;
    font-size: 20px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .as-hero-wrapper .btn-group {
    gap: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .as-hero-wrapper .as-btn {
    padding: 17px 26px;
  }

  .as-hero-wrapper .as-btn.style2 {
    padding: 15px 24px;
  }
}

/* Hero 1 ---------------------------------- */
.hero-meta {
  margin-bottom: 30px;
  margin-top: -0.4em;
}

.hero-meta span {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  position: relative;
}

.hero-meta span:after {
  content: "";
  height: 2px;
  width: 30px;
  background-color: var(--white-color);
  display: inline-block;
  margin: 0 15px;
  position: relative;
  top: -4px;
}

.hero-meta span:last-child::after {
  display: none;
}

.hero-slider-1 .as-hero-slide {
  padding: 250px 0;
}

.hero-style1 .hero-title {
  color: var(--white-color);
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 46px;
}

.hero-style1 .hero-title:first-of-type {
  margin-bottom: 0 !important;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-slider-1 .as-hero-slide {
    padding: 180px 0;
  }

  .hero-style1 .hero-title {
    font-size: 62px;
    margin-bottom: 40px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-slider-1 .as-hero-slide {
    padding: 140px 0;
  }

  .hero-style1 .hero-title {
    font-size: 54px;
  }

  .hero-meta {
    margin-bottom: 25px;
  }

  .hero-meta span {
    font-size: 16px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style1 .hero-title {
    font-size: 46px;
  }

  .hero-slider-1 .as-hero-slide {
    padding: 100px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style1 {
    text-align: center;
  }

  .hero-style1 .hero-title {
    font-size: 40px;
  }

  .hero-style1 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-style1 .hero-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .hero-meta {
    margin-bottom: 20px;
  }

  .hero-meta span {
    font-size: 14px;
  }

  .hero-meta span:after {
    width: 20px;
    margin: 0 8px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-style1 .hero-title {
    font-size: 28px;
  }
}

/* Hero 2 ---------------------------------- */
.hero-slider-2 .as-hero-slide {
  padding: 220px 0 370px 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 73% calc(100% - 146px), 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 73% calc(100% - 146px), 0 100%, 0 0);
}

.hero-slider-2 .hero-shape {
  width: 27%;
  z-index: 2;
}

.hero-slider-2 .hero-shape img {
  width: 100%;
}

.hero-subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  position: relative;
  margin-bottom: 18px;
}

.hero-style2 {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-style2 .hero-title {
  color: var(--white-color);
  font-size: 96px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-style2 .hero-title:first-of-type {
  margin-bottom: 0 !important;
}

.hero-style2 .btn-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .hero-style2 .hero-title {
    font-size: 80px;
  }

  .hero-slider-2 .hero-shape {
    width: 32%;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-style2 .hero-title {
    font-size: 64px;
  }

  .hero-slider-2 .as-hero-slide {
    padding: 180px 0 300px 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 73% calc(100% - 116px), 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 73% calc(100% - 116px), 0 100%, 0 0);
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-slider-2 .as-hero-slide {
    padding: 140px 0 240px 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 68% calc(100% - 96px), 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 68% calc(100% - 96px), 0 100%, 0 0);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style2 .hero-title {
    font-size: 54px;
    line-height: 1.2;
  }

  .hero-slider-2 .as-hero-slide {
    padding: 90px 0 170px 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 74% calc(100% - 74px), 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 74% calc(100% - 74px), 0 100%, 0 0);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-style2 .hero-title {
    font-size: 42px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-style2 .hero-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-style2 .hero-title {
    font-size: 28px;
  }
}

/*------------------- 4.9. Error  -------------------*/
.error-number {
  font-size: 274px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 35px;
}

.error-title {
  font-size: 26px;
  margin-bottom: 3px;
}

.error-text {
  font-size: 20px;
}

/*------------------- 4.00. Popup Search  -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: var(--theme-color);
}

.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  /* Large devices */
}

@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}

.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--theme-color);
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}

.popup-search-box form input::-moz-placeholder {
  color: #fff;
}

.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}

.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}

.popup-search-box form input::-ms-input-placeholder {
  color: #fff;
}

.popup-search-box form input::placeholder {
  color: #fff;
}

.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  -ms-transform: scale(1.001);
  transform: scale(1.001);
}

.popup-search-box form button:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0;
}

.popup-search-box.show form {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/*------------------- 4.00. Wocommerce  -------------------*/
.woocommerce-message,
.woocommerce-info {
  position: relative;
  padding: 11px 20px 11px 50px;
  background-color: #d3d3d3;
  color: var(--body-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 0;
}

.woocommerce-message a,
.woocommerce-info a {
  color: var(--theme-color);
  text-decoration: underline;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: var(--title-color);
}

.woocommerce-message:before,
.woocommerce-info:before {
  content: '\f06a';
  font-family: var(--icon-font);
  font-weight: 400;
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  left: 20px;
  top: 11px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.woocommerce-notices-wrapper .woocommerce-message:before {
  content: '\f14a';
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.woocommerce-form-login-toggle .woocommerce-info a {
  color: inherit;
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
  color: var(--title-color);
}

.woocommerce-form-register,
.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 35px 40px 35px 40px;
  background-color: var(--smoke-color);
  margin-bottom: 50px;
  /* Extra small devices */
}

@media (max-width: 575px) {

  .woocommerce-form-register,
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 40px 20px;
  }
}

.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 20px;
}

.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}

.woocommerce-error {
  background-color: var(--error-color);
  color: #fff;
  list-style: none;
  padding: 10px 26px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border: 1px solid #ddd;
  margin: 0;
  border-top: none;
}

nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #ddd;
}

nav.woocommerce-MyAccount-navigation li a {
  color: var(--title-color);
  font-weight: 700;
  padding: 7px 17px;
  display: block;
}

nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.woocommerce-MyAccount-content h3 {
  margin-top: -0.3em;
}

.woocommerce-MyAccount-content .btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 700;
}

.woocommerce-MyAccount-content .btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

table.variations,
.woocommerce-grouped-product-list-item {
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

table.variations td,
.woocommerce-grouped-product-list-item td {
  border: none;
  vertical-align: middle;
  padding: 0 5px;
}

table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
  padding: 0;
}

table.variations label,
.woocommerce-grouped-product-list-item label {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
}

table.variations label a,
.woocommerce-grouped-product-list-item label a {
  color: var(--title-color);
}

table.variations label a:hover,
.woocommerce-grouped-product-list-item label a:hover {
  color: var(--theme-color);
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  border: 1px solid var(--border-color);
}

.woocommerce-product-attributes th p:last-child,
.woocommerce-product-attributes td p:last-child {
  margin-bottom: 0;
}

.woocommerce-grouped-product-list.group_table {
  border-collapse: collapse;
  margin-bottom: 15px;
}

.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
  font-size: 16px;
  color: var(--title-color);
}

.woocommerce-grouped-product-list.group_table label {
  margin: 0 0 0 10px;
  margin: 0 0 0 10px;
  font-family: var(--title-font);
  font-size: 18px;
}

.woocommerce-grouped-product-list.group_table .qty-input {
  border-color: #e3e6e9;
}

.woocommerce-grouped-product-list.group_table tr {
  border-bottom: 1px solid #e3e6e9;
}

.woocommerce-grouped-product-list.group_table tr:last-child {
  border-bottom: none;
}

.woocommerce-grouped-product-list.group_table td {
  padding: 30px 5px;
}

table.variations {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

table.variations td {
  padding: 0;
}

table.variations td.label {
  padding-right: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

table.variations select {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0;
  padding-right: 54px;
  padding-left: 20px;
  height: 50px;
}

table.variations .reset_variations {
  margin-left: 16px;
  display: inline-block;
  position: absolute;
  left: 100%;
  bottom: 25px;
}

.woocommerce-variation.single_variation {
  margin-bottom: 30px;
}

.woocommerce-variation.single_variation .price {
  color: var(--title-color);
  font-weight: 700;
}

.wooscp-table-items td.woocommerce-product-attributes-item__value {
  padding-left: 15px !important;
}

.wooscp-table-items a.added_to_cart.wc-forward {
  margin-left: 15px;
  text-decoration: underline;
}

#woosq-popup .product_meta {
  margin-top: 20px;
}

#woosq-popup .product_title {
  font-size: 24px;
  margin-bottom: 5px;
}

#woosq-popup .single-product .product .actions {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

#woosq-popup .single-product .product .actions .as-btn {
  padding: 17px 30px;
}

#woosq-popup .single-product .product .actions>div {
  height: auto;
  overflow: visible;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#woosq-popup .single-product .product .actions>div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.login-tab {
  margin-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-tab button.nav-link {
  background-color: var(--smoke-color);
  color: var(--title-color);
  padding: 11px 39px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 15px ​15px 0;
}

.login-tab button.nav-link.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.star-rating {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 14px;
}

.star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  color: #e1e1e1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--yellow-color);
  letter-spacing: 3px;
}

.rating-select label {
  margin: 0;
  margin-right: 10px;
}

.rating-select p.stars {
  margin-bottom: 0;
  line-height: 1;
}

.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  font-family: var(--icon-font);
  content: "\f005";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}

.rating-select p.stars a:hover~a::before {
  content: "\f005";
  font-weight: 400;
}

.rating-select p.stars:hover a::before {
  content: "\f005";
  font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
  content: "\f005";
  font-weight: 700;
}

.rating-select p.stars.selected a.active~a::before {
  content: "\f005";
  font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
  content: "\f005";
  font-weight: 700;
}

/* Small devices */
@media (max-width: 767px) {

  .woocommerce-message,
  .woocommerce-info {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 15px 10px 37px;
  }

  .woocommerce-message:before,
  .woocommerce-info:before {
    font-size: 16px;
    top: 10px;
    left: 15px;
  }
}

/*------------------- 4.00. Products  -------------------*/
.as-product {
  text-align: center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.as-product .product-title {
  font-size: 20px;
  margin: 10px 0 7px 0;
}

.as-product .product-title a {
  color: inherit;
}

.as-product .product-title a:hover {
  color: var(--theme-color);
}

.as-product .price {
  display: block;
  color: var(--body-color);
  font-weight: 500;
  margin-bottom: -0.45em;
  font-family: var(--title-font);
}

.as-product .price del {
  margin-left: 10px;
  color: #c5c5c5;
}

.as-product .product-img {
  background-color: var(--smoke-color);
  overflow: hidden;
  position: relative;
  margin: 0 0 30px 0;
  text-align: center;
  background-color: var(--smoke-color);
  z-index: 2;
}

.as-product .product-img img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.as-product .category {
  color: var(--white-color);
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  padding: 3px 10px;
  display: inline-block;
  background-color: var(--theme-color);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.as-product .star-rating {
  margin: 0 auto 5px auto;
  width: 93px;
}

.testi-box .star-rating {
  margin: 0 auto 5px auto;
  width: 93px;
}
.as-product .actions {
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--title-color);
  z-index: 3;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.as-product .actions .icon-btn {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.as-product .actions>* {
  margin: 0 var(--icon-gap-x, 5px);
}

.as-product .actions>*>a {
  margin: 0;
}

.as-product .icon-btn {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.as-product .icon-btn:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.as-product .icon-btn:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.as-product .icon-btn:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.as-product .action-btn {
  background-color: var(--white-color);
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 13px 25px;
}

.as-product:hover .actions {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.as-product:hover .icon-btn {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.as-product.list-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  height: 100%;
}

.as-product.list-view .product-img {
  width: 100%;
  max-width: 200px;
  margin: 0;
}

.as-product.list-view .star-rating {
  margin: 0 auto 10px 0;
  width: 93px;
}

.as-product.list-view .product-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid var(--border-color);
  border-left: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 25px;
}

.as-product.list-view .actions {
  --btn-size: 35px;
  --btn-font-size: 13px;
  --icon-gap-x: 2px;
}

.as-product.list-view .action-btn {
  padding: 8px 15px;
}

.as-product.list-view .icon-btn .category {
  padding: 0px 10px;
}

.as-product.list-view .product-title {
  font-size: 18px;
  margin: 0 0 5px 0;
}

.as-product.list-view .product-price {
  font-size: 14px;
}

.mfp-content {
  margin: 1.5rem auto;
}

.mfp-content .product-details-img {
  padding-top: 15px;
}

.mfp-content .product-about {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-content .container {
  position: relative;
}

.mfp-content .product-big-img {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.as-sort-bar {
  padding: 0;
  margin: 0 0 40px 0;
  border-radius: 5px;
}

.as-sort-bar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 15px;
}

.as-sort-bar select {
  height: 50px;
  border: 1px solid var(--border-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  font-size: 16px;
  margin: 0;
  color: var(--body-color);
}

.as-sort-bar .woocommerce-result-count {
  margin-bottom: 0;
  color: var(--body-color);
}

.as-sort-bar .nav a {
  display: inline-block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--body-color);
  margin: 0 0 0 20px;
}

.as-sort-bar .nav a.active,
.as-sort-bar .nav a:hover {
  color: var(--theme-color);
}

.product-big-img {
  background-color: var(--smoke-color);
  text-align: center;
}

.quantity {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.quantity>.screen-reader-text {
  display: inline-block;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  margin: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: 10px;
}

.quantity .qty-btn,
.quantity .qty-input {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-right: none;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-align: center;
  color: var(--body-color);
  font-size: 18px;
  font-weight: 600;
}

.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
  border-right: 1px solid var(--border-color);
}

.quantity .qty-btn {
  font-size: 16px;
}

.product_meta {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--body-font);
  margin: 35px 0 0 0;
}

.product_meta>span {
  display: block;
  margin-bottom: 5px;
  color: var(--title-color);
  font-weight: bold;
}

.product_meta>span:last-child {
  margin-bottom: 0;
}

.product_meta>span a {
  color: inherit;
}

.product_meta>span a:hover {
  color: var(--theme-color);
}

.product_meta>span>a,
.product_meta>span>span {
  position: relative;
  color: var(--body-color);
  font-weight: 400;
}

.product_meta>span>a:after,
.product_meta>span>span:after {
  content: ",";
  margin-right: 5px;
}

.product_meta>span>a:last-child:after,
.product_meta>span>span:last-child:after {
  display: none;
}

.product_meta>span>a:first-child,
.product_meta>span>span:first-child {
  margin-left: 7px;
}

.product-tab-style1 {
  border-bottom: 1px solid #e4e4e4;
  margin: 95px 0 40px 0;
}

.product-tab-style1 li {
  margin: 0 45px 0 0;
}

.product-tab-style1 li:last-child {
  margin-right: 0;
}

.product-tab-style1 a {
  font-family: var(--title-font);
  color: var(--title-color);
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 0 0 17px 0;
  text-transform: capitalize;
}

.product-tab-style1 a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.product-tab-style1 a.active:before {
  width: 100%;
}

#productTabContent {
  margin-bottom: -10px;
}

.product-inner-list>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.product-inner-list li {
  position: relative;
  padding-left: 15px;
}

.product-inner-list li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.product-about .product-title {
  margin: 0 0 10px 0;
  font-size: 36px;
}

.product-about>.price {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color);
  display: inline-block;
  margin-bottom: 10px;
}

.product-about>.price del {
  color: #D3D3D3;
  font-weight: 500;
  margin-left: 15px;
}

.product-about .product-rating {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 2px;
  font-size: 16px;
  line-height: 20px;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  margin-bottom: 25px;
}

.product-about .product-rating .star-rating {
  width: 80px;
  font-size: 12px;
  margin-right: 8px;
}

.product-about .woocommerce-review-link {
  color: var(--body-color);
}

.product-about .checklist {
  margin: 30px 0 40px 0;
}

.product-about .checklist li {
  font-weight: 400;
}

.product-about .actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 33px 0 30px 0;
}

.product-about .actions .as-btn.style2 {
  padding: 0;
  min-height: 50px;
  line-height: 50px;
}

.product-about .actions .as-btn .btn-icon {
  padding: 10.5px 15px 10.5px 15px;
}

.product-about .actions .icon-btn {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.14);
}

.product-about .quantity .qty-input {
  width: 100px;
  height: 60px;
  border: none;
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 0 25px;
  text-align: left;
  font-weight: 500;
}

.product-about .quantity .qty-btn {
  color: var(--white-color);
  background-color: transparent;
  position: absolute;
  right: 25px;
  height: auto;
  width: auto;
  border: none;
}

.product-about .quantity .quantity-minus {
  bottom: 8px;
}

.product-about .quantity .quantity-plus {
  top: 8px;
}

.product-details .as-comments-wrap {
  margin-top: 0;
}

.product-details .border-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.product-details .border-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background-color: var(--theme-color);
}

.product-inner-title {
  font-size: 32px;
  border-bottom: 1px solid var(--border-color);
  padding: 0 0 7px 0;
  margin: 0 0 30px 0;
}

.related-product-wrapper {
  padding-top: 115px;
}

/* Large devices */
@media (max-width: 1199px) {
  .as-sort-bar select {
    min-width: auto;
  }

  .as-product.list-view .product-img {
    max-width: 150px;
  }

  .product-tab-style1 {
    margin: 55px 0 40px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .product-big-img {
    margin-bottom: 40px;
  }

  .as-product-box.list-view .product-img {
    max-width: 150px;
  }

  .as-sort-bar .row {
    --bs-gutter-x: 20px;
  }

  .as-sort-bar .nav a:last-child {
    margin-right: 0;
    padding-right: 0;
  }

  .as-sort-bar .nav a:last-child:before {
    display: none;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .as-sort-bar {
    text-align: center;
  }

  .as-sort-bar .nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .as-sort-bar select {
    margin: 0 auto;
  }

  .as-product-box.list-view .product-img {
    max-width: 130px;
  }

  .as-product-box.list-view .actions {
    --btn-size: 30px;
    --btn-font-size: 10px;
    --icon-gap-x: 2px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .product-about .actions {
    gap: 15px 15px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .as-product.list-view .product-img {
    max-width: 130px;
  }
}

/*------------------- 4.00. Cart  -------------------*/
.woocommerce-cart-form {
  text-align: center;
}

.cart_table {
  border: 1px solid #eaf0f2;
  margin-bottom: 45px;
}

.cart_table thead {
  background-color: #ecf0f1;
}

.cart_table thead th {
  border: none !important;
}

.cart_table td:before,
.cart_table th {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  border: none;
  padding: 27px 15px;
}

.cart_table td:before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.cart_table td {
  border: none;
  border-bottom: 1px solid #f3f3f3;
  color: #8b8b8b;
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
}

.cart_table .product-quantity {
  color: var(--title-color);
}

.cart_table .product-quantity input {
  position: relative;
  top: -2px;
}

.cart_table .cart-productname {
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--body-color);
}

.cart_table .cart-productimage {
  display: inline-block;
  border: 2px solid var(--smoke-color);
}

.cart_table .remove {
  color: var(--theme-color);
  font-size: 18px;
}

.cart_table .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart_table .qut-btn {
  border: 2px solid var(--smoke-color);
  background-color: transparent;
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 16px;
  border-radius: 4px;
}

.cart_table .qut-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.cart_table .qty-input {
  vertical-align: middle;
  border: 2px solid var(--smoke-color);
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: var(--title-color);
  font-weight: 700;
  margin: 0 10px;
  border-radius: 4px;
  padding: 0;
  /* Firefox */
}

.cart_table .qty-input::-moz-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-webkit-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input:-ms-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-ms-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-webkit-outer-spin-button,
.cart_table .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart_table .qty-input[type=number] {
  -moz-appearance: textfield;
}

.cart_table .actions {
  text-align: right;
  vertical-align: middle;
}

.cart_table .actions>.as-btn {
  font-size: 16px;
  padding: 17px 28px;
  margin-right: 15px;
}

.cart_table .actions>.as-btn:last-child {
  margin-right: 0;
}

.cart_table .as-cart-coupon {
  float: left;
  margin: 0;
  width: 455px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cart_table .as-cart-coupon input {
  height: 50px;
  width: calc(100% - 200px);
  margin-right: 10px;
}

.cart_table .as-cart-coupon .as-btn {
  font-size: 16px;
  padding: 17px 22px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.cart_totals {
  border: 1px solid #ecf0f1;
}

.cart_totals th,
.cart_totals td {
  vertical-align: top;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid #ecf0f1;
  font-size: 14px;
  color: var(--title-color);
  width: 55%;
}

.cart_totals th:first-child,
.cart_totals td:first-child {
  width: 45%;
  background-color: #f9fbfb;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
}

.cart_totals .shipping-calculator-button {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--title-color);
  font-weight: 700;
}

.cart_totals .shipping-calculator-button:hover {
  color: var(--theme-color);
}

.cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px;
}

.cart_totals .woocommerce-shipping-methods {
  margin-bottom: 0;
}

.cart_totals .shipping-calculator-form {
  display: none;
}

.cart_totals .shipping-calculator-form p:first-child {
  margin-top: 20px;
}

.cart_totals .shipping-calculator-form p:last-child {
  margin-bottom: 0;
}

.cart_totals .shipping-calculator-form .as-btn {
  padding: 5px 30px;
}

.cart_totals .amount {
  font-weight: 700;
}

.cart_totals .order-total .amount {
  color: var(--theme-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .cart_table th {
    padding: 23px 8px;
    font-size: 14px;
  }

  .cart_table .cart-productname {
    font-size: 14px;
  }

  .cart_table .as-cart-coupon {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cart_table .actions {
    text-align: center;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .cart_table {
    text-align: left;
    min-width: auto;
    border-collapse: separate;
    border-spacing: 0 20px;
    border: none;
  }

  .cart_table thead {
    display: none;
  }

  .cart_table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid #f3f3f3;
    border-bottom: none;
  }

  .cart_table td::before {
    display: block;
  }

  .cart_table td:last-child {
    border-bottom: 1px solid #f3f3f3;
  }

  .cart_table td.actions {
    padding-left: 15px;
    text-align: center;
  }

  .cart_table td.actions>.as-btn {
    margin-top: 10px;
    margin-right: 0;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .cart_table td.actions>.as-btn:last-child {
    margin-right: auto;
  }

  .cart_table .as-cart-coupon {
    width: 100%;
    text-align: center;
    float: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    padding-bottom: 10px;
  }

  .cart_table .as-cart-coupon input {
    width: 100%;
    margin-bottom: 10px;
  }

  .cart_totals th,
  .cart_totals td {
    padding: 15px 10px;
  }

  .cart_totals th:first-child,
  .cart_totals td:first-child {
    width: 17%;
    line-height: 1.4;
  }
}

/*------------------- 4.00. Checkout  -------------------*/
.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
  margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
  margin-bottom: 0;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: -35px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above {
  position: relative;
  bottom: -30px;
}

.woocommerce-checkout .select2-dropdown {
  border: 1px solid #e3e6e9;
  border-top: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .form-control:focus {
  color: var(--body-color);
}

#ship-to-different-address {
  margin-top: 15px;
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #e3e6e9;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  padding-left: 30px;
  padding-right: 25px;
}

.woocommerce-billing-fields .form-row {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  content: '\f107';
  font-family: var(--icon-font);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0;
  border: none;
  top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
  line-height: 60px;
  margin-right: 18px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  border-radius: 0;
  background-position: right 13px center;
}

.shipping-calculator-form .as-btn {
  font-size: 14px;
  padding: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: none;
  vertical-align: top;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
}

.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}

.checkout-ordertable .order-total .amount {
  color: var(--theme-color);
}

.checkout-ordertable input[type="hidden"]~label {
  color: var(--theme-color);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid #ededed;
  text-align: right;
  padding: 5px 20px;
}

.checkout-ordertable th {
  text-align: left;
}

.woocommerce-checkout-payment {
  text-align: left;
}

.woocommerce-checkout-payment ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.woocommerce-checkout-payment ul li {
  padding-top: 10px;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 16px;
}

.woocommerce-checkout-payment ul input[type="radio"]~label {
  margin-bottom: 19px;
  color: var(--body-color);
}

.woocommerce-checkout-payment ul input[type="radio"]~label img {
  margin-bottom: -2px;
  margin-left: 10px;
}

.woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}

.woocommerce-checkout-payment .payment_box {
  color: #a1b1bc;
  background-color: #ecf0f1;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}

.woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

.as-checkout-wrapper form.woocommerce-form {
  margin-bottom: 25px;
}

/* Small devices */
@media (max-width: 767px) {
  tfoot.checkout-ordertable th {
    display: none;
  }

  .woocommerce-checkout-payment ul input[type="radio"]~label img {
    max-width: 150px;
  }

  .checkout-ordertable th,
  .checkout-ordertable td {
    padding: 5px 20px 5px 60px;
  }
}

/*------------------- 4.00. Wishlist  -------------------*/
.tinv-wishlist input[type=checkbox] {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  vertical-align: middle;
  width: auto;
  height: auto;
}

.tinv-wishlist .tinv-header {
  margin-top: -0.8rem;
}

.tinv-wishlist .cart-empty {
  padding: 12px 25px;
  background-color: #eee;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

.tinv-wishlist p.return-to-shop .button {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
  margin-top: 10px;
  font-weight: 700;
}

.tinv-wishlist p.return-to-shop .button:Hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.tinv-wishlist table {
  border: none;
}

.tinv-wishlist table th {
  color: var(--title-color);
}

.tinv-wishlist table td,
.tinv-wishlist table th {
  padding: 15.3px 10px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.tinv-wishlist table thead {
  background-color: var(--smoke-color);
}

.tinv-wishlist .product-cb,
.tinv-wishlist .product-remove {
  width: 40px;
  text-align: center;
}

.tinv-wishlist .product-thumbnail {
  width: 110px;
}

.tinv-wishlist .stock.in-stock {
  margin-bottom: 0;
}

.tinv-wishlist ins {
  text-decoration: none;
}

.tinv-wishlist .product-remove button {
  border: none;
  height: 22px;
  width: 22px;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
}

.tinv-wishlist .tinvwl-mobile {
  display: none;
}

.tinv-wishlist .social-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 295px;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tinv-wishlist .social-buttons ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.tinv-wishlist table.tinvwl-table-manage-list {
  font-size: 16px;
}

.tinv-wishlist .product-stock i {
  margin-right: 5px;
}

.tinv-wishlist .tinv-modal .icon_big_times {
  margin-bottom: 5px;
  color: var(--theme-color);
}

.tinv-wishlist button.button {
  border: none;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: #fff;
  padding: 1px 15px;
  min-width: 140px;
}

.tinv-wishlist button.button.mask-btn {
  padding: 0;
}

.tinv-wishlist button.button .btn-text-mask {
  padding: 0.5px 21px;
}

.tinv-wishlist button.button:hover {
  background-color: var(--title-color);
  color: #fff;
}

.tinv-wishlist button.button i {
  font-size: 14px !important;
  margin-right: 3px !important;
}

.tinv-wishlist th,
.tinv-wishlist td.product-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title-font);
}

.tinv-wishlist td.product-name a {
  color: var(--body-color);
}

.tinv-wishlist td.product-name a:hover {
  color: var(--theme-color);
}

.tinv-wishlist td.product-price del {
  margin-left: 8px;
  font-size: 0.9em;
}

.tinv-wishlist .social-buttons>span {
  font-weight: 700;
  margin-right: 10px;
  font-family: var(--title-font);
  color: var(--title-color);
}

.tinv-wishlist .social-buttons li {
  display: inline-block;
}

.tinv-wishlist .social-buttons li a.social {
  background-color: var(--theme-color);
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  margin-left: 3px;
}

.tinv-wishlist .social-buttons li a.social:first-child {
  margin-left: 0;
}

.tinv-wishlist .social-buttons li a.social i {
  line-height: inherit;
}

.tinv-wishlist .social-buttons li a.social:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .tinvwl-full {
    display: none;
  }

  .tinv-wishlist .tinvwl-mobile {
    display: block;
  }

  .tinvwl-txt {
    display: none;
  }

  .product-stock {
    width: 40px;
    text-align: center;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .tinv-wishlist table {
    table-layout: fixed;
  }

  .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
  .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
    display: none;
  }

  .tinv-wishlist table td,
  .tinv-wishlist table th {
    border: 1px solid var(--border-color);
  }

  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
    display: block;
    width: 100% !important;
    text-align: center;
  }

  .product-name {
    text-align: center;
  }

  .tinv-wishlist table td,
  .tinv-wishlist table th {
    border-bottom: none;
  }

  .tinv-wishlist table tbody {
    border-bottom: 1px solid var(--border-color);
  }

  .tinv-wishlist .social-buttons {
    max-width: 100%;
    margin-left: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tinv-wishlist .social-buttons ul {
    margin-left: unset;
    margin-top: 5px;
  }

  .tinvwl-txt {
    display: inline-block;
  }
}

/*------------------- 4.00. Shape  -------------------*/
.position-relative {
  z-index: 1;
}

.footer-shape1,
.footer-shape2 {
  position: absolute;
  z-index: -1;
}

.footer-shape1 {
  top: 0;
  left: -70px;
  -webkit-animation: movingX 10s linear infinite;
  animation: movingX 10s linear infinite;
}

.footer-shape2 {
  top: 0;
  right: 0;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.body-shape1,
.body-shape2,
.body-shape3,
.body-shape4,
.body-shape5,
.body-shape6 {
  position: absolute;
  z-index: -1;
  max-width: 100%;
}

.body-shape1 {
  top: 0;
  right: 0;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.body-shape2 {
  bottom: 4%;
  right: 0;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

.body-shape3 {
  left: 0;
  top: 0;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.body-shape4 {
  right: 0;
  bottom: 0;
  -webkit-animation: movingX 10s linear infinite;
  animation: movingX 10s linear infinite;
}

.body-shape5 {
  top: 0;
  right: 0;
}

.body-shape6 {
  top: 0;
  right: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {

  .body-shape5,
  .body-shape6 {
    max-width: 47%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .body-shape2 {
    max-width: 300px;
  }

  .body-shape5 {
    max-width: 73.2%;
    top: unset;
    bottom: 0;
  }

  .body-shape6 {
    max-width: 70%;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .body-shape5 {
    max-width: 88%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-shape1 {
    max-width: 300px;
  }

  .footer-shape2 {
    max-width: 200px;
  }

  .body-shape2 {
    max-width: 150px;
  }

  .body-shape5 {
    max-width: 100%;
  }
}

/*------------------- 4.00. Service  -------------------*/
/* Service 1 ---------------------------------- */
.service-box {
  background-color: var(--smoke-color);
  position: relative;
}

.service-box_img {
  overflow: hidden;
}

.service-box_img img {
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.service-box_icon {
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  background-color: var(--white-color);
  text-align: center;
}

.service-box_content {
  background-color: var(--theme-color);
  width: calc(100% - var(--icon-size, 100px));
  position: absolute;
  bottom: 80px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  right: 0;
  max-height: var(--icon-size, 100px);
  padding: 30px;
  overflow: hidden;
}

.service-box_title,
.service-box_number,
.service-box_text {
  color: var(--white-color);
}

.service-box_title {
  font-size: 24px;
  margin-bottom: -0.45em;
  font-weight: 600;
}

.service-box_title a {
  color: inherit;
}

.service-box_number {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -0.55em;
  margin-bottom: 2px;
  display: block;
  letter-spacing: 2px;
}

.service-box_text {
  margin-top: 18px;
  margin-bottom: -0.5em;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.service-box_btn {
  display: block;
  overflow: hidden;
  color: var(--title-color);
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--title-font);
  padding: 27px 30px;
  height: 80px;
}

.service-box_btn i {
  margin-left: 5px;
}

.service-box_btn:hover {
  color: var(--theme-color);
}

.service-box:hover .service-box_content {
  max-height: 180px;
}

.service-box:hover .service-box_text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.service-box:hover .service-box_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .service-box_icon {
    --icon-size: 90px;
  }

  .service-box_content {
    --icon-size: 90px;
    padding: 27px 15px;
  }

  .service-box_title {
    font-size: 20px;
  }

  .service-box_number {
    font-size: 13px;
  }

  .service-box_text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 200px;
  }
}

/* Service 2 ---------------------------------- */
.service-card {
  position: relative;
  --space: 30px;
}

.service-card_img {
  overflow: hidden;
}

.service-card_img img {
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.service-card_content {
  background-color: var(--white-color);
  position: relative;
  padding: 40px 40px 40px 60px;
  max-width: calc(100% - var(--space)*2);
  margin-left: var(--space);
  margin-top: -50px;
}

.service-card_title {
  font-size: 24px;
  margin-top: -0.42em;
  margin-bottom: 12px;
}

.service-card_title a {
  color: inherit;
}

.service-card_title a:hover {
  color: var(--theme-color);
}

.service-card_number {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: calc(0px - var(--space));
}

.service-card_number::before {
  content: "";
  background-color: transparent;
  border-style: solid;
  border-width: 0 30px 20px 0;
  border-color: transparent #B8101F transparent transparent;
  position: absolute;
  left: 0;
  top: 100%;
}

.service-card_text {
  margin-bottom: 0.5em;
  max-width: 300px;
  line-height: 1.2;
}

.service-card_btn {
  display: block;
  color: var(--white-color);
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--title-font);
  background-color: var(--theme-color);
  padding: 20px 60px;
  max-width: calc(100% - var(--space)*2);
  margin-left: var(--space);
}

.service-card_btn i {
  margin-left: 5px;
}

.service-card_btn:hover {
  background-color: var(--smoke-color);
  color: var(--title-color);
}

.service-card:hover .service-card_img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Medium devices */
@media (max-width: 991px) {
  .service-card_content {
    padding: 40px 15px 40px 45px;
  }

  .service-card_btn {
    padding: 17px 45px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .service-card {
    --space: 15px;
  }

  .service-card_title {
    font-size: 22px;
    margin-bottom: 8px;
  }


  .service-card_content {
    margin-top: -40px;
  }

  .service-card_number {
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .service-card_number:before {
    content: "";
    border-width: 0 15px 10px 0;
  }
}

/* Service 3 ---------------------------------- */
.service-grid {
  background-color: var(--smoke-color);
  position: relative;
}

.service-grid_img {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.service-grid_img img {
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.service-grid_img:before,
.service-grid_img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-style: solid;
  border-width: 90px 0 0 260px;
  border-color: transparent transparent transparent var(--theme-color);
  opacity: 0.5;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 1;
}

.service-grid_img:after {
  border-width: 108px 0 0 315px;
  opacity: 0.4;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.service-grid_content {
  background-color: var(--white-color);
  padding: 40px;
  min-height: 17rem;
}

.service-grid_text {
  margin-bottom: 20px;
}

.service-grid .as-btn {
  background-color: transparent;
  border: 2px solid #f1f1f1;
  color: var(--title-color);
  padding: 20px 34.5px;
}

.service-grid .as-btn:before {
  background-color: transparent;
}

.service-grid .as-btn:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}

.service-grid .as-btn:hover:before {
  background-color: var(--theme-color);
}

.service-grid_title {
  font-size: 24px;
  margin-top: -0.26em;
  margin-bottom: 10px;
}

.service-grid_title a {
  color: inherit;
}

.service-grid_title a:hover {
  color: var(--theme-color);
}

.service-grid:hover .service-grid_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.service-grid:hover .service-grid_img:before {
  border-width: 0 0 0 260px;
}

.service-grid:hover .service-grid_img:after {
  border-width: 0 0 0 315px;
}

/* Extra small devices */
@media (max-width: 375px) {
  .service-grid_content {
    padding: 40px 20px;
  }
}

/* Service Details ---------------------------------- */
.service-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1);
  background-color: var(--white-color);
  padding: 30px;
  gap: 20px;
}

.service-feature-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-feature_icon {
  min-width: 50px;
}

.service-feature_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-feature_title {
  font-size: 20px;
  margin-bottom: 6px;
  margin-top: -0.36em;
}

.service-feature_text {
  margin-bottom: -0.5em;
}

.service-feature:hover .service-feature_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Large devices */
@media (max-width: 1199px) {
  .service-feature {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .service-feature-wrap {
    gap: 24px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .service-feature {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .service-feature-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.service-process {
  border: 1px solid #EEEEEE;
  background-color: var(--white-color);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0px 6px 39px rgba(0, 0, 0, 0.04);
}

.service-process-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-process_num {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 15px solid #FDE8EA;
  box-sizing: content-box;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin: 0 auto 25px auto;
}

.service-process_title {
  font-size: 16px;
  margin-bottom: 6px;
  margin-top: -0.36em;
  text-transform: uppercase;
}

.service-process_text {
  max-width: 250px;
  margin: 0 auto -0.5em auto;
}

/* Large devices */
@media (max-width: 1199px) {
  .service-process-wrap {
    gap: 24px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .service-process-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

/*------------------- 4.00. Appointment  -------------------*/
/* Appointment 1 ---------------------------------- */
.appointment-img {
  position: relative;
  margin-right: 72px;
  height: 100%;
}

.appointment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-img .as-experience {
  position: absolute;
  left: 0;
  top: 125px;
}

.as-experience {
  background-color: var(--theme-color);
  max-width: 240px;
  padding: 40px;
}

.as-experience .experience-year {
  font-size: 60px;
  color: var(--white-color);
  margin-bottom: 0;
}

.as-experience .experience-text {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 0;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .appointment-img {
    margin-right: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .appointment-img {
    margin-bottom: 60px;
    height: auto;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .appointment-form .form-btn {
    text-align: center;
  }

  .appointment-img .as-experience {
    top: 70px;
  }

  .as-experience {
    max-width: 190px;
    padding: 30px;
  }

  .as-experience .experience-year {
    font-size: 48px;
  }

  .as-experience .experience-text {
    font-size: 18px;
  }
}

/* Appointment Details ---------------------------------- */
.appointment-img2 {
  position: relative;
  padding-right: 80px;
  height: 100%;
}

.appointment-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.appointment-img2 .as-experience {
  position: absolute;
  bottom: 80px;
  left: -80px;
}

.appointment-form-wrap {
  padding: 90px 80px 90px 0;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .appointment-img2 .as-experience {
    bottom: 12px;
    left: -12px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .appointment-img2 {
    padding-right: 0;
  }

  .appointment-form-wrap {
    padding: 90px 80px 90px 80px;
  }

  .appointment-form-wrap .form-btn {
    text-align: center;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .appointment-form-wrap {
    padding: 60px 50px 60px 50px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .appointment-form-wrap {
    padding: 50px 20px 50px 20px;
  }
}

/*------------------- 4.00. Contact  -------------------*/
/* Contact Media ---------------------------------- */
.contact-media {
  background-color: var(--title-color);
  padding: 60px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px 30px;
}

.contact-media_title,
.contact-media_subtitle {
  color: var(--white-color);
}

.contact-media_title a,
.contact-media_subtitle a {
  color: inherit;
}

.contact-media_subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  margin-top: -0.5em;
}

.contact-media_title {
  font-size: 30px;
  margin-bottom: -0.4em;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .contact-media_title {
    font-size: 26px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .contact-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .contact-media_content {
    text-align: center;
  }
}

/* Contact Details ---------------------------------- */
.contact-form select,
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.contact-form input,
.appointment-form select,
.appointment-form .form-control,
.appointment-form .form-select,
.appointment-form textarea,
.appointment-form input {
  border: 1px solid transparent;
}

.contact-form select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus,
.contact-form input:focus,
.appointment-form select:focus,
.appointment-form .form-control:focus,
.appointment-form .form-select:focus,
.appointment-form textarea:focus,
.appointment-form input:focus {
  border-color: #eaeaea;
}

.contact-box {
  border: 1px solid var(--border-color);
}

.contact-box_img {
  margin: -1px;
}

.contact-box_img img {
  width: 100%;
  background-size: cover;
}

.contact-box_icon i {
  font-size: 48px;
  color: var(--theme-color);
}

.contact-box_text {
  margin-top: -0.08em;
  margin-bottom: 2px;
}

.contact-box_link {
  margin-bottom: -0.1em;
}

.contact-box_link a {
  color: inherit;
}

.contact-box_link a:hover {
  color: var(--theme-color);
}

.contact-box_content {
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.map-sec {
  line-height: 1px;
}

.map-sec iframe {
  aspect-ratio: 16 / 4.6;
  -webkit-filter: grayscale(1);
  filter: grayscale(0);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .contact-box_content {
    gap: 15px;
    padding: 25px 15px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .map-sec iframe {
    aspect-ratio: 16 / 6;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .contact-box_content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .map-sec iframe {
    height: 220px;
  }
}

/*------------------- 4.00. About  -------------------*/
/* About 1 ---------------------------------- */
.feature-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -15px;
}

.feature-box-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.feature-box_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  max-width: 150px;
  margin-bottom: 0;
}

.feature-box_icon {
  width: var(--icon-size, 90px);
  height: var(--icon-size, 90px);
  line-height: var(--icon-size, 90px);
  position: relative;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}

.feature-box_icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(356.78deg, #252934 2.69%, rgba(30, 33, 43, 0) 79.63%);
  background-image: linear-gradient(93.22deg, #252934 2.69%, rgba(30, 33, 43, 0) 79.63%);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}

/* Small devices */
@media (max-width: 767px) {
  .feature-box-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* About 2 ---------------------------------- */
.image-checklist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  /* margin-left: -165px; */
  margin-bottom: 40px;
}

.image-checklist .image {
  border-bottom: 5px solid var(--theme-color);
}

.image-checklist .image img {
  height: 100%;
}

.about-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.about-author-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}

.about-author_name {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Medium devices */
@media (max-width: 991px) {
  .image-checklist {
    margin-left: 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .image-checklist .image {
    max-width: 200px;
  }

  .about-author-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .image-checklist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-checklist .image {
    max-width: 100%;
  }
}

/* About 3 ---------------------------------- */
.img-box-2 {
  position: relative;
}

.img-box-2 .img2,
.img-box-2 .img3 {
  display: inline-block;
}

.img-box-2 .img2 img,
.img-box-2 .img3 img {
  width: 100%;
}

.img-box-2 .img1 {
  margin-left: auto;
  max-width: 500px;
}

.img-box-2 .img1 img {
  width: 100%;
}

.img-box-2 .img2 {
  margin-top: -100px;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

.img-box-2 .img3 {
  position: absolute;
  bottom: 0;
  right: 127px;
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

.img-box-2 .as-experience {
  position: absolute;
  left: 75px;
  top: 14%;
}

.as-experience.style2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.as-experience.style2 .experience-year {
  font-size: 40px;
  margin-bottom: -0.2em;
}

.as-experience.style2 .experience-text {
  font-size: 16px;
  margin-bottom: -0.3em;
}

.about-checklist {
  margin-bottom: 30px;
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box-2 .img1 {
    max-width: 75%;
  }

  .img-box-2 .img2 {
    width: 50%;
  }

  .img-box-2 .img3 {
    width: 25%;
  }

  .img-box-2 .as-experience {
    left: 20%;
    top: 20%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .checklist.style2.about-checklist ul {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width: 485px) {
  .checklist.style2.about-checklist ul {
    max-width: 230px;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto 45px auto;
  }
}

/*------------------- 4.00. Team  -------------------*/
/* Team 1 ---------------------------------- */
.team-box {
  --space: 40px;
}

.team-box .team-img {
  position: relative;
  /* overflow: hidden; */
}

.team-box .team-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.team-box .team-content {
  background-color: var(--white-color);
  position: absolute;
  bottom: -1rem;
  left: var(--space);
  width: calc(100% - var(--space)*2);
  text-align: center;
  padding: 30px 15px 30px 15px;
}

.team-box .team-title {
  font-size: 24px;
  margin-bottom: 0;
  margin-top: -0.24em;
}

.team-box .team-title a {
  color: inherit;
}

.team-box .team-title a:hover {
  color: var(--theme-color);
}

.team-box .team-desig {
  color: var(--theme-color);
  display: block;
  font-family: var(--title-font);
  margin-bottom: -0.5em;
}

.team-box .as-social {
  background-color: var(--title-color);
  border-top: 1px solid #F0F0F0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 15px 30px 15px;
  text-align: center;
  width: calc(100% - var(--space)*2);
  margin-left: var(--space);
  position: relative;
  z-index: 2;
}

.team-box .as-social::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.team-box .as-social a {
  border-radius: 50%;
}

.team-box:hover .team-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.05);
}

.team-box:hover .as-social:before {
  height: 0;
}

.team-box:hover .as-social a {
  background-color: #252934;
  color: var(--white-color);
}

.team-box:hover .as-social a:hover {
  background-color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .team-box {
    --space: 20px;
  }
}

/* Team 2 ---------------------------------- */
.team-card {
  text-align: center;
}

.team-card .team-img {
  margin-bottom: 5px;
  overflow: hidden;
}

.team-card .team-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.team-card .team-title {
  font-size: 24px;
  margin-bottom: 5px;
  margin-top: -0.24em;
  color: var(--white-color);
}

.team-card .team-title a {
  color: inherit;
}

.team-card .team-title a:hover {
  color: var(--theme-color);
}

.team-card .team-desig {
  color: var(--theme-color);
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-card .team-content {
  background-color: var(--title-color);
  padding: 40px 15px;
}

.team-card .as-social a {
  background-color: #252934;
  color: var(--white-color);
}

.team-card .as-social a:hover {
  background-color: var(--theme-color);
}

.team-card:hover .team-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Team Details ---------------------------------- */
.team-about_title {
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: -0.2em;
}

.team-about_desig {
  font-family: var(--title-font);
  color: var(--theme-color);
  margin-bottom: 25px;
}

.team-about_text {
  margin-bottom: 30px;
}

.about-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.about-info-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 675px;
  gap: 20px;
  margin-bottom: 40px;
}

.about-info_icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--theme-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  text-align: center;
}

.about-info_subtitle {
  margin-bottom: 0;
}

.about-info_title {
  font-family: var(--body-font);
  font-size: 18px;
  margin-bottom: 0;
}

.about-info_title a {
  color: inherit;
}

.about-info_title a:hover {
  color: var(--theme-color);
}

.border-title {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.experience-box {
  padding: 30px 30px 30px 65px;
  border: 1px solid #F1F1F1;
  overflow: hidden;
  position: relative;
  margin-bottom: -1px;
  margin-right: -1px;
}

.experience-box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 0px 13px 21px rgba(0, 0, 0, 0.03);
}

.experience-box_num {
  font-size: 12px;
  width: 60px;
  height: 60px;
  line-height: 65px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -13px;
  left: -13px;
}

.experience-box_num::first-letter {
  font-size: 18px;
  font-weight: bold;
}

.experience-box_title {
  font-family: var(--body-font);
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: -0.2em;
}

.experience-box_text {
  font-size: 14px;
  margin-bottom: -0.2em;
}

/* Large devices */
@media (max-width: 1199px) {
  .team-about_desig {
    margin-bottom: 20px;
  }

  .team-about_text {
    margin-bottom: 25px;
  }

  .about-info-wrap {
    margin-bottom: 30px;
  }

  .border-title {
    margin-bottom: 24px;
    padding-bottom: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .experience-box {
    padding: 30px 30px 30px 50px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .about-info-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .experience-box {
    padding: 30px 30px 30px 65px;
  }

  .experience-box-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*------------------- 4.00. Testimonial  -------------------*/
/* Testimonial 1 ---------------------------------- */
.testi-box {
  text-align: center;
}

.testi-box_img {
  position: relative;
  width: 150px;
  margin: 0 auto -75px auto;
}

.testi-box_img img {
  border-radius: 50%;
}

.testi-box_icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testi-box_info {
  background-color: var(--theme-color);
  padding: 20px 7px;
}

.testi-box_name {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 0;
  margin-top: -0.24em;
}

.testi-box_desig {
  font-family: var(--title-font);
  color: var(--white-color);
  margin-bottom: -0.491em;
  display: block;
}

.testi-box_text {
  font-size: 15px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 29px rgba(61, 61, 61, 0.05);
  margin-bottom: -0.52em;
  padding: 80px 40px 30px 40px;
}

/* Large devices */
@media (max-width: 1199px) {
  .testi-box_text {
    font-size: 13px;
  }
}

/* Testimonial 2 ---------------------------------- */
.testi-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.testi-card-slide .slick-arrow {
  --pos-x: -164px;
  top: 111%;
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}

.testi-card-tab {
  border-top: 2px solid #EFEFEF;
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}

.testi-card-tab:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #EFEFEF;
  height: 2px;
  width: var(--main-container);
}

.testi-card-tab .tab-btn {
  border: none;
  background-color: transparent;
  padding: 0;
}

.testi-card-tab .tab-btn img {
  width: 100%;
}

.testi-card-tab .indicator {
  position: absolute;
  top: -2px;
  left: var(--pos-x);
  height: 2px;
  width: var(--width-set);
  background-color: var(--theme-color);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.testi-card_img {
  min-width: 220px;
}

.testi-card_img img {
  width: 100%;
}

.testi-card_name {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: -0.24em;
}

.testi-card_desig {
  font-family: var(--body-font);
  margin-bottom: -0.491em;
  display: block;
}

.testi-card_text {
  font-size: 24px;
  margin-top: -0.5em;
  margin-bottom: 30px;
}

.testi-card_content {
  position: relative;
}

.testi-card_review {
  /* position: absolute; */
  bottom: 0;
  right: 0;
}

.testi-card_review i {
  color: var(--theme-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .testi-card-tab:before {
    --main-container: 1140px;
  }

  .testi-card-slide .slick-arrow {
    --pos-x: -120px;
  }

  .testi-card_text {
    font-size: 20px;
    margin-top: -0.5em;
    margin-bottom: 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .testi-card-tab {
    margin-top: 40px;
    padding-top: 40px;
  }

  .testi-card-tab:before {
    width: 100%;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .testi-card-tab {
    margin-top: 30px;
    padding-top: 30px;
    gap: 10px;
  }

  .testi-card_img {
    min-width: 200px;
  }

  .testi-card_text {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .testi-card {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .testi-card_img {
    min-width: 280px;
    max-width: 100%;
  }

  .testi-card_text {
    margin-bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .testi-card-tab {
    padding-top: 15px;
    gap: 4px;
  }

  .testi-card_text {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .testi-card_img {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Testimonial 3 ---------------------------------- */
.testi-grid {
  padding: 50px;
  background-color: var(--white-color);
  box-shadow: 0px 11px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 30px;
}

.testi-grid_profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 37px;
  margin-bottom: 30px;
}

.testi-grid_img {
  position: relative;
  width: 80px;
}

.testi-grid_img img {
  border-radius: 50%;
}

.testi-grid_icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  right: -17.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.testi-grid_name {
  font-size: 24px;
  margin-bottom: 0;
  margin-top: -0.24em;
}

.testi-grid_desig {
  font-family: var(--title-font);
  margin-bottom: -0.491em;
  display: block;
}

.testi-grid_text {
  font-size: 18px;
  margin-bottom: -0.52em;
}

/* Large devices */
@media (max-width: 1199px) {
  .testi-grid_profile {
    margin-bottom: 25px;
  }

  .testi-grid_text {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .testi-grid {
    padding: 40px 20px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .testi-grid {
    text-align: center;
  }

  .testi-grid_profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*------------------- 4.00. Counter  -------------------*/
/* Counter 1 ---------------------------------- */
.counter-box {
  padding: 50px;
  background-color: var(--title-color);
}

.counter-box_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--theme-color);
  text-align: center;
  margin-bottom: 30px;
  border-radius: 50%;
}

.counter-box_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-box_number {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 0;
}

.counter-box_text {
  color: var(--white-color);
  font-weight: 500;
  display: block;
  margin-bottom: -0.5em;
}

.counter-box:hover .counter-box_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Small devices */
@media (max-width: 767px) {
  .counter-box {
    padding: 50px 15px;
    text-align: center;
  }

  .counter-box_icon {
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Counter 2 ---------------------------------- */
.counter-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
}

.counter-card-wrap {
  border-right: 1px solid;
  border-color: #1F232D !important;
}

.counter-card-wrap:last-child {
  border-right: 0;
}

.counter-card_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #242934;
  text-align: center;
  border-radius: 50%;
}

.counter-card_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-card_number {
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 0;
}

.counter-card_text {
  color: var(--light-color);
  display: block;
  margin-bottom: -0.5em;
}

.counter-card:hover .counter-card_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Large devices */
@media (max-width: 1199px) {
  .counter-card {
    padding: 60px 0;
  }

  .counter-card-wrap:nth-child(1),
  .counter-card-wrap:nth-child(2) {
    border-bottom: 1px solid;
  }

  .counter-card-wrap:nth-child(2) {
    border-right: 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .counter-card {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }

  .counter-card_content {
    text-align: center;
  }

  .counter-card_number {
    font-size: 32px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .counter-card-wrap {
    border-right: 0 !important;
  }

  .counter-card-wrap:nth-child(3) {
    border-bottom: 1px solid;
  }
}

/*------------------- 4.00. Blog  -------------------*/
/* Blog 1 ---------------------------------- */
.blog-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--smoke-color);
}

.blog-box:nth-child(1) {
  grid-area: one;
  margin-bottom: 30px;
  margin-right: 15px;
}

.blog-box:nth-child(2) {
  grid-area: two;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 15px;
}

.blog-box:nth-child(2) .blog-img {
  min-width: 100%;
}

.blog-box:nth-child(3) {
  grid-area: three;
  margin-right: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.blog-box-wrap {
  display: grid;
  grid-template-areas: 'one one one one one one one one one two two two'
    'three three three three three three three three three two two two';
}

.blog-box .blog-img {
  min-width: 50%;
}

.blog-box .blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.blog-box .blog-content {
  background-color: var(--smoke-color);
  padding: 60px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.blog-box .blog-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.blog-box .blog-meta {
  margin-bottom: 12px;
  margin-top: -0.5em;
}

.blog-box .blog-meta a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-box .blog-text {
  margin-bottom: 10px;
  margin-top: -2px;
}

.blog-box .link-btn {
  margin-bottom: -0.2em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-box .blog-content {
    padding: 40px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-box:nth-child(1) {
    margin-bottom: 24px;
    margin-right: 12px;
  }

  .blog-box:nth-child(2) {
    margin-left: 12px;
  }

  .blog-box:nth-child(3) {
    margin-right: 12px;
  }

  .blog-box .blog-content {
    padding: 40px 20px;
  }

  .blog-box .blog-title {
    font-size: 22px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-box:nth-child(1) {
    margin-bottom: 0;
    margin-right: 0;
  }

  .blog-box:nth-child(2) {
    margin-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .blog-box:nth-child(2) .blog-img {
    min-width: 50%;
  }

  .blog-box:nth-child(3) {
    margin-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .blog-box-wrap {
    gap: 24px;
    grid-template-areas: 'one one'
      'two two'
      'three three';
  }

  .blog-box .blog-text {
    display: none;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-box .blog-img {
    min-width: 44% !important;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .blog-box {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .blog-box .blog-img {
    min-width: 100% !important;
  }

  .blog-box .blog-content {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .blog-box .blog-meta a {
    margin-right: 20px;
  }

  .blog-box .blog-meta a:last-child {
    margin-right: 0;
  }
}

/* Blog 2 ---------------------------------- */
.blog-card {
  background-color: var(--white-color);
}

.blog-card .blog-img {
  max-height: 300px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-card .blog-content {
  background-color: var(--white-color);
  padding: 40px;
}

.blog-card .blog-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.blog-card .blog-meta {
  margin-bottom: 12px;
  margin-top: -0.5em;
}

.blog-card .blog-meta a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-card .blog-text {
  margin-bottom: 10px;
  margin-top: -2px;
}

.blog-card .link-btn {
  margin-bottom: -0.2em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}

.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-card .blog-content {
    padding: 40px 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-card .blog-title {
    max-width: 400px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .blog-card .blog-content {
    padding: 40px 22px;
  }
}

/*------------------- 4.00. Brand  -------------------*/
/* Brand 1 ---------------------------------- */
.brand-sec {
  position: relative;
}

.brand-sec:before {
  content: "";
  height: 100%;
  width: 100%;
  max-width: 1620px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, calc(100% - 75px) 50%, 100% 100%, 0% 100%, 75px 50%, 0% 0%);
  clip-path: polygon(100% 0, calc(100% - 75px) 50%, 100% 100%, 0% 100%, 75px 50%, 0% 0%);
}

.brand-img {
  text-align: center;
}

.brand-img2 {
  text-align: center;
}

.brand-img2 img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.brand-img2:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

/* Large devices */
@media (max-width: 1199px) {
  .brand-sec:before {
    -webkit-clip-path: polygon(100% 0, calc(100% - 40px) 50%, 100% 100%, 0% 100%, 40px 50%, 0% 0%);
    clip-path: polygon(100% 0, calc(100% - 40px) 50%, 100% 100%, 0% 100%, 40px 50%, 0% 0%);
  }
}

/*------------------- 4.00. Feature  -------------------*/
/* Feature 1 ---------------------------------- */
.feature-grid {
  background-color: var(--title-color);
  padding: 42px 15px;
  text-align: center;
  position: relative;
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  z-index: 2;
  overflow: hidden;
}

.feature-grid:before {
  content: "";
  height: 100%;
  width: 0;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-grid_icon {
  margin-bottom: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-grid_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: -0.4em;
}

.feature-grid:hover:before {
  width: 100%;
}

.feature-grid:hover .feature-grid_icon {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

/* Small devices */
@media (max-width: 767px) {
  .feature-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .feature-grid-wrap {
    gap: 10px;
  }
}

/* Feature 2 ---------------------------------- */
.feature-circle {
  background-color: var(--title-color);
  text-align: center;
  padding: 60px 15px;
}

.feature-circle_title {
  font-size: 24px;
  color: var(--white-color);
  margin-bottom: -0.4em;
  margin-top: 15px;
}

.feature-circle .circle {
  position: relative;
}

.feature-circle .circle-num {
  color: var(--white-color);
  font-size: 30px;
  font-weight: bold;
  font-family: var(--title-font);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-circle_title {
    font-size: 20px;
    margin-top: 10px;
  }
}

/* Feature 3 ---------------------------------- */
.feature-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-media-wrap {
  max-width: 590px;
}

.feature-media_num {
  width: 80px;
  height: 80px;
  line-height: 80px;
  min-width: 80px;
  line-height: 83px;
  color: var(--theme-color);
  background-color: #272A35;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--title-font);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-media_title {
  color: var(--white-color);
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: -0.26em;
}

.feature-media_text {
  margin-bottom: -0.5em;
  color: var(--light-color);
}

.feature-media:last-child {
  margin-bottom: 0;
}

.feature-media:hover .feature-media_num {
  background-color: var(--white-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-media {
    margin-bottom: 40px;
  }

  .feature-media-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .feature-media:last-child {
    margin-bottom: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .feature-media_title {
    font-size: 22px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .feature-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .feature-media_content {
    text-align: center;
  }
}

/* Feature 4 / Quality ---------------------------------- */
.quality-card {
  background-color: var(--white-color);
  padding: 100px 100px 110px 100px;
  max-width: 730px;
}

.quality-feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 40px;
  margin-bottom: 50px;
}

.quality-feature_icon {
  margin-bottom: 30px;
}

.quality-feature_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.quality-feature_title {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: -0.36em;
}

.quality-feature_text {
  margin-bottom: -0.5em;
}

.quality-feature:hover .quality-feature_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.skill-feature {
  margin-bottom: 45px;
}

.skill-feature:last-child {
  margin-bottom: 0;
}

.skill-feature_title,
.skill-feature .progress-value {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: -0.36em;
}

.skill-feature .progress {
  position: relative;
  height: 8px;
  background-color: transparent;
  overflow: visible;
}

.skill-feature .progress:after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #F1F1F1;
}

.skill-feature .progress-bar {
  background-color: var(--theme-color);
}

.skill-feature .progress-value {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: bold;
  margin-bottom: 0;
  position: absolute;
  top: -31px;
  right: 0;
}

.skill-feature.style2 .skill-feature_title,
.skill-feature.style2 .progress-value {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.skill-feature.style2 .progress-value {
  top: -34px;
}

/* Medium devices */
@media (max-width: 991px) {
  .quality-card {
    padding: 80px 50px 90px 50px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .quality-card {
    padding: 60px 15px 70px 15px;
  }

  .quality-feature {
    text-align: center;
  }

  .quality-feature-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .quality-feature_icon {
    margin-bottom: 20px;
  }

  .quality-feature_text {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------- 4.00. Simple Sections  -------------------*/
.as-video2 {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.as-video2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.as-video2 .video-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.as-video2:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.video-btn {
  font-size: 36px;
  color: var(--white-color);
  background-color: var(--theme-color);
  padding: 42px 57px;
  /* Small devices */
}

.video-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

@media (max-width: 767px) {
  .video-btn {
    font-size: 24px;
    padding: 22px 37px;
  }
}

.cta-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding: 80px;
  /* Medium devices */
  /* Small devices */
}

.cta-card_title {
  color: var(--white-color);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cta-card {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .cta-card {
    padding: 40px 15px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.checklist li {
  color: var(--title-color);
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
}

.checklist li:before {
  content: "\f058";
  font-family: var(--icon-font);
  font-weight: 900;
  color: var(--theme-color);
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.checklist li:first-child {
  margin-top: -0.5em;
}

.checklist li:last-child {
  margin-bottom: -0.5em;
}

.checklist.style2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  /* Small devices */
}

@media (max-width: 767px) {
  .checklist.style2 ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.checklist.style2 li {
  color: var(--body-color);
}

.checklist.style2 li:before {
  font-weight: 500;
}

.checklist.style2 li:first-child {
  margin-top: 0;
}

.checklist.style3 li {
  color: var(--body-color);
}

.checklist.style3 li:before {
  font-weight: 500;
}

.img-box-1 {
  position: relative;
  display: inline-block;
}

.img-box-1 .shape {
  position: absolute;
  bottom: -110px;
  right: -110px;
  -webkit-animation: rotate 8s linear infinite;
  animation: rotate 8s linear infinite;
  /* Extra large devices */
  /* Medium Large devices */
}

@media (max-width: 1500px) {
  .img-box-1 .shape {
    right: -30px;
    bottom: -30px;
  }
}

@media (max-width: 1399px) {
  .img-box-1 .shape {
    max-width: 150px;
  }
}

.call-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.call-btn_icon {
  color: var(--title-color);
  font-size: 24px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 50%;
}

.call-btn_label {
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
  color: var(--white-color);
  display: block;
  margin-bottom: 4px;
}

.call-btn_link {
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 600;
  /* Small devices */
}

.call-btn_link a {
  color: inherit;
}

.call-btn_link a:hover {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .call-btn_link {
    font-size: 20px;
  }
}

.cta-shape-wrap {
  position: relative;
  z-index: 2;
}

.cta-shape-wrap:before {
  content: "";
  height: 100%;
  width: 1400px;
  position: absolute;
  top: 0;
  right: 240px;
  background-color: var(--title-color);
  -webkit-clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
  z-index: -1;
  /* Hight Resoulation devices */
  /* Large devices */
  /* Extra small devices */
}

@media (min-width: 1922px) {
  .cta-shape-wrap:before {
    width: 4999px;
  }
}

@media (max-width: 1199px) {
  .cta-shape-wrap:before {
    right: 0;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media (max-width: 575px) {
  .cta-shape-wrap:before {
    right: -12px;
  }
}

.car-img {
  margin-top: -31px;
  margin-bottom: -150px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .car-img {
    margin-top: -80px;
    margin-bottom: 20px;
  }
}

/*------------------- 4.00. Why -------------------*/
/* Why 1 ---------------------------------- */
.why-img {
  float: left;
  margin-right: 30px;
}

.our-journey .journey-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.our-journey .journey-year {
  font-family: var(--title-font);
  display: block;
  line-height: 1;
  font-size: 80px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: -0.1em;
}

.feature-journey {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 15px;
  overflow: hidden;
  margin-top: 40px;
  padding-bottom: 5px;
  margin-bottom: -20px;
}

/* Small devices */
@media (max-width: 767px) {
  .why-img {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .why-img img {
    width: 100%;
  }
}

/* Why 2 ---------------------------------- */
.as-video.style1 {
  padding-right: 65px;
  height: 100%;
}

.as-video.style1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .as-video.style1 {
    padding-right: 0;
  }
}

/*------------------- 4.00. Tab Menu -------------------*/
/* Tab Menu 1 ---------------------------------- */
.tab-menu1 {
  position: relative;
  overflow: hidden;
  padding-bottom: 1px;
}

.tab-menu1 .tab-btn {
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  border: none;
  background-color: transparent;
  padding: 27px 40px;
  margin-bottom: -1px;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.tab-menu1 .tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  z-index: -1;
}

.tab-menu1 .tab-btn i {
  margin-left: auto;
  color: var(--body-color);
}

.tab-menu1 .tab-btn:hover {
  color: var(--theme-color);
}

.tab-menu1 .tab-btn.active {
  color: var(--white-color);
}

.tab-menu1 .tab-btn.active:before {
  border-color: var(--theme-color);
}

.tab-menu1 .tab-btn.active i {
  color: var(--white-color);
}

.tab-menu1 .indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: var(--theme-color);
  z-index: -1;
}

/* Large devices */
@media (max-width: 1199px) {
  .tab-menu1 .tab-btn {
    font-size: 18px;
    padding: 17px 20px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .tab-menu1 {
    margin-bottom: 40px;
  }

  .tab-menu1 .tab-btn {
    width: 50%;
    margin-right: -1px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .tab-menu1 .tab-btn {
    font-size: 16px;
    padding: 15px 15px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .tab-menu1 .tab-btn {
    width: 100%;
    margin-right: 0;
  }
}

/* Tab Menu 2 ---------------------------------- */
.tab-menu2 {
  --btn-space: 38px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: var(--theme-color);
  row-gap: 15px;
  padding: 34px 0;
  margin: 0 calc(var(--btn-space) * -1);
  position: relative;
  z-index: 2;
}

.tab-menu2-wrap {
  overflow: hidden;
}

.tab-menu2:before {
  content: "";
  position: absolute;
  top: 0;
  left: -85px;
  background-color: var(--theme-color);
  height: 100%;
  width: 9999px;
  z-index: -1;
  -webkit-clip-path: polygon(70px 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(70px 0, 100% 0%, 100% 100%, 0% 100%);
}

.tab-menu2 .project-count {
  display: block;
  color: #FF969F;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tab-menu2 .indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.tab-menu2 .indicator:after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--title-color) transparent;
  z-index: 3;
}

.tab-menu2 .tab-btn {
  color: var(--white-color);
  background-color: var(--theme-color);
  border: none;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  padding: 0 var(--btn-space);
  line-height: 1;
  border-right: 1px solid #FA4353;
}

.tab-menu2 .tab-btn:last-of-type {
  border-right: none;
}

.tab-menu2 .tab-btn.active .project-count {
  color: var(--white-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .tab-menu2 {
    --btn-space: 25px;
  }

  .tab-menu2 .tab-btn {
    font-size: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .tab-menu2 {
    --btn-space: 15px;
    padding: 25px 0;
  }

  .tab-menu2:before {
    left: -55px;
    -webkit-clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
  }

  .tab-menu2 .tab-btn {
    font-size: 14px;
  }

  .tab-menu2 .project-count {
    margin-top: 6px;
    font-size: 14px;
  }

  .tab-menu2 .indicator:after {
    bottom: -25px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .tab-menu2 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab-menu2 .tab-btn {
    border-right: none;
  }

  .tab-menu2 .indicator:after {
    bottom: 8px;
    left: 5px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--title-color);
  }
}

/* Tab Menu 1 ---------------------------------- */
.tab-menu3 {
  margin-bottom: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.tab-menu3 .as-btn {
  background-color: var(--smoke-color);
  color: var(--title-color);
}

.tab-menu3 .as-btn.active,
.tab-menu3 .as-btn:hover {
  color: var(--white-color);
}

.tab-menu3 .as-btn:before {
  background-color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .tab-menu3 {
    margin-bottom: 40px;
  }
}

/*------------------- 4.00. Project -------------------*/
/* Project 1 ---------------------------------- */
.project-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--title-color);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
}

.project-btn {
  background-color: var(--white-color);
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
  outline: 0px solid rgba(255, 255, 255, 0.13);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.project-btn:hover {
  outline: 15px solid rgba(255, 255, 255, 0.13);
}

.project-card {
  position: relative;
}

.project-card .shape:before,
.project-card .shape:after {
  content: "";
  position: absolute;
  top: -400px;
  right: 0;
  border-style: solid;
  border-width: 0 380px 110px 0;
  visibility: hidden;
  opacity: 0;
  border-color: transparent var(--title-color) transparent transparent;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 0;
}

.project-card .shape:before {
  border-width: 0 350px 100px 0;
  border-color: transparent var(--theme-color) transparent transparent;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  z-index: 1;
}

.project-card .project-btn {
  background-color: var(--white-color);
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
  outline: 0px solid rgba(255, 255, 255, 0.13);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.project-card .project-btn:hover {
  outline: 15px solid rgba(255, 255, 255, 0.13);
}

.project-card:hover .project-img:before {
  visibility: visible;
  /* opacity: 0.3; */
}

.project-card:hover .project-img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.project-card:hover .shape:before,
.project-card:hover .shape:after {
  top: 0;
}

.project-card:hover .shape:before {
  visibility: visible;
  opacity: 0.7;
}

.project-card:hover .shape:after {
  visibility: visible;
  opacity: 0.27;
}

.project-card:hover .project-btn {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}

.icon-box.style2 .slick-arrow {
  background-color: transparent;
  border: 2px solid #232836;
  color: var(--white-color);
  font-weight: 500;
  text-transform: uppercase;
  width: auto;
  padding: 5px 30px;
  margin-right: 0;
  /* Medium devices */
}

.icon-box.style2 .slick-arrow:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.icon-box.style2 .slick-arrow:first-child {
  margin-right: 15px;
}

.icon-box.style2 .slick-arrow:first-child i {
  margin-right: 5px;
}

.icon-box.style2 .slick-arrow:last-child i {
  margin-left: 5px;
}

@media (max-width: 991px) {
  .icon-box.style2 .slick-arrow {
    --icon-size: 50px;
    font-size: 14px;
    padding: 5px 20px;
  }
}

/* Project 2 ---------------------------------- */
.project-box {
  position: relative;
}

.project-box:hover .project-img:before {
  visibility: visible;
  opacity: 0.6;
}

.project-box:hover .project-btn {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}

/* Project Details ---------------------------------- */
.project-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #EAECF3;
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.project-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-info_title {
  font-family: var(--body-font);
  font-size: 18px;
  margin-bottom: 0;
}

.project-info_icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
}

.project-info_text {
  margin-bottom: 0;
}

/*------------------- 4.00. Pricing -------------------*/
/* Pricing 1 ---------------------------------- */
.price-card {
  background-color: var(--smoke-color);
  --space: 40px;
}

.price-card_header {
  background-color: var(--title-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.price-card_title {
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 30px;
}

.price-card_subtitle {
  color: var(--white-color);
  margin-bottom: 0;
}

.price-card_price {
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 30px var(--space);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.price-card_price .price {
  color: var(--white-color);
  font-size: 30px;
  font-weight: bold;
  font-family: var(--title-font);
}

.price-card_price .package-duration {
  font-size: 16px;
  font-weight: 400;
}

.price-card_price i {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.05);
}

.price-card_content {
  padding: var(--space);
  padding-bottom: calc(var(--space) - 6px);
}

.price-card .checklist {
  margin-bottom: var(--space);
}

.price-card:not(:hover) .checklist li:before {
  color: var(--title-color);
}

.price-card:not(:hover) .as-btn {
  background-color: var(--title-color);
}

.price-card:not(:hover) .as-btn:before,
.price-card:not(:hover) .as-btn:after {
  background-color: var(--theme-color);
}

.price-card:hover .price-card_header,
.price-card:hover .price-card_price {
  background-color: var(--theme-color);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card:hover .price-card_price i {
  color: rgba(255, 255, 255, 0.2);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .price-card {
    --space: 20px;
  }

  .price-card_header {
    padding: 30px var(--space);
  }

  .price-card_price {
    padding: 22px var(--space);
  }

  .price-card_content {
    padding: 40px var(--space);
    padding-bottom: 34px;
  }

  .price-card .checklist {
    margin-bottom: 35px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .price-card_title {
    font-size: 26px;
  }

  .price-card_price .price {
    font-size: 26px;
  }
}

/*------------------- 4.00. Faq -------------------*/
/* Faq 1 ---------------------------------- */
.accordion-card {
  margin-bottom: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.accordion-card .accordion-button {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--title-font);
  border: 0;
  color: var(--title-color);
  background-color: var(--smoke-color);
  padding: 17px 70px 17px 25px;
  min-height: 60px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.accordion-card .accordion-button:after {
  content: "\f063";
  width: 60px;
  height: 60px;
  height: 100%;
  line-height: 1;
  background-color: var(--theme-color);
  background-image: none;
  font-family: var(--icon-font);
  color: var(--white-color);
  font-weight: 900;
  font-size: 0.9em;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.accordion-card .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-card .accordion-button:not(.collapsed) {
  color: var(--theme-color);
}

.accordion-card .accordion-button:not(.collapsed):after {
  content: "\f062";
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion-card .accordion-collapse {
  border: none;
}

.accordion-card .accordion-body {
  padding: 30px 0 20px 0;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 30px;
}

.accordion-card .faq-text {
  margin-bottom: 0;
}

.accordion-card .faq-img {
  height: 100%;
}

.accordion-card .faq-img img {
  height: 100%;
  object-fit: cover;
}

.accordion-card:last-child {
  margin-bottom: 0;
}

.accordion-card:last-child .accordion-body {
  padding-bottom: 0;
}

/* Small devices */
@media (max-width: 767px) {
  .accordion-card .accordion-body {
    grid-template-columns: 100%;
  }

  .accordion-card .faq-img img {
    width: 100%;
    max-width: 300px;
    height: 180px;
  }

  .accordion-card .faq-text {
    margin-bottom: -0.56em;
  }
}

/*------------------- 4.00. Update 1 -------------------*/
/*------------------- Global -------------------*/
.as-btn.style-play {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  padding: 20px 0;
  width: 60px;
  min-width: 60px;
}

.as-btn.style-play>i {
  margin-left: -3px;
}

.as-btn.style-play:hover {
  color: var(--title-color);
}

.as-btn.style-play:hover:before {
  background-color: var(--white-color);
}

.body-shape7 {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

@media (min-width: 1600px) {
  .as-container3 {
    max-width: 1680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}

.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}

.widget_shopping_cart ul li {
  list-style-type: none;
}

.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 10px 30px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  text-align: left;
}

.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--body-color);
}

.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 20px;
  border: 1px solid var(--border-color);
}

.widget_shopping_cart .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  color: var(--theme-color);
}

.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--body-font);
}

.widget_shopping_cart .amount {
  padding-left: 5px;
}

.widget_shopping_cart .as-btn {
  margin-right: 15px;
}

.widget_shopping_cart .as-btn:last-child {
  margin-right: 0;
}

/*------------------- Header -------------------*/
/* Header 3 ---------------------------------- */
.main-menu .new-label,
.as-mobile-menu .new-label {
  font-size: 13px;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 2px 5px;
  border-radius: 4px;
  position: relative;
  top: -1px;
}

.header-notice {
  margin-bottom: 0;
}

.simple-icon {
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #d9d9d9;
  padding: 0;
}

.header-top-area {
  position: relative;
  z-index: 2;
  --shape-width: 31%;
}

.header-top-area:before,
.header-top-area:after {
  content: "";
  height: 150px;
  width: var(--shape-width);
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-top-area:before {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
  z-index: 1;
}

.header-top-area:after {
  height: 50px;
  width: calc(var(--shape-width) + 20px);
  background-color: #b53c3a;
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
}

.logo-style2 {
  position: relative;
  z-index: 2;
  margin-right: 148px;
  margin-top: -43px;
}

@media (min-width: 1460px) {
  .header-layout3 {
    --main-container: 1354px;
  }
}

.header-layout3 .header-top {
  background-color: var(--white-color);
  padding: 11px 0;
}

.header-layout3 .header-top .container {
  padding-left: 400px;
}

.header-layout3 .header-top a,
.header-layout3 .header-top li,
.header-layout3 .header-top p {
  color: var(--title-color);
  font-weight: 500;
}

.header-layout3 .header-top a:hover {
  color: var(--theme-color);
}

.header-layout3 .menu-top {
  background-color: var(--title-color);
  padding: 23.5px 0;
}

.header-layout3 .header-button {
  margin-left: 130px;
}

.header-layout3 .menu-area {
  background-color: #070a10;
}

.header-layout3 .header-social .social-title {
  font-size: 16px;
  color: var(--title-color);
}

.header-layout3 .icon-btn {
  --icon-bg: #2c3039;
  color: var(--white-color);
}

.header-layout3 .header-info_label {
  text-transform: capitalize;
}

.header-layout3 .header-info_icon {
  color: var(--white-color);
}

.header-layout3 .header-info_link {
  color: var(--white-color);
}

.header-layout3 .header-link-btn {
  margin-left: 15px;
  color: var(--theme-color);
}

.header-layout3 .header-link-btn:hover {
  color: var(--white-color);
}

.logo-shape1 {
  padding: 20px 0;
  background-color: var(--theme-color);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-shape1:before,
.logo-shape1:after,
.logo-shape1 .shape {
  content: "";
  height: 100%;
  width: 2222px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  right: -67px;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
}

.logo-shape1:after {
  background-color: #c51726;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  z-index: -2;
}

.logo-shape1 .shape {
  right: -95px;
  background-color: rgba(197, 23, 38, 0.1);
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
}

/* Hight Resoulation devices */
@media (min-width: 1922px) {
  .header-top-area {
    position: relative;
    z-index: 2;
    --shape-width: 35%;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .header-layout3 .header-button {
    margin-left: 0;
  }
}

@media (max-width: 1300px) {
  .header-top-area {
    --shape-width: 27%;
  }

  .header-layout3 .header-top .container {
    padding-left: 320px;
  }

  .logo-style2 {
    margin-right: 70px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-top-area {
    --shape-width: 31%;
  }

  .header-layout3 .header-button {
    margin-left: 50px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-top-area {
    --shape-width: 46%;
  }

  .header-top-area:before {
    height: 147px;
  }

  .header-layout3 .sideMenuToggler,
  .header-layout3 .searchBoxToggler,
  .header-layout3 .header-link-btn {
    display: none;
  }

  .header-layout3 .header-top {
    padding: 12px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-top-area {
    --shape-width: 50%;
  }

  .header-top-area:before,
  .header-top-area:after {
    height: 90px;
    margin-top: 50px;
  }

  .logo-style2 {
    margin-top: 0;
  }

  .header-layout3 .header-top .container {
    padding-left: 12px;
  }

  .header-layout3 .menu-top {
    padding: 20px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-top-area {
    --shape-width: 60%;
  }

  .logo-style2 {
    margin-right: 0;
  }
}

@media (max-width: 420px) {
  .logo-style2 {
    max-width: 170px;
  }
}

/*------------------- Hero -------------------*/
.as-hero-wrapper .slick-dots {
  position: absolute;
  top: 50%;
  right: 15%;
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
}

.number-dots .slick-dots button {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  width: 55px;
  height: 55px;
  line-height: 50px;
  border: 2px solid var(--white-color);
  background-color: transparent;
}

.number-dots .slick-dots button:before {
  display: none;
}

.number-dots .slick-dots li {
  display: block;
  margin: 20px 0 20px 0;
}

.number-dots .slick-dots li.slick-active button {
  color: var(--theme-color);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: var(--white-color);
}

.hero-subtitle {
  margin-top: -0.4em;
}

.hero-text {
  color: var(--white-color);
  font-size: 18px;
  max-width: 460px;
}

.hero-slider-3 .as-hero-slide {
  padding: 225px 0;
}

@media (min-width: 1460px) {
  .hero-slider-3 .container {
    --main-container: 1354px;
  }
}

.hero-style3 .hero-title {
  color: var(--white-color);
  font-size: 80px;
  line-height: 1.125;
  margin-bottom: 20px;
}

.hero-style3 .hero-title:first-of-type {
  margin-bottom: 0 !important;
}

.hero-style3 .hero-text {
  margin-bottom: 50px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-style3 .hero-title {
    font-size: 72px;
  }

  .as-hero-wrapper .slick-dots {
    right: 10%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .as-hero-wrapper .slick-dots {
    right: 6%;
  }

  .hero-slider-3 .as-hero-slide {
    padding: 160px 0;
  }

  .hero-style3 .hero-title {
    font-size: 64px;
  }

  .hero-style3 .hero-text {
    margin-bottom: 35px;
  }

  .hero-subtitle {
    margin-bottom: 12px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-text {
    font-size: 17px;
    max-width: 440px;
  }

  .hero-slider-3 .as-hero-slide {
    padding: 120px 0;
  }

  .hero-style3 .hero-title {
    font-size: 54px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style3 .hero-title {
    font-size: 46px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-slider-3 .as-hero-slide {
    padding: 90px 0;
  }

  .hero-slider-3 .as-hero-bg img {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero-style3 {
    text-align: center;
  }

  .hero-style3 .hero-title {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .hero-style3 .hero-text {
    margin-bottom: 25px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-style3 .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 350px) {
  .hero-style3 .hero-title {
    font-size: 34px;
  }
}

/*------------------- Service -------------------*/
.service-block {
  --space-x: 40px;
  --space-y: 40px;
}

.service-block_img {
  max-width: calc(100% - var(--space-x)*2);
  margin-left: var(--space-x);
  margin-bottom: -125px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.service-block_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-block_content {
  background-color: var(--title-color);
  padding: calc(var(--space-y) + 125px) var(--space-x) var(--space-y) var(--space-x);
  position: relative;
  z-index: 2;
}

.service-block_content:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-block_number {
  color: var(--theme-color);
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -0.45em;
  margin-bottom: 5px;
}

.service-block_title {
  font-size: 24px;
  margin-bottom: 18px;
}

.service-block_title a {
  color: inherit;
}

.service-block_title a:hover {
  color: var(--theme-color);
}

.service-block .as-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 25px;
  background-color: var(--white-color);
  color: var(--theme-color);
}

.service-block .as-btn:hover {
  color: var(--white-color);
}

.service-block .as-btn:hover:before {
  background-color: var(--theme-color);
}

.service-block:hover .service-block_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.service-block:hover .service-block_content:before {
  height: 0;
}

.service-block:hover .service-block_title {
  color: var(--white-color);
}

.service-block:hover .service-block_number {
  font-weight: 700;
}

/* Large devices */
@media (max-width: 1199px) {
  .service-block {
    --space-x: 30px;
    --space-y: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .service-block {
    --space-x: 40px;
    --space-y: 40px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .service-block {
    --space-x: 30px;
    --space-y: 30px;
  }
}

/*------------------- About -------------------*/
.bg-shape1 {
  position: absolute;
  height: 58%;
  width: 100%;
  max-width: 1680px;
  left: 0;
  right: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #f6f6f6;
  z-index: -1;
}

.tab-menu4 {
  margin-bottom: 32px;
  gap: 20px;
}

.tab-menu4 .as-btn {
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 15px 25px;
}

.tab-menu4 .as-btn:before {
  background-color: var(--theme-color);
}

.tab-menu4 .as-btn:hover,
.tab-menu4 .as-btn.active {
  color: var(--white-color);
}

.about-progress {
  margin-bottom: 32px;
}

.about-progress_title,
.about-progress .progress-value {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  margin-top: 14px;
}

.about-progress .progress {
  position: relative;
  height: 8px;
  background-color: #f6f6f6;
  overflow: visible;
  border-radius: 0;
}

.about-progress .progress-bar {
  background-color: var(--theme-color);
}

.about-progress .progress-value {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: bold;
  margin-bottom: 0;
  position: absolute;
  bottom: -40px;
  right: 0;
}

.img-box-3 {
  position: relative;
  text-align: right;
  margin-right: -110px;
}

.img-box-3 .img1 {
  padding-bottom: 125px;
}

.img-box-3 .img2 {
  position: absolute;
  bottom: 0;
  left: 30px;
}

.as-experience.style3 {
  background-color: var(--theme-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 20px 30px;
  min-width: 100%;
}

.as-experience.style3 .experience-year {
  font-size: 36px;
}

.as-experience.style3 .experience-text {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .img-box-3 {
    margin-right: -70px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .img-box-3 {
    margin-right: -30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .bg-shape1 {
    height: 77.6%;
  }

  .img-box-3 {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .img-box-3 .img1 {
    width: 80%;
    margin-left: auto;
    padding-bottom: 90px;
  }

  .img-box-3 .img1 img {
    width: 100%;
  }

  .img-box-3 .img2 {
    left: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .bg-shape1 {
    height: 76%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .bg-shape1 {
    height: 74.7%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .tab-menu4 {
    gap: 10px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .as-experience.style3 .experience-text {
    font-size: 18px;
  }
}

/*------------------- Price -------------------*/
.price-card_content {
  padding-bottom: var(--space);
}

.price-card.style2 .price-card_header,
.price-card.style2 .price-card_price {
  background-color: var(--theme-color);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card.style2 .price-card_header i,
.price-card.style2 .price-card_price i {
  color: rgba(255, 255, 255, 0.2);
}

.price-card.style2 .checklist li:before {
  color: var(--theme-color);
}

.price-card.style2 .as-btn {
  background-color: var(--theme-color);
}

.price-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 29px;
  margin-bottom: 29px;
}

.price-box-wrap {
  background-color: var(--white-color);
  padding: 50px;
}

.price-box:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.price-box_img {
  width: 180px;
}

.price-box_img img {
  width: 100%;
}

.price-box_content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.price-box_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.price-box_title,
.price-box_price {
  font-size: 24px;
  margin-top: -0.24em;
}

.price-box_price {
  color: var(--theme-color);
}

.price-box_list ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.price-box_list li {
  background-color: var(--smoke-color);
  font-weight: 500;
  position: relative;
  padding: 4px 15px 4px 38px;
}

.price-box_list li:before {
  content: "\f058";
  font-family: var(--icon-font);
  font-weight: 500;
  color: var(--theme-color);
  position: absolute;
  left: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* Medium devices */
@media (max-width: 991px) {
  .price-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
    gap: 30px 20px;
  }

  .price-box-wrap {
    padding: 30px;
  }

  .price-box_list ul {
    gap: 10px 10px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .price-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price-box_img {
    min-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .price-box_list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .price-box-wrap {
    padding: 15px;
  }

  .price-box_title,
  .price-box_price {
    font-size: 20px;
    margin-top: -0.24em;
  }
}

/*------------------- Process -------------------*/
.process-box {
  text-align: center;
}

.process-box-wrap {
  position: relative;
}

.process-box-wrap:after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='95' height='36' viewBox='0 0 95 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M94.4679 31.6307C91.4009 25.591 89.4353 19.3076 87.1033 12.9862C86.4971 11.3363 84.2227 12.3044 84.3522 13.8361C84.5643 16.4316 85.0589 19.0168 85.7568 21.5611C80.8294 16.8547 74.746 12.8802 69.1491 9.78191C61.6434 5.62951 53.3672 2.63034 44.9206 1.10127C30.9162 -1.43292 11.288 0.651195 1.16013 11.9057C0.580827 12.5533 1.50132 13.4325 2.18539 13.1287C9.13091 10.1 15.2731 6.79511 22.9103 5.64679C30.3866 4.52542 38.3065 4.83422 45.6747 6.54438C53.4625 8.356 60.6085 11.8604 67.2732 16.2324C72.8443 19.8919 77.5181 24.4117 82.4906 28.6701C77.814 28.5231 73.0826 29.199 69.1497 31.0075C66.8375 32.0722 67.9606 35.5872 70.4517 35.2251C74.2327 34.6769 77.7848 33.6626 81.6553 33.633C85.2441 33.6022 88.6855 34.1806 92.1939 34.8647C93.8782 35.2006 95.1984 33.0684 94.4679 31.6307Z' fill='%23E81C2E' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  height: 36px;
  width: 96px;
  position: absolute;
  top: 30px;
  right: -48px;
}

.process-box-wrap:nth-child(even) {
  margin-top: 60px;
}

.process-box-wrap:nth-child(even):after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.process-box-wrap:last-child:after {
  display: none;
}

.process-box_icon {
  width: 130px;
  height: 130px;
  line-height: 130px;
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 0px 77px 10px rgba(170, 170, 170, 0.13);
  margin: 0 auto 25px auto;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process-box_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process-box_title {
  font-size: 24px;
}

.process-box_text {
  max-width: 285px;
  margin: 0 auto -0.5em auto;
}

.process-box:hover .process-box_icon {
  background-color: var(--theme-color);
}

.process-box:hover .process-box_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Medium devices */
@media (max-width: 991px) {
  .process-box-wrap:nth-child(even):after {
    display: none;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .process-box-wrap {
    margin-bottom: 40px;
  }

  .process-box-wrap:after {
    display: none;
  }

  .process-box-wrap:nth-child(even) {
    margin-top: 0;
  }

  .process-box-wrap:last-child {
    margin-bottom: 0;
  }
}

/*------------------- Blog -------------------*/
/* Blog 3 ---------------------------------- */
.blog-grid {
  background-color: var(--smoke-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-grid .blog-img {
  overflow: hidden;
}

.blog-grid .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-grid .blog-content {
  padding: 40px;
}

.blog-grid .blog-title {
  font-size: 24px;
  margin-bottom: -0.44em;
}

.blog-grid .blog-meta {
  margin-bottom: 12px;
  margin-top: -0.5em;
}

.blog-grid .blog-meta a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-grid .blog-text {
  margin-bottom: 10px;
  margin-top: -2px;
}

.blog-grid .blog-btn {
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  padding: 26px 40px;
  display: block;
  color: var(--title-color);
}

.blog-grid .blog-btn i {
  margin-left: 5px;
}

.blog-grid .blog-btn:hover {
  color: var(--theme-color);
}

.blog-grid:hover {
  background-color: var(--white-color);
  box-shadow: 0px 2px 20px rgba(111, 111, 111, 0.1);
}

.blog-grid:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-grid .blog-content {
    padding: 40px 30px;
  }

  .blog-grid .blog-btn {
    padding: 25px 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .blog-grid .blog-content {
    padding: 40px 15px;
  }

  .blog-grid .blog-btn {
    padding: 25px 15px;
  }

  .blog-grid .blog-meta span,
  .blog-grid .blog-meta a {
    margin-right: 15px;
  }

  .blog-grid .blog-meta span:last-child,
  .blog-grid .blog-meta a:last-child {
    margin-right: 0;
  }
}

/*------------------- Footer -------------------*/
.footer-wrapper .as-btn {
  padding: 19.5px 35px;
}

.footer-layout3 {
  background-color: var(--title-color);
  --body-color: #8b8e95;
}

.footer-layout3 .copyright-wrap {
  padding: 40px 0;
  border-top: 1px solid #2A2F3D;
}

.footer-layout3 .as-social a {
  background-color: #252934;
  color: var(--white-color);
  border-radius: 99px;
}

.footer-layout3 .as-social a:hover {
  background-color: var(--theme-color);
}

.footer-layout3 .newsletter-form input {
  background-color: transparent;
  border: 1px solid #252934;
  color: var(--white-color);
}

.footer-layout3 .newsletter-form input::-moz-placeholder {
  color: var(--white-color);
}

.footer-layout3 .newsletter-form input::-webkit-input-placeholder {
  color: var(--white-color);
}

.footer-layout3 .newsletter-form input:-ms-input-placeholder {
  color: var(--white-color);
}

.footer-layout3 .newsletter-form input::-ms-input-placeholder {
  color: var(--white-color);
}

.footer-layout3 .newsletter-form input::placeholder {
  color: var(--white-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-layout3 .copyright-wrap {
    padding: 25px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-layout3 .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 38px;
  }
}

.widget_newsletter {
  max-width: 300px;
}

.widget_newsletter .newsletter-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {

  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }

  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }

  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }

  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }

  .space-top-md-none {
    padding-top: 0;
  }

  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }

  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
}

/*# sourceMappingURL=style.css.map */