*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 5px;
  --headerheight: calc(120px + (var(--headerpadding) * 2));
  --headerfixed: 100px;
  --footerstrip: 38px;
  --primary: #FFC578;
  --secondary: #CB9B57;
  --prime: #A8715A;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #EFEFEF;
  --container: 1280px;
  --containerfluid: 2rem;
  --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient2: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --headerheight: calc(75px + (var(--headerpadding) * 2));
    --headerfixed: 75px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Circular";
}

small {
  font-size: 14px;
  font-weight: 500;
}

.text-uppercase {
  text-transform: uppercase;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  height: 100%;
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  font-size: 48px;
  line-height: 1.17;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  font-size: 36px;
  line-height: 1.06;
}

.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.1;
  font-family: "Silk";
  text-transform: uppercase;
}
.heading h4 {
  font-family: "Optima";
  line-height: 1.167;
}
.heading.medium h2, .heading.medium h3 {
  font-size: 36px;
  line-height: 1.1;
}
.heading.large h2, .heading.large h3 {
  font-size: 64px;
  line-height: 1.1;
}
.heading.font-70 h2, .heading.font-70 h3 {
  font-size: 70px;
  line-height: 1.1;
}
@media only screen and (max-width: 1152px) {
  .heading.font-70 h2, .heading.font-70 h3 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 340px) {
  .heading.font-70 h2, .heading.font-70 h3 {
    font-size: 40px;
  }
}
.heading.f-optima h2, .heading.f-optima h3 {
  font-family: "Optima";
  text-transform: initial;
}
.heading.white h2, .heading.white h3 {
  color: var(--white);
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.167;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

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

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

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 520px) {
  .model .close {
    top: 20px;
    right: 20px;
  }
}
.model .close path {
  stroke: var(--white);
}

.btn {
  --height: 34px;
  --padding: 21px;
  display: inline-block;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  overflow: hidden;
  color: var(--black);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  border-radius: 30px;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  background: var(--primary);
  z-index: 1;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s ease-in;
}
.btn::before {
  background: var(--gradient);
}
.btn::after {
  background: var(--gradient2);
  opacity: 0;
}
.btn:hover::before {
  opacity: 0;
}
.btn:hover::after {
  opacity: 1;
}

.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--black);
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: 400;
  --textareaheight: 86px;
  --paddingleftright: 0px;
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form .full {
  grid-column: span var(--item);
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
  background: var(--labelbackground);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
  background: var(--labelbackground);
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp {
  text-align: center;
  margin-top: 23px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.primary-fill .swiper-prev, .swiper-nav.primary-fill .swiper-next {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.primary-fill .swiper-prev svg path, .swiper-nav.primary-fill .swiper-next svg path {
  fill: var(--white);
}
.swiper-nav.white-fill .swiper-prev, .swiper-nav.white-fill .swiper-next {
  background: var(--white);
  border-color: var(--white);
}
.swiper-nav.white-fill .swiper-prev svg path, .swiper-nav.white-fill .swiper-next svg path {
  fill: var(--black);
}
.swiper-nav.white-fill .swiper-prev:hover, .swiper-nav.white-fill .swiper-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.white-fill .swiper-prev:hover svg path, .swiper-nav.white-fill .swiper-next:hover svg path {
  fill: var(--white);
}
.swiper-nav.btn-no-background .swiper-prev, .swiper-nav.btn-no-background .swiper-next {
  border: none;
  height: auto;
  width: auto;
  border-radius: initial;
}
.swiper-nav.btn-no-background .swiper-prev svg, .swiper-nav.btn-no-background .swiper-next svg {
  position: unset;
  translate: 0 0;
}
.swiper-nav.btn-no-background .swiper-prev:hover, .swiper-nav.btn-no-background .swiper-next:hover {
  background: none;
}
.swiper-nav.btn-no-background .swiper-prev:hover path, .swiper-nav.btn-no-background .swiper-next:hover path {
  fill: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev, .swiper-nav.swiper-nav-fill .swiper-next {
  border-color: var(--white);
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.swiper-nav.swiper-nav-fill .swiper-prev path, .swiper-nav.swiper-nav-fill .swiper-next path {
  fill: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev:hover, .swiper-nav.swiper-nav-fill .swiper-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev:hover path, .swiper-nav.swiper-nav-fill .swiper-next:hover path {
  fill: var(--white);
}
.swiper-nav.black .swiper-prev, .swiper-nav.black .swiper-next {
  border-color: var(--black);
}
.swiper-nav.black .swiper-prev path, .swiper-nav.black .swiper-next path {
  fill: var(--black);
}
.swiper-nav.black .swiper-prev:hover, .swiper-nav.black .swiper-next:hover {
  border-color: var(--primary);
  background: var(--primary);
}
.swiper-nav.black .swiper-prev:hover path, .swiper-nav.black .swiper-next:hover path {
  fill: var(--white);
}
.swiper-nav.group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
@media only screen and (max-width: 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  flex: 0 1 auto;
  --btn: 45px;
  height: var(--btn);
  width: var(--btn);
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  position: relative;
  background: none;
}
.swiper-prev svg, .swiper-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(var(--btn) / 5);
  height: auto;
}
.swiper-prev path, .swiper-next path {
  transition: 0.5s ease;
  fill: var(--white);
}
.swiper-prev:hover, .swiper-next:hover {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover path, .swiper-next:hover path {
  fill: var(--primary);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-horizontal-gap: 5px;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #989898;
  opacity: 1;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}
.play-btn.play-btn2 {
  --btnsize: 87px;
  --offset: 8px;
  --background: var(--white);
  background: var(--white);
  --playbtncolor: var(--primary);
  border: none;
  outline: 1px solid var(--background);
  outline-offset: var(--offset);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.website-content h2 {
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  .website-content h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 22px;
  }
}
.website-content h3, .website-content h4 {
  font-size: 24px;
  line-height: 1.21;
}
@media only screen and (max-width: 675px) {
  .website-content h3, .website-content h4 {
    font-size: 22px;
    line-height: 1.2;
  }
}
.website-content h4 {
  font-size: 22px;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 20px;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
.website-content.website-content-white * {
  color: var(--white);
}

.privacy-secA {
  margin-top: var(--headerfixed);
  padding: 4rem 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
  background: var(--white);
  transition: 0.5s ease;
}
header.header-fixed, header.header-fixed-permanent {
  height: var(--headerfixed);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
header.header-fixed::before, header.header-fixed-permanent::before {
  height: var(--headerfixed);
}
header.header-fixed .header-wrapper .colA::before, header.header-fixed-permanent .header-wrapper .colA::before {
  transform: translateY(-100%);
}
header.header-fixed .header-wrapper .colB .colb-wrap .upper-col li.rera, header.header-fixed-permanent .header-wrapper .colB .colb-wrap .upper-col li.rera {
  font-size: 13px;
}
header.header-fixed .header-wrapper .colB .colb-wrap .upper-col li:not(:last-child), header.header-fixed-permanent .header-wrapper .colB .colb-wrap .upper-col li:not(:last-child) {
  margin-right: 36px;
}
header.header-fixed .header-wrapper .colB .colb-wrap .upper-col li .call, header.header-fixed-permanent .header-wrapper .colB .colb-wrap .upper-col li .call {
  font-size: 14px;
}
header.header-fixed .header-wrapper .colB .colb-wrap .bottom-col .devika, header.header-fixed-permanent .header-wrapper .colB .colb-wrap .bottom-col .devika {
  flex: 0 1 100px;
  --icon: 12px;
}
header.header-fixed .header-wrapper .colB .colb-wrap .bottom-col .nav li a, header.header-fixed-permanent .header-wrapper .colB .colb-wrap .bottom-col .nav li a {
  font-size: 20px;
}
header .container-fluid {
  display: flex;
  align-items: center;
}
header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: calc(100% - var(--headerpadding) * 2);
  align-items: center;
}
header .header-wrapper .colA, header .header-wrapper .colB {
  height: 100%;
}
header .header-wrapper .colA li, header .header-wrapper .colB li {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .colA {
  flex: 0 1 200px;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colA {
    flex: 0 1 120px;
  }
}
header .header-wrapper .colA::before {
  content: "";
  position: absolute;
  top: calc(100% + var(--headerpadding));
  width: 100%;
  height: 22px;
  background: url(../icon/logo-semicirc.svg) no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colA::before {
    display: none;
  }
}
header .header-wrapper .colA a, header .header-wrapper .colA img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
header .header-wrapper .colB {
  flex: 1;
  display: flex;
  align-items: center;
}
header .header-wrapper .colB .colb-wrap {
  width: 100%;
}
header .header-wrapper .colB .colb-wrap .upper-col {
  text-align: right;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .colB .colb-wrap .upper-col {
    margin-bottom: 0;
  }
}
header .header-wrapper .colB .colb-wrap .upper-col li.rera {
  color: var(--text);
  border-right: 1px solid #C9C7C7;
  padding-right: 26px;
  font-size: 15px;
  transition: 0.5s ease;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .colB .colb-wrap .upper-col li.rera {
    display: none;
  }
}
header .header-wrapper .colB .colb-wrap .upper-col li:not(:last-child) {
  margin-right: 36px;
}
header .header-wrapper .colB .colb-wrap .upper-col li:has(.call) {
  line-height: 0;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colB .colb-wrap .upper-col li:has(.call) {
    display: none;
  }
}
header .header-wrapper .colB .colb-wrap .upper-col li .call {
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  transition: 0.5s ease;
}
header .header-wrapper .colB .colb-wrap .upper-col li .btn {
  --padding: 16px;
}
header .header-wrapper .colB .colb-wrap .bottom-col {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .colB .colb-wrap .bottom-col {
    display: none;
  }
}
header .header-wrapper .colB .colb-wrap .bottom-col .nav {
  flex: 1;
  text-align: right;
}
header .header-wrapper .colB .colb-wrap .bottom-col .nav li {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
header .header-wrapper .colB .colb-wrap .bottom-col .nav li a {
  font-family: "Optima";
  font-size: 22px;
  color: var(--black);
  display: block;
  transition: 0.5s ease;
}
header .header-wrapper .colB .colb-wrap .bottom-col .nav li a:hover {
  color: var(--secondary);
}
header .header-wrapper .colB .colb-wrap .bottom-col .nav li:not(:last-child) {
  margin-right: 3.5rem;
}
header .header-wrapper .colB .colb-wrap .bottom-col .devika {
  flex: 0 1 135px;
  display: block;
  line-height: 0;
  position: relative;
  margin-left: 34px;
  padding-left: 36px;
  margin-top: 8px;
  transition: 0.5s ease;
  --icon: 16.33px;
}
header .header-wrapper .colB .colb-wrap .bottom-col .devika img {
  transition: 0.5s ease;
}
header .header-wrapper .colB .colb-wrap .bottom-col .devika::before {
  content: "";
  width: var(--icon);
  height: calc(var(--icon) * 2.322);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../icon/next2-gold-fade.svg) no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
}
header .header-wrapper .ham-btn {
  flex: 0 1 auto;
  line-height: 0;
  height: 22px;
  width: 42px;
  margin-left: auto;
  display: none;
  flex-direction: column;
  gap: 8px;
  --lineheight: 2px;
  margin-left: 1rem;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .ham-btn {
    display: flex;
  }
}
header .header-wrapper .ham-btn span {
  display: block;
  height: var(--lineheight);
  width: inherit;
  background: var(--black);
}

footer {
  overflow: hidden;
  background: url(../images/footerbg.jpg) no-repeat;
  background-size: cover;
}
footer::before {
  bottom: auto;
  top: 0;
}
footer .upper-footer {
  padding: 60px 0;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer {
    padding: 55px 0 35px;
  }
}
footer .upper-footer .logo {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}
footer .upper-footer .grid {
  display: grid;
  grid-template-columns: 1fr 272px 1fr;
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 0;
  }
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colA {
    order: 2;
    flex: 0 1 50%;
  }
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .grid .colA {
    flex: 0 1 100%;
  }
}
footer .upper-footer .grid .colA address {
  max-width: 262px;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #9C9A9A;
}
footer .upper-footer .grid .colA address:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .grid .colA address {
    font-size: 14px;
  }
}
footer .upper-footer .grid .colA address b {
  color: var(--white);
  display: block;
  font-weight: 500;
}
footer .upper-footer .grid .colA address p a {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #9C9A9A;
  transition: 0.5s ease;
}
footer .upper-footer .grid .colA address p a:hover {
  color: var(--white);
}
@media only screen and (max-width: 1152px) {
  footer .upper-footer .grid .colB {
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colB {
    flex: 0 1 100%;
    order: 1;
    padding: 0;
  }
}
footer .upper-footer .grid .colB a.logo {
  max-width: 245px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 37px;
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colB a.logo {
    margin: 0 auto 28px;
  }
}
footer .upper-footer .grid .colB a.logo img {
  width: 100%;
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colB a.logo img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}
footer .upper-footer .grid .colB p {
  color: var(--white);
  text-align: center;
}
footer .upper-footer .grid .colB .btm-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 0 18px;
}
@media only screen and (max-width: 365px) {
  footer .upper-footer .grid .colB .btm-wrp {
    gap: 15px 0;
  }
}
footer .upper-footer .grid .colB .btm-wrp .btn path {
  fill: var(--black);
}
footer .upper-footer .grid .colC {
  text-align: right;
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colC {
    order: 3;
    flex: 0 1 50%;
  }
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .grid .colC {
    flex: 0 1 100%;
    text-align: center;
  }
}
footer .upper-footer .grid .colC .social {
  margin-bottom: 45px;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .grid .colC .social {
    margin-bottom: 25px;
  }
}
footer .upper-footer .grid .colC .social li {
  display: inline-block;
  vertical-align: middle;
}
footer .upper-footer .grid .colC .social li:not(:last-child) {
  margin-right: 25px;
}
@media only screen and (max-width: 1152px) {
  footer .upper-footer .grid .colC .social li:not(:last-child) {
    margin-right: 15px;
  }
}
footer .upper-footer .grid .colC .social li a {
  display: block;
}
footer .upper-footer .grid .colC .social li a svg, footer .upper-footer .grid .colC .social li a path {
  transition: 0.6s ease;
}
footer .upper-footer .grid .colC .contact-inf a {
  color: var(--white);
  display: block;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .grid .colC .contact-inf a.mail-to {
    font-size: 14px;
  }
}
footer .upper-footer .grid .colC .contact-inf a.call-btn {
  font-size: 32px;
  margin-top: 16px;
}
@media only screen and (max-width: 1007px) {
  footer .upper-footer .grid .colC .contact-inf a.call-btn {
    font-size: 26px;
    margin-top: 12px;
  }
}
footer .upper-footer .grid .colC .btn {
  margin-top: 1rem;
}
footer .middle-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .middle-footer p {
  color: rgba(255, 255, 255, 0.5);
  text-align: justify;
  font-size: 13px;
  line-height: 1.6;
}
footer .middle-footer p span {
  color: var(--white);
}
footer .bottom-footer {
  padding: 28px 0;
}
@media only screen and (max-width: 1007px) {
  footer .bottom-footer {
    padding: 28px 0 35px;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-footer {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 520px) {
  footer .bottom-footer {
    padding-bottom: 90px;
  }
}
footer .bottom-footer .flex {
  display: block;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .bottom-footer .flex {
    justify-content: center;
    text-align: center;
  }
}
footer .bottom-footer .flex .colB {
  text-align: center;
}
footer .bottom-footer .flex ul {
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
footer .bottom-footer .flex ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
footer .bottom-footer .flex ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 15px;
  padding-right: 15px;
}
footer .bottom-footer .flex ul li a {
  color: #9C9A9A;
}
footer .bottom-footer .flex ul li a:hover {
  color: var(--white);
}
footer .bottom-footer .flex span, footer .bottom-footer .flex p, footer .bottom-footer .flex a {
  font-size: 13px;
}
@media only screen and (max-width: 860px) {
  footer .bottom-footer .flex span, footer .bottom-footer .flex p, footer .bottom-footer .flex a {
    font-size: 11px;
  }
}
footer .bottom-footer .flex p {
  color: var(--white);
}
footer .bottom-footer .flex span {
  color: #9C9A9A;
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}
footer .bottom-footer .flex span a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-left: 6px;
}

.enquire-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.7s ease;
  position: fixed;
  z-index: 9999;
}
.enquire-pop::before {
  z-index: 2;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .close {
    top: 20px;
    right: 20px;
  }
}
.enquire-pop .close path {
  stroke: var(--black);
}
.enquire-pop .model-body {
  padding: 10px 42px 20px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.enquire-pop .model-body .title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title {
    margin-bottom: 25px;
  }
}
.enquire-pop .model-body .title .ico {
  display: block;
  margin: 0 auto;
  max-width: 75px;
  margin-bottom: 15px;
}
.enquire-pop .model-body .title .ico svg {
  width: 100%;
  height: auto;
}
.enquire-pop .model-body .title h3 {
  text-align: center;
  font-family: "Optima";
}
.enquire-pop .model-body .title p {
  text-align: center;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  text-transform: capitalize;
  margin-top: 10px;
}
.enquire-pop .model-body .form {
  --bacground: var(--white);
  --theme: var(--text);
  --label: rgb(0 0 0 / .6);
  --color: var(--text);
  --font: 400;
  --border: var(--pink);
  gap: 18px 0;
}
.enquire-pop .model-body .form .sbmit-btn {
  margin-left: auto;
  margin-right: auto;
}

.video-pop {
  left: 0;
  right: 0;
  background: var(--primary);
  z-index: 9;
  transform: translateY(100%);
  transition: 0.7s ease;
  position: fixed;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0px;
  }
}
.video-pop .close-video path {
  stroke: var(--white);
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 1px solid var(--white);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--gradient);
  display: none;
}
@media only screen and (max-width: 520px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(192, 149, 89, 0.5);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--black);
  font-weight: 500;
}
.footer-strip ul li a svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}
.footer-strip ul li a svg path {
  fill: var(--white);
}

.ham-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.5s ease;
  background: #fff;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop .model-body {
  padding: 60px 52px 30px;
  background-position: 100% 100%;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 80px 25px 20px;
  }
}
.ham-pop .model-body .ico {
  margin-bottom: 3rem;
}
.ham-pop .model-body .nav-list li:not(:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.ham-pop .model-body .nav-list li a {
  font-size: 28px;
  line-height: 1.06;
  color: var(--black);
  font-family: "Optima";
  display: inline-block;
  font-weight: 500;
}
.ham-pop .model-body .nav-list li a:hover {
  color: var(--primary);
}

.banner {
  margin-top: var(--headerheight);
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 83%);
}
.banner .bg {
  height: calc(100vh - var(--headerheight));
  line-height: 0;
}
@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .bg {
    height: 470px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .bg {
    height: 375px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  z-index: 1;
}
.banner.home-banner .banner-wrapper {
  top: auto;
  translate: 0 0;
  bottom: 20%;
}
.banner.home-banner .banner-wrapper .content {
  max-width: 833px;
  margin: 0 auto;
}
.banner.home-banner .banner-wrapper .content h1 {
  font-family: "Silk";
  font-size: 80px;
  line-height: 1;
  color: var(--white);
  max-width: 474px;
  margin: 0 auto 54px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .banner.home-banner .banner-wrapper .content h1 {
    font-size: 60px;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media only screen and (max-width: 675px) {
  .banner.home-banner .banner-wrapper .content h1 {
    font-size: 50px;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.banner.home-banner .banner-wrapper .content h1 span {
  font-family: "Optima";
  font-size: 36px;
  line-height: 1;
  display: block;
  text-transform: initial;
}
@media only screen and (max-width: 767px) {
  .banner.home-banner .banner-wrapper .content h1 span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .banner.home-banner .banner-wrapper .content h1 span {
    font-size: 27px;
  }
}
.banner.home-banner .banner-wrapper .content h1 span:last-child {
  text-align: right;
  margin-top: 4px;
}
@media only screen and (max-width: 675px) {
  .banner.home-banner .banner-wrapper .content h1 span:first-child {
    margin-bottom: 8px;
  }
}
.banner.home-banner .banner-wrapper .content .form {
  --inputsize: 42px;
  --item: 4;
  --color: var(--white);
  --labelbefore: var(--white);
  --labelafter: rgb(256 256 256 / .7);
  --borderbefore: var(--white);
  --borderafter: var(--gradient);
  --font: normal;
  --gaplr: 24px;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .banner.home-banner .banner-wrapper .content .form {
    display: none;
  }
}
.banner.home-banner .banner-wrapper .content .form .form-group {
  height: var(--inputsize);
}
.banner.home-banner .banner-wrapper .content .form .submit-grp {
  margin-top: 0;
}
.banner.home-banner .banner-wrapper .content .form .submit-grp .btn {
  --padding: 16px;
}

.home-secA {
  line-height: 0;
}
.home-secA .content {
  --size: 768px;
  max-width: var(--size);
  width: 100%;
  height: calc(var(--size) * 0.91806);
  margin: 60px auto;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .home-secA .content {
    --size: 660px;
  }
}
@media only screen and (max-width: 1536px) {
  .home-secA .content {
    --size: 580px;
  }
}
@media only screen and (max-width: 1300px) {
  .home-secA .content {
    --size: 472px;
  }
}
@media only screen and (max-width: 1152px) {
  .home-secA .content {
    --size: 355px;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA .content {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .content {
    padding: 0 15px;
  }
}
.home-secA .content .heading, .home-secA .content .description {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  line-height: 1.5;
  width: 100%;
}
@media only screen and (max-width: 1007px) {
  .home-secA .content .heading, .home-secA .content .description {
    position: unset;
    translate: 0 0;
    margin: 0 auto;
    text-align: center;
  }
}
.home-secA .content .heading {
  right: 100%;
  max-width: 327px;
}
@media only screen and (max-width: 1366px) {
  .home-secA .content .heading {
    right: calc(100% - 3rem);
  }
}
@media only screen and (max-width: 1300px) {
  .home-secA .content .heading {
    max-width: 238px;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA .content .heading {
    max-width: 335px;
    margin-bottom: 20px;
  }
}
.home-secA .content .heading h3 {
  max-width: 300px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1300px) {
  .home-secA .content .heading h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1152px) {
  .home-secA .content .heading h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA .content .heading h3 {
    font-size: 40px;
    max-width: 265px;
    margin: 0 auto 1.5rem;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .content .heading h3 {
    font-size: 30px;
    max-width: 195px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  .home-secA .content .heading h4 {
    font-size: 22px;
  }
}
.home-secA .content .description {
  left: 100%;
  max-width: 380px;
}
@media only screen and (max-width: 1366px) {
  .home-secA .content .description {
    left: calc(100% - 3rem);
  }
}
@media only screen and (max-width: 1152px) {
  .home-secA .content .description {
    max-width: 412px;
    translate: 0 0;
    top: 0;
  }
}
.home-secA .content .description h5 {
  font-size: 30px;
  line-height: 1.167;
  font-family: "Optima";
  margin-bottom: 12px;
}
@media only screen and (max-width: 1300px) {
  .home-secA .content .description h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA .content .description h5 {
    font-family: "Circular";
    max-width: 300px;
    margin: 0 auto 15px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .content .description h5 {
    margin-top: 3rem;
    font-size: 22px;
  }
}
.home-secA .content .description p {
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .home-secA .content .description p {
    margin-bottom: 4rem;
  }
}
.home-secA .content .shape-wrap {
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/ico-mask.svg);
          mask-image: url(../images/ico-mask.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media only screen and (max-width: 1007px) {
  .home-secA .content .shape-wrap {
    max-width: var(--size);
    height: calc(var(--size) * 0.91806);
    margin: 5rem auto;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .content .shape-wrap {
    max-width: 100%;
    margin: 2rem auto 0;
  }
}
.home-secA .content .shape-wrap video, .home-secA .content .shape-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 75% 0;
     object-position: 75% 0;
}
.home-secA.home-secD {
  background: var(--white);
  background-position: 15% 85%, 88% 90%;
  background-size: 5%, 6%;
}
@media only screen and (max-width: 1300px) {
  .home-secA.home-secD {
    background-position: 15% 85%, 90% 100%;
    background-size: 5%, 4%;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA.home-secD {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA.home-secD {
    padding: 4rem 0 1rem;
    background: var(--white);
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA.home-secD .content {
    margin-top: 0;
  }
}
.home-secA.home-secD .content .heading {
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (max-width: 1300px) {
  .home-secA.home-secD .content .heading {
    top: 4%;
    translate: 0 0;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA.home-secD .content .heading {
    margin: 3rem auto 5rem;
  }
}
.home-secA.home-secD .content .heading h3 {
  max-width: 389px;
}
.home-secA.home-secD .content .heading p {
  max-width: 363px;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.home-secA.home-secD .content .description {
  max-width: 435px;
  translate: 0 0;
  top: 22%;
}
@media only screen and (max-width: 1536px) {
  .home-secA.home-secD .content .description {
    top: 10%;
    left: calc(100% - 8rem);
  }
}
@media only screen and (max-width: 1152px) {
  .home-secA.home-secD .content .description {
    top: 0%;
    left: calc(100% - 4rem);
  }
}
.home-secA.home-secD .content .description .avant-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 43px 26px;
}
@media only screen and (max-width: 1152px) {
  .home-secA.home-secD .content .description .avant-wrap {
    grid-gap: 32px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA.home-secD .content .description .avant-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-secA.home-secD .content .description .avant-wrap .item {
  text-align: center;
}
@media only screen and (max-width: 1007px) {
  .home-secA.home-secD .content .description .avant-wrap .item:nth-child(4) {
    display: none;
  }
}
.home-secA.home-secD .content .description .avant-wrap .item .ico {
  line-height: 0;
}
.home-secA.home-secD .content .description .avant-wrap .item h5 {
  font-size: 24px;
  line-height: 32px;
  margin: 12px 0 9px;
}
.home-secA.home-secD .content .description .avant-wrap .item p {
  font-size: 15px;
  line-height: 1.3;
}
@media only screen and (max-width: 675px) {
  .home-secA.home-secD .content .description .avant-wrap .item p {
    max-width: 156px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secA.home-secD .content .shape-wrap {
    margin-top: 0;
  }
}
.home-secA.home-secD .content .shape-wrap video {
  -o-object-position: 52%;
     object-position: 52%;
}

.home-secB {
  position: relative;
}
.home-secB .bg {
  line-height: 0;
  position: relative;
}
.home-secB .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.home-secB .bg::before {
  z-index: 3;
}
.home-secB .bg .secA-img-slider img {
  height: 776px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1366px) {
  .home-secB .bg .secA-img-slider img {
    height: calc(100vh - var(--headerfixed));
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .bg .secA-img-slider img {
    height: 525px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secB .bg .secA-img-slider img {
    height: 412px;
  }
}
.home-secB .secA-nav {
  z-index: 4;
  max-width: 90%;
}
@media only screen and (max-width: 675px) {
  .home-secB .secA-nav {
    display: none;
  }
}
.home-secB .secA-nav .prev-secA, .home-secB .secA-nav .next-secA {
  background: var(--white);
}
.home-secB .secA-nav .prev-secA:hover, .home-secB .secA-nav .next-secA:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.home-secB .secA-nav .prev-secA:hover svg path, .home-secB .secA-nav .next-secA:hover svg path {
  fill: var(--white);
}
.home-secB .secA-nav .prev-secA svg path, .home-secB .secA-nav .next-secA svg path {
  fill: var(--secondary);
}
.home-secB .secB-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  bottom: 20%;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .home-secB .secB-wrapper {
    bottom: 8%;
  }
}
.home-secB .secB-wrapper .descrip-nav-content {
  max-width: 502px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .home-secB .secB-wrapper .descrip-nav-content {
    max-width: 412px;
  }
}
.home-secB .secB-wrapper .descrip-nav-content .tabs {
  transition: 1.5s ease 0.2s;
}
.home-secB .secB-wrapper .descrip-nav-content .tabs:not(.active) {
  transition: 0.6s ease;
  transition-delay: 0s;
  transform: translateY(40px) scale(0.7);
}
.home-secB .secB-wrapper .descrip-nav-content .card h5 {
  font-family: "Optima";
  font-size: 36px;
  line-height: 1.1;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .home-secB .secB-wrapper .descrip-nav-content .card h5 {
    font-size: 30px;
    max-width: 388px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secB .secB-wrapper .descrip-nav-content .card h5 {
    font-size: 24px;
    max-width: 315px;
  }
}
.home-secB .secB-wrapper .secA-dots {
  margin-top: 3rem;
  pointer-events: all;
}
@media only screen and (max-width: 675px) {
  .home-secB .secB-wrapper .secA-dots {
    margin-top: 2rem;
  }
}
.home-secB .secB-wrapper .secA-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
}

.home-secC::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.5)), linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 100%);
  z-index: 3;
}
@media only screen and (max-width: 1007px) {
  .home-secC figure {
    height: 800px;
  }
}
.home-secC figure .amenities-img-slider {
  height: 100%;
}
.home-secC figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
}
.home-secC figcaption .content-wrap {
  max-width: 440px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap {
    max-width: 100%;
  }
}
.home-secC figcaption .content-wrap .heading {
  margin-bottom: 5.8rem;
}
@media only screen and (max-width: 1152px) {
  .home-secC figcaption .content-wrap .heading {
    margin-bottom: 3rem;
  }
}
.home-secC figcaption .content-wrap .heading h2, .home-secC figcaption .content-wrap .heading h3 {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .heading, .home-secC figcaption .content-wrap .content-sec {
    max-width: 442px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .content-sec .ico svg {
    width: 120px;
    height: 85px;
  }
}
.home-secC figcaption .content-wrap .content-sec .amenities-img-dots {
  margin-top: 3rem;
  pointer-events: all;
}
@media only screen and (max-width: 675px) {
  .home-secC figcaption .content-wrap .content-sec .amenities-img-dots {
    margin-top: 2rem;
  }
}
.home-secC figcaption .content-wrap .content-sec .amenities-img-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
}
.home-secC figcaption .content-wrap .content {
  margin: 25px 0 40px;
}
.home-secC figcaption .content-wrap .amenities-sec {
  max-width: 148px;
  width: 100%;
  position: absolute;
  left: calc(100% + 9rem);
  top: 50%;
  translate: 0 -50%;
  background: var(--white);
  border-radius: 150px;
}
@media only screen and (max-width: 1152px) {
  .home-secC figcaption .content-wrap .amenities-sec {
    left: calc(100% + 3rem);
  }
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec {
    max-width: 700px;
    position: unset;
    translate: 0 0;
    margin-top: 3rem;
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenities-wrap {
  padding: 30px 0;
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenities-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenities-wrap {
    padding: 12px 0;
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenities-wrap .amenity-prev {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenities-wrap .amenity-prev {
    margin-bottom: 0;
    flex: 1;
    transform: rotate(-90deg);
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenities-wrap .amenity-next {
  margin-top: 2rem;
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenities-wrap .amenity-next {
    margin-top: 0;
    flex: 1;
    transform: rotate(-90deg);
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider {
  --space: 30px;
  --total: 4;
  --height: 300px;
  max-height: var(--height);
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenity-slider {
    max-height: initial;
    flex: 0 1 70%;
    max-width: 70%;
    width: 100%;
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider .item {
  height: calc((var(--height) - var(--space) * (var(--total) - 1)) / var(--total));
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenity-slider .item {
    height: auto;
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider .item:not(:last-child) {
  margin-bottom: var(--space);
}
@media only screen and (max-width: 1007px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenity-slider .item:not(:last-child) {
    margin-bottom: 0;
  }
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider .ico-amen {
  line-height: 0;
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider .ico-amen img {
  height: 28px;
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-secC figcaption .content-wrap .amenities-sec .amenity-slider p {
  font-size: 14px;
  margin: 0 auto;
  color: var(--black);
  padding: 8px 12px 0;
  line-height: 18px;
}
@media only screen and (max-width: 675px) {
  .home-secC figcaption .content-wrap .amenities-sec .amenity-slider p {
    padding: 8px 0 0;
  }
}

.home-secE {
  position: relative;
}
@media only screen and (max-width: 1007px) {
  .home-secE {
    padding: 4rem 0;
    background: #F6E9DD;
  }
}
.home-secE::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url(../images/selfie.png) no-repeat;
  background-position: 0 100%;
}
@media only screen and (max-width: 1007px) {
  .home-secE::before {
    display: none;
  }
}
.home-secE .bg {
  line-height: 0;
  height: 608px;
  position: relative;
}
.home-secE .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(90.49deg, rgba(246, 233, 221, 0) 5.28%, #F6E9DD 87.62%);
}
@media only screen and (max-width: 1007px) {
  .home-secE .bg {
    display: none;
  }
}
.home-secE .bg img, .home-secE .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secE .contact-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
  z-index: 3;
}
@media only screen and (max-width: 1007px) {
  .home-secE .contact-wrapper {
    position: unset;
    translate: 0 0;
  }
}
.home-secE .contact-wrapper .form-wrap {
  max-width: 473px;
  margin-left: auto;
}
@media only screen and (max-width: 1007px) {
  .home-secE .contact-wrapper .form-wrap {
    margin-right: auto;
  }
}
.home-secE .contact-wrapper .form-wrap .heading {
  max-width: 349px;
  margin: 0 auto 32px;
}
.home-secE .contact-wrapper .form-wrap .heading h3 {
  color: var(--prime);
}
.home-secE .contact-wrapper .form-wrap .heading p {
  color: var(--text);
  margin-top: 15px;
}
.home-secE .contact-wrapper .form-wrap .form {
  --item: 2;
  --color: var(--black);
  --labelbefore: var(--prime);
  --labelafter: var(--prime);
  --borderbefore: var(--prime);
  --borderafter: var(--prime);
  --gaptb: 17px;
  --gaplr: 35px;
}
@media only screen and (max-width: 675px) {
  .home-secE .contact-wrapper .form-wrap .form {
    --item: 1;
  }
}
.home-secE .contact-wrapper .form-wrap .form .submit-grp .btn {
  --padding: 30px;
}

.home-secF {
  padding: 112px 0 160px;
  background: url(../images/tree.svg) no-repeat;
  background-position: 10% 90%;
}
@media only screen and (max-width: 1536px) {
  .home-secF {
    background-size: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .home-secF {
    background-size: 11%;
  }
}
@media only screen and (max-width: 675px) {
  .home-secF {
    background-size: 18%;
    background-position: 10% 100%, 90% 90%;
    padding: 4rem 0;
    background: var(--white);
  }
}
.home-secF .content-wrap {
  text-align: center;
}
.home-secF .content-wrap .devika-logo {
  display: block;
  max-width: 247px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 675px) {
  .home-secF .content-wrap .devika-logo {
    max-width: 160px;
  }
}
.home-secF .content-wrap .devika-logo img {
  width: 100%;
}
.home-secF .content-wrap .snc {
  text-align: center;
  color: var(--text);
  margin-top: 2px;
}
.home-secF .content-wrap .svnty-yr {
  display: block;
  margin: 54px auto;
}
.home-secF .content-wrap .content {
  max-width: 649px;
  margin: 0 auto;
}
.home-secF .content-wrap .content p {
  color: var(--text);
}
.home-secF .content-wrap .count-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 787px;
  margin: 42px auto;
}
@media only screen and (max-width: 1152px) {
  .home-secF .content-wrap .count-wrap {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .home-secF .content-wrap .count-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secF .content-wrap .count-wrap .count-info:nth-child(2) {
    border-right: none !important;
  }
}
.home-secF .content-wrap .count-wrap .count-info:not(:last-child) {
  border-right: 1px solid var(--secondary);
  padding-right: 21px;
  margin-right: 21px;
}
@media only screen and (max-width: 1007px) {
  .home-secF .content-wrap .count-wrap .count-info:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
  }
}
.home-secF .content-wrap .count-wrap .count-info h5 {
  font-family: "Optima";
  font-size: 40px;
  line-height: 1;
  color: var(--secondary);
}
@media only screen and (max-width: 1007px) {
  .home-secF .content-wrap .count-wrap .count-info h5 {
    font-size: 26px;
  }
}
.home-secF .content-wrap .count-wrap .count-info h6 {
  font-family: "Circular";
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  margin: 12px 0 8px;
}
@media only screen and (max-width: 1007px) {
  .home-secF .content-wrap .count-wrap .count-info h6 {
    font-size: 16px;
  }
}
.home-secF .content-wrap .count-wrap .count-info p {
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
}

.banner.thanks-banner {
  margin-top: 0;
}
.banner.thanks-banner::before {
  background: rgba(0, 0, 0, 0.7);
}
.banner.thanks-banner .bg {
  height: 100vh;
}
.banner.thanks-banner .banner-wrapper .content {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}
.banner.thanks-banner .banner-wrapper .ico {
  max-width: 100px;
  margin: 0 auto 1rem;
}
.banner.thanks-banner .banner-wrapper .ico svg {
  width: 100%;
  height: auto;
}
.banner.thanks-banner .banner-wrapper h1, .banner.thanks-banner .banner-wrapper p {
  color: var(--white);
}
.banner.thanks-banner .banner-wrapper h1 {
  font-family: "Silk";
}
.banner.thanks-banner .banner-wrapper p {
  margin: 10px 0 40px;
}/*# sourceMappingURL=style.css.map */