.ratio {
  position: relative;
  display: block;
  overflow: hidden;
}

.ratio::before {
  display: block;
  width: 100%;
  content: "";
  /* border-radius: 60px; */
}

a:hover {
  color: #eca164;
}

.roomCard h3:hover {
  color: #ff6432 !important
}

.button:disabled {
  color: #000 !important;
}

.ratio-1\:1::before {
  padding-bottom: 100%;
}

.ratio-2\:1::before {
  padding-bottom: 50%;
}

.ratio-2\:3::before {
  padding-bottom: 150%;
}

.ratio-3\:2::before {
  padding-bottom: 66.66667%;
}

.ratio-3\:4::before {
  padding-bottom: 133.33333%;
}

.ratio-4\:3::before {
  padding-bottom: 75%;
}

.ratio-4\:1::before {
  padding-bottom: 25%;
}

.ratio-5\:4::before {
  padding-bottom: 80%;
}

.ratio-8\:5::before {
  padding-bottom: 62.5%;
}

.ratio-15\:9::before {
  padding-bottom: 60%;
}

.ratio-11\:8::before {
  padding-bottom: 72.72727%;
}

.ratio-16\:9::before {
  padding-bottom: 56.25%;
}

.ratio-10\:9::before {
  padding-bottom: 90%;
}

.ratio-33\:45::before {
  padding-bottom: 136.36364%;
}

.ratio-41\:50::before {
  padding-bottom: 121.95122%;
}

.ratio-44\:60::before {
  padding-bottom: 136.36364%;
}

.ratio-45\:50::before {
  padding-bottom: 111.11111%;
}

.ratio-45\:54::before {
  padding-bottom: 120%;
}

.ratio-45\:43::before {
  padding-bottom: 95.55556%;
}

.ratio-68\:45::before {
  padding-bottom: 66.17647%;
}

.ratio-68\:50::before {
  padding-bottom: 73.52941%;
}

.ratio-76\:62::before {
  padding-bottom: 81.57895%;
}

.ratio-80\:55::before {
  padding-bottom: 68.75%;
}

.ratio-92\:70::before {
  padding-bottom: 76.08696%;
}

.ratio-92\:60::before {
  padding-bottom: 65.21739%;
}

.ratio-95\:80::before {
  padding-bottom: 84.21053%;
}


:root {
  --text-9: 9px;
  --text-11: 11px;
  --text-13: 13px;
  --text-15: 15px;
  --text-17: 17px;
  --text-21: 21px;
  --text-24: 24px;
  --text-30: 30px;
  --text-40: 40px;
  --text-44: 44px;
  --text-50: 50px;
  --text-52: 52px;
  --text-60: 60px;
  --text-64: 64px;
  --text-72: 72px;
  --text-92: 92px;
}

.text-14 {
  font-size: 14px;
}

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #DDDDDD;
  --color-accent-1: #0c1718;
  --color-accent-2: #414042;
  --color-light-1: #F8F5F0;
  --color-light-2: #EDF5F3;
  --color-dark-1: #05073C;
  --color-dark-2: #1D3334;
  --color-dark-3: #0E1D1E;
  --color-info-1: #CDE9F6;
  --color-info-2: #4780AA;
  --color-warning-1: #F7F3D7;
  --color-warning-2: #927238;
  --color-error-1: #ECC8C5;
  --color-error-2: #AB3331;
  --color-success-1: #DEF2D7;
  --color-success-2: #5B7052;
}

[data-anim-wrap] {
  pointer-events: none;
}

[data-anim-wrap].animated {
  pointer-events: auto;
}

[data-anim*='cover-white']::after,
[data-anim-child*='cover-white']::after {
  background-color: white;
}

[data-anim*='cover-black']::after,
[data-anim-child*='cover-black']::after {
  background-color: black;
}

[data-anim*='cover-light-1']::after,
[data-anim-child*='cover-light-1']::after {
  background-color: var(--color-light-1);
}

[data-anim*='cover-accent-1']::after,
[data-anim-child*='cover-accent-1']::after {
  background-color: #c4b4af94;
  /* border-radius: 60px; */
}

[data-anim*='cover-accent-2']::after,
[data-anim-child*='cover-accent-2']::after {
  background-color: var(--color-accent-2);
}

@keyframes reveal {
  100% {
    opacity: 1;
  }
}

[data-anim^='img-right'],
[data-anim-child^='img-right'] {
  overflow: hidden;
  display: block;
  position: relative;
  /* border-radius: 60px; */
}

[data-anim^='img-right']::after,
[data-anim-child^='img-right']::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: 0;
  z-index: 20;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  transform-origin: right;
  animation-duration: 2.4s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: both;
}

[data-anim^='img-right']>*,
[data-anim-child^='img-right']>* {
  transform-origin: center;
  animation-duration: 2.4s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: both;
}

[data-anim^='img-right'].is-in-view::after,
[data-anim-child^='img-right'].is-in-view::after {
  animation-name: imgRight;
}

[data-anim^='img-right'].is-in-view>*,
[data-anim-child^='img-right'].is-in-view>* {
  animation-name: imgReveal;
}

@keyframes imgRight {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes imgReveal {
  0% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1.01);
  }
}

[data-anim^='slide-'],
[data-anim-child^='slide-'] {
  opacity: 0;
  transition-property: opacity, transform;
  pointer-events: none;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-anim^='slide-'].is-in-view,
[data-anim-child^='slide-'].is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

[data-anim^='slide-up'],
[data-anim-child^='slide-up'] {
  transform: translate3d(0, 40px, 0);
}

[data-anim^='slide-down'],
[data-anim-child^='slide-down'] {
  transform: translate3d(0, -40px, 0);
}

[data-anim^='slide-right'],
[data-anim-child^='slide-right'] {
  transform: translate3d(-40px, 0, 0);
}

[data-anim^='slide-left'],
[data-anim-child^='slide-left'] {
  transform: translate3d(40px, 0, 0);
}

[data-anim^='fade'],
[data-anim-child^='fade'] {
  opacity: 0;
  transition-property: opacity;
  pointer-events: none;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-anim^='fade'].is-in-view,
[data-anim-child^='fade'].is-in-view {
  opacity: 1;
  pointer-events: auto;
}

[data-anim*="delay-1"],
[data-anim-child*="delay-1"] {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

[data-anim*="delay-1"]::after,
[data-anim-child*="delay-1"]::after {
  animation-delay: 0.1s;
}

[data-anim*="delay-1"]>*,
[data-anim-child*="delay-1"]>* {
  animation-delay: 0.1s;
}

[data-anim*="delay-2"],
[data-anim-child*="delay-2"] {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

[data-anim*="delay-2"]::after,
[data-anim-child*="delay-2"]::after {
  animation-delay: 0.2s;
}

[data-anim*="delay-2"]>*,
[data-anim-child*="delay-2"]>* {
  animation-delay: 0.2s;
}

[data-anim*="delay-3"],
[data-anim-child*="delay-3"] {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

[data-anim*="delay-3"]::after,
[data-anim-child*="delay-3"]::after {
  animation-delay: 0.3s;
}

[data-anim*="delay-3"]>*,
[data-anim-child*="delay-3"]>* {
  animation-delay: 0.3s;
}

[data-anim*="delay-4"],
[data-anim-child*="delay-4"] {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

[data-anim*="delay-4"]::after,
[data-anim-child*="delay-4"]::after {
  animation-delay: 0.4s;
}

[data-anim*="delay-4"]>*,
[data-anim-child*="delay-4"]>* {
  animation-delay: 0.4s;
}

[data-anim*="delay-5"],
[data-anim-child*="delay-5"] {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

[data-anim*="delay-5"]::after,
[data-anim-child*="delay-5"]::after {
  animation-delay: 0.5s;
}

[data-anim*="delay-5"]>*,
[data-anim-child*="delay-5"]>* {
  animation-delay: 0.5s;
}

[data-anim*="delay-6"],
[data-anim-child*="delay-6"] {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

[data-anim*="delay-6"]::after,
[data-anim-child*="delay-6"]::after {
  animation-delay: 0.6s;
}

[data-anim*="delay-6"]>*,
[data-anim-child*="delay-6"]>* {
  animation-delay: 0.6s;
}

[data-anim*="delay-7"],
[data-anim-child*="delay-7"] {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

[data-anim*="delay-7"]::after,
[data-anim-child*="delay-7"]::after {
  animation-delay: 0.7s;
}

[data-anim*="delay-7"]>*,
[data-anim-child*="delay-7"]>* {
  animation-delay: 0.7s;
}

[data-anim*="delay-8"],
[data-anim-child*="delay-8"] {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

[data-anim*="delay-8"]::after,
[data-anim-child*="delay-8"]::after {
  animation-delay: 0.8s;
}

[data-anim*="delay-8"]>*,
[data-anim-child*="delay-8"]>* {
  animation-delay: 0.8s;
}

[data-anim*="delay-9"],
[data-anim-child*="delay-9"] {
  transition-delay: 0.9s;
  animation-delay: 0.9s;
}

[data-anim*="delay-9"]::after,
[data-anim-child*="delay-9"]::after {
  animation-delay: 0.9s;
}

[data-anim*="delay-9"]>*,
[data-anim-child*="delay-9"]>* {
  animation-delay: 0.9s;
}

[data-anim*="delay-10"],
[data-anim-child*="delay-10"] {
  transition-delay: 1s;
  animation-delay: 1s;
}

[data-anim*="delay-10"]::after,
[data-anim-child*="delay-10"]::after {
  animation-delay: 1s;
}

[data-anim*="delay-10"]>*,
[data-anim-child*="delay-10"]>* {
  animation-delay: 1s;
}

[data-anim*="delay-11"],
[data-anim-child*="delay-11"] {
  transition-delay: 1.1s;
  animation-delay: 1.1s;
}

[data-anim*="delay-11"]::after,
[data-anim-child*="delay-11"]::after {
  animation-delay: 1.1s;
}

[data-anim*="delay-11"]>*,
[data-anim-child*="delay-11"]>* {
  animation-delay: 1.1s;
}

[data-anim*="delay-12"],
[data-anim-child*="delay-12"] {
  transition-delay: 1.2s;
  animation-delay: 1.2s;
}

[data-anim*="delay-12"]::after,
[data-anim-child*="delay-12"]::after {
  animation-delay: 1.2s;
}

[data-anim*="delay-12"]>*,
[data-anim-child*="delay-12"]>* {
  animation-delay: 1.2s;
}

[data-anim*="delay-13"],
[data-anim-child*="delay-13"] {
  transition-delay: 1.3s;
  animation-delay: 1.3s;
}

[data-anim*="delay-13"]::after,
[data-anim-child*="delay-13"]::after {
  animation-delay: 1.3s;
}

[data-anim*="delay-13"]>*,
[data-anim-child*="delay-13"]>* {
  animation-delay: 1.3s;
}

[data-anim*="delay-14"],
[data-anim-child*="delay-14"] {
  transition-delay: 1.4s;
  animation-delay: 1.4s;
}

[data-anim*="delay-14"]::after,
[data-anim-child*="delay-14"]::after {
  animation-delay: 1.4s;
}

[data-anim*="delay-14"]>*,
[data-anim-child*="delay-14"]>* {
  animation-delay: 1.4s;
}

[data-anim*="delay-15"],
[data-anim-child*="delay-15"] {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

[data-anim*="delay-15"]::after,
[data-anim-child*="delay-15"]::after {
  animation-delay: 1.5s;
}

[data-anim*="delay-15"]>*,
[data-anim-child*="delay-15"]>* {
  animation-delay: 1.5s;
}

[data-anim*="delay-16"],
[data-anim-child*="delay-16"] {
  transition-delay: 1.6s;
  animation-delay: 1.6s;
}

[data-anim*="delay-16"]::after,
[data-anim-child*="delay-16"]::after {
  animation-delay: 1.6s;
}

[data-anim*="delay-16"]>*,
[data-anim-child*="delay-16"]>* {
  animation-delay: 1.6s;
}

[data-anim*="delay-17"],
[data-anim-child*="delay-17"] {
  transition-delay: 1.7s;
  animation-delay: 1.7s;
}

[data-anim*="delay-17"]::after,
[data-anim-child*="delay-17"]::after {
  animation-delay: 1.7s;
}

[data-anim*="delay-17"]>*,
[data-anim-child*="delay-17"]>* {
  animation-delay: 1.7s;
}

[data-anim*="delay-18"],
[data-anim-child*="delay-18"] {
  transition-delay: 1.8s;
  animation-delay: 1.8s;
}

[data-anim*="delay-18"]::after,
[data-anim-child*="delay-18"]::after {
  animation-delay: 1.8s;
}

[data-anim*="delay-18"]>*,
[data-anim-child*="delay-18"]>* {
  animation-delay: 1.8s;
}

[data-anim*="delay-19"],
[data-anim-child*="delay-19"] {
  transition-delay: 1.9s;
  animation-delay: 1.9s;
}

[data-anim*="delay-19"]::after,
[data-anim-child*="delay-19"]::after {
  animation-delay: 1.9s;
}

[data-anim*="delay-19"]>*,
[data-anim-child*="delay-19"]>* {
  animation-delay: 1.9s;
}

[data-anim*="delay-20"],
[data-anim-child*="delay-20"] {
  transition-delay: 2s;
  animation-delay: 2s;
}

[data-anim*="delay-20"]::after,
[data-anim-child*="delay-20"]::after {
  animation-delay: 2s;
}

[data-anim*="delay-20"]>*,
[data-anim-child*="delay-20"]>* {
  animation-delay: 2s;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

body {
  padding: 0;
  font-family: "Poppins", serif !important;
  width: 100%;
  background-color: white;
  color: var(--color-accent-1);
  font-size: 15px;
  line-height: 1.5;
}

select,
input:not([type="range"]),
textarea {
  border: 0;
  outline: none;
  width: 100%;
  background-color: transparent;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-size: 15px;
  color: var(--color-accent-1);
  margin: 0;
}

button {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
}

button:focus {
  outline: 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-md {
  height: 55px;
  padding: 0 30px;
}

.button.-sm {
  height: 40px;
  padding: 0 10px;
}

.button.-sm1 {
  height: 30px;
  padding: 0 10px;
}

.button.-type-1 {
  font-weight: 400;
}

.button.-type-1 .-icon {
  margin-right: 10px;
}

.button.-type-2::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: currentColor;
  margin-right: 10px;
  margin-bottom: 2px;
}

.button.-white:hover {
  border-color: var(--color-white);
  background-color: var(--color-white) !important;
  color: white !important;
}

.button.-outline-white {
  border-color: #ed4109;
}

.button.-outline-white:hover {
  background-color: #ed4109 !important;
  border-color: transparent;
  color: white !important;
}

.button.-black:hover {
  border-color: var(--color-black);
  background-color: var(--color-black) !important;
  color: white !important;
}

.button.-outline-black {
  border-color: var(--color-black);
}

.button.-outline-black:hover {
  background-color: var(--color-black) !important;
  border-color: transparent;
  color: white !important;
}

.button.-border:hover {
  border-color: var(--color-border);
  background-color: var(--color-border) !important;
  color: white !important;
}

.button.-outline-border {
  border-color: var(--color-border);
}

.button.-outline-border:hover {
  background-color: var(--color-border) !important;
  border-color: transparent;
  color: white !important;
}

.button.-accent-1:hover {
  border-color: #78777977;
  background-color: #f26b3e !important;
  color: white !important;
}

.-accent-1-book {
  border: none !important;
  border-color: #ed4109;
  background-color: #ed4109 !important;
  color: white !important;
}

.-accent-1-book:hover {
  border-color: #ed41096b !important;
  background-color: #ed41096b !important;
  color: black !important;
}

.button.-outline-accent-1 {
  border-color: var(--color-accent-1);
}

.button.-outline-accent-1:hover {
  background-color: var(--color-accent-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-accent-2:hover {
  border-color: var(--color-accent-2);
  background-color: var(--color-accent-2) !important;
  color: white !important;
}

.button.-outline-accent-2 {
  border-color: var(--color-accent-2);
}

.button.-outline-accent-2:hover {
  background-color: var(--color-accent-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-light-1:hover {
  border-color: var(--color-light-1);
  background-color: var(--color-light-1) !important;
  color: white !important;
}

.button.-outline-light-1 {
  border-color: var(--color-light-1);
}

.button.-outline-light-1:hover {
  background-color: var(--color-light-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-light-2:hover {
  border-color: var(--color-light-2);
  background-color: var(--color-light-2) !important;
  color: white !important;
}

.button.-outline-light-2 {
  border-color: var(--color-light-2);
}

.button.-outline-light-2:hover {
  background-color: var(--color-light-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-dark-1:hover {
  border-color: var(--color-dark-1);
  background-color: var(--color-dark-1) !important;
  color: white !important;
}

.button.-outline-dark-1 {
  border-color: var(--color-dark-1);
}

.button.-outline-dark-1:hover {
  background-color: var(--color-dark-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-dark-2:hover {
  border-color: var(--color-dark-2);
  background-color: var(--color-dark-2) !important;
  color: white !important;
}

.button.-outline-dark-2 {
  border-color: var(--color-dark-2);
}

.button.-outline-dark-2:hover {
  background-color: var(--color-dark-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-dark-3:hover {
  border-color: var(--color-dark-3);
  background-color: var(--color-dark-3) !important;
  color: white !important;
}

.button.-outline-dark-3 {
  border-color: var(--color-dark-3);
}

.button.-outline-dark-3:hover {
  background-color: var(--color-dark-3) !important;
  border-color: transparent;
  color: white !important;
}

.button.-info-1:hover {
  border-color: var(--color-info-1);
  background-color: var(--color-info-1) !important;
  color: white !important;
}

.button.-outline-info-1 {
  border-color: var(--color-info-1);
}

.button.-outline-info-1:hover {
  background-color: var(--color-info-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-info-2:hover {
  border-color: var(--color-info-2);
  background-color: var(--color-info-2) !important;
  color: white !important;
}

.button.-outline-info-2 {
  border-color: var(--color-info-2);
}

.button.-outline-info-2:hover {
  background-color: var(--color-info-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-warning-1:hover {
  border-color: var(--color-warning-1);
  background-color: var(--color-warning-1) !important;
  color: white !important;
}

.button.-outline-warning-1 {
  border-color: var(--color-warning-1);
}

.button.-outline-warning-1:hover {
  background-color: var(--color-warning-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-warning-2:hover {
  border-color: var(--color-warning-2);
  background-color: var(--color-warning-2) !important;
  color: white !important;
}

.button.-outline-warning-2 {
  border-color: var(--color-warning-2);
}

.button.-outline-warning-2:hover {
  background-color: var(--color-warning-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-error-1:hover {
  border-color: var(--color-error-1);
  background-color: var(--color-error-1) !important;
  color: white !important;
}

.button.-outline-error-1 {
  border-color: var(--color-error-1);
}

.button.-outline-error-1:hover {
  background-color: var(--color-error-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-error-2:hover {
  border-color: var(--color-error-2);
  background-color: var(--color-error-2) !important;
  color: white !important;
}

.button.-outline-error-2 {
  border-color: var(--color-error-2);
}

.button.-outline-error-2:hover {
  background-color: var(--color-error-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-success-1:hover {
  border-color: var(--color-success-1);
  background-color: var(--color-success-1) !important;
  color: white !important;
}

.button.-outline-success-1 {
  border-color: var(--color-success-1);
}

.button.-outline-success-1:hover {
  background-color: var(--color-success-1) !important;
  border-color: transparent;
  color: white !important;
}

.button.-success-2:hover {
  border-color: var(--color-success-2);
  background-color: var(--color-success-2) !important;
  color: white !important;
}

.button.-outline-success-2 {
  border-color: var(--color-success-2);
}

.button.-outline-success-2:hover {
  background-color: var(--color-success-2) !important;
  border-color: transparent;
  color: white !important;
}

.button.-white:hover {
  color: black !important;
}

.button.-outline-accent-2:hover {
  color: black !important;
}

.button.-accent-2:hover {
  color: black !important;
}

.button.swiper-button-disabled {
  opacity: 0.2;
}

.button.-light-1:hover {
  color: black !important;
}

.button.-blur-1 {
  background-color: rgba(18, 34, 35, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button.-blur-1:hover {
  background-color: #122223;
}

.button.-outline-white:hover {
  background-color: #ed4109 !important;
  color: var(--color-dark-1) !important;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 160px;
  height: 160px;
}

.play-button.-sm {
  width: 90px;
  height: 90px;
}

@media (max-width: 767px) {
  .play-button {
    width: 100px;
    height: 100px;
  }

  .hero-section-blog h2 {
    font-size: 1.5rem !important;
  }

  .custom-tabs .tab-btn {
    padding: 12px 3px !important;
  }

  .tab-btn {
    font-size: 19px !important;
  }

  .play-button>i {
    font-size: 18px !important;
  }

  .down-arrow {
    top: 56px;
  }

  .footer-item3 {
    display: block !important;
    text-align: center;
  }

  .for-booking {
    display: block !important;
  }

  .modal-image {
    height: 220px !important;
  }

  .for-inquiry {
    display: block !important;
    margin-top: 10px;
  }

  .slidesimg-property {
    height: 275px !important;
  }

  .prev,
  .next {
    top: 40px !important;
  }

  .back-btn {
    position: relative;
    right: 0px !important;
  }

  .booking-form-img {
    height: 380px !important;
    object-fit: cover;
  }

  .exp-img {
    height: 185px !important;
    object-fit: cover;
  }

  .meals-icon {
    display: block !important;
  }

  .meals-icon1 {
    display: block !important;
  }

  .resort-col {
    padding: 0px !important;
    text-align: center;
  }

  .resort-images {
    margin-top: 10px;
  }

  .Packages-section .border-r {
    border-right: none;
  }

}

.play-button:hover {
  color: var(--color-accent-1);
}

.arrowButton.-type-1 {
  display: flex;
  align-items: center;
}

.arrowButton.-type-1>span {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.arrowButton.-type-1>span i {
  transform: rotate(-90deg);
}

.buttonArrow:hover span {
  text-decoration: underline;
}

.contactForm select,
.contactForm input:not([type="range"]),
.contactForm textarea {
  font-size: 17px;
  line-height: 1.4;
  height: 34px;
  background-color: white;
  border-bottom: 1px solid #f26b3e5d;
  /* padding: 0 15px; */
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.checkDate {
  /* height: 62px !important; */
}

.contactForm select:focus,
.contactForm input:not([type="range"]):focus,
.contactForm textarea:focus {
  border-color: var(--color-accent-1);
}

.contactForm textarea {
  height: auto;
  padding-top: 25px;
}

.contactForm ::-moz-placeholder {
  font-weight: 400;
}

.contactForm ::placeholder {
  font-weight: 400;
}

.contactForm__caption {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}

.contactForm .form-input {
  position: relative;
}

.contactForm .form-input label {
  position: absolute;
  top: -12px;
  left: 0px;
  color: #877575;
  z-index: 10;
  pointer-events: none;
  transition: all 0.15s ease-out;
}

.contactForm .form-input label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  right: -7px;
  bottom: 0;
  background-color: white;
  z-index: -1;
}

/* .contactForm .form-input textarea:focus+label,
.contactForm .form-input input:focus+label {
  transform: translateY(-29px);
} */

.contactForm .form-input.-h-55 input {
  height: 55px;
}

input.text-white::-moz-placeholder {
  color: white;
}

input.text-white::placeholder {
  color: white;
}

.inputSingle {
  position: relative;
}

.inputSingle input {
  height: 70px !important;
}

.inputSingle label {
  top: 26px !important;
  left: 26px !important;
}

.inputSingle button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  z-index: 2;
}

.form-checkbox {
  cursor: pointer;
  position: relative;
  display: flex;
}

.form-checkbox label {
  margin: 0;
  margin-left: 10px;
  font-size: 15px;
}

.form-checkbox__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-accent-1);
}

.form-checkbox__icon {
  display: none;
  position: absolute;
  font-size: 8px;
  color: white;
}

.form-checkbox input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  opacity: 0;
}

.form-checkbox input:checked~.form-checkbox__mark {
  background-color: var(--color-accent-1);
  border-color: var(--color-accent-1);
}

.form-checkbox input:checked~.form-checkbox__mark .form-checkbox__icon {
  display: block;
}

.form-checkbox:hover input~.form-checkbox__mark {
  background-color: rgba(0, 0, 0, 0.2);
}

.form-radio {
  display: flex;
  align-items: center;
}

.form-radio .radio {
  cursor: pointer;
  position: relative;
  display: block;
}

.form-radio .radio__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  border: 1px solid var(--color-accent-1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio__icon {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  transform-origin: center;
  opacity: 1;
  transform: scale(0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio input {
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.form-radio .radio input:checked~.radio__mark {
  border-color: var(--color-accent-1);
  background-color: var(--color-accent-1);
}

.form-radio .radio input:checked~.radio__mark .radio__icon {
  background-color: var(--color-white);
  opacity: 1;
  transform: scale(1);
}

.form-switch .switch {
  cursor: pointer;
  position: relative;
  width: 55px;
  height: 30px;
}

.form-switch .switch__slider {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-light-1);
  transition: .3s;
  border-radius: 30px;
}

.form-switch .switch__slider::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 100%;
  box-shadow: 0px 10px 40px 0px #0000000D;
  transition: .3s;
}

.form-switch .switch input {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-switch .switch input:checked+.switch__slider {
  background-color: var(--color-accent-1);
}

.form-switch .switch input:checked+.switch__slider::before {
  transform: translateX(25px);
  background-color: white;
}

.select {
  position: relative;
}

.select__button {
  width: 100%;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  height: 68px;
  border: 1px solid #E7E6E6;
  padding: 25px 20px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.select__button:focus {
  outline: 1px solid #05073C;
  border: 1px solid #05073C;
}

.select__icon {
  width: 20px;
  height: 20px;
}

.select__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 340px;
  background-color: white;
  border: 1px solid var(--color-accent-1);
  z-index: 30;
  transition: all 0.2s ease;
  pointer-events: none;
  opacity: 0;
}

.select__dropdown.-is-visible {
  opacity: 1;
  pointer-events: auto;
}

.select__options {
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  padding-bottom: 10px;
}

.select__options::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.select__options::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.select__options__button {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 8px 20px;
  transition: all 0.15s ease;
}

.select__options__button:hover {
  cursor: pointer;
  background-color: var(--color-light-1) !important;
}

.select__options__button:focus {
  background-color: var(--color-light-1) !important;
}

.select__search {
  height: 55px !important;
  border: 1px solid var(--color-border) !important;
  width: auto !important;
  color: black;
  padding: 0 20px !important;
  margin: 0 20px;
  margin-top: 20px;
}

.select.-multiple .select__dropdown {
  padding: 15px 0;
}

.select.-multiple .select__options {
  padding-top: 0;
  padding-bottom: 0;
}

.select.-multiple .select__options>* {
  padding: 8px 0 !important;
  background-color: transparent !important;
}

.dropdown {
  cursor: pointer;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .dropdown {
    position: unset !important;
  }
}

.dropdown.-type-1 .dropdown__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  outline: 1px solid transparent;
  transition: .1s;
}

.dropdown.-type-1 .dropdown__button:hover {
  outline: 2px solid var(--color-border);
}

.dropdown.-type-1 .dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 220px;
  background-color: white;
  box-shadow: 0px 10px 40px 0px #0000000D;
  padding: 10px 0;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: .15s;
}

.dropdown.-type-1 .dropdown__item {
  cursor: pointer;
  padding: 12px 30px;
  transition: .1s;
}

.dropdown.-type-1 .dropdown__item:hover {
  background-color: var(--color-border);
}

.dropdown.is-active {
  z-index: 20;
}

.dropdown.is-active .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
}

h1,
h2,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-accent-1);
  /* font-family: var(--font-secondary); */
  margin: 0;
}

h3 {
  color: #ed4109;
}

.text-9 {
  font-size: var(--text-9) !important;
}

.text-11 {
  font-size: var(--text-11) !important;
}

.text-13 {
  font-size: var(--text-13) !important;
}

.text-15 {
  font-size: var(--text-15) !important;
}

.text-17 {
  font-size: var(--text-17) !important;
}

.text-21 {
  font-size: var(--text-21) !important;
}

.text-24 {
  font-size: var(--text-24) !important;
}

.text-26 {
  font-size: 26px;
}

.text-28 {
  font-size: 28px;
}

.text-30 {
  font-size: var(--text-30) !important;
}

.text-40 {
  font-size: var(--text-40) !important;
}

.text-44 {
  font-size: var(--text-44) !important;
}

.text-50 {
  font-size: var(--text-50) !important;
}

.text-52 {
  font-size: var(--text-52) !important;
}

.text-60 {
  font-size: var(--text-60) !important;
}

.text-64 {
  font-size: var(--text-64) !important;
}

.text-72 {
  font-size: var(--text-72) !important;
}

.text-92 {
  font-size: var(--text-92) !important;
}

@media (max-width: 1199px) {
  .xl\:text-9 {
    font-size: var(--text-9) !important;
  }

  .xl\:text-11 {
    font-size: var(--text-11) !important;
  }

  .xl\:text-13 {
    font-size: var(--text-13) !important;
  }

  .xl\:text-15 {
    font-size: var(--text-15) !important;
  }

  .xl\:text-17 {
    font-size: var(--text-17) !important;
  }

  .xl\:text-21 {
    font-size: var(--text-21) !important;
  }

  .xl\:text-24 {
    font-size: var(--text-24) !important;
  }

  .xl\:text-30 {
    font-size: var(--text-30) !important;
  }

  .xl\:text-40 {
    font-size: var(--text-40) !important;
  }

  .xl\:text-44 {
    font-size: var(--text-44) !important;
  }

  .xl\:text-50 {
    font-size: var(--text-50) !important;
  }

  .xl\:text-52 {
    font-size: var(--text-52) !important;
  }

  .xl\:text-60 {
    font-size: var(--text-60) !important;
  }

  .xl\:text-64 {
    font-size: var(--text-64) !important;
  }

  .xl\:text-72 {
    font-size: var(--text-72) !important;
  }

  .xl\:text-92 {
    font-size: var(--text-92) !important;
  }
}

@media (max-width: 991px) {
  .lg\:text-9 {
    font-size: var(--text-9) !important;
  }

  .lg\:text-11 {
    font-size: var(--text-11) !important;
  }

  .lg\:text-13 {
    font-size: var(--text-13) !important;
  }

  .lg\:text-15 {
    font-size: var(--text-15) !important;
  }

  .lg\:text-17 {
    font-size: var(--text-17) !important;
  }

  .lg\:text-21 {
    font-size: var(--text-21) !important;
  }

  .lg\:text-24 {
    font-size: var(--text-24) !important;
  }

  .lg\:text-30 {
    font-size: var(--text-30) !important;
  }

  .lg\:text-40 {
    font-size: var(--text-40) !important;
  }

  .lg\:text-50 {
    font-size: var(--text-50) !important;
  }

  .lg\:text-44 {
    font-size: var(--text-44) !important;
  }

  .lg\:text-52 {
    font-size: var(--text-52) !important;
  }

  .lg\:text-60 {
    font-size: var(--text-60) !important;
  }

  .lg\:text-64 {
    font-size: var(--text-64) !important;
  }

  .lg\:text-72 {
    font-size: var(--text-72) !important;
  }

  .lg\:text-92 {
    font-size: var(--text-92) !important;
  }
}

@media (max-width: 767px) {
  .md\:text-9 {
    font-size: var(--text-9) !important;
  }

  .md\:text-11 {
    font-size: var(--text-11) !important;
  }

  .md\:text-13 {
    font-size: var(--text-13) !important;
  }

  .md\:text-15 {
    font-size: var(--text-15) !important;
  }

  .md\:text-17 {
    font-size: var(--text-17) !important;
  }

  .md\:text-21 {
    font-size: var(--text-21) !important;
  }

  .md\:text-24 {
    font-size: var(--text-24) !important;
  }

  .md\:text-30 {
    font-size: var(--text-30) !important;
  }

  .md\:text-40 {
    font-size: var(--text-40) !important;
  }

  .md\:text-44 {
    font-size: var(--text-44) !important;
  }

  .md\:text-50 {
    font-size: var(--text-50) !important;
  }

  .md\:text-52 {
    font-size: var(--text-52) !important;
  }

  .md\:text-60 {
    font-size: var(--text-60) !important;
  }

  .md\:text-64 {
    font-size: var(--text-64) !important;
  }

  .md\:text-72 {
    font-size: var(--text-72) !important;
  }

  .md\:text-92 {
    font-size: var(--text-92) !important;
  }
}

@media (max-width: 575px) {
  .sm\:text-9 {
    font-size: var(--text-9) !important;
  }

  .sm\:text-11 {
    font-size: var(--text-11) !important;
  }

  .sm\:text-13 {
    font-size: var(--text-13) !important;
  }

  .sm\:text-15 {
    font-size: var(--text-15) !important;
  }

  .sm\:text-17 {
    font-size: var(--text-17) !important;
  }

  .sm\:text-21 {
    font-size: var(--text-21) !important;
  }

  .sm\:text-24 {
    font-size: var(--text-24) !important;
  }

  .sm\:text-30 {
    font-size: var(--text-30) !important;
  }

  .sm\:text-40 {
    font-size: var(--text-40) !important;
  }

  .sm\:text-44 {
    font-size: var(--text-44) !important;
  }

  .sm\:text-50 {
    font-size: var(--text-50) !important;
  }

  .sm\:text-52 {
    font-size: var(--text-52) !important;
  }

  .sm\:text-60 {
    font-size: var(--text-60) !important;
  }

  .sm\:text-64 {
    font-size: var(--text-64) !important;
  }

  .sm\:text-72 {
    font-size: var(--text-72) !important;
  }

  .sm\:text-92 {
    font-size: var(--text-92) !important;
  }
}

@media (max-width: 479px) {
  .xs\:text-9 {
    font-size: var(--text-9) !important;
  }

  .xs\:text-11 {
    font-size: var(--text-11) !important;
  }

  .xs\:text-13 {
    font-size: var(--text-13) !important;
  }

  .xs\:text-15 {
    font-size: var(--text-15) !important;
  }

  .xs\:text-17 {
    font-size: var(--text-17) !important;
  }

  .xs\:text-21 {
    font-size: var(--text-21) !important;
  }

  .xs\:text-24 {
    font-size: var(--text-24) !important;
  }

  .xs\:text-30 {
    font-size: var(--text-30) !important;
  }

  .xs\:text-40 {
    font-size: var(--text-40) !important;
  }

  .xs\:text-44 {
    font-size: var(--text-44) !important;
  }

  .xs\:text-50 {
    font-size: var(--text-50) !important;
  }

  .xs\:text-52 {
    font-size: var(--text-52) !important;
  }

  .xs\:text-60 {
    font-size: var(--text-60) !important;
  }

  .xs\:text-64 {
    font-size: var(--text-64) !important;
  }

  .xs\:text-72 {
    font-size: var(--text-72) !important;
  }

  .xs\:text-92 {
    font-size: var(--text-92) !important;
  }
}

.lh-065 {
  line-height: 0.65 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-17 {
  line-height: 1.7 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-19 {
  line-height: 1.9 !important;
}

.lh-2 {
  line-height: 2 !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (max-width: 1199px) {
  .xl\:text-center {
    text-align: center !important;
  }

  .xl\:text-right {
    text-align: right !important;
  }

  .xl\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 991px) {
  .lg\:text-center {
    text-align: center !important;
  }

  .lg\:text-right {
    text-align: right !important;
  }

  .lg\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .md\:text-center {
    text-align: center !important;
  }

  .md\:text-right {
    text-align: right !important;
  }

  .md\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .sm\:text-center {
    text-align: center !important;
  }

  .sm\:text-right {
    text-align: right !important;
  }

  .sm\:text-left {
    text-align: left !important;
  }
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.3s ease;
}

/* .header__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
} */



.header.-bottomMenu {
  flex-wrap: wrap;
}

.header.-bottomMenu.is-sticky>*:nth-child(2) {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.header.-mx-60 .header__container {
  margin: 0 60px;
}

.header.-mx-40 .header__container {
  margin: 0 40px;
}

@media (max-width: 767px) {
  .header.-mx-60 .header__container {
    margin: 0 10px;
  }
}

.header.-mx-110 .header__container {
  margin: 0 110px;
}

@media (max-width: 767px) {
  .header.-mx-110 .header__container {
    margin: 0 24px;
  }
}

.header.-h-90 {
  height: 90px;
}

@media (max-width: 575px) {
  .header.-h-90 {
    height: 74px;
  }
}

.header.-h-110 {
  height: 110px;
}

@media (max-width: 575px) {
  .header.-h-110 {
    height: 74px;
  }
}

.header.-h-160 {
  height: 160px;
}

.header.-h-180 {
  height: 180px;
}

.header.-blur {
  background-color: rgba(18, 34, 35, 0.01);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* .header.-border-bottom-1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */

.header.-border-bottom-2 {
  border-bottom: 1px solid var(--color-border);
}

.header.-border-bottom-3 {
  border-bottom: 1px solid #CFB89E;
}

.header.-light {
  background-color: rgba(255, 255, 255, 0.2);
}

.header.-is-menu-opened {
  background-color: var(--color-accent-1);
}

.header.is-sticky {
  margin: 0 !important;
  opacity: 0.9 !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  display: none;
}

.header.is-sticky .header__container {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.header.is-hidden-on-scroll {
  transform: translateY(-100%);
}

.header .desktopNav {
  display: flex;
  align-items: center;
}

.header .desktopNav>* {
  padding: 8px 15px;
}

.header .desktopNav__item {
  position: relative;
  border-radius: 100px;
}

.header .desktopNav__item>a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}

.header .desktopNav__item>a:hover {
  color: currentColor;
}

.header .desktopNav__item>a i {
  margin-left: 5px;
}

.header .desktopNav__item:hover>*:last-child {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.header .desktopNav .desktopNavSubnav {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  transition: .2s;
  opacity: 0;
  pointer-events: none;
}

.header .desktopNav .desktopNavSubnav a {
  color: white;
  font-size: 15px;
}

.header .desktopNav .desktopNavSubnav a:hover {
  color: var(--color-accent-2);
}

.header .desktopNav .desktopNavSubnav__content {
  background-color: var(--color-accent-1);
  min-width: 300px;
  padding: 30px;
}

.header .desktopNav .desktopNavSubnav__content>*+* {
  padding-top: 12px;
}

.header .desktopNav .desktopNavSubnav__content.-col-3 {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 100px;
  padding: 50px;
}

.header .desktopNav .desktopNavSubnav__content.-col-3>*+* {
  padding-top: 0;
}

.header .desktopNav .desktopNavSubnav__content.-col-3>*>*+* {
  padding-top: 12px;
}

.header .desktopNav .desktopNavSubnav__item {
  position: relative;
}

.header .desktopNav .desktopNavSubnav__item>.desktopNavSubnav {
  top: 0;
  left: 100%;
}

.header .desktopNav .desktopNavSubnav__item:hover>.desktopNavSubnav {
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (min-width: 1200px) {
  .header .header-menu {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header .header-menu {
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: calc(100vh - 72px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    pointer-events: none;
  }

  .header .header-menu.is-menu-active {
    opacity: 1;
    pointer-events: auto;
  }

  .header .header-menu.is-menu-active .-is-active {
    pointer-events: auto !important;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .header .header-menu .mega {
    display: none;
  }

  .header .header-menu ul {
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .header .header-menu__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .header .header-menu .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
  }

  .header .header-menu .mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-accent-1);
  }

  .header .header-menu .menu {
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    height: 100%;
    padding: 20px;
    padding-top: 40px;
  }

  .header .header-menu .menu ul {
    pointer-events: none;
  }

  .header .header-menu .menu li {
    overflow: hidden;
  }

  .header .header-menu .menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .header .header-menu .menu a .icon {
    font-size: 8px;
    transform: rotate(-90deg);
  }

  .header .header-menu .menu a:hover {
    color: white;
  }

  .header .header-menu .menu__nav {
    display: flex;
    flex-direction: column;
  }

  .header .header-menu .menu__nav>li>a {
    /* font-family: var(--font-secondary); */
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    line-height: 1;
    padding: 15px 0;
  }

  .header .header-menu .menu .subnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 40px;
  }

  .header .header-menu .menu .subnav li {
    padding: 0 20px;
  }

  .header .header-menu .menu .subnav a {
    height: 40px;
    font-size: 17px;
    padding: 0 20px;
    transform: translateY(100%);
  }

  .header .header-menu .menu .subnav__backBtn {
    margin-bottom: 20px;
  }

  .header .header-menu .menu .subnav__backBtn li {
    padding: 0;
  }

  .header .header-menu .menu .subnav__backBtn a {
    justify-content: flex-start;
    height: 50px;
    font-size: 20px;
    color: var(--color-blue-1);
  }

  .header .header-menu .menu .subnav__backBtn a .icon {
    margin-right: 12px;
    transform: rotate(90deg);
  }
}

.menuFullScreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 2000;
  pointer-events: none;
}

#offcanvas {
  opacity: 0;
  pointer-events: none;
  /* Prevent interaction when hidden */
  transition: opacity 0.3s ease-in-out;
}

#offcanvas.active {
  opacity: 1;
  pointer-events: auto;
  /* Enable interaction when visible */
}


.menuFullScreen__left {
  width: 100%;
  padding: 180px 60px;
}

.menuFullScreen__bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.menuFullScreen__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menuFullScreen__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  background-color: #242325e3;
  width: 50%;
}


.menuFullScreen__close {
  position: absolute;
  top: 42px;
  left: 20px;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
}

.menuFullScreen__close .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.menuFullScreen__close .icon span {
  background-color: white;
  height: 2px;
  width: 16px;
}

.menuFullScreen__close .icon span:nth-child(1) {
  transform: rotate(-45deg);
}

.menuFullScreen__close .icon span:nth-child(2) {
  position: absolute;
  transform: rotate(45deg);
}

/* 
.menuFullScreen.is-active {
  pointer-events: auto;
  opacity: 1;
} */

.menuFullScreen-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 420px;
}

@media (max-width: 1199px) {
  .menuFullScreen-links {
    width: 240px;
  }
}

.menuFullScreen-links a {
  color: rgb(255, 255, 255);
  line-height: 1;
}

.menuFullScreen-links__item {
  overflow: hidden;
}

.menuFullScreen-links__item .contactbtn:hover {
  color: #fff;
}

.menuFullScreen-links__item>a {
  display: flex;
  justify-content: space-between;
  font-size: 45px;
  /* font-family: var(--font-secondary); */
}

@media (max-width: 1199px) {
  .menuFullScreen-links__item>a {
    font-size: 42px;
  }
}

.menuFullScreen-links__item>a i {
  transition: all 0.3s;
  opacity: 0;
}

.menuFullScreen-links__item>a i:nth-child(1) {
  display: block;
}

.menuFullScreen-links__item>a i:nth-child(2) {
  display: none;
}

.menuFullScreen-links__item:hover i {
  opacity: 1;
}

.menuFullScreen-links__item:hover>.menuFullScreen-links-subnav {
  opacity: 1;
  pointer-events: auto;
}

.menuFullScreen-links-subnav {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  white-space: nowrap;
  padding-left: 200px;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 1199px) {
  .menuFullScreen-links-subnav {
    padding-left: 100px;
  }
}

.menuFullScreen-links-subnav__item a {
  font-size: 19px;
  font-weight: 400;
}

.menuFullScreen-links-subnav__item a:hover {
  text-decoration: underline;
}

.menuFullScreen__mobile__bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #242325;
  transform-origin: bottom;
}

@media (min-width: 992px) {
  .menuFullScreen__topMobile {
    display: none;
  }

  .menuFullScreen-links-subnav {
    min-height: 100%;
  }

  .menuFullScreen__bottomMobile {
    display: none;
  }

  .menuFullScreen__mobile__bg {
    display: none;
  }
}

@media (max-width: 991px) {
  .menuFullScreen {
    top: 0;
    height: 100vh;
    flex-direction: column;
  }

  .menuFullScreen__left {
    /* height: 100%; */
    overflow-y: scroll;
    padding: 6px 0px 0px 30px;
    margin: 15px 0;
  }

  .menuFullScreen__bg {
    display: none;
  }

  .menuFullScreen__right {
    display: none;
  }

  .menu-mobile {
    display: none !important;
  }

  .menuFullScreen-links {
    overflow-y: scroll;
    overflow-x: hidden;
    gap: 15px;
    width: 100%;
  }

  .menuFullScreen-links__item {
    position: relative;
  }

  .menuFullScreen-links__item>a {
    font-size: 24px;
  }

  .menuFullScreen-links__item>a i:nth-child(1) {
    display: none;
  }

  .menuFullScreen-links__item>a i:nth-child(2) {
    display: flex;
    font-size: 16px;
  }

  .menuFullScreen-links__item>a i {
    display: flex;
    align-items: center;
    opacity: 1;
  }

  .menuFullScreen-links__item>a.is-mobile-active i:nth-child(2) {
    transform: rotate(90deg);
  }

  .menuFullScreen-links__item:hover i {
    opacity: 1;
  }

  .menuFullScreen-links__item:hover>.menuFullScreen-links-subnav {
    opacity: 1;
    pointer-events: auto;
  }

  .menuFullScreen-links-subnav {
    overflow: hidden;
    position: relative;
    top: unset;
    left: unset;
    max-height: 0;
    padding-left: 0;
    pointer-events: none;
    opacity: 1;
  }

  .menuFullScreen-links-subnav>*:nth-child(1) {
    padding-top: 35px;
  }

  .menuFullScreen-links-subnav>*:last-child {
    padding-bottom: 10px;
  }

  .menuFullScreen-links-subnav__item {
    padding-left: 20px;
  }

  .menuFullScreen-links-subnav__item a {
    font-size: 17px;
  }

  .menuFullScreen__topMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    padding: 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menuFullScreen__topMobile>*:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) and (max-width: 575px) {
  .menuFullScreen__topMobile>*:nth-child(2) img {
    padding-top: 10px;
  }
}

@media (max-width: 991px) {
  .menuFullScreen__bottomMobile {
    flex-shrink: 0;
    color: white;
    padding: 0 30px;
    /* padding-bottom: 60px; */
  }
}

.footer.-type-1 {
  position: relative;
  z-index: 0;
}

.footer.-type-1 .footer__bg.-type-1>*:nth-child(1) {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 515px;
  z-index: -2;
}

.footer.-type-1 .footer__bg.-type-1>*:nth-child(2) {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  bottom: 60px;
  border-radius: 16px;
  z-index: -1;
}

.footer_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-item3 {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: baseline;
}

.copyright {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0px 20px;
  width: 80%;
  margin: auto;
}

@media (max-width: 1600px) {
  .footer.-type-1 .footer__bg.-type-1>*:nth-child(2) {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 1480px) {
  .footer.-type-1 .footer__bg.-type-1>*:nth-child(2) {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

/* .footer.-type-1 .footer__main {
  padding: 200px 0;
}

@media (max-width: 1199px) {
  .footer.-type-1 .footer__main {
    padding: 170px 0;
  }
}

@media (max-width: 991px) {
  .footer.-type-1 .footer__main {
    padding: 120px 0;
  }
}

@media (max-width: 575px) {
  .footer.-type-1 .footer__main {
    padding: 80px 0;
  }
} */

.footer.-type-1 .footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

/* @media (max-width: 1199px) {
  .footer.-type-1 .footer__grid {
    grid-template-columns: 1fr 1fr 280px 260px;
    gap: 40px;
  }
} */

@media (max-width: 991px) {
  .footer.-type-1 .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
  }
}

@media (max-width: 575px) {
  .footer.-type-1 .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer.-type-1 .footer__newsletter {
  position: relative;
  margin-top: 10px;
}

.footer.-type-1 .footer__newsletter input {
  width: 100%;
  height: 70px;
  background-color: transparent;
  border: 1px solid rgb(80 74 74 / 10%);
  padding: 0 25px;
  color: white;
}

.footer.-type-1 .footer__newsletter button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1;
}

.footer.-type-1 .footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .footer.-type-1 .footer__bottom {
    height: auto;
    padding: 60px 0;
  }
}

.footer.-type-1 .footer__bottom_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

@media (max-width: 767px) {
  .footer.-type-1 .footer__bottom_center {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
}

.footer.-type-1.-bg-1 {
  padding-bottom: 60px;
}

@media (max-width: 1480px) {
  .footer.-type-1.-bg-1 {
    padding-bottom: 0px;
  }
}

.footer.-type-1.-bottom-border-dark .footer__bottom {
  border-color: var(--color-border);
}

.footer.text-white a:hover {
  color: white;
}

.footer.-type-2 {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.footer.-type-2 .footer__main {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .footer.-type-2 .footer__main {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .footer.-type-2 .footer__main {
    padding: 60px 0;
  }
}

.footer.-type-2 .footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 120px;
}

@media (max-width: 1199px) {
  .footer.-type-2 .footer__grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .footer.-type-2 .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
  }
}

@media (max-width: 575px) {
  .footer.-type-2 .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer.-type-2 .footer__bottom {
  display: flex;
  align-items: center;
  height: 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .footer.-type-2 .footer__bottom {
    height: auto;
    padding: 60px 0;
  }
}

.footer.-type-2.-text-white {
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.-type-2.-text-white h4 {
  color: white;
}

.footer.-type-2.-text-white .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.-type-3 {
  position: relative;
  z-index: 0;
}

.footer.-type-3 .footer__links {
  padding: 40px 0;
}

.footer.-type-3 .footer__main {
  padding: 90px 0;
}

.footer.-type-3 .footer__logo img {
  width: 280px;
  max-width: 100%;
}

.footer.-type-3 .footer__newsletter {
  position: relative;
  margin-top: 10px;
}

.footer.-type-3 .footer__newsletter input {
  width: 100%;
  height: 70px;
  background-color: transparent;
  background-color: white;
  padding: 0 25px;
}

.footer.-type-3 .footer__newsletter button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1;
}

.footer.-type-3 .footer__bottom {
  display: flex;
  align-items: center;
  height: 125px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .footer.-type-3 .footer__bottom {
    height: auto;
    padding: 60px 0;
  }
}

.footer.-type-3.-bg-1 {
  padding-bottom: 60px;
}

@media (max-width: 1480px) {
  .footer.-type-3.-bg-1 {
    padding-bottom: 0px;
  }
}

.footer.-type-3.-bottom-border-dark .footer__bottom {
  border-color: var(--color-border);
}

.footer.-type-3.-borderGap {
  margin: 0 10px;
  margin-bottom: 10px;
}

.footer.-type-3.-borderGap .footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.text-8c8484 {
  color: #8c8484 !important;
}

.hero.-type-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 0;
}

.hero.-type-1 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero.-type-1 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero.-type-1 .hero__content {
    padding-top: 80px;
  }
}

.hero.-type-1 .hero__subtitle {
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-1 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-1 .hero__title {
  font-size: 65px;
}

.main-heading1 {
  font-family: "Imperial Script", cursive !important;
  font-size: 140px;
  position: relative;
  top: 60px;
}

.main-heading2 {
  font-family: "Anton", sans-serif !important;
  font-size: 90px;
  color: white;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .hero.-type-1 .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero.-type-1 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-1 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-1 .hero__arrow {
  position: absolute;
  bottom: 22px;
  right: 18px;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero.-type-1 .hero__arrow {
    display: none;
  }
}

.hero.-type-1 .hero__filter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .hero.-type-1 .hero__filter {
    position: relative;
    bottom: unset;
    transform: none;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    margin-top: 60px;
  }
}

.filterButtonMobile {
  border-radius: 200px;
  background: rgba(18, 34, 35, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
}

.hero.-type-2 {
  position: relative;
  padding-top: 160px;
}

@media (max-width: 991px) {
  .hero.-type-2 {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero.-type-2 {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .hero.-type-2 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

.hero.-type-2 .hero__bg {
  position: absolute;
  top: 0;
  bottom: 300px;
  left: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .hero.-type-2 .hero__bg {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero.-type-2 .hero__bg {
    bottom: 0;
  }
}

.hero.-type-2 .hero__title {
  font-size: 72px;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .hero.-type-2 .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero.-type-2 .hero__title {
    font-size: 52px;
  }
}

@media (max-width: 575px) {
  .hero.-type-2 .hero__title {
    font-size: 40px;
    line-height: 1.2;
  }
}

.hero.-type-2 .hero__filterButtonMobile {
  display: none;
}

@media (max-width: 991px) {
  .hero.-type-2 .hero__filterButtonMobile {
    display: block;
  }
}

.hero.-type-2 .hero__filter {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  z-index: 5;
}

@media (max-width: 991px) {
  .hero.-type-2 .hero__filter {
    display: none;
  }
}

.hero.-type-2 .hero__arrow {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero.-type-2 .hero__arrow {
    display: none;
  }
}

.hero.-type-2 .hero-slider {
  position: relative;
  margin: 0 110px;
  margin-top: -40px;
}

@media (max-width: 991px) {
  .hero.-type-2 .hero-slider {
    margin: 0 30px;
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .hero.-type-2 .hero-slider .swiper-wrapper .swiper-slide img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.real-moments {
  z-index: 0 !important;
}

.hero.-type-2 .hero-slider__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-2 .hero-slider__nav {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .hero.-type-2 .hero-slider__nav {
    left: 5px;
    right: 5px;
  }
}

.hero.-type-3 {
  position: relative;
  padding-top: 180px;
  padding-bottom: 130px;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero.-type-3 {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .hero.-type-3 {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .hero.-type-3 {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.hero.-type-3 .hero__content {
  position: relative;
  padding-top: 100px;
  z-index: 1;
}

.hero.-type-3 .hero__title {
  font-size: 92px;
  margin-right: -180px;
}

@media (max-width: 1199px) {
  .hero.-type-3 .hero__title {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .hero.-type-3 .hero__title {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .hero.-type-3 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-3 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-3 .hero__filterButtonMobile {
  display: none;
}

@media (max-width: 991px) {
  .hero.-type-3 .hero__filterButtonMobile {
    display: block;
  }
}

.hero.-type-3 .hero__filter {
  width: -moz-max-content;
  width: max-content;
}

@media (max-width: 1199px) {
  .hero.-type-3 .hero__filter {
    width: 100%;
  }

  .hero.-type-3 .hero__filter>* {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .hero.-type-3 .hero__filter {
    display: none;
  }
}

.hero.-type-3 .hero__arrow {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero.-type-3 .hero__arrow {
    display: none;
  }
}

.hero.-type-3 .hero-slider {
  position: relative;
  overflow: hidden;
  height: 650px !important;
  z-index: 0;
}

@media (max-width: 1199px) {
  .hero.-type-3 .hero-slider {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero.-type-3 .hero-slider {
    height: 340px !important;
  }
}

.hero.-type-3 .hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-3 .hero-slider__image {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero.-type-3 .hero-slider__image {
    width: 100%;
  }
}

.hero.-type-3 .hero-slider__nav {
  width: unset;
}

.hero.-type-4 {
  padding-top: 185px;
}

@media (max-width: 991px) {
  .hero.-type-4 {
    padding-top: 140px;
  }
}

@media (max-width: 767px) {
  .hero.-type-4 {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

.hero.-type-4 .hero__title {
  font-size: 92px;
}

@media (max-width: 991px) {
  .hero.-type-4 .hero__title {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .hero.-type-4 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-4 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-5 {
  position: relative;
  z-index: 0;
}

.hero.-type-5 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero.-type-5 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-5 .hero__content {
  position: relative;
  min-height: 100vh;
  padding-top: 310px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .hero.-type-5 .hero__content {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-bottom: 180px;
  }
}

.hero.-type-5 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-5 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero__title {
  position: relative;
  top: 74px;
}

.g-10 {
  gap: 10px;
}

.pro-box {
  background-color: white;
  padding: 10px 0px 0px 0px;
}

.hero.-type-5 .hero__filter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 767px) {
  .hero.-type-5 .hero__filter {
    bottom: 20px;
    left: unset;
    transform: none;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
}

.hero.-type-6 {
  position: relative;
  margin-top: 110px;
  padding-top: 220px;
  padding-bottom: 180px;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero.-type-6 {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .hero.-type-6 {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}

@media (max-width: 575px) {
  .hero.-type-6 {
    margin-top: 74px;
  }
}

.hero.-type-6 .hero__bg {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 100%;
  z-index: -1;
}

@media (max-width: 991px) {
  .hero.-type-6 .hero__bg {
    left: 15px;
    right: 15px;
  }
}

.hero.-type-6 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.hero.-type-6 .hero__content {
  padding: 0 15px;
}

.hero.-type-6 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-6 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-6 .hero__title {
  font-size: 92px;
}

@media (max-width: 991px) {
  .hero.-type-6 .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero.-type-6 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-6 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-6 .hero__filter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .hero.-type-6 .hero__filter {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 0 40px;
    margin-top: 30px;
  }
}

.hero.-type-7 {
  position: relative;
  z-index: 0;
}

.hero.-type-7 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.hero.-type-7 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-7 .hero__content {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

@media (max-width: 575px) {
  .hero.-type-7 .hero__content {
    padding: 0 20px;
  }
}

.hero.-type-7 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-7 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-7 .hero__title {
  font-size: 92px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero.-type-7 .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero.-type-7 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-7 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-7 .hero__pagination {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 1;
}

.hero.-type-7 .hero__nav {
  padding: 0 60px;
}

@media (max-width: 767px) {
  .hero.-type-7 .hero__nav {
    top: unset;
    transform: unset;
    bottom: 20px;
    padding: 0 20px;
  }
}

.hero.-type-8 {
  position: relative;
  z-index: 1;
}

.hero.-type-8 .hero__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

@media (max-width: 1199px) {
  .hero.-type-8 .hero__slide {
    padding-top: 280px;
    padding-bottom: 240px;
  }
}

@media (max-width: 575px) {
  .hero.-type-8 .hero__slide {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero.-type-8 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.hero.-type-8 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero.-type-8 .hero__content {
    padding-bottom: 120px;
  }
}

.hero.-type-8 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-8 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-8 .hero__title {
  font-size: 92px;
}

@media (max-width: 767px) {
  .hero.-type-8 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-8 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-8 .hero__nav {
  padding: 0 60px;
}

@media (max-width: 767px) {
  .hero.-type-8 .hero__nav {
    top: unset;
    transform: unset;
    bottom: 60px;
    padding: 0 20px;
  }
}

.hero.-type-8 .hero__filter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 767px) {
  .hero.-type-8 .hero__filter {
    bottom: 30px;
    width: calc(100% - 40px);
  }
}

.hero.-type-9 {
  position: relative;
  z-index: 0;
}

.hero.-type-9 .hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 20px);
  margin: 10px;
}

.hero.-type-9 .hero__bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 16px;
  z-index: -1;
}

.hero.-type-9 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-9 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-9 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-9 .hero__title {
  font-size: 92px;
}

@media (max-width: 767px) {
  .hero.-type-9 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-9 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-9 .hero__nav {
  padding: 0 60px;
  z-index: 5;
}

@media (max-width: 767px) {
  .hero.-type-9 .hero__nav {
    top: unset;
    transform: none;
    bottom: 20px;
    padding: 0 20px;
  }
}

.hero.-type-9 .hero__pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
}

.hero.-type-10 {
  position: relative;
  z-index: 0;
}

.hero.-type-10 .hero__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 320px;
  padding-bottom: 270px;
}

@media (max-width: 1199px) {
  .hero.-type-10 .hero__slide {
    padding-top: 280px;
    padding-bottom: 240px;
  }
}

@media (max-width: 575px) {
  .hero.-type-10 .hero__slide {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero.-type-10 .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.hero.-type-10 .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero.-type-10 .hero__pattern img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero.-type-10 .hero__content {
  padding: 0 20px;
}

.hero.-type-10 .hero__subtitle {
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero.-type-10 .hero__subtitle {
    margin-bottom: 20px;
  }
}

.hero.-type-10 .hero__title {
  font-size: 92px;
}

@media (max-width: 991px) {
  .hero.-type-10 .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero.-type-10 .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero.-type-10 .hero__title {
    font-size: 36px;
  }
}

.hero.-type-10 .hero__pagination {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  z-index: 1;
}

.hero.-type-10 .hero__nav {
  padding: 0 60px;
}

@media (max-width: 767px) {
  .hero.-type-10 .hero__nav {
    top: unset;
    transform: unset;
    bottom: 60px;
    padding: 0 20px;
  }
}

.pageHero.-type-1 {
  position: relative;
  height: 760px;
  padding-top: 260px;
  z-index: 0;
}

@media (max-width: 767px) {
  .pageHero.-type-1 {
    height: auto;
    padding-top: 220px;
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .pageHero.-type-1 {
    padding-top: 120px;
  }
}

.pageHero.-type-1 .pageHero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.pageHero.-type-1 .pageHero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pageHero.-type-1 .pageHero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pageHero.-type-1 .pageHero__title {
  font-size: 92px;
  line-height: 0.65;
}

@media (max-width: 991px) {
  .pageHero.-type-1 .pageHero__title {
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .pageHero.-type-1 .pageHero__title {
    font-size: 68px;
  }
}

@media (max-width: 575px) {
  .pageHero.-type-1 .pageHero__title {
    font-size: 50px;
  }
}

.pageHero.-type-1 .pageHero__text {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .pageHero.-type-1 .pageHero__text {
    margin-top: 30px;
  }
}

.pageHero.-type-1 .pageHero__filter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .pageHero.-type-1 .pageHero__filter {
    position: relative;
    bottom: unset;
    left: unset;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .pageHero.-type-1.-items-center {
    height: auto;
    padding-top: 180px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .pageHero.-type-1.-items-center {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

.pageHero.-type-2 {
  position: relative;
  display: flex;
  align-items: center;
  height: 960px;
  z-index: 0;
}

@media (max-width: 767px) {
  .pageHero.-type-2 {
    /* height: auto; */
    padding-top: 220px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .pageHero.-type-2 {
    padding-top: 180px;
  }
}

.pageHero.-type-2 .pageHero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pageHero.-type-2 .pageHero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pageHero.-type-2 .pageHero__subtitle {
  font-weight: 500;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .pageHero.-type-2 .pageHero__subtitle {
    margin-bottom: 30px;
  }
}

.pageHero.-type-2 .pageHero__title {
  font-size: 92px;
  line-height: 0.65;
}

@media (max-width: 991px) {
  .pageHero.-type-2 .pageHero__title {
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .pageHero.-type-2 .pageHero__title {
    font-size: 68px;
  }
}

@media (max-width: 575px) {
  .pageHero.-type-2 .pageHero__title {
    font-size: 50px;
  }
}

.pageHero.-type-2 .pageHero__text {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .pageHero.-type-2 .pageHero__text {
    margin-top: 30px;
  }
}

.pagination.-type-1 {
  display: flex;
  align-items: center;
}

.pagination.-type-1 .pagination__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0 13px;
  z-index: 0;
  transition: all 0.1s ease-out;
  opacity: 0.2;
}

@media (max-width: 575px) {
  .pagination.-type-1 .pagination__item {
    width: 8px;
    height: 8px;
    margin: 0 8px;
  }
}

.pagination.-type-1 .pagination__item::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid currentColor;
  z-index: -1;
  transition: all 0.1s ease-out;
  opacity: 0;
}

@media (max-width: 575px) {
  .pagination.-type-1 .pagination__item::before {
    width: 24px;
    height: 24px;
  }
}

.pagination.-type-1 .pagination__item.is-active {
  margin: 0 20px;
  opacity: 1;
}

.pagination.-type-1 .pagination__item.is-active::before {
  opacity: 1;
}

.pagination.-type-1.-light .pagination__item {
  background-color: #ed4109;
}

.pagination.-type-1.-light .pagination__item::before {
  border: 1px solid #ed4109;
}

.pagination.-type-1.-accent-1 .pagination__item {
  background-color: var(--color-accent-1);
}

.pagination.-type-1.-accent-1 .pagination__item::before {
  border: 1px solid var(--color-accent-1);
}

.pagination.-type-1.-absolute {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.testimonialsPagination.-type-1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -18px;
}

@media (max-width: 767px) {
  .testimonialsPagination.-type-1 {
    margin: -12px;
  }
}

.testimonialsPagination.-type-1>* {
  padding: 18px;
}

@media (max-width: 767px) {
  .testimonialsPagination.-type-1>* {
    padding: 12px;
  }
}

.testimonialsPagination.-type-1 .testimonialsPagination__item {
  cursor: pointer;
}

.testimonialsPagination.-type-1 .testimonialsPagination__item>* {
  position: relative;
}

.testimonialsPagination.-type-1 .testimonialsPagination__item img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonialsPagination.-type-1 .testimonialsPagination__item.is-active>*::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -11px;
  bottom: -11px;
  right: -11px;
  left: -11px;
  border-radius: 100%;
  border: 2px solid var(--color-accent-1);
}

.testimonialsPagination.-type-1.-blue .testimonialsPagination__item.is-active>*::after {
  border: 2px solid var(--color-accent-2);
}

.pagination.-type-2 {
  display: flex;
  align-items: center;
}

.pagination.-type-2 .pagination__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid var(--border, #E7E6E6);
  font-size: 15px;
}

.pagination.-type-2 .pagination__count {
  display: flex;
  align-items: center;
}

.pagination.-type-2 .pagination__count>* {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-weight: 500;
}

.pagination.-type-2 .pagination__count>*.is-active {
  color: white !important;
  background-color: var(--color-accent-1) !important;
}

.pagination.-type-2 .pagination__count>*:hover {
  background-color: #F5F5F5;
  color: var(--color-dark-1);
}

.pagination.-type-2 .pagination__count>*+* {
  margin-left: 15px;
}

.pagination.-type-number {
  display: grid;
  gap: 15px;
}

.pagination.-type-number .pagination__item {
  display: flex;
  align-items: center;
  color: white;
  font-size: 17px;
  font-weight: 500;
  opacity: 0.5;
}

.pagination.-type-number .pagination__item::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: white;
  transform-origin: right;
  margin-left: 15px;
  transition: all 0.2s;
}

.pagination.-type-number .pagination__item:last-child::after {
  display: none;
}

.pagination.-type-number .pagination__item.is-active {
  opacity: 1;
}

.pagination.-type-number .pagination__item.is-active::after {
  width: 50px;
}

.pagination.-type-progress {
  position: relative;
  height: 2px;
  z-index: 5;
}

.pagination.-type-progress .swiper-pagination-progressbar-fill {
  background-color: white;
}

.sidebar.-blog {
  width: 360px;
  max-width: 100%;
}

.sidebar.-blog .sidebar__item+* {
  margin-top: 60px;
}

.sidebar.-blog .sidebar-search {
  position: relative;
  width: 100%;
}

.sidebar.-blog .sidebar-search>i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar.-blog .sidebar-search>input {
  width: 100%;
  height: 62px;
  border: 1px solid var(--color-border);
  padding: 0 20px;
  padding-right: 46px;
}

.sidebar.-blog .sidebar-tags {
  flex-wrap: wrap;
}

.sidebar.-blog .sidebar-tags>* a {
  display: block;
  line-height: 1;
  padding: 15px 20px;
  background-color: var(--color-light-1);
}

.tabs__content {
  position: relative;
}

.tabs__pane {
  position: absolute;
  top: 0;
  visibility: hidden;
  transition: none;
  opacity: 0;
}

.tabs__pane.is-tab-el-active {
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  position: relative;
  opacity: 1;
  visibility: visible;
}

.tabs.-underline-1 .tabs__controls .tabs__button {
  position: relative;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-underline-1 .tabs__controls .tabs__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent-1);
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tabs.-underline-1 .tabs__controls .tabs__button.is-tab-el-active::after {
  opacity: 1;
}

.tabs.-underline-2 .tabs__controls {
  position: relative;
}

.tabs.-underline-2 .tabs__controls::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.tabs.-underline-2 .tabs__controls .tabs__button {
  position: relative;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-underline-2 .tabs__controls .tabs__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-1);
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active::after {
  opacity: 1;
}

.tabs.-type-1 .tabs__controls .tabs__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-type-1 .tabs__controls .tabs__button.is-tab-el-active {
  text-decoration: underline;
}

.accordion__icon {
  position: relative;
}

.accordion__icon .icon {
  transition: all 0.2s ease-out;
}

.accordion__icon .icon:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.accordion__icon .icon:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon>*:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon>*:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion__button {
  cursor: pointer;
}

.accordion.-type-1 .accordion__item {
  transition: all 0.2s ease-out;
}

.accordion.-type-1 .accordion__button {
  cursor: pointer;
  transition: 0.4s;
}

.accordion.-type-1 .accordion__icon {
  transition: all 0.2s ease-out;
}

.accordion.-type-1 .accordion__icon>*:nth-child(1) {
  position: absolute;
  transition: all 0.2s ease-out;
}

.accordion.-type-1 .accordion__icon>*:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 0.2s ease-out;
}

.accordion.-type-1 .accordion__item.is-active .accordion__icon>*:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-type-1 .accordion__item.is-active .accordion__icon>*:nth-child(2) {
  transform: none;
  opacity: 1;
}

.searchForm.-type-1 {
  display: flex;
  padding: 10px;
  height: 70px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

@media (max-width: 767px) {
  .searchForm.-type-1 {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0;
    border-radius: 12px !important;
  }
}

.searchForm.-type-1 .searchForm__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  padding: 10px 0;
  width: 100%;
}

@media (max-width: 767px) {
  .searchForm.-type-1 .searchForm__form {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .searchForm.-type-1 .searchForm__form>*+* {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.searchForm.-type-1 .searchForm__button {
  flex-shrink: 0;
}

.searchForm.-type-1 .searchForm__button button {
  height: 100%;
}

@media (max-width: 767px) {
  .searchForm.-type-1 .searchForm__button button {
    height: 60px;
    width: 100%;
    border-radius: 0 0 12px 12px !important;
  }
}

.searchForm.-type-1 .searchFormItem {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 30px;
  width: 100%;
}

@media (max-width: 767px) {
  .searchForm.-type-1 .searchFormItem {
    padding: 24px 30px;
  }
}

.searchForm.-type-1 .searchFormItem+* {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.searchForm.-type-1 .searchFormItem__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
}

.searchForm.-type-1 .searchFormItem__button>*:nth-child(1) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 160px;
}

@media (max-width: 1199px) {
  .searchForm.-type-1 .searchFormItem__button>*:nth-child(1) {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .searchForm.-type-1 .searchFormItem__button>*:nth-child(1) {
    width: 100%;
  }
}

.searchForm.-type-1 .searchFormItemDropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  padding-top: 10px;
  z-index: 5;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .searchForm.-type-1 .searchFormItemDropdown {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
    padding-top: 0;
  }
}

.searchForm.-type-1 .searchFormItemDropdown.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.searchForm.-type-1 .searchFormItemDropdown__container {
  border-radius: 24px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  background-color: var(--color-accent-2);
}

.searchForm.-type-1 .searchFormItemDropdown.-counter {
  left: -20px;
}

.searchForm.-type-1 .searchFormItemDropdown.-counter .searchFormItemDropdown__container {
  width: 400px;
  max-width: calc(100vw - 14px);
  padding: 30px;
}

.searchForm.-type-1 .searchFormItemDropdown.-counter .searchFormItemDropdown__list {
  display: flex;
  flex-direction: column;
}

.searchForm.-type-1 .searchFormItemDropdown.-counter .searchFormItemDropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.searchForm.-type-1 .searchFormItemDropdown.-counter .searchFormItemDropdown__item+* {
  border-top: 1px solid rgba(18, 34, 35, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.searchForm.-type-1 .searchFormItemDropdown.-calendar .searchFormItemDropdown__container {
  width: 440px;
  max-width: calc(100vw - 14px);
  padding: 20px;
  min-height: 360px;
}

@media (max-width: 575px) {
  .searchForm.-type-1 .searchFormItemDropdown.-calendar .searchFormItemDropdown__container {
    width: calc(100vw - 14px);
  }
}

.searchForm.-type-1.-cols-2 .searchForm__form {
  grid-template-columns: repeat(2, 1fr);
  width: -moz-max-content;
  width: max-content;
}

@media (max-width: 767px) {
  .searchForm.-type-1.-cols-2 .searchForm__form {
    grid-template-columns: 1fr;
  }
}

.searchForm.-type-1.-text-white .searchFormItem__button {
  color: white;
}

.searchForm.-type-1.-blur-1 {
  background: rgba(18, 34, 35, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.searchForm.-type-1.-blur-2 {
  background: rgba(18, 34, 35, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.searchForm.-type-1.-h-95 {
  height: 95px;
}

@media (max-width: 767px) {
  .searchForm.-type-1.-h-95 {
    height: auto;
  }
}

.searchForm.-type-1.-h-60 {
  height: 60px;
  padding: 5px;
}

@media (max-width: 767px) {
  .searchForm.-type-1.-h-60 {
    height: auto;
  }
}

.searchForm.-type-1.-p-20 {
  padding: 20px;
}

@media (max-width: 767px) {
  .searchForm.-type-1.-p-20 {
    padding: unset;
  }
}

.searchForm.-type-1.-verticalBorder .searchForm__form>*+* {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .searchForm.-type-1.-verticalBorder .searchForm__form>*+* {
    border-left: 0;
  }
}

.searchForm.-type-1.-dropdown-single {
  padding: 0;
  width: 100%;
}

.searchForm.-type-1.-dropdown-single .searchForm__form {
  grid-template-columns: repeat(1, 1fr);
  border: 1px solid var(--color-border);
  outline: 1px solid transparent;
  transition: all 0.2s;
  width: 100%;
  padding: 0;
}

.searchForm.-type-1.-dropdown-single .searchForm__form:hover {
  outline: 1px solid var(--color-border);
}

.elCalendar__slider {
  overflow: hidden;
}

.elCalendar__sliderNav {
  position: absolute;
  top: 6px;
  z-index: 10;
}

.elCalendar__sliderNav.-prev {
  left: 8px;
}

.elCalendar__sliderNav.-next {
  right: 8px;
}

.elCalendar__month {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.elCalendar__header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  width: 100%;
}

.elCalendar__header__sell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .elCalendar__header__sell {
    width: 32px;
    height: 32px;
  }
}

.elCalendar__body {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  width: 100%;
}

.elCalendar__sell {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  transition: 0.2s;
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .elCalendar__sell {
    width: 32px;
    height: 32px;
  }
}

.elCalendar__sell.-dark {
  opacity: 0.4;
}

.elCalendar__sell:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.elCalendar__sell.-is-active {
  position: relative;
  background-color: var(--color-accent-1);
  color: white;
  z-index: 2;
}

.elCalendar__sell.-is-in-path {
  position: relative;
  color: var(--color-dark-1) !important;
  z-index: 0;
}

.elCalendar__sell.-is-in-path::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 100%;
  background-color: #ffe8d2;
  z-index: -2;
}

.searchMenu-date {
  position: relative;
}

.searchMenu-date .calendar-icon {
  position: absolute;
  top: 0;
  z-index: 10;
}

.searchMenu-date .calendar-icon.-left {
  left: 8px;
}

.searchMenu-date .calendar-icon.-right {
  right: 8px;
}

.baseCard.-type-1 {
  position: relative;
}

.baseCard.-type-1 .baseCard__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 1;
}

.baseCard.-type-1.-padding-lg .baseCard__content {
  padding: 60px;
}

.baseCard.-type-2 {
  position: relative;
}

.baseCard.-type-3 .baseCard__image {
  position: relative;
}

.baseCard.-type-3 .baseCard__badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 15px 10px;
  z-index: 1;
}

.baseCard.-type-4 {
  position: relative;
}

.baseCard.-type-4 .baseCard__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .baseCard.-type-4 .baseCard__content {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .baseCard.-type-4 .baseCard__content {
    padding: 30px;
  }
}

.baseCard.-type-4.-padding-lg .baseCard__content {
  padding: 60px;
}

.iconCard.-type-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iconCard.-type-1 .iconCard__icon {
  position: relative;
  display: flex;
  z-index: 0;
}

.iconCard.-type-1.-hover-1 .iconCard__icon__circle {
  position: absolute;
  top: -8px;
  left: -21px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: -1;
  transition: all 0.1s ease-out;
  opacity: 0;
}

.iconCard.-type-1.-hover-1:hover .iconCard__icon__circle {
  opacity: 1;
}

.iconCard.-type-1.-hover-2 {
  position: relative;
}

.iconCard.-type-1.-hover-2 .iconCard__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.1s ease-out;
  opacity: 0;
}

.iconCard.-type-1.-hover-2:hover .iconCard__bg {
  opacity: 1;
}

.imageCard.-type-1 .imageCard__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 960px;
  padding: 100px;
}

@media (max-width: 1199px) {
  .imageCard.-type-1 .imageCard__content {
    height: 720px;
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .imageCard.-type-1 .imageCard__content {
    height: 640px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .imageCard.-type-1 .imageCard__content {
    height: auto;
    padding: 40px 30px;
  }
}

.imageCard.-type-1.-hover-1 .-hover-1-slide {
  transition: all 0.3s ease-out;
}

.imageCard.-type-1.-hover-1 .-hover-1-content {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
  .imageCard.-type-1.-hover-1 .-hover-1-content {
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }
}

.imageCard.-type-1.-hover-1:hover .-hover-1-slide {
  transform: translateY(-230px);
}

@media (max-width: 767px) {
  .imageCard.-type-1.-hover-1:hover .-hover-1-slide {
    transform: none;
  }
}

.imageCard.-type-1.-hover-1:hover .-hover-1-content {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease-out 0.2s;
}

.-image-border .roomCard__image {
  position: relative;
  /* border-radius: 60px; */
}

.-image-border__item {
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 20px;
  left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.roomCard.-type-2 .roomCard__image {
  position: relative;
}

.roomCard.-type-2 .roomCard__image::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 20px;
  left: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.roomCard.-type-2 .roomCard__image.-no-rounded::after {
  border-radius: 0;
}

.roomCard.-type-2 .roomCard__image.-no-line::after {
  display: none;
}

.roomCard.-type-2 .roomCard__price {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 16px 0 16px 0;
  line-height: 0.65;
  padding: 15px 10px;
}

.roomCard.-type-3 {
  position: relative;
}

.roomCard.-type-3 .roomCard__image {
  position: relative;
}

.roomCard.-type-3 .roomCard__price {
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 16px 0 16px 0;
  line-height: 0.65;
  padding: 15px 10px;
}

.roomCard.-type-3 .roomCard__content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(18, 34, 35, 0) 0%, #122223 100%);
  width: 100%;
  z-index: 1;
}

.roomCard.-type-4 {
  position: relative;
}

.roomCard.-type-4 .roomCard__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  text-align: center;
  width: 450px;
  max-width: 100%;
  padding: 50px;
  transform: translateX(-50%);
}

body.is-cursor-active {
  cursor: none !important;
}

body.is-cursor-active * {
  cursor: none !important;
}

.cursor {
  position: fixed;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__follower {
  position: absolute;
  background-color: #888888;
  opacity: 0.25;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__arrows {
  position: absolute;
  display: flex;
  opacity: 0;
  transform: scale(0.7) rotate(40deg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__arrows>* {
  position: relative;
  color: black;
  stroke-width: 1;
}

.cursor__arrows>*:first-child {
  left: -10px;
}

.cursor__arrows>*:last-child {
  right: -10px;
}

.cursor__label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  letter-spacing: 0.05em;
  transform: scale(0);
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: scale(0);
  will-change: transform, opacity;
  transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1), opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 0.75;
}

.cursor {
  visibility: hidden;
}

.cursor.is-enabled {
  visibility: visible;
}

.cursor.is-hidden .cursor__wrapper {
  transform: scale(0) !important;
}

.cursor.is-mouse-down .cursor__wrapper {
  transform: scale(0.8);
}

.cursor.is-active .cursor__follower {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.7);
  transform: scale(3.6);
  opacity: 0.25;
}

.cursor.is-active.has-label .cursor__follower {
  background-color: black;
  opacity: 0.8;
}

.cursor.is-active.has-label .cursor__label {
  transform: scale(1);
}

.cursor.is-active.has-icon .cursor__follower {
  background-color: black;
  opacity: 0.8;
}

.cursor.is-active.has-icon .cursor__icon {
  transform: scale(1);
}

.nopage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 100px 0;
  z-index: 0;
}

.nopage__content h1 {
  font-size: 300px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 767px) {
  .nopage__content h1 {
    font-size: 100px;
  }
}

.nopage__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.nopage__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.py-74 {
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

.px-74 {
  padding-left: 74px !important;
  padding-right: 74px !important;
}

.pt-74 {
  padding-top: 74px !important;
}

.pb-74 {
  padding-bottom: 74px !important;
}

.pl-74 {
  padding-left: 74px !important;
}

.pr-74 {
  padding-right: 74px !important;
}

.mt-74 {
  margin-top: 74px !important;
}

.mb-74 {
  margin-bottom: 74px !important;
}

.ml-74 {
  margin-left: 74px !important;
}

.mr-74 {
  margin-right: 74px !important;
}

.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

.px-66 {
  padding: 26px 66px !important;
  font-size: 18px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

@media (max-width: 1199px) {
  .xl\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .xl\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .xl\:pt-0 {
    padding-top: 0px !important;
  }

  .xl\:pb-0 {
    padding-bottom: 0px !important;
  }

  .xl\:pl-0 {
    padding-left: 0px !important;
  }

  .xl\:pr-0 {
    padding-right: 0px !important;
  }

  .xl\:mt-0 {
    margin-top: 0px !important;
  }

  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }

  .xl\:ml-0 {
    margin-left: 0px !important;
  }

  .xl\:mr-0 {
    margin-right: 0px !important;
  }

  .xl\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .xl\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .xl\:pt-5 {
    padding-top: 5px !important;
  }

  .xl\:pb-5 {
    padding-bottom: 5px !important;
  }

  .xl\:pl-5 {
    padding-left: 5px !important;
  }

  .xl\:pr-5 {
    padding-right: 5px !important;
  }

  .xl\:mt-5 {
    margin-top: 5px !important;
  }

  .xl\:mb-5 {
    margin-bottom: 5px !important;
  }

  .xl\:ml-5 {
    margin-left: 5px !important;
  }

  .xl\:mr-5 {
    margin-right: 5px !important;
  }

  .xl\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .xl\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .xl\:pt-10 {
    padding-top: 10px !important;
  }

  .xl\:pb-10 {
    padding-bottom: 10px !important;
  }

  .xl\:pl-10 {
    padding-left: 10px !important;
  }

  .xl\:pr-10 {
    padding-right: 10px !important;
  }

  .xl\:mt-10 {
    margin-top: 10px !important;
  }

  .xl\:mb-10 {
    margin-bottom: 10px !important;
  }

  .xl\:ml-10 {
    margin-left: 10px !important;
  }

  .xl\:mr-10 {
    margin-right: 10px !important;
  }

  .xl\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .xl\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .xl\:pt-15 {
    padding-top: 15px !important;
  }

  .xl\:pb-15 {
    padding-bottom: 15px !important;
  }

  .xl\:pl-15 {
    padding-left: 15px !important;
  }

  .xl\:pr-15 {
    padding-right: 15px !important;
  }

  .xl\:mt-15 {
    margin-top: 15px !important;
  }

  .xl\:mb-15 {
    margin-bottom: 15px !important;
  }

  .xl\:ml-15 {
    margin-left: 15px !important;
  }

  .xl\:mr-15 {
    margin-right: 15px !important;
  }

  .xl\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .xl\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .xl\:pt-20 {
    padding-top: 20px !important;
  }

  .xl\:pb-20 {
    padding-bottom: 20px !important;
  }

  .xl\:pl-20 {
    padding-left: 20px !important;
  }

  .xl\:pr-20 {
    padding-right: 20px !important;
  }

  .xl\:mt-20 {
    margin-top: 20px !important;
  }

  .xl\:mb-20 {
    margin-bottom: 20px !important;
  }

  .xl\:ml-20 {
    margin-left: 20px !important;
  }

  .xl\:mr-20 {
    margin-right: 20px !important;
  }

  .xl\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .xl\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .xl\:pt-25 {
    padding-top: 25px !important;
  }

  .xl\:pb-25 {
    padding-bottom: 25px !important;
  }

  .xl\:pl-25 {
    padding-left: 25px !important;
  }

  .xl\:pr-25 {
    padding-right: 25px !important;
  }

  .xl\:mt-25 {
    margin-top: 25px !important;
  }

  .xl\:mb-25 {
    margin-bottom: 25px !important;
  }

  .xl\:ml-25 {
    margin-left: 25px !important;
  }

  .xl\:mr-25 {
    margin-right: 25px !important;
  }

  .xl\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .xl\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .xl\:pt-30 {
    padding-top: 30px !important;
  }

  .xl\:pt-28 {
    padding-top: 28px !important;
  }

  .xl\:pb-30 {
    padding-bottom: 30px !important;
  }

  .xl\:pl-30 {
    padding-left: 30px !important;
  }

  .xl\:pr-30 {
    padding-right: 30px !important;
  }

  .xl\:mt-30 {
    margin-top: 30px !important;
  }

  .xl\:mb-30 {
    margin-bottom: 30px !important;
  }

  .xl\:ml-30 {
    margin-left: 30px !important;
  }

  .xl\:mr-30 {
    margin-right: 30px !important;
  }

  .xl\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .xl\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .xl\:pt-35 {
    padding-top: 35px !important;
  }

  .xl\:pb-35 {
    padding-bottom: 35px !important;
  }

  .xl\:pl-35 {
    padding-left: 35px !important;
  }

  .xl\:pr-35 {
    padding-right: 35px !important;
  }

  .xl\:mt-35 {
    margin-top: 35px !important;
  }

  .xl\:mb-35 {
    margin-bottom: 35px !important;
  }

  .xl\:ml-35 {
    margin-left: 35px !important;
  }

  .xl\:mr-35 {
    margin-right: 35px !important;
  }

  .xl\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .xl\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .xl\:pt-40 {
    padding-top: 40px !important;
  }

  .xl\:pb-40 {
    padding-bottom: 40px !important;
  }

  .xl\:pl-40 {
    padding-left: 40px !important;
  }

  .xl\:pr-40 {
    padding-right: 40px !important;
  }

  .xl\:mt-40 {
    margin-top: 40px !important;
  }

  .xl\:mb-40 {
    margin-bottom: 40px !important;
  }

  .xl\:ml-40 {
    margin-left: 40px !important;
  }

  .xl\:mr-40 {
    margin-right: 40px !important;
  }

  .xl\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .xl\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .xl\:pt-50 {
    padding-top: 50px !important;
  }

  .xl\:pb-50 {
    padding-bottom: 50px !important;
  }

  .xl\:pl-50 {
    padding-left: 50px !important;
  }

  .xl\:pr-50 {
    padding-right: 50px !important;
  }

  .xl\:mt-50 {
    margin-top: 50px !important;
  }

  .xl\:mb-50 {
    margin-bottom: 50px !important;
  }

  .xl\:ml-50 {
    margin-left: 50px !important;
  }

  .xl\:mr-50 {
    margin-right: 50px !important;
  }

  .xl\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .xl\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .xl\:pt-60 {
    padding-top: 60px !important;
  }

  .xl\:pb-60 {
    padding-bottom: 60px !important;
  }

  .xl\:pl-60 {
    padding-left: 60px !important;
  }

  .xl\:pr-60 {
    padding-right: 60px !important;
  }

  .xl\:mt-60 {
    margin-top: 60px !important;
  }

  .xl\:mb-60 {
    margin-bottom: 60px !important;
  }

  .xl\:ml-60 {
    margin-left: 60px !important;
  }

  .xl\:mr-60 {
    margin-right: 60px !important;
  }

  .xl\:py-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }

  .xl\:px-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }

  .xl\:pt-74 {
    padding-top: 74px !important;
  }

  .xl\:pb-74 {
    padding-bottom: 74px !important;
  }

  .xl\:pl-74 {
    padding-left: 74px !important;
  }

  .xl\:pr-74 {
    padding-right: 74px !important;
  }

  .xl\:mt-74 {
    margin-top: 74px !important;
  }

  .xl\:mb-74 {
    margin-bottom: 74px !important;
  }

  .xl\:ml-74 {
    margin-left: 74px !important;
  }

  .xl\:mr-74 {
    margin-right: 74px !important;
  }

  .xl\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .xl\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }

  .xl\:pt-90 {
    padding-top: 90px !important;
  }

  .xl\:pb-90 {
    padding-bottom: 90px !important;
  }

  .xl\:pl-90 {
    padding-left: 90px !important;
  }

  .xl\:pr-90 {
    padding-right: 90px !important;
  }

  .xl\:mt-90 {
    margin-top: 90px !important;
  }

  .xl\:mb-90 {
    margin-bottom: 90px !important;
  }

  .xl\:ml-90 {
    margin-left: 90px !important;
  }

  .xl\:mr-90 {
    margin-right: 90px !important;
  }

  .xl\:py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .xl\:px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .xl\:pt-100 {
    padding-top: 100px !important;
  }

  .xl\:pb-100 {
    padding-bottom: 100px !important;
  }

  .xl\:pl-100 {
    padding-left: 100px !important;
  }

  .xl\:pr-100 {
    padding-right: 100px !important;
  }

  .xl\:mt-100 {
    margin-top: 100px !important;
  }

  .xl\:mb-100 {
    margin-bottom: 100px !important;
  }

  .xl\:ml-100 {
    margin-left: 100px !important;
  }

  .xl\:mr-100 {
    margin-right: 100px !important;
  }
}

@media (max-width: 991px) {
  .lg\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .lg\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .lg\:pt-0 {
    padding-top: 0px !important;
  }

  .lg\:pb-0 {
    padding-bottom: 0px !important;
  }

  .lg\:pl-0 {
    padding-left: 0px !important;
  }

  .lg\:pr-0 {
    padding-right: 0px !important;
  }

  .lg\:mt-0 {
    margin-top: 0px !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0px !important;
  }

  .lg\:ml-0 {
    margin-left: 0px !important;
  }

  .lg\:mr-0 {
    margin-right: 0px !important;
  }

  .lg\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .lg\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .lg\:pt-5 {
    padding-top: 5px !important;
  }

  .lg\:pb-5 {
    padding-bottom: 5px !important;
  }

  .lg\:pl-5 {
    padding-left: 5px !important;
  }

  .lg\:pr-5 {
    padding-right: 5px !important;
  }

  .lg\:mt-5 {
    margin-top: 5px !important;
  }

  .lg\:mb-5 {
    margin-bottom: 5px !important;
  }

  .lg\:ml-5 {
    margin-left: 5px !important;
  }

  .lg\:mr-5 {
    margin-right: 5px !important;
  }

  .lg\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .lg\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .lg\:pt-10 {
    padding-top: 10px !important;
  }

  .lg\:pb-10 {
    padding-bottom: 10px !important;
  }

  .lg\:pl-10 {
    padding-left: 10px !important;
  }

  .lg\:pr-10 {
    padding-right: 10px !important;
  }

  .lg\:mt-10 {
    margin-top: 10px !important;
  }

  .lg\:mb-10 {
    margin-bottom: 10px !important;
  }

  .lg\:ml-10 {
    margin-left: 10px !important;
  }

  .lg\:mr-10 {
    margin-right: 10px !important;
  }

  .lg\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .lg\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .lg\:pt-15 {
    padding-top: 15px !important;
  }

  .lg\:pb-15 {
    padding-bottom: 15px !important;
  }

  .lg\:pl-15 {
    padding-left: 15px !important;
  }

  .lg\:pr-15 {
    padding-right: 15px !important;
  }

  .lg\:mt-15 {
    margin-top: 15px !important;
  }

  .lg\:mb-15 {
    margin-bottom: 15px !important;
  }

  .lg\:ml-15 {
    margin-left: 15px !important;
  }

  .lg\:mr-15 {
    margin-right: 15px !important;
  }

  .lg\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .lg\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .lg\:pt-20 {
    padding-top: 20px !important;
  }

  .lg\:pb-20 {
    padding-bottom: 20px !important;
  }

  .lg\:pl-20 {
    padding-left: 20px !important;
  }

  .lg\:pr-20 {
    padding-right: 20px !important;
  }

  .lg\:mt-20 {
    margin-top: 20px !important;
  }

  .lg\:mb-20 {
    margin-bottom: 20px !important;
  }

  .lg\:ml-20 {
    margin-left: 20px !important;
  }

  .lg\:mr-20 {
    margin-right: 20px !important;
  }

  .lg\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .lg\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .lg\:pt-25 {
    padding-top: 25px !important;
  }

  .lg\:pb-25 {
    padding-bottom: 25px !important;
  }

  .lg\:pl-25 {
    padding-left: 25px !important;
  }

  .lg\:pr-25 {
    padding-right: 25px !important;
  }

  .lg\:mt-25 {
    margin-top: 25px !important;
  }

  .lg\:mb-25 {
    margin-bottom: 25px !important;
  }

  .lg\:ml-25 {
    margin-left: 25px !important;
  }

  .lg\:mr-25 {
    margin-right: 25px !important;
  }

  .lg\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .lg\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .lg\:pt-30 {
    padding-top: 30px !important;
  }

  .lg\:pt-28 {
    padding-top: 28px !important;
  }

  .lg\:pb-30 {
    padding-bottom: 30px !important;
  }

  .lg\:pl-30 {
    padding-left: 30px !important;
  }

  .lg\:pr-30 {
    padding-right: 30px !important;
  }

  .lg\:mt-30 {
    margin-top: 30px !important;
  }

  .lg\:mb-30 {
    margin-bottom: 30px !important;
  }

  .lg\:ml-30 {
    margin-left: 30px !important;
  }

  .lg\:mr-30 {
    margin-right: 30px !important;
  }

  .lg\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .lg\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .lg\:pt-35 {
    padding-top: 35px !important;
  }

  .lg\:pb-35 {
    padding-bottom: 35px !important;
  }

  .lg\:pl-35 {
    padding-left: 35px !important;
  }

  .lg\:pr-35 {
    padding-right: 35px !important;
  }

  .lg\:mt-35 {
    margin-top: 35px !important;
  }

  .lg\:mb-35 {
    margin-bottom: 35px !important;
  }

  .lg\:ml-35 {
    margin-left: 35px !important;
  }

  .lg\:mr-35 {
    margin-right: 35px !important;
  }

  .lg\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .lg\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .lg\:pt-40 {
    padding-top: 40px !important;
  }

  .lg\:pb-40 {
    padding-bottom: 40px !important;
  }

  .lg\:pl-40 {
    padding-left: 40px !important;
  }

  .lg\:pr-40 {
    padding-right: 40px !important;
  }

  .lg\:mt-40 {
    margin-top: 40px !important;
  }

  .lg\:mb-40 {
    margin-bottom: 40px !important;
  }

  .lg\:ml-40 {
    margin-left: 40px !important;
  }

  .lg\:mr-40 {
    margin-right: 40px !important;
  }

  .lg\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .lg\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .lg\:pt-50 {
    padding-top: 50px !important;
  }

  .lg\:pb-50 {
    padding-bottom: 50px !important;
  }

  .lg\:pl-50 {
    padding-left: 50px !important;
  }

  .lg\:pr-50 {
    padding-right: 50px !important;
  }

  .lg\:mt-50 {
    margin-top: 50px !important;
  }

  .lg\:mb-50 {
    margin-bottom: 50px !important;
  }

  .lg\:ml-50 {
    margin-left: 50px !important;
  }

  .lg\:mr-50 {
    margin-right: 50px !important;
  }

  .lg\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .lg\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .lg\:pt-60 {
    padding-top: 60px !important;
  }

  .lg\:pb-60 {
    padding-bottom: 60px !important;
  }

  .lg\:pl-60 {
    padding-left: 60px !important;
  }

  .lg\:pr-60 {
    padding-right: 60px !important;
  }

  .lg\:mt-60 {
    margin-top: 60px !important;
  }

  .lg\:mb-60 {
    margin-bottom: 60px !important;
  }

  .lg\:ml-60 {
    margin-left: 60px !important;
  }

  .lg\:mr-60 {
    margin-right: 60px !important;
  }

  .lg\:py-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }

  .lg\:px-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }

  .lg\:pt-74 {
    padding-top: 74px !important;
  }

  .lg\:pb-74 {
    padding-bottom: 74px !important;
  }

  .lg\:pl-74 {
    padding-left: 74px !important;
  }

  .lg\:pr-74 {
    padding-right: 74px !important;
  }

  .lg\:mt-74 {
    margin-top: 74px !important;
  }

  .lg\:mb-74 {
    margin-bottom: 74px !important;
  }

  .lg\:ml-74 {
    margin-left: 74px !important;
  }

  .lg\:mr-74 {
    margin-right: 74px !important;
  }

  .lg\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .lg\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }

  .lg\:pt-90 {
    padding-top: 90px !important;
  }

  .lg\:pb-90 {
    padding-bottom: 90px !important;
  }

  .lg\:pl-90 {
    padding-left: 90px !important;
  }

  .lg\:pr-90 {
    padding-right: 90px !important;
  }

  .lg\:mt-90 {
    margin-top: 90px !important;
  }

  .lg\:mb-90 {
    margin-bottom: 90px !important;
  }

  .lg\:ml-90 {
    margin-left: 90px !important;
  }

  .lg\:mr-90 {
    margin-right: 90px !important;
  }

  .lg\:py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .lg\:px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .lg\:pt-100 {
    padding-top: 100px !important;
  }

  .lg\:pb-100 {
    padding-bottom: 100px !important;
  }

  .lg\:pl-100 {
    padding-left: 100px !important;
  }

  .lg\:pr-100 {
    padding-right: 100px !important;
  }

  .lg\:mt-100 {
    margin-top: 100px !important;
  }

  .lg\:mb-100 {
    margin-bottom: 100px !important;
  }

  .lg\:ml-100 {
    margin-left: 100px !important;
  }

  .lg\:mr-100 {
    margin-right: 100px !important;
  }
}

@media (max-width: 767px) {
  .md\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .md\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .md\:pt-0 {
    padding-top: 0px !important;
  }

  .md\:pb-0 {
    padding-bottom: 0px !important;
  }

  .md\:pl-0 {
    padding-left: 0px !important;
  }

  .md\:pr-0 {
    padding-right: 0px !important;
  }

  .md\:mt-0 {
    margin-top: 0px !important;
  }

  .md\:mb-0 {
    margin-bottom: 0px !important;
  }

  .md\:ml-0 {
    margin-left: 0px !important;
  }

  .md\:mr-0 {
    margin-right: 0px !important;
  }

  .md\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .md\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .md\:pt-5 {
    padding-top: 5px !important;
  }

  .md\:pb-5 {
    padding-bottom: 5px !important;
  }

  .md\:pl-5 {
    padding-left: 5px !important;
  }

  .md\:pr-5 {
    padding-right: 5px !important;
  }

  .md\:mt-5 {
    margin-top: 5px !important;
  }

  .md\:mb-5 {
    margin-bottom: 5px !important;
  }

  .md\:ml-5 {
    margin-left: 5px !important;
  }

  .md\:mr-5 {
    margin-right: 5px !important;
  }

  .md\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .md\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .md\:pt-10 {
    padding-top: 10px !important;
  }

  .md\:pb-10 {
    padding-bottom: 10px !important;
  }

  .md\:pl-10 {
    padding-left: 10px !important;
  }

  .md\:pr-10 {
    padding-right: 10px !important;
  }

  .md\:mt-10 {
    margin-top: 10px !important;
  }

  .md\:mb-10 {
    margin-bottom: 10px !important;
  }

  .md\:ml-10 {
    margin-left: 10px !important;
  }

  .md\:mr-10 {
    margin-right: 10px !important;
  }

  .md\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .md\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .md\:pt-15 {
    padding-top: 15px !important;
  }

  .md\:pb-15 {
    padding-bottom: 15px !important;
  }

  .md\:pl-15 {
    padding-left: 15px !important;
  }

  .md\:pr-15 {
    padding-right: 15px !important;
  }

  .md\:mt-15 {
    margin-top: 15px !important;
  }

  .md\:mb-15 {
    margin-bottom: 15px !important;
  }

  .md\:ml-15 {
    margin-left: 15px !important;
  }

  .md\:mr-15 {
    margin-right: 15px !important;
  }

  .md\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .md\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .md\:pt-20 {
    padding-top: 20px !important;
  }

  .md\:pb-20 {
    padding-bottom: 20px !important;
  }

  .md\:pl-20 {
    padding-left: 20px !important;
  }

  .md\:pr-20 {
    padding-right: 20px !important;
  }

  .md\:mt-20 {
    margin-top: 20px !important;
  }

  .md\:mb-20 {
    margin-bottom: 20px !important;
  }

  .md\:ml-20 {
    margin-left: 20px !important;
  }

  .md\:mr-20 {
    margin-right: 20px !important;
  }

  .md\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .md\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .md\:pt-25 {
    padding-top: 25px !important;
  }

  .md\:pb-25 {
    padding-bottom: 25px !important;
  }

  .md\:pl-25 {
    padding-left: 25px !important;
  }

  .md\:pr-25 {
    padding-right: 25px !important;
  }

  .md\:mt-25 {
    margin-top: 25px !important;
  }

  .md\:mb-25 {
    margin-bottom: 25px !important;
  }

  .md\:ml-25 {
    margin-left: 25px !important;
  }

  .md\:mr-25 {
    margin-right: 25px !important;
  }

  .md\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .md\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .md\:pt-30 {
    padding-top: 30px !important;
  }

  .md\:pb-30 {
    padding-bottom: 30px !important;
  }

  .md\:pl-30 {
    padding-left: 30px !important;
  }

  .md\:pr-30 {
    padding-right: 30px !important;
  }

  .md\:mt-30 {
    margin-top: 30px !important;
  }

  .md\:mb-30 {
    margin-bottom: 30px !important;
  }

  .md\:ml-30 {
    margin-left: 30px !important;
  }

  .md\:mr-30 {
    margin-right: 30px !important;
  }

  .md\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .md\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .md\:pt-35 {
    padding-top: 35px !important;
  }

  .md\:pb-35 {
    padding-bottom: 35px !important;
  }

  .md\:pl-35 {
    padding-left: 35px !important;
  }

  .md\:pr-35 {
    padding-right: 35px !important;
  }

  .md\:mt-35 {
    margin-top: 35px !important;
  }

  .md\:mb-35 {
    margin-bottom: 35px !important;
  }

  .md\:ml-35 {
    margin-left: 35px !important;
  }

  .md\:mr-35 {
    margin-right: 35px !important;
  }

  .md\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .md\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .md\:pt-40 {
    padding-top: 40px !important;
  }

  .md\:pb-40 {
    padding-bottom: 40px !important;
  }

  .md\:pl-40 {
    padding-left: 40px !important;
  }

  .md\:pr-40 {
    padding-right: 40px !important;
  }

  .md\:mt-40 {
    margin-top: 40px !important;
  }

  .md\:mb-40 {
    margin-bottom: 40px !important;
  }

  .md\:ml-40 {
    margin-left: 40px !important;
  }

  .md\:mr-40 {
    margin-right: 40px !important;
  }

  .md\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .md\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .md\:pt-50 {
    padding-top: 50px !important;
  }

  .md\:pb-50 {
    padding-bottom: 50px !important;
  }

  .md\:pl-50 {
    padding-left: 50px !important;
  }

  .md\:pr-50 {
    padding-right: 50px !important;
  }

  .md\:mt-50 {
    margin-top: 50px !important;
  }

  .md\:mb-50 {
    margin-bottom: 50px !important;
  }

  .md\:ml-50 {
    margin-left: 50px !important;
  }

  .md\:mr-50 {
    margin-right: 50px !important;
  }

  .md\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .md\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .md\:pt-60 {
    padding-top: 60px !important;
  }

  .md\:pb-60 {
    padding-bottom: 60px !important;
  }

  .md\:pl-60 {
    padding-left: 60px !important;
  }

  .md\:pr-60 {
    padding-right: 60px !important;
  }

  .md\:mt-60 {
    margin-top: 60px !important;
  }

  .md\:mb-60 {
    margin-bottom: 60px !important;
  }

  .md\:ml-60 {
    margin-left: 60px !important;
  }

  .md\:mr-60 {
    margin-right: 60px !important;
  }

  .md\:py-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }

  .md\:px-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }

  .md\:pt-74 {
    padding-top: 74px !important;
  }

  .md\:pb-74 {
    padding-bottom: 74px !important;
  }

  .md\:pl-74 {
    padding-left: 74px !important;
  }

  .md\:pr-74 {
    padding-right: 74px !important;
  }

  .md\:mt-74 {
    margin-top: 74px !important;
  }

  .md\:mb-74 {
    margin-bottom: 74px !important;
  }

  .md\:ml-74 {
    margin-left: 74px !important;
  }

  .md\:mr-74 {
    margin-right: 74px !important;
  }

  .md\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .md\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }

  .md\:pt-90 {
    padding-top: 90px !important;
  }

  .md\:pb-90 {
    padding-bottom: 90px !important;
  }

  .md\:pl-90 {
    padding-left: 90px !important;
  }

  .md\:pr-90 {
    padding-right: 90px !important;
  }

  .md\:mt-90 {
    margin-top: 90px !important;
  }

  .md\:mb-90 {
    margin-bottom: 90px !important;
  }

  .md\:ml-90 {
    margin-left: 90px !important;
  }

  .md\:mr-90 {
    margin-right: 90px !important;
  }

  .md\:py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .md\:px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .md\:pt-100 {
    padding-top: 100px !important;
  }

  .md\:pb-100 {
    padding-bottom: 100px !important;
  }

  .md\:pl-100 {
    padding-left: 100px !important;
  }

  .md\:pr-100 {
    padding-right: 100px !important;
  }

  .md\:mt-100 {
    margin-top: 100px !important;
  }

  .md\:mb-100 {
    margin-bottom: 100px !important;
  }

  .md\:ml-100 {
    margin-left: 100px !important;
  }

  .md\:mr-100 {
    margin-right: 100px !important;
  }
}

@media (max-width: 575px) {
  .sm\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .sm\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .sm\:pt-0 {
    padding-top: 0px !important;
  }

  .sm\:pb-0 {
    padding-bottom: 0px !important;
  }

  .sm\:pl-0 {
    padding-left: 0px !important;
  }

  .sm\:pr-0 {
    padding-right: 0px !important;
  }

  .sm\:mt-0 {
    margin-top: 0px !important;
  }

  .sm\:mb-0 {
    margin-bottom: 0px !important;
  }

  .sm\:ml-0 {
    margin-left: 0px !important;
  }

  .sm\:mr-0 {
    margin-right: 0px !important;
  }

  .sm\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .sm\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .sm\:pt-5 {
    padding-top: 5px !important;
  }

  .sm\:pb-5 {
    padding-bottom: 5px !important;
  }

  .sm\:pl-5 {
    padding-left: 5px !important;
  }

  .sm\:pr-5 {
    padding-right: 5px !important;
  }

  .sm\:mt-5 {
    margin-top: 5px !important;
  }

  .sm\:mb-5 {
    margin-bottom: 5px !important;
  }

  .sm\:ml-5 {
    margin-left: 5px !important;
  }

  .sm\:mr-5 {
    margin-right: 5px !important;
  }

  .sm\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .sm\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .sm\:pt-10 {
    padding-top: 10px !important;
  }

  .sm\:pb-10 {
    padding-bottom: 10px !important;
  }

  .sm\:pl-10 {
    padding-left: 10px !important;
  }

  .sm\:pr-10 {
    padding-right: 10px !important;
  }

  .sm\:mt-10 {
    margin-top: 10px !important;
  }

  .sm\:mb-10 {
    margin-bottom: 10px !important;
  }

  .sm\:ml-10 {
    margin-left: 10px !important;
  }

  .sm\:mr-10 {
    margin-right: 10px !important;
  }

  .sm\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .sm\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .sm\:pt-15 {
    padding-top: 15px !important;
  }

  .sm\:pb-15 {
    padding-bottom: 15px !important;
  }

  .sm\:pl-15 {
    padding-left: 15px !important;
  }

  .sm\:pr-15 {
    padding-right: 15px !important;
  }

  .sm\:mt-15 {
    margin-top: 15px !important;
  }

  .sm\:mb-15 {
    margin-bottom: 15px !important;
  }

  .sm\:ml-15 {
    margin-left: 15px !important;
  }

  .sm\:mr-15 {
    margin-right: 15px !important;
  }

  .sm\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .sm\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .sm\:pt-20 {
    padding-top: 20px !important;
  }

  .sm\:pb-20 {
    padding-bottom: 20px !important;
  }

  .sm\:pl-20 {
    padding-left: 20px !important;
  }

  .sm\:pr-20 {
    padding-right: 20px !important;
  }

  .sm\:mt-20 {
    margin-top: 20px !important;
  }

  .sm\:mb-20 {
    margin-bottom: 20px !important;
  }

  .sm\:ml-20 {
    margin-left: 20px !important;
  }

  .sm\:mr-20 {
    margin-right: 20px !important;
  }

  .sm\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .sm\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .sm\:pt-25 {
    padding-top: 25px !important;
  }

  .sm\:pb-25 {
    padding-bottom: 25px !important;
  }

  .sm\:pl-25 {
    padding-left: 25px !important;
  }

  .sm\:pr-25 {
    padding-right: 25px !important;
  }

  .sm\:mt-25 {
    margin-top: 25px !important;
  }

  .sm\:mb-25 {
    margin-bottom: 25px !important;
  }

  .sm\:ml-25 {
    margin-left: 25px !important;
  }

  .sm\:mr-25 {
    margin-right: 25px !important;
  }

  .sm\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .sm\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .sm\:pt-30 {
    padding-top: 30px !important;
  }

  .sm\:pb-30 {
    padding-bottom: 30px !important;
  }

  .sm\:pl-30 {
    padding-left: 30px !important;
  }

  .sm\:pr-30 {
    padding-right: 30px !important;
  }

  .sm\:mt-30 {
    margin-top: 30px !important;
  }

  .sm\:mb-30 {
    margin-bottom: 30px !important;
  }

  .sm\:ml-30 {
    margin-left: 30px !important;
  }

  .sm\:mr-30 {
    margin-right: 30px !important;
  }

  .sm\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .sm\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .sm\:pt-35 {
    padding-top: 35px !important;
  }

  .sm\:pb-35 {
    padding-bottom: 35px !important;
  }

  .sm\:pl-35 {
    padding-left: 35px !important;
  }

  .sm\:pr-35 {
    padding-right: 35px !important;
  }

  .sm\:mt-35 {
    margin-top: 35px !important;
  }

  .sm\:mb-35 {
    margin-bottom: 35px !important;
  }

  .sm\:ml-35 {
    margin-left: 35px !important;
  }

  .sm\:mr-35 {
    margin-right: 35px !important;
  }

  .sm\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .sm\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .sm\:pt-40 {
    padding-top: 40px !important;
  }

  .sm\:pb-40 {
    padding-bottom: 40px !important;
  }

  .sm\:pl-40 {
    padding-left: 40px !important;
  }

  .sm\:pr-40 {
    padding-right: 40px !important;
  }

  .sm\:mt-40 {
    margin-top: 40px !important;
  }

  .sm\:mb-40 {
    margin-bottom: 40px !important;
  }

  .sm\:ml-40 {
    margin-left: 40px !important;
  }

  .sm\:mr-40 {
    margin-right: 40px !important;
  }

  .sm\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .sm\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .sm\:pt-50 {
    padding-top: 50px !important;
  }

  .sm\:pb-50 {
    padding-bottom: 50px !important;
  }

  .sm\:pl-50 {
    padding-left: 50px !important;
  }

  .sm\:pr-50 {
    padding-right: 50px !important;
  }

  .sm\:mt-50 {
    margin-top: 50px !important;
  }

  .sm\:mb-50 {
    margin-bottom: 50px !important;
  }

  .sm\:ml-50 {
    margin-left: 50px !important;
  }

  .sm\:mr-50 {
    margin-right: 50px !important;
  }

  .sm\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .sm\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .sm\:pt-60 {
    padding-top: 60px !important;
  }

  .sm\:pb-60 {
    padding-bottom: 60px !important;
  }

  .sm\:pl-60 {
    padding-left: 60px !important;
  }

  .sm\:pr-60 {
    padding-right: 60px !important;
  }

  .sm\:mt-60 {
    margin-top: 60px !important;
  }

  .sm\:mb-60 {
    margin-bottom: 60px !important;
  }

  .sm\:ml-60 {
    margin-left: 60px !important;
  }

  .sm\:mr-60 {
    margin-right: 60px !important;
  }

  .sm\:py-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }

  .sm\:px-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }

  .sm\:pt-74 {
    padding-top: 74px !important;
  }

  .sm\:pb-74 {
    padding-bottom: 74px !important;
  }

  .sm\:pl-74 {
    padding-left: 74px !important;
  }

  .sm\:pr-74 {
    padding-right: 74px !important;
  }

  .sm\:mt-74 {
    margin-top: 74px !important;
  }

  .sm\:mb-74 {
    margin-bottom: 74px !important;
  }

  .sm\:ml-74 {
    margin-left: 74px !important;
  }

  .sm\:mr-74 {
    margin-right: 74px !important;
  }

  .sm\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .sm\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }

  .sm\:pt-90 {
    padding-top: 90px !important;
  }

  .sm\:pb-90 {
    padding-bottom: 90px !important;
  }

  .sm\:pl-90 {
    padding-left: 90px !important;
  }

  .sm\:pr-90 {
    padding-right: 90px !important;
  }

  .sm\:mt-90 {
    margin-top: 90px !important;
  }

  .sm\:mb-90 {
    margin-bottom: 90px !important;
  }

  .sm\:ml-90 {
    margin-left: 90px !important;
  }

  .sm\:mr-90 {
    margin-right: 90px !important;
  }

  .sm\:py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .sm\:px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .sm\:pt-100 {
    padding-top: 100px !important;
  }

  .sm\:pb-100 {
    padding-bottom: 100px !important;
  }

  .sm\:pl-100 {
    padding-left: 100px !important;
  }

  .sm\:pr-100 {
    padding-right: 100px !important;
  }

  .sm\:mt-100 {
    margin-top: 100px !important;
  }

  .sm\:mb-100 {
    margin-bottom: 100px !important;
  }

  .sm\:ml-100 {
    margin-left: 100px !important;
  }

  .sm\:mr-100 {
    margin-right: 100px !important;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.xl\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.lg\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.md\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.sm\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.x-gap-0 {
  margin-left: -0px;
  margin-right: -0px;
}

.x-gap-0>* {
  padding-left: 0px;
  padding-right: 0px;
}

.y-gap-0 {
  margin-top: -0px;
  margin-bottom: -0px;
}

.y-gap-0>* {
  padding-top: 0px;
  padding-bottom: 0px;
}

.x-gap-5 {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.gap-5 {
  gap: 20px;
}

.x-gap-5>* {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.y-gap-5 {
  margin-top: -2.5px;
  margin-bottom: -2.5px;
}

.y-gap-5>* {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
}

.x-gap-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.x-gap-10>* {
  padding-left: 5px;
  padding-right: 5px;
}

.y-gap-10 {
  margin-top: -5px;
  margin-bottom: -5px;
}

.y-gap-10>* {
  padding-top: 5px;
  padding-bottom: 5px;
}

.x-gap-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.x-gap-15>* {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.y-gap-15 {
  margin-top: -7.5px;
  margin-bottom: -7.5px;
}

.y-gap-15>* {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.x-gap-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.x-gap-20>* {
  padding-left: 10px;
  padding-right: 10px;
}

.y-gap-20 {
  margin-top: -10px;
  margin-bottom: -10px;
}

.y-gap-20>* {
  padding-top: 10px;
  padding-bottom: 10px;
}

.x-gap-25 {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

.x-gap-25>* {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.y-gap-25 {
  margin-top: -12.5px;
  margin-bottom: -12.5px;
}

.y-gap-25>* {
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.x-gap-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.x-gap-30>* {
  padding-left: 15px;
  padding-right: 15px;
}

.y-gap-30 {
  margin-top: -15px;
  margin-bottom: -15px;
}

.y-gap-30>* {
  padding-top: 15px;
  padding-bottom: 15px;
}

.x-gap-40 {
  margin-left: -20px;
  margin-right: -20px;
}

.x-gap-40>* {
  padding-left: 20px;
  padding-right: 20px;
}

.y-gap-40 {
  margin-top: -20px;
  margin-bottom: -20px;
}

.y-gap-40>* {
  padding-top: 20px;
  padding-bottom: 20px;
}

.x-gap-50 {
  margin-left: -25px;
  margin-right: -25px;
}

.x-gap-50>* {
  padding-left: 25px;
  padding-right: 25px;
}

.y-gap-50 {
  margin-top: -25px;
  margin-bottom: -25px;
}

.y-gap-50>* {
  padding-top: 25px;
  padding-bottom: 25px;
}

.x-gap-60 {
  margin-left: -30px;
  margin-right: -30px;
}

.x-gap-60>* {
  padding-left: 30px;
  padding-right: 30px;
}

.y-gap-60 {
  margin-top: -30px;
  margin-bottom: -30px;
}

.y-gap-60>* {
  padding-top: 30px;
  padding-bottom: 30px;
}

.x-gap-85 {
  margin-left: -42.5px;
  margin-right: -42.5px;
}

.x-gap-85>* {
  padding-left: 42.5px;
  padding-right: 42.5px;
}

.y-gap-85 {
  margin-top: -42.5px;
  margin-bottom: -42.5px;
}

.y-gap-85>* {
  padding-top: 42.5px;
  padding-bottom: 42.5px;
}

.x-gap-100 {
  margin-left: -50px;
  margin-right: -50px;
}

.x-gap-100>* {
  padding-left: 50px;
  padding-right: 50px;
}

.y-gap-100 {
  margin-top: -50px;
  margin-bottom: -50px;
}

.y-gap-100>* {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .md\:x-gap-0 {
    margin-left: -0px;
    margin-right: -0px;
  }

  .md\:x-gap-0>* {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:y-gap-0 {
    margin-top: -0px;
    margin-bottom: -0px;
  }

  .md\:y-gap-0>* {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:x-gap-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }

  .md\:x-gap-5>* {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }

  .md\:y-gap-5 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }

  .md\:y-gap-5>* {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }

  .md\:x-gap-10 {
    margin-left: -5px;
    margin-right: -5px;
  }

  .md\:x-gap-10>* {
    padding-left: 5px;
    padding-right: 5px;
  }

  .md\:y-gap-10 {
    margin-top: -5px;
    margin-bottom: -5px;
  }

  .md\:y-gap-10>* {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .md\:x-gap-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }

  .md\:x-gap-15>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .md\:y-gap-15 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }

  .md\:y-gap-15>* {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }

  .md\:x-gap-20 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .md\:x-gap-20>* {
    padding-left: 10px;
    padding-right: 10px;
  }

  .md\:y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .md\:y-gap-20>* {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .md\:x-gap-25 {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }

  .md\:x-gap-25>* {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .md\:y-gap-25 {
    margin-top: -12.5px;
    margin-bottom: -12.5px;
  }

  .md\:y-gap-25>* {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }

  .md\:x-gap-30 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .md\:x-gap-30>* {
    padding-left: 15px;
    padding-right: 15px;
  }

  .md\:y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

  .md\:y-gap-30>* {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .md\:x-gap-40 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .md\:x-gap-40>* {
    padding-left: 20px;
    padding-right: 20px;
  }

  .md\:y-gap-40 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .md\:y-gap-40>* {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .md\:x-gap-50 {
    margin-left: -25px;
    margin-right: -25px;
  }

  .md\:x-gap-50>* {
    padding-left: 25px;
    padding-right: 25px;
  }

  .md\:y-gap-50 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

  .md\:y-gap-50>* {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .md\:x-gap-60 {
    margin-left: -30px;
    margin-right: -30px;
  }

  .md\:x-gap-60>* {
    padding-left: 30px;
    padding-right: 30px;
  }

  .md\:y-gap-60 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .md\:y-gap-60>* {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .md\:x-gap-85 {
    margin-left: -42.5px;
    margin-right: -42.5px;
  }

  .md\:x-gap-85>* {
    padding-left: 42.5px;
    padding-right: 42.5px;
  }

  .md\:y-gap-85 {
    margin-top: -42.5px;
    margin-bottom: -42.5px;
  }

  .md\:y-gap-85>* {
    padding-top: 42.5px;
    padding-bottom: 42.5px;
  }

  .md\:x-gap-100 {
    margin-left: -50px;
    margin-right: -50px;
  }

  .md\:x-gap-100>* {
    padding-left: 50px;
    padding-right: 50px;
  }

  .md\:y-gap-100 {
    margin-top: -50px;
    margin-bottom: -50px;
  }

  .md\:y-gap-100>* {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .sm\:x-gap-0 {
    margin-left: -0px;
    margin-right: -0px;
  }

  .sm\:x-gap-0>* {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:y-gap-0 {
    margin-top: -0px;
    margin-bottom: -0px;
  }

  .sm\:y-gap-0>* {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .sm\:x-gap-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }

  .sm\:x-gap-5>* {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }

  .sm\:y-gap-5 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }

  .sm\:y-gap-5>* {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }

  .sm\:x-gap-10 {
    margin-left: -5px;
    margin-right: -5px;
  }

  .sm\:x-gap-10>* {
    padding-left: 5px;
    padding-right: 5px;
  }

  .sm\:y-gap-10 {
    margin-top: -5px;
    margin-bottom: -5px;
  }

  .sm\:y-gap-10>* {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .sm\:x-gap-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }

  .sm\:x-gap-15>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .sm\:y-gap-15 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }

  .sm\:y-gap-15>* {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }

  .sm\:x-gap-20 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sm\:x-gap-20>* {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sm\:y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .sm\:y-gap-20>* {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sm\:x-gap-25 {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }

  .sm\:x-gap-25>* {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .sm\:y-gap-25 {
    margin-top: -12.5px;
    margin-bottom: -12.5px;
  }

  .sm\:y-gap-25>* {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }

  .sm\:x-gap-30 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .sm\:x-gap-30>* {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sm\:y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

  .sm\:y-gap-30>* {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .sm\:x-gap-40 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .sm\:x-gap-40>* {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm\:y-gap-40 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .sm\:y-gap-40>* {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm\:x-gap-50 {
    margin-left: -25px;
    margin-right: -25px;
  }

  .sm\:x-gap-50>* {
    padding-left: 25px;
    padding-right: 25px;
  }

  .sm\:y-gap-50 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

  .sm\:y-gap-50>* {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .sm\:x-gap-60 {
    margin-left: -30px;
    margin-right: -30px;
  }

  .sm\:x-gap-60>* {
    padding-left: 30px;
    padding-right: 30px;
  }

  .sm\:y-gap-60 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .sm\:y-gap-60>* {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sm\:x-gap-85 {
    margin-left: -42.5px;
    margin-right: -42.5px;
  }

  .sm\:x-gap-85>* {
    padding-left: 42.5px;
    padding-right: 42.5px;
  }

  .sm\:y-gap-85 {
    margin-top: -42.5px;
    margin-bottom: -42.5px;
  }

  .sm\:y-gap-85>* {
    padding-top: 42.5px;
    padding-bottom: 42.5px;
  }

  .sm\:x-gap-100 {
    margin-left: -50px;
    margin-right: -50px;
  }

  .sm\:x-gap-100>* {
    padding-left: 50px;
    padding-right: 50px;
  }

  .sm\:y-gap-100 {
    margin-top: -50px;
    margin-bottom: -50px;
  }

  .sm\:y-gap-100>* {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.layout-pt-md {
  padding-top: 100px;
}

.layout-pb-md {
  padding-bottom: 100px;
}

.layout-pt-lg {
  padding-top: 200px;
}

.layout-pt {
  padding-top: 150px;
}

.layout-pb-lg {
  padding-bottom: 200px;
}

@media (max-width: 767px) {
  .layout-pt-md {
    padding-top: 75px;
  }

  .layout-pb-md {
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .layout-pt-lg {
    padding-top: 150px;
  }

  .layout-pb-lg {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .layout-pt-md {
    padding-top: 50px;
  }

  .layout-pb-md {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .layout-pt-lg {
    padding-top: 100px;
  }

  .layout-pb-lg {
    padding-bottom: 100px;
  }
}

.w-1\/5 {
  width: 20% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-1\/3 {
  width: 33.333333% !important;
}

.w-1\/2 {
  width: 50% !important;
}

.w-1\/1 {
  width: 100% !important;
}

@media (max-width: 1199px) {
  .xl\:w-1\/5 {
    width: 20% !important;
  }

  .xl\:w-1\/4 {
    width: 25% !important;
  }

  .xl\:w-1\/3 {
    width: 33.333333% !important;
  }

  .xl\:w-1\/2 {
    width: 50% !important;
  }

  .xl\:w-1\/1 {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .lg\:w-1\/5 {
    width: 20% !important;
  }

  .width-1\/1 {
    width: 64% !important;
  }

  .lg\:w-1\/4 {
    width: 25% !important;
  }

  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lg\:w-1\/2 {
    width: 50% !important;
  }

  .lg\:w-1\/1 {
    width: 100% !important;
  }


}

@media (max-width: 767px) {
  .md\:w-1\/5 {
    width: 20% !important;
  }

  .md\:w-1\/4 {
    width: 25% !important;
  }

  .md\:w-1\/3 {
    width: 33.333333% !important;
  }

  .md\:w-1\/2 {
    width: 50% !important;
  }

  .md\:w-1\/1 {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .sm\:w-1\/5 {
    width: 20% !important;
  }

  .sm\:w-1\/4 {
    width: 25% !important;
  }

  .sm\:w-1\/3 {
    width: 33.333333% !important;
  }

  .sm\:w-1\/2 {
    width: 50% !important;
  }

  .sm\:w-1\/1 {
    width: 100% !important;
  }
}

.flex-column {
  flex-direction: column;
}

@media (max-width: 1199px) {
  .xl\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 991px) {
  .lg\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 767px) {
  .md\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 575px) {
  .sm\:flex-column {
    flex-direction: column !important;
  }
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

@media (max-width: 1199px) {
  .xl\:justify-start {
    justify-content: flex-start !important;
  }

  .xl\:justify-end {
    justify-content: flex-end !important;
  }

  .xl\:justify-center {
    justify-content: center !important;
  }

  .xl\:justify-between {
    justify-content: space-between !important;
  }

  .xl\:items-start {
    align-items: flex-start !important;
  }

  .xl\:items-end {
    align-items: flex-end !important;
  }

  .xl\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 991px) {
  .lg\:justify-start {
    justify-content: flex-start !important;
  }

  .lg\:justify-end {
    justify-content: flex-end !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:justify-between {
    justify-content: space-between !important;
  }

  .lg\:items-start {
    align-items: flex-start !important;
  }

  .lg\:items-end {
    align-items: flex-end !important;
  }

  .lg\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 767px) {
  .md\:justify-start {
    justify-content: flex-start !important;
  }

  .md\:justify-end {
    justify-content: flex-end !important;
  }

  .md\:justify-center {
    justify-content: center !important;
  }

  .md\:justify-between {
    justify-content: space-between !important;
  }

  .md\:items-start {
    align-items: flex-start !important;
  }

  .md\:items-end {
    align-items: flex-end !important;
  }

  .md\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 575px) {
  .sm\:justify-start {
    justify-content: flex-start !important;
  }

  .sm\:justify-end {
    justify-content: flex-end !important;
  }

  .sm\:justify-center {
    justify-content: center !important;
  }

  .sm\:justify-between {
    justify-content: space-between !important;
  }

  .sm\:items-start {
    align-items: flex-start !important;
  }

  .sm\:items-end {
    align-items: flex-end !important;
  }

  .sm\:items-center {
    align-items: center !important;
  }
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media (max-width: 1199px) {
  .xl\:order-1 {
    order: 1;
  }

  .xl\:order-2 {
    order: 2;
  }

  .xl\:order-3 {
    order: 3;
  }
}

@media (max-width: 991px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-3 {
    order: 3;
  }
}

@media (max-width: 767px) {
  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }
}

@media (max-width: 575px) {
  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:order-3 {
    order: 3;
  }
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-black {
  background-color: var(--color-black) !important;
}

.bg-border {
  background-color: var(--color-border) !important;
}

.bg-accent-footer {
  /* background-color: var(--color-accent-1) !important; */
  background-color: #0e0e14 !important;
}

.bg-accent-2 {
  background-color: #ed4109;
}

.view-about {
  color: #ed4109;
}

.view-about i svg {
  color: #ed4109;
}

.bg-accent-btn {
  border: 1px solid grey;
}

.bg-light-1 {
  background-color: var(--color-light-1) !important;
}

.bg-light-2 {
  background-color: var(--color-light-2) !important;
}

.bg-dark-1 {
  background-color: var(--color-dark-1) !important;
}

.bg-dark-2 {
  background-color: var(--color-dark-2) !important;
}

.bg-dark-3 {
  background-color: var(--color-dark-3) !important;
}

.bg-info-1 {
  background-color: var(--color-info-1) !important;
}

.bg-info-2 {
  background-color: var(--color-info-2) !important;
}

.bg-warning-1 {
  background-color: var(--color-warning-1) !important;
}

.bg-warning-2 {
  background-color: var(--color-warning-2) !important;
}

.bg-error-1 {
  background-color: var(--color-error-1) !important;
}

.bg-error-2 {
  background-color: var(--color-error-2) !important;
}

.bg-success-1 {
  background-color: var(--color-success-1) !important;
}

.bg-success-2 {
  background-color: var(--color-success-2) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-accent-1-10 {
  background-color: rgba(18, 34, 35, 0.1);
}

.bg-accent-1-50 {
  background-color: rgba(255, 255, 255, 0.445);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-border {
  color: var(--color-border);
}

.text-accent-1 {
  color: var(--color-accent-1);
}

.text-accent-2 {
  color: var(--color-accent-2);
}

.text-light-1 {
  color: var(--color-light-1);
}

.text-light-2 {
  color: var(--color-light-2);
}

.text-dark-1 {
  color: var(--color-dark-1);
}

.text-dark-2 {
  color: var(--color-dark-2);
}

.text-dark-3 {
  color: var(--color-dark-3);
}

.text-info-1 {
  color: var(--color-info-1);
}

.text-info-2 {
  color: var(--color-info-2);
}

.text-warning-1 {
  color: var(--color-warning-1);
}

.text-warning-2 {
  color: var(--color-warning-2);
}

.text-error-1 {
  color: var(--color-error-1);
}

.text-error-2 {
  color: var(--color-error-2);
}

.text-success-1 {
  color: var(--color-success-1);
}

.text-success-2 {
  color: var(--color-success-2);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

/* .text-sec {
  font-family: var(--font-secondary);
} */

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media (max-width: 1199px) {
  .xl\:d-none {
    display: none !important;
  }

  .xl\:d-inline-block {
    display: inline-block !important;
  }

  .xl\:d-block {
    display: block !important;
  }

  .xl\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .lg\:d-none {
    display: none !important;
  }

  .lg\:d-inline-block {
    display: inline-block !important;
  }

  .lg\:d-block {
    display: block !important;
  }

  .lg\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .md\:d-none {
    display: none !important;
  }

  .md\:d-inline-block {
    display: inline-block !important;
  }

  .md\:d-block {
    display: block !important;
  }

  .md\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 575px) {
  .sm\:d-none {
    display: none !important;
  }

  .sm\:d-inline-block {
    display: inline-block !important;
  }

  .sm\:d-block {
    display: block !important;
  }

  .sm\:d-flex {
    display: flex !important;
  }
}

.html-overflow-hidden {
  overflow: hidden !important;
}

.html-overflow-hidden body {
  overflow-y: scroll;
}

.origin-top {
  transform-origin: top !important;
}

.origin-left {
  transform-origin: left !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-normal {
  overflow: initial !important;
}

.overflow-visible {
  overflow: visible !important;
}

.pointer-events-auto {
  pointer-events: auto !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* border-radius: 60px; */
}


.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal {
  text-transform: none;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px !important;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-200 {
  border-radius: 200px !important;
}

.rounded-full {
  border-radius: 100%;
}

.border-white {
  border: 1px solid #FFF;
}

.border-white-10 {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-bottom-white-20 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top-white-20 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-accent-1 {
  border: 1px solid var(--color-accent-1);
}

.border-1 {
  border-bottom: 1px solid #f26b3e5d;
}

.border-light-1-top {
  border-top: 1px solid var(--color-light-1);
}

.border-bottom-border {
  border-bottom: 1px solid var(--color-border);
}

.border-table-1>*+* {
  border-top: 1px solid var(--color-border);
}

.border-row-1>*+* {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .border-row-1>*+* {
    border: none;
  }
}

.size-25 {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
}

.size-40 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.size-50 {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.size-60 {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.size-70 {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.size-80 {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.size-90 {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.size-130 {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
}

@media (max-width: 767px) {
  .md\:size-60 {
    width: 40px;
    height: 40px;
  }
}

.shadow-1 {
  box-shadow: 0px 6px 50px 0px rgba(18, 34, 35, 0.07);
}

.hover-shadow-1 {
  transition: .2s;
}

.hover-shadow-1:hover {
  box-shadow: 0px 10px 40px 0px #0000000D;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.h-40 {
  height: 40px;
}

.h-full {
  height: 100% !important;
}

@media (max-width: 767px) {
  .md\:h-map {
    height: 300px !important;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

.sectionBg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.sectionBg.-left {
  right: unset;
}

@media (max-width: 767px) {
  .sectionBg.-left {
    position: relative;
  }
}

.sectionBg.-left-2 {
  right: unset;
}

@media (max-width: 991px) {
  .sectionBg.-left-2 {
    position: relative;
    height: 400px;
  }
}

@media (max-width: 767px) {
  .sectionBg.-left-2 {
    height: 270px;
  }
}

.sectionBg.-type-1 {
  left: 60px;
  right: 60px;
}

@media (max-width: 1199px) {
  .sectionBg.-type-1 {
    position: relative;
    left: 0;
    right: 0;
    border-radius: 0 !important;
  }
}

.sectionBg.-type-1 img {
  width: 40vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .sectionBg.-type-1 img {
    width: 100%;
    height: 400px;
  }
}

.sectionBg.-type-2 {
  position: unset;
  display: flex;
  justify-content: flex-end;
}

.sectionBg.-type-2 .sectionBg__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: 60px;
  right: 60px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .sectionBg.-type-2 .sectionBg__bg {
    left: 0;
    right: 0;
  }
}

.sectionBg.-type-2 img {
  position: absolute;
  top: 0;
  right: 60px;
  width: 40vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .sectionBg.-type-2 img {
    position: relative;
    right: unset;
    width: 100%;
    height: 400px;
    padding: 0 60px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .sectionBg.-type-2 img {
    padding: 0;
  }
}

.sectionBg.-mx-60 {
  margin: 0 60px;
}

@media (max-width: 1600px) {
  .sectionBg.-mx-60 {
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .sectionBg.-mx-60 {
    margin: 0;
  }
}

.-hover-image-scale__image {
  overflow: hidden;
}

.-hover-image-scale__image>*:nth-child(1) {
  transition: 0.6s;
}

.-hover-image-scale:hover .-hover-image-scale__image>*:nth-child(1) {
  transform: scale(1.15);
}

.-hover-button-center__wrap {
  position: relative;
}

.-hover-button-center__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  transition: all 0.2s ease;
  pointer-events: none;
  opacity: 0;
}

.-hover-button-center:hover .-hover-button-center__button {
  pointer-events: auto;
  opacity: 1;
}

.blur-1 {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.line.-vertical {
  width: 1px;
}

.line.-horizontal {
  height: 1px;
}

.line.-w-140 {
  width: 140px;
}

.imageGrid.-type-1 {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .imageGrid.-type-1 {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
  }
}

.imageGrid.-type-1>*:nth-child(1) {
  position: absolute;
  right: calc(100% + 40px);
  width: 280px;
}

@media (max-width: 991px) {
  .imageGrid.-type-1>*:nth-child(1) {
    position: relative;
    right: unset;
    width: 100%;
  }
}

.imageGrid.-type-1>*:nth-child(1) img {
  width: 100%;
}

.imageGrid.-type-1>*:nth-child(2) {
  position: relative;
  z-index: 0;
}

.imageGrid.-type-1>*:nth-child(2) img {
  width: 620px;
}

@media (max-width: 991px) {
  .imageGrid.-type-1>*:nth-child(2) img {
    width: 100%;
  }
}

.imageGrid.-type-1>*:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 60px;
  right: -20px;
  bottom: -20px;
  border: 1px solid black;
  z-index: -1;
}

@media (max-width: 767px) {
  .imageGrid.-type-1>*:nth-child(2)::before {
    top: 20px;
    left: 20px;
    right: -10px;
    bottom: -10px;
  }

  .-hover-button-center:hover .-hover-button-center__button {
    display: none;
  }
}

.imageGrid.-type-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1fr 0.75fr 1fr 0.75fr;
  gap: 30px;
  margin: 0 60px;
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .imageGrid.-type-2 {
    grid-template-columns: repeat(5, 1fr);
    margin: 0 30px;
    margin-top: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .imageGrid.-type-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .imageGrid.-type-2 {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 24px;
    margin-top: 50px;
  }
}

.imageGrid.-type-2>*:nth-child(2) {
  position: relative;
  bottom: -100px;
}

@media (max-width: 1199px) {
  .imageGrid.-type-2>*:nth-child(2) {
    bottom: unset;
  }
}

.imageGrid.-type-3 {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 145px;
}

.imageGrid.-type-3>*:nth-child(1) {
  position: absolute;
  top: 322px;
  left: 0;
}

@media (max-width: 767px) {
  .imageGrid.-type-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 0;
  }

  .imageGrid.-type-3>*:nth-child(1) {
    position: relative;
    top: unset;
    left: unset;
  }
}

.imageGrid.-type-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.66fr 0.33fr;
  grid-template-rows: repeat(2, 240px);
}

.imageGrid.-type-4>*:nth-child(1) {
  grid-row: span 2;
}

.imageGrid.-type-4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.imageGrid.-type-5 {
  position: relative;
  left: -30px;
  width: calc(100% + 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

@media (max-width: 991px) {
  .imageGrid.-type-5 {
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .imageGrid.-type-5 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.imageGrid.-type-5>*:nth-child(2n) {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .imageGrid.-type-5>*:nth-child(2n) {
    padding-top: 0;
  }
}

.imageGrid.-type-5 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.imageGrid__wrap.-type-6 {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .imageGrid__wrap.-type-6 {
    padding: 0;
  }
}

.imageGrid.-type-6 {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  bottom: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  grid-template-rows: masonry;
}

.imageGrid.-type-6>*:nth-child(1) {
  width: 18.2vw;
}

.imageGrid.-type-6>*:nth-child(2) {
  width: 18.2vw;
}

.imageGrid.-type-6>*:nth-child(3) {
  width: 18.2vw;
}

.imageGrid.-type-6>*:nth-child(4) {
  width: 18.2vw;
}

.imageGrid.-type-6>*:nth-child(2) {
  margin-left: 12vw;
}

.imageGrid.-type-6>*:nth-child(3) {
  margin-top: -6vw;
  margin-left: 12vw;
}

.imageGrid.-type-6>*:nth-child(4) {
  align-self: flex-end;
}

@media (max-width: 1199px) {
  .imageGrid.-type-6 {
    left: 20px;
    right: 20px;
  }

  .imageGrid.-type-6>*:nth-child(1) {
    width: 27vw;
  }

  .imageGrid.-type-6>*:nth-child(2) {
    width: 27vw;
  }

  .imageGrid.-type-6>*:nth-child(3) {
    width: 27vw;
  }

  .imageGrid.-type-6>*:nth-child(4) {
    width: 27vw;
  }

  .imageGrid.-type-6>*:nth-child(2) {
    margin-left: 6vw;
  }

  .imageGrid.-type-6>*:nth-child(3) {
    margin-top: -12vw;
    margin-left: 6vw;
  }
}

@media (max-width: 991px) {
  .imageGrid.-type-6 {
    position: relative;
    left: unset;
    right: unset;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
    margin-bottom: 30px;
  }

  .imageGrid.-type-6>*:nth-child(1) {
    width: 100%;
  }

  .imageGrid.-type-6>*:nth-child(2) {
    width: 100%;
  }

  .imageGrid.-type-6>*:nth-child(3) {
    width: 100%;
  }

  .imageGrid.-type-6>*:nth-child(4) {
    width: 100%;
  }

  .imageGrid.-type-6>*:nth-child(2) {
    margin-left: 0;
  }

  .imageGrid.-type-6>*:nth-child(3) {
    margin-top: 0;
    margin-left: 0;
  }

  .imageGrid.-type-6>*:nth-child(4) {
    align-self: unset;
  }
}

@media (max-width: 575px) {
  .imageGrid.-type-6 {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
  }

  .imageGrid.-type-6>*:nth-child(3) {
    margin-top: -24vw;
  }
}

.hoverTitle {
  display: flex;
  align-items: center;
  transition: all 0.2s ease-out;
  opacity: 0.4;
}

.hoverTitle i {
  opacity: 0;
  transition: all 0.2s ease-out;
}

.hoverTitle:hover {
  color: currentColor;
  opacity: 1;
}

.hoverTitle:hover i {
  opacity: 1;
}

@media (max-width: 991px) {
  .sideImages.-type-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .sideImages.-type-1 {
    gap: 20px;
  }
}

.sideImages.-type-1>* {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 1279px) {
  .sideImages.-type-1>* {
    width: 25.3vw;
  }
}

@media (max-width: 991px) {
  .sideImages.-type-1>* {
    position: relative;
    width: 100%;
  }
}

.sideImages.-type-1>*:nth-child(1) {
  left: 0;
}

.sideImages.-type-1>*:nth-child(2) {
  right: 0;
}

.sideImages.-type-2 {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(2, 27vw);
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .sideImages.-type-2 {
    position: relative;
    transform: none;
    top: unset;
    left: unset;
    right: unset;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    margin-bottom: 70px;
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .sideImages.-type-2 {
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .sideImages.-type-2 {
    gap: 20px;
    padding: 20px;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

.newsletter.-type-1 {
  position: relative;
}

.newsletter.-type-1 input {
  border-radius: 16px;
  width: 100%;
  height: 70px;
  padding: 0 30px;
}

@media (max-width: 1199px) {
  .newsletter.-type-1 input {
    background-color: var(--color-light-1) !important;
  }
}

.newsletter.-type-1 button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px;
}

.navAbsolute {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.navAbsolute.-type-2 {
  left: -150px;
  right: -150px;
}

.navAbsolute.-type-3 {
  left: 90px;
  right: 90px;
}

@media (max-width: 767px) {
  .navAbsolute.-type-3 {
    left: 20px;
    right: 20px;
  }
}

.navAbsolute.-type-4 {
  left: 30px;
  right: 30px;
}

.lineGrid.-type-1 {
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  align-items: center;
  gap: 105px;
}

@media (max-width: 991px) {
  .lineGrid.-type-1 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lineGrid.-type-1 .lineGrid__content {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .lineGrid.-type-1 .lineGrid__content {
    padding: 0;
  }

  .lineGrid.-type-1 .lineGrid__content img {
    width: 100%;
  }
}

.lineGrid.-type-1 .lineGrid__content.-no-padding {
  padding: 0;
  align-self: flex-start;
}

.lineGrid.-type-1 .lineGrid__line {
  width: 1px;
  height: 100%;
  background-color: var(--color-accent-1);
}

@media (max-width: 991px) {
  .lineGrid.-type-1 .lineGrid__line {
    display: none;
  }
}

.ss-scale .ss-scale__item {
  height: 100px;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .ss-scale .ss-scale__item {
    height: 0;
  }
}

.ss-scale .swiper-slide-active .ss-scale__item {
  height: 0;
}

.ss-scale-2 .swiper-slide {
  transform: scale(0.85);
  transition: all 0.5s ease;
}

.ss-scale-2 .swiper-slide-active {
  transform: scale(1);
}

.roomCardGrid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 150px;
  align-items: center;
}

@media (max-width: 991px) {
  .roomCardGrid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .roomCardGrid>*:nth-child(1) {
    order: 2;
  }
}

@media (max-width: 575px) {
  .roomCardGrid {
    gap: 30px;
  }
}

.roomCardGrid.-reverse {
  grid-template-columns: 1fr 0.7fr;
}

.roomCardGrid.-reverse>*:nth-child(1) {
  order: 2;
}

.roomCardGrid.-reverse>*:nth-child(2) {
  order: 1;
}

@media (max-width: 991px) {
  .roomCardGrid.-reverse {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .roomCardGrid.-reverse {
    gap: 30px;
  }
}

.ulList.-type-1 li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color-accent-2);
  margin-right: 10px;
}

.ulList.-type-1 li+li {
  margin-top: 15px;
}

.roomsSingleGrid.-type-1 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 270px 270px;
  grid-template-rows: repeat(2, 280px);
  gap: 10px;
}

@media (max-width: 991px) {
  .roomsSingleGrid.-type-1 {
    grid-template-columns: 1fr 0.5fr 0.5fr;
    grid-template-rows: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .roomsSingleGrid.-type-1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
  }
}

.roomsSingleGrid.-type-1>*:nth-child(1) {
  grid-row: span 2;
}

.roomsSingleGrid.-type-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.roomsSingleGrid.-type-1 .roomsSingleGrid__button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  height: 42px;
  padding: 0 20px;
  z-index: 1;
}

.w-auto {
  width: auto !important;
}

.tableWrap {
  overflow-x: auto;
}

.table.-type-1 {
  overflow-x: auto;
  display: block;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}

.table.-type-1 tr+tr {
  border-bottom: 1px solid var(--color-border);
}

.table.-type-1 tr td {
  padding: 30px 0;
}

.table.-type-1 tr td:not(:first-child) {
  text-align: center;
}

.table.-type-1 .table__header th {
  height: 60px;
  font-weight: 500;
  font-size: 17px;
  padding: 0 30px;
  text-align: center;
}

.cta.-type-1 {
  position: relative;
  display: flex;
  align-items: center;
  height: 800px;
  z-index: 0;
}

@media (max-width: 991px) {
  .cta.-type-1 {
    height: 600px;
  }
}

@media (max-width: 575px) {
  .cta.-type-1 {
    height: 420px;
  }
}

.cta.-type-1 .cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta.-type-1 .cta__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.-circle-1::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color-accent-2);
  margin-right: 10px;
}

.-circle-2 {
  width: 6px;
  height: 6px;
  border-radius: 100%;
}

.blockquote {
  position: relative;
  padding: 60px 80px;
}

.blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-accent-1);
  z-index: 1;
}

.blockquote__icon {
  position: absolute;
  bottom: 50px;
  right: 64px;
}

.blockquote__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  padding-right: 40px;
}

@media (max-width: 991px) {
  .blockquote__text {
    padding-right: 0;
  }
}

.table.-type-2 th {
  padding: 25px 40px;
  line-height: 1;
  font-weight: 500;
}

.table.-type-2 tbody>tr+tr {
  border-top: 1px solid var(--color-border);
}

.table.-type-2 td {
  padding: 20px 40px;
}

.about.-type-1 {
  position: relative;
}

.about.-type-1 .about__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 100px;
}

.about.-type-1 .about__images img {
  width: 100%;
}

@media (max-width: 1199px) {
  .about.-type-1 .about__images {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .about.-type-1 .about__images {
    gap: 10px;
  }
}

.about.-type-1 .about__backTitle {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  font-size: 170px;
  font-weight: 500;
  text-align: center;
  z-index: -1;
}

@media (max-width: 1199px) {
  .about.-type-1 .about__backTitle {
    font-size: 120px;
  }
}

@media (max-width: 991px) {
  .about.-type-1 .about__backTitle {
    top: 70px;
    font-size: 90px;
  }
}

@media (max-width: 575px) {
  .about.-type-1 .about__backTitle {
    top: 40px;
    font-size: 54px;
  }
}

.about.-type-1 .about__content {
  margin-top: -70px;
}

@media (max-width: 991px) {
  .about.-type-1 .about__content {
    margin-top: -30px;
  }
}

@media (max-width: 575px) {
  .about.-type-1 .about__content {
    margin-top: 0;
  }
}

.about.-type-1 .about__title {
  font-size: 120px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .about.-type-1 .about__title {
    font-size: 90px;
  }
}

@media (max-width: 767px) {
  .about.-type-1 .about__title {
    font-size: 70px;
  }
}

@media (max-width: 575px) {
  .about.-type-1 .about__title {
    font-size: 50px;
  }
}

.mt--50 {
  margin-top: -50px;
}

.cardRow-card {
  position: relative;
}

.cardRow-card img {
  width: 100%;
}

.cardRow-card__content {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.custom-icon-minus {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-icon-minus span {
  width: 12px;
  height: 1px;
  background-color: var(--color-accent-1);
}

.cursor-pointer {
  cursor: pointer;
}

.custom-icon-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-icon-plus span {
  width: 12px;
  height: 2px;
  background-color: var(--color-accent-1);
}

.custom-icon-plus>*:nth-child(2) {
  position: absolute;
  width: 2px;
  height: 12px;
}

.mapMarker {
  outline: 10px solid rgba(249, 218, 186, 0.1);
}

@media (max-width: 767px) {
  .md\:ratio-1\:1::before {
    padding-bottom: 100%;
  }
}

.cardImage.-type-1 {
  position: relative;
  height: 860px;
}

@media (max-width: 1279px) {
  .cardImage.-type-1 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .cardImage.-type-1 {
    height: 400px;
  }
}

.cardImage.-type-1 .cardImage__image {
  width: 100%;
  height: 100%;
}

.cardImage.-type-1 .cardImage__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cardImage.-type-1 .cardImage__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
  padding-top: 50px;
}

@media (max-width: 1279px) {
  .cardImage.-type-1 .cardImage__content {
    padding: 0 30px;
    padding-top: 50px;
  }
}

@media (max-width: 991px) {
  .cardImage.-type-1 .cardImage__content {
    padding: 0 90px;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .cardImage.-type-1 .cardImage__content {
    padding: 0 30px;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .cardImage.-type-1 .cardImage__content {
    padding: 0 50px;
  }
}

.cardImage.-type-1 .cardImage__button {
  transition: all .2s;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .cardImage.-type-1 .cardImage__button {
    opacity: 1;
    pointer-events: auto;
  }
}

.cardImage.-type-1:hover .cardImage__button {
  opacity: 1;
  pointer-events: auto;
}

.sectionSlider.-type-1 {
  position: relative;
}

.sectionSlider.-type-1 .sectionSlider__content {
  transition: all 0.2s;
  opacity: 0;
}

.sectionSlider.-type-1 .sectionSlider__bgContainer {
  overflow: hidden;
  position: absolute;
  bottom: -50px;
  left: -120px;
  right: -120px;
}

@media (max-width: 767px) {
  .sectionSlider.-type-1 .sectionSlider__bgContainer {
    bottom: -30px;
  }
}

.sectionSlider.-type-1 .sectionSlider__bg {
  width: 100%;
  height: 460px;
}

@media (max-width: 767px) {
  .sectionSlider.-type-1 .sectionSlider__bg {
    height: 250px;
  }
}

.sectionSlider.-type-1 .swiper-slide-active .sectionSlider__content {
  opacity: 1;
}

.verticalSlider {
  overflow: hidden;
  height: 780px;
}

@media (max-width: 991px) {
  .verticalSlider {
    height: auto;
  }
}

.verticalSlider__wrap {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .verticalSlider__wrap {
    padding: 60px 0;
  }
}

.verticalSlider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  z-index: 1;
}

@media (max-width: 767px) {
  .verticalSlider__nav {
    right: 20px;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .verticalSlider__nav {
    right: 10px;
    gap: 10px;
  }
}

.verticalSlider__nav .pagination__item {
  display: flex;
  align-items: center;
  color: white;
  font-size: 17px;
  font-weight: 500;
}

.verticalSlider__nav .pagination__item::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: white;
  transform-origin: right;
  margin-right: 15px;
  transition: all 0.2s;
}

.verticalSlider__nav .pagination__item.is-active {
  opacity: 1;
}

.verticalSlider__nav .pagination__item.is-active::before {
  transform: scaleX(2);
}

.verticalSlider .swiper-slide {
  opacity: 0.3;
  transition: all 0.2s;
}

.verticalSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.icon-cross {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.icon-cross>* {
  width: 15px;
  height: 1px;
  background-color: currentColor;
}

.icon-cross>*:nth-child(1) {
  transform: rotate(45deg);
}

.icon-cross>*:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg);
}

.progressBar {
  position: relative;
}

.progressBar__bg {
  width: 100%;
  height: 10px;
  border-radius: 20px;
}

.progressBar__bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  border-radius: 4px;
}

.progressBar__bar span {
  position: absolute;
  right: 0;
  bottom: 100%;
}

.tooltip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #615E5E;
}

.tooltip__content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  font-size: 15px;
  line-height: 1.2;
  background-color: var(--color-accent-1);
  color: white;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tooltip__content::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: black;
  transform: rotate(45deg);
}

.tooltip.-top .tooltip__content {
  bottom: calc(100% + 6px);
  transform: translateY(8px);
}

.tooltip.-top .tooltip__content::after {
  bottom: -4px;
}

.tooltip.-bottom .tooltip__content {
  top: calc(100% + 6px);
  transform: translateY(-8px);
}

.tooltip.-bottom .tooltip__content::after {
  top: -4px;
}

.tooltip.-left .tooltip__content {
  right: calc(100% + 6px);
  transform: translateX(8px);
}

.tooltip.-left .tooltip__content::after {
  right: -4px;
}

.tooltip.-right .tooltip__content {
  left: calc(100% + 6px);
  transform: translateX(-8px);
}

.tooltip.-right .tooltip__content::after {
  left: -4px;
}

.tooltip:hover .tooltip__content {
  transform: none;
  opacity: 1;
}

.noUi-target {
  height: 6px;
  border: none;
  background-color: var(--color-light-1) !important;
}

.noUi-connect {
  background-color: var(--color-accent-1) !important;
  box-shadow: 0 !important;
  position: relative;
  left: 10px;
}

.noUi-handle {
  width: 16px !important;
  height: 16px !important;
  border-radius: 100%;
  border: 2px solid var(--color-accent-1);
  box-shadow: 0 !important;
}

.noUi-handle::before {
  display: none;
}

.noUi-handle::after {
  display: none;
}

.circle {
  display: flex;
  width: 6px;
  max-width: 6px;
  height: 6px;
  max-height: 6px;
  border-radius: 100%;
}

.white-space {
  white-space: nowrap;
}

.hoverTitleInteraction__images {
  position: relative;
}

.hoverTitleInteraction__images>* {
  opacity: 0;
  transition: all 0.3s;
}

.hoverTitleInteraction__images>*+* {
  position: absolute;
  top: 0;
  right: 0;
}

.hoverTitleInteraction__images>*.is-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .hoverTitleInteraction__images.-type-2 {
    height: 100%;
  }
}

.verticalSlider-images__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  transition: all 0.2s;
  opacity: 0;
}

.verticalSlider-images__images>* {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.verticalSlider-images__images>*:hover .verticalSlider-images__button {
  opacity: 1;
}

.verticalSlider-images__images>*.is-active {
  opacity: 1;
  pointer-events: auto;
}

.marquee {
  --itemWidth: 125vw;
  --animationTime: 24s;
  display: flex;
  align-items: center;
  width: calc(var(--itemWidth) * 2);
  animation: marquee var(--animationTime) infinite linear;
}

@media (max-width: 1199px) {
  .marquee {
    --itemWidth: 150vw;
  }
}

@media (max-width: 991px) {
  .marquee {
    --itemWidth: 175vw;
  }
}

@media (max-width: 767px) {
  .marquee {
    --itemWidth: 210vw;
  }
}

@media (max-width: 575px) {
  .marquee {
    --itemWidth: 280vw;
  }
}

.marquee__item {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  width: var(--itemWidth);
}

@media (max-width: 767px) {
  .marquee__item {
    gap: 15px;
  }
}

.marquee>*:nth-child(1) {
  padding-right: 30px;
}

.marquee>*:nth-child(2) {
  padding-right: 30px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.heading {
  color: #ed4109;
  font-size: 40px;
}

.property-heading {
  color: #ed4109;
  font-size: 30px !important;
}

.left-border {
  display: block;
  width: 8px;
  height: 52px;
  background-color: #ed4109;
  margin-right: 10px;
}

.p-left-border {
  display: block;
  width: 8px;
  height: 38px;
  background-color: #ed4109;
  margin-right: 10px;
}

.resrot1-info-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.overflow-y-scroll {
  overflow-y: scroll;
  height: 450px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.slidesimg {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.slidesimg-property {
  width: 100%;
  height: 212px;
  object-fit: cover;
  /* border-radius: 10px; */
}

.fa-star {
  color: #e7711b;
}

.fa-star-half {
  color: #e7711b;
}

.book-property {
  height: 40px !important;
  padding: 0 12px !important;
}

.arrows {
  position: relative;
  bottom: 260px;
}

.arrows-properties {
  position: relative;
  bottom: 122px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 112%;
  width: auto;
  padding: 10px;
  /* margin-top: -50px; */
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}

/* .prev-btn,
.next-btn {
  cursor: pointer;
    position: absolute;
    top: 112%;

    width: auto;
    padding: 3px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.8);
} */

/* Position the "next button" to the right */
.next {
  right: 0px;
  border-radius: 3px 0 0 3px;
  background-color: rgba(0, 0, 0, 0.8);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.overflow-auto {
  height: 80vh;
}

.column {
  /* box-shadow: 0px 0px 6px 2px #c3c3c3; */
  /* padding: 10px; */
  margin: 6px;
  /* border-radius: 6px; */
}

.active,
.demo:hover {
  opacity: 1;
}

.colimg {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50px;
  border: 1px solid #ed4109;
  padding: 2px;
}

.colimg:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

.overflow-auto {
  height: 450px;
  overflow: auto;
}

.about-heading {
  position: relative;
  bottom: 190px;
}

.our_vision {
  background-color: #ffc7b494;
  /* margin-top: 150px; */
  padding: 100px 0px;
}

.about-content2 {
  background-color: #ffc7b494;
  padding: 100px 0px;
}

#myBtn {
  cursor: pointer;
}

.close-menu {
  font-size: 20px;
}

.text-dark {
  color: black;
}

.menu-bg {
  background-image: url(../img/menu/menu-bg.jpg);
  filter: brightness(50%);
  background-repeat: no-repeat;
  background-size: cover;
}

.main-btn-1 {
  background-image: url(../img/holiday-villa.jpg);
  /* filter: brightness(50%); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 45px;
  transition: transform 0.4s ease;
}

.main-btn-1:hover {
  transform: scale(1.01);
}

.main-btn-2 {
  background-image: url(../img/menu/bg.png);
  /* filter: brightness(50%); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 45px;
  transition: transform 0.4s ease;
}

.main-btn-2:hover {
  transform: scale(1.01);
}

.main-btn-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.59)), url(../img/workation_stays.jpg);
  /* filter: brightness(50%); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 45px;
  transition: transform 0.4s ease;
}

.main-btn-3:hover {
  transform: scale(1.01);
}

.sidebar-right {
  border: 1px solid white;
  width: 88%;
  margin: auto;
  padding: 80px 0px;
}

/* .span-line{
  width: 35px;
  height: 2px;
  background-color: #ed4109;
  position: relative;
  top: 45px;
} */

/* .swiper-slide{
  width: 560px !important;
} */

.contact-bg {
  background-image: url(../img/contactBG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 90%;
  position: relative;
  top: 40px;
}

.villa-gallery-container {
  background-image: url(../img/workation_stays.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.holiday-slider {
  background-image: url(../img/holiday-villa.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 20px;
}

.holiday-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.holiday-slider .img1 {
  height: 396px;
}

.fit-content {
  width: fit-content;
}

.villa-gallery-container h1 {
  font-size: 50px;
  font-family: "Raleway", sans-serif;
  color: rgb(37, 37, 37);
}

.contact-shadow {
  /* box-shadow: 0px 0px 3px 0px #c3c3c3;  */
  padding: 30px 20px;
  position: relative;
  /* left: 20px; */
  background-color: white;
  /* z-index: 4000; */
}

.scroll-button {
  position: fixed;
  bottom: 48px;
  right: 20px;
  width: 70px;
  height: 70px;
  /* padding: 10px 20px; */
  font-size: 16px;
  background-color: #978270bd;
  color: white;
  border: none;
  cursor: pointer;
  /* display: none; Initially hidden */
}

.border-icon {
  border: 1px solid white;
  padding: 10px;
  border-radius: 50px;
}


.bookbtn {
  height: 64px !important;
  padding: 0 40px !important;
  position: relative;
  top: 80px;
}


/* .scroll-button:hover {
  background-color: #ed4109;
} */

.bookForm {
  background-image: url(../img/aboutbg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  /* filter: brightness(90%); */
}

.gap-30 {
  gap: 30px;
}

.section2-about {
  background-image: url(../img/section2About.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  padding-bottom: 180px;
  /* height: 100vh; */
}

.bookNowBtn {
  height: 40px !important;
  padding: 0 10px !important;
}

.down-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 185px;
  /* height: 50vh; */
}

.chevron {
  position: absolute;
  width: 2.1rem;
  height: 0.48rem;
  opacity: 0;
  transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #ffffff;
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

.pb-sm-100 {
  padding-bottom: 100px;
}

.pt-sm-100 {
  padding-top: 100px;
}

.border-right {
  border-right: 2px solid;
  padding-right: 15px;
}

iframe {
  width: 20px;
}

.instagram-block {
  /* background-color: #f4f4f4; */
  border: 1px solid #e5dbd7;
  width: 160px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-direction: column;
}

#copyMessage {
  color: green;
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

#copyMessage.show {
  opacity: 1;
  visibility: visible;
}

.aminities-colss {
  width: 120px;
  max-width: 138px;
}

.address:hover {
  color: #ed4109;
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

.logo-mobile {
  display: none;
}

.shadow-card {
  box-shadow: 0px 2px 10px 0px #bbafaf57;
  transition: all 0.5s ease-in-out;
}

.shadow-card:hover {
  transform: scale(1.02);
  transition: all .5s ease-in-out;
}

.shadow-card:hover h4 {
  color: #ed4109;
}

.sample-slider [class^="swiper-button-"] {
  font-size: 14px !important;
}

.review-btn {
  padding: 1px 10px;
  color: white;
  border-radius: 6px;
  background-color: rgb(62 140 231);
}

.review-section {
  background-color: #f4f4f4;
  padding: 10px 10px;
}

.review-card {
  width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  /* margin: 10px 0px; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.review-card .photo {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  /* border: 3px solid #0d6efd; */
}

.review-card .photo img {
  width: 100%;
  height: auto;
}

.review-card .name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

.review-card .review {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
  line-height: 1.5;
}

.review-card .stars {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.review-card .stars li {
  display: inline-block;
  color: #ffc107;
  font-size: 16px;
}

.for-booking {
  display: flex;
}

.for-inquiry {
  display: flex;
}

.box {
  border: 1px solid #ed4109;
  border-radius: 10px;
  padding: 20px;
  gap: 20px;
  /* margin: 20px; */
}

.text-orange {
  color: #ed4109;
}

.bg-orange {
  background-color: #ed4109 !important;
}

.box h3 {
  color: #ed4109;
}

.border-img {
  border-radius: 11px;
}

.bullet::before {
  content: "\2022";
  /* Unicode for a bullet character */
  margin-right: 10px;
  /* Adjusts spacing between the bullet and the text */
  color: black;
  /* Bullet color, you can change it as needed */
}

.border-r {
  border-right: 1px solid rgba(202, 199, 199, 0.671);
}

.ms-4 {
  margin-left: 17px !important;
}

.border-b {
  border-bottom: 1px solid #b1abab75;
}

.pt-md-4 {
  padding-top: 1.5rem !important;
}

.rating {
  background: #ed4109;
  color: white;
  padding: 14px 16px;
  border-radius: 11px;
}

.text-end {
  text-align: end;
}

.resort-image {
  position: relative;
  cursor: pointer;
}

.resort-image img {
  width: 100%;
  border-radius: 10px;
  max-height: 433px;
  object-fit: cover;
}

.g-front-img {
  width: 100%;
  border-radius: 10px;
  height: 200px !important;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.image-overlay1 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 4px;
  border-radius: 5px;
  font-size: 10px;
}

.image-overlay2 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 4px;
  border-radius: 5px;
  font-size: 10px;
}

.image-overlay3 {
  position: absolute;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 10px;
  font-size: 10px;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.click-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.445);
  color: black;
  font-size: 14px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
}

.click-overlay1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.445);
  color: black;
  font-size: 14px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
}

.resort-image:hover .click-overlay {
  display: flex;
}

.border-col {
  border: 1px solid #80808047;
  border-radius: 14px;
}

.d-lg-block {
  display: block;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.popup-width {
  width: 40% !important;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* gallery */

.p-gallery {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid img {
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.category {
  cursor: pointer;
  padding: 10px 16px;
}

.category.active {
  border-bottom: 3px solid #000;
}

.d-none {
  display: none;
}

.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.p-modal img {
  max-width: 100%;
  max-height: 100%;
  width: 700px;
  border-radius: 10px;
}

.p-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.p-prev {
  left: 10px;
}

.p-next {
  right: 10px;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

@media (max-width: 767px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* .features {
    display: block !important;
  } */

  .nearby-img {
    height: 140px !important;
  }

  .bg-grey h4 {
    font-size: 20px;
  }

  .pt-50px {
    padding-top: 50px !important;
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .holiday-slider .img1 {
    height: 250px;
  }

  .offer-btn {
    position: relative;
    top: 20px;
  }
}

.bg-grey {
  background-color: rgba(240, 238, 238, 0.73);
}

.rounded-bg {
  border-radius: 12px;
}

.fa-arrow-left {
  font-size: 20px !important;
}

.back-btn {
  position: relative;
  right: 40px;
}

.pt-50px {
  padding-top: 100px;
}

.mt-sm-13 {
  margin-top: 13px;
}






@media (max-width: 768px) {
  .mySlides {
    /* height: 300px; */
  }

  .popup-width {
    width: 90% !important;
  }

  .offer-10-1 {
    display: block !important;
    border-bottom-left-radius: 0px !important;
    border-radius: 8px;
  }

  .offer-10 {
    display: none;
  }

  .footer_flex .border-right {
    border-right: none;
    padding-right: 10px;
  }

  .popup-modal {
    padding-top: 220px !important;
  }

  .arrows-properties {
    position: relative;
    bottom: 195px;
  }

  .section2-about {
    background-image: none !important;
  }

  /* .for-booking{
    display: flex !important;
  }
  .for-inquiry{
    display: flex !important;
  } */

  .header.-mx-40 .header__container {
    margin: 0 10px;
  }

  .icon-phone {
    margin-right: 0px !important;
  }

  .border-right {
    border-right: 2px solid;
    padding-right: 10px;
  }

  .logo-mobile {
    display: block;
  }

  .number {
    font-size: 15px !important;
  }

  .d-mobile-noneP {
    display: none !important;
  }

  .pb-sm-100 {
    padding-bottom: 0px;
  }

  .pt-sm-100 {
    padding-top: 0px;
  }

  .swiper-wrapper {
    height: 200px !important;
  }

  .hero__title {
    bottom: 15px;
  }

  .logo {
    width: 136px;
  }

  .modal-content {
    width: 100%;
  }

  .button.-md {
    height: 40px;
    padding: 0 10px;
    color: white;
  }

  .close-menu {
    display: none;
  }

  .menuFullScreen-links a {
    color: rgb(255, 255, 255);
    line-height: 1;
  }

  .menuFullScreen-links .d-mobile-none {
    display: none !important;
  }

  .about-heading {
    position: relative;
    bottom: 212px;
  }

  .menuFullScreen__close {
    position: absolute;
    top: 32px;
    left: 20px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
  }

  .main-heading2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .main-heading1 {
    font-size: 80px;
  }

  .main-heading1 {
    top: 30px;
  }

  .heading {
    font-size: 28px;
  }

  .scroll-button {
    bottom: 64px;
    width: 60px;
    height: 60px;
  }

  .span-line {
    top: 33px;
  }

  .menuFullScreen__close .icon span {
    background-color: rgb(255, 255, 255);
  }

  .text-9 {
    color: black;
  }

  .text-26 {
    font-size: 26px !important;
  }

  .sidebar-text-color {
    color: rgb(255, 255, 255);
    font-size: 26px !important;
  }

  .slidesimg {
    width: 100%;
    height: 300px;
  }

  .arrows {
    position: relative;
    bottom: 136px;
  }

  .overflow-auto {
    height: 46vh;
  }

  .colimg {
    width: 60px;
    height: 60px;
  }

  .footer-navlink {
    font-size: 13px !important;
  }

  .footer-item3 {
    gap: 30px !important;
  }

  .copyright {
    display: block;
    width: 100%;
  }

  .resort-categories {
    overflow: hidden;
    overflow-x: scroll;
  }

  .image-overlay3 h3 {
    font-size: 16px;
  }

  .image-overlay3 p {
    font-size: 12px !important;
  }

  .modal-content-custom {
    top: 50px;
  }

  .w-45 {
    width: 90% !important;
  }

  /* .room-card-shadow {
    height: 538px !important;
  } */
}

@media (min-width: 320px) and (max-width: 400px) {
  .footer-navlink {
    font-size: 11px !important;
  }

  .footer-item3 {
    gap: 28px;
  }

  .tab-btn {
    font-size: 15px !important;
  }
}


@media (min-width: 767px) and (max-width: 768px) {
  .hero__title {
    bottom: 10px;
  }

  .swiper-wrapper {
    height: 544px !important;
  }

  .menuFullScreen-links {
    gap: 3px;
  }

  .menuFullScreen__left {
    margin: 9px 0px;
  }

  .slidesimg-property {
    height: 400px;
  }

  .exp-img {
    height: 260px !important;
    object-fit: cover;
  }
}

@media (max-width: 1000px) {
  .column {
    overflow-x: scroll;
    float: left;
    width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 450px) {
  .swiper-wrapper {
    height: 280px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  /* .room-card-shadow {
    height: 560px !important;
  } */
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .swiper-wrapper {
    height: 744px !important;
  }

  .sw-height {
    height: 320px !important;
  }

  .sidebar-right {
    width: 96%;
  }

  .footer-item3 {
    gap: 10px !important;
  }
}

@media (min-width: 767px) and (max-width: 820px) {
  .gallery-grid img {
    height: 200px;
  }
}


/* Modal background */
.modal-custom {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dark background */
  justify-content: center;
  align-items: center;
}

/* Modal inner content */
.modal-content-custom {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  position: relative;
  z-index: 1001;
  margin: auto;
}

/* Modal image styling */
.modal-image {
  width: 600px;
  height: 360px;
  border-radius: 10px;
  object-fit: cover;
}

.popup-image {
  height: auto !important;
}

/* Close button */
.close-custom {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.close-custom {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  border-radius: 10px;
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.gallery-nav button {
  background-color: #e65100;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-nav button:hover {
  background-color: #bf360c;
}

ul.amenity-list {
  list-style: none !important;
  padding-left: 0;
  display: grid;
  /* gap: 6px; */
  grid-template-columns: repeat(2, 1fr);
}

ul.amenity-list li {
  margin: 8px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  list-style: none !important;
}

.room-card-shadow {
  box-shadow: 0px 2px 10px 0px #bbafaf57;
  border-radius: 10px;
  /* height: 630px; */
}

.room-amenities {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 1fr);
}

.room-card-shadow ul,
li {
  list-style: disc !important;
}

.know-room {
  background-color: #ff6432;
  color: white;
  padding: 1px 5px;
  border-radius: 4px;
  width: fit-content;
}

.know-room:hover {
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: 1px solid #ff6432;
}

.booking-form-img {
  height: 580px;
  object-fit: cover;
}

.tooltip-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  /* show above the icon */
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 8px;
  white-space: nowrap;
  font-size: 12px;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.tooltip-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.Things-to-btn {
  border: 1px solid #443f3fff;
  text-align: center;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .sticky-column {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }
}

#sticky-section .sticky-wrap {
  position: relative;
}

#sticky-section .sticky-column {
  position: sticky;
  top: 50px;
  align-self: flex-start;
  width: 100%;
  box-sizing: border-box;
  background: #fffaf8;
}

.w-45 {
  width: 45%;
}

.meals-icon {
  display: flex;
  gap: 10px;
}

.meals-icon img {
  width: 20px !important;
}

.meals-icon1 {
  display: flex;
  gap: 10px;
}

.meals-icon1 img {
  width: 40px !important;
}

/* faq */
.faq-heading {
  font-weight: 600;
  font-size: 1.8rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d35400;
}

.faq-answer {
  display: none;
  padding: 0 0 1rem 0;
  color: #555;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.arrow-f {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

/* Search styling */
.faq-search input {
  border-radius: 8px;
  padding: 10px 15px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
  }

}

.ques-card {
  text-align: center;
  border: 1px solid #80808047;
  border-radius: 10px;
}

.simple-modal {
  display: none;
  /* hidden */
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  z-index: 9999;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Dialog box */
.simple-modal__dialog {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

/* Visible state */
.simple-modal.open {
  display: flex;
}

.simple-modal.open .simple-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.simple-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Body content */
.simple-modal__body {
  padding: 28px 28px 24px 28px;
  color: #222;
  font-family: Arial, sans-serif;
}

.simple-modal__body h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.simple-modal__body ul {
  margin: 0;
  padding-left: 18px;
  color: #444;
}

.simple-modal__body li {
  margin-bottom: 8px;
}

.simple-modal__body img {
  height: 250px;
  object-fit: cover;
}

.nearby-img {
  height: 140px !important;
}

.copy-img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}

/* Buttons style (so they look okay out-of-the-box) */
.js-open-modal {
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #fffaf8;
}

.js-open-modal1 {
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.details-col {
  background-color: #3a3212e5;
  color: white;
  padding-left: 20px;
}

.Packages-section {
  padding: 10px 15px;
  background-color: #fff4ee;
  color: white;
  border: 1px solid #ed41092e;
}

.text-wheat {
  color: wheat;
}

.log-off {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

.resort-images {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.w-100 {
  width: 100%;
}

.border-t {
  border-top: 1px solid rgb(160, 160, 160);
}

.features {
  display: grid;
  /* Creates a responsive grid that fills columns as needed */
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 18px;
  margin: 24px 0;
}


/* Desktop */
@media (min-width: 1200px) {
    .features {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Laptop */
@media (max-width: 1199px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}



.feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(20, 20, 30, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(20, 20, 30, 0.08);
}

.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  /* background: linear-gradient(180deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06)); */
  transition: transform .22s ease, background .22s ease;
}

.feature:hover .icon {
  transform: scale(1.08) rotate(-6deg);
  /* background: linear-gradient(180deg, rgba(255, 107, 53, 0.18), rgba(255, 107, 53, 0.04)); */
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: #ff6b35;
}

.feature h4 {
  margin: 0;
  font-size: 15px;
  color: #111827;
  font-weight: 600;
}

@media (max-width:520px) {
  .icon {
    width: 48px;
    height: 48px;
  }

  .icon svg {
    width: 22px;
    height: 22px;
  }

  .feature {
    padding: 14px;
    border-radius: 10px;
  }

  /* .features {
    display: block;
  } */
}

/* Responsive */
@media (max-width: 480px) {
  .simple-modal__dialog {
    padding: 0;
    max-width: 95%;
  }

  .simple-modal__body {
    padding: 18px;
  }
}

.f-24 {
  font-size: 24px;
}

.custom-tabs {
  /* border-bottom: 1px solid #8080804a; */
}

.custom-tabs .tab-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.custom-tabs .tab-btn.active {
  border-bottom: 2px solid #ed4109;
  /* Bootstrap primary */
  color: #ed4109;
}

.tab-section {
  display: block;
  /* show all tabs on initial page load */
}

.custom-tabs {
  gap: 20px;
  /* spacing between buttons and divider */
}

/* Divider styling */
.custom-tabs .divider {
  width: 2px;
  height: 24px;
  /* small vertical line */
  background-color: #ddd;
}

/* Buttons */
.custom-tabs .tab-btn {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

/* TEXT ONLY HOVER ANIMATION */
.hover-text {
  position: relative;
  overflow: hidden;
}

/* duplicate text layer */
.hover-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: inherit;
  opacity: 0;
  transition: 0.35s ease;
}

/* original text slide */
.hover-text span {
  display: inline-block;
  transition: 0.35s ease;
}

/* on hover */
.hover-text:hover span {
  transform: translateY(-120%);
  opacity: 0;
}

.hover-text:hover::after {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}



/* Hero Section */
.hero-section-blog {
  /* padding: 60px 5%; */
  text-align: center;
}

.category-blog {
  color: #ff5a00;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.hero-section-blog h2 {
  font-size: 2.5rem;
  margin: 15px 0;
  font-weight: 700;
  color: #121212;
}

.subtitle-blog {
  font-size: 1.2rem;
  color: #666;
  /* max-width: 800px; */
  margin: 0 auto 40px;
}

/* Layout Grid */
.content-wrapper-blog {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto;
  /* padding: 0 5%; */
  align-items: start;
  /* This is the JS fallback helper */
}

/* Ensure the parent allows absolute positioning for the bottom-out state */
.sidebar-blog {
  position: relative;
  height: 100%;
  align-self: stretch !important;
  /* Let it be as tall as the content */
}

/* Reset any previous sticky CSS that might conflict */
.sticky-info-blog {
  position: static;
  border: 1px solid #eeeeee;
  padding: 25px;
  border-radius: 10px;
  background: #fffaf8;
  /* Ensure width doesn't collapse when fixed */
  box-sizing: border-box;
}



.sticky-info-blog.at-bottom {
  position: absolute;
  bottom: 0;
  top: auto;
}

.sticky-info-blog h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ff5a00;
}

.sticky-info-blog p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.side-btn-blog {
  background: #121212;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* Article Content */
.main-content-blog h2 {
  font-size: 1.4rem;
  /* margin: 50px 0 20px; */
  color: #121212;
}

.feature-list-blog {
  padding-left: 20px;
  /* margin-bottom: 30px; */
}

.feature-list-blog li {
  margin: 10px 0px;
  list-style-type: none !important;
}

.feature-list-blog li::before {
  content: "✓";
  color: #ff5a00;
  font-weight: bold;
  margin-right: 10px;
}

/* Image Grid */
.image-grid-blog {
  margin: 40px 0;
}

.image-grid-blog img {
  width: 100%;
  border-radius: 12px;
}

/* card-blogs */
.comparison-blog {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.card-blog {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  border-left: 4px solid #ff5a00;
}

.card-blog h3 {
  margin-top: 0;
  color: #121212;
}



/* CTA Block */
.cta-footer {
  text-align: center;
  background: #f1592c;
  color: #fff;
  padding: 60px 30px;
  border-radius: 15px;
  margin-top: 80px;
}

.cta-footer h2 {
  color: white;
  margin-top: 0;
}

.btn-primary {
  display: inline-block;
  background: white;
  color: #ff5a00;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-section-blog h1 {
    font-size: 2.5rem;
  }

  .comparison-blog {
    flex-direction: column;
  }
}


/* Mobile Responsiveness (Tablets and Phones) */
@media (max-width: 991px) {
  .content-wrapper-blog {
    grid-template-columns: 1fr;
    /* Stack sidebar on top of content */
    padding: 0 5%;
    gap: 30px;
  }

  .main-content-blog h2 {
    font-size: 1.5rem;
  }

  .sidebar-blog {
    order: -1;
    /* Ensures the Check Availability box stays at the TOP on mobile */
    height: auto !important;
  }

  .sticky-info-blog {
    position: static !important;
    /* Force normal flow */
    width: 100% !important;
    margin-bottom: 20px;
    box-shadow: none;
  }
}

/* countdown */
.countdown-container {
  text-align: center;
  padding: 10px 20px;
  background: var(--dark-bg);
  color: #000000;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.countdown-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  /* gap: 20px; */
}

.countdown-wrapper-p {
  display: flex;
  justify-content: center;
  /* gap: 20px; */
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-block-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.flip-card {
  background: var(--card-bg);
  width: 60px;
  /* padding: 10px 0px; */
  font-size: 2rem;
  font-weight: 700;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 4px rgb(0 0 0 / 15%);
  border-bottom: 3px solid #f25c05;
  margin-bottom: 10px;
}

.flip-card-p {
  background: var(--card-bg);
  width: 30px;
  /* padding: 10px 0px; */
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 4px rgb(0 0 0 / 15%);
  border-bottom: 3px solid #f25c05;
}

/* Middle line effect like the reference image */
/* .flip-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.5);
} */

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .flip-card {
    width: 60px;
    font-size: 1.8rem;
  }

  .time-block {
    min-width: 70px;
  }

  .countdown-wrapper-p {
    display: flex;
    justify-content: start;
    /* gap: 20px; */
  }
}

.offer-10 {
  background: #ed4109;
  color: white;
  padding: 4px 21px 4px 21px;
  border-bottom-left-radius: 22px;
}

.offer-btn {
  position: relative;
  overflow: hidden;
  background: #ed4109;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
}

/* Shine effect */
.offer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.offer-10-1 {
  background: #ed4109;
  color: white;
  padding: 4px 21px 4px 21px;
  border-bottom-left-radius: 22px;
  display: none;
}




/* vendor css */
/*!
 * Bootstrap Reboot v5.1.3 
 */
*,
:after,
:before {
  box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25
}

hr:not([size]) {
  height: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2
}

h1 {
  font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
  h1 {
    font-size: 2.5rem
  }
}

h2 {
  font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
  h2 {
    font-size: 2rem
  }
}

h3 {
  font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
  h3 {
    font-size: 1.75rem
  }
}

h4 {
  font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
  h4 {
    font-size: 1.5rem
  }
}

h5 {
  font-size: 1.25rem
}

h6 {
  font-size: 1rem
}

/* p {
    margin-top: 0;
    margin-bottom: 1rem
} */

abbr[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit
}

ol,
ul {
  padding-left: 2rem
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0
}

dt {
  font-weight: 700
}

dd {
  margin-bottom: .5rem;
  margin-left: 0
}

blockquote {
  margin: 0 0 1rem
}

b,
strong {
  font-weight: bolder
}

small {
  font-size: .875em
}

mark {
  padding: .2em;
  background-color: #fcf8e3
}

sub,
sup {
  position: relative;
  font-size: .75em;
  line-height: 0;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

/* a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
} */

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: .875em
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal
}

code {
  font-size: .875em;
  color: #d63384;
  word-wrap: break-word
}

a>code {
  color: inherit
}

kbd {
  padding: .2rem .4rem;
  font-size: .875em;
  color: #fff;
  background-color: #212529;
  border-radius: .2rem
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700
}

figure {
  margin: 0 0 1rem
}

img,
svg {
  vertical-align: middle
}

table {
  caption-side: bottom;
  border-collapse: collapse
}

caption {
  padding-top: .5rem;
  padding-bottom: .5rem;
  color: #6c757d;
  text-align: left
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit
}

label {
  display: inline-block
}

button {
  border-radius: 0
}

button:focus:not(:focus-visible) {
  outline: 0
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

button,
select {
  text-transform: none
}

[role=button] {
  cursor: pointer
}

select {
  word-wrap: normal
}

select:disabled {
  opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
  display: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer
}

::-moz-focus-inner {
  padding: 0;
  border-style: none
}

textarea {
  resize: vertical
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: calc(1.275rem + .3vw);
  line-height: inherit
}

@media (min-width:1200px) {
  legend {
    font-size: 1.5rem
  }
}

legend+* {
  clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0
}

::-webkit-inner-spin-button {
  height: auto
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield
}

::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
  padding: 0
}

::file-selector-button {
  font: inherit
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button
}

output {
  display: inline-block
}

iframe {
  border: 0
}

summary {
  display: list-item;
  cursor: pointer
}

progress {
  vertical-align: baseline
}

[hidden] {
  display: none !important
}

/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto
}

@media (min-width:576px) {

  .container,
  .container-sm {
    max-width: 540px
  }
}

@media (min-width:768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px
  }
}

@media (min-width:992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px
  }
}

@media (min-width:1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px
  }
}

@media (min-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px
  }
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)*-1);
  margin-right: calc(var(--bs-gutter-x)*-0.5);
  margin-left: calc(var(--bs-gutter-x)*-0.5)
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)*0.5);
  padding-left: calc(var(--bs-gutter-x)*0.5);
  margin-top: var(--bs-gutter-y)
}

.col {
  flex: 1 0 0%
}

.row-cols-auto>* {
  flex: 0 0 auto;
  width: auto
}

.row-cols-1>* {
  flex: 0 0 auto;
  width: 100%
}

.row-cols-2>* {
  flex: 0 0 auto;
  width: 50%
}

.row-cols-3>* {
  flex: 0 0 auto;
  width: 33.33333%
}

.row-cols-4>* {
  flex: 0 0 auto;
  width: 25%
}

.row-cols-5>* {
  flex: 0 0 auto;
  width: 20%
}

.row-cols-6>* {
  flex: 0 0 auto;
  width: 16.66667%
}

.col-auto {
  flex: 0 0 auto;
  width: auto
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%
}

.col-3 {
  flex: 0 0 auto;
  width: 25%
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%
}

.col-6 {
  flex: 0 0 auto;
  width: 50%
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%
}

.col-9 {
  flex: 0 0 auto;
  width: 75%
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%
}

.col-12 {
  flex: 0 0 auto;
  width: 100%
}

.offset-1 {
  margin-left: 8.33333%
}

.offset-2 {
  margin-left: 16.66667%
}

.offset-3 {
  margin-left: 25%
}

.offset-4 {
  margin-left: 33.33333%
}

.offset-5 {
  margin-left: 41.66667%
}

.offset-6 {
  margin-left: 50%
}

.offset-7 {
  margin-left: 58.33333%
}

.offset-8 {
  margin-left: 66.66667%
}

.offset-9 {
  margin-left: 75%
}

.offset-10 {
  margin-left: 83.33333%
}

.offset-11 {
  margin-left: 91.66667%
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem
}

@media (min-width:576px) {
  .col-sm {
    flex: 1 0 0%
  }

  .row-cols-sm-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-sm-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-sm-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-sm-3>* {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .row-cols-sm-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-sm-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-sm-6>* {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-sm-0 {
    margin-left: 0
  }

  .offset-sm-1 {
    margin-left: 8.33333%
  }

  .offset-sm-2 {
    margin-left: 16.66667%
  }

  .offset-sm-3 {
    margin-left: 25%
  }

  .offset-sm-4 {
    margin-left: 33.33333%
  }

  .offset-sm-5 {
    margin-left: 41.66667%
  }

  .offset-sm-6 {
    margin-left: 50%
  }

  .offset-sm-7 {
    margin-left: 58.33333%
  }

  .offset-sm-8 {
    margin-left: 66.66667%
  }

  .offset-sm-9 {
    margin-left: 75%
  }

  .offset-sm-10 {
    margin-left: 83.33333%
  }

  .offset-sm-11 {
    margin-left: 91.66667%
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:768px) {
  .col-md {
    flex: 1 0 0%
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-md-0 {
    margin-left: 0
  }

  .offset-md-1 {
    margin-left: 8.33333%
  }

  .offset-md-2 {
    margin-left: 16.66667%
  }

  .offset-md-3 {
    margin-left: 25%
  }

  .offset-md-4 {
    margin-left: 33.33333%
  }

  .offset-md-5 {
    margin-left: 41.66667%
  }

  .offset-md-6 {
    margin-left: 50%
  }

  .offset-md-7 {
    margin-left: 58.33333%
  }

  .offset-md-8 {
    margin-left: 66.66667%
  }

  .offset-md-9 {
    margin-left: 75%
  }

  .offset-md-10 {
    margin-left: 83.33333%
  }

  .offset-md-11 {
    margin-left: 91.66667%
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:992px) {
  .col-lg {
    flex: 1 0 0%
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-lg-0 {
    margin-left: 0
  }

  .offset-lg-1 {
    margin-left: 8.33333%
  }

  .offset-lg-2 {
    margin-left: 16.66667%
  }

  .offset-lg-3 {
    margin-left: 25%
  }

  .offset-lg-4 {
    margin-left: 33.33333%
  }

  .offset-lg-5 {
    margin-left: 41.66667%
  }

  .offset-lg-6 {
    margin-left: 50%
  }

  .offset-lg-7 {
    margin-left: 58.33333%
  }

  .offset-lg-8 {
    margin-left: 66.66667%
  }

  .offset-lg-9 {
    margin-left: 75%
  }

  .offset-lg-10 {
    margin-left: 83.33333%
  }

  .offset-lg-11 {
    margin-left: 91.66667%
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:1200px) {
  .col-xl {
    flex: 1 0 0%
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-xl-0 {
    margin-left: 0
  }

  .offset-xl-1 {
    margin-left: 8.33333%
  }

  .offset-xl-2 {
    margin-left: 16.66667%
  }

  .offset-xl-3 {
    margin-left: 25%
  }

  .offset-xl-4 {
    margin-left: 33.33333%
  }

  .offset-xl-5 {
    margin-left: 41.66667%
  }

  .offset-xl-6 {
    margin-left: 50%
  }

  .offset-xl-7 {
    margin-left: 58.33333%
  }

  .offset-xl-8 {
    margin-left: 66.66667%
  }

  .offset-xl-9 {
    margin-left: 75%
  }

  .offset-xl-10 {
    margin-left: 83.33333%
  }

  .offset-xl-11 {
    margin-left: 91.66667%
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:1400px) {
  .col-xxl {
    flex: 1 0 0%
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-xxl-0 {
    margin-left: 0
  }

  .offset-xxl-1 {
    margin-left: 8.33333%
  }

  .offset-xxl-2 {
    margin-left: 16.66667%
  }

  .offset-xxl-3 {
    margin-left: 25%
  }

  .offset-xxl-4 {
    margin-left: 33.33333%
  }

  .offset-xxl-5 {
    margin-left: 41.66667%
  }

  .offset-xxl-6 {
    margin-left: 50%
  }

  .offset-xxl-7 {
    margin-left: 58.33333%
  }

  .offset-xxl-8 {
    margin-left: 66.66667%
  }

  .offset-xxl-9 {
    margin-left: 75%
  }

  .offset-xxl-10 {
    margin-left: 83.33333%
  }

  .offset-xxl-11 {
    margin-left: 91.66667%
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem
  }
}

.d-inline {
  display: inline !important
}

.d-inline-block {
  display: inline-block !important
}

.d-block {
  display: block !important
}

.d-grid {
  display: grid !important
}

.d-table {
  display: table !important
}

.d-table-row {
  display: table-row !important
}

.d-table-cell {
  display: table-cell !important
}

.d-flex {
  display: flex !important
}

.d-inline-flex {
  display: inline-flex !important
}

.d-none {
  display: none !important
}

.flex-fill {
  flex: 1 1 auto !important
}

.flex-row {
  flex-direction: row !important
}

.flex-column {
  flex-direction: column !important
}

.flex-row-reverse {
  flex-direction: row-reverse !important
}

.flex-column-reverse {
  flex-direction: column-reverse !important
}

.flex-grow-0 {
  flex-grow: 0 !important
}

.flex-grow-1 {
  flex-grow: 1 !important
}

.flex-shrink-0 {
  flex-shrink: 0 !important
}

.flex-shrink-1 {
  flex-shrink: 1 !important
}

.flex-wrap {
  flex-wrap: wrap !important
}

.flex-nowrap {
  flex-wrap: nowrap !important
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important
}

.justify-content-start {
  justify-content: flex-start !important
}

.justify-content-end {
  justify-content: flex-end !important
}

.justify-content-center {
  justify-content: center !important
}

.justify-content-between {
  justify-content: space-between !important
}

.justify-content-around {
  justify-content: space-around !important
}

.justify-content-evenly {
  justify-content: space-evenly !important
}

.align-items-start {
  align-items: flex-start !important
}

.align-items-end {
  align-items: flex-end !important
}

.align-items-center {
  align-items: center !important
}

.align-items-baseline {
  align-items: baseline !important
}

.align-items-stretch {
  align-items: stretch !important
}

.align-content-start {
  align-content: flex-start !important
}

.align-content-end {
  align-content: flex-end !important
}

.align-content-center {
  align-content: center !important
}

.align-content-between {
  align-content: space-between !important
}

.align-content-around {
  align-content: space-around !important
}

.align-content-stretch {
  align-content: stretch !important
}

.align-self-auto {
  align-self: auto !important
}

.align-self-start {
  align-self: flex-start !important
}

.align-self-end {
  align-self: flex-end !important
}

.align-self-center {
  align-self: center !important
}

.align-self-baseline {
  align-self: baseline !important
}

.align-self-stretch {
  align-self: stretch !important
}

.order-first {
  order: -1 !important
}

.order-0 {
  order: 0 !important
}

.order-1 {
  order: 1 !important
}

.order-2 {
  order: 2 !important
}

.order-3 {
  order: 3 !important
}

.order-4 {
  order: 4 !important
}

.order-5 {
  order: 5 !important
}

.order-last {
  order: 6 !important
}

.m-0 {
  margin: 0 !important
}

.m-1 {
  margin: .25rem !important
}

.m-2 {
  margin: .5rem !important
}

.m-3 {
  margin: 1rem !important
}

.m-4 {
  margin: 1.5rem !important
}

.m-5 {
  margin: 3rem !important
}

.m-auto {
  margin: auto !important
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important
}

.mx-1 {
  margin-right: .25rem !important;
  margin-left: .25rem !important
}

.mx-2 {
  margin-right: .5rem !important;
  margin-left: .5rem !important
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important
}

.my-1 {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important
}

.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important
}

.mt-0 {
  margin-top: 0 !important
}

.mt-1 {
  margin-top: .25rem !important
}

.mt-2 {
  margin-top: .5rem !important
}

.mt-3 {
  margin-top: 1rem !important
}

.mt-4 {
  margin-top: 1.5rem !important
}

/* .mt-5 {
    margin-top: 3rem !important
} */

.mt-auto {
  margin-top: auto !important
}

.me-0 {
  margin-right: 0 !important
}

.me-1 {
  margin-right: .25rem !important
}

.me-2 {
  margin-right: .5rem !important
}

.me-3 {
  margin-right: 1rem !important
}

.me-4 {
  margin-right: 1.5rem !important
}

.me-5 {
  margin-right: 3rem !important
}

.me-auto {
  margin-right: auto !important
}

.mb-0 {
  margin-bottom: 0 !important
}

.mb-1 {
  margin-bottom: .25rem !important
}

.mb-2 {
  margin-bottom: .5rem !important
}

.mb-3 {
  margin-bottom: 1rem !important
}

.mb-4 {
  margin-bottom: 1.5rem !important
}

/* .mb-5 {
    margin-bottom: 3rem !important
} */

.mb-auto {
  margin-bottom: auto !important
}

.ms-0 {
  margin-left: 0 !important
}

.ms-1 {
  margin-left: .25rem !important
}

.ms-2 {
  margin-left: .5rem !important
}

.ms-3 {
  margin-left: 1rem !important
}

.ms-4 {
  margin-left: 1.5rem !important
}

.ms-5 {
  margin-left: 3rem !important
}

.ms-auto {
  margin-left: auto !important
}

.p-0 {
  padding: 0 !important
}

.p-1 {
  padding: .25rem !important
}

.p-2 {
  padding: .5rem !important
}

.p-3 {
  padding: 1rem !important
}

.p-4 {
  padding: 1.5rem !important
}

.p-5 {
  padding: 3rem !important
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important
}

.px-1 {
  padding-right: .25rem !important;
  padding-left: .25rem !important
}

.px-2 {
  padding-right: .5rem !important;
  padding-left: .5rem !important
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important
}

.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important
}

.pt-0 {
  padding-top: 0 !important
}

.pt-1 {
  padding-top: .25rem !important
}

.pt-2 {
  padding-top: .5rem !important
}

.pt-3 {
  padding-top: 1rem !important
}

.pt-4 {
  padding-top: 1.5rem !important
}

.pt-5 {
  padding-top: 3rem !important
}

.pe-0 {
  padding-right: 0 !important
}

.pe-1 {
  padding-right: .25rem !important
}

.pe-2 {
  padding-right: .5rem !important
}

.pe-3 {
  padding-right: 1rem !important
}

.pe-4 {
  padding-right: 1.5rem !important
}

.pe-5 {
  padding-right: 3rem !important
}

.pb-0 {
  padding-bottom: 0 !important
}

.pb-1 {
  padding-bottom: .25rem !important
}

.pb-2 {
  padding-bottom: .5rem !important
}

.pb-3 {
  padding-bottom: 1rem !important
}

.pb-4 {
  padding-bottom: 1.5rem !important
}

/* .pb-5 {
    padding-bottom: 3rem !important
} */

.ps-0 {
  padding-left: 0 !important
}

.ps-1 {
  padding-left: .25rem !important
}

.ps-2 {
  padding-left: .5rem !important
}

.ps-3 {
  padding-left: 1rem !important
}

.ps-4 {
  padding-left: 1.5rem !important
}

.ps-5 {
  padding-left: 3rem !important
}



@media (min-width:576px) {
  .d-sm-inline {
    display: inline !important
  }

  .d-sm-inline-block {
    display: inline-block !important
  }

  .d-sm-block {
    display: block !important
  }

  .d-sm-grid {
    display: grid !important
  }

  .d-sm-table {
    display: table !important
  }

  .d-sm-table-row {
    display: table-row !important
  }

  .d-sm-table-cell {
    display: table-cell !important
  }

  .d-sm-flex {
    display: flex !important
  }

  .d-sm-inline-flex {
    display: inline-flex !important
  }

  .d-sm-none {
    display: none !important
  }

  .flex-sm-fill {
    flex: 1 1 auto !important
  }

  .flex-sm-row {
    flex-direction: row !important
  }

  .flex-sm-column {
    flex-direction: column !important
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important
  }

  .justify-content-sm-start {
    justify-content: flex-start !important
  }

  .justify-content-sm-end {
    justify-content: flex-end !important
  }

  .justify-content-sm-center {
    justify-content: center !important
  }

  .justify-content-sm-between {
    justify-content: space-between !important
  }

  .justify-content-sm-around {
    justify-content: space-around !important
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important
  }

  .align-items-sm-start {
    align-items: flex-start !important
  }

  .align-items-sm-end {
    align-items: flex-end !important
  }

  .align-items-sm-center {
    align-items: center !important
  }

  .align-items-sm-baseline {
    align-items: baseline !important
  }

  .align-items-sm-stretch {
    align-items: stretch !important
  }

  .align-content-sm-start {
    align-content: flex-start !important
  }

  .align-content-sm-end {
    align-content: flex-end !important
  }

  .align-content-sm-center {
    align-content: center !important
  }

  .align-content-sm-between {
    align-content: space-between !important
  }

  .align-content-sm-around {
    align-content: space-around !important
  }

  .align-content-sm-stretch {
    align-content: stretch !important
  }

  .align-self-sm-auto {
    align-self: auto !important
  }

  .align-self-sm-start {
    align-self: flex-start !important
  }

  .align-self-sm-end {
    align-self: flex-end !important
  }

  .align-self-sm-center {
    align-self: center !important
  }

  .align-self-sm-baseline {
    align-self: baseline !important
  }

  .align-self-sm-stretch {
    align-self: stretch !important
  }

  .order-sm-first {
    order: -1 !important
  }

  .order-sm-0 {
    order: 0 !important
  }

  .order-sm-1 {
    order: 1 !important
  }

  .order-sm-2 {
    order: 2 !important
  }

  .order-sm-3 {
    order: 3 !important
  }

  .order-sm-4 {
    order: 4 !important
  }

  .order-sm-5 {
    order: 5 !important
  }

  .order-sm-last {
    order: 6 !important
  }

  .m-sm-0 {
    margin: 0 !important
  }

  .m-sm-1 {
    margin: .25rem !important
  }

  .m-sm-2 {
    margin: .5rem !important
  }

  .m-sm-3 {
    margin: 1rem !important
  }

  .m-sm-4 {
    margin: 1.5rem !important
  }

  .m-sm-5 {
    margin: 3rem !important
  }

  .m-sm-auto {
    margin: auto !important
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-sm-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-sm-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .my-sm-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-sm-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-sm-0 {
    margin-top: 0 !important
  }

  .mt-sm-1 {
    margin-top: .25rem !important
  }

  .mt-sm-2 {
    margin-top: .5rem !important
  }

  .mt-sm-3 {
    margin-top: 1rem !important
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important
  }

  .mt-sm-5 {
    margin-top: 3rem !important
  }

  .mt-sm-auto {
    margin-top: auto !important
  }

  .me-sm-0 {
    margin-right: 0 !important
  }

  .me-sm-1 {
    margin-right: .25rem !important
  }

  .me-sm-2 {
    margin-right: .5rem !important
  }

  .me-sm-3 {
    margin-right: 1rem !important
  }

  .me-sm-4 {
    margin-right: 1.5rem !important
  }

  .me-sm-5 {
    margin-right: 3rem !important
  }

  .me-sm-auto {
    margin-right: auto !important
  }

  .mb-sm-0 {
    margin-bottom: 0 !important
  }

  .mb-sm-1 {
    margin-bottom: .25rem !important
  }

  .mb-sm-2 {
    margin-bottom: .5rem !important
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important
  }

  .mb-sm-auto {
    margin-bottom: auto !important
  }

  .ms-sm-0 {
    margin-left: 0 !important
  }

  .ms-sm-1 {
    margin-left: .25rem !important
  }

  .ms-sm-2 {
    margin-left: .5rem !important
  }

  .ms-sm-3 {
    margin-left: 1rem !important
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important
  }

  .ms-sm-5 {
    margin-left: 3rem !important
  }

  .ms-sm-auto {
    margin-left: auto !important
  }

  .p-sm-0 {
    padding: 0 !important
  }

  .p-sm-1 {
    padding: .25rem !important
  }

  .p-sm-2 {
    padding: .5rem !important
  }

  .p-sm-3 {
    padding: 1rem !important
  }

  .p-sm-4 {
    padding: 1.5rem !important
  }

  .p-sm-5 {
    padding: 3rem !important
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-sm-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-sm-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-sm-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-sm-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-sm-0 {
    padding-top: 0 !important
  }

  .pt-sm-1 {
    padding-top: .25rem !important
  }

  .pt-sm-2 {
    padding-top: .5rem !important
  }

  .pt-sm-3 {
    padding-top: 1rem !important
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important
  }

  .pt-sm-5 {
    padding-top: 3rem !important
  }

  .pe-sm-0 {
    padding-right: 0 !important
  }

  .pe-sm-1 {
    padding-right: .25rem !important
  }

  .pe-sm-2 {
    padding-right: .5rem !important
  }

  .pe-sm-3 {
    padding-right: 1rem !important
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important
  }

  .pe-sm-5 {
    padding-right: 3rem !important
  }

  .pb-sm-0 {
    padding-bottom: 0 !important
  }

  .pb-sm-1 {
    padding-bottom: .25rem !important
  }

  .pb-sm-2 {
    padding-bottom: .5rem !important
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important
  }

  .ps-sm-0 {
    padding-left: 0 !important
  }

  .ps-sm-1 {
    padding-left: .25rem !important
  }

  .ps-sm-2 {
    padding-left: .5rem !important
  }

  .ps-sm-3 {
    padding-left: 1rem !important
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important
  }

  .ps-sm-5 {
    padding-left: 3rem !important
  }
}

@media (min-width:768px) {
  .d-md-inline {
    display: inline !important
  }

  .d-md-inline-block {
    display: inline-block !important
  }

  .d-md-block {
    display: block !important
  }

  .d-md-grid {
    display: grid !important
  }

  .d-md-table {
    display: table !important
  }

  .d-md-table-row {
    display: table-row !important
  }

  .d-md-table-cell {
    display: table-cell !important
  }

  .d-md-flex {
    display: flex !important
  }

  .d-md-inline-flex {
    display: inline-flex !important
  }

  .d-md-none {
    display: none !important
  }

  .flex-md-fill {
    flex: 1 1 auto !important
  }

  .flex-md-row {
    flex-direction: row !important
  }

  .flex-md-column {
    flex-direction: column !important
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important
  }

  .flex-md-wrap {
    flex-wrap: wrap !important
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important
  }

  .justify-content-md-start {
    justify-content: flex-start !important
  }

  .justify-content-md-end {
    justify-content: flex-end !important
  }

  .justify-content-md-center {
    justify-content: center !important
  }

  .justify-content-md-between {
    justify-content: space-between !important
  }

  .justify-content-md-around {
    justify-content: space-around !important
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important
  }

  .align-items-md-start {
    align-items: flex-start !important
  }

  .align-items-md-end {
    align-items: flex-end !important
  }

  .align-items-md-center {
    align-items: center !important
  }

  .align-items-md-baseline {
    align-items: baseline !important
  }

  .align-items-md-stretch {
    align-items: stretch !important
  }

  .align-content-md-start {
    align-content: flex-start !important
  }

  .align-content-md-end {
    align-content: flex-end !important
  }

  .align-content-md-center {
    align-content: center !important
  }

  .align-content-md-between {
    align-content: space-between !important
  }

  .align-content-md-around {
    align-content: space-around !important
  }

  .align-content-md-stretch {
    align-content: stretch !important
  }

  .align-self-md-auto {
    align-self: auto !important
  }

  .align-self-md-start {
    align-self: flex-start !important
  }

  .align-self-md-end {
    align-self: flex-end !important
  }

  .align-self-md-center {
    align-self: center !important
  }

  .align-self-md-baseline {
    align-self: baseline !important
  }

  .align-self-md-stretch {
    align-self: stretch !important
  }

  .order-md-first {
    order: -1 !important
  }

  .order-md-0 {
    order: 0 !important
  }

  .order-md-1 {
    order: 1 !important
  }

  .order-md-2 {
    order: 2 !important
  }

  .order-md-3 {
    order: 3 !important
  }

  .order-md-4 {
    order: 4 !important
  }

  .order-md-5 {
    order: 5 !important
  }

  .order-md-last {
    order: 6 !important
  }

  .m-md-0 {
    margin: 0 !important
  }

  .m-md-1 {
    margin: .25rem !important
  }

  .m-md-2 {
    margin: .5rem !important
  }

  .m-md-3 {
    margin: 1rem !important
  }

  .m-md-4 {
    margin: 1.5rem !important
  }

  .m-md-5 {
    margin: 3rem !important
  }

  .m-md-auto {
    margin: auto !important
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-md-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-md-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .my-md-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-md-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-md-0 {
    margin-top: 0 !important
  }

  .mt-md-1 {
    margin-top: .25rem !important
  }

  .mt-md-2 {
    margin-top: .5rem !important
  }

  .mt-md-3 {
    margin-top: 1rem !important
  }

  .mt-md-4 {
    margin-top: 1.5rem !important
  }

  .mt-md-5 {
    margin-top: 3rem !important
  }

  .mt-md-auto {
    margin-top: auto !important
  }

  .me-md-0 {
    margin-right: 0 !important
  }

  .me-md-1 {
    margin-right: .25rem !important
  }

  .me-md-2 {
    margin-right: .5rem !important
  }

  .me-md-3 {
    margin-right: 1rem !important
  }

  .me-md-4 {
    margin-right: 1.5rem !important
  }

  .me-md-5 {
    margin-right: 3rem !important
  }

  .me-md-auto {
    margin-right: auto !important
  }

  .mb-md-0 {
    margin-bottom: 0 !important
  }

  .mb-md-1 {
    margin-bottom: .25rem !important
  }

  .mb-md-2 {
    margin-bottom: .5rem !important
  }

  .mb-md-3 {
    margin-bottom: 1rem !important
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-md-5 {
    margin-bottom: 3rem !important
  }

  .mb-md-auto {
    margin-bottom: auto !important
  }

  .ms-md-0 {
    margin-left: 0 !important
  }

  .ms-md-1 {
    margin-left: .25rem !important
  }

  .ms-md-2 {
    margin-left: .5rem !important
  }

  .ms-md-3 {
    margin-left: 1rem !important
  }

  .ms-md-4 {
    margin-left: 1.5rem !important
  }

  .ms-md-5 {
    margin-left: 3rem !important
  }

  .ms-md-auto {
    margin-left: auto !important
  }

  .p-md-0 {
    padding: 0 !important
  }

  .p-md-1 {
    padding: .25rem !important
  }

  .p-md-2 {
    padding: .5rem !important
  }

  .p-md-3 {
    padding: 1rem !important
  }

  .p-md-4 {
    padding: 1.5rem !important
  }

  .p-md-5 {
    padding: 3rem !important
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-md-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-md-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-md-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-md-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-md-0 {
    padding-top: 0 !important
  }

  .pt-md-1 {
    padding-top: .25rem !important
  }

  .pt-md-2 {
    padding-top: .5rem !important
  }

  .pt-md-3 {
    padding-top: 1rem !important
  }

  .pt-md-4 {
    padding-top: 1.5rem !important
  }

  .pt-md-5 {
    padding-top: 3rem !important
  }

  .pe-md-0 {
    padding-right: 0 !important
  }

  .pe-md-1 {
    padding-right: .25rem !important
  }

  .pe-md-2 {
    padding-right: .5rem !important
  }

  .pe-md-3 {
    padding-right: 1rem !important
  }

  .pe-md-4 {
    padding-right: 1.5rem !important
  }

  .pe-md-5 {
    padding-right: 3rem !important
  }

  .pb-md-0 {
    padding-bottom: 0 !important
  }

  .pb-md-1 {
    padding-bottom: .25rem !important
  }

  .pb-md-2 {
    padding-bottom: .5rem !important
  }

  .pb-md-3 {
    padding-bottom: 1rem !important
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-md-5 {
    padding-bottom: 3rem !important
  }

  .ps-md-0 {
    padding-left: 0 !important
  }

  .ps-md-1 {
    padding-left: .25rem !important
  }

  .ps-md-2 {
    padding-left: .5rem !important
  }

  .ps-md-3 {
    padding-left: 1rem !important
  }

  .ps-md-4 {
    padding-left: 1.5rem !important
  }

  .ps-md-5 {
    padding-left: 3rem !important
  }
}

@media (min-width:992px) {
  .d-lg-inline {
    display: inline !important
  }

  .d-lg-inline-block {
    display: inline-block !important
  }

  .d-lg-block {
    display: block !important
  }

  .d-lg-grid {
    display: grid !important
  }

  .d-lg-table {
    display: table !important
  }

  .d-lg-table-row {
    display: table-row !important
  }

  .d-lg-table-cell {
    display: table-cell !important
  }

  .d-lg-flex {
    display: flex !important
  }

  .d-lg-inline-flex {
    display: inline-flex !important
  }

  .d-lg-none {
    display: none !important
  }

  .flex-lg-fill {
    flex: 1 1 auto !important
  }

  .flex-lg-row {
    flex-direction: row !important
  }

  .flex-lg-column {
    flex-direction: column !important
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important
  }

  .justify-content-lg-start {
    justify-content: flex-start !important
  }

  .justify-content-lg-end {
    justify-content: flex-end !important
  }

  .justify-content-lg-center {
    justify-content: center !important
  }

  .justify-content-lg-between {
    justify-content: space-between !important
  }

  .justify-content-lg-around {
    justify-content: space-around !important
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important
  }

  .align-items-lg-start {
    align-items: flex-start !important
  }

  .align-items-lg-end {
    align-items: flex-end !important
  }

  .align-items-lg-center {
    align-items: center !important
  }

  .align-items-lg-baseline {
    align-items: baseline !important
  }

  .align-items-lg-stretch {
    align-items: stretch !important
  }

  .align-content-lg-start {
    align-content: flex-start !important
  }

  .align-content-lg-end {
    align-content: flex-end !important
  }

  .align-content-lg-center {
    align-content: center !important
  }

  .align-content-lg-between {
    align-content: space-between !important
  }

  .align-content-lg-around {
    align-content: space-around !important
  }

  .align-content-lg-stretch {
    align-content: stretch !important
  }

  .align-self-lg-auto {
    align-self: auto !important
  }

  .align-self-lg-start {
    align-self: flex-start !important
  }

  .align-self-lg-end {
    align-self: flex-end !important
  }

  .align-self-lg-center {
    align-self: center !important
  }

  .align-self-lg-baseline {
    align-self: baseline !important
  }

  .align-self-lg-stretch {
    align-self: stretch !important
  }

  .order-lg-first {
    order: -1 !important
  }

  .order-lg-0 {
    order: 0 !important
  }

  .order-lg-1 {
    order: 1 !important
  }

  .order-lg-2 {
    order: 2 !important
  }

  .order-lg-3 {
    order: 3 !important
  }

  .order-lg-4 {
    order: 4 !important
  }

  .order-lg-5 {
    order: 5 !important
  }

  .order-lg-last {
    order: 6 !important
  }

  .m-lg-0 {
    margin: 0 !important
  }

  .m-lg-1 {
    margin: .25rem !important
  }

  .m-lg-2 {
    margin: .5rem !important
  }

  .m-lg-3 {
    margin: 1rem !important
  }

  .m-lg-4 {
    margin: 1.5rem !important
  }

  .m-lg-5 {
    margin: 3rem !important
  }

  .m-lg-auto {
    margin: auto !important
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-lg-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-lg-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .my-lg-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-lg-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-lg-0 {
    margin-top: 0 !important
  }

  .mt-lg-1 {
    margin-top: .25rem !important
  }

  .mt-lg-2 {
    margin-top: .5rem !important
  }

  .mt-lg-3 {
    margin-top: 1rem !important
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important
  }

  .mt-lg-5 {
    margin-top: 3rem !important
  }

  .mt-lg-auto {
    margin-top: auto !important
  }

  .me-lg-0 {
    margin-right: 0 !important
  }

  .me-lg-1 {
    margin-right: .25rem !important
  }

  .me-lg-2 {
    margin-right: .5rem !important
  }

  .me-lg-3 {
    margin-right: 1rem !important
  }

  .me-lg-4 {
    margin-right: 1.5rem !important
  }

  .me-lg-5 {
    margin-right: 3rem !important
  }

  .me-lg-auto {
    margin-right: auto !important
  }

  .mb-lg-0 {
    margin-bottom: 0 !important
  }

  .mb-lg-1 {
    margin-bottom: .25rem !important
  }

  .mb-lg-2 {
    margin-bottom: .5rem !important
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important
  }

  .mb-lg-auto {
    margin-bottom: auto !important
  }

  .ms-lg-0 {
    margin-left: 0 !important
  }

  .ms-lg-1 {
    margin-left: .25rem !important
  }

  .ms-lg-2 {
    margin-left: .5rem !important
  }

  .ms-lg-3 {
    margin-left: 1rem !important
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important
  }

  .ms-lg-5 {
    margin-left: 3rem !important
  }

  .ms-lg-auto {
    margin-left: auto !important
  }

  .p-lg-0 {
    padding: 0 !important
  }

  .p-lg-1 {
    padding: .25rem !important
  }

  .p-lg-2 {
    padding: .5rem !important
  }

  .p-lg-3 {
    padding: 1rem !important
  }

  .p-lg-4 {
    padding: 1.5rem !important
  }

  .p-lg-5 {
    padding: 3rem !important
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-lg-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-lg-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-lg-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-lg-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-lg-0 {
    padding-top: 0 !important
  }

  .pt-lg-1 {
    padding-top: .25rem !important
  }

  .pt-lg-2 {
    padding-top: .5rem !important
  }

  .pt-lg-3 {
    padding-top: 1rem !important
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important
  }

  .pt-lg-5 {
    padding-top: 3rem !important
  }

  .pe-lg-0 {
    padding-right: 0 !important
  }

  .pe-lg-1 {
    padding-right: .25rem !important
  }

  .pe-lg-2 {
    padding-right: .5rem !important
  }

  .pe-lg-3 {
    padding-right: 1rem !important
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important
  }

  .pe-lg-5 {
    padding-right: 3rem !important
  }

  .pb-lg-0 {
    padding-bottom: 0 !important
  }

  .pb-lg-1 {
    padding-bottom: .25rem !important
  }

  .pb-lg-2 {
    padding-bottom: .5rem !important
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important
  }

  .ps-lg-0 {
    padding-left: 0 !important
  }

  .ps-lg-1 {
    padding-left: .25rem !important
  }

  .ps-lg-2 {
    padding-left: .5rem !important
  }

  .ps-lg-3 {
    padding-left: 1rem !important
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important
  }

  .ps-lg-5 {
    padding-left: 3rem !important
  }
}

@media (min-width:1200px) {
  .d-xl-inline {
    display: inline !important
  }

  .d-xl-inline-block {
    display: inline-block !important
  }

  .d-xl-block {
    display: block !important
  }

  .d-xl-grid {
    display: grid !important
  }

  .d-xl-table {
    display: table !important
  }

  .d-xl-table-row {
    display: table-row !important
  }

  .d-xl-table-cell {
    display: table-cell !important
  }

  .d-xl-flex {
    display: flex !important
  }

  .d-xl-inline-flex {
    display: inline-flex !important
  }

  .d-xl-none {
    display: none !important
  }

  .flex-xl-fill {
    flex: 1 1 auto !important
  }

  .flex-xl-row {
    flex-direction: row !important
  }

  .flex-xl-column {
    flex-direction: column !important
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important
  }

  .justify-content-xl-start {
    justify-content: flex-start !important
  }

  .justify-content-xl-end {
    justify-content: flex-end !important
  }

  .justify-content-xl-center {
    justify-content: center !important
  }

  .justify-content-xl-between {
    justify-content: space-between !important
  }

  .justify-content-xl-around {
    justify-content: space-around !important
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important
  }

  .align-items-xl-start {
    align-items: flex-start !important
  }

  .align-items-xl-end {
    align-items: flex-end !important
  }

  .align-items-xl-center {
    align-items: center !important
  }

  .align-items-xl-baseline {
    align-items: baseline !important
  }

  .align-items-xl-stretch {
    align-items: stretch !important
  }

  .align-content-xl-start {
    align-content: flex-start !important
  }

  .align-content-xl-end {
    align-content: flex-end !important
  }

  .align-content-xl-center {
    align-content: center !important
  }

  .align-content-xl-between {
    align-content: space-between !important
  }

  .align-content-xl-around {
    align-content: space-around !important
  }

  .align-content-xl-stretch {
    align-content: stretch !important
  }

  .align-self-xl-auto {
    align-self: auto !important
  }

  .align-self-xl-start {
    align-self: flex-start !important
  }

  .align-self-xl-end {
    align-self: flex-end !important
  }

  .align-self-xl-center {
    align-self: center !important
  }

  .align-self-xl-baseline {
    align-self: baseline !important
  }

  .align-self-xl-stretch {
    align-self: stretch !important
  }

  .order-xl-first {
    order: -1 !important
  }

  .order-xl-0 {
    order: 0 !important
  }

  .order-xl-1 {
    order: 1 !important
  }

  .order-xl-2 {
    order: 2 !important
  }

  .order-xl-3 {
    order: 3 !important
  }

  .order-xl-4 {
    order: 4 !important
  }

  .order-xl-5 {
    order: 5 !important
  }

  .order-xl-last {
    order: 6 !important
  }

  .m-xl-0 {
    margin: 0 !important
  }

  .m-xl-1 {
    margin: .25rem !important
  }

  .m-xl-2 {
    margin: .5rem !important
  }

  .m-xl-3 {
    margin: 1rem !important
  }

  .m-xl-4 {
    margin: 1.5rem !important
  }

  .m-xl-5 {
    margin: 3rem !important
  }

  .m-xl-auto {
    margin: auto !important
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-xl-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-xl-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .my-xl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-xl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-xl-0 {
    margin-top: 0 !important
  }

  .mt-xl-1 {
    margin-top: .25rem !important
  }

  .mt-xl-2 {
    margin-top: .5rem !important
  }

  .mt-xl-3 {
    margin-top: 1rem !important
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important
  }

  .mt-xl-5 {
    margin-top: 3rem !important
  }

  .mt-xl-auto {
    margin-top: auto !important
  }

  .me-xl-0 {
    margin-right: 0 !important
  }

  .me-xl-1 {
    margin-right: .25rem !important
  }

  .me-xl-2 {
    margin-right: .5rem !important
  }

  .me-xl-3 {
    margin-right: 1rem !important
  }

  .me-xl-4 {
    margin-right: 1.5rem !important
  }

  .me-xl-5 {
    margin-right: 3rem !important
  }

  .me-xl-auto {
    margin-right: auto !important
  }

  .mb-xl-0 {
    margin-bottom: 0 !important
  }

  .mb-xl-1 {
    margin-bottom: .25rem !important
  }

  .mb-xl-2 {
    margin-bottom: .5rem !important
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important
  }

  .mb-xl-auto {
    margin-bottom: auto !important
  }

  .ms-xl-0 {
    margin-left: 0 !important
  }

  .ms-xl-1 {
    margin-left: .25rem !important
  }

  .ms-xl-2 {
    margin-left: .5rem !important
  }

  .ms-xl-3 {
    margin-left: 1rem !important
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important
  }

  .ms-xl-5 {
    margin-left: 3rem !important
  }

  .ms-xl-auto {
    margin-left: auto !important
  }

  .p-xl-0 {
    padding: 0 !important
  }

  .p-xl-1 {
    padding: .25rem !important
  }

  .p-xl-2 {
    padding: .5rem !important
  }

  .p-xl-3 {
    padding: 1rem !important
  }

  .p-xl-4 {
    padding: 1.5rem !important
  }

  .p-xl-5 {
    padding: 3rem !important
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-xl-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-xl-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-xl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-xl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-xl-0 {
    padding-top: 0 !important
  }

  .pt-xl-1 {
    padding-top: .25rem !important
  }

  .pt-xl-2 {
    padding-top: .5rem !important
  }

  .pt-xl-3 {
    padding-top: 1rem !important
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important
  }

  .pt-xl-5 {
    padding-top: 3rem !important
  }

  .pe-xl-0 {
    padding-right: 0 !important
  }

  .pe-xl-1 {
    padding-right: .25rem !important
  }

  .pe-xl-2 {
    padding-right: .5rem !important
  }

  .pe-xl-3 {
    padding-right: 1rem !important
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important
  }

  .pe-xl-5 {
    padding-right: 3rem !important
  }

  .pb-xl-0 {
    padding-bottom: 0 !important
  }

  .pb-xl-1 {
    padding-bottom: .25rem !important
  }

  .pb-xl-2 {
    padding-bottom: .5rem !important
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important
  }

  .ps-xl-0 {
    padding-left: 0 !important
  }

  .ps-xl-1 {
    padding-left: .25rem !important
  }

  .ps-xl-2 {
    padding-left: .5rem !important
  }

  .ps-xl-3 {
    padding-left: 1rem !important
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important
  }

  .ps-xl-5 {
    padding-left: 3rem !important
  }
}

@media (min-width:1400px) {
  .d-xxl-inline {
    display: inline !important
  }

  .d-xxl-inline-block {
    display: inline-block !important
  }

  .d-xxl-block {
    display: block !important
  }

  .d-xxl-grid {
    display: grid !important
  }

  .d-xxl-table {
    display: table !important
  }

  .d-xxl-table-row {
    display: table-row !important
  }

  .d-xxl-table-cell {
    display: table-cell !important
  }

  .d-xxl-flex {
    display: flex !important
  }

  .d-xxl-inline-flex {
    display: inline-flex !important
  }

  .d-xxl-none {
    display: none !important
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important
  }

  .flex-xxl-row {
    flex-direction: row !important
  }

  .flex-xxl-column {
    flex-direction: column !important
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important
  }

  .justify-content-xxl-center {
    justify-content: center !important
  }

  .justify-content-xxl-between {
    justify-content: space-between !important
  }

  .justify-content-xxl-around {
    justify-content: space-around !important
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important
  }

  .align-items-xxl-start {
    align-items: flex-start !important
  }

  .align-items-xxl-end {
    align-items: flex-end !important
  }

  .align-items-xxl-center {
    align-items: center !important
  }

  .align-items-xxl-baseline {
    align-items: baseline !important
  }

  .align-items-xxl-stretch {
    align-items: stretch !important
  }

  .align-content-xxl-start {
    align-content: flex-start !important
  }

  .align-content-xxl-end {
    align-content: flex-end !important
  }

  .align-content-xxl-center {
    align-content: center !important
  }

  .align-content-xxl-between {
    align-content: space-between !important
  }

  .align-content-xxl-around {
    align-content: space-around !important
  }

  .align-content-xxl-stretch {
    align-content: stretch !important
  }

  .align-self-xxl-auto {
    align-self: auto !important
  }

  .align-self-xxl-start {
    align-self: flex-start !important
  }

  .align-self-xxl-end {
    align-self: flex-end !important
  }

  .align-self-xxl-center {
    align-self: center !important
  }

  .align-self-xxl-baseline {
    align-self: baseline !important
  }

  .align-self-xxl-stretch {
    align-self: stretch !important
  }

  .order-xxl-first {
    order: -1 !important
  }

  .order-xxl-0 {
    order: 0 !important
  }

  .order-xxl-1 {
    order: 1 !important
  }

  .order-xxl-2 {
    order: 2 !important
  }

  .order-xxl-3 {
    order: 3 !important
  }

  .order-xxl-4 {
    order: 4 !important
  }

  .order-xxl-5 {
    order: 5 !important
  }

  .order-xxl-last {
    order: 6 !important
  }

  .m-xxl-0 {
    margin: 0 !important
  }

  .m-xxl-1 {
    margin: .25rem !important
  }

  .m-xxl-2 {
    margin: .5rem !important
  }

  .m-xxl-3 {
    margin: 1rem !important
  }

  .m-xxl-4 {
    margin: 1.5rem !important
  }

  .m-xxl-5 {
    margin: 3rem !important
  }

  .m-xxl-auto {
    margin: auto !important
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-xxl-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-xxl-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .my-xxl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-xxl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-xxl-0 {
    margin-top: 0 !important
  }

  .mt-xxl-1 {
    margin-top: .25rem !important
  }

  .mt-xxl-2 {
    margin-top: .5rem !important
  }

  .mt-xxl-3 {
    margin-top: 1rem !important
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important
  }

  .mt-xxl-5 {
    margin-top: 3rem !important
  }

  .mt-xxl-auto {
    margin-top: auto !important
  }

  .me-xxl-0 {
    margin-right: 0 !important
  }

  .me-xxl-1 {
    margin-right: .25rem !important
  }

  .me-xxl-2 {
    margin-right: .5rem !important
  }

  .me-xxl-3 {
    margin-right: 1rem !important
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important
  }

  .me-xxl-5 {
    margin-right: 3rem !important
  }

  .me-xxl-auto {
    margin-right: auto !important
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important
  }

  .mb-xxl-1 {
    margin-bottom: .25rem !important
  }

  .mb-xxl-2 {
    margin-bottom: .5rem !important
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important
  }

  .mb-xxl-auto {
    margin-bottom: auto !important
  }

  .ms-xxl-0 {
    margin-left: 0 !important
  }

  .ms-xxl-1 {
    margin-left: .25rem !important
  }

  .ms-xxl-2 {
    margin-left: .5rem !important
  }

  .ms-xxl-3 {
    margin-left: 1rem !important
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important
  }

  .ms-xxl-5 {
    margin-left: 3rem !important
  }

  .ms-xxl-auto {
    margin-left: auto !important
  }

  .p-xxl-0 {
    padding: 0 !important
  }

  .p-xxl-1 {
    padding: .25rem !important
  }

  .p-xxl-2 {
    padding: .5rem !important
  }

  .p-xxl-3 {
    padding: 1rem !important
  }

  .p-xxl-4 {
    padding: 1.5rem !important
  }

  .p-xxl-5 {
    padding: 3rem !important
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-xxl-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-xxl-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-xxl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-xxl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-xxl-0 {
    padding-top: 0 !important
  }

  .pt-xxl-1 {
    padding-top: .25rem !important
  }

  .pt-xxl-2 {
    padding-top: .5rem !important
  }

  .pt-xxl-3 {
    padding-top: 1rem !important
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important
  }

  .pt-xxl-5 {
    padding-top: 3rem !important
  }

  .pe-xxl-0 {
    padding-right: 0 !important
  }

  .pe-xxl-1 {
    padding-right: .25rem !important
  }

  .pe-xxl-2 {
    padding-right: .5rem !important
  }

  .pe-xxl-3 {
    padding-right: 1rem !important
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important
  }

  .pe-xxl-5 {
    padding-right: 3rem !important
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important
  }

  .pb-xxl-1 {
    padding-bottom: .25rem !important
  }

  .pb-xxl-2 {
    padding-bottom: .5rem !important
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important
  }

  .ps-xxl-0 {
    padding-left: 0 !important
  }

  .ps-xxl-1 {
    padding-left: .25rem !important
  }

  .ps-xxl-2 {
    padding-left: .5rem !important
  }

  .ps-xxl-3 {
    padding-left: 1rem !important
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important
  }

  .ps-xxl-5 {
    padding-left: 3rem !important
  }
}

@media print {
  .d-print-inline {
    display: inline !important
  }

  .d-print-inline-block {
    display: inline-block !important
  }

  .d-print-block {
    display: block !important
  }

  .d-print-grid {
    display: grid !important
  }

  .d-print-table {
    display: table !important
  }

  .d-print-table-row {
    display: table-row !important
  }

  .d-print-table-cell {
    display: table-cell !important
  }

  .d-print-flex {
    display: flex !important
  }

  .d-print-inline-flex {
    display: inline-flex !important
  }

  .d-print-none {
    display: none !important
  }
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
  overflow: hidden
}

.glightbox-container.inactive {
  display: none
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  height: 100%;
  left: 0;
  top: 0;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.glightbox-container .gslide,
.glightbox-container .gslider {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.glightbox-container .gslide {
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999
}

.glightbox-container .gslide-inner-content {
  width: 100%
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important
}

.gslide iframe,
.gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px
}

.desc-bottom .gslide-image img,
.desc-top .gslide-image img {
  width: auto
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%
}

.gslide-image img.zoomable {
  position: relative
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto
}

.gslide-video:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, .34);
  display: none
}

.gslide-video.playing:before {
  display: none
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1
}

.gslide-external {
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%
}

.gslide-external,
.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.gslide-media {
  width: auto
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}

.desc-bottom .gslide-media,
.desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%
}

.gslide-description p {
  margin-bottom: 12px
}

.gslide-description p:last-child {
  margin-bottom: 0
}

.glightbox-button-hidden,
.zoomed .gslide-description {
  display: none
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: 0 0;
  position: absolute;
  bottom: 15px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .75)));
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .75));
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
  padding: 19px 11px 50px
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: .4
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  opacity: .4
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  opacity: 1
}

.greset {
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.gabsolute {
  position: absolute
}

.grelative {
  position: relative
}

.glightbox-desc {
  display: none !important
}

.glightbox-open {
  overflow: hidden
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader .8s linear infinite;
  animation: lightboxLoader .8s linear infinite;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  will-change: opacity
}

.glightbox-mobile .goverlay,
.goverlay {
  background: #000
}

.gclose,
.gnext,
.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.gclose svg,
.gnext svg,
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0
}

.gclose.disabled,
.gnext.disabled,
.gprev.disabled {
  opacity: .1
}

.gclose .garrow,
.gnext .garrow,
.gprev .garrow {
  stroke: #fff
}

iframe.wait-autoplay {
  opacity: 0
}

.glightbox-closing .gclose,
.glightbox-closing .gnext,
.glightbox-closing .gprev {
  opacity: 0 !important
}

.glightbox-clean .gslide-description {
  background: #fff
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em
}

.glightbox-clean .gslide-desc {
  font-size: .86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em
}

.glightbox-clean .gslide-video {
  background: #000
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, .75);
  border-radius: 4px
}

.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: #fff
}

.glightbox-clean button:focus:not(.focused):not(.disabled) {
  outline: 0
}

.glightbox-clean .gprev {
  left: 30px
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  width: 40px;
  height: 50px
}

.glightbox-clean .gnext {
  right: 30px
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto
}

.glightbox-clean .gclose:hover {
  opacity: 1
}

.gfadeIn {
  -webkit-animation: gfadeIn .5s ease;
  animation: gfadeIn .5s ease
}

.gfadeOut {
  -webkit-animation: gfadeOut .5s ease;
  animation: gfadeOut .5s ease
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft .3s ease;
  animation: gslideOutLeft .3s ease
}

.gslideInLeft {
  -webkit-animation: gslideInLeft .3s ease;
  animation: gslideInLeft .3s ease
}

.gslideOutRight {
  -webkit-animation: gslideOutRight .3s ease;
  animation: gslideOutRight .3s ease
}

.gslideInRight {
  -webkit-animation: gslideInRight .3s ease;
  animation: gslideInRight .3s ease
}

.gzoomIn {
  -webkit-animation: gzoomIn .5s ease;
  animation: gzoomIn .5s ease
}

.gzoomOut {
  -webkit-animation: gzoomOut .5s ease;
  animation: gzoomOut .5s ease
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@-webkit-keyframes gfadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes gfadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes gfadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes gfadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@-webkit-keyframes gslideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0)
  }

  to {
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes gslideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0)
  }

  to {
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@-webkit-keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden
  }
}

@keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden
  }
}

@-webkit-keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@-webkit-keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0
  }
}

@keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0
  }
}

@-webkit-keyframes gzoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 1
  }
}

@keyframes gzoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes gzoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 0
  }
}

@keyframes gzoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 0
  }
}

@media (min-width:769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
  }

  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
  }

  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .gslide-image img {
    max-height: 97vh;
    max-width: 100%
  }

  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
  }

  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab
  }

  .gslide-inline {
    max-height: 95vh
  }

  .gslide-external {
    max-height: 100vh
  }

  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px
  }

  .glightbox-open {
    height: auto
  }

  .goverlay {
    background: rgba(0, 0, 0, .92)
  }

  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65)
  }

  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto
  }

  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, .32)
  }

  .glightbox-clean .gclose:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, .7)
  }

  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    top: 45%
  }
}

@media (min-width:992px) {
  .glightbox-clean .gclose {
    opacity: .7;
    right: 20px
  }
}

@media screen and (max-height:420px) {
  .goverlay {
    background: #000
  }
}

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon597e.woff2') format('woff2');
  /* Ensure this path is correct relative to the CSS file */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* ✅ Use swap to prevent invisible text/icons */
}

[class*=" icon-"],
[class^=icon-] {
  font-family: icomoon !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.icon-chevron-down:before {
  content: "\e900"
}

.icon-chevron-right:before {
  content: "\e901"
}

.icon-climb:before {
  content: "\e902"
}

.icon-email:before {
  content: "\e903"
}

.icon-email-2:before {
  content: "\e904"
}

.icon-facebook:before {
  content: "\e905"
}

.icon-fish:before {
  content: "\e906"
}

.icon-golf:before {
  content: "\e907"
}

.icon-guest:before {
  content: "\e908"
}

.icon-gym:before {
  content: "\e909"
}

.icon-housekeeper:before {
  content: "\e90a"
}

.icon-instagram:before {
  content: "\e90b"
}

.icon-laundry:before {
  content: "\e90c"
}

.icon-linkedin:before {
  content: "\e90d"
}

.icon-logo:before {
  content: "\e90e"
}

.icon-mail:before {
  content: "\e90f"
}

.icon-map:before {
  content: "\e910"
}

.icon-menu:before {
  content: "\e911"
}

.icon-phone:before {
  content: "\e912"
}

.icon-play:before {
  content: "\e913"
}

.icon-restaurant:before {
  content: "\e914"
}

.icon-rocks:before {
  content: "\e915"
}

.icon-search:before {
  content: "\e916"
}

.icon-size:before {
  content: "\e917"
}

.icon-snow:before {
  content: "\e918"
}

.icon-snow-sport:before {
  content: "\e919"
}

.icon-tv:before {
  content: "\e91a"
}

.icon-twitter:before {
  content: "\e91b"
}

.icon-water-sport:before {
  content: "\e91c"
}

.icon-wifi:before {
  content: "\e91d"
}

.icon-swimming:before {
  content: "\e912";
}

.icon-valley:before {
  content: "\e918";
}

.icon-breakfast:before {
  content: "\e91e"
}

.icon-conditioner:before {
  content: "\e91f"
}

.icon-safe:before {
  content: "\e920"
}

.icon-slippers:before {
  content: "\e921"
}

.icon-smart-tv:before {
  content: "\e922"
}

.icon-hair-dryer:before {
  content: "\e923"
}

.icon-housekeeper-services:before {
  content: "\e924"
}

.icon-mini-bar:before {
  content: "\e925"
}

.icon-shampoo:before {
  content: "\e926"
}

.icon-shower-bath:before {
  content: "\e927"
}

.icon-welcome-drinks:before {
  content: "\e928"
}

.icon-arrow-circle-right:before {
  content: "\e929"
}

.icon-arrow-down:before {
  content: "\e92a"
}

.icon-arrow-left:before {
  content: "\e92b"
}

.icon-arrow-right:before {
  content: "\e92c"
}

.icon-food:before {
  content: "\f2e7";
}

.icon-stay:before {
  content: "\f236";
  /* bed icon */
}

.icon-bar:before {
  content: "\e92d"
}

.icon-bath:before {
  content: "\e92e"
}

.icon-bed:before {
  content: "\e92f"
}

.icon-bed-2:before {
  content: "\e930"
}

.icon-bike:before {
  content: "\e931"
}

.icon-boat:before {
  content: "\e932"
}

.icon-boat-2:before {
  content: "\e933"
}

.icon-bus:before {
  content: "\e934"
}

.icon-check:before {
  content: "\e935"
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.noUi-target {
  position: relative
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1
}

.noUi-connects {
  overflow: hidden;
  z-index: 0
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0
}

.noUi-horizontal .noUi-origin {
  height: 0
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute
}

.noUi-touch-area {
  height: 100%;
  width: 100%
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform .3s;
  transition: transform .3s
}

.noUi-state-drag * {
  cursor: inherit !important
}

.noUi-horizontal {
  height: 18px
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px
}

.noUi-vertical {
  width: 18px
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto
}

.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb
}

.noUi-connects {
  border-radius: 3px
}

.noUi-connect {
  background: #3fb8af
}

.noUi-draggable {
  cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px
}

.noUi-handle:after {
  left: 17px
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px
}

.noUi-vertical .noUi-handle:after {
  top: 17px
}

[disabled] .noUi-connect {
  background: #b8b8b8
}

[disabled].noUi-handle,
[disabled] .noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.noUi-pips {
  position: absolute;
  color: #999
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px
}

.noUi-marker {
  position: absolute;
  background: #ccc
}

.noUi-marker-large,
.noUi-marker-sub {
  background: #aaa
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%)
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%)
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%
}

.noUi-value-vertical {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 25px
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translateY(50%);
  transform: translateY(50%)
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  left: 50%;
  bottom: 120%
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 120%
}

.noUi-horizontal .noUi-origin>.noUi-tooltip {
  -webkit-transform: translate(50%);
  transform: translate(50%);
  left: auto;
  bottom: 10px
}

.noUi-vertical .noUi-origin>.noUi-tooltip {
  -webkit-transform: translateY(-18px);
  transform: translateY(-18px);
  top: auto;
  right: 28px
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
  float: left
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* z-index: 1; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
  visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: 50%;
  background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
  display: none
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: opacity .3s;
  -o-transition: .3s opacity;
  transition: opacity .3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33);
  position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(.66);
  -ms-transform: scale(.66);
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(.66);
  -ms-transform: scale(.66);
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33)
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: top .2s, -webkit-transform .2s;
  transition: top .2s, -webkit-transform .2s;
  -o-transition: .2s transform, .2s top;
  transition: transform .2s, top .2s;
  transition: transform .2s, top .2s, -webkit-transform .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: left .2s, -webkit-transform .2s;
  transition: left .2s, -webkit-transform .2s;
  -o-transition: .2s transform, .2s left;
  transition: transform .2s, left .2s;
  transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: right .2s, -webkit-transform .2s;
  transition: right .2s, -webkit-transform .2s;
  -o-transition: .2s transform, .2s right;
  transition: transform .2s, right .2s;
  transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: hsla(0, 0%, 100%, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000
}

.swiper-pagination-lock {
  display: none
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.swiper-scrollbar-lock {
  display: none
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.swiper-slide-zoomed {
  cursor: move
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
  animation: swiper-preloader-spin 1s steps(12) infinite
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-container-cube {
  overflow: visible
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0
}

.swiper-container-flip {
  overflow: visible
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px
}