:root {
  --body-bg: #ffffff;
  --theme-color: #d8c8b2;
  --body-color: #555555;
  --title-color: #121f38;
  --primary-color: #3C3C3C;
  --secondary-color: #d8c8b2;
  --secondary-light-color: #d8c8b3;
  --smoke-color: #EFF1F5;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e7e5e5;
  --title-font: var(--font-marcellus), serif;
  --body-font: var(--font-dm-sans), sans-serif;
  --icon-font: "Font Awesome 6 Free";
  --main-container: 1270px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

.home-8,
.home-7,
.home-6,
.home-4 {
  --main-container: 1170px;
}

/*------------------- 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);
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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;
  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 {
  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;
}


/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    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);
  }

  .container-fluid {
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}

@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: -12px !important;
    margin-right: -12px !important;
  }
}

.outer-wrap2,
.outer-wrap1 {
  max-width: 1880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.outer-wrap3 {
  max-width: 1445px;
  background-color: var(--white-color);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--section-space);
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Hight Resoulation devices */
@media (min-width: 1922px) {
  .hd-container1 {
    max-width: 2000px;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .outer-wrap3 {
    max-width: 1350px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .outer-wrap3 {
    max-width: 1140px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .outer-wrap3 {
    padding-top: var(--section-space-mobile);
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
}

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

.gy-gx {
  --bs-gutter-y: var(--bs-gutter-x);
}

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

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

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

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

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

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

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

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

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

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

/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 60px;
  padding: 0 45px 0 30px;
  border: 1px solid var(--border-color);
  color: var(--body-color);
  background-color: var(--body-bg);
  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;
  color: var(--body-color);
  box-shadow: none;
  background-color: var(--body-bg);
  border-color: var(--border-color);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-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::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  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;
}

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


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: #f1f1f1;
  border: 1px solid rgba(196, 198, 200, 0.3);
  height: 20px;
  width: 20px;
  line-height: 20px;
  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.5px;
  font-size: 0.4em;
  line-height: 18.95px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--body-bg);
  color: transparent;
  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 {
  position: absolute;
  right: calc(var(--bs-gutter-x) / 2 + 30px);
  top: 21px;
  font-size: 16px;
  color: #A0ABB4;
}

.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(0.375em + 0.8875rem) center;
}

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(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

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

.form-messages {
  display: none;
  margin: 0;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 4px;
}

.form-messages>pre:last-child {
  margin-bottom: 0;
}

.form-messages>pre:first-of-type {
  margin-top: 0;
}

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

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

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

/*------------------- 2.4. Slick Slider -------------------*/
.row>.slick-list {
  padding-left: 0;
  padding-right: 0;
}

.slick-track>[class*=col] {
  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-dots {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 30px 0;
  text-align: center;
  height: -moz-max-content;
  height: max-content;
  line-height: 0;
}

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

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

.slick-dots button {
  font-size: 0;
  padding: 0;
  background-color: transparent;
  width: 60px;
  height: 15px;
  line-height: 0;
  border: 3px solid var(--title-color);
  background-color: var(--dots-bg, transparent);
  transition: all ease 0.4s;
  position: relative;
}

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

.slick-arrow {
  display: inline-block;
  padding: 0;
  position: absolute;
  background-color: var(--secondary-color);
  color: var(--theme-color);
  top: 50%;
  border: none;
  left: var(--pos-x, -40px);
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  font-size: var(--icon-font-size, 16px);
  margin-top: calc(var(--icon-size, 50px) / -2);
  z-index: 2;
  border-radius: 0;
  transition: all ease 0.4s;
}

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

.slick-arrow.slick-next {
  right: var(--pos-x, -40px);
  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 {
  --pos-x: -100px;
  opacity: 1;
  visibility: visible;
}

.has-slide-shadow {
  margin-top: -30px;
  margin-bottom: -30px;
}

.has-slide-shadow {
  margin-top: 30px;
  margin-bottom: 30px;
}

.arrows-style1 {
  display: flex;
  justify-content: space-between;
  max-width: calc(100% - var(--padding-x, 492.5px) * 2);
  width: 100%;
  margin: 20px auto 28px auto;
  position: relative;
  z-index: 1;
}

.arrows-style1 button {
  border: none;
  padding: 0;
  line-height: 1;
  background-color: transparent;
  color: var(--theme-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  display: inline-flex;
  gap: 10px;
}

.arrows-style1 button .arrow {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: var(--path);
  clip-path: var(--path);
  vertical-align: middle;
}

.arrows-style1 button:hover {
  color: var(--title-color);
}

.arrows-style1 [data-slick-prev] {
  --path: polygon(100% 0, 60% 49%, 100% 100%, 0 50%);
}

.arrows-style1 [data-slick-next] {
  flex-direction: row-reverse;
  --path: polygon(0 0, 100% 50%, 0 100%, 40% 50%);
}

.arrows-style2 .slick-arrow {
  background-color: var(--white-color);
  color: var(--theme-color);
}

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

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

  .arrows-style1 {
    --padding-x: 330px;
  }
}

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

  .arrows-style1 {
    --padding-x: 220px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .arrows-style1 {
    --padding-x: 170px;
  }
}

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

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

  .arrows-style1 {
    --padding-x: 100px;
  }

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

/* Small devices */
@media (max-width: 767px) {
  .arrows-style1 {
    --padding-x: 10px;
  }
}

/*------------------- 2.5. Mobile Menu -------------------*/
.vs-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%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.vs-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: rgba(154, 86, 58, 0.1);
}

.vs-menu-wrapper .mobile-logo img {
  max-width: 220px;
}

.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  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%;
}

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

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

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

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

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

.vs-mobile-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(154, 86, 58, 0.2);
  background-color: #000;
}

.vs-mobile-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #000;
}

.vs-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}

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

.vs-mobile-menu ul li {
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
}

.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--border-color);
}

.vs-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);
  font-weight: 500;
}

.vs-mobile-menu ul li a:before {
  /* content: "\f105"; */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}

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

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

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

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

.vs-mobile-menu ul .vs-item-has-children>a .vs-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(154, 86, 58, 0.5);
  border-radius: 50%;
}

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

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

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

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

.vs-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;
  /* Small devices */
}

@media (max-width: 767px) {
  .vs-menu-toggle {
    width: 45px;
    height: 45px;
  }
}

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

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

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

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

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

/*------------------- 4.1. Widget  -------------------*/
.widget_categories ul,
.widget_nav_menu ul {
  list-style: none;
  margin: 0 0 -10px 0;
  padding: 0;
}

.widget_categories a,
.widget_nav_menu a {
  display: block;
  padding: 0 0 20px 15px;
  margin: 0 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #888888;
  border-bottom: 1px dashed var(--border-color);
}

.widget_categories a:before,
.widget_nav_menu a:before {
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.widget_categories a:hover,
.widget_nav_menu a:hover {
  color: var(--theme-color);
}

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

.widget_categories li>span,
.widget_nav_menu li>span {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  line-height: 1;
  transition: all ease 0.4s;
}

.widget_categories li:hover>span,
.widget_nav_menu li:hover>span {
  color: var(--theme-color);
}

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

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}
.footer-layout4 .copyright-wrap {
  background-color: #1d2429;
  padding: 20px 0;
}



/*------------------- 4.8. Hero Area  -------------------*/
.hero-img {
  position: relative;
}


.hero-layout8 a.ls-gui-element.ls-nav-prev,
.hero-layout8 a.ls-gui-element.ls-nav-next {
  margin-top: calc(var(--arrow-size) - 180px);
}

@media (max-width: 991px) {
  .hero-layout8 {
    margin-bottom: 30px;
  }
}

.hero-ripple {
  position: absolute;
  left: 55%;
  top: 15%;
  z-index: -1;
  width: var(--shape-size, 573px);
  height: var(--shape-size, 573px);
  margin: 0 0 0 calc(var(--shape-size, 573px) / -2);
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.8);
}

.hero-ripple:after,
.hero-ripple:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all ease 0.4s;
  background-color: #fefefe;
}

.hero-ripple:after {
  animation-delay: 2s;
}

.hero-layout1 {
  overflow: hidden;
  position: relative;
}

.hero-layout1 .hero-mask {
  background-color: var(--secondary-light-color);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.hero-layout1 [class*=hero-shape] {
  position: absolute;
  z-index: 1;
}

/* Fix Next.js Image aspect ratio warnings */
.hero-layout1 [class*=hero-shape] img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.hero-layout1 .hero-shape-1 {
  top: 14%;
  right: 42%;
}

.hero-layout1 .hero-shape-2 {
  top: 13%;
  right: 10%;
}

.hero-layout1 .hero-shape-3 {
  top: 29%;
  right: 0%;
}

.hero-layout1 .hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-layout1 .hero-content {
  text-align: center;
  position: relative;
}

.hero-layout1 .hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--theme-color);
  line-height: 1;
  display: block;
  margin: -0.1em 0 13px 0;
  animation-delay: 0.2s;
}

.hero-layout1 .hero-title {
  font-size: 100px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  padding: 0 70px;
  line-height: 1;
  color: #313c45;
  animation-delay: 0s;
}

.hero-layout1 .vs-btn {
  animation-delay: 0.3s;
}

.hero-layout1 .hero-img {
  flex: 1;
  padding: 50px 0 0 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-layout1 .hero-flower {
  position: absolute;
  left: 50%;
  top: 30%;
  width: -moz-max-content;
  width: max-content;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-layout1 .slick-current {
  --animation-name: slideindown;
}

.hero-layout1 .slick-current .vs-btn {
  --animation-name: slideinup;
}

.hero-layout2 {
  background-image: linear-gradient(to top, #fcf2ee 40%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero-layout2 .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-layout2 .hero-img {
  text-align: center;
  padding-top: 135px;
  margin-right: 50px;
  flex: 1;
}

.hero-layout2 .hero-content {
  padding: 120px 0 90px 0;
  position: relative;
  z-index: 1;
}

.hero-layout2 .hero-flower {
  position: absolute;
  left: 50%;
  top: 1%;
  z-index: -1;
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
}

.hero-layout2 [class*=hero-shape] {
  position: absolute;
  z-index: 1;
}

.hero-layout2 .hero-shape-1 {
  bottom: 12%;
  left: 4%;
}

.hero-layout2 .hero-shape-2 {
  right: 43%;
  top: 9%;
}

.hero-layout2 .hero-shape-3 {
  right: 2%;
  top: 17%;
}

.hero-layout2 .hero-shape-4 {
  top: 37%;
  left: 46%;
}

.hero-layout2 .hero-shape-5 {
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 1031px;
  background-color: #fde7da;
  z-index: auto;
  /* Hight Resoulation devices */
}

@media (min-width: 1922px) {
  .hero-layout2 .hero-shape-5 {
    max-width: 60%;
  }
}

.hero-layout2 .hero-ripple {
  left: 56%;
  top: 21%;
}

.hero-layout3 .slick-arrow {
  --pos-x: 120px;
  background-color: var(--theme-color);
  color: var(--white-color);
}

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

/* Extra large devices */
@media (max-width: 1500px) {
  .hero-layout1 .hero-mask {
    -webkit-mask-size: cover;
    mask-size: cover;
  }

  .hero-layout1 .hero-ripple {
    --shape-size: 400px;
    left: 50%;
  }

  .hero-layout1 .hero-shape-1 {
    top: 14%;
    right: 38%;
    max-width: 250px;
  }

  .hero-layout1 .hero-shape-3 {
    max-width: 100px;
    top: auto;
    bottom: 10%;
  }

  .hero-layout1 .hero-shape-2 {
    top: 11%;
    right: 6%;
    max-width: 60px;
  }

  .hero-layout1 .hero-flower {
    max-width: 500px;
  }

  .hero-layout1 .hero-inner {
    max-width: 1300px;
  }

  .hero-layout1 .hero-title {
    font-size: 90px;
    margin: 0 0 30px 0;
    padding: 0 0;
  }

  .hero-layout1 .hero-subtitle {
    font-size: 16px;
  }

  .hero-layout2 .hero-inner {
    max-width: 1350px;
    justify-content: space-between;
  }

  .hero-layout2 .hero-img {
    padding-top: 110px;
    max-width: 450px;
  }

  .hero-layout2 .hero-ripple {
    --shape-size: 400px;
  }

  .hero-layout2 .hero-content {
    padding: 130px 0 60px 0;
  }

  .hero-layout2 .hero-flower {
    max-width: 400px;
    top: 5%;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-layout1 .hero-inner {
    max-width: 1000px;
  }

  .hero-layout1 .hero-title {
    font-size: 72px;
  }

  .hero-layout1 .hero-shape-1 {
    top: 14%;
    right: auto;
    max-width: 120px;
    left: 2%;
  }

  .hero-layout1 .hero-flower {
    max-width: 400px;
  }

  .hero-layout2 .hero-inner {
    max-width: 1140px;
  }

  .hero-layout2 .hero-content {
    padding: 60px 0 60px 0;
    max-width: 48%;
  }

  .hero-layout2 .hero-shape-2 {
    right: 31%;
    top: 4%;
  }

  .hero-layout2 .hero-shape-3 {
    right: 2%;
    top: 17%;
    max-width: 130px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-layout1 .hero-inner {
    max-width: 960px;
  }

  .hero-layout1 .hero-img {
    max-width: 390px;
  }

  .hero-layout1 .hero-ripple {
    --shape-size: 240px;
  }

  .hero-layout1 .hero-title {
    font-size: 60px;
  }

  .hero-layout1 .hero-content {
    flex: 1;
  }

  .hero-layout2 .hero-inner {
    max-width: 960px;
  }

  .hero-layout2 .hero-img {
    margin-right: 0;
  }

  .hero-layout2 .hero-content {
    padding: 60px 0 40px 0;
    max-width: 60%;
  }

  .hero-layout2 .hero-ripple {
    --shape-size: 250px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1 .hero-inner {
    max-width: 720px;
  }

  .hero-layout1 .hero-img {
    max-width: 320px;
  }

  .hero-layout1 .hero-title {
    font-size: 46px;
  }

  .hero-layout1 .hero-subtitle {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .hero-layout1 .hero-flower {
    max-width: 300px;
  }

  .hero-layout1 .hero-shape-3 {
    max-width: 50px;
  }


}

/* Small devices */
@media (max-width: 767px) {
  .service-style1:last-child {
    margin-bottom: 45px !important;
  }

  .service-style1 {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .cta-buttons {
    padding-top: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .hero-layout1 .hero-inner.custom-hero {
    display: block !important;
  }

  .hero-layout1 .hero-inner {
    flex-direction: column-reverse;
    padding-top: 70px;
  }

  .hero-layout1 .hero-shape-1 {
    top: 46%;
    right: auto;
    max-width: 70px;
    left: 2%;
  }

  .hero-layout1 .hero-shape-2 {
    top: 3%;
    right: 3%;
    max-width: 25px;
  }

  .hero-layout1 .hero-title {
    font-size: 36px;
  }

  .hero-layout1 .hero-subtitle {
    font-size: 14px;
  }

  .hero-layout1 .hero-flower {
    max-width: 230px;
  }

  .hero-layout2 .hero-inner {
    padding: 0 15px 0 15px;
  }
}

.ls-hero-layout6 {
  background-color: rgba(255, 233, 219, 0.4);
}

.bg-hero-light {
  background-color: rgba(255, 233, 219, 0.6);
}

.ls-box-arrow {
  box-shadow: 0px 8px 16px 0px rgba(154, 86, 58, 0.5);
}

.ls-box-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 18px;
  height: 18px;
  border: 10px;
  border-style: solid;
  border-color: var(--theme-color) var(--theme-color) transparent transparent;
}

@media (max-width: 1024px) {
  .ls-layer .vs-btn.style9 {
    padding: 5px 5px 5px 15px;
    font-size: 14px;
  }

  .ls-layer .vs-btn.style9 i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .ls-layer .vs-btn.style9 {
    padding: 12px 15px;
  }

  .ls-layer .vs-btn.style9 i {
    width: auto;
    height: auto;
    line-height: 1;
    background-color: transparent;
    color: var(--theme-color);
    margin-left: 7px;
  }

  .ls-hero-layout6 .ls-layer .vs-btn.style9 {
    padding: 12px 11px;
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .ls-layer a.vs-btn.style12 {
    padding: 14px 22px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .ls-layer a.vs-btn.style12 {
    padding: 10px 13px;
    font-size: 12px;
  }
}

/*------------------- 4.9. Error  -------------------*/
.vs-error-wrapper {
  background-color: var(--theme-color);
}

.error-number {
  font-size: 250px;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin: -0.26em 0 0 0;
  color: var(--white-color);
}

.error-number .zero {
  color: var(--theme-color);
  font-size: 1.4em;
}

.error-title {
  text-transform: uppercase;
  font-size: 50px;
  margin: -0.3em 0 5px 0;
  color: var(--white-color);
}

.error-text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.error-content {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 90px 0;
}

.search-inline {
  position: relative;
  margin: 0 auto 30px auto;
  width: 100%;
  max-width: 650px;
}

.search-inline input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  height: 66px;
  padding: 0 0 0 40px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
}

.search-inline input::-moz-placeholder {
  color: var(--white-color);
}

.search-inline input::placeholder {
  color: var(--white-color);
}

.search-inline input:focus {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
}

.search-inline button {
  position: absolute;
  right: 9px;
  top: 8px;
  border: none;
  color: var(--white-color);
  background-color: var(--theme-color);
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
}

.search-inline button:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .error-content {
    padding: 80px 30px;
  }

  .error-number {
    font-size: 180px;
  }
}

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

/* Small devices */
@media (max-width: 767px) {
  .error-content {
    padding: 50px 20px;
  }

  .error-number {
    font-size: 110px;
    margin-bottom: 15px;
  }

  .error-title {
    font-size: 26px;
  }

  .error-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .error-content {
    padding: 80px 20px;
  }

  .search-inline input {
    padding: 0 0 0 25px;
    font-size: 16px;
    font-size: 14px;
  }
}

/*------------------- 4.10. About  -------------------*/
.reservation-img-shape {
  position: absolute;
  left: -19.5%;
  top: 50%;
  transform: translateY(-50%);
}

.img-box1 {
  position: relative;
}

.img-box1 .img-1 {
  position: absolute;
  right: 10%;
  bottom: -3%;
}

.img-box2 {
  position: relative;
  padding: 0 0 50px 0;
  margin: 0 0 30px 0;
  z-index: 1;
}

.img-box2 .img-1 {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  z-index: 5;
  box-shadow: 1.5px 2.598px 14.88px 1.12px rgba(18, 27, 36, 0.1);
}

.img-box2 .img-2 {
  position: absolute;
  left: -145px;
  bottom: 55px;
  z-index: 4;
}

.img-box2 .img-shape {
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: 0;
  height: 100%;
  max-height: 380px;
  background-color: #fde7da;
}

.img-box2 .img-text {
  font-size: 60px;
  color: #4d4a49;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--title-font);
  opacity: 0.13;
  position: absolute;
  right: 15px;
  top: 50px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.img-box3 {
  padding: 50px;
  margin-bottom: 30px;
  position: relative;
}

.img-box3 .img-1 {
  overflow: hidden;
  border-radius: 9999px;
}

.img-box3 .img-2 {
  position: absolute;
  left: -15%;
  top: 36%;
  z-index: -1;
}

.img-box3 .img-product {
  background-color: #fdebe0;
  border-radius: 99999px;
  text-align: center;
  padding: 35px 0 38px 0;
  position: relative;
  z-index: 2;
}

.img-box3 .img-product img {
  margin-bottom: 37px;
}

.img-box3 .product-title {
  font-size: 24px;
  text-transform: uppercase;
  font-family: var(--title-font);
  color: var(--title-color);
  margin: 0 0 8px 0;
  line-height: 1;
}

.img-box3 .product-price {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--theme-color);
  margin: 0;
}

.img-box3 .shape-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.img-box3 .shape-line svg {
  fill: none;
  transform: rotateX(180deg);
}

.img-box3 .shape-line,
.img-box3 .shape-dot {
  fill: var(--theme-color);
}

.img-box3 .text-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: 0.28em;
  font-family: var(--body-font);
  font-family: var(--title-font);
  font-weight: 300;
  transform: rotate(180deg);
}

.img-box3 .text-shape svg {
  overflow: initial;
  width: 90%;
  height: 100%;
  fill: none;
}

.img-box3 .text-shape text {
  fill: var(--title-color);
}

.img-box3.style2 .img-product {
  background-color: var(--white-color);
}

.img-box3.style2 .text-shape text,
.img-box3.style2 .shape-dot,
.img-box3.style2 .shape-line {
  fill: var(--white-color);
}

.img-box3.style3 {
  padding: 3px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  border-radius: 9999px;
}

.img-box3.style3 .img-2 {
  left: -34%;
  z-index: -1;
}

.img-box3.style3 .img-product {
  padding-bottom: 50px;
}

.img-box4 {
  position: relative;
  z-index: 1;
}

.img-box4 .img-3 {
  position: absolute;
  left: -4%;
  bottom: -6%;
  z-index: -1;
}

.img-box4 .img-2 {
  position: absolute;
  right: -4%;
  top: -6%;
  z-index: -1;
}

.img-box4 .watch-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.img-box5 img {
  width: 100%;
}

.img-box6 {
  position: relative;
}

.img-box6 .img-1 img {
  width: 100%;
}

.img-box6 .img-2 {
  position: absolute;
  right: -180px;
  bottom: -80px;
}

.img-box7 {
  position: relative;
  padding: 60px 0 60px 0;
  margin: 0 0 30px 0;
}

.img-box7 .img-1 {
  padding: 0 30px 30px 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
}

.img-box7 .img-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.img-box7 .img-3 {
  position: absolute;
  left: -130px;
  bottom: 0;
}

.img-box7 .img-4 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.img-box8 {
  position: relative;
}

.img-box9 {
  position: relative;
  margin-bottom: 30px;
}

.img-box9 .img-2 {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
  margin: -270px 0 0 auto;
  background-color: var(--white-color);
  padding: 10px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.img-box10 {
  display: flex;
  margin-bottom: 30px;
}

.img-box10 .img-1 img,
.img-box10 .img-2 img {
  border-radius: 6px;
}

.img-box10 .img-1 {
  margin-right: -100px;
  margin-top: 100px;
}






.media-style1 {
  position: relative;
  background-image: linear-gradient(120deg, rgb(253, 230, 216) 0%, rgb(254, 254, 254) 70%);
  display: flex;
  align-items: center;
  margin: 20px 0 28px 32px;
  padding: 10px 0 10px 0;
}

.media-style1 .circle-btn,
.media-style1 .media-img {
  margin: 0 30px 0 -32px;
}

.media-style1 .media-text {
  margin: 0;
  color: #464f56;
  font-size: 20px;
  line-height: 26px;
}







.about-text {
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.table-style1 {
  margin-bottom: 30px;
}

.table-style1 .tr {
  border-bottom: 1px solid rgba(77, 74, 73, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 15px;
}

.table-style1 .tr:nth-child(odd) {
  border-top: 1px solid rgba(77, 74, 73, 0.18);
  background-image: linear-gradient(120deg, rgb(253, 230, 216) 0%, rgb(254, 254, 254) 70%);
}

.table-style1 .tr:nth-child(odd) .th {
  color: var(--theme-color);
}

.table-style1 .th {
  text-transform: uppercase;
  color: var(--title-color);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.table-style1 .td {
  color: #6f6c6c;
}

.about-box1 {
  padding-top: 24px;
  margin-bottom: 30px;
}

.about-box1 .sec-subtitle {
  margin-left: -80px;
}

.about-box1 .sec-title2 {
  margin: 0 0 25px -80px;
  max-width: 570px;
}

.about-box1 .media-style1 {
  margin-bottom: 22px;
}



.list-style1 ul {
  margin-bottom: 21px;
}

.list-style1 li {
  color: #6f6c6c;
  margin-bottom: 8px;
}


.about-number {
  font-size: 45px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1;
  display: block;
}

@media (max-width: 1500px) and (min-width: 1399px) {
  .img-box5 {
    max-width: 510px;
  }
}

@media (max-width: 1399px) and (min-width: 1199px) {
  .img-box5 {
    max-width: 430px;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .media-style3 .media-title {
    font-size: 76px;
  }

  .media-style3 .media-label {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .about-box1 {
    padding-top: 0;
  }

  .about-box1 .sec-subtitle {
    margin-left: 0;
  }

  .about-box1 .sec-title2 {
    margin: 0 0 25px 0;
  }

  .media-style1 {
    padding: 5px 0 5px 0;
    margin: 20px 0 26px 32px;
  }

  .media-style1 .media-text {
    font-size: 18px;
  }

  .media-style1 .circle-btn,
  .media-style1 .media-img {
    margin: 0px 20px 0 -32px;
  }

  .table-style1 .tr {
    padding: 16px 20px;
  }

  .img-box2 {
    padding: 0 50px 40px 40px;
  }

  .img-box2 .img-1 {
    width: 100%;
  }

  .img-box2 .img-1 img {
    width: 100%;
  }

  .img-box2 .img-shape {
    left: 0;
    right: 0;
  }

  .img-box2 .img-text {
    font-size: 46px;
    right: 3px;
  }

  .img-box2 .img-2 {
    left: -8%;
  }


  .img-box3 .img-2 {
    left: -5%;
  }

  .img-box3.style3 .img-2 {
    display: none;
  }

  .img-2 {
    max-width: 300px;
    bottom: 0;
    right: 0;
  }

}

/* Medium Large devices */
@media (max-width: 1399px) {
  .img-box2 .img-2 {
    left: 0;
  }

  .media-title {
    font-size: 48px;
  }

  .circle-btn {
    --btn-size: 85px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box10 {
    justify-content: center;
  }

  .img-box9 .img-2 {
    margin: -250px 0 0 auto;
    padding: 10px;
    max-width: 270px;
  }

  .media-style1 .circle-btn,
  .media-style1 .media-img {
    margin: 0 20px 0 -32px;
  }

  .img-3 {
    left: 0;
    max-width: 160px;
  }

  .img-2 {
    max-width: 150px;
  }

}

/* Medium devices */
@media (max-width: 991px) {
  .img-box1>img {
    width: 100%;
  }

  .img-2 {
    left: 0;
    bottom: 0;
    max-width: 180px;
  }

  .img-1 img {
    width: 100%;
  }

  .img-2 {
    left: 0;
  }

  .img-1 {
    padding: 0;
    width: 100%;
  }

  .img-1 img {
    width: 100%;
  }

  .media-style1 {
    margin: 20px 0 18px 32px;
  }



}



.contact-map {
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 404px;
}

.contact-table {
  margin: 3px 0 30px 0;
}

.contact-table .tr {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9e0db;
  padding: 19px 0;
}

.contact-table .th {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title-color);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-right: 10px;
}

.contact-table .td {
  letter-spacing: 0.03em;
}


/* Extra small devices */
@media (max-width: 575px) {
  .contact-table .th {
    font-size: 10px;
    letter-spacing: 0;
    margin-right: 5px;
  }

  .contact-table .td {
    letter-spacing: 0;
    font-size: 12px;
  }
}





.feature-style2 {
  text-align: center;
  outline: 1px dashed rgba(154, 86, 58, 0.5);
  outline-offset: -15px;
  padding: 0.1px 55px 55px 55px;
  background-color: var(--white-color);
  --icon-size: 140px;
  margin: calc(var(--icon-size) / 3 + 8px) 0 30px 0;
  box-shadow: 1.5px 2.598px 14.88px 1.12px rgba(116, 117, 117, 0.1);
}

.feature-style2 .feature-text {
  margin: 0 auto 28px auto;
  color: #6f6c6c;
  line-height: 22px;
  max-width: 275px;
}

.feature-style2 .vs-icon {
  margin: calc(var(--icon-size) / -3) auto 24px auto;
  display: block;
  transition: all ease 0.4s;
}

.feature-style2 .vs-icon img {
  filter: none;
  transition: all ease 0.4s;
  transform: rotateY(0);
}

.feature-style2 .arrow-shape {
  margin: 17px 0 17px 0;
  opacity: 0.5;
}

.feature-style2:hover {
  outline-color: var(--theme-color);
}

.feature-style2:hover .vs-icon {
  background-color: var(--theme-color);
}

.feature-style2:hover .vs-icon img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .feature-style2 {
    padding: 0.1px 40px 40px 40px;
  }

  .feature-style2 .feature-title {
    font-size: 24px;
  }

  .feature-style2 .feature-text {
    margin: 0 auto 18px auto;
    font-size: 14px;
  }

  .feature-style2 .arrow-shape {
    margin: 7px 0 7px 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-title {
    font-size: 22px;
  }
  .feature-style2 {
    --icon-size: 100px;
  }

  .feature-style2 .feature-text {
    margin: 0 auto 10px auto;
  }
}

/*------------------- 4.17. Service  -------------------*/
.service-style1 {
  display: flex;
  max-width: 430px;
  margin: 0 0 45px 0;
  align-items: center;
}

.service-style1:last-child {
  margin-bottom: 0;
}

@media (min-width: 991px) {
  .service-style1.reverse {
    flex-direction: row-reverse;
    text-align: right;
  }

  .service-style1.reverse .service-content {
    padding: 0 20px 0 0;
  }
}

.service-style1 .service-icon {
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  margin: 5px;
  background-color: var(--theme-color);
  text-align: center;
  border-radius: 50%;
  position: relative;
  transition: all ease 0.4s;
}

.service-style1 .service-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 1px dashed var(--theme-color);
  border-radius: inherit;
  animation: spin 30s infinite linear;
}

.service-style1 .service-content {
  padding: 0 0 0 20px;
  flex: 1;
}

.service-style1 .service-title {
  font-size: 26px;
  margin: 0.08em 0 11px 0;
}

.service-style1 .service-text {
  margin: 0;
}

.service-style1:hover .vs-icon {
  background-color: var(--title-color);
}

.service-style1:hover .vs-icon:before {
  border-color: var(--title-color);
}


.service-inner1 {
  position: relative;
  max-width: 1750px;
  margin: 0 auto;
  z-index: 1;
}

.service-inner1:after,
.service-inner1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  border-radius: 0 200px 200px 0;
  background-image: linear-gradient(var(--gradient-direction, to right), rgb(254, 254, 254) 0%, rgb(253, 230, 216) 100%);
  z-index: -1;
}

.service-inner1:after {
  left: auto;
  right: 0;
  border-radius: 200px 0 0 200px;
  --gradient-direction: to left;
}


/*------------------- 06.2. Team -------------------*/
.vs-team-layout1 a {
  color: inherit;
}

.vs-team-layout1 .vs-team-degi {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.vs-team-layout1 .social-links {
  margin-bottom: 10px;
  transition: all ease 0.4s;
  position: relative;
  top: -50px;
  opacity: 0;
  visibility: hidden;
  margin: -20px 0 10px 0;
  padding: 0;
  list-style-type: none;
}

.vs-team-layout1 .social-links li {
  display: inline-block;
  margin: 0 5px;
}

.vs-team-layout1 .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--white-color);
  line-height: 40px;
  box-shadow: 0px 6px 12px 0px rgba(249, 163, 146, 0.2);
  border-radius: 50%;
}

.vs-team-layout1 .social-links a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.vs-team-layout1 .vs-team {
  text-align: center;
  margin-bottom: 20px;
}

.vs-team-layout1 .vs-team:hover .social-links {
  top: 0;
  opacity: 1;
  visibility: visible;
}

/*------------------- 06.3. Gallery -------------------*/
.vs-gallery-layout1 .vs-gallery-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  background-color: rgba(0, 0, 0, 0.6);
}

.vs-gallery-layout1 .vs-gallery-content {
  text-align: center;
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transform: translateY(-50%);
}

.vs-gallery-layout1 .vs-gallery-btn {
  width: 80px;
  height: 80px;
  line-height: 78px;
  font-size: 22px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  color: var(--white-color);
  border-radius: 50%;
}

.vs-gallery-layout1 .vs-gallery-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.vs-gallery-layout1 .instagram-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: -40px 0 0 -40px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

.vs-gallery-layout1 .instagram-btn i {
  line-height: 78px;
}

.vs-gallery-layout1 .vs-gallery {
  position: relative;
}

.vs-gallery-layout1 .vs-gallery:hover .vs-gallery-content,
.vs-gallery-layout1 .vs-gallery:hover .vs-gallery-overlay,
.vs-gallery-layout1 .vs-gallery:hover .instagram-btn {
  opacity: 1;
  visibility: visible;
}

.vs-gallery-layout1 .vs-gallery:hover .vs-gallery-content {
  top: 50%;
  transition-delay: 0.4s;
}

.vs-gallery-layout1 .vs-gallery:hover .vs-gallery-overlay {
  height: 100%;
}

.gallery-box {
  position: relative;
  --shape-space: 45px;
  --btn-size: 50px;
  overflow: hidden;
}

.gallery-box.box-rounded {
  border-radius: 50%;
}

.gallery-box img {
  border-radius: inherit;
  transition: all ease 0.4s;
}

.gallery-box .gal-btn {
  background-color: transparent;
  display: inline-block;
  text-align: center;
  width: var(--btn-size);
  height: var(--btn-size);
  line-height: var(--btn-size);
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 26px;
  z-index: 3;
  color: var(--white-color);
  transform: translate(-50%, -50%);
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}

.gallery-box .gal-btn:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.gallery-box:before {
  content: "";
  position: absolute;
  top: var(--shape-space);
  right: var(--shape-space);
  bottom: var(--shape-space);
  left: var(--shape-space);
  z-index: 2;
  opacity: 0;
  background-color: var(--theme-color);
  border-radius: inherit;
  transition: all ease 0.4s;
  transform: scale(0);
}

.gallery-box:hover .gal-btn {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.gallery-box:hover:before {
  opacity: 0.86;
  transform: scale(1);
}

.gallery-box:hover img {
  transform: scale(1.2);
}

/* Large devices */
@media (max-width: 1199px) {
  .gallery-box {
    --shape-space: 20px;
    --btn-size: 30px;
  }

  .vs-gallery-layout1 .instagram-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
  }

  .vs-gallery-layout1 .instagram-btn i {
    line-height: inherit;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .vs-gallery-layout1 .vs-gallery-title {
    font-size: 18px;
  }

  .vs-gallery-layout1 .vs-gallery-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}

@media (min-width: 1199px) {

  .instagram-align-style1>[class*=col-]:nth-child(even),
  .instagram-align-style1 .slick-slide:nth-child(even) {
    margin-top: 30px;
  }
}

.instagram-box {
  position: relative;
  overflow: hidden;
}

.instagram-box .insta-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--theme-color);
  display: inline-block;
  width: 182px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}

.instagram-box .insta-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.instagram-box .insta-btn i {
  margin-right: 10px;
}

.instagram-box:hover .insta-btn {
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .instagram-box .insta-btn {
    width: 130px;
  }
}


/*------------------- 06.6. Counter -------------------*/
.counter-inner1 {
  padding: 40px 0;
}

.counter-media {
  padding: 13px 40px;
}

.counter-media .sec-title {
  margin-bottom: 10px;
}

.counter-media .counter-text {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 300;
}

/* Large devices */
@media (max-width: 1199px) {
  .counter-media {
    padding: 13px 10px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .counter-media {
    padding: 10px 20px;
  }
}



/* Global Next.js Image aspect ratio fixes */
.sec-shape img,
.shape-mockup img,
[class*="shape-"] img,
[class*="icon-"] img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */
/* GPU Acceleration for Performance */
.hero-layout1 [class*=hero-shape],
.jump-reverse,
.rotate-img,
.movebounce-03,
[class*="animate-"],
[class*="move-"],
[class*="rotate-"],
[class*="jump-"] {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize box-shadows for performance */
[class*="shadow-"],
.vs-btn,
.btn,
.card,
.service-style1 {
  will-change: box-shadow;
}



/* CSS Containment for Performance */
.hero-layout1,
.service-style1,
.vs-features-layout1,
.about-layout1 {
  contain: layout style paint;
}

/* Optimize reflow-heavy elements */
.container,
.row,
.col-lg-6,
.col-md-6 {
  contain: layout;
}

