
@charset "UTF-8";

/*=================================
    CSS Index Start

01. Theme Base
    1.1. Variable
    1.2. Mixin
    1.3. Function
    1.4. Typography
    1.5. Extend
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slick Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.8. Hero Area
    4.9. Banner Style
    4.10. About
    4.11. Price Plan
    4.12. Subscribe
    4.13. Team
    4.14. Testimonial
    4.23. Gallery
    4.26. Service Area
    4.27. Form Styles
    4.28. Feature
05. Spacing
==================================*/
:root {
  --theme-color: #AF9b81;
  --title-color: #222222;
  --body-color: #000000;
  --smoke-color: #f3f6f7;
  --light-color: #afafaf;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(0, 0, 0, 0.10);
  --title-font: "Playfair Display", serif;
  --body-font: "Inter", sans-serif;
  --subtitle-font: "Handlee", cursive;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1170px;
  --container-gutters: 1.5rem;
  --section-space: 80px;
  --section-space-mobile: 60px;
  --section-title-space: 50px;
  --ripple-ani-duration: 5s;
  --moving-ani-duration: 5s;
}

img,
.vs-service,
.vs-team-layout2 .vs-team-content {
  border-radius: .25rem;
}

html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 30px;
  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;
}

th {
  font-weight: 500;
}

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

a {
  color: var(--black-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%;
}

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

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

.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.2;
  margin: 0 0 15px 0;
}

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

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

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

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

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

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

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

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

/* Mobile full-screen menu overrides to match the ElevateSites style */
@media (max-width: 991px) {
  /* Ensure full-screen overlay behavior */
  .vs-menu-wrapper {
    background-color: rgba(255, 255, 255, 0.98) !important;
  }

  .vs-menu-wrapper .vs-menu-Section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-start;
    padding: 0;
  }

  .vs-menu-wrapper .mobile-top {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(175, 155, 129, 0.15);
  }

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

  .vs-menu-wrapper .vs-mobile-menu {
    padding: 40px 20px 60px 20px;
  }

  .vs-menu-wrapper .vs-mobile-menu>ul {
    gap: 24px;
  }

  .vs-menu-wrapper .vs-mobile-menu ul li a {
    font-size: 22px;
  }
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .vs-menu-wrapper .vs-mobile-menu ul li a {
    font-size: 20px;
  }
}

/* Small mobile adjustments */
@media (max-width: 400px) {
  .vs-menu-wrapper .mobile-logo img {
    width: 120px;
  }

  .vs-menu-wrapper .vs-mobile-menu ul li a {
    font-size: 18px;
  }
}


/* Medium devices */
@media (max-width: 991px) {

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

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

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

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

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

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

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

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

  body {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {

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

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

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

@media (min-width: 1700px) {
  .vs-container {
    --main-container: 1663px;
  }
}

@media (min-width: 1200px) {
  .vs-container {
    --main-container: 1400px;
  }
}

@media (min-width: 1300px) {
  .vs-container-style2 {
    --main-container: 1850px;
    margin-right: 0;
    padding-right: 0;
  }
}

@media (min-width: 1500px) {
  .vs-container-style3 {
    --main-container: 1440px;
  }
}

@media (min-width: 1501px) {
  .vs-container-style2 {
    --main-container: 1523px;
    margin-right: 0;
    padding-right: 0;
  }
}

@media (min-width: 2000px) {
  .vs-container-style2 {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .vs-container-style2 {
    margin-right: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

/*------------------- 2.2. Grid -------------------*/
.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);
}

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

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

.gy-gx>.form-group {
  margin-bottom: 0;
}

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

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

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

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

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

/*------------------- 2.3. Input -------------------*/
/* Position wrapper */
.form-style1 .form-group {
  position: relative;
}

/* Center Iconify Icons vertically inside input */
.form-style1 .form-group .iconify {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  /* CENTER */
  font-size: 20px !important;
  color: #7c766f;
  pointer-events: none;
}

/* Add left padding so text doesn't overlap the icon */
.form-style1 .form-group input,
.form-style1 .form-group select {
  padding-left: 45px !important;
}

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-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select,
.form-select,
.form-control {
  height: 60px;
  padding: 0 30px;
  padding-right: 60px;
  border: 1px solid #e3e3e3;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: .25rem;
  font-weight: 400;
  font-size: 16px;
}

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

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

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

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

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

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

select.style2,
.form-select.style2,
.form-control.style2 {
  border-radius: .25rem;
  border: none;
}

select.style4,
select.style3,
.form-select.style4,
.form-select.style3,
.form-control.style4,
.form-control.style3 {
  background-color: var(--input-bg, #f6f6f6);
  border: none;
  height: 70px;
  border-radius: .25rem;
  font-weight: 500;
}

select.style4~i,
select.style3~i,
.form-select.style4~i,
.form-select.style3~i,
.form-control.style4~i,
.form-control.style3~i {
  top: 26px;
  right: 41px;
}

select.style4,
.form-select.style4,
.form-control.style4 {
  border-radius: .25rem;
  padding-left: 35px;
}

select.form-control-lg,
.form-select.form-control-lg,
.form-control.form-control-lg {
  height: 60px;
}

select.form-control-sm,
.form-select.form-control-sm,
.form-control.form-control-sm {
  height: 40px;
  font-size: 12px;
}

select[readonly],
.form-select[readonly],
.form-control[readonly] {
  color: var(--title-color);
}

.form-select {
  cursor: pointer;
  background-position: right 1.3rem center;
}

.form-select.style3,
.form-select.style2 {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAICAYAAADN5B7xAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDozOEExRjM2MzI2QUZFQjExODdDREM4MEY0OUQ5REI0OSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4OEQ5MTg5MkVGNTExMUVCQjM2Q0Y1N0Q5NjkzMjMxQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4OEQ5MTg5MUVGNTExMUVCQjM2Q0Y1N0Q5NjkzMjMxQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MzI4ZWU4My1lMDk0LTBiNDUtYmI4Yy1kZDg4MWE0YTFkNTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzhBMUYzNjMyNkFGRUIxMTg3Q0RDODBGNDlEOURCNDkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4ys3fcAAAAeklEQVR42mLctGnTNAYGhggG4sB6FiBRDsTOQKxGQPE9IC5iAhKfgTgciL/jUfwDiEOB+CMTVOACEOfj0VAAxOdADCYkwdlAvASL4mVAPBPGYUKTzADi60h8EDsNWQG6hq9AHALE36A4BCoGByxYnHANiNOR2CgAIMAAXZcYfp8VVuoAAAAASUVORK5CYII=");
  background-size: 12px 8px;
  background-position: right 30px center;
}

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

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

textarea.form-control {
  min-height: 150px;
  padding-top: 17px;
  padding-bottom: 17px;
}

textarea.form-control.style4 {
  padding-top: 25px;
}

textarea.form-control.style3 {
  padding-top: 25px;
  min-height: 83px;
}

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(--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: 0;
  top: 6px;
  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: 28px;
  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: 1px;
  width: 15px;
  height: 15px;
  padding-left: 0.5px;
  font-size: 0.29rem;
  line-height: 14.9px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  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.6em;
  margin-top: -0.3em;
  display: block;
}

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

.form-group>i {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 18px;
  color: var(--theme-color);
}

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

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

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.form-control.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;
}

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

/* Extra small devices */
@media (max-width: 575px) {

  .form-select,
  .form-control {
    padding-right: 30px;
    padding-left: 15px;
  }
}

/*------------------- 2.4. Slick Slider -------------------*/
.slick-track {
  min-width: 100%;
}

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

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

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

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

.slick-dots button {
  font-size: 0;
  padding: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  line-height: 0;
  border-radius: 9999px;
  border: 3px solid #7a7a7a;
  transition: all ease 0.4s;
}

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

.slick-dots .slick-active button {
  transform: scale(1.5);
  border-color: var(--theme-color);
}

.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  margin-right: 50px;
  margin-top: calc(var(--icon-size, 60px) / -2);
  border: 2px solid var(--title-color);
  left: var(--pos-x, -170px);
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  border-radius: 50%;
  z-index: 2;
}

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

.slick-arrow .long-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -3px;
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: var(--title-color);
  transition: all ease 0.4s;
}

.slick-arrow .long-arrow:before {
  content: "";
  position: absolute;
  left: -1px;
  top: -6px;
  display: inline-block;
  border-right: 7px solid var(--title-color);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transition: all ease 0.4s;
}

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

.slick-arrow:hover .long-arrow {
  background-color: var(--theme-color);
  animation: arrow-left ease 1s alternate;
}

.slick-arrow:hover .long-arrow:before {
  border-right-color: var(--theme-color);
}

.slick-arrow.slick-next {
  margin-right: 0;
  margin-left: 50px;
  right: var(--pos-x, -170px);
  left: auto;
}

.slick-arrow.slick-next .long-arrow {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -3px;
}

.slick-arrow.slick-next .long-arrow:before {
  left: auto;
  right: -1px;
  border-right: none;
  border-left: 7px solid var(--title-color);
}

.slick-arrow.slick-next:hover .long-arrow {
  animation: arrow-right ease 1s alternate;
}

.slick-arrow.slick-next:hover .long-arrow:before {
  border-right-color: transparent;
  border-left-color: var(--theme-color);
}

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

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

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

  .slick-arrow .long-arrow {
    width: 62px;
    height: 2px;
  }

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

/*------------------- 2.5. Mobile Menu -------------------*/
/* ============================================
   ELEVATESITES-STYLE MOBILE MENU OVERLAY
   Full-screen fixed overlay with centered content
   ============================================ */

.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

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

/* Fade in animation for menu items */
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(1) { animation-delay: 0.05s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(2) { animation-delay: 0.1s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(3) { animation-delay: 0.15s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(4) { animation-delay: 0.2s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(5) { animation-delay: 0.25s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(6) { animation-delay: 0.3s; }
.vs-menu-wrapper.vs-body-visible .vs-mobile-menu ul li:nth-child(7) { animation-delay: 0.35s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vs-menu-wrapper .vs-menu-Section {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}

/* Fixed header inside overlay - stays at top */
.vs-menu-wrapper .mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  border-bottom: 1px solid rgba(175, 155, 129, 0.15);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.vs-menu-wrapper .mobile-logo {
  padding: 0;
  background: transparent;
}

.vs-menu-wrapper .mobile-logo img {
  width: 140px;
  max-width: 140px;
  height: auto;
}

.vs-menu-wrapper .mobile-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Close button (X) - appears where hamburger was */
.vs-menu-wrapper .vs-menu-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: rgba(175, 155, 129, 0.1);
  color: #2d3748;
  border: 1px solid rgba(175, 155, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

.vs-menu-wrapper .vs-menu-toggle:hover {
  background: #AF9B81;
  color: #fff;
  border-color: #AF9B81;
}

.vs-menu-wrapper .vs-menu-area {
  /* No longer used as side drawer - menu content is in vs-mobile-menu */
  display: none;
}

/* Centered navigation menu - vertically and horizontally */
.vs-mobile-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
}

.vs-mobile-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.vs-mobile-menu ul li {
  border: none;
  list-style-type: none;
}

.vs-mobile-menu ul li li:first-child {
  border-top: none;
}

.vs-mobile-menu ul li a {
  display: inline-block;
  position: relative;
  padding: 8px 0;
  font-size: 22px;
  font-weight: 600;
  color: #2d3748;
  text-transform: none;
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  font-family: 'Syne', sans-serif;
  line-height: 1.4;
}

.vs-mobile-menu ul li a:hover {
  color: #AF9B81;
  transform: translateX(5px);
}

/* Active link underline effect like ElevateSites */
.vs-mobile-menu ul li a.active::after,
.vs-mobile-menu ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #AF9B81;
}

/* Remove default submenu indicators */
.vs-mobile-menu ul li a:before {
  content: none !important;
}

.vs-mobile-menu ul li.vs-active>a {
  color: #AF9B81;
}

.vs-mobile-menu ul li.vs-active>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #AF9B81;
}

.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:after {
  content: "\f067";
  font-family: var(--icon-font);
  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.3);
  border-radius: 50%;
}

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

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

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

.mobile-menu-form {
  width: 100%;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.mobile-menu-form input {
  height: 35px;
  border: none;
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
  padding-left: 20px;
  padding-right: 40px;
}

.mobile-menu-form input:focus {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
}

.mobile-menu-form input::-moz-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input:-ms-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input::placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form button {
  border: none;
  background-color: transparent;
  color: var(--theme-color);
  position: absolute;
  right: 13px;
  top: 3px;
}

.vs-menu-toggle:not(.hamburger-btn) {
  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: 50%;
}

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

  .vs-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(--white-color);
}

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

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

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

.loader {
  --loader-size: 90px;
  width: var(--loader-size);
  height: var(--loader-size);
  display: inline-block;
  position: relative;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: var(--loader-size);
  height: var(--loader-size);
  border-radius: 50%;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: animloader 2s linear infinite;
}

.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  border: none;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 52px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: .25rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  vertical-align: middle;
  /* Extra small devices */
}

.vs-btn>i {
  margin-left: 10px;
}

.vs-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--title-color);
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: all ease 0.4s;
}

.vs-btn:hover {
  color: var(--white-color);
}

.vs-btn:hover:after {
  width: 101%;
  right: auto;
  left: 0;
}

@media (max-width: 575px) {
  .vs-btn {
    font-size: 14px;
    padding: 17px 26px;
  }
}

.vs-btn.outline-white {
  border: 2px solid var(--white-color);
  background-color: transparent;
}

.vs-btn.outline-white:after {
  display: none;
}

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

.vs-btn.style-white {
  background-color: var(--white-color);
  color: var(--title-color);
}

.vs-btn.style-white:after {
  display: none;
}

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

.vs-btn.style-black {
  background-color: var(--black-color);
  color: var(--white-color);
}

.vs-btn.style-black:hover {
  color: var(--white-color);
}

.vs-btn.style-black:after {
  background-color: var(--theme-color);
}

.vs-btn.style-white-hover:after {
  display: none;
}

.vs-btn.style-white-hover:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}

.vs-btn.style2 {
  color: var(--theme-color);
  background-color: transparent;
  outline: 2px solid var(--theme-color);
  outline-offset: -2px;
}

.vs-btn.style2:before {
  border: 2px solid var(--theme-color);
}

.vs-btn.style2:after {
  background-color: var(--theme-color);
}

.vs-btn.style2:hover {
  color: var(--white-color);
}

button.nav-link {
  border: none;
}

.icon-btn {
  display: inline-flex; /* ensure inner icon is perfectly centered */
  align-items: center;
  justify-content: center;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: 1; /* avoid baseline shifts */
  background-color: var(--icon-bg, #f3f3f3);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  border: none;
}

/* Make iconify/svg icons align crisply within circular buttons */
.icon-btn .iconify,
.icon-btn i,
.icon-btn svg {
  line-height: 1;
  display: block;
}

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

.icon-btn.style-outline {
  background-color: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.icon-btn.style-outline:hover {
  background-color: var(--title-color);
  color: var(--white-color);
  border-color: transparent;
  transition-delay: 0s;
}

.icon-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
}

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

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  --icon-size: 124px;
  border: none;
  background-color: transparent;
  padding: 0;
}

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

.play-btn:after {
  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: 700;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
  color: var(--title-color);
}

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

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

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

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

.scroll-btn {
  --btn-size: 50px;
  --extra-shape: -6px;
  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);
  height: var(--btn-size);
  line-height: var(--btn-size);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
}

.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape);
  top: var(--extra-shape);
  right: var(--extra-shape);
  bottom: var(--extra-shape);
  background-color: rgb(255, 255, 255);
  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;
  transition: all ease 0.4s;
  z-index: 96;
}

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

.cart-icon {
  color: var(--title-color);
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

.cart-icon .badge {
  right: -13px;
  background-color: var(--black-color);
  top: -7px;
  padding: 0.3em 0.45em 0.2em 0.4em;
}

.simple-link {
  font-weight: 600;
}

.simple-link i {
  position: relative;
  top: 1px;
  margin-right: 8px;
}

.simple-link:hover {
  color: var(--theme-color) !important;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn>i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.2em;
  }

  .scrollToTop {
    display: none;
  }

  .scrollToTop.show {
    display: none;
  }
}

.hamburger-btn {
  padding: 7px;
  display: inline-block;
  overflow: hidden;
  background-color: transparent;
  border: none;
  z-index: 5;
  transition: all ease 0.4s;
  line-height: 1;
}

.hamburger-btn .bar {
  width: 22px;
  display: inline-block;
  height: 18px;
  position: relative;
}

.hamburger-btn .inner,
.hamburger-btn .hidden {
  display: inline-block;
  opacity: 0;
  width: 100%;
  height: 3px;
  background-color: var(--white-color);
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.4s;
}

.hamburger-btn .inner:after,
.hamburger-btn .inner:before,
.hamburger-btn .hidden:after,
.hamburger-btn .hidden:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 4px;
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.4s;
}

.hamburger-btn .inner:before,
.hamburger-btn .hidden:before {
  top: -10px;
}

.hamburger-btn .inner:after,
.hamburger-btn .hidden:after {
  top: 10px;
}

.hamburger-btn .inner {
  top: 50%;
  opacity: 1;
  transform: translate(-25px, -50%);
}

.hamburger-btn .inner:after,
.hamburger-btn .inner:before {
  opacity: 1;
  transform: translate(-5px, 0);
}

.hamburger-btn .hidden {
  top: 50%;
  background-color: var(--theme-color);
  transform: translate(51px, -50%);
}

.hamburger-btn .hidden:after,
.hamburger-btn .hidden:before {
  background-color: var(--theme-color);
  transform: translate(102px, 0);
}

.hamburger-btn:hover .inner {
  transform: translate(-51px, 50%);
  opacity: 0;
}

.hamburger-btn:hover .inner:after,
.hamburger-btn:hover .inner:before {
  transform: translate(102px, 0);
  opacity: 0;
}

.hamburger-btn:hover .hidden {
  opacity: 1;
  transform: translate(-14px, -50%);
}

.hamburger-btn:hover .hidden:after,
.hamburger-btn:hover .hidden:before {
  opacity: 1;
  transform: translate(-11px, 0);
}

/* Medium devices */
@media (max-width: 991px) {
  .play-btn {
    --icon-size: 100px;
  }
}

/*------------------- 3.3. Titles -------------------*/
.sub-title {
  font-size: 26px;
  line-height: 1;
  display: block;
  color: var(--theme-color);
  font-family: var(--subtitle-font);
  font-weight: 300;
  margin-bottom: 18px;
}

.sec-title {
  font-size: 50px;
  font-weight: 600;
  margin: -0.25em 0 13px 0;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 15px);
}

.sec-icon {
  margin-bottom: 36px;
  line-height: 1;
}

.sec-icon img {
  margin-top: -0.2em;
}

.inner-title {
  font-size: 40px;
  margin-top: -0.25em;
}

.inner-title-style2 {
  font-size: 30px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  border-bottom: 1px solid #999999;
  margin-top: -0.2em;
  margin-bottom: 30px;
  padding-bottom: 7px;
}

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

  .sub-title {
    font-size: 24px;
  }

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

  .inner-title-style2 {
    font-size: 26px;
  }
}

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

  .sub-title {
    font-size: 20px;
  }

  .inner-title-style2 {
    font-size: 22px;
  }
}

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

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

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

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

.new-label {
  font-size: 12px;
  background-color: var(--error-color);
  color: var(--white-color);
  line-height: 1;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: capitalize;
  position: relative;
  top: -1px;
}

.alert-dismissible .btn-close {
  font-size: 18px;
  line-height: 1;
}

.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 {
  flex: 1;
}

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

.vs-surface {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.outline-social {
  --icon-size: 50px;
  --border-size: 2px;
}

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

.outline-social li {
  display: inline-block;
  margin-right: 5px;
}

.outline-social li:last-child {
  margin-right: 0;
}

.outline-social a {
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: calc(var(--icon-size) - var(--border-size));
  border: var(--border-size) solid var(--white-color);
  color: var(--white-color);
  font-size: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

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

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

.checked-list li {
  padding-left: 25px;
  font-size: 16px;
  margin-bottom: 3px;
}

.checked-list li:last-child {
  margin-bottom: 0;
}

.checked-list li:before {
  content: "\f00c";
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
}

.vs-pricepill {
  background-color: var(--theme-color);
  width: 105px;
  height: 105px;
  text-align: center;
  padding: 13px 10px 10px 10px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vs-pricepill:before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -5px;
  right: -5px;
  top: -5px;
  border: 2px dashed var(--white-color);
  border-radius: 50%;
}

.vs-pricepill .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.vs-pricepill .price {
  display: block;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0;
}

.vs-pricepill .price sup {
  font-weight: 500;
  font-size: 16px;
}

.vs-pricepill .price sub {
  font-size: 16px;
  position: relative;
  margin-left: 5px;
  top: -1px;
}

.border-left-img {
  border-left: 3px dashed var(--theme-color);
  padding: 0 0 0 20px;
}

@media (min-width: 1800px) {
  .d-xxxl-block {
    display: block !important;
  }
}

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

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

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

.font-subtitle {
  font-family: var(--subtitle-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;
}

.fs-22 {
  font-size: 22px;
}

.fs-16 {
  font-size: 16px;
}

.fs-26 {
  font-size: 26px;
}

/*------------------- 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;
}

.mask-cover {
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

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

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

.bg-top-right {
  background-position: top right;
  background-size: auto;
}

.bg-top-left {
  background-position: left top;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-gray {
  background-color: #e5e5e5;
}

/*------------------- 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-light {
  color: var(--light-color) !important;
}

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

.text-testimonial {
  color: var(--white-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;
}

.text-white-light {
  color: #dadada;
}

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

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

[data-overlay] {
  position: relative;
}

[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 -------------------*/
.ani-moving-x,
.ani-moving-y,
.about-shape1,
.ani-moving,
.testimonial-avater-style2 .slick-slide {
  animation-duration: var(--moving-ani-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ani-moving,
.testimonial-avater-style2 .slick-slide {
  animation-name: moving;
}

.ani-moving-x {
  animation-name: moving-x;
}

.ani-moving-y,
.about-shape1 {
  animation-name: moving-y;
}

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

.morp-ani {
  --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
  --morp-md-value: 43% 38% 39% 35% / 44% 39% 43% 56%;
  --morp-time: 8s;
  --morp-spin-time: 20s;
  animation: morpspin var(--morp-spin-time) linear infinite reverse;
}

.morp-ani:before {
  animation: vsmorph var(--morp-time) ease-in-out infinite both alternate;
}

.transform-banner img {
  animation: border-transform 10s linear infinite alternate forwards;
  border-radius: 100%;
}

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

  30% {
    opacity: 0.4;
  }

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

@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}

@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }

  50% {
    border-radius: var(--morp-md-value);
  }

  100% {
    border-radius: 40% 60%;
  }
}

@keyframes vsheromorph {
  0% {
    border-radius: 25% 80% 57% 47%/53% 60% 43% 52%;
  }

  50% {
    border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}

@keyframes morpspin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes moving {
  0% {
    transform: translate(0px, 0px);
  }

  20% {
    transform: translate(0px, -60px);
  }

  50% {
    transform: translate(-60px, -60px);
  }

  70% {
    transform: translate(-60px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes moving-y {
  0% {
    transform: translate(0px, 0px);
  }

  50% {
    transform: translate(0, -60px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes moving-x {
  0% {
    transform: translate(0px, 0px);
  }

  50% {
    transform: translate(-60px, 0);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes arrow-left {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-20px);
  }

  40% {
    transform: translateX(0);
  }

  60% {
    transform: translateX(-20px);
  }

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

@keyframes arrow-right {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(20px);
  }

  40% {
    transform: translateX(0);
  }

  60% {
    transform: translateX(20px);
  }

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

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

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

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: var(--theme-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>span,
.widget_meta li>span,
.widget_pages li>span,
.widget_archive li>span,
.widget_categories li>span {
  text-align: center;
  position: absolute;
  right: 22px;
  top: 6px;
  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(--theme-color);
}

.widget_nav_menu li:nth-child(odd) a,
.widget_meta li:nth-child(odd) a,
.widget_pages li:nth-child(odd) a,
.widget_archive li:nth-child(odd) a,
.widget_categories li:nth-child(odd) a {
  background-color: transparent;
}

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

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

.widget {
  --widget-border-color: #e4e4e4;
  --border-space: 5px;
  padding: var(--widget-padding-x, 30px) var(--widget-padding-y, 30px);
  margin: 0 var(--border-space) calc(var(--bs-gutter-x) + var(--border-space)) var(--border-space);
  border: 1px solid var(--widget-border-color);
  position: relative;
  background-color: var(--white-color);
}

.widget:before {
  content: "";
  position: absolute;
  left: calc(var(--border-space) * -1);
  right: calc(var(--border-space) * -1);
  top: var(--border-space-top, 20px);
  bottom: calc(var(--border-space) * -1);
  border: inherit;
  z-index: -1;
}

.widget select,
.widget input {
  color: var(--body-color);
  padding-left: 30px;
  font-size: 16px;
  background-color: var(--input-bg, #f6f6f6);
  border: none;
  height: 60px;
  border-radius: 0;
  font-weight: 500;
  width: 100%;
}

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

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

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

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

.widget select::placeholder,
.widget input::placeholder {
  color: var(--body-color);
}

.widget_title {
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 30px;
  margin-top: -0.07em;
  padding-bottom: 10px;
  font-weight: 600;
  border-bottom: 1px solid var(--title-border-color, #999999);
}

.widget .search-form {
  position: relative;
}

.widget .search-form input {
  padding-right: 50px;
}

.widget .search-form button {
  text-align: center;
  padding: 0;
  color: var(--theme-color);
  background-color: transparent;
  border: none;
  position: absolute;
  right: 30px;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

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

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 10.5px 23px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--tag-bg, #f6f6f6);
  border-radius: 9999px;
}

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

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

.widget .tagcloud a:not(:hover) {
  background-color: #fff;
}

.recent-post {
 
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

.recent-post .post-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 24px;
}

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

.recent-post .recent-post-meta {
  line-height: 1.2;
}

.recent-post .recent-post-meta a {
  margin-right: 15px;
  font-size: 14px;
  font-weight: 500;
}

.recent-post .recent-post-meta a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.recent-post .recent-post-meta a:last-child {
  margin-right: 0;
}

.vs-video-widget .video-thumb {
  position: relative;
}

.vs-video-widget .play-btn {
  --icon-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.vs-video-widget .play-btn i {
  font-size: 16px;
}

.vs-video-widget .video-thumb-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: -0.3em;
}

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

.sidebar-gallery .gallery-thumb .icon-thumb {
  font-size: 30px;
}

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

.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: 18px;
  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%;
  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(--smoke-color);
}

.widget_shopping_cart .quantity {
  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: 30px;
  font-size: 18px;
  color: var(--title-color);
}

.widget_shopping_cart .amount {
  padding-left: 5px;
  font-weight: 600;
  font-family: var(--body-font);
}

.widget_shopping_cart .vs-btn {
  margin-right: 15px;
  padding: 22px 40px;
}

.widget_shopping_cart .vs-btn:last-child {
  margin-right: 0;
}

.sidebar-area .widget_shopping_cart .vs-btn {
  margin-right: 10px;
  padding: 8px 22px;
  font-size: 14px;
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .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-left: none;
  font-family: var(--title-font);
  padding: 0;
  font-size: 32px;
  margin-top: -0.15em;
  margin-bottom: 18px;
  border-bottom: none;
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-widget .widget_title {
    margin-bottom: 18px;
  }
}

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

.mega-menu .new-label,
.sub-menu .new-label {
  margin-left: 5px;
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateY(-100%);
}

.will-sticky .sticky-active.active {
  top: 0;
  opacity: 1;
  transform: translateY(0);
}

.will-sticky .menu-style1>ul>li>a {
  padding: 41px 0;
}

.will-sticky .header-inner {
  background-color: var(--white-color);
}

.will-sticky .header-inner:after,
.will-sticky .header-inner:before {
  opacity: 0;
  visibility: hidden;
}

.header-layout3 .will-sticky .header-inner-style2,
.header-layout3 .will-sticky .sticky-active {
  background-color: var(--black-color);
  opacity: 1;
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--title-color);
}

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

/* Active state for header navigation */
.main-menu a.active {
  color: var(--theme-color);
}

.main-menu a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 26px;
  height: 2px;
  background-color: var(--theme-color);
  border-radius: 2px;
}

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

.main-menu>ul>li>a .new-label {
  position: absolute;
  top: -10px;
  right: -24px;
  font-size: 11px;
  border-radius: 3px;
  padding: 2px 4px 3px 4px;
}

.main-menu>ul>li>a .has-new-lable {
  position: relative;
}

.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: 3px;
  top: 0.8px;
  font-size: 0.8rem;
}

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

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

.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: -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);
  transform-origin: top center;
  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 {
  padding: 18px 20px;
  left: -27px;
}

.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}

.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: 21px;
}

.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 2.5em;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  font-weight: 700;
  background-color: var(--white-color);
  box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}

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

.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: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 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 {
  color: #141414;
  padding: 41px 0;
}

.header-layout3,
.header-layout1 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 41;
}

.header-layout3 .header-btn .vs-btn,
.header-layout1 .header-btn .vs-btn {
  margin-left: 26px;
}

.header-layout4 {
  padding: 0 85px;
}

.header-layout4 .container-fluid {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.header-btn a,
.header-btn button {
  margin-right: 7px;
}

.header-btn a:last-child,
.header-btn a:last-child,
.header-btn button:last-child,
.header-btn button:last-child {
  margin-right: 0;
}

.header-info-list {
  --icon-size: 40px;
}

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

.header-info-list li {
  display: inline-block;
  margin-right: 32px;
}

.header-info-list li:last-child {
  margin-right: 0;
}

.header-info-list li>i {
  display: inline-block;
  background-color: var(--white-color);
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  text-align: center;
  border-radius: 50%;
  color: var(--theme-color);
  margin-right: 13px;
  font-size: 1.1rem;
}

.header-inner {
  position: relative;
  --layer-gap: 10px;
  --shape-width: 1596px;
  transition: all ease 0.4s;
}

@media (min-width: 1921px) {
  .header-inner {
    --shape-width: 80vw;
  }
}

.header-inner:after,
.header-inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--white-color);
  height: 100%;
  width: 100%;
  max-width: var(--shape-width);
  z-index: -1;
  transition: all ease 0.4s;
}

.header-inner:after {
  top: var(--layer-gap);
  max-width: calc(var(--shape-width) + var(--layer-gap));
  background-color: var(--theme-color);
  z-index: -2;
}

.header-inner-style2 {
  position: relative;
  max-width: 1242px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--black-color);
}

.header-inner-style2 .cart-icon,
.header-inner-style2 .menu-style1>ul>li>a {
  color: var(--white-color);
}

.header-inner-style2 .cart-icon .badge {
  background-color: var(--theme-color);
}

.header-btn .vs-btn {
  margin-left: 18px;
  padding: 23px 54px;
}

.header-top-style2 {
  padding: 14px 0;
}

.header-layout2 {
  position: relative;
  z-index: 41;
}

.header-transparent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 30px 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .header-inner {
    --shape-width: 1400px;
  }

  .header-layout3 {
    position: relative;
  }

  .header-layout3 .header-top {
    background-color: var(--black-color);
  }

  .header-layout3 .header-inner-style2 {
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 100%;
  }

  .header-layout4 {
    padding: 0 60px;
  }
  
  .header-layout4 .main-menu>ul>li {
    margin: 0 12px;
  }
  
  .header-layout4 .main-menu>ul>li>a {
    font-size: 17px;
  }
  
  .header-layout4 .header-logo img {
    width: 220px !important;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-inner {
    --shape-width: 100%;
    --layer-gap: 0;
  }

  .header-transparent {
    position: relative;
    background-color: var(--black-color);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .main-menu>ul>li {
    margin: 0 13px;
  }
  
  .header-layout4 {
    padding: 0 50px;
  }
  
  .header-layout4 .header-logo img {
    width: 200px !important;
    max-width: 200px;
  }
  
  .header-layout4 .main-menu>ul>li {
    margin: 0 10px;
  }
  
  .header-layout4 .main-menu>ul>li>a {
    font-size: 16px;
    padding: 35px 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout1 {
    position: relative;
  }

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

  .header-layout1 .header-inner {
    position: absolute;
    left: 0;
    right: 0;
  }

  .header-layout1 .header-inner:before {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .header-layout1 .header-inner:after {
    display: none;
  }

  .header-layout3 .header-inner-style2 {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    background-color: var(--black-color);
  }

  .menu-style1>ul>li>a {
    padding: 29px 0;
  }

  .header-transparent {
    padding: 19px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-transparent {
    border-top: none;
  }

  .header-logo {
    padding: 10px 0;
  }

  .header-layout4 .header-logo img {
    width: 180px !important;
    max-width: 180px;
  }

  .header-layout4 .sticky-active {
    padding: 10px 0;
  }
}

/* Tablet specific fixes (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .header-layout4 {
    padding: 0 30px;
  }

  .header-layout4 .container-fluid {
    max-width: 100%;
    padding: 0 15px;
  }

  .header-layout4 .header-logo {
    text-align: center;
    padding: 8px 0;
  }

  .header-layout4 .header-logo img {
    width: 160px !important;
    max-width: 160px;
  }

  .header-layout4 .col-auto.text-end {
    flex: 0 0 auto;
  }

  .header-layout4 .header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-layout4 .vs-menu-toggle {
    margin-left: 10px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-layout1 .header-inner {
    position: relative;
  }

  .header-layout2 .header-btn .vs-btn {
    margin-left: 13px;
    padding: 15px 28px;
  }

  .header-info-list {
    --icon-size: 34px;
  }

  .header-info-list li {
    margin-right: 12px;
    font-size: 14px;
  }

  .header-layout4 {
    padding: 0 15px;
  }

  .header-layout4 .header-logo img {
    width: 160px !important;
    max-width: 160px;
  }

  .header-layout4 .sticky-active {
    padding: 10px 0;
  }

  .header-layout4 .header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header-layout4 .vs-menu-toggle {
    width: 40px;
    height: 40px;
    background: #AF9B81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  /* Ensure proper spacing for mobile header */
  .header-layout4 .container-fluid {
    padding: 0 15px;
  }

  .header-layout4 .row {
    margin: 0 -8px;
  }

  .header-layout4 .row > .col-auto,
  .header-layout4 .row > .col {
    padding: 0 8px;
  }
}

/*------------------- 4.3. Footer  -------------------*/
.bg-dark {
  background-color: white;
}

.footer-layout4 .widget_title,
.footer-layout1 .widget_title {
  color: var(--black-color);
}

.footer-layout2 {
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer-layout4 .widget-area {
  padding-bottom: 0px;
}

.footer-info {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}

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

.footer-info i {
  position: absolute;
  left: 0;
  top: 7.5px;
  color: var(--theme-color);
}

.footer-table td {
  padding: 4px 0;
  text-transform: uppercase;
}

.footer-table tr:first-child td {
  padding-top: 0;
}

.footer-table tr:last-child td {
  padding-bottom: 0;
}

.widget-area {
  padding-top: 60px;
}

.footer-subscribe {
  position: relative;
}

.footer-subscribe input {
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--white-color);
  padding-left: 30px;
  padding-right: 50px;
  border-radius: 9999px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
}

.footer-subscribe input::-moz-placeholder {
  color: var(--white-color);
}

.footer-subscribe input:-ms-input-placeholder {
  color: var(--white-color);
}

.footer-subscribe input::placeholder {
  color: var(--white-color);
}

.footer-subscribe input:focus {
  background-color: transparent;
}

.footer-subscribe button {
  border: none;
  background-color: transparent;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  border-left: 1px solid var(--white-color);
  padding: 0 0 0 20px;
  height: 30px;
  overflow: hidden;
}

.footer-subscribe button .hidden {
  position: absolute;
  margin-left: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

.footer-subscribe button .default {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.3s;
}

.footer-subscribe.focus {
  margin-right: 0;
}

.footer-subscribe.focus button .hidden {
  margin-left: 0;
  opacity: 1;
  visibility: visible;
}

.footer-subscribe.focus button .default {
  opacity: 0;
  visibility: hidden;
}

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

.footer-links li {
  position: relative;
  display: inline-block;
  padding-right: 27px;
  margin-right: 20px;
}

.footer-links li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 14px;
  margin-top: -6px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.63);
}

.footer-links li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer-links li:last-child:before {
  display: none;
}

.footer-links a {
  color: var(--white-color);
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-layout3 {
  padding-top: 100px;
  padding-bottom: 75px;
}

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

  .footer-layout4 .widget-area {
    padding-bottom: 20px;
  }

  .widget-area {
    padding-top: 60px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-links li {
    padding-right: 16px;
    margin-right: 10px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .footer-subscribe input {
    padding-left: 25px;
  }

  .footer-subscribe button {
    width: 45px;
    height: 45px;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    padding-left: 0;
    border: none;
    border-radius: 50%;
    right: 8px;
  }

  .footer-subscribe button:hover {
    background-color: var(--white-color);
    color: var(--white-color);
  }

  .footer-links li:before {
    content: "-";
    top: 0;
    height: 14px;
    margin-top: 0;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
    color: #fff;
    vertical-align: top;
  }
}

/*------------------- 4.8. Hero Area  -------------------*/
.ls-v6 .ls-bottom-nav-wrapper {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
}

.ls-gui-element.ls-bottom-nav-wrapper a {
  display: block !important;
  background-color: var(--title-color);
  margin: 18px 0;
  border-color: transparent !important;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}

.ls-gui-element.ls-bottom-nav-wrapper a:first-child {
  margin-top: 0;
}

.ls-gui-element.ls-bottom-nav-wrapper a:last-child {
  margin-bottom: 0;
}

.ls-gui-element.ls-bottom-nav-wrapper a.ls-nav-active:hover,
.ls-gui-element.ls-nav-active {
  background-color: var(--theme-color) !important;
}

a.ls-gui-element.ls-nav-prev,
a.ls-gui-element.ls-nav-next {
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  border: 2px solid var(--title-color) !important;
  border-radius: 50%;
  left: var(--space-x, 130px);
}

a.ls-gui-element.ls-nav-prev:after,
a.ls-gui-element.ls-nav-next:after {
  transform: none;
  width: auto;
  height: auto;
  margin: -7px 0 0 -4.5px;
  left: 50%;
  top: 50%;
  border: none;
  border-right: 7px solid var(--title-color);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

a.ls-gui-element.ls-nav-prev:before,
a.ls-gui-element.ls-nav-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -3px;
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: var(--title-color);
  transition: all ease 0.4s;
}

a.ls-gui-element.ls-nav-prev:hover,
a.ls-gui-element.ls-nav-next:hover {
  transform: none;
}
a.ls-gui-element.ls-nav-prev:after {
  border-right: 7px solid var(--title-color);
}

a.ls-gui-element.ls-nav-next:after {
  border-left: 7px solid var(--title-color);
}
a.ls-gui-element.ls-nav-prev:hover:after,
a.ls-gui-element.ls-nav-next:hover:after {
  border-top-color: transparent !important;
}

a.ls-gui-element.ls-nav-prev:hover:after,
a.ls-gui-element.ls-nav-prev:hover:before,
a.ls-gui-element.ls-nav-next:hover:after,
a.ls-gui-element.ls-nav-next:hover:before {
  animation: arrow-left ease 1s alternate;
}

a.ls-gui-element.ls-nav-next {
  left: auto;
  right: var(--space-x, 130px);
}

a.ls-gui-element.ls-nav-next:after {
  left: auto;
  right: 50%;
  margin: -7px -4.5px 0 0;
  border-right: none;
  border-left: 7px solid var(--title-color);
}

a.ls-gui-element.ls-nav-next:before {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -3px;
}

a.ls-gui-element.ls-nav-next:hover:after,
a.ls-gui-element.ls-nav-next:hover:before {
  animation: arrow-right ease 1s alternate;
}

.hero-morp {
  animation: border-transform 10s linear infinite alternate forwards;
}

/* Large devices */
@media (max-width: 1199px) {
  .ls-v6 .ls-bottom-nav-wrapper {
    display: none;
  }

  a.ls-gui-element.ls-nav-prev,
  a.ls-gui-element.ls-nav-next {
    display: none;
  }
}

/*------------------- 4.9. Banner Style  -------------------*/
.vs-banner-slide {
  --shape-size: 370px;
  --morp-color: #907bf6;
  --morp-delay: 1s;
  padding-top: var(--padding-y, 80px);
  padding-bottom: var(--padding-y, 80px);
  position: relative;
  margin-bottom: 30px;
}

.vs-banner-slide .banner-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--white-color);
}

.vs-banner-slide .media-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 290px;
  width: 100%;
}

.vs-banner-slide .banner-text {
  margin-bottom: 0;
  color: var(--white-color);
}

.vs-banner-slide .banner-morp {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
  --morp-time: 12s;
  --morp-spin-time: 16s;
  width: var(--shape-size);
  height: var(--shape-size);
  margin: calc(var(--shape-size) / -2) 0 0 calc(var(--shape-size) / -2);
  animation-delay: var(--morp-delay);
}

.vs-banner-slide .banner-morp:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--morp-color);
  opacity: 0.9;
  border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
}

.vs-banner-slide:nth-child(3n+3) {
  --morp-color: #e280d2;
}

.vs-banner-slide:nth-child(3n+2) {
  --morp-color: #ff708b;
  --morp-delay: 5s;
}

.vs-banner-slide:nth-child(3n+1) {
  --morp-color: #907bf6;
  --morp-delay: 8s;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .vs-banner-slide {
    --shape-size: 270px;
    --padding-y: 40px;
  }

  .vs-banner-slide .banner-title {
    font-size: 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .vs-banner-slide {
    --padding-y: 0;
  }

  .vs-banner-slide .banner-morp {
    animation: none;
    width: auto;
    height: auto;
    left: calc(var(--bs-gutter-x) / 2);
    right: calc(var(--bs-gutter-x) / 2);
    height: 100%;
    top: auto;
    bottom: 0;
    margin: 0;
  }

  .vs-banner-slide .banner-morp:before {
    background-color: transparent;
    background-image: linear-gradient(95deg, var(--morp-color) 20%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0;
    animation: none;
  }

  .vs-banner-slide .media-content {
    left: calc(var(--bs-gutter-x) / 2);
    top: 50%;
    text-align: left;
    padding-left: 30px;
    transform: translateY(-50%);
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .vs-banner-slide .banner-title {
    font-size: 24px;
  }

  .vs-banner-slide .media-content {
    padding-left: 20px;
  }
}

/*------------------- 4.10. About  -------------------*/
.about-shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.thumb-about {
  text-align: center;
  border-right: 1px solid #e7e7e9;
  border-bottom: 1px solid #e7e7e9;
  padding: 40px 0 30px 0;
}

@media (min-width: 575px) {
  .thumb-about:nth-child(3n+3) {
    border-right: none;
  }

  .thumb-about:nth-child(n+4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .thumb-about:nth-child(-n+3) {
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .thumb-about:nth-child(2n+2) {
    border-right: none;
  }

  .thumb-about:nth-child(n+5) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .thumb-about:nth-child(-n+2) {
    padding-top: 0;
  }
}

.thumb-about img {
  margin-bottom: 10px;
}

.thumb-about .text-title {
  margin-bottom: 0;
}

.thumb-about-style2 {
  border-right: 1px solid #e7e7e9;
}

.thumb-about-style2:last-child {
  border-right: none;
}

.thumb-about-style2 .text-title {
  margin-bottom: -0.4em;
}

.thumb-about-style2 img {
  height: 80px;
  margin-bottom: 15px;
}

.about-morp-shape {
  --shape-size: 550px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--shape-size);
  height: var(--shape-size);
  margin: calc(var(--shape-size) / -2) 0 0 calc(var(--shape-size) / -2);
  z-index: -1;
  animation: border-transform 10s linear infinite alternate forwards;
}

.about-media .media-body>*:last-child {
  margin-bottom: 0;
}

.about-media-wrap {
  gap: 45px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}

.dotted-list {
  --dotted-size: 10px;
  margin-bottom: 40px;
}

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

.dotted-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.dotted-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: var(--dotted-size, 10px);
  height: var(--dotted-size, 10px);
  border-radius: 50%;
  background-color: var(--theme-color);
}

.offer-pill {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 182px;
  height: 182px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  --border-pill: -10px;
}

.offer-pill:before {
  content: "";
  position: absolute;
  left: var(--border-pill);
  right: var(--border-pill);
  top: var(--border-pill);
  bottom: var(--border-pill);
  border: 2px dashed var(--white-color);
  border-radius: inherit;
  animation: morpspin 30s linear infinite;
}

.offer-pill .offer-number {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.offer-pill .offer-text {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
  margin-bottom: 0;
}

.story-media {
  padding-left: var(--p-start, 120px);
  position: relative;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 34px;
  margin-bottom: 33px;
}

.story-media:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  border-bottom: inherit;
}

.story-media .story-year {
  color: var(--theme-color);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 30px;
  font-weight: 600;
}

.story-media .story-text {
  font-size: 16px;
  margin-bottom: 11px;
  margin-top: -0.4em;
}

.story-media .story-author {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--title-color);
}

.story-media .degi {
  color: var(--body-color);
  margin-left: 7px;
  font-size: 14px;
  font-weight: 400;
}

.story-media .degi:before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  top: -1px;
}

.story-media:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 21px;
}

.exp-box {
  padding: 50px;
  border-radius: 10px;
  background-color: var(--white-color);
  z-index: 1;
  position: relative;
}

.exp-box:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background-color: var(--theme-color);
  z-index: -1;
  border-radius: inherit;
}

.exp-box .exp-number {
  font-size: 60px;
  margin-top: -10px;
  margin-bottom: 5px;
  line-height: 1;
  color: var(--white-color);
  font-family: var(--title-font);
  display: block;
}

.exp-box .exp-title {
  font-size: 18px;
  color: var(--white-color);
  margin: 0;
  font-family: var(--title-font);
}

.image-box4 {
  position: relative;
  padding-bottom: 80px;
}

.image-box4 .exp-box {
  position: absolute;
  right: -1px;
  bottom: 0;
  z-index: 1;
}

.image-box4 .img-2 {
  display: inline-block;
  padding: 9px;
  background-color: var(--white-color);
  position: absolute;
  right: -135px;
  bottom: 125px;
  z-index: 2;
  border-radius: 50%;
}

.image-box4 .img-2 img {
  border-radius: inherit;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .about-content.text-center.pl-50.ml-10 {
    padding-left: 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .thumb-about {
    padding: 25px 0 25px 0;
  }

  .thumb-about .text-title {
    font-size: 14px;
  }

  .about-media-wrap {
    padding-top: 0;
  }

  .about-morp-shape {
    --shape-size: 400px;
  }

  .story-media {
    --p-start: 0;
    padding-bottom: 24px;
    margin-bottom: 20px;
  }

  .story-media .story-year {
    position: relative;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .story-media .story-text {
    margin-bottom: 10px;
  }

  .thumb-about-style2 {
    border-right: none;
  }

  .image-box4 .img-2 {
    width: 150px;
    height: 150px;
    right: -1px;
    bottom: auto;
    top: -1px;
    padding: 1px 1px 8px 8px;
    border-radius: 0;
  }

  .image-box4 {
    padding-bottom: 50px;
  }

  .image-box4 .exp-box {
    bottom: -1px;
    padding: 30px 50px;
  }

  .image-box4 .exp-box .exp-number {
    font-size: 42px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .about-media-wrap {
    gap: 30px;
  }

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

/* Small devices */
@media (max-width: 767px) {
  .about-morp-shape {
    --shape-size: 250px;
  }

  .offer-pill {
    right: 50%;
    width: 130px;
    height: 130px;
    --border-pill: -5px;
  }

  .offer-pill .offer-number {
    font-size: 18px;
  }

  .offer-pill .offer-text {
    font-size: 12px;
  }

  .dotted-list li {
    line-height: 1.6;
  }

  .dotted-list li::before {
    top: 10px;
  }

  .image-box4 .img-2 {
    width: 100px;
    height: auto;
    padding: 1px 1px 8px 8px;
  }
}

/*------------------- 4.11. Price Plan  -------------------*/
.price-list {
  width: 390px;
  max-width: 100%;
}

.price-list ul {
  margin: 0 0 40px 0;
  padding: 0;
  list-style-type: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  transition: all ease 0.4s;
}

.price-list .border-middle {
  border: 1px dashed #bcbcbc;
  flex: 1 0 0%;
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
  margin: 3px 20px 0 25px;
  opacity: 0.6;
}

.price-list .price,
.price-list .package {
  margin: 0;
  font-weight: 500;
}

.price-plan-slide .slick-arrow {
  --pos-x: 130px;
  --title-color: #fff;
}

.price-list-box {
  position: relative;
  --space-x: 70px;
  --space-y: 70px;
}

.price-list-box .price-content {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0.9) 100%);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  box-shadow: 0px 0px 76px 0px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all ease 0.6s;
  transform: scaleY(0.5);
  transform-origin: 0 0;
}

.price-list-box .price-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--space-y);
  top: var(--space-y);
  z-index: -1;
}

.price-list-box .price-title {
  margin-top: -0.27em;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

.price-list-box .vs-btn,
.price-list-box .price-list li {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all ease 0.4s;
}

.slick-active .price-list-box .price-content {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition-delay: 0.2s;
}

.slick-active .price-list-box .price-title {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.slick-active .price-list-box .vs-btn {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s;
  transform: translateY(0);
}

.slick-active .price-list-box .price-list li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slick-active .price-list-box .price-list li:nth-of-type(1) {
  transition-delay: 0.2s;
}

.slick-active .price-list-box .price-list li:nth-of-type(2) {
  transition-delay: 0.3s;
}

.slick-active .price-list-box .price-list li:nth-of-type(3) {
  transition-delay: 0.4s;
}

.slick-active .price-list-box .price-list li:nth-of-type(4) {
  transition-delay: 0.5s;
}

.slick-active .price-list-box .price-list li:nth-of-type(5) {
  transition-delay: 0.6s;
}

.slick-active .price-list-box .price-list li:nth-of-type(6) {
  transition-delay: 0.7s;
}

.slick-active .price-list-box .price-list li:nth-of-type(7) {
  transition-delay: 0.8s;
}

.slick-active .price-list-box .price-list li:nth-of-type(8) {
  transition-delay: 0.9s;
}

.slick-active .price-list-box .price-list li:nth-of-type(9) {
  transition-delay: 1s;
}

.slick-active .price-list-box .price-list li:nth-of-type(10) {
  transition-delay: 1.1s;
}

.price-grid {
  position: relative;
  text-align: center;
  padding: 60px 45px 13px 45px;
  margin: 3px;
}

.price-grid:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.price-grid .price-shape:after,
.price-grid .price-shape:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 30px;
  right: 30px;
  height: 12px;
  background-color: var(--theme-color);
  z-index: 3;
}

.price-grid .price-shape:after {
  top: auto;
  bottom: -3px;
}

.price-grid .price-shape3:after,
.price-grid .price-shape3:before,
.price-grid .price-shape2:after,
.price-grid .price-shape2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: var(--white-color);
  transition: width ease 0.4s, border-color ease 0.7s;
  z-index: 1;
  border-width: 1px 0 1px 1px;
  border-color: #e4e4e4;
  border-style: solid;
}

.price-grid .price-shape3:after,
.price-grid .price-shape2:after {
  border-width: 1px 1px 1px 0;
  left: auto;
  right: 0;
}

.price-grid .price-shape3:after,
.price-grid .price-shape3:before {
  z-index: 1;
  background-color: transparent;
  top: 6px;
  height: calc(100% - 12px);
  left: 6px;
}

.price-grid .price-shape3:after {
  right: 6px;
  left: auto;
}

.price-grid .price-list,
.price-grid .package-name,
.price-grid .price-icon {
  position: relative;
  z-index: 4;
}

.price-grid .package-name {
  color: var(--title-color);
  font-size: 22px;
  transition: all ease 0.4s;
}

.price-grid .price-icon {
  margin-bottom: 25px;
}

.price-grid .price-list .border-middle {
  border-color: var(--body-color);
  background-color: transparent;
  transition: all ease 0.4s;
}

.price-grid .price-list .price,
.price-grid .price-list .package {
  font-size: 16px;
  color: var(--body-color);
  transition: all ease 0.4s;
}

.slick-center .price-grid .price-list .border-middle,
.price-grid:hover .price-list .border-middle {
  border-color: #cccccc;
}

.slick-center .price-grid .price-list .price,
.slick-center .price-grid .price-list .package,
.price-grid:hover .price-list .price,
.price-grid:hover .price-list .package {
  color: #cccccc;
}

.slick-center .price-grid .package-name,
.price-grid:hover .package-name {
  color: var(--white-color);
}

.slick-center .price-grid .price-shape3:after,
.slick-center .price-grid .price-shape3:before,
.slick-center .price-grid .price-shape2:after,
.slick-center .price-grid .price-shape2:before,
.price-grid:hover .price-shape3:after,
.price-grid:hover .price-shape3:before,
.price-grid:hover .price-shape2:after,
.price-grid:hover .price-shape2:before {
  width: 0;
  border-color: transparent;
}

/* Extra small devices */
@media (max-width: 575px) {
  .price-grid .price-list .border-middle {
    border-color: #cccccc;
  }

  .price-grid .price-list .price,
  .price-grid .price-list .package {
    color: #cccccc;
  }

  .price-grid .package-name {
    color: var(--white-color);
  }

  .price-grid .price-shape3:after,
  .price-grid .price-shape3:before,
  .price-grid .price-shape2:after,
  .price-grid .price-shape2:before {
    width: 0;
    border-color: transparent;
  }
}

.vs-price-morp {
  position: relative;
  --border-space: 5px;
}

.vs-price-morp.mb-50:last-child {
  margin-bottom: 0;
}

.vs-price-morp:nth-child(even) .price-img img {
  animation-delay: 1s;
}

.vs-price-morp .price-text {
  margin-bottom: 35px;
}

.vs-price-morp .price-pack {
  position: absolute;
  left: 0;
  top: 50%;
  background-color: var(--white-color);
  transform: translate(0%, -50%);
  padding: 40px 24px 28px 24px;
}

.vs-price-morp .price-pack:before {
  content: "";
  position: absolute;
  top: var(--border-space);
  right: var(--border-space);
  bottom: var(--border-space);
  left: var(--border-space);
  border: 1px solid #e4e4e4;
  border-radius: .25rem;
}

.vs-price-morp .pack-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 23px;
}

.vs-price-morp .pack-table {
  width: 320px;
  max-width: 100%;
  font-size: 16px;
  padding: 22px;
  color: var(--body-color);
  margin-bottom: 0;
  text-align: left;
}

.vs-price-morp .pack-table td {
  border: none;
  padding-left: 25px;
  padding-right: 25px;
}

.vs-price-morp .pack-table td:nth-child(even) {
  text-align: right;
}

.vs-price-morp .pack-table>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: #f6f6f6;
  color: var(--body-color);
}

.vs-carousel .vs-price-morp .price-content .vs-btn,
.vs-carousel .vs-price-morp .price-title,
.vs-carousel .vs-price-morp .price-text,
.vs-carousel .vs-price-morp .price-pack {
  transition: transform ease 0.6s, opacity ease 0.3s, visibility ease 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateX(200%);
}

.vs-carousel .vs-price-morp .price-pack {
  transform: translate(-200%, -50%);
}

.vs-carousel .slick-active.vs-price-morp .price-content .vs-btn,
.vs-carousel .slick-active.vs-price-morp .price-title,
.vs-carousel .slick-active.vs-price-morp .price-text,
.vs-carousel .slick-active.vs-price-morp .price-pack {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.vs-carousel .slick-active.vs-price-morp .price-pack {
  transform: translate(0%, -50%);
}

.price-card {
  padding: var(--card-space-y, 70px) var(--card-space-x, 70px);
}

.price-card .price-list {
  width: 100%;
}

.price-card .price-title {
  margin-bottom: 15px;
  margin-top: -0.3em;
}

.tabs-style1 li {
  margin: 0 0;
  background-color: var(--white-color);
}

.tabs-style1 a {
  padding: 17px 33px;
  color: var(--body-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
  background-color: rgba(173, 136, 88, 0.17);
}

.tabs-style1 a:hover,
.tabs-style1 a.active {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.vs-pricing-layout2 .vs-price {
  font-size: 80px;
  line-height: 1;
  position: relative;
}

.vs-pricing-layout2 .vs-price sub {
  font-size: 24px;
  position: relative;
  bottom: 0;
}

.vs-pricing-layout2 .vs-price-head {
  position: relative;
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 30px;
  margin-bottom: 63px;
}

.vs-pricing-layout2 .vs-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-bottom: 43px;
}

.vs-pricing-layout2 .vs-price-list li {
  display: block;
  clear: both;
  margin: 15px 0;
  padding-right: 40px;
  margin-bottom: 20px;
  position: relative;
}

.vs-pricing-layout2 .vs-price-list li:after {
  content: "\f00c";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: -6px;
  background-color: var(--white-color);
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: var(--theme-color);
  z-index: 1;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.vs-pricing-layout2 .vs-price-box {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  padding: 80px;
  padding-top: 74px;
  border-bottom: 10px solid transparent;
  transition: all ease 0.4s;
}

.vs-pricing-layout2 .vs-price-box[data-overlay=theme]:before {
  opacity: 0.17;
  z-index: -1;
  transition: all ease 0.4s;
  bottom: -10px;
}

.vs-pricing-layout2 .vs-price-box:hover {
  border-color: var(--theme-color);
}

.vs-pricing-layout2 .vs-price-box:hover .vs-price-list li:after {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.vs-pricing-layout2 .vs-price-box:hover::before {
  opacity: 0;
  visibility: hidden;
}

.vs-pricing-layout2 .tab-pane .vs-price-box {
  border-color: var(--theme-color);
}

.vs-pricing-layout2 .tab-pane .vs-price-box:hover {
  border-color: var(--theme-color);
}

.vs-pricing-layout2 .tab-pane .vs-price-box:hover .vs-price-list li:after {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.vs-pricing-layout2 .tab-pane .vs-price-box:hover::before {
  opacity: 0.17;
  visibility: visible;
}

.inner-label {
  padding: 0px 5px;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 6px;
  font-weight: 700;
  margin: 0 5px;
}

.price-list-style1 {
  border-radius: 0;
  padding: 66px 60px;
  background-color: var(--white-color);
}

.price-list-style1 a {
  color: inherit;
}

.price-list-style1 .vs-price-list {
  margin-bottom: 20px;
  display: flex;
}

.price-list-style1 .vs-price-list:last-child {
  margin-bottom: 0;
}

.price-list-style1 .vs-price-list:hover .media-img img {
  transform: scale(1.3) rotate(15deg);
}

.price-list-style1 .media-img {
  overflow: hidden;
  border-radius: 7px;
}

.price-list-style1 .media-img img {
  transition: all ease 0.4s;
  transform: scale(1) rotate(0);
}

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

/* Medium Large devices */
@media (max-width: 1399px) {
  .price-grid .price-list .border-middle {
    margin: 3px 10px 0 10px;
  }
  .vs-price-morp .pack-table {
    width: 290px;
  }
  .vs-price-morp .vs-btn {
    padding-left: 30px;
    padding-right: 30px;
  }
  .vs-price-morp .price-content .vs-btn,
  .vs-price-morp .price-title,
  .vs-price-morp .price-text {
    transform: translateX(0);
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .price-list-box {
    --space-x: 40px;
    --space-y: 40px;
  }
  .price-list-box .price-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .col-lg-6 .price-list-style1 {
    padding: 26px;
  }
  .price-card {
    --card-space-y: 40px;
    --card-space-x: 40px;
  }
  .price-card .price-title {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .price-card .price-list ul {
    margin-bottom: 30px;
  }
  .vs-pricing-layout2 .vs-price-box {
    padding: 40px;
    padding-top: 34px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .price-grid {
    padding: 60px 30px 13px 30px;
  }
  .price-grid .price-list {
    margin-top: 0;
  }
  .vs-price-morp .price-pack {
    top: 30%;
  }
  .tabs-style1 a {
    padding: 12px 20px;
  }
  .vs-pricing-layout2 .vs-price-box {
    padding: 40px 20px;
  }
  .vs-pricing-layout2 .vs-price {
    font-size: 42px;
    bottom: -2px;
  }
  .vs-pricing-layout2 .package-name {
    font-size: 18px;
  }
  .vs-pricing-layout2 .vs-price-head {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .vs-pricing-layout2 .vs-price-list {
    margin-bottom: 23px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .price-list {
    width: 100%;
  }

  .price-list ul {
    margin: 0 0 30px 0;
  }

  .price-list li {
    margin-bottom: 5px;
  }

  .price-list .border-middle {
    margin: 3px 10px 0 10px;
  }

  .price-list .price,
  .price-list .package {
    font-size: 16px;
  }

  .price-list-box {
    --space-x: 20px;
    --space-y: 30px;
  }

  .price-list-box .vs-btn {
    font-size: 14px;
    padding: 21px 21px;
  }

  .price-list-box .price-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .price-list-box .price-img {
    position: relative;
    height: 300px;
    width: 100%;
    bottom: 0;
    top: 0;
  }

  .price-list-box .price-content {
    width: 100%;
  }

  .price-list-box .price-list ul {
    margin: 0 0 25px 0;
  }

  .price-list-box .price-content,
  .price-list-box .vs-btn,
  .price-list-box .price-title,
  .price-list-box .price-list li {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .price-card {
    --card-space-y: 30px;
    --card-space-x: 20px;
  }

  .price-card .price-title {
    font-size: 24px;
  }

  .price-card .price-list ul {
    margin-bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .vs-price-morp .price-pack {
    position: relative;
    left: 0;
    top: 0;
    transform: none !important;
    padding: 30px 14px 18px 14px;
  }

  .vs-price-morp .pack-table {
    font-size: 14px;
    padding: 10px;
    width: 100%;
  }

  .vs-price-morp .pack-table td {
    padding-left: 15px;
    padding-right: 15px;
  }

  .vs-price-morp .price-text {
    margin-bottom: 25px;
  }

  .vs-price-morp .pack-title {
    font-size: 20px;
  }

  .price-list-style1 .media-img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .price-list-style1 .vs-price-list {
    margin-bottom: 35px;
    display: block;
  }

  .price-list-style1 .vs-price-list:last-child {
    margin-bottom: 20;
  }
}

/*------------------- 4.13. Team  -------------------*/
.team-grid {
  position: relative;
  text-align: center;
  --box-space: 20px;
  --translate: -40px;
}

.team-grid:after,
.team-grid:before {
  content: "";
  position: absolute;
  left: calc(var(--box-space) + var(--bs-gutter-x) / 2);
  right: calc(var(--box-space) + var(--bs-gutter-x) / 2);
  top: var(--box-space);
  height: calc(50% - var(--box-space));
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  transition: all ease 0.4s;
  transform: scale(0);
  transform-origin: 100% 0;
}

.team-grid:after {
  top: auto;
  transform-origin: 0 100%;
  bottom: var(--box-space);
}

.team-grid .team-number,
.team-grid .team-degi,
.team-grid .team-name {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transform: translateY(var(--translate));
}

.team-grid .team-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: -moz-max-content;
  width: max-content;
  transform: translate(-50%, -50%);
}

.team-grid .team-name {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--white-color);
}

.team-grid .team-degi {
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-grid .team-number {
  font-size: 16px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  --translate: 40px;
}

.team-grid .team-number i {
  margin-right: 7px;
  display: inline-block;
}

.team-grid .team-number a {
  color: inherit;
}

.team-grid .team-img {
  overflow: hidden;
}

.team-grid .team-img img {
  transform: scale(1);
  transition: all ease 0.4s;
}

.team-grid:hover:after,
.team-grid:hover:before {
  transform: scaleY(1);
}

.team-grid:hover .team-img img {
  transform: scale(1.1);
}

.team-grid:hover .team-number,
.team-grid:hover .team-degi,
.team-grid:hover .team-name {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.team-grid:hover .team-degi {
  transition-delay: 0.4s;
}

.team-grid:nth-child(even) {
  transform: scale(0.8);
}

.team-grid:nth-child(even) .team-degi {
  font-size: 20px;
}

.team-masked {
  text-align: center;
  margin-bottom: 22px;
}

.team-masked .team-toggler-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white-color);
  box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transition: all ease 0.4s;
  font-size: 20px;
  color: var(--title-color);
  position: absolute;
  bottom: 0;
  color: var(--theme-color);
  left: 50%;
  transform: translate(-50%, 20px);
}

.team-masked .team-toggler-btn .default {
  opacity: 1;
  visibility: visible;
}

.team-masked .team-toggler-btn .hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.team-masked .team-toggler-btn.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.team-masked .team-toggler-btn.active .default {
  opacity: 0;
  visibility: hidden;
}

.team-masked .team-toggler-btn.active .hidden {
  opacity: 1;
  visibility: visible;
}

.team-masked .team-social {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
}

.team-masked .team-social a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 53px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  margin-bottom: 5px;
  font-size: 16px;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}

.team-masked .team-social.show a {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-masked .team-img {
  width: 100%;
  height: 100%;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
}

.team-masked .team-img img {
  width: 100%;
  transform: scale(1);
  transition: all ease 0.4s;
}

.team-masked .team-img:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-mask-image: inherit;
  mask-image: inherit;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: all ease 0.4s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.team-masked .team-header {
  position: relative;
  margin-bottom: 40px;
}

.team-masked .toggled .team-img::before {
  opacity: 1;
  visibility: visible;
}

.team-masked .team-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-masked .team-degi {
  font-weight: 400;
  color: var(--theme-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.team-masked .team-number {
  font-weight: 500;
  font-size: 16px;
}

.team-masked .team-number a {
  font-weight: 700;
}

.team-masked .team-number a i {
  color: var(--theme-color);
}

.team-masked:hover .team-img img {
  transform: scale(1.2);
}

.team-details-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, var(--theme-color) 0%, var(--theme-color) 100%);
  opacity: 0.05;
}

.team-details-content .member-degi {
  font-weight: 500;
  color: var(--theme-color);
}

.vs-team-layout2 a {
  color: inherit;
}

.vs-team-layout2 .vs-team-content {
  position: relative;
  text-align: center;
  padding-top: 45px;
  padding-bottom: 30px;
}

.vs-team-layout2 .plus-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: var(--theme-color);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -22.5px;
  margin-left: -22.5px;
  color: var(--white-color);
  margin-top: 0;
  transition: all ease 0.4s;
  opacity: 1;
  visibility: visible;
}

.vs-team-layout2 .team-links {
  position: absolute;
  left: 0;
  top: -22.5px;
  width: 100%;
  text-align: center;
  transition: all ease 0.4s;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
}

.vs-team-layout2 .team-links a {
  background-color: var(--white-color);
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  box-shadow: 0px 10px 25px 0px rgba(173, 136, 88, 0.2);
}

.vs-team-layout2 .team-links a:last-child {
  margin-right: 0;
}

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

.vs-team-layout2 .vs-team {
  background-color: var(--white-color);
  margin-bottom: 30px;
  box-shadow: 0px 16px 32px 0px rgba(173, 136, 88, 0.08);
}

.vs-team-layout2 .vs-team:hover .plus-icon {
  margin-top: -20px;
  opacity: 0;
  visibility: visible;
}

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

/* Large devices */
@media (max-width: 1199px) {
  .team-grid .team-name {
    font-size: 22px;
  }

  .team-grid .team-degi {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .team-grid .team-number {
    font-size: 16px;
  }

  .team-grid:nth-child(2n) {
    transform: scale(1);
  }

  .team-masked .team-name {
    font-size: 24px;
  }

  .team-masked .team-degi {
    font-size: 14px;
    margin-bottom: 0;
  }

  .team-masked .team-number {
    font-size: 14px;
  }

  .team-details-shape {
    right: 0;
  }
}

/*------------------- 4.14. Testimonial  -------------------*/
.vs-testimonial-wrapper * {
  color: var(--white-color) !important;
}

.vs-testimonial {
  text-align: center;
}

.vs-testimonial .quote-icon {
  display: inline-block;
  margin-bottom: 40px;
}

.vs-testimonial .author-name {
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--white-color) !important;
}

.vs-testimonial .testimonial-desc {
  margin-bottom: 22px;
}

.vs-testimonial .testimonial-desc p {
  font-size: 30px;
  line-height: 1.6;
  color: var(--white-color) !important;
}

.vs-testimonial .author-degi {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color) !important;
  display: inline-block;
  margin-left: 6px;
}

.vs-testimonial .author-degi:before {
  content: "-";
  margin-right: 5px;
}

.avater-fly.slick-slider,
.avater-fly .slick-track,
.avater-fly .slick-list {
  overflow: visible;
  position: static;
  transform: none !important;
}

.avater-fly .avater {
  position: absolute;
  cursor: pointer;
  height: auto;
  opacity: 0;
  visibility: visible;
  animation: moving linear infinite 14s;
}

.avater-fly .avater:nth-child(-n+5) {
  opacity: 1;
  visibility: visible;
}

.avater-fly .avater:nth-child(1) {
  left: 70px;
  top: -35px;
  animation-delay: 3s;
}

.avater-fly .avater:nth-child(2) {
  right: 82px;
  top: -30px;
  animation-delay: 1s;
}

.avater-fly .avater:nth-child(3) {
  left: 12px;
  top: 130px;
  animation-delay: 1s;
}

.avater-fly .avater:nth-child(4) {
  right: 12px;
  bottom: 75px;
  animation-delay: 6s;
}

.avater-fly .avater:nth-child(5) {
  left: 82px;
  bottom: 75px;
  animation-delay: 3s;
  animation-direction: reverse;
}

.testimonial-arrow {
  padding-top: 50px;
}

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

.vs-testimonial-box {
  --quote-size: 80px;
  margin-top: calc(var(--quote-size) / 2);
  border: 1px solid rgb(228, 228, 228);
  border-top: 10px solid var(--theme-color);
  background-color: var(--white-color);
  text-align: center;
  box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.03);
  padding: 0 40px 30px 40px;
  margin-bottom: 30px;
}

.vs-testimonial-box .testimonial-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  color: var(--title-color);
  font-style: italic;
  margin-bottom: 10px;
}

.vs-testimonial-box .author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.vs-testimonial-box .testimonial-rating {
  color: var(--yellow-color);
  font-size: 14px;
}

.vs-testimonial-box .testimonial-rating i {
  margin: 0 1px;
}

.vs-testimonial-box .quote-icon {
  width: var(--quote-size);
  height: var(--quote-size);
  line-height: calc(var(--quote-size) - 2px);
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin: calc(var(--quote-size) / -1.6) auto 18px auto;
}

.quote-icon-style1 {
  color: var(--theme-color);
  position: relative;
  padding-bottom: 54px;
  margin-bottom: 45px;
  display: inline-block;
  line-height: 1;
}

.quote-icon-style1:before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--theme-color);
  z-index: -1;
  opacity: 0.2;
  top: -10px;
  right: -25px;
}

.quote-icon-style1:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 4px;
  border-radius: 50%;
  width: 100px;
  margin-left: -50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}

.quote-icon-style1.text-white:before,
.quote-icon-style1.text-white:after {
  background-color: var(--white-color);
  opacity: 1;
}

.quote-icon-style1.has-white-shape:after {
  background-color: #ffffff;
  opacity: 1;
}

.quote-icon-style1.has-white-shape::before {
  background-color: var(--theme-color);
  opacity: 0.3;
}

.testimonial-avater-style1 {
  width: 100%;
  max-width: 250px;
  padding: 0 10px;
  overflow: hidden;
  margin: 20px auto 0 auto;
}

.testimonial-avater-style1 .author-img {
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  max-width: 70px !important;
  max-height: 70px !important;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 10px 28px 0px rgba(249, 163, 146, 0.3);
  margin: 0 2px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all ease 0.4s;
}

.testimonial-avater-style1 .author-img img {
  border-radius: 50% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.testimonial-avater-style1 .author-img:not(.slick-center) {
  background-color: transparent;
  box-shadow: none;
  transform: scale(0.8);
  margin-top: 2px;
  transform-origin: 50% 50%;
}

.testimonial-avater-style1 .author-img:not(.slick-center):hover {
  background-color: var(--theme-color);
}

.testimonial-author-style1 {
  margin: 0 0 15px 0;
}

.testimonial-border-line {
  margin-bottom: 15px;
  margin-top: 0;
  position: relative;
}

.testimonial-border-line .border-css {
  width: calc(100% - 180px);
  height: 2px;
  margin: 0 auto;
  background-color: var(--smoke-color);
  display: block;
}

.testimonial-border-line .border-css:after,
.testimonial-border-line .border-css:before {
  content: "";
  position: absolute;
  width: 80px;
  top: 0;
  height: 2px;
  left: 50%;
  margin-left: -40px;
  background-color: var(--theme-color);
}

.testimonial-border-line .border-css:after {
  content: "";
  border-bottom: 2px solid var(--theme-color);
  border-left: 2px solid var(--theme-color);
  width: 20px;
  height: 20px;
  margin-left: -12px;
  background-color: #fff;
  margin-top: -9px;
  transform: rotate(-45deg);
}

.testimonial-avater-style2.slick-slider,
.testimonial-avater-style2 .slick-track,
.testimonial-avater-style2 .slick-list {
  overflow: visible;
  position: static;
  transform: none !important;
}

.testimonial-avater-style2 .author-img {
  position: absolute;
  width: 110px;
  height: 110px;
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-avater-style2 .author-img img {
  border-radius: 50%;
}

.testimonial-avater-style2 .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 3;
  --moving-ani-duration: 14s;
}

.testimonial-avater-style2 .slick-slide:nth-child(1) {
  top: 140px;
  left: 11%;
  opacity: 1;
  visibility: visible;
  animation-delay: 5s;
}

.testimonial-avater-style2 .slick-slide:nth-child(2) {
  right: 82px;
  top: -30px;
  opacity: 1;
  visibility: visible;
}

.testimonial-avater-style2 .slick-slide:nth-child(3) {
  left: 12px;
  top: 130px;
  opacity: 1;
  visibility: visible;
  animation-delay: 7s;
}

.testimonial-avater-style2 .slick-slide:nth-child(4) {
  right: 12px;
  bottom: 75px;
  opacity: 1;
  visibility: visible;
  animation-delay: 4s;
}

.testimonial-avater-style2 .slick-slide:nth-child(5) {
  width: 100px;
  height: 100px;
  top: auto;
  bottom: 65px;
  left: auto;
  right: 4%;
  opacity: 1;
  visibility: visible;
  animation-delay: 8s;
}

/* Medium devices */
@media (max-width: 991px) {
  .quote-icon-style1 {
    padding-bottom: 30px;
    margin-bottom: 25px;
    font-size: 3em;
  }

  .quote-icon-style1:before {
    width: 50px;
    height: 50px;
    top: -3px;
    right: -25px;
  }

  .testimonial-border-line {
    margin-bottom: 25px;
    margin-top: 0;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .testimonial-avater-style2 .slick-slide:nth-child(2) {
    bottom: 4%;
    left: 5%;
  }

  .testimonial-avater-style2 .slick-slide:nth-child(3) {
    right: 4%;
    top: 8%;
  }

  .testimonial-avater-style2 .slick-slide:nth-child(4) {
    right: 1%;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .testimonial-border-line {
    margin-bottom: 0;
    margin-top: 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .avater-fly .avater:nth-child(1) {
    left: 50px;
    top: 30px;
    width: 80px;
  }

  .avater-fly .avater:nth-child(2) {
    right: 0px;
    top: 0;
    width: 90px;
  }

  .avater-fly .avater:nth-child(3) {
    left: 50px;
    top: 230px;
    width: 80px;
  }

  .avater-fly .avater:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
  }

  .avater-fly .avater:nth-child(5) {
    left: 82px;
    width: 90px;
    bottom: -50px;
  }

  .vs-testimonial-box {
    --quote-size: 60px;
    padding: 0 30px 30px 30px;
  }

  .vs-testimonial-box .testimonial-text {
    font-size: 22px;
    line-height: 32px;
  }

  .vs-testimonial-box .author-name {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 22px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .vs-testimonial .testimonial-desc {
    margin-bottom: 0;
  }

  .vs-testimonial .testimonial-desc p {
    font-size: 22px;
    line-height: 1.6;
  }

  .vs-testimonial .quote-icon {
    margin-bottom: 20px;
  }

  .vs-testimonial .author-degi {
    font-size: 14px;
    margin-left: 6px;
  }

  .vs-testimonial .author-name {
    font-size: 22px;
  }

  .testimonial-arrow {
    padding-top: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .vs-testimonial .author-name {
    display: block;
    font-size: 22px;
  }

  .testimonial-arrow {
    padding-top: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .vs-testimonial .author-name {
    display: block;
    font-size: 20px;
  }

  .vs-testimonial .author-degi {
    font-size: 14px;
    margin-left: 0;
  }

  .vs-testimonial .author-degi:before {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .vs-testimonial-box {
    padding: 0 10px 30px 10px;
  }

  .vs-testimonial-box .testimonial-text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .testimonial-content-area,
  .testimonial-author-style1,
  .testimonial-avater-style1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767px) {
  #testi-author .slick-track {
    display: flex !important;
    justify-content: center !important;
  }
  #testi-author .author-img {
    margin: 0 10px !important;
  }
}
@media (max-width: 767px) {
  .vs-testimonial-wrapper img[alt="quote icon"] {
    margin: 0 auto !important;
    display: block !important;
  }
}

/*------------------- 4.23. Gallery  -------------------*/
.gallery-thumb {
  position: relative;
  overflow: hidden;
}

.gallery-thumb img {
  transition: all ease 0.4s;
  transform: scale(1);
}

.gallery-thumb:after,
.gallery-thumb:before {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(173, 136, 88, 0.8);
  transition: all ease 0.6s;
  z-index: 1;
}

.gallery-thumb:before {
  left: 100%;
}

.gallery-thumb:after {
  right: 100%;
}

.gallery-thumb .icon-thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  color: var(--white-color);
  font-size: 42px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
  transform: translate(-50%, -50%);
}

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

.gallery-thumb:hover::before {
  left: 0;
}

.gallery-thumb:hover:after {
  right: 0;
}

.gallery-thumb:hover .icon-thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}

.gallery-shape1 {
  position: absolute;
  right: 2%;
  top: 0;
}

.gallery-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-card .gallery-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: var(--white-color);
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.9;
}

.gallery-card .gallery-title {
  margin-bottom: 5px;
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.3;
}

.gallery-card .gallery-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 1;
  padding: 20px;
  padding-bottom: 20px;
  padding-top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

.gallery-card .gallery-card-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.gallery-card .vs-pricepill {
  position: absolute;
  top: 0;
  right: 30px;
  opacity: 0;
  visibility: hidden;
}

.gallery-card:hover .gallery-card-content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.gallery-card:hover .vs-pricepill {
  opacity: 1;
  visibility: visible;
  top: 30px;
}

.gallery-thumb-wrap {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
  margin: 4px;
}

@media (min-width: 768px) {
  .gallery-thumb-wrap {
    flex: 0 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
  }
}

@media (min-width: 1200px) {
  .gallery-thumb-wrap {
    flex: 0 0 calc(20% - 8px);
    max-width: calc(20% - 8px);
  }
}

/* Gallery Responsive Fixes for Mobile and Tablet */
@media (max-width: 767px) {
  .gallery-card {
    margin-bottom: 15px;
  }
  
  .gallery-card .gallery-card-img {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio - Square */
    overflow: hidden;
  }
  
  .gallery-card .gallery-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Keep hover effect on mobile */
  .gallery-card .gallery-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    padding: 15px 10px;
    padding-top: 60px;
    transition: all ease 0.4s;
  }
  
  .gallery-card .gallery-card-content:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0) 100%);
  }
  
  .gallery-card:hover .gallery-card-content,
  .gallery-card:active .gallery-card-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  
  .gallery-card .gallery-title {
    font-size: 14px;
    margin-bottom: 3px;
  }
  
  .gallery-card .gallery-text {
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-card {
    margin-bottom: 20px;
  }
  
  .gallery-card .gallery-card-img {
    max-height: 350px;
    overflow: hidden;
  }
  
  .gallery-card .gallery-card-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
  }
}

/*------------------- 4.26. Service Area  -------------------*/
.vs-service {
  text-align: center;
  border: 1px dashed var(--theme-color);
  background-color: transparent;
  padding: 49px 15px 39px 15px;
  transition: all ease 0.4s;
  position: relative;
}

.vs-service:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  opacity: 0.1;
  z-index: -1;
}

.vs-service .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: var(--white-color);
  margin-bottom: 27px;
  color: var(--theme-color);
  border-radius: 50%;
  font-size: 28px;
}

.vs-service .service-icon i,
.vs-service .service-icon .iconify,
.vs-service .service-icon img {
  display: block;
  line-height: 1;
  max-width: 48px;
  max-height: 48px;
}

.vs-service .service-title {
  margin-bottom: 12px;
  transition: all ease 0.4s;
  font-size: 20px;
}

.vs-service .service-title a {
  color: inherit;
}

.vs-service .service-text {
  transition: all ease 0.4s;
  margin-bottom: 0;
  max-width: 225px;
  margin-left: auto;
  margin-right: auto;
}

.vs-service:hover {
  background-color: var(--theme-color);
}

.vs-service:hover .service-text,
.vs-service:hover .service-title a {
  color: var(--white-color);
}

.vs-service:hover .service-title a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Small devices */
@media (max-width: 767px) {
  .vs-service {
    padding: 25px 10px;
    padding-bottom: 20px;
  }

  .vs-service .service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .vs-service .service-icon img {
    max-width: 40px;
  }
}

/*------------------- 4.27. Form Styles  -------------------*/
.form-media {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.form-media .media-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 28px;
  border-radius: 50%;
  margin-right: 20px;
}

.form-media .media-text {
  color: var(--white-color);
  font-size: 16px;
  margin: 0;
}

.form-media .media-title {
  font-size: 30px;
  color: var(--white-color);
  margin: 0;
}

.form-style1 {
  background-color: #f3eee6;
  padding: 50px;
}

.form-style1 .form-control {
  border-radius: 0;
  border: none;
  padding-left: 30px;
}

.form-style1 .form-control~i {
  right: 40px;
}

.form-style1 select {
  background-position: right 26px center;
}

.form-style1 .vs-btn {
  border-radius: 0;
}

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

  .form-media .media-text {
    font-size: 14px;
  }

  .form-media .media-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    margin-right: 15px;
  }

  .form-style1 {
    padding: 45px 20px;
  }
}

/*------------------- 4.28. Feature  -------------------*/
.vs-features-layout1 .shape1 {
  bottom: 0;
  left: 48%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
}

.vs-features-layout1 .shape2 {
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  height: 100%;
  z-index: -1;
}

.vs-features-layout1 .shape3 {
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  z-index: 2;
  max-height: 590px;
}

.vs-features-layout1 .shape5,
.vs-features-layout1 .shape4 {
  width: 920px;
  height: 920px;
  margin-left: -460px;
  margin-top: -440px;
  display: inline-block;
  left: 50%;
  top: 0;
  border-radius: 50%;
  background: var(--white-color);
  z-index: 1;
}

.vs-features-layout1 .shape5 {
  transform: scale(0.96);
  background-color: transparent;
  border: 34px solid var(--theme-color);
  opacity: 0.5;
}

.vs-features-layout1 .inner-wrapper {
  position: relative;
  z-index: 5;
}

.vs-features-layout1 .feature-text:last-child {
  margin-bottom: 0;
}

.vs-features-layout1 .media-icon {
  margin-top: 3px;
  margin-right: 25px;
  --btn-size: 70px;
}

.vs-features-layout1 .media-icon img {
  max-width: 40px;
}

.vs-features-layout1 .media-icon .icon-btn:hover {
  color: var(--theme-color) !important;
}

.vs-features-layout1 .icon-btn {
  position: relative;
}

.vs-features-layout1 .icon-btn.has-border:before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 1px dashed var(--theme-color);
  border-radius: inherit;
}

.vs-features-layout1 .vs-feature {
  margin-bottom: 40px;
  display: flex;
}

.vs-features-layout1 .vs-feature:last-child {
  margin-bottom: 0;
}

@media (min-width: 1199px) {
  .vs-features-layout1 .row>div:nth-child(1) {
    padding-right: 50px;
  }

  .vs-features-layout1 .row>div:nth-child(2) {
    padding-left: 50px;
  }

  .vs-features-layout1 .row>div:nth-child(2n+1) .vs-feature {
    flex-direction: row-reverse;
    text-align: right;
  }

  .vs-features-layout1 .row>div:nth-child(2n+1) .media-icon {
    margin-right: 0;
    margin-left: 25px;
  }
}

.vs-features-layout1 .row.has-default-view>div:nth-child(1) {
  padding-right: 15px;
}

.vs-features-layout1 .row.has-default-view>div:nth-child(2) {
  padding-left: 15px;
}

.vs-features-layout1 .row.has-default-view>div .vs-feature {
  flex-direction: row;
  text-align: left;
}

.vs-features-layout1 .row.has-default-view>div .vs-feature:last-child {
  margin-bottom: 40px;
}

.vs-features-layout1 .row.has-default-view>div .vs-feature .media-icon {
  margin-right: 25px;
  margin-left: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .vs-features-layout1 .shape2 {
    left: 0;
    right: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {

  .vs-features-layout1 .vs-feature,
  .vs-features-layout1 .vs-feature:last-child {
    margin-bottom: 35px;
  }

  .vs-features-layout1 .inner-wrapper.pb-60 {
    padding-bottom: 0;
  }

  .vs-features-layout1 .row.has-default-view>div .vs-feature:last-child {
    margin-bottom: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .vs-features-layout1 .vs-feature {
    display: block;
    text-align: center;
  }

  .vs-features-layout1 .row.has-default-view>div .vs-feature {
    text-align: center;
  }

  .vs-features-layout1 .media-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*=================================
    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;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-lg-30 {
  padding-top: 30px;
}

/* Medium devices */
@media (max-width: 991px) {
  .no-pl-md {
    padding-left: 0;
  }

  .pt-lg-30 {
    padding-top: 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .no-pt-sm {
    padding-top: 0;
  }
}

/*-- 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;
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -0.25rem;
}

.mb-n2 {
  margin-bottom: -0.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.mb-6 {
  margin-bottom: 6px;
}

.mr-135 {
  margin-right: 135px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

/* New consistent section spacing - 80px top and bottom */
.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Legacy spacing classes - kept for compatibility but normalized to 80px */
.space,
.space-top {
  padding-top: 80px;
}

.space,
.space-bottom {
  padding-bottom: 80px;
}

.space-negative,
.space-negative-top {
  padding-top: 60px;
}

.space-negative,
.space-negative-bottom {
  padding-bottom: 60px;
}

/* Medium devices */
@media (max-width: 991px) {

  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .space,
  .space-top {
    padding-top: 60px;
  }

  .space,
  .space-bottom {
    padding-bottom: 60px;
  }

  .space-negative,
  .space-negative-top {
    padding-top: 40px;
  }

  .space-negative,
  .space-negative-bottom {
    padding-bottom: 40px;
  }

  .space-top-md-none {
    padding-top: 0;
  }
}

/*
    Cookie Consent Styles */
:root {
  --cookie-primary: #AF9B81;
  --cookie-accent: #8c7a64;
  --cookie-text: #242424;
  --cookie-muted: #6b6b6b;
  --cookie-row-bg: #f4f4f4;
  --cookie-white: #ffffff;
  --cookie-bg: #ffffff;
}

/* Floating button */
.cookie-compact {
  position: fixed;
  left: 60px;
  bottom: 60px;
  z-index: 998;
}

.cookie-toggle {
  position: relative;
  width: 54px;
  height: 54px;
  background: var(--cookie-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 8px white, 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

.cookie-toggle:hover {
  background: var(--black-color);
}

.cookie-toggle .iconify {
  width: 28px;
  height: 28px;
  color: white;
}

.cookie-toggle .notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
}

/* Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 19999;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
}

/* Modal panel */
.cookie-panel {
  width: 560px;
  max-width: 94%;
  margin: 20px;
}

.cookie-panel-inner {
  background: var(--cookie-bg);
  padding: 40px 38px;
  max-height: 82vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
  scrollbar-color: var(--cookie-primary) #f0f0f0;
}

.cookie-panel-inner::-webkit-scrollbar {
  width: 8px;
}

.cookie-panel-inner::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.cookie-panel-inner::-webkit-scrollbar-thumb {
  background: var(--cookie-primary);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.cookie-panel-inner::-webkit-scrollbar-thumb:hover {
  background: var(--cookie-accent);
}

.cookie-panel-inner.animate {
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.cookie-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cookie-panel-top h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.cookie-close {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover svg {
  stroke: var(--cookie-primary);
}

.cookie-close svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  transition: stroke 0.2s;
}

/* Intro */
.cookie-panel-head p {
  margin-top: 6px;
  color: var(--cookie-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Actions */
.cookie-panel-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

.cookie-panel-actions.center {
  justify-content: center;
}

.btn {
  padding: 13px 22px;
  border: 1px dashed var(--theme-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 15px;
}

.btn-accept {
  background: var(--cookie-primary);
  color: white;
}

.btn-accept:hover {
  background: black;
  color: white;
}

.btn-decline {
  background: var(--cookie-white);
  color: #000;
  border: 1px dashed var(--theme-color);
}

.btn-decline:hover {
  background: #F7F5F2;
}

.btn-save {
  background: var(--cookie-white);
  color: #000;
  border: 1px dashed var(--theme-color);
}

.btn-save:hover {
  background: #F7F5F2;
}

/* Cookie Options */
.cookie-options {
  margin-top: 32px;
}

.cookie-row {
  background: #fdfcfa;
  border: 1px dashed var(--theme-color);
  padding: 18px 20px;
  margin-bottom: 18px;
}

.cookie-row.collapsible .cookie-row-head {
  cursor: pointer;
}

.cookie-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-row-head-left strong {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 600;
}

.cookie-row-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.functional-status {
  font-size: 14px;
  font-weight: 600;
  color: #169c39;
}

/* Switch */
.switch {
  width: 46px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #d5d5dd;
  border-radius: 20px;
  transition: 0.25s;
}

.slider:after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: 0.25s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

input:checked+.slider {
  background: var(--cookie-primary);
}

input:checked+.slider:after {
  transform: translateX(20px);
}

/* Chevron */
.chevron-icon {
  width: 20px;
  height: 20px;
  stroke: #000;
  transition: transform 0.3s ease, stroke 0.2s;
  flex-shrink: 0;
}

.chevron-icon.open {
  transform: rotate(180deg);
}

.cookie-row-head:hover .chevron-icon {
  stroke: var(--cookie-primary);
}

/* Details */
.cookie-details {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e3e3e3;
}

.cookie-details .muted {
  color: var(--cookie-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Hide body overflow when modal is open */
body.cookie-modal-open {
  overflow: hidden;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .cookie-panel-inner {
    font-size: 0.95rem;
    max-width: 520px;
    padding: 20px 26px;
    width: 80%;
  }

  .cookie-panel-top h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .cookie-panel-head p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .cookie-row {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .cookie-row-head-left strong {
    font-size: 0.92rem;
  }

  .cookie-panel-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .cookie-toggle {
    bottom: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .cookie-panel-inner {
    background: var(--cookie-bg);
    bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 63, 0.08);
    left: 50%;
    margin: 0 auto;
    max-width: 360px;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 18px;
    position: fixed;
    transform: translateX(-50%);
    width: 92%;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--cookie-primary) #f0f0f0;
  }

  .cookie-panel {
    width: 100%;
    margin: 0;
  }

  .cookie-modal-overlay {
    align-items: flex-end;
  }

  .cookie-panel-top h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .cookie-panel-head p {
    color: var(--cookie-muted);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .cookie-row {
    align-items: center;
    background: #fdfcfa;
    display: flex;
    font-size: 0.82rem;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 10px 12px;
  }

  .cookie-row-head {
    width: 100%;
  }

  .cookie-row-head-left strong {
    font-size: 0.88rem;
  }

  .cookie-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .btn {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
    width: 100%;
  }

  .cookie-toggle {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .cookie-panel-inner {
    bottom: 24px;
    max-width: 90%;
    padding: 14px 16px;
  }

  .cookie-panel-top h3 {
    font-size: 0.95rem;
  }

  .cookie-panel-head p,
  .cookie-row {
    font-size: 0.78rem;
  }

  .cookie-row {
    padding: 8px 10px;
  }

  .btn {
    font-size: 0.8rem;
    padding: 9px 0;
  }
}

/*=================================
    Custom Layout Improvements
=================================*/

/* Ensure all major sections have consistent container width */
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}


/* Fix "Über Uns" section alignment */
#ueberuns .row {
  align-items: center;
}

#ueberuns .image-box4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure features section has proper spacing */
.vs-features-wrapper .inner-wrapper {
  padding-top: 0 !important;
  margin-top: 2rem !important;
}

/* Remove excessive padding from features section */
.vs-features-wrapper .inner-wrapper .pt-lg-3,
.vs-features-wrapper .inner-wrapper .pt-xl-5,
.vs-features-wrapper .inner-wrapper .mt-xl-2 {
  padding-top: 0 !important;
  margin-top: 1rem !important;
}

/* Ensure price section carousel is properly centered */
#preise .vs-carousel {
  max-width: 100%;
}

/* Remove any leftover inline styles causing big gaps */
section[style*="margin-top: 120px"] {
  margin-top: 0 !important;
}

/* Ensure every section has proper container structure */
section>.container {
  width: 100%;
}

/* Remove duplicate wrappers and normalize spacing */
.gallery-card {
  margin-bottom: 0;
}

/* Ensure testimonial images maintain proper size */
.testimonial-avater-style1 .author-img img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #ueberuns .col-lg-6 {
    text-align: center;
  }
  .vs-testimonial .testimonial-desc p {
    font-size: 20px;
    line-height: 1.5;
  }
  .testimonial-content-area .testimonial-content h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .testimonial-author-style1 .author-content h3 {
    font-size: 18px;
  }
  .testimonial-avater-style1 .author-img {
    max-width: 80px;
  }
  .testimonial-avater-style1 .author-img img {
    width: 80px !important;
  }
  .vs-team-layout2 .vs-team-name {
    font-size: 18px;
    line-height: 1.3;
  }
  .vs-team-layout2 .vs-team-degi {
    font-size: 14px;
  }
  .vs-team-layout2 .vs-team-content {
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .section-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .vs-testimonial .testimonial-desc p {
    font-size: 18px;
    line-height: 1.5;
  }
  .testimonial-content-area .testimonial-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .testimonial-content-area .testimonial-content h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .testimonial-content-area .testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
  }
  .testimonial-author-style1 .author-content h3 {
    font-size: 16px;
  }
  .testimonial-avater-style1 .author-img {
    max-width: 70px;
  }
  .testimonial-avater-style1 .author-img img {
    width: 70px !important;
    height: 70px !important;
  }
  .vs-testimonial-box {
    padding: 0 25px 25px 25px;
  }
  .vs-testimonial-box .testimonial-text {
    font-size: 20px;
    line-height: 28px;
  }
  .vs-team-layout2 .vs-team-name {
    font-size: 16px;
    line-height: 1.3;
  }
  .vs-team-layout2 .vs-team-degi {
    font-size: 13px;
  }
  .vs-team-layout2 .vs-team-content {
    padding-top: 35px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 575px) {
  .vs-testimonial .testimonial-desc p {
    font-size: 16px;
    line-height: 1.5;
  }
  .tetimonial-content-area .testimonial-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .testimonial-content-area .testimonial-content h2 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .testimonial-content-area .testimonial-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  .testimonial-author-style1 .author-content h3 {
    font-size: 14px;
  }
  .testimonial-author-style1 .author-content span {
    font-size: 12px;
  }
  .testimonial-avater-style1 .author-img {
    max-width: 60px;
  }
  .testimonial-avater-style1 .author-img img {
    width: 60px !important;
    height: 60px !important;
  }
  .vs-testimonial-box {
    padding: 0 20px 20px 20px;
  }
  .vs-testimonial-box .testimonial-text {
    font-size: 16px;
    line-height: 24px;
  }
  .vs-testimonial-box .quote-icon {
    --quote-size: 60px;
  }
  .vs-team-layout2 .vs-team-name {
    font-size: 14px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .vs-team-layout2 .vs-team-degi {
    font-size: 12px;
  }
  .vs-team-layout2 .vs-team-content {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 100px;
  }
  .vs-team-layout2 .vs-team-name a {
    display: block;
    word-break: break-word;
  }
}

/* Contact Section Styles */
#kontakt .contact-form-wrapper {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  border: 1px dashed #AF9B81;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

#kontakt .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#kontakt .contact-form-messages {
  display: none;
  margin-bottom: 12px;
  color: green;
}

#kontakt .contact-form .row {
  flex: 1;
}

#kontakt .contact-form .position-relative {
  position: relative;
  min-height: 56px;
}

#kontakt .contact-form .iconify {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 22px;
  color: #AF9B81;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 10;
}

#kontakt .contact-form .position-relative:hover .iconify {
  color: #8d7d66;
}

#kontakt .contact-form .form-control,
#kontakt .contact-form .form-select {
  height: 56px;
  border-radius: .25rem;
  border: 1px dashed #AF9B81;
  padding-left: 48px;
  font-size: 16px;
  color: var(--title-color);
  transition: all 0.3s ease;
}

#kontakt .contact-form .form-control:hover,
#kontakt .contact-form .form-select:hover {
  border-color: #8d7d66;
  background-color: #fefdfb;
}

#kontakt .contact-form .form-select {
  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='%23AF9B81' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 48px;
  cursor: pointer;
}

#kontakt .contact-form .form-select:focus {
  border-color: #AF9B81;
  box-shadow: 0 0 0 0.2rem rgba(175, 155, 129, 0.15);
  background-color: #ffffff;
}

#kontakt .contact-form .form-control:focus {
  border-color: #AF9B81;
  box-shadow: 0 0 0 0.2rem rgba(175, 155, 129, 0.15);
  background-color: #ffffff;
}

#kontakt .contact-form .form-select option {
  padding: 12px;
  background-color: #ffffff;
  color: var(--title-color);
}

#kontakt .contact-form .form-select option:hover,
#kontakt .contact-form .form-select option:checked {
  background-color: #AF9B81;
  color: var(--white-color);
}

#kontakt .contact-form textarea.form-control {
  border-radius: .25rem;
  border: 1px dashed #AF9B81;
  padding-left: 48px;
  padding-top: 14px;
  min-height: 140px;
  height: 140px;
}

#kontakt .contact-form .textarea-wrapper {
  width: 100%;
}

#kontakt .contact-form .textarea-wrapper .iconify {
  top: 18px;
  transform: none;
  z-index: 10;
  pointer-events: none;
}

#kontakt .contact-form .submit-btn-wrapper {
  display: flex;
}

#kontakt .contact-form .vs-btn {
  padding: 16px 44px;
  font-size: 18px;
  background: #AF9B81;
  border-radius: .25rem;
}

#kontakt .contact-info-wrapper {
  display: flex;
  flex-direction: column;
}

#kontakt .contact-info-header {
  padding: 8px 0 12px 0;
}

#kontakt .contact-info-header h3 {
  margin-bottom: 8px;
  color: #1d1d1d;
  font-size: 20px;
}

#kontakt .contact-info-header p {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.6;
}

#kontakt .contact-info-header .opening-hours {
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}

#kontakt .contact-info-header .opening-hours h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

#kontakt .contact-map-wrapper {
  margin-top: 12px;
  width: 100%;
}

#kontakt .contact-map-card {
  background: #ffffff;
  overflow: hidden;
  border-radius: 8px;
}

#kontakt .contact-map-card iframe {
  height: 400px;
  width: 100%;
  border: 0;
  display: block;
}
.form-control,
.form-select {
  box-sizing: border-box;
}

/* Contact Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #c94034 !important;
  border-width: 1px;
  border-style: dashed;
  transition: all 0.3s ease;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #AF9b81 !important;
  border-width: 1px;
  border-style: dashed;
  transition: all 0.3s ease;
}

.form-control:focus.is-invalid,
.form-select:focus.is-invalid {
  border-color: #c94034 !important;
  border-width: 1px;
  box-shadow: 0 0 0 3px rgba(201, 64, 52, 0.15);
}

.form-control:focus.is-valid,
.form-select:focus.is-valid {
  border-color: #AF9b81 !important;
  border-width: 1px;
  box-shadow: 0 0 0 3px rgba(175, 155, 129, 0.15);
}

.invalid-feedback {
  display: none;
  width: 100%;
  font-size: 0.875em;
  color: #c94034;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 1.4;
}

#kontakt .col-12 {
  margin-bottom: 0;
}

#kontakt .row.gx-3.gy-4 > .col-12 {
  margin-bottom: 4px;
}

.contact-form-messages {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  display: none;
  font-family: var(--body-font);
  line-height: 1.5;
  border: 2px solid;
  transition: all 0.3s ease;
}

.contact-form-messages[style*="color: #28a745"],
.contact-form-messages[style*="color: #AF9b81"],
.contact-form-messages[style*="color: rgb(175, 155, 129)"] {
  background: rgba(175, 155, 129, 0.08);
  border-color: #AF9b81;
  color: #7a6a54 !important;
}

.contact-form-messages[style*="color: #dc3545"],
.contact-form-messages[style*="color: #c94034"],
.contact-form-messages[style*="color: rgb(220, 53, 69)"] {
  background: rgba(201, 64, 52, 0.08);
  border-color: #c94034;
  color: #c94034 !important;
}

/* Testimonial Avatar Mobile Fix */
@media (max-width: 767px) {
  .testimonial-avater-style1 .author-img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    padding: 6px;
  }
  
  .testimonial-avater-style1 .author-img img {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}

/* Testimonial Text Alignment Fix - Force Center on All Screens */
.vs-testimonial-wrapper,
.vs-testimonial,
.testimonial-content-area,
.testimonial-content,
.testimonial-desc,
.testimonial-desc p,
.testimonial-author-style1,
.author-name,
.author-degi,
.quote-icon,
.quote-icon-style1,
#testi-content,
#testi-author-name,
#testi-author {
  text-align: center !important;
}

#testi-content .slick-slide,
#testi-content .slick-track,
#testi-author-name .slick-slide,
#testi-author-name .slick-track,
#testi-author .slick-slide,
#testi-author .slick-track {
  text-align: center !important;
}

.vs-testimonial .quote-icon img,
.quote-icon img,
img[alt="quote icon"] {
  display: inline-block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Mobile-specific testimonial centering */
@media (max-width: 991px) {
  .vs-testimonial-wrapper,
  .vs-testimonial,
  .testimonial-content-area,
  .testimonial-content,
  .testimonial-desc,
  .testimonial-desc p,
  .testimonial-author-style1,
  .author-name,
  .author-degi,
  .quote-icon,
  .quote-icon-style1 {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .vs-testimonial-wrapper,
  .vs-testimonial,
  .testimonial-content-area,
  .testimonial-content,
  .testimonial-desc,
  .testimonial-desc p,
  .testimonial-author-style1,
  .author-name,
  .author-degi,
  .quote-icon,
  .quote-icon-style1 {
    text-align: center !important;
  }
  
  #testi-content .slick-slide,
  #testi-content .slick-track {
    text-align: center !important;
  }
}

.contact-form-messages[style*="color: #333"] {
  background: rgba(175, 155, 129, 0.05);
  border-color: #AF9b81;
  color: #333 !important;
}