@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: Boheme;
  src: url("../font/Blacksword.otf");
}

 /* @font-face {
  font-family: Cera;
  src: url("../assets/font/cera_pro.otf");
} */

/* @font-face {
  font-family: Cera;
  src: url("../assets/fonts/Cera_ Pro_Medium.otf");
}

@font-face {
  font-family: CeraBasic;
  src: url("../assets/fonts/CERA-BASIC.OTF");
}  */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;


  --Boheme: Boheme;

  --Inter: Inter;
  --primary: #000;
  --secondary: #72bf44;
  --text-dark: #474747;
  --dark-blue: #005792;
  --text-mute: rgba(37, 88, 83, 0.2);
}

html {
  font-size: 16px !important;
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
   font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;

}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.loader-container {
  display: none;
}

.loader-wrapper {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffe3;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 100vh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  background: radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

.loader-light {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #ffffff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #ffffff);
  background: radial-gradient(farthest-side, #ffffff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  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;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary);
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: var(--light);
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

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

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

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

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

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

li {
  
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.line {
  width: 6vw;
  height: 2px;
  border-radius: 100px;
  background-color: var(--primary);
  position: relative;
  bottom: 15px;
}

.line.about-line {
  bottom: unset;
}

.line.light {
  background-color: var(--light);
}



.marq-wrap {
  background: #394C41;
  /* margin-top: -10px; */
  /* margin-bottom: 15px; */
  position: static;
  padding: 0.7rem 0rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.social-icons {
  width: 20px;
}

.link-text {
  color: #663e31;
}

.dflex {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.dflex-icon {
  display: flex;
  justify-content: center;
  gap: 5px;
}

img {
  max-width: 100%;
}


section.main-banner {
  margin: -0.75rem 0 0 0;
}

.accordion-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.accordion-content .acc-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button::after {
  background-image: unset;
  content: "+";
  width: 15px;
  height: 20px;
  font-size: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: unset;
  font-size: 1.5rem;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  width: 15px;
  height: 20px;
  content: "-";
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #000;
}

.modal-logo {
  width: 120px;
  max-width: 100%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid var(--primary);
  background: transparent;
  border-radius: 0px;
  color: var(--primary);
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.form-control.custom-input.mobile-input {
  padding-left: 2.55rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-submit {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
}


.enquire-div-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  -webkit-transform: rotate(270deg) translateY(61px);
  -ms-transform: rotate(270deg) translateY(61px);
  transform: rotate(270deg) translateY(61px);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}


.contact-form {
  padding: 1rem 0 0.25rem 0;
}

::-webkit-input-placeholder {
  color: var(--primary) !important;
}

::-moz-placeholder {
  color: var(--primary) !important;
}

:-ms-input-placeholder {
  color: var(--primary) !important;
}

::-ms-input-placeholder {
  color: var(--primary) !important;
}

::placeholder {
  color: var(--primary) !important;
}

.desktop-carousel {
  display: block;
}

.mobile-carousel {
  display: none;
}

.enquire-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.enquire-div.show {
  bottom: 1vw;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.btn-enquire {
  color: var(--light);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.45rem 1.5rem;
  background: #663e31;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

.checkbox-label {
  font-size: 0.85rem;
}

/* ***************************************legacy Section Starts****************** */
.custom-container1 {
  width: 90%;
  margin: 0 auto;
}

.custom-container2 {
  width: 95%;
  margin: 0 auto;
}

.legacy {
  padding: 4rem 0;
  /* background: url(../assets/images/about/background-about.png) no-repeat center center / cover; */
}

.over_left {
  /* margin: 0 0 0 8rem; */
}

.legacy {
  position: relative;
}

/* .img-15 {
  width: 100%;
} */

.legacy img {
  width: 180px;
  object-fit: cover;
  height: 100%;
}







/* shailesh css */

.custom-15-container {
  display: grid;
  gap: 3rem;
  grid-template-columns: 24rem auto;
}

/* shailesh css */

.section-heading .section-subtitle {
  color: #663e31;
  font-size: 3.875rem;
  font-style: normal;
  font-family: Kraton;
  font-weight: 400;
  margin-bottom: 5.5rem !important;
  /* line-height: normal; */
}

.section-heading .section-desc {
  color: #606060;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  text-wrap: balance;
  /* line-height: normal; */
}


.about-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(70%, -50%);
  font-size: 6.7rem;
  color: #663e31;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* text-shadow: 4px 0px #fff; */
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  font-family: Inter;
}

.desc-color {
  color: #663e31 !important;
}

.customs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-div-1 {
  width: 18%
}

.custom-div-2 {
  width: 50%
}


/* ***********************legacy Section end****************/

/* ********Counter Section Starts*******************/
.counter {
  padding: 2rem 0rem;
  background: #663e31;
  ;
}

.counter-img {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.counter-img img {
  width: 2.34325rem;
  height: 2.34325rem;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.counter-description {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #cfa456;
  -webkit-text-fill-color: transparent;
  /* Makes the text fill transparent */
  color: transparent;
  /* Fallback for browsers that don't support -webkit-text-fill-color */
  font-size: 3.90306rem;
  font-family: 'Cera';
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.conter-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

/* ******************Counter Ends************** */

/* ******************About us Section Starts************** */
.aboutus {
  padding: 5rem 0rem;

}

.about-icon {
  text-align: center;
  padding-bottom: 2rem;
}

.about-intro {
  color: #606060;
  font-size: 5.97019rem;
  font-style: normal;
  font-family: Boheme;
  text-align: center;
  font-weight: 400;
  line-height: normal;
}

.about-img {
  width: 100%;
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: baseline;
  /* background: bisque; */
}

.about-img img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.img-15 {
  width: 90%;
  position: relative;
  height: 345px;
  display: flex;
  justify-content: start;
  align-items: start;

}

.overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border: 3px solid #663e31;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}

.section-heading .section-subtitle2 {
  color: #663e31;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  font-family: 'Kraton';
  padding-bottom: 1rem;
  /* line-height: normal; */
}

.about-img2 {
  width: 100%;
  position: relative;
}

.about-img2 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* ******************About us Section Ends**************** */

/***********************Gallery Section Starts************/
.gallery-sec {
  padding: 2rem 0rem;
  /* margin-bottom: 7rem; */
}

.gallery-container {
  margin: 1.5rem auto auto auto;
}

.swiper-container {
  width: 55%;
  height: 65%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.3s all;
  /* box-shadow: 0 0 20px #00000036; */
  border-radius: 10px;
}

.swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0;
}

.swiper-slide-active {
  transition: 0.3s all;
  opacity: 1;
  /* background-color: orange; */
}

.swiper-button-prev,
.swiper-button-next {
  background: none;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  cursor: pointer;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* margin-top: 176px; */
}

/* *********************Gallery Sections Ends************/

/* **********************Amenities Section Starts*********** */
.amenities {
  padding: 3rem 0rem;
  /* background: #FDF5E8; */
}

.amenities-starts {
  padding: 3rem 0rem;
}

.sec-title {
  position: relative;
  margin: auto;
  text-align: center;
  margin-bottom: 1rem;
}

.head-center {
  text-align: center;
}

.sec-head {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0 70px;
  display: inline;
  color: #663e31;
  position: relative;
  font-family: 'Cera';
}

.sec-head:before {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  top: 40%;
  left: -400px;
  position: absolute;
}

.sec-head:after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  right: -400px;
  top: 40%;
  position: absolute;
}

.amenities-img {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.amenities-img img {
  width: 3.74875rem;
  height: 3.22963rem;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.amenities-text {
  text-align: center;
    font-size: 17px;
    color: #414042;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    margin-top: 11px;
}

.custom-hr {
  color: #394C41;
}

/* **********************Amenities Section ends*********** */

/* **********************Founder Section starts*********** */
.about-architects {
  padding: 4rem 0rem;
}

.founder-tile {
  color: #663e31;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 5px;
}

.section-subtitle3 {
  color: #663e31;
  font-size: 3rem;
  font-family: 'Kraton';
  font-style: normal;
  font-weight: 400;
  padding-bottom: 2rem;
}

.section-heading .section-description {
  color: #606060;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
}

.founder-img {
  width: 100%;
  position: relative;
}

.founder-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  box-shadow: 6px 6px #000000b8;
}

/* **********************Founder Section ends*********** */


/* **********************Map Section starts*********** */
.map {
  padding: 3rem 0rem;
}

.section-subtitle4 {
  color: #663e31;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 400;
  font-family: 'Kraton';
  padding-bottom: 2rem;
}

.map-img {
  width: 100%;
  position: relative;
}

.map-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* **********************Map Section ends*********** */

/* **********************Contactus Section starts*********** */
/* .contact-us {
  padding: 4rem 0rem;
  background: #394C41;
}

.contact-title {
  color: #FFF;
  font-family: 'CeraBasic';
  font-size: 1.14863rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-desc {
  color: #FFF;
  font-family: Roboto;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dflex-social-icons {
  display: flex;
  gap: 19px;
}

.dflec {
  display: flex;
  justify-content: center;
}



#contact-form textarea {
  border: none;
  resize: none;
  
}

#contact-form .form-group {

  margin-top: 0;
}

.form-control:focus {
  box-shadow: none !important;
}

.form-control {
  border-radius: unset !important;
}

.custom-input {
  padding: 12px;
  font-family: 'Montserrat';
}

.custom-input::placeholder {
  font-family: 'Montserrat', sans-serif;
}

.contact-header-links {
  display: flex;
  gap: 19px;
}

.div-line2 {
  border-right: 1px solid #fff;
  padding-right: 12px;
}

.contact-description {
  font-family: Montserrat;
  color: #fff;
  font-size: 0.9rem;
} */

.contact-us {
  background-image: url(../assets/images/gallery/pool.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
}

.overlay-contact {
  background: #00000060;
  padding: 50px 0px;
}

.contact-us h3 {
  text-align: center;
  margin-bottom: 30px !important;
  color: #fff;
  font-weight: 400;
  font-size: 2.1875rem;
  font-family: 'Kraton';
}

.form-flex {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.form-flex .form-item:not(:last-child) {
  flex-basis: 25%;
}

#contact-form .form-group {
  height: 40px;
  margin-bottom: 7%;
}

.form-control {
  background-color: #fff !important;
  /* border: 1px solid #fff !important; */
  color: #000 !important;
  border-radius: 0 !important;
  padding: 0.72rem .75rem !important;
}

.error {
  color: red;
}

.call-icon {
  font-family: var(--CeraBasic);
  font-size: 1.5rem !important;
  margin-top: 1rem !important;
}

/* **********************Contactus Section ends*********** */

/********** footer ***********/
/* .footerw1 {
  padding: 2rem 0;
  background: #fff;
  position: relative;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.copyright-desc {
  font-family: Montserrat;
  color: #B9822B;
  font-size: 1.2rem;
}

.footer-flex {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.div-line {
  border-right: 1px solid #B9822B;
  padding-right: 8px;
} */



.outlets {
  text-align: center;
  margin-top: -18px;
}

.counter-merge {
  background: #f4ebe4;
  padding: 10px;
  width: 40%;
  margin: auto;
  border-radius: 20px;
  color: #000;
  font-family: Montserrat;
  font-size: 1.39213rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerw1 {
  padding: 30px 0px;
  background: #000;
  position: relative;
}

.footerlogo img {
  display: block;
  margin: 0px auto;
 width: 37%;
}

.qrimg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.qrimg img {
  width: 100px;
}

footer .qr-text p {
  font-size: 1rem;
}

.mahrare {
  margin-top: 20px;
}

.mahrare p {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem !important;
}

.disclaimer p {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem !important;
}

/* thank you page css */

nav.thank-you {
  background-color: #00000080;
}

section.secton-thankyou {
  height: 350px;
  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;
  padding: 0rem 1.5rem;
  /* margin: 8rem auto auto auto; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
}

/* thank you page css */

/* @media only screen and (max-width: 1160px) {
  .section-heading .section-subtitle {
    font-size: 2.7rem;
    margin-bottom: 5.5rem !important;
  }
} */

@media screen and (max-width: 1146px) {

  .about-text {
    font-size: 4rem !important;
  }

  .section-heading .section-subtitle {
    font-size: 2.5rem;
  }


  .img-15 {
    width: 56%;
  }
}

@media (width: 1024px) and (height: 600px) {}


@media only screen and (max-width: 991px) {
  .custom-container {
    width: 100%;
    margin: auto;
  }


  .custom-15-container {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .about-img {
    justify-content: start;
    /* background: bisque; */
  }

  .img-15 {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .section-heading {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .section-heading.custom-padding {
    padding: 0rem 1rem;

  }

  .section-heading .section-subtitle {
    font-size: 2.1rem;
    margin-bottom: unset !important;
  }

  /* 
  .about-img img {
    width: 90%;
  } */

  /* .about-text {
    font-size: 4rem;
    top: 53%;
    left: 72%;
  } */

}

@media only screen and (max-width: 767px) {



  .swiper-container {
    width: 90%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  section.main-banner {
    /* margin: 4rem auto auto auto; */
  }

  header {
    top: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100vw;
    background-color: var(--light);
  }

  .btn-contact {
    border-radius: 100px;
    border: 1px solid #00afef;
    background: -o-linear-gradient(right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 49.5%,
        rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear,
        right top,
        left top,
        from(rgba(255, 255, 255, 0)),
        color-stop(49.5%, rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 49.5%,
        rgba(255, 255, 255, 0) 100%);
  }

  .img-15 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .section-heading {
    padding: 0 1rem;
    margin-bottom: unset;
  }

  .desktop-carousel {
    display: none !important;
  }

  .mobile-carousel {
    display: block !important;
  }

  .about-intro {
    font-size: 4rem;
  }

  .section-heading .section-subtitle2 {
    font-size: 2rem;
  }

  .counter-description {
    font-size: 2.90306rem;
  }

  .sec-head:before {
    width: 100px;
    left: -123px;
  }

  .sec-head:after {
    width: 100px;
    right: -123px;
  }

  .aboutus {
    padding: 3rem 0rem;
  }

  .gallery-sec {
    margin-bottom: 2rem;
  }

  .about-architects {
    padding: 3rem 0rem;
  }

  .about-icon {
    padding-bottom: 1rem;
  }

  .sec-head {
    font-size: 1rem;
  }

  .amenities-text {
    font-size: 1rem;
  }

  .section-subtitle3 {
    font-size: 2rem;
  }

  .map {
    padding: 3rem 0rem;
  }

  .enquire-div-fixed {
    display: none;
  }

  .section-heading .section-desc {
    font-size: 1rem;
  }

  .section-heading .section-description {
    font-size: 1rem;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .copyright-desc {
    font-size: 1rem;
  }

  .contact-description {
    font-size: 0.6rem;
  }

  #contact-form {
    width: 80%;
    margin: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
  }

  .form-flex {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .contact-title {
    text-align: center;
  }

  .contact-desc {
    text-align: center;
  }

  .counter-merge {
    width: 100%;
    font-size: 1rem;
  }

  /* .about-text {
    font-size: 4.5rem;
    top: 52%;
    left: 52%;
  } */

  /* .about-img img {
    width: 65%;
  } */

  .section-heading .section-subtitle {
    font-size: 2.1rem;
    margin-bottom: 20px !important;
    margin-top: 22px;
  }

  .over_left {
    /* margin: 0 0 0 8rem; */
  }

  #contact-form .form-group {
    height: 40px;
    margin-bottom: 2%;
  }

  .contact-us h3 {
    font-size: 2rem;
    font-weight: 800;
  }

  .mahrare p {
    text-align: center;
    color: #fff;
    font-size: 0.7rem;
  }

  footer .qr-text p {
    font-size: 0.7rem;
  }

  .disclaimer p {
    text-align: center;
    color: #fff;
    width: 100%;
    display: block;
    margin: 22px auto;
    font-size: 0.7rem;
  }

  section.section-mobile-fixed {
    position: fixed;
    z-index: 10;
    left: 0;
    padding: 0.55rem 0.25rem;
    bottom: 0;
    background-color: var(--primary);
    width: 100vw;
  }

  section.section-mobile-fixed::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #00000063;
    width: 2px;
    height: 100%;
  }

  .mobile-toggle-fixed {
    width: 100%;
  }

  a {
    text-decoration: none !important;
  }

  .btn-toggle-fixed {
    width: 100%;
    background: transparent;
    border: none;
  }

  .btn-toggle-fixed .btn-toggle-fixed-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .btn-toggle-fixed .btn-toggle-fixed-txt {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
  }

  .form-mob {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-img {
    align-items: start;
  }
}

@media only screen and (max-width: 576px) {
  .btn-enquire {
    width: 100vw;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    font-size: 1.1rem;
    text-align: center;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    cursor: pointer;
    -webkit-animation: unset;
    animation: unset;
  }

  .enquire-div {
    bottom: -50px;
    left: 0px;
    z-index: 99;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .enquire-div.show {
    bottom: 0;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}



/* ************banner form css starts here******** */
.over-form-sec {
  background-color: #394C41 !important;
  border-radius: 0px !important;
  outline: 4px solid #663e31 !important;
  outline-offset: 10px;
}

.over-body {
  padding: 1rem;
  padding-top: 1.9rem;
}

.over-body h2 {
  font-family: 'Kraton';
  /* margin-top: -10px; */
  padding: 10px;
  margin-bottom: 9px !important;
  text-align: center;
  font-size: 20px;
  text-wrap: balance;
  color: #fff;
}

/* .over-body h2 {
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-family: var(--CeraBasic) !important;
  color: #fff;
} */



.checkboxprivcy label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
  color: #fff;
  font-size: 11px;
  word-spacing: 2px;
  font-family: var(--CeraBasic) !important;
}

input.form-control::placeholder {
  font-size: 0.9rem !important;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--CeraBasic) !important;
}

select.form-control.custom-input {
  font-size: 0.9rem !important;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--CeraBasic) !important;
  color: var(--primary) !important;
}


.carousel-control-prev {
  left: 4rem;
}

.carousel-control-next {
  right: 4rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  /* Ensure it's above carousel items */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  /* filter: invert(1); */
}

@media only screen and (max-width: 767px) {

  .carousel-control-prev {
    left: 1rem;
  }

  .carousel-control-next {
    right: 1rem;
  }
}

/* new config section */
#configuration {
  padding: 3rem 0rem;
}

.configuration {
  background: linear-gradient(rgb(0 0 0 / 29%), rgb(0 0 0 / 59%)), url(../images/garden.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.table>:not(caption)>*>* {
  background-color: unset !important;
  color: unset !important;
}

.configuration .sec_heading {
  color: #fff;
}

.configuration .sec_heading:after {
  background-color: #fff;
}

.table_cust {
  margin: 3rem 0 !important;
}

.table_cust thead tr {
background-color: #f4ebe4 !important;
    text-align: center;
    font-size: 1.2rem;
    color: #000;
}

.table_cust thead tr th {
  padding: 1rem;
}

.table_cust tbody tr {
  background-color: #fff;
  text-align: center;
  font-size: 1rem
}

.table_cust tbody tr td {
  padding: 1rem;
  color: var(--primary) !important;
}

.price-btn {
  background: #505050;
  color: #fff;
  font-size: 1rem;
  background: -moz-linear-gradient(left, #505050 0%, #505050 46%, #ffffff 51%, #505050 56%, #505050 100%);
  background: -webkit-linear-gradient(left, #505050 0%, #505050 46%, #ffffff 51%, #505050 56%, #505050 100%);
  background: linear-gradient(to right, #663e31 0%, #663e31 46%, #ffffff 51%, #663e31 56%, #000 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#505050', GradientType=1);
  background-size: 600% 600%;
  -webkit-animation: AnimationNameGrey 3s ease infinite;
  animation: AnimationNameGrey 3s ease infinite;
  padding: 5px 7px;
  outline: 1px solid #663e31 !important;
  outline-offset: 5px;
  text-wrap: nowrap;
}


@-webkit-keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

@keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

@media only screen and (max-width: 767px) {
  #configuration {
    padding: 3rem 2%;
  }
}

/* *************End Config Section********** */

@charset "UTF-8"; /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
    margin: 0;
    padding: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

html {
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace,monospace
}

a {
    background-color: transparent;
    text-decoration: none
}

a:focus {
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,strong {
    font-weight: bolder
}

code,kbd,samp {
    font-family: monospace,monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

iframe {
    border: none
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[type=button],[type=reset],[type=submit],button {
    -webkit-appearance: button;
    /* background: inherit; */
    border: none
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

button,input,optgroup,select,textarea {
    text-rendering: optimizeLegibility
}

h1,h2,h3,h4,h5,h6 {
    color: var(--heading-color);
    font-weight: var(--font-weight-heading);
    line-height: var(--line-height-base);
    font-family: var(--heading-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 2px
}

h1 {
    font-size: var(--font-size-h1)
}

h2 {
    font-size: var(--font-size-h2)
}

h3 {
    font-size: var(--font-size-h3)
}

h4 {
    font-size: var(--font-size-h4)
}

h5 {
    font-size: var(--font-size-h5)
}

h6 {
    font-size: var(--font-size-h6)
}

.title {
    position: relative;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 55px;
    letter-spacing: 2px
}

@media only screen and (max-width: 767px) {
    .title {
        font-size:47px
    }
}

@media only screen and (max-width: 575px) {
    .title {
        font-size:40px;
        line-height: 1.2
    }
}

@media only screen and (max-width: 400px) {
    .title {
        font-size:35px
    }
}

.sub-heading {
    letter-spacing: 3px;
    font-size: 16px
}

.section-title {
    position: relative;
    font-size: 40px;
    letter-spacing: 2px
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size:30px;
        letter-spacing: inherit
    }
}

.title-block {
    letter-spacing: 2px;
    font-size: 20px
}

.sm-p {
    font-size: 14px;
    letter-spacing: 1.5px
}

.sm-title-block {
    letter-spacing: 2px;
    font-size: 16px
}

.header-scale-hero {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.subtitle {
    color: var(--font-color);
    font-size: 16px;
    letter-spacing: 2px
}

.metas {
    padding: 0 5px;
    font-size: 16px
}

.metas span {
    position: relative;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    padding: 6px 15px;
    margin-right: 15px
}

.metas span:before,.metas span:after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    height: 1px;
    background-color: var(--border-color)
}

.metas span:before {
    top: 0
}

.metas span:after {
    bottom: 0
}

.metas span:last-of-type {
    margin-right: 0
}

.title-h2 {
    font-size: 46px;
    letter-spacing: 2px
}

@media only screen and (max-width: 991px) {
    .title-h2 {
        font-size:35px;
        line-height: inherit
    }
}

@media only screen and (max-width: 767px) {
    .title-h2 {
        font-size:25px
    }
}

.sub-text-header {
    margin-top: 25px
}

.sub-text-header h5 {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 24px;
    display: inline-block
}

@media only screen and (max-width: 767px) {
    .section-title,.sm-p,.sub-heading,.sub-text-header,.subtitle,.title,.title-h2 {
        max-width:570px
    }

    .section-title br,.sm-p br,.sub-heading br,.sub-text-header br,.subtitle br,.title-h2 br,.title br {
        display: none
    }
}

@media only screen and (max-width: 767px) {
    .sm-title-block br,.title-block br {
        display:none
    }
}

p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: var(--line-height-content)
}

cite,dfn,em,i {
    font-style: italic
}

a,span {
    display: inline-block;
    color: inherit
}

blockquote cite {
    font-style: normal;
    font-family: var(--heading-font)
}

pre {
    font-family: var(--font-pre);
    overflow: auto
}

code,kbd,tt,var {
    font-family: var(--font-code)
}

abbr,acronym {
    border-bottom: 1px dotted #666;
    cursor: help
}

ins,mark {
    background: #fff9c0;
    text-decoration: none
}

big {
    font-size: 125%
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:focus {
    text-decoration: underline
}

.v-dark,.v-light {
    background-color: var(--bg-color);
    color: var(--font-color)
}

.v-dark-head {
    color: var(--font-color)
}

.background-main {
    background-color: var(--bg-color)
}

.background-section {
    background-color: #000;
    color: #fff;
}

.background-gradient-left {
    background: var(--assistant-color);
    background: -webkit-gradient(linear,left top,right top,from(var(--assistant-color)),color-stop(50%,var(--theme-color)));
    background: -o-linear-gradient(left,var(--assistant-color) 0%,var(--theme-color) 50%);
    background: linear-gradient(90deg,var(--assistant-color) 0%,var(--theme-color) 50%)
}

.background-gradient-bottom {
    background: var(--assistant-color);
    background: -webkit-gradient(linear,left bottom,left top,from(var(--assistant-color)),color-stop(50%,var(--theme-color)));
    background: -o-linear-gradient(bottom,var(--assistant-color) 0%,var(--theme-color) 50%);
    background: linear-gradient(0deg,var(--assistant-color) 0%,var(--theme-color) 50%)
}

.background-gradient-right {
    background: var(--assistant-color);
    background: -o-linear-gradient(60deg,var(--assistant-color) 0%,var(--theme-color) 50%);
    background: linear-gradient(390deg,var(--assistant-color) 0%,var(--theme-color) 50%)
}

.background-gradient-top {
    background: var(--assistant-color);
    background: -webkit-gradient(linear,left top,left bottom,from(var(--assistant-color)),color-stop(50%,var(--theme-color)));
    background: -o-linear-gradient(top,var(--assistant-color) 0%,var(--theme-color) 50%);
    background: linear-gradient(180deg,var(--assistant-color) 0%,var(--theme-color) 50%)
}

.background-theme {
    background-color: var(--theme-color)
}

.theme-color {
    color: var(--theme-color)
}

.heading-color {
    color: var(--heading-color)
}

.body-color {
    color: var(--font-color)
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-1:nth-of-type(n+2) {
        margin-top:50px
    }
}

@media only screen and (min-width: 768px) {
    .dsn-col .dsn-col-1:nth-of-type(n+2) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-lg-1:nth-of-type(n+2) {
        margin-top:50px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-lg-1:nth-of-type(n+2) {
        margin-top:30px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-md-1:nth-of-type(n+2) {
        margin-top:30px
    }
}

@media only screen and (max-width: 767px) {
    .dsn-col .dsn-col-sm-1:nth-of-type(n+2) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-2:nth-of-type(n+3) {
        margin-top:50px
    }
}

@media only screen and (min-width: 768px) {
    .dsn-col .dsn-col-2:nth-of-type(n+3) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-lg-2:nth-of-type(n+3) {
        margin-top:50px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-lg-2:nth-of-type(n+3) {
        margin-top:30px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-md-2:nth-of-type(n+3) {
        margin-top:30px
    }
}

@media only screen and (max-width: 767px) {
    .dsn-col .dsn-col-sm-2:nth-of-type(n+3) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-3:nth-of-type(n+4) {
        margin-top:50px
    }
}

@media only screen and (min-width: 768px) {
    .dsn-col .dsn-col-3:nth-of-type(n+4) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-lg-3:nth-of-type(n+4) {
        margin-top:50px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-lg-3:nth-of-type(n+4) {
        margin-top:30px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-md-3:nth-of-type(n+4) {
        margin-top:30px
    }
}

@media only screen and (max-width: 767px) {
    .dsn-col .dsn-col-sm-3:nth-of-type(n+4) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-4:nth-of-type(n+5) {
        margin-top:50px
    }
}

@media only screen and (min-width: 768px) {
    .dsn-col .dsn-col-4:nth-of-type(n+5) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-lg-4:nth-of-type(n+5) {
        margin-top:50px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-lg-4:nth-of-type(n+5) {
        margin-top:30px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-md-4:nth-of-type(n+5) {
        margin-top:30px
    }
}

@media only screen and (max-width: 767px) {
    .dsn-col .dsn-col-sm-4:nth-of-type(n+5) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-5:nth-of-type(n+6) {
        margin-top:50px
    }
}

@media only screen and (min-width: 768px) {
    .dsn-col .dsn-col-5:nth-of-type(n+6) {
        margin-top:30px
    }
}

@media only screen and (min-width: 992px) {
    .dsn-col .dsn-col-lg-5:nth-of-type(n+6) {
        margin-top:50px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-lg-5:nth-of-type(n+6) {
        margin-top:30px
    }
}

@media only screen and (max-width: 991px) {
    .dsn-col .dsn-col-md-5:nth-of-type(n+6) {
        margin-top:30px
    }
}

@media only screen and (max-width: 767px) {
    .dsn-col .dsn-col-sm-5:nth-of-type(n+6) {
        margin-top:30px
    }
}

[data-overlay]:before {
    content: "";
    position: absolute;
    /* background: #000; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0
}

[data-overlay="0"]:before {
    opacity: 0
}

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

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

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

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

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

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

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

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

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

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

.section-margin {
    margin-top: var(--margin-padding);
    margin-bottom: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .section-margin {
        margin-top:var(--margin-padding-mobile);
        margin-bottom: var(--margin-padding-mobile)
    }
}

.mt-section {
    margin-top: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .mt-section {
        margin-top:var(--margin-padding-mobile)
    }
}

@media only screen and (min-width: 992px) {
    .mt-lg-section {
        margin-top:var(--margin-padding)
    }
}

@media only screen and (max-width: 767px) {
    .mt-sm-section {
        margin-top:var(--margin-padding-mobile)
    }
}

@media only screen and (min-width: 992px) {
    .mb-lg-section {
        margin-bottom:var(--margin-padding)
    }
}

@media only screen and (max-width: 767px) {
    .mb-sm-section {
        margin-bottom:var(--margin-padding-mobile)
    }
}

.mb-section {
    margin-bottom: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .mb-section {
        margin-bottom:var(--margin-padding-mobile)
    }
}

.section-padding {
    padding-top: var(--margin-padding);
    padding-bottom: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .section-padding {
        padding-top:var(--margin-padding-mobile);
        padding-bottom: var(--margin-padding-mobile)
    }
}

.pt-section {
    padding-top: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .pt-section {
        padding-top:var(--margin-padding-mobile)
    }
}

@media only screen and (min-width: 992px) {
    .pt-lg-section {
        padding-top:var(--margin-padding)
    }
}

@media only screen and (max-width: 767px) {
    .pt-sm-section {
        padding-top:var(--margin-padding-mobile)
    }
}

@media only screen and (min-width: 992px) {
    .pb-lg-section {
        padding-bottom:var(--margin-padding)
    }
}

@media only screen and (max-width: 767px) {
    .pb-sm-section {
        padding-bottom:var(--margin-padding-mobile)
    }
}

.pb-section {
    padding-bottom: var(--margin-padding)
}

@media only screen and (max-width: 991px) {
    .pb-section {
        padding-bottom:var(--margin-padding-mobile)
    }
}

.dsn-container {
    padding-right: 50px;
    padding-left: 50px
}

@media only screen and (max-width: 991px) {
    .container,.dsn-container {
        max-width:100%;
        padding-right: 40px;
        padding-left: 40px
    }
}

@media only screen and (max-width: 767px) {
    .container,.dsn-container {
        padding-right:25px;
        padding-left: 25px
    }
}

@media only screen and (max-width: 575px) {
    .container,.dsn-container {
        padding-right:15px;
        padding-left: 15px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:100%;
        padding-right: 50px;
        padding-left: 50px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1200px
    }
}

@media (min-width: 1367px) {
    .container {
        max-width:1200px;
        padding-right: 15px;
        padding-left: 15px
    }
}

.m-0 {
    margin: 0px
}

.m-5 {
    margin: 5px
}

.m-10 {
    margin: 10px
}

.m-15 {
    margin: 15px
}

.m-20 {
    margin: 20px
}

.m-25 {
    margin: 25px
}

.m-30 {
    margin: 30px
}

.m-35 {
    margin: 35px
}

.m-40 {
    margin: 40px
}

.m-45 {
    margin: 45px
}

.m-50 {
    margin: 50px
}

.m-55 {
    margin: 55px
}

.m-60 {
    margin: 60px
}

.m-65 {
    margin: 65px
}

.m-70 {
    margin: 70px
}

.m-75 {
    margin: 75px
}

.m-80 {
    margin: 80px
}

.m-85 {
    margin: 85px
}

.m-90 {
    margin: 90px
}

.m-95 {
    margin: 95px
}

.m-100 {
    margin: 100px
}

.mt-0 {
    margin-top: 0px
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-65 {
    margin-top: 65px
}

.mt-70 {
    margin-top: 70px
}

.mt-75 {
    margin-top: 75px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-95 {
    margin-top: 95px
}

.mt-100 {
    margin-top: 100px
}

.mb-0 {
    margin-bottom: 0px
}

.mb-5 {
    margin-bottom: 5px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-75 {
    margin-bottom: 75px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-85 {
    margin-bottom: 85px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-95 {
    margin-bottom: 95px
}

.mb-100 {
    margin-bottom: 100px
}

.ml-0 {
    margin-left: 0px
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-25 {
    margin-left: 25px
}

.ml-30 {
    margin-left: 30px
}

.ml-35 {
    margin-left: 35px
}

.ml-40 {
    margin-left: 40px
}

.ml-45 {
    margin-left: 45px
}

.ml-50 {
    margin-left: 50px
}

.ml-55 {
    margin-left: 55px
}

.ml-60 {
    margin-left: 60px
}

.ml-65 {
    margin-left: 65px
}

.ml-70 {
    margin-left: 70px
}

.ml-75 {
    margin-left: 75px
}

.ml-80 {
    margin-left: 80px
}

.ml-85 {
    margin-left: 85px
}

.ml-90 {
    margin-left: 90px
}

.ml-95 {
    margin-left: 95px
}

.ml-100 {
    margin-left: 100px
}

.mr-0 {
    margin-right: 0px
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-25 {
    margin-right: 25px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-45 {
    margin-right: 45px
}

.mr-50 {
    margin-right: 50px
}

.mr-55 {
    margin-right: 55px
}

.mr-60 {
    margin-right: 60px
}

.mr-65 {
    margin-right: 65px
}

.mr-70 {
    margin-right: 70px
}

.mr-75 {
    margin-right: 75px
}

.mr-80 {
    margin-right: 80px
}

.mr-85 {
    margin-right: 85px
}

.mr-90 {
    margin-right: 90px
}

.mr-95 {
    margin-right: 95px
}

.mr-100 {
    margin-right: 100px
}

.p-0 {
    padding: 0px
}

.p-5 {
    padding: 5px
}

.p-10 {
    padding: 10px
}

.p-15 {
    padding: 15px
}

.p-20 {
    padding: 20px
}

.p-25 {
    padding: 25px
}

.p-30 {
    padding: 30px
}

.p-35 {
    padding: 35px
}

.p-40 {
    padding: 40px
}

.p-45 {
    padding: 45px
}

.p-50 {
    padding: 50px
}

.p-55 {
    padding: 55px
}

.p-60 {
    padding: 60px
}

.p-65 {
    padding: 65px
}

.p-70 {
    padding: 70px
}

.p-75 {
    padding: 75px
}

.p-80 {
    padding: 80px
}

.p-85 {
    padding: 85px
}

.p-90 {
    padding: 90px
}

.p-95 {
    padding: 95px
}

.p-100 {
    padding: 100px
}

.pt-0 {
    padding-top: 0px
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-35 {
    padding-top: 35px
}

.pt-40 {
    padding-top: 40px
}

.pt-45 {
    padding-top: 45px
}

.pt-50 {
    padding-top: 50px
}

.pt-55 {
    padding-top: 55px
}

.pt-60 {
    padding-top: 60px
}

.pt-65 {
    padding-top: 65px
}

.pt-70 {
    padding-top: 70px
}

.pt-75 {
    padding-top: 75px
}

.pt-80 {
    padding-top: 80px
}

.pt-85 {
    padding-top: 85px
}

.pt-90 {
    padding-top: 90px
}

.pt-95 {
    padding-top: 95px
}

.pt-100 {
    padding-top: 100px
}

.pr-0 {
    padding-right: 0px
}

.pr-5 {
    padding-right: 5px
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-35 {
    padding-right: 35px
}

.pr-40 {
    padding-right: 40px
}

.pr-45 {
    padding-right: 45px
}

.pr-50 {
    padding-right: 50px
}

.pr-55 {
    padding-right: 55px
}

.pr-60 {
    padding-right: 60px
}

.pr-65 {
    padding-right: 65px
}

.pr-70 {
    padding-right: 70px
}

.pr-75 {
    padding-right: 75px
}

.pr-80 {
    padding-right: 80px
}

.pr-85 {
    padding-right: 85px
}

.pr-90 {
    padding-right: 90px
}

.pr-95 {
    padding-right: 95px
}

.pr-100 {
    padding-right: 100px
}

.pl-0 {
    padding-left: 0px
}

.pl-5 {
    padding-left: 5px
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-35 {
    padding-left: 35px
}

.pl-40 {
    padding-left: 40px
}

.pl-45 {
    padding-left: 45px
}

.pl-50 {
    padding-left: 50px
}

.pl-55 {
    padding-left: 55px
}

.pl-60 {
    padding-left: 60px
}

.pl-65 {
    padding-left: 65px
}

.pl-70 {
    padding-left: 70px
}

.pl-75 {
    padding-left: 75px
}

.pl-80 {
    padding-left: 80px
}

.pl-85 {
    padding-left: 85px
}

.pl-90 {
    padding-left: 90px
}

.pl-95 {
    padding-left: 95px
}

.pl-100 {
    padding-left: 100px
}

.pb-0 {
    padding-bottom: 0px
}

.pb-5 {
    padding-bottom: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-35 {
    padding-bottom: 35px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-45 {
    padding-bottom: 45px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-55 {
    padding-bottom: 55px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-65 {
    padding-bottom: 65px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-75 {
    padding-bottom: 75px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-85 {
    padding-bottom: 85px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-95 {
    padding-bottom: 95px
}

.pb-100 {
    padding-bottom: 100px
}

.h-0 {
    height: 0%
}

.h-10 {
    height: 10%
}

.h-20 {
    height: 20%
}

.h-30 {
    height: 30%
}

.h-40 {
    height: 40%
}

.h-50 {
    height: 50%
}

.h-60 {
    height: 60%
}

.h-70 {
    height: 70%
}

.h-80 {
    height: 80%
}

.h-90 {
    height: 90%
}

.h-100 {
    height: 100%
}

.h-v-0 {
    height: 0vh
}

.h-v-10 {
    height: 10vh
}

.h-v-20 {
    height: 20vh
}

.h-v-30 {
    height: 30vh
}

.h-v-40 {
    height: 40vh
}

.h-v-50 {
    height: 50vh
}

.h-v-60 {
    height: 60vh
}

.h-v-70 {
    height: 70vh
}

.h-v-80 {
    height: 80vh
}

.h-v-90 {
    height: 90vh
}

.h-v-100 {
    height: 100vh
}

.w-0 {
    width: 0%
}

.w-10 {
    width: 10%
}

.w-20 {
    width: 20%
}

.w-30 {
    width: 30%
}

.w-40 {
    width: 40%
}

.w-50 {
    width: 50%
}

.w-60 {
    width: 60%
}

.w-70 {
    width: 70%
}

.w-80 {
    width: 80%
}

.w-90 {
    width: 90%
}

.w-100 {
    width: 100%
}

.d-grid {
    display: -ms-grid;
    display: grid
}

.d-grid:not(.d-grid-no-space) {
    grid-column-gap: 30px;
    grid-row-gap: 30px
}

.d-grid:not(.dsn-isotope):not(.align-items-center) {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

@media only screen and (min-width: 992px) {
    .d-grid.dsn-isotope {
        margin-left:-15px;
        margin-right: -15px
    }
}

.d-grid.dsn-isotope>* {
    margin-left: 15px;
    margin-right: 15px
}

@media only screen and (min-width: 768px) {
    .grid-half-1 {
        -ms-grid-columns:35% auto;
        grid-template-columns: 35% auto
    }
}

@media only screen and (min-width: 768px) {
    .grid-1-half {
        -ms-grid-columns:auto 35%;
        grid-template-columns: auto 35%
    }
}

.grid-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr)
}

@media only screen and (min-width: 992px) {
    .grid-lg-2 {
        -ms-grid-columns:(1fr)[2];
        grid-template-columns: repeat(2,1fr)
    }

    .grid-lg-2.dsn-isotope>* {
        width: calc(50% - 30px);
        max-width: calc(50% - 30px)
    }

    .grid-lg-2.dsn-isotope>:nth-of-type(n+3) {
        margin-top: 50px
    }

    .grid-lg-2.dsn-isotope>:nth-of-type(2) {
        margin-top: 0
    }
}

@media only screen and (min-width: 768px) {
    .grid-md-2 {
        -ms-grid-columns:(1fr)[2];
        grid-template-columns: repeat(2,1fr)
    }

    .grid-md-2.dsn-isotope>* {
        width: calc(50% - 30px);
        max-width: calc(50% - 30px)
    }

    .grid-md-2.dsn-isotope>:nth-of-type(n+3) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 767px) {
    .grid-md-2.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-md-2.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

@media only screen and (min-width: 576px) {
    .grid-sm-2 {
        -ms-grid-columns:(1fr)[2];
        grid-template-columns: repeat(2,1fr)
    }

    .grid-sm-2.dsn-isotope>* {
        width: calc(50% - 30px);
        max-width: calc(50% - 30px)
    }

    .grid-sm-2.dsn-isotope>:nth-of-type(n+3) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 575px) {
    .grid-sm-2.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-sm-2.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

.grid-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr)
}

@media only screen and (min-width: 992px) {
    .grid-lg-3 {
        -ms-grid-columns:(1fr)[3];
        grid-template-columns: repeat(3,1fr)
    }

    .grid-lg-3.dsn-isotope>* {
        width: calc(33.3333333333% - 30px);
        max-width: calc(33.3333333333% - 30px)
    }

    .grid-lg-3.dsn-isotope>:nth-of-type(n+4) {
        margin-top: 50px
    }

    .grid-lg-3.dsn-isotope>:nth-of-type(3) {
        margin-top: 0
    }
}

@media only screen and (min-width: 768px) {
    .grid-md-3 {
        -ms-grid-columns:(1fr)[3];
        grid-template-columns: repeat(3,1fr)
    }

    .grid-md-3.dsn-isotope>* {
        width: calc(33.3333333333% - 30px);
        max-width: calc(33.3333333333% - 30px)
    }

    .grid-md-3.dsn-isotope>:nth-of-type(n+4) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 767px) {
    .grid-md-3.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-md-3.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

@media only screen and (min-width: 576px) {
    .grid-sm-3 {
        -ms-grid-columns:(1fr)[3];
        grid-template-columns: repeat(3,1fr)
    }

    .grid-sm-3.dsn-isotope>* {
        width: calc(33.3333333333% - 30px);
        max-width: calc(33.3333333333% - 30px)
    }

    .grid-sm-3.dsn-isotope>:nth-of-type(n+4) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 575px) {
    .grid-sm-3.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-sm-3.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

.grid-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4,1fr)
}

@media only screen and (min-width: 992px) {
    .grid-lg-4 {
        -ms-grid-columns:(1fr)[4];
        grid-template-columns: repeat(4,1fr)
    }

    .grid-lg-4.dsn-isotope>* {
        width: calc(25% - 30px);
        max-width: calc(25% - 30px)
    }

    .grid-lg-4.dsn-isotope>:nth-of-type(n+5) {
        margin-top: 50px
    }

    .grid-lg-4.dsn-isotope>:nth-of-type(4) {
        margin-top: 0
    }
}

@media only screen and (min-width: 768px) {
    .grid-md-4 {
        -ms-grid-columns:(1fr)[4];
        grid-template-columns: repeat(4,1fr)
    }

    .grid-md-4.dsn-isotope>* {
        width: calc(25% - 30px);
        max-width: calc(25% - 30px)
    }

    .grid-md-4.dsn-isotope>:nth-of-type(n+5) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 767px) {
    .grid-md-4.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-md-4.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

@media only screen and (min-width: 576px) {
    .grid-sm-4 {
        -ms-grid-columns:(1fr)[4];
        grid-template-columns: repeat(4,1fr)
    }

    .grid-sm-4.dsn-isotope>* {
        width: calc(25% - 30px);
        max-width: calc(25% - 30px)
    }

    .grid-sm-4.dsn-isotope>:nth-of-type(n+5) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 575px) {
    .grid-sm-4.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-sm-4.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

.grid-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5,1fr)
}

@media only screen and (min-width: 992px) {
    .grid-lg-5 {
        -ms-grid-columns:(1fr)[5];
        grid-template-columns: repeat(5,1fr)
    }

    .grid-lg-5.dsn-isotope>* {
        width: calc(20% - 30px);
        max-width: calc(20% - 30px)
    }

    .grid-lg-5.dsn-isotope>:nth-of-type(n+6) {
        margin-top: 50px
    }

    .grid-lg-5.dsn-isotope>:nth-of-type(5) {
        margin-top: 0
    }
}

@media only screen and (min-width: 768px) {
    .grid-md-5 {
        -ms-grid-columns:(1fr)[5];
        grid-template-columns: repeat(5,1fr)
    }

    .grid-md-5.dsn-isotope>* {
        width: calc(20% - 30px);
        max-width: calc(20% - 30px)
    }

    .grid-md-5.dsn-isotope>:nth-of-type(n+6) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 767px) {
    .grid-md-5.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-md-5.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

@media only screen and (min-width: 576px) {
    .grid-sm-5 {
        -ms-grid-columns:(1fr)[5];
        grid-template-columns: repeat(5,1fr)
    }

    .grid-sm-5.dsn-isotope>* {
        width: calc(20% - 30px);
        max-width: calc(20% - 30px)
    }

    .grid-sm-5.dsn-isotope>:nth-of-type(n+6) {
        margin-top: 30px
    }
}

@media only screen and (max-width: 575px) {
    .grid-sm-5.dsn-isotope>* {
        width:calc(100% - 30px);
        max-width: calc(100% - 30px)
    }

    .grid-sm-5.dsn-isotope>:nth-of-type(n+2) {
        margin-top: 30px
    }
}

.w-auto {
    width: auto
}

.w-100-v {
    width: 100vh
}

.h-100-v {
    height: 100vh
}

.h-100-padding {
    height: calc(100% + var(--margin-padding))
}

.top-0 {
    top: 0%
}

.top-5 {
    top: 5%
}

.top-10 {
    top: 10%
}

.top-15 {
    top: 15%
}

.top-20 {
    top: 20%
}

.top-25 {
    top: 25%
}

.top-30 {
    top: 30%
}

.top-35 {
    top: 35%
}

.top-40 {
    top: 40%
}

.top-45 {
    top: 45%
}

.top-50 {
    top: 50%
}

.top-55 {
    top: 55%
}

.top-60 {
    top: 60%
}

.top-65 {
    top: 65%
}

.top-70 {
    top: 70%
}

.top-75 {
    top: 75%
}

.top-80 {
    top: 80%
}

.top-85 {
    top: 85%
}

.top-90 {
    top: 90%
}

.top-95 {
    top: 95%
}

.top-100 {
    top: 100%
}

.left-0 {
    left: 0%
}

.left-5 {
    left: 5%
}

.left-10 {
    left: 10%
}

.left-15 {
    left: 15%
}

.left-20 {
    left: 20%
}

.left-25 {
    left: 25%
}

.left-30 {
    left: 30%
}

.left-35 {
    left: 35%
}

.left-40 {
    left: 40%
}

.left-45 {
    left: 45%
}

.left-50 {
    left: 50%
}

.left-55 {
    left: 55%
}

.left-60 {
    left: 60%
}

.left-65 {
    left: 65%
}

.left-70 {
    left: 70%
}

.left-75 {
    left: 75%
}

.left-80 {
    left: 80%
}

.left-85 {
    left: 85%
}

.left-90 {
    left: 90%
}

.left-95 {
    left: 95%
}

.left-100 {
    left: 100%
}

.right-0 {
    right: 0%
}

.right-5 {
    right: 5%
}

.right-10 {
    right: 10%
}

.right-15 {
    right: 15%
}

.right-20 {
    right: 20%
}

.right-25 {
    right: 25%
}

.right-30 {
    right: 30%
}

.right-35 {
    right: 35%
}

.right-40 {
    right: 40%
}

.right-45 {
    right: 45%
}

.right-50 {
    right: 50%
}

.right-55 {
    right: 55%
}

.right-60 {
    right: 60%
}

.right-65 {
    right: 65%
}

.right-70 {
    right: 70%
}

.right-75 {
    right: 75%
}

.right-80 {
    right: 80%
}

.right-85 {
    right: 85%
}

.right-90 {
    right: 90%
}

.right-95 {
    right: 95%
}

.right-100 {
    right: 100%
}

.bottom-0 {
    bottom: 0%
}

.bottom-5 {
    bottom: 5%
}

.bottom-10 {
    bottom: 10%
}

.bottom-15 {
    bottom: 15%
}

.bottom-20 {
    bottom: 20%
}

.bottom-25 {
    bottom: 25%
}

.bottom-30 {
    bottom: 30%
}

.bottom-35 {
    bottom: 35%
}

.bottom-40 {
    bottom: 40%
}

.bottom-45 {
    bottom: 45%
}

.bottom-50 {
    bottom: 50%
}

.bottom-55 {
    bottom: 55%
}

.bottom-60 {
    bottom: 60%
}

.bottom-65 {
    bottom: 65%
}

.bottom-70 {
    bottom: 70%
}

.bottom-75 {
    bottom: 75%
}

.bottom-80 {
    bottom: 80%
}

.bottom-85 {
    bottom: 85%
}

.bottom-90 {
    bottom: 90%
}

.bottom-95 {
    bottom: 95%
}

.bottom-100 {
    bottom: 100%
}

.z-index-0 {
    z-index: 0
}

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

.z-index-2 {
    z-index: 2
}

.z-index-3 {
    z-index: 3
}

.z-index-4 {
    z-index: 4
}

.z-index-5 {
    z-index: 5
}

.z-index-6 {
    z-index: 6
}

.z-index-7 {
    z-index: 7
}

.z-index-8 {
    z-index: 8
}

.z-index-9 {
    z-index: 9
}

.z-index-10 {
    z-index: 10
}

.z-index-11 {
    z-index: 11
}

.z-index-12 {
    z-index: 12
}

.dsn-text-shadow {
    text-shadow: -2px 4px 0 rgba(0,0,0,0.1);
}

@media only screen and (max-width: 991px) {
    .mb-70 {
        margin-bottom:50px
    }
}

.cover-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

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

.v-middle-horizontal {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.v-middle-vertical {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%)
}

.clear {
    clear: both
}

.clear:after,.clear:before {
    content: "";
    display: table;
    table-layout: fixed
}

.max-w570 {
    max-width: 570px
}

.max-w750 {
    max-width: 750px
}

.text-center .max-w570,.text-center .max-w750 {
    margin-left: auto;
    margin-right: auto
}

[data-dsn-grid=move-up],[data-dsn-grid=moveUp] {
    position: relative;
    overflow: hidden;
    height: 100vh;
    will-change: transform;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom
}

.container [data-dsn-grid=move-up],.container [data-dsn-grid=moveUp] {
    height: 80vh
}

@media only screen and (max-width: 767px) {
    [data-dsn-grid=move-up],[data-dsn-grid=moveUp] {
        height:80vh
    }
}

@media only screen and (max-width: 575px) {
    [data-dsn-grid=move-up],[data-dsn-grid=moveUp] {
        height:50vh
    }
}

/* [data-dsn-grid=move-up] img,[data-dsn-grid=move-up] video,[data-dsn-grid=moveUp] img,[data-dsn-grid=moveUp] video {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
} */

[data-dsn-grid=move-up] img.has-bigger-scale,[data-dsn-grid=move-up] video.has-bigger-scale,[data-dsn-grid=moveUp] img.has-bigger-scale,[data-dsn-grid=moveUp] video.has-bigger-scale {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3)
}

[data-dsn-grid=move-up] img.has-skew,[data-dsn-grid=move-up] video.has-skew,[data-dsn-grid=moveUp] img.has-skew,[data-dsn-grid=moveUp] video.has-skew {
    -webkit-transform-origin: 0 90%;
    -ms-transform-origin: 0 90%;
    transform-origin: 0 90%;
    -webkit-transform: skewX(5deg);
    -ms-transform: skewX(5deg);
    transform: skewX(5deg)
}

[data-dsn-grid=move-up] img.has-opposite-direction,[data-dsn-grid=move-up] video.has-opposite-direction,[data-dsn-grid=moveUp] img.has-opposite-direction,[data-dsn-grid=moveUp] video.has-opposite-direction {
    height: 120%;
    top: 0
}

[data-dsn-grid=move-up].h-100,[data-dsn-grid=moveUp].h-100 {
    height: 100%
}

.cover-bg-img {
    /* width: 100%; */
    height: 91%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.box-padding {
    padding: 70px 54px;
}

@media only screen and (max-width: 991px) {
    .box-padding {
        padding:60px 40px
    }
}

@media only screen and (max-width: 767px) {
    .box-padding {
        padding:60px 25px
    }
}

@media only screen and (max-width: 575px) {
    .box-padding {
        padding:50px 15px
    }
}

.dsn-pagination {
    position: relative;
    height: 45px
}

@media only screen and (max-width: 767px) {
    .dsn-pagination {
        width:100%
    }
}

.swiper-pagination {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.swiper-next,.swiper-prev {
    position: absolute
}

.swiper-next.swiper-next,.swiper-prev.swiper-next {
    right: 75px
}

@media only screen and (max-width: 767px) {
    .swiper-next.swiper-next,.swiper-prev.swiper-next {
        right:15px
    }
}

.swiper-next.swiper-prev,.swiper-prev.swiper-prev {
    left: 75px
}

@media only screen and (max-width: 767px) {
    .swiper-next.swiper-prev,.swiper-prev.swiper-prev {
        left:15px
    }
}

.next-containers,.prev-containers {
    cursor: pointer
}

.next-containers .container-inner,.prev-containers .container-inner {
    position: relative;
    width: 35px;
    height: 84px
}

.next-containers .container-inner:before,.prev-containers .container-inner:before {
    background: var(--border-color);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 1px;
    height: 55px;
    margin: 0 auto;
    -webkit-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    -o-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    transition: all 0.6s cubic-bezier(0.77,0,0.175,1)
}

.next-containers .container-inner svg,.prev-containers .container-inner svg {
    position: absolute;
    left: 0
}

.next-containers .container-inner svg.arrow,.prev-containers .container-inner svg.arrow {
    top: 62px;
    right: 0;
    width: 7px;
    height: 5px;
    margin: 0 auto;
    -webkit-transition: top 0.6s cubic-bezier(0.77,0,0.175,1);
    -o-transition: top 0.6s cubic-bezier(0.77,0,0.175,1);
    transition: top 0.6s cubic-bezier(0.77,0,0.175,1)
}

.next-containers .container-inner svg.arrow path,.prev-containers .container-inner svg.arrow path {
    fill: var(--heading-color);
    -webkit-transition: fill 0.6s cubic-bezier(0.77,0,0.175,1);
    -o-transition: fill 0.6s cubic-bezier(0.77,0,0.175,1);
    transition: fill 0.6s cubic-bezier(0.77,0,0.175,1)
}

.next-containers .container-inner svg.circle,.prev-containers .container-inner svg.circle {
    left: -6px;
    bottom: 0;
    width: 45px;
    height: 45px
}

.next-containers .container-inner svg.circle circle,.prev-containers .container-inner svg.circle circle {
    stroke: var(--border-color);
    stroke-dasharray: 95;
    stroke-dashoffset: 0;
    -webkit-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in
}

.next-containers.next-containers .container-inner,.prev-containers.next-containers .container-inner {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.next-containers.prev-containers .container-inner,.prev-containers.prev-containers .container-inner {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.next-containers.prev-containers svg.arrow,.prev-containers.prev-containers svg.arrow {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.next-containers:hover .container-inner:before,.prev-containers:hover .container-inner:before {
    height: 75px
}

.next-containers:hover .container-inner svg.arrow,.prev-containers:hover .container-inner svg.arrow {
    top: 75px
}

.next-containers:hover .container-inner svg.circle circle,.prev-containers:hover .container-inner svg.circle circle {
    stroke-dashoffset: 95
}

.next-container,.prev-container {
    cursor: pointer
}

.next-container .triangle,.prev-container .triangle {
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    -o-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    transition: all 0.6s cubic-bezier(0.77,0,0.175,1)
}

.next-container.next-container .container-inner:before,.prev-container.next-container .container-inner:before {
    content: "";
    margin-right: 7px
}

.next-container.next-container .triangle,.prev-container.next-container .triangle {
    border-left: 6px solid var(--heading-color);
    margin-right: 19.5px
}

.next-container.next-container svg,.prev-container.next-container svg {
    right: 0
}

.next-container.prev-container .container-inner:after,.prev-container.prev-container .container-inner:after {
    content: "";
    margin-left: 7px
}

.next-container.prev-container .triangle,.prev-container.prev-container .triangle {
    border-right: 6px solid var(--heading-color);
    margin-left: 19.5px
}

.next-container.prev-container svg,.prev-container.prev-container svg {
    left: 0
}

.next-container .container-inner,.prev-container .container-inner {
    position: relative;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.next-container .container-inner:after,.next-container .container-inner:before,.prev-container .container-inner:after,.prev-container .container-inner:before {
    position: relative;
    width: 55px;
    height: 1px;
    background-color: var(--border-color);
    -webkit-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    -o-transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
    transition: all 0.6s cubic-bezier(0.77,0,0.175,1)
}

.next-container .container-inner svg,.prev-container .container-inner svg {
    position: absolute;
    width: 45px;
    height: 45px
}

.next-container .container-inner svg circle,.prev-container .container-inner svg circle {
    stroke: var(--border-color);
    stroke-dasharray: 95;
    stroke-dashoffset: 0
}

.next-container svg circle,.prev-container svg circle {
    -webkit-transition: all 0.6s ease-in;
    -o-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in
}

.next-container:hover .container-inner:after,.next-container:hover .container-inner:before,.prev-container:hover .container-inner:after,.prev-container:hover .container-inner:before {
    width: 75px
}

.next-container:hover .container-inner .triangle,.prev-container:hover .container-inner .triangle {
    margin: 0
}

.next-container:hover .container-inner svg circle,.prev-container:hover .container-inner svg circle {
    stroke-dashoffset: 95
}

.swiper-pagination {
    top: 10px
}

.swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    border-radius: 0;
    margin-right: 5px;
    cursor: pointer;
    background: var(--theme-color);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out
}

.pointer-events {
    pointer-events: none
}

.border-radius {
    border-radius: 5px
}

@media only screen and (min-width: 992px) {
    .fill-right-container {
        width:calc(100% - calc(-100vw / 2 + 100% / 2) - 115px)
    }
}

@media only screen and (min-width: 992px) {
    .fill-right-container-no-margin {
        width:calc(100% - calc(-100vw / 2 + 100% / 2) - 100px)
    }
}

a.link-hover {
    color: var(--heading-color);
    display: inline-block;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: var(--heading-font);
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out
}

a.link-hover:before {
    content: attr(data-hover-text);
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--heading-color)
}

a.link-hover:hover {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-decoration: none
}

@media only screen and (max-width: 991px) {
    .pl-container {
        padding-left:15px;
        padding-right: 15px
    }
}

.animation-rotate img {
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite
}

.scroll-to-top {
    position: fixed;
    right: -100px;
    bottom: 40px;
    width: 70px;
    height: 70px;
    z-index: 99;
    cursor: pointer
}

.scroll-to-top .box-numper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 35px;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    color: var(--heading-color)
}

.scroll-to-top .box-numper span {
    font-size: 12px
}

.scroll-to-top img {
    width: 65px
}

.v-light .scroll-to-top img {
    -webkit-filter: invert(1);
    filter: invert(1)
}

.container-fluid.no-padding,.container.no-padding {
    padding-left: 0;
    padding-right: 0
}

.bg-section {
    top: 0;
    bottom: 0
}

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

.a-item-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-uppercase {
    text-transform: uppercase
}

.d-block {
    display: block
}

.d-inline-block {
    display: inline-block
}

.full-width {
    position: relative;
    width: calc(100vw - 10px);
    left: 50%;
    margin-left: -50vw
}

.dsn-effect-scroll .full-width {
    width: 100vw
}

.fw-blod {
    font-weight: bold
}

.over-hidden {
    overflow: hidden
}

.hidden {
    opacity: 0;
    visibility: hidden
}

.before-z-index:before {
    z-index: 1
}

.fw-600 {
    font-weight: 600
}

.m-auto {
    margin-left: auto;
    margin-right: auto
}

.header-padding-top {
    padding-top: 160px
}

.header-padding-bottom {
    padding-bottom: 160px
}

.box-after {
    position: relative;
    margin-bottom: 5px
}

.box-after:after {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    display: block;
    background: var(--theme-color);
    bottom: -5px;
    left: 10px;
    z-index: -1
}

.border {
    border: 1px solid var(--border-color)
}

.border-left {
    border-left: 1px solid var(--border-color)
}

.border-right {
    border-right: 1px solid var(--border-color)
}

.border-top {
    border-top: 1px solid var(--border-color)
}

.border-bottom {
    border-bottom: 1px solid var(--border-color)
}

.custom-container {
    width: 120%
}

@media only screen and (max-width: 400px) {
    .custom-container {
        width:100%
    }
}

.content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.icon-lg {
    vertical-align: middle;
    font-size: 42px
}

.text-underline {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px
}

.dsn-video {
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -20!important;
    width: 100%;
    height: 100%
}

[data-dsn=video] {
    width: 100%;
    height: 100%
}

.p-relative {
    position: relative
}

.p-absolute {
    position: absolute
}

.scrool-down {
    width: 140px;
    height: 140px;
    -webkit-transform: scaleX(1.2);
    -ms-transform: scaleX(1.2);
    transform: scaleX(1.2);
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    z-index: 3;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer
}

.scrool-down a {
    z-index: 3
}

.scrool-down a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 99em;
    border-top: 2px solid #555;
    border-right: 2px solid #555;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    -webkit-transform: translateY(75%) rotate(-45deg);
    -ms-transform: translateY(75%) rotate(-45deg);
    transform: translateY(75%) rotate(-45deg);
    will-change: transform;
    cursor: pointer
}

.scrool-down a:after {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 auto;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease
}

.color-white {
    color: #fff
}

.overflow-hidden {
    overflow: hidden
}

.user-no-selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.user-no-selection::-moz-selection {
    background: none;
    color: inherit
}

.user-no-selection::selection {
    background: none;
    color: inherit
}

[data-overlay] .transform-3d {
    position: relative;
    z-index: -1
}

.no-shadow {
    -webkit-box-shadow: none;
    box-shadow: none
}

.transform-3d {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.text-left {
    text-align: left
}

.p-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.dsn-ajax-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 900199;
    visibility: hidden;
    opacity: 0;
    background-color: var(--bg-color)
}

.dsn-ajax-loader.dsn-ajax-normal {
    -webkit-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out
}

.dsn-ajax-effect {
    overflow: hidden!important
}

.dsn-z-index-2 {
    z-index: 2
}

.has-horizontal {
    position: relative
}

.splitting .whitespace {
    margin-right: 15px
}

.box-options {
    position: fixed;
    left: 15px;
    bottom: 15px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    background-color: var(--assistant-color);
    padding: 5px 5px 5px 0;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    z-index: 100
}

.box-options,.box-options .box-inner-option {
    -webkit-transition: 0.5s cubic-bezier(0.34,1.56,0.64,1);
    -o-transition: 0.5s cubic-bezier(0.34,1.56,0.64,1);
    transition: 0.5s cubic-bezier(0.34,1.56,0.64,1)
}

.box-options .title-mode {
    position: absolute;
    padding: 8px 10px 1px;
    border-radius: 30px;
    left: 0;
    top: 1px;
    color: var(--heading-color);
    letter-spacing: 2px;
    font-size: 12px;
    width: 110px;
    z-index: 0
}

.box-options .box-icon {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: var(--theme-color);
    border-radius: 50%;
    cursor: pointer;
    left: 2.5px
}

.box-options .box-icon:after {
    content: "";
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    background: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.25
}

.box-options .box-icon svg {
    width: 22px;
    fill: var(--heading-color)
}

.box-options .box-inner-option {
    width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 35px;
    overflow: hidden;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.box-options .box-inner-option .day-night,.box-options .box-inner-option .mode-layout {
    cursor: pointer
}

.box-options .box-inner-option .day-night .title-mode .dsn-word-wrapper,.box-options .box-inner-option .mode-layout .title-mode .dsn-word-wrapper {
    overflow: hidden;
    will-change: transform
}

.box-options .box-inner-option .day-night .title-mode .dsn-chars-wrapper,.box-options .box-inner-option .mode-layout .title-mode .dsn-chars-wrapper {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
    -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
    transform: translateY(50%) rotate(15deg) scale(0.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: opacity 0.3s cubic-bezier(0.68,-0.55,0.265,1.55),visibility 0.3s,-webkit-transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    transition: opacity 0.3s cubic-bezier(0.68,-0.55,0.265,1.55),visibility 0.3s,-webkit-transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    -o-transition: transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55),opacity 0.3s cubic-bezier(0.68,-0.55,0.265,1.55),visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55),opacity 0.3s cubic-bezier(0.68,-0.55,0.265,1.55),visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55),opacity 0.3s cubic-bezier(0.68,-0.55,0.265,1.55),visibility 0.3s,-webkit-transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    -webkit-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    -o-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    transition-delay: calc(30ms * var(--char-dsn-index) + 1ms)
}

.box-options .box-inner-option .day-night:hover .title-mode,.box-options .box-inner-option .mode-layout:hover .title-mode {
    background-color: var(--theme-color)
}

.box-options .box-inner-option .day-night:hover .title-mode .dsn-chars-wrapper,.box-options .box-inner-option .mode-layout:hover .title-mode .dsn-chars-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1)
}

.box-options .day-night {
    padding: 0 20px;
    height: 25px
}

.box-options .day-night .moon,.box-options .day-night .night {
    position: absolute;
    width: 25px;
    height: 25px;
    pointer-events: none;
    -webkit-transition: opacity 0.8s;
    -o-transition: opacity 0.8s;
    transition: opacity 0.8s;
    border-radius: 100%;
    opacity: 0;
    cursor: pointer
}

.box-options .day-night .moon svg,.box-options .day-night .night svg {
    width: 100%;
    height: 100%
}

.box-options .day-night .night {
    border: 1px solid rgba(255,255,255,0.18);
    background-color: #fff;
    opacity: 1
}

.box-options .day-night .night svg {
    fill: #000;
    width: 100%;
    height: 100%
}

.box-options .day-night .moon {
    border: 1px solid rgba(255,255,255,0.18);
    background-color: #000;
    opacity: 0
}

.box-options .day-night .moon svg {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    fill: #f0f0f0
}

.v-light .box-options .day-night .night {
    opacity: 0
}

.v-light .box-options .day-night .moon {
    opacity: 1
}

.box-options .mode-layout {
    height: 25px;
    width: 25px;
    margin-left: 20px
}

.box-options .mode-layout .icon {
    width: 25px;
    height: 25px;
    pointer-events: none;
    border-radius: 100%;
    cursor: pointer;
    background-color: #fff
}

.box-options .mode-layout .icon svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s,-webkit-transform 0.5s;
    width: 15px;
    fill: #000
}

@media only screen and (min-width: 992px) {
    body.dsn-line-style .box-options .mode-layout .icon svg {
        -webkit-transform:none;
        -ms-transform: none;
        transform: none
    }
}

.box-options:hover {
    width: 145px
}

.box-options:hover .box-inner-option {
    width: 110px
}

.box-im.h-100,.img-box.h-100 {
    position: absolute;
    width: 100%
}

@media only screen and (max-width: 991px) {
    .box-im.h-100,.img-box.h-100 {
        position:relative;
        height: 70vh
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--bg-color)
}

.preloader .preloader-before {
    top: 0
}

.preloader .preloader-after {
    bottom: 0
}

.preloader .loading-text,.preloader .percent {
    position: absolute;
    letter-spacing: 3px;
    font-size: 14px;
    bottom: 55px
}

.preloader .loading-text.loading-text,.preloader .percent.loading-text {
    left: 40px
}

.preloader .loading-text.percent,.preloader .percent.percent {
    font-weight: 500;
    left: calc(15vw + 40px);
    color: var(--theme-color)
}

@media only screen and (max-width: 767px) {
    .preloader .loading-text.percent,.preloader .percent.percent {
        left:calc(50vw + 40px)
    }
}

.preloader .title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 0.9;
    letter-spacing: 10px
}

.preloader .title .text-strok {
    color: transparent;
    -webkit-text-stroke: 1px var(--heading-color)
}

.preloader .title .text-fill {
    color: var(--heading-color);
    position: absolute;
    left: 0;
    -webkit-clip-path: inset(100.09% 0% 0% 0%);
    clip-path: inset(100.09% 0% 0% 0%)
}

.preloader .preloader-bar {
    position: absolute;
    width: 15vw;
    height: 2.5px;
    left: 40px;
    bottom: 40px;
    background: var(--assistant-color);
    border-radius: 10px
}

@media only screen and (max-width: 767px) {
    .preloader .preloader-bar {
        width:50vw
    }
}

.preloader .preloader-bar .preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--theme-color);
    border-radius: 10px
}

@media only screen and (max-width: 767px) {
    .filtering-t {
        text-align:left
    }
}

.filtering-t .filter-title {
    color: var(--font-color);
    letter-spacing: 3px;
    margin-right: 10px
}

@media only screen and (max-width: 767px) {
    .filtering-t .filter-title {
        display:none
    }
}

.filtering-t button {
    position: relative;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px 8px 35px;
    margin-right: 5px;
    letter-spacing: 2px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.filtering-t button.active {
    background-color: var(--assistant-color)
}

.filtering-t button.active:before {
    background-color: var(--theme-color)
}

.filtering-t button.active:after {
    font-family: "Font Awesome 5 Free";
    content: "";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 14.5px;
    margin-top: 1px;
    font-size: 7px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2
}

.filtering-t button:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    z-index: 2
}

.filtering-t button:hover {
    background-color: var(--assistant-color)
}

@media only screen and (max-width: 991px) {
    .sm-mb-30 {
        margin-bottom:30px
    }
}

@media only screen and (max-width: 991px) {
    .sm-mb-20 {
        margin-bottom:20px
    }
}

@media only screen and (max-width: 767px) {
    .grid-md-2 .pl-40 {
        padding-left:0
    }
}
.box-seat {
  position: relative;
}
.box-seat [data-overlay]:before {
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .box-seat .box-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.box-seat .pro-text {
  position: absolute;
  right: 80px;
  bottom: 82px;
}
@media only screen and (max-width: 991px) {
  .box-seat .pro-text {
    position: relative;
    left: 0;
    right: auto;
    bottom: 0;
    max-width: 100%;
  }
}
.box-seat .pro-text:not(.container) {
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .box-seat .pro-text:not(.container) {
    bottom: 0;
    max-width: 100%;
  }
}

.box-seat.box-seat-full .pro-text {
  position: relative;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .box-seat.box-seat-full .pro-text {
    right: auto;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .box-seat.box-seat-parallax .pro-text {
    position: relative;
    max-width: 100%;
    right: auto;
    bottom: auto;
    margin-top: -260px;
  }
}


details div {
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	padding: 1.5em;
}

details div > * + * {
	margin-top: 1.5em;
}

details + details {
	margin-top: .5rem;
}

summary {
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary {
	border: 2px solid #000;
	padding: .75em 1em;
	cursor: pointer;
	position: relative;
	padding-left: calc(1.75rem + .75rem + .75rem);
}

summary:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .75rem;
	content: "↓";
	width: 1.75rem;
	height: 1.75rem;
	background-color: #000;
	color: #FFF;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

details[open] summary {
	background-color: #eee;
}

details[open] summary:before {
	content: "↑";
}

summary:hover {
	background-color: #eee;
}



code {
	font-family: monospace;
	font-weight: 600;
}

#configuration {
    background-color: #FDF5E8;
}
.global-sec {
    padding: 70px 0;
    padding-bottom: 30px;
}

.config-wrap1 {
  text-align: center;
  border-top: 10px solid #000;
  border-bottom: 40px solid #000;
  border-left: 10px solid #000;
  border-right: 10px solid #000;
  padding: 25px 0px;
  margin-bottom: 10px;
  transition: ease all 0.5s;
  border-radius: 27px;
}

.config-wrap1 h3 {
  line-height: 20px;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0px;
  position: relative;
  margin: 0px auto;
  margin-bottom: 20px;
}

.config-wrap1 h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.config-wrap1 .pricing_btn {
  background: #cfa456;
  border: none;
  font-size: 20px;
  color: #000000;
  width: 75%;
  padding: 7px 0;
  border-radius: 20px;
  margin: 5px auto;
  font-weight: 600;
  outline: none;
}

.panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}

.panel-title > a.collapsed:before {
    float: right !important;
    content:"\f067";
}
.panel-title > a:hover, 
.panel-title > a:active, 
.panel-title > a:focus  {
    text-decoration:none;
}
.panel-heading {
    padding: 20px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel {
    margin-bottom: 20px !important;
    background-color: #ffffff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 15px 16px 13px 8px rgb(4 4 4 / 5%);
}
.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #00bcd4;
    text-align: center;
    color: #fff;
}


a{
  color:#fff;
  text-decoration:underline;
}

contact {
  width: 100%;
  height: 100%;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 60px 'Oswald', sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}

/* Left contact page */
.form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;
}

.form-control, 
textarea {
  max-width: 400px;
  background-color: #000;
  color: #fff;
  letter-spacing: 1px;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.alt-send-button {
  width: 400px;
  height: 34px;
  transition: all .2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Lato', sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}


/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.social-media-list li a {
  color: #fff;
}

.social-media-list li {
  position: relative; 
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27,27,27);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}

.social-media-list a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #fff; 
}

.social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

.social-media-list li:hover a {
  color: #000;
}




/* Begin Media Queries*/
@media screen and (max-width: 850px) {
   
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {

  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  
}

a.whatsapp {
    background-color: #2fb842;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 990;
}
.call{
   background-color: #663e31;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 990;
    top: 86%;
  /*  -webkit-transition: all 1.5s ease;*/
  /*-o-transition: all 1.5s ease;*/
  /*transition: all 1.5s ease;*/
}

/* .home-demo .item {
    background: #ff3f4d;
} */
.home-demo h2 {
    color: #FFF;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.section {
  .section-heading {
    margin-bottom: 60px;
  }
  .wrapper {
    .team-item {
      gap: 20px;
      .img {
        /* filter: grayscale(1); */
        /* height: 220px; */
        object-fit: cover;
      }
      .detail {
        // @include transition($transition);
        &:hover {
          .text-sm {
            color: #000;
          }
        }
        .title-sm {
          font-size: 20px;
          margin-bottom: 8px;
        }
        .text-sm {
          max-width: 178px;
          line-height: 120%;
          color: rgb(3 33 85 / 50%);
        }
      }
      &:hover {
        cursor: pointer;
        .img {
          filter: grayscale(0);
        }
        .detail {
          .text-sm {
            color: #000;
          }
        }
      }
    }
  }
  .main_slider.owl-carousel .owl-nav {
    top: -31%;
  }
}


.main_slider.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  /* top: -76px; */
  top: -22%;
  margin-top: 0;
  .owl-next,
  .owl-prev {
    border: 2px solid #663e31;
    border-radius: 2px;
    padding: 10px !important;
    // @include transition($transition);
    &:hover {
      background: transparent;
      border-color: #663e31;
      span svg * {
        fill: #663e31;
      }
    }
  }

  .owl-next {
    margin-left: 40px;
  }
}
.owl-theme .owl-nav {
  text-align: center;
}
.banner_arrow {
  display: flex;
}
@media (max-width: 767px) {
  .main-heading {
    text-align: center;
  }
  .main_slider.owl-carousel .owl-nav {
    position: unset;
    margin-top: -20px;
  }
}

.thank_section {
    width: 100%;
    height: 100vh;
    position: relative;
    background:#fff;
}
.thankyou_row {
    width: 30%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    box-shadow: 0 0 6px #ccc;
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
        background: #663e31;
}
.thankyou_row img {
    width: 52%;
}
.thankyou_row h3 {
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    color:#000;
}
.thankyou_row h4 {
    margin-bottom: 10px;
    font-weight: 600;
    color:#000;
}
.thankyou_row a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
@media only screen and (min-width: 320px) and (max-width: 767px){
    .thankyou_row {
        width: 90%;
        padding: 24px 10px;
    }
    .desktop {display: none;}
.mobile {display: block;}
}





  /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #fff;
  color: #000;
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
      width: 33%;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* optional border */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 15px;
    font-size: 16px;
   font-family: Cera;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
   font-family: Cera;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



