@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Petrona:ital,wght@0,100..900;1,100..900&display=swap");




	
/* @font-face {
    font-family: "FH Total Display Thin";
    src: url(/fonts/FH-Total-Display-Thin.otf);
  }

  @font-face {
    font-family: "FH Total Display Light";
    src: url(/fonts/FH-Total-Display-Light.otf);
  }

@font-face {
    font-family: "FH Total Display";
    src: url(/fonts/FH-Total-Display.otf);
  }

@font-face {
    font-family: "FH Total Display semiBold";
    src: url(/fonts/FH-Total-Display-semiBold.otf);
  }

@font-face {
    font-family: "FH Total Display Bold";
    src: url(/fonts/FH-Total-Display-Bold.otf);
  }*/

:root {
	--white: #fff;
  	--blue: #204f6e;
  	--black: #000;
  	--gold: #b49b72;
  	--primary: #f5ecdd;
  	--interFont: "Inter", sans-serif;
	--fhTotalThin: "FH Total Display Thin";
	--fhTotalLight: "FH Total Display Light";
	--fhTotal: "FH Total Display";
	--fhTotalsemiBold: "FH Total Display Semibold";
	--fhTotalBold: "FH Total Display Bold";
}

html {
  scroll-behavior: smooth; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  /*font-family: "Petrona", serif;*/
	 font-family: var(--fhTotalThin);
   font-weight: 100;
  font-size: 14px;
  background: var(--primary);
  color: var(--black);
	letter-spacing: 0.02em;
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
}
button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.cta {
  font-family: var(--fhTotal);
  z-index: 1;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  position: relative;
  display: table;
  margin-right: 40px;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 100rem;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}
.cta:hover:before {
  right: -40px;
}

.cta .ctaArw {
  background: rgba(32, 79, 110, 1);
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.cta:hover .ctaArw {
  transform: scale(0.8);
  right: -40px;
}
.cta .ctaArw svg {
  width: 30%;
  height: 30%;
  fill: white;
}
.cta .ctaArw svg path {
  transition: all 0.3s ease-in-out;
}
.cta .ctaArw svg path:last-child {
  transform: translateX(-100%);
}

.cta:hover .ctaArw svg path:last-child {
  transform: translateX(0);
}
.cta:hover .ctaArw svg path:first-child {
  transform: translateX(100%);
}
.fullScreenSection {
  padding: 50px 0;
}
section {
  padding: 50px 0;
}
h2.title {
  font-size: 32px;
  font-weight: 100;
  color: var(--black);
  margin-bottom: 50px;
  line-height: 1;
}
h2.title span {

 font-family:var(--fhTotal)
}
@media (min-width: 768.99px) {
  .fullScreenSection {
    padding: 80px 0;
  }

  h2.title {
    font-size: 48px;
  }
}
@media (min-width: 991.99px) {
  body {
    font-size: 0.938vw;
  }
  .container {
    padding: 0 8.391vw;
    max-width: inherit;
  }
  .row {
    --bs-gutter-x: 1.389vw;
  }
  .g-0 {
    --bs-gutter-x: 0;
  }

  .cta {
    height: 3.125vw;
    line-height: 3.125vw;
    padding: 0 1.5vw;
    margin-right: 3.125vw;
  }
  .cta::before {
    right: 0;
  }
  .cta:hover:before {
    right: -2.8vw;
  }
  .cta .ctaArw {
    width: 3.125vw;
    height: 3.125vw;
    right: -3.125vw;
  }

  .cta:hover .ctaArw {
    right: -2.8vw;
  }
  .fullScreenSection {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  section {
    padding: 8vw 0;
  }
  h2.title {
    font-size: 5vw;
    margin-bottom: 5vw;
    line-height: 1.1;
  }
}

/* Loader */
.loaderWrp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(243, 234, 221);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loaderWrp svg {
  width: 40%;
  height: 40%;
  fill: none;
  stroke: #b49b72;
  stroke-width: 0.5px;
}
.loaderWrp svg path {
  fill: none;
  stroke-dasharray: 149;
  stroke-dashoffset: 149;
}
/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(243, 234, 221, 0.7);
  backdrop-filter: blur(100px);
  z-index: 999;
  padding: 12.5px 0;
}
.logo {
  display: block;
  width: 150px;
}
@media (min-width: 575.99px) {
  .logo {
    width: 200px;
  }
}
@media (min-width: 991.99px) {
  header {
    padding: 1.447vw;
  }
  header .container {
    padding: 0;
  }
  .logo {
    width: 19.097vw;
  }

  .headContact {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/* Navigation */
nav .menuCol .menuList li a {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: var(--fhTotal);
}
@media (min-width: 991.99px) {
  nav {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .menuList {
    gap: 0 1.157vw;
  }
  nav .menuCol .menuList li a:hover {
    color: var(--gold);
  }
  nav .menuCol .menuList li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease-in-out;
  }
  nav .menuCol .menuList li a:hover:after {
    width: 100%;
  }
}
@media (max-width: 991.99px) {
  nav {
    background: #f3eadd;
    /* background: red; */
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    /* transition: all 0.3s ease-in-out; */
    height: calc(90vh - 50px);
    display: none;
    /* padding: 10px; */
    overflow: hidden;
  }

  nav .menuCol .menuList li {
    margin: 20px 0;
  }
  nav .menuCol .menuList li a {
    text-align: center;
    font-size: 26px;
    color: var(--black);
  }

  nav .menuCol .menuList li a.cta {
    display: table;
    padding: 0 20px;
    margin: 40px auto 0 auto;
    font-size: 16px;
    transform: translateX(-20px);
  }

  .headSocial {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 50px 0;
  }
  .headSocial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform-origin: 50% 50%;
    aspect-ratio: 1/1;
    background: linear-gradient(180deg, #b49b72 0%, #f5ecdd 38.86%);
    z-index: -1;
    scale: 0;
    border-radius: 100rem 100rem 0 0;
  }
  nav.active .headSocial::before {
    scale: 1;
    transition: all 1s 1.5s ease-in-out;
  }
  nav .headSocialData {
    opacity: 0;
  }
  nav.active .headSocialData {
    opacity: 1;
    transition: all 1s 2.5s ease-in-out;
  }
}

/* Menu button */
@media (max-width: 991.99px) {
  .menuBtn {
    width: 25px;
    height: 20px;
    border: 0;
    padding: 0;
    position: relative;
    background: transparent;
    display: flex;
    justify-content: end;
  }
  .menuBtn span {
    width: 100%;
    height: 2px;
    background: rgba(180, 155, 114, 1);
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 50rem !important;
  }
  .menuBtn span:nth-child(1) {
    transform: translate3d(0, -10px, 0);
    width: 80%;
  }
  .menuBtn span:nth-child(4) {
    transform: translate3d(0, 10px, 0);
    width: 60%;
  }
  .menuBtn.active span:nth-child(1),
  .menuBtn.active span:nth-child(4) {
    transform: translate3d(0, 0, 0);
    opacity: 0;
    width: 0;
  }
  .menuBtn.active span:nth-child(2) {
    transform: rotate(45deg);
  }
  .menuBtn.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* Footer */
footer {
  background: #171717;
  color: #f5ecdd;
}
.footMainWrp {
  padding: 30px 0;
}
.footShortIntro {
  font-weight: 300;
  font-family: var(--interFont);
  font-size: 12px;
}
.footLogo {
  width: 200px;
  margin-bottom: 15px;
}
.footHead {
  font-weight: 100;
}
.footLinks {
  font-weight: 600;
}

.footLinks a {
  display: block;
  transition: all 0.3s ease-in-out;
}
.footLinks a:hover {
  color: var(--gold);
}
.brandLinks a {
  position: relative;
  display: table;
  padding-right: 5px;
}
.brandLinks a:after {
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  display: block;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
.socialList {
  display: flex;
  gap: 0 10px;
}
.socialList a {
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.socialList a:hover {
  background: var(--gold);
}
.socialList a img {
  width: 50%;
}
.copyright {
  border-top: 1px solid #ffffff0d;
  padding: 20px 0;
}
.copyright svg {
  fill: #b49b72;
  width: 20px;
}
@media (min-width: 575.99px) {
  .footMainWrp {
    padding: 50px 0;
  }
}
@media (min-width: 991.99px) {
  footer .container {
    padding: 0 3.472vw;
  }
  .footMainWrp {
    padding: 5.787vw 0;
  }
  .footShortIntro {
    width: 24.016vw;
    font-size: 1.025vw;
    line-height: 1.62vw;
  }
  .footShortIntro img {
    width: 12.731vw;
    margin-bottom: 2.5vw;
  }
  .footHead {
    font-size: 1.852vw;
    margin-bottom: 2.5vw;
  }
  .footLinks {
    gap: 2.315vw 0;
  }
  .footLinks a {
    font-size: 1.157vw;
  }
  .impLinkCol {
    width: 17.361vw;
  }
  .brandLinks a:after {
    width: 1.4vw;
  }
  .socialList {
    gap: 1.736vw;
  }
  .socialList a {
    width: 1.968vw;
    border-radius: 0.579vw;
  }
  .copyright {
    font-size: 1.042vw;
    padding: 2.604vw 0;
  }
}
@media (min-width: 1440.99px) {
  .footShortIntro {
    width: 24.016vw;
    font-size: 0.81vw;
  }
}

/* Accordian */
.accHead {
  width: 100%;
  text-align: left;
}
.accContent {
  display: none;
}

.accordianWrp.active .accContent {
  max-height: inherit; /* adjust as needed */
}

/* Swiper Pagination */
.swiper-pagination {
  position: inherit;
  inset: auto !important;
  justify-content: center;
  display: flex;
  margin-top: 20px;
  gap: 0 10px;
}
.swiper-pagination > * {
  width: 25px;
  height: 2px;
  background: var(--white);
  opacity: 1;
  display: block;
  margin: 0 !important;
  border-radius: 0;
}

.swiper-pagination > *.swiper-pagination-bullet-active {
  background: rgba(180, 155, 114, 1);
}

@media (min-width: 991.99px) {
  .swiper-pagination {
    margin-top: 3vw;
    gap: 0 1vw;
  }
  .swiper-pagination > * {
    width: 2.604vw;
  }
}

/* Accordian Icon */
.accordianCard .accHead span {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.accordianCard .accHead span::before,
.accordianCard .accHead span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #000;
  transition: all 0.3s ease-in-out;
}
.accordianCard .accHead span::before {
  width: 100%;
  height: 1px;
}
.accordianCard .accHead span::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.accordianCard .accHead .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordianCard.active .accHead span::after {
  scale: 0;
  transform-origin: 50%, 50%;
}

/* Line vector animation */
.pluses {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pluses span {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #98732b;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100rem 100rem 10px 10px;
  animation: pulse-ring 5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pluses span:nth-child(2) {
  animation-delay: 0.5s;
}
.pluses span:nth-child(3) {
  animation-delay: 1s;
}
.pluses span:nth-child(4) {
  animation-delay: 1.5s;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  65%,
  80% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Tabs */
.tabList {
  margin-bottom: 30px;
  border-radius: 100rem;
  background: var(--white);
  display: table;
  overflow: hidden;
}
.tabList ul {
  display: flex;
}
.tabList li {
  cursor: pointer;
  /*font-weight: 500;*/
  font-family: var(--fhTotal);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12.5px 20px;
  line-height: 1;
}
.tabList li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(32, 79, 110, 1);
  border-radius: 100rem;
  z-index: -1;
  scale: 0;
  transition: all 0.3s ease-in-out;
}
.tabList li.active::before {
  scale: 1;
}
.tabList li.active {
  color: var(--white);
}
.tabList li.active:after {
  content: "";
  display: block;
  width: 3px;
  aspect-ratio: 1/1;
  background: var(--white);
  margin: 0 auto;
  border-radius: 100%;
}
.tabContent > div {
  display: none;
}
@media (min-width: 991.99px) {
  .tabList {
    margin-bottom: 3vw;
  }
  .tabList li {
    padding: 1.2vw 0;
    min-width: 6.771vw;
  }
}

/* Get in touch Section */
.getTouchSec {
  background: #1d1d1d;
  z-index: 1;
  position: relative;
  border-radius: 30px 30px 0 0;
}
.getTouchSec h2.title {
  color: var(--primary);
}
.gtCard {
  color: var(--white);
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ac8039 0%, #1d1d1d 100%);
  position: relative;
  z-index: 1;
  padding: 30px 15px;
  border-radius: 10px;
  overflow: hidden;
}
.gtCard:hover {
  background: none;
}
.gtCard::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #1d1d1d;
  z-index: -1;
  border-radius: 10px;
}
.glow {
  /* offset-path: rect(0% auto 100% auto); */
  background: linear-gradient(180deg, #ac8039 0%, #1d1d1d 100%);

  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  aspect-ratio: 1/1;
  z-index: -2;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}
.gtCard:hover .glow {
  opacity: 1;
  animation: move 5s linear infinite;
}
@keyframes move {
  0% {
    left: 0;
  }
  25% {
    left: 100%;
    top: 0;
  }
  50% {
    top: 100%;
    left: 100%;
  }
  75% {
    left: 0;
    top: 100%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
.gtData > * {
  margin-bottom: 15px;
}
.gtData > *:last-child {
  margin-bottom: 0;
}
.gtCard svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #ac8039;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.gtCard:hover svg {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  animation: iconAnim 8s linear infinite;
}

@keyframes iconAnim {
  0%,
  100% {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
  }
  25%,
  50%,
  75% {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
  }
}
.gtData img .gtCard h4 {
  font-size: 20px;
}
.gtCard .gtData p {
  font-family: var(--interFont);
	font-weight:300;
}
.gtCard .cta {
  color: var(--black);
  margin-top: 35px;
  font-weight: 400;
  overflow: hidden;
}
.gtCard .cta:after {
  display: none;
}
.gtCard .cta:hover {
  color: var(--white);
}

.gtCard .cta:hover::before {
  right: 0 !important;
  background: #ac8039;
}

@media (min-width: 575.99px) {
  .gtCard {
    padding-bottom: 100px;
  }
  .gtCard .cta {
    position: absolute;
    bottom: 30px;
    left: 15px;
    margin: 0;
  }
}
@media (min-width: 991.99px) {
  .getTouchSec {
    border-radius: 4.63vw 4.63vw 0 0;
  }
  .getTouchSec h2.title {
    margin-bottom: 5vw;
  }
  .gtCard {
    padding: 2.315vw 2.315vw 8vw 2.315vw;
  }
  .gtCard,
  .gtCard::before {
    border-radius: 0.694vw;
  }
  .glow {
    width: 10vw;
  }
  .gtCard .gtData > * {
    margin-bottom: 1.736vw;
  }
  .gtCard .gtData > *:last-child {
    margin-bottom: 0;
  }
  .gtCard svg {
    width: 3vw;
    height: 3vw;
  }

  .gtCard .gtData h4 {
    font-size: 1.852vw;
    line-height: 2.222vw;
  }
  .gtCard .gtData p {
    line-height: 1.389vw;
  }
  .gtCard img {
    width: 2.894vw;
  }
  .gtCard .cta {
    bottom: 2.315vw;
    left: 2.315vw;
    position: absolute;
  }
}

/* Swiper navigation */
.swiperPrevBtn,
.swiperNextBtn {
  width: 25px;
  aspect-ratio: 1/1;
  border: 1px solid var(--black);
  border-radius: 100%;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.swiperPrevBtn {
  right: 103%;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8' clip-rule='evenodd'/></svg>");
}
.swiperNextBtn {
  left: 103%;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8' clip-rule='evenodd'/></svg>");
}
@media (min-width: 991.99px) {
  .swiperPrevBtn,
  .swiperNextBtn {
    width: 2.865vw;
  }
}
@media (max-width: 575.99px) {
  .swiperPrevBtn,
  .swiperNextBtn {
    display: none;
  }
}

/* Tabs Buttons Style */
.tabBtnList {
  border-radius: 100rem;
  background: var(--white);
  display: table;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabBtnList ul {
  display: flex;
}
.tabBtnList ul li {
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12.5px 20px;
  line-height: 1;
  white-space: nowrap;
}
.tabBtnList ul li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(32, 79, 110, 1);
  border-radius: 100rem;
  z-index: -1;
  scale: 0;
  transition: all 0.3s ease-in-out;
}
.tabBtnList ul li.active::before {
  scale: 1;
}
.tabBtnList ul li.active {
  color: var(--white);
}
.tabBtnList ul li.active:after {
  content: "";
  display: block;
  width: 3px;
  aspect-ratio: 1/1;
  background: var(--white);
  margin: 0 auto;
  border-radius: 100%;
}
@media (min-width: 991.99px) {
  .tabBtnList ul li {
    padding: 1.2vw 2.344vw;
    min-width: 6.771vw;
  }
}

/* Counter */
.counterCol {
  font-size: 40px;
  font-weight: 100;
  line-height: 1;
  text-align: center;
}
.counterCol span {
  font-family:var(--fhTotal)
}
.counterCol p {
  font-size: 16px;
  font-weight: 300;
  margin: 5px 0 0 0;
}
@media (min-width: 991.99px) {
  .counterCol {
    font-size: 5vw;
  }
  .counterCol p {
    font-size: 1.458vw;
    margin: 0.781vw 0 0 0;
  }
}

/* Rounded img group */
.roundedImg {
  position: relative;
  padding-bottom: 15%;
}
.roundedImg img {
  border-radius: 100rem 100rem 10px 10px;
}
.roundedImg img:nth-child(2) {
  position: absolute;
  bottom: 0;
  width: 50%;
  border: 5px solid var(--primary);
}


.popupForm {background: linear-gradient(180deg, #DBCCB2 0%, #F5ECDD 100%); display:none; width:95%; max-width:800px; border-radius:15px;}
.popupForm .f-button {border:2px solid #000; width:30px!important; height:auto!important; aspect-ratio:1/1; border-radius:100%; top:2%!important; right:1%!important}
.popupForm .f-button svg {stroke:#000;}
@media(min-width:991.99px){
	.popupForm {border-radius:1.736vw; padding:4.051vw 2.315vw; width:66.262vw; max-width:inherit;}
	.popupForm .f-button {width:2.604vw!important;}
	.popupForm h4 {font-size:2.778vw}
	.popupForm .note {font-size:0.926vw}
	
}