@font-face {
  font-family: "bodoni-seventytwo";
  src: url("../fonts/bodoni-seventytwo-itc-book.ttf");
}

@font-face {
  font-family: "CENTURY";
  src: url("../fonts/CENTURY.TTF");
}

@font-face {
  font-family: "Gotham-Black";
  src: url("../fonts/Gotham-Black.otf");
}

@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothamBold.ttf");
}

@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothamLight.ttf");
}

@font-face {
  font-family: "Helvetica55Roman";
  src: url("../fonts/Helvetica55Roman.ttf");
}

@font-face {
  font-family: "MyriadPro-Regular";
  src: url("../fonts/MyriadPro-Regular.otf");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.otf");
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.otf");
}

@font-face {
  font-family: "Raleway-Variable";
  src: url("../fonts/Raleway-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold_0.ttf");
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular_0.ttf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::selection {
  background-color: #3b2821;
  color: #fff;
}

body {
  background-color: #ffe8dc;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #617246;
  font-family: "GothamBold";
}

h1 {
  color: #617246;
  font-size: 4vw;
  line-height: 1;
  font-family: "GothamBold";
  /* text-transform: uppercase; */
}

h1 span {
  display: block;
}

ul li,
a {
  font-size: 1.3rem;
  line-height: 1.3;
  font-family: "Roboto-Regular";
  color: #3b2821;
}

p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #3b2821;
  font-family: "Raleway-Variable";
  padding-top: 1rem;
}

main {
  overflow: hidden;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: #cb5ff8;
}

section {
  padding: 3rem 0;
  overflow-y: visible;
  position: relative;
  /* overflow-x: hidden; */
  /* overflow: hidden; */
}

.pagelinks-section {
  padding: 1rem 0 1rem 0;
  overflow: hidden;
  position: relative;
  background-color: #ffe8dc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
  z-index: 100;
}

/* Sticky navigation when scrolling */
.pagelinks-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.pagelinks-section .pagelink-brnd {
  position: absolute;
  width: 12%;
  right: 0;
  bottom: 0%;
  z-index: -1;
}

/* .pagelinks-section .pagelink-brnd svg .cls-2 {
	stroke-dasharray: 860;
	stroke-dashoffset: 860;
	-webkit-animation: draw 2s infinite linear alternate-reverse;
	animation: draw 2s infinite linear alternate-reverse;
	fill: rgba(0, 0, 0, 0);
	stroke: #3B2821;
} */
.pagelinks-section .pagelinks-main .pagelinks-main_ul {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
}

.pagelinks-section .pagelinks-main .pagelinks-main_ul .pagelinks-main_ul_li {
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.4s ease-in-out;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li:not(:last-child):after {
  content: "|";
  position: absolute;
  width: 1px;
  font-size: 1.5rem;
  color: #3b2821;
  top: 12px;
  right: 0;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li
  .pagelinks-main_ul_li_a {
  background-color: rgba(0, 0, 0, 0);
  color: #617246;
  border: none;
  position: relative;
  z-index: 1;
  font-family: "GothamBold";
  padding: 5px 0;
  font-size: 1.5rem;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li
  .pagelinks-main_ul_li_a::before {
  content: "";
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  transform: scale(0);
  position: absolute;
  z-index: -1;
  border-bottom: 1px solid #3b2821;
  transition: all 0.4s;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li:hover
  .pagelinks-main_ul_li_a::before {
  transform: scale(1);
  opacity: 1;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li:hover
  .pagelinks-main_ul_li_a::after {
  top: 0;
  opacity: 1;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li:hover::before {
  transform: scale(1);
}

/* Active state styles for navigation */
.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li.active
  .pagelinks-main_ul_li_a {
  color: #3b2821;
  font-weight: bold;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li.active
  .pagelinks-main_ul_li_a::before {
  transform: scale(1);
  opacity: 1;
  border-bottom: 2px solid #3b2821;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li.active
  .pagelinks-main_ul_li_a:hover {
  color: #3b2821;
}

/* Navigation button styling without animations */
.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li
  .pagelinks-main_ul_li_a {
  cursor: pointer;
}

.pagelinks-section
  .pagelinks-main
  .pagelinks-main_ul
  .pagelinks-main_ul_li
  .pagelinks-main_ul_li_a:hover {
  color: #3b2821;
}

.extraspan {
  display: none;
}

.spanactive {
  display: block;
}

.btn-container .readmore-btn {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  border: none;
  font-weight: bold;
}

.image-section img {
  aspect-ratio: 1;
}

/* .marquee-tag marquee {
	font-size: 4vw;
	font-family: "Roboto-Bold";
	-webkit-text-stroke: 1px #cb5ff8;
	color: #fff;
	text-shadow: -5px 0px #cb5ff8;
	text-transform: uppercase;
} */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: "";
}
.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
} */
/* .loader-area {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #202020;
	z-index: 999999;
}
 .loader-area .loader {
	width: 150px;
	height: 150px;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.loader-area .loader span {
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: #fff6fa;
	border-radius: 4px;
	-webkit-animation: chase 2s linear infinite;
	animation: chase 2s linear infinite;
}
.loader-area .loader span:nth-child(2) {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}
.loader-area .loader span:nth-child(3) {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}  */
.footer {
  padding: 4rem 0 0 0;
  position: relative;
  background-color: #3b2821;
  border-top: 1px solid #fff;
}

.footer .footer-absbranding {
  position: absolute;
  width: 30%;
  bottom: 15%;
  display: none;
  right: 5%;
}

.footer .footer-absbranding svg .cls-f2 {
  stroke-dasharray: 860;
  stroke-dashoffset: 860;
  -webkit-animation: draw 2s infinite linear alternate-reverse;
  animation: draw 2s infinite linear alternate-reverse;
  stroke: #fff;
}

.footer .footer-side1 .footer-newsletter h4 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #ffe8dc;
  font-weight: normal;
}

.footer .footer-side1 .footer-newsletter h4 span {
  display: block;
}

.footer .footer-side1 .footer-newsletter form {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 10px;
  color: #ffe8dc;
  align-items: center;
}

.footer .footer-side1 .footer-newsletter form input,
.footer .footer-side1 .footer-newsletter form button {
  border: none;
  outline: none;
  background: none;
}

.footer .footer-side1 .footer-newsletter form button {
  background-color: rgba(0, 0, 0, 0);
}

.footer .footer-side1 .footer-newsletter form button i {
  font-size: 1.5rem;
  color: #ffe8dc;
}

.footer .footer-side1 .footer-newsletter form input {
  color: #ffe8dc;
  width: 80%;
  padding: 10px;
  border: 1px solid #ffe8dc;
  margin-bottom: 0.5rem;
}

.footer .footer-side1 .footer-newsletter form input::-moz-placeholder {
  color: #ffe8dc;
}

.footer .footer-side1 .footer-newsletter form input:-ms-input-placeholder {
  color: #ffe8dc;
}

.footer .footer-side1 .footer-newsletter form input::placeholder {
  color: #ffe8dc;
}

.footer .footer-side2 .footer-pages-links h4 {
  color: #ffe8dc;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}

.footer .footer-side2 .footer-pages-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.footer .footer-side2 .footer-pages-links ul li a {
  color: #ffe8dc;
}

.footer .footer-side3 h4 {
  color: #ffe8dc;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}

.footer .footer-side3 .footer-contact ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  color: #000;
}

.footer .footer-side3 .footer-contact ul li {
  color: #fee7db;
}

.footer .footer-side3 .footer-contact ul li a {
  color: #fee7db;
}

.footer .footer-side3 .footer-social-links ul > * + * {
  margin-left: 12px;
}

.footer .footer-side3 .footer-social-links ul li a i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transition: all 0.7s ease-in;
  background: #ffe8dc;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #3b2821;
}

.footer .footer-side3 .footer-social-links ul li:hover a i {
  background: #3b2821;
  border: 1px solid #ffe8dc;
  color: #fff;
  transition: all 0.7s ease;
}

.footer .copyright {
  border-top: 1px solid #ffe8dc;
}

.footer .copyright p {
  color: #ffe8dc;
  padding: 1rem 0;
  font-size: 1rem;
}

.footer .copyright p a {
  color: inherit;
  font-size: inherit;
}

.enquirynow-page {
  padding-top: 120px;
  background: url(../media/images/ftvspaposter.png) no-repeat center;
  background-size: cover;
  background-blend-mode: soft-light;
  background-color: #fee7db;
  background-attachment: fixed;
}

.enquiry-form-sec h1 {
  text-align: center;
  padding-bottom: 1.5rem;
  color: #617246;
  text-transform: uppercase;
}

.enquiry-form-sec img {
  width: 40%;
}

.enquiry-form {
  position: relative;
  border: 1px solid #3b2821;
  border-radius: 10px;
}

.enquiry-form form {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.enquiry-form form ::-moz-placeholder {
  color: #3b2821;
}

.enquiry-form form :-ms-input-placeholder {
  color: #3b2821;
}

.enquiry-form form ::placeholder {
  color: #3b2821;
}

.enquiry-form form .form-enquire {
  width: calc(50% - 0.5rem);
}

.enquiry-form form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  caret-color: #3b2821;
  border-bottom: 1px solid #3b2821;
  background: rgba(0, 0, 0, 0);
  color: #3b2821;
  margin: 10px 0;
  font-size: 1.2rem;
}

.enquiry-form form textarea:focus {
  border-bottom: 1px solid #3b2821;
}

.enquiry-form form select {
  width: 100%;
  padding: 13px 10px;
  border: none;
  outline: none;
  caret-color: #3b2821;
  border-bottom: 1px solid #3b2821;
  background: rgba(0, 0, 0, 0);
  font-size: 1.2rem;
  margin: 10px 0;
  color: #3b2821;
}

.enquiry-form form select option {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background: #3b2821;
  color: #fff;
  margin: 10px 0;
}

.enquiry-form form input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  caret-color: #3b2821;
  border-bottom: 1px solid #3b2821;
  background: rgba(0, 0, 0, 0);
  color: #3b2821;
  margin: 10px 0;
  transition: all 0.4s ease-in-out;
  font-size: 1.2rem;
}

.enquiry-form form input:focus {
  border-bottom: 1px solid #3b2821;
}

.enquiry-form form button {
  padding: 10px 35px;
  border-radius: 30px;
  background-color: #fee7db;
  transition: all 0.6s;
  border: none;
  color: #3b2821;
  border: 1px solid #3b2821;
  text-transform: uppercase;
}

.enquiry-form form button:hover {
  box-shadow: inset 0 -3.25em 0 0 #fff;
  color: #fee7db;
  background-color: #3b2821;
  box-shadow: none;
  border: 1px solid #fff;
}

video,
img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hamburger {
  display: none;
  padding: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  transform-origin: 25%;
  box-shadow: 0px 4px 11px 1px rgba(255, 255, 255, 0.2);
  transition: all 1s linear;
}

.hamburger > * + * {
  margin-top: 7px;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background: #3b2821;
  transition: all 1s linear;
  border-radius: 10px;
}

.hamburger-toggle .bar.bar3,
.hamburger-toggle .bar.bar1 {
  transform-origin: 5%;
  transform: rotate(45deg);
}

.hamburger-toggle .bar.bar3 {
  transform: rotate(-45deg);
}

.hamburger-toggle .bar.bar2 {
  transform: scaleX(0);
  transform-origin: 0;
}

.pc_innerdiv {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.pc_innerdiv .pc_logo {
  width: 200px;
}

.pc_innerdiv .pc_logo a {
  display: block;
}

.pc_innerdiv .pc_logo img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(2000%)
    hue-rotate(340deg) brightness(0.15) contrast(1.2);
}

.pc_navbar {
  width: 90%;
  padding-top: 0.5rem;
  margin: 0 auto;
}

.pc_header {
  z-index: 9998;
  position: fixed;
  background-color: #ffe8dc;
  width: 100%;
  top: 0;
  left: 0;
}

.head_links {
  padding: 25px 30px;
  flex: 1;
}

.head_links .head_nav_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head_links .head_nav_links .head_nav-link {
  width: 100%;
  display: flex;
  justify-content: center;
}

.head_links .head_nav_links .head_nav-link > ul {
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-bottom: 0;
  gap: 27px;
}

.head_links .head_nav_links .head_nav-link > ul > li {
  position: relative;
  list-style: none;
}

.head_links .head_nav_links .head_nav-link > ul > li.active > a {
  color: #617246;
  font-weight: bold;
}

.head_links .head_nav_links .head_nav-link > ul > li a {
  font-size: 1.2rem;
  text-transform: uppercase;
  display: block;
  color: #3b2821;
}

.head_links .head_nav_links .head_nav-link > ul > li a:hover {
  color: #617246;
}

.head_links .head_nav_links .head_nav-link > ul > li a i {
  padding-left: 10px;
  font-size: 0.8rem;
}

.head_links .head_nav_links .enquiry-btn a {
  color: #3b2821;
  border: 1px solid #3b2821;
  padding: 0.7rem 1rem;
  background-color: #fee7db;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  transition: all 0.4s ease-in-out;
}

.head_links .head_nav_links .enquiry-btn a:hover {
  background-color: #3b2821;
  color: #fee7db;
  border: 1px solid #fee7db;
}

@media screen and (max-width: 1200px) {
  .head_links .head_nav_links .head_nav-link > ul > li {
    transition: all 1s linear;
    transform: translateY(40px);
    opacity: 0;
  }

  .head_links.navlinkactive .head_nav_links .head_nav-link > ul > li {
    transform: translateY(0);
    opacity: 1;
  }

  .head_links.navlinkactive
    .head_nav_links
    .head_nav-link
    > ul
    li:nth-child(1) {
    transition: all 1.1s linear;
    transition-delay: 0.3s;
  }

  .head_links.navlinkactive
    .head_nav_links
    .head_nav-link
    > ul
    li:nth-child(2) {
    transition: all 1.1s linear;
    transition-delay: 0.6s;
  }

  .head_links.navlinkactive
    .head_nav_links
    .head_nav-link
    > ul
    li:nth-child(3) {
    transition: all 1.1s linear;
    transition-delay: 0.9s;
  }

  .head_links.navlinkactive
    .head_nav_links
    .head_nav-link
    > ul
    li:nth-child(4) {
    transition: all 1.1s linear;
    transition-delay: 1.2s;
  }

  .head_links.navlinkactive
    .head_nav_links
    .head_nav-link
    > ul
    li:nth-child(5) {
    transition: all 1.1s linear;
    transition-delay: 1.5s;
  }

  .head_links {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-clip-path: circle(0px at 100% -10%);
    clip-path: circle(0px at 100% -10%);
    top: 110px;
    left: 0;
    position: fixed;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    width: 100%;
    background-color: #fee7db;
    background-blend-mode: overlay;
    height: calc(100vh - 110px);
    transition: -webkit-clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
    transition: clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
    transition: clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99),
      -webkit-clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
  }

  .head_links.navlinkactive {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
    z-index: 9999;
    transition: -webkit-clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
    transition: clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
    transition: clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99),
      -webkit-clip-path 1s cubic-bezier(0.74, 0, 0.84, 0.99);
  }

  .head_links .head_nav_links {
    position: absolute;
    top: 50%;
    left: 50%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transform: translate(-50%, -50%);
    flex-direction: column;
    gap: 25px;
    justify-content: center;
  }

  .head_links .head_nav_links .head_nav-link > ul {
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    padding: 5px;
    flex-direction: column;
    padding-left: 0;
    gap: 17px;
  }

  .head_links .head_nav_links .head_nav-link > ul > li a {
    color: #3b2821;
  }

  .head_links .head_nav_links .head_nav-link > ul > li:not(:last-child)::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .head_links .head_nav_links .head_nav-link > ul > li.linkactivate ul {
    background-color: #000;
    position: relative;
  }
}

::-webkit-scrollbar-track {
  background-color: #3b2821;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #fee7db;
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #fee7db;
}

#scroll {
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  bottom: 28px;
  right: 15px;
  background: #3b2821;
  text-indent: -9999px;
  border: 1px solid #fee7db;
  display: none;
  border-radius: 50%;
  z-index: 999;
  transition: all 0.5s ease;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  border-bottom-color: #fff;
}

#scroll:hover span {
  border-bottom-color: #fff;
}

/* ****************************main page css********************* */
.section__video {
  width: 100%;
  /* margin-top: 5%; */
  margin-top: 115px;
  padding: 0;
  position: relative;
}

.video_div video {
  height: 90vh;
}

#intromob {
  display: none;
}

/* .video_div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32%;
    background: linear-gradient(0deg, #1A2231, transparent);
    z-index: 0;
} */
.cls-1 {
  font-size: 50px;
  fill: none;
  stroke: #3b2821;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  font-family: Gotham-Black, Gotham Black;
  font-weight: 800;
  letter-spacing: 3px;
}

.home-intro-sec .home-intro-content h1 span {
  display: block;
}

/* .home-intro-sec .hintro-img{
	border-radius: 50px;
    box-shadow: 1px 1px 15px #3b2821;
} */
/* .hintrosvg svg{
    animation: headanimation 5s infinite alternate;
}
@keyframes headanimation {
	0%   {
		 fill: #DAB559;
		 stroke: #F6F0E2;
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill:transparent; stroke:#dab559; }
	80%  {stroke: transparent; stroke:#dab559; stroke-width: 3; }
	
	100% {
		fill: #DAB559; stroke: #F6F0E2; 
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
} */
.left-leaves {
  position: absolute;
  top: 0;
  left: -2%;
  width: 30%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
}

.right-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
}

.right-leaves2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
}

@keyframes leafAnimation {
  0% {
    transform: rotate(0) translateY(-15%);
  }

  50% {
    transform: rotate(10deg) translateY(-15%);
  }

  100% {
    transform: rotate(-10deg) translateY(-15%);
  }
}

.ftvdiamond {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.Ctatext h2 {
  color: #617246;
  font-family: "CENTURY";
  font-size: 4rem;
}

.Ctatext h2 span {
  font-size: 6rem;
  display: block;
}

.home-pot-content ul {
  padding-left: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.home-pot-content ul li {
  list-style: disc;
}

.home-pot-content ul li::marker {
  color: #617246;
}

.home-pot-sec {
  padding-bottom: 0;
  background: #fff;
}

.fsvg-pot {
  position: absolute;
  left: 30%;
  bottom: -10%;
  width: 12%;
  z-index: 1;
}

.fsvg-pot svg,
.fsvg-features svg,
.fsvg-usp svg,
.fsvg-key svg,
.fsvg-ch svg {
  animation: svg-f 5s infinite alternate;
}

@-webkit-keyframes svg-f {
  0% {
    stroke: #3b2821;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 3;
  }

  100% {
    stroke: #3b2821;
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 3;
  }
}

@keyframes svg-f {
  0% {
    stroke: #3b2821;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 3;
  }

  100% {
    stroke: #3b2821;
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 3;
  }
}

.ftvtextlogo {
  position: absolute;
  right: 2%;
  top: 2%;
  width: 25%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

@-webkit-keyframes zoomin {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

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

  100% {
    transform: scale(0.8);
  }
}

.phy-sec {
  padding: 3rem 0 15rem 0;
  background: linear-gradient(
    180deg,
    white 0%,
    white 50%,
    #fee7db 50%,
    #fee7db 100%
  );
}

.rrr {
  box-shadow: 1px 0px 10px #000;
  padding: 5rem 4.2rem;
  max-height: 100%;
  background-color: white;
}

.mission-scale {
  transform: scale(1.1);
}

.phy-sec .phy-content {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phy-sec .phy-content img {
  width: 100px;
}

.phy-sec .phy-content h2 {
  color: #617246;
}

.phy-sec .phy-heading {
  padding-bottom: 5rem;
}

.left-leaves-phy {
  position: absolute;
  top: -3%;
  left: -3%;
  width: 40%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
}

.ftvtextlogo-phy {
  position: absolute;
  left: 2%;
  bottom: 10%;
  width: 25%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.hfeatures-content h2 {
  color: #617246;
}

.homefeatures-sec {
  padding: 5rem 0;
  background: #ffe8dc;
  position: relative;
  overflow: hidden;
}

.maindiv-features {
  position: relative;
  z-index: 1;
}

.features-heading {
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.features-heading h1 {
  margin-bottom: 1rem;
  font-size: 4vw;
  color: #617246;
}

.features-subtitle {
  font-size: 1.4rem;
  color: #3b2821;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-family: "Raleway-Variable";
}

.hfeatures-content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item {
  padding: 2rem 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.service-item:not(:last-child) {
  border-bottom: 1px solid rgba(97, 114, 70, 0.2);
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
}

.service-item h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #617246;
  font-family: "GothamBold";
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-left: 1.5rem;
}

.service-item h2::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #617246;
  font-size: 1.5rem;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.service-item:hover h2::before {
  opacity: 1;
  transform: scale(1.2);
}

.service-item p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #3b2821;
  margin-bottom: 0;
  padding-left: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.service-item:hover {
  transform: translateX(10px);
}

.service-item:hover h2 {
  color: #4a5a37;
}

.hfeaturesvideo {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 40, 33, 0.15);
  transition: all 0.4s ease-in-out;
  position: relative;
}

.hfeaturesvideo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(97, 114, 70, 0.1) 0%,
    rgba(59, 40, 33, 0.05) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hfeaturesvideo:hover {
  box-shadow: 0 15px 40px rgba(59, 40, 33, 0.25);
  transform: translateY(-5px);
}

.hfeaturesvideo:hover::after {
  opacity: 1;
}

.hfeaturesvideo video {
  border-radius: 15px;
  display: block;
  width: 100%;
  height: auto;
}

.right-leaves-phy {
  position: absolute;
  bottom: -58%;
  right: -3%;
  width: 40%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
}

.ftvtextlogo-feat1 {
  position: absolute;
  right: 12%;
  top: 5%;
  width: 25%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.ftvtextlogo-feat2 {
  position: absolute;
  left: 12%;
  top: 5%;
  width: 25%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.fsvg-features {
  position: absolute;
  left: 45%;
  bottom: -15%;
  width: 12%;
  z-index: 1;
}

.cls-1feat {
  font-size: 50px;
  fill: none;
  text-align: center;
  stroke: #3b2821;
  letter-spacing: 3px;
  stroke-miterlimit: 10;
  font-family: Gotham-Black, Gotham Black;
  font-weight: 800;
}

.ourpros-sec {
  background: #fff;
}

.statistics-sec {
  padding: 4rem 0;
  background: #ffe8dc;
  position: relative;
  overflow: hidden;
}

.statistics-sec .statistics-heading {
  padding-bottom: 5rem;
}

.statistics-wrapper {
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.statistics-layout {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.statistics-header-section {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: auto;
  text-align: left;
  padding-right: 2rem;
}

.statistics-title-main {
  font-size: 4rem;
  font-weight: bold;
  color: #617246;
  font-family: "GothamBold";
  line-height: 1;
  margin-bottom: 0.8rem;
}

.statistics-title-sub {
  font-size: 1.6rem;
  color: #3b2821;
  font-family: "CENTURY";
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.statistics-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  min-width: 0;
  max-width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0.5rem 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #617246;
  font-family: "GothamBold";
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #3b2821;
  font-family: "Raleway-Variable";
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

.left-leaves-statistics {
  position: absolute;
  top: 0;
  left: -2%;
  width: 30%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
  opacity: 0.3;
  z-index: 0;
}

.right-leaves-statistics {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  animation: leafAnimation 10s ease-in-out infinite alternate-reverse;
  opacity: 0.3;
  z-index: 0;
}

.ftv-tabs-div {
  background: linear-gradient(
    90deg,
    #3b2821 0,
    #3b2821 85%,
    rgba(0, 0, 0, 0) 85%,
    #0000 100%
  );
}

.tab-sub-div {
  display: flex;
}

.our-content p,
.tab-custom {
  width: 70%;
}

.pre-content p {
  color: #fff;
  width: 60%;
  margin: auto;
}

.pre-btn {
  padding: 1rem 2rem;
  font-size: 2rem;
  font-family: "Roboto-Regular";
  color: #fff;
  letter-spacing: -2px;
  font-family: "GothamBold";
  color: #3b2821;
  margin: 1rem 0;
  background-color: #ffe8dc !important;
  box-shadow: rgb(0 0 0 / 10%) 0 4px 6px -1px, rgb(0 0 0 / 6%) 0 2px 4px -1px;
}

.our-content h1 span {
  display: block;
  line-height: 0.8;
}

.tab-custom {
  width: 70%;
}

.our-content p {
  width: 70%;
  /* margin-top: -2rem; */
}

.ftv-tabs-div,
.usp-content {
  padding: 3rem 0;
}

.pre-btn.active,
.pre-btn:hover {
  background-color: #617246 !important;
}

.pre-btn:hover {
  color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
}

.our-content {
  padding: 1rem 2rem !important;
}

.cls1-our {
  stroke: #617246 !important;
  font-size: 50px;
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  font-family: Gotham-Black, Gotham Black;
  font-weight: 800;
  letter-spacing: 3px;
}

.usp-content h1 {
  text-align: center;
  color: #617246;
}

.usp-content p {
  padding: 1rem 0;
  margin: auto;
  width: 60%;
  text-align: center;
}

.usp-sec {
  padding-bottom: 10rem;
  padding-top: 1rem;
  background: linear-gradient(
    180deg,
    white 0%,
    white 55%,
    #fee7db 55%,
    #fee7db 100%
  );
}

.usp-sec .usp-list ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
}

.usp-sec .usp-list ul li {
  display: flex;
  flex-direction: column;
  margin: 3.5rem 0;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  transition: 0.3s cubic-bezier(0.1, 1.13, 0.93, 1.28);
}

.usp-sec .usp-list ul li:not(:last-child) {
  border-right: 2px solid #ffe8dc;
}

.usp-sec .usp-list ul li img {
  width: 60px;
}

.usp-sec .usp-list ul li h3 {
  font-size: 1rem;
  font-family: Roboto-regular;
  text-align: center;
  color: #ffe8dc;
}

.usp-list {
  padding-left: 0;
  text-align: center;
  background-color: #3b2821;
  box-shadow: #3b2821 7px 7px 10px;
}

.usp-sec .usp-list ul li:hover {
  padding: 3.5rem 0;
  margin: 0;
  transform: scale(1.1, 1.1);
  box-shadow: #000 0 5px 10px;
  transition: 0.8s cubic-bezier(0.1, 1.13, 0.93, 1.28);
  background-color: #ffe8dc;
  border-right: none;
}

.usp-sec .usp-list ul li:hover h3 {
  color: #3b2821;
}

.usp-sec .usp-list ul li:hover img {
  filter: contrast(3) invert(1);
}

.fsvg-usp {
  position: absolute;
  width: 12%;
  right: 10%;
  top: -30%;
}

.fsvg-key {
  position: absolute;
  width: 10%;
  left: 45%;
  top: -5%;
}

.channel-section {
  padding-bottom: 3rem;
  background: #fff;
}

.channel-section p {
  width: 70%;
  margin: auto;
}

.channel-container {
  width: 50%;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
}

.channel-section .swiper-container .swiper-slide {
  flex-shrink: 0;
  background-position: center;
  background-size: cover;
  width: 420px;
  background-color: transparent;
  overflow: hidden;
  border-radius: 8px;
}

.channel-section .swiper-container .swiper-slide .swiper-description {
  display: flex;
  flex-direction: column;
}

.channel-section .swiper-container .swiper-slide .swiper-channel-video video {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.channel-section
  .swiper-container
  .swiper-slide
  .swiper-description
  .swiper-h1
  h1 {
  font-size: 1.3rem;
  font-family: Roboto-regular;
  text-align: center;
}

span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #3b2821eb;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #3b2821;
  font-size: 2rem;
  width: 15px;
  height: 15px;
}

.fsvg-ch {
  position: absolute;
  width: 12%;
  right: 5%;
  top: 5%;
}

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

.newmedia-content h1 {
  /* color: #ACE455; */
  padding-bottom: 1rem;
  line-height: 1;
}

.newmedia-sec {
  /* padding-top: 5rem; */
  padding-bottom: 7rem;
}

.ftvtextlogo-media {
  position: absolute;
  right: 2%;
  bottom: 3%;
  width: 25%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.ftvfuture-sec {
  background-image: url(../media/images/ftvfuturebg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

.download-section .download-content .download-card {
  padding: 1rem 0.5rem;
  display: flex;
  margin: 2rem 0;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: space-around;
  border-radius: 1rem;
  border: 2px solid #3b2821;
}

.download-section .download-content .download-card h3 {
  color: #3b2821;
  font-family: "Poppins-Regular";
  font-size: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.download-section .download-content .download-card a {
  display: block;
}

.download-section .download-content .download-card a img {
  /* animation: transformI 4s infinite alternate-reverse; */
  width: 30px;
}

.pre_requisite-section {
  padding: 8rem 0;
  background-image: url("../media/images/wings.png");
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 70% center;
  color: #fff;
}

.pre_requisite-section h1 {
  text-align: center;
  color: #7c962f;
}

.pre_requisite-section .pre_requisite-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.pre_requisite-section .pre_requisite-tabs {
  padding-top: 2rem;
  display: flex;
  width: 50%;
  align-items: flex-start;
  justify-content: start;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid #3b2821;
}

.pre_requisite-section .pre_requisite-tabs .tabs__toggle {
  position: relative;
  transition: all 4s ease-in-out;
}

.pre_requisite-section .pre_requisite-tabs .tabs__toggle h3 {
  font-size: 1.3rem;
  display: inline-block;
  cursor: pointer;
  padding: 0.5rem 2rem;
  color: #3b2821;
  margin-left: -4px;
}

.pre_requisite-section .pre_requisite-tabs .tabs__toggle.is-active h3 {
  color: #617246;
  border-left: 7px solid #617246;
}

.pre_requisite-section .pre_requisite-content {
  width: 50%;
}

.pre_requisite-section .pre_requisite-content .tabs-content {
  display: none;
}

.pre_requisite-section .pre_requisite-content .tabs-content.is-active {
  display: block;
}

.pre_requisite-section .pre_requisite-content .tabs-content p {
  text-align: center;
  font-size: 1.2rem;
}

.pre_requisite-section .pre-heading h1 {
  /* color: #CB5FF8; */
  /* font-family: "Tinos-Italic"; */
}

.brand-sec {
  padding-top: 0;
  padding-bottom: 8rem;
  margin-top: -10%;
}

.ftvtextlogo-brand {
  position: absolute;
  width: 35%;
  left: 30%;
  bottom: 2%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.fsvg-pre {
  position: absolute;
  left: 2%;
  bottom: 20%;
  width: 10%;
  z-index: 1;
  animation: svg-f 5s infinite alternate;
}

.award-vid video {
  aspect-ratio: 2.2;
  border-radius: 10px;
  box-shadow: 1px 10px 15px #3b2821;
}

.fsvg-award {
  position: absolute;
  left: 3%;
  bottom: 30%;
  width: 10%;
  z-index: 1;
  animation: svg-f 5s infinite alternate;
}

.ma_future-section {
  padding: 8rem 0;
  background-image: url("../media/images/mfuture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #eaf1e8;
}

.ka_future-section {
  padding: 8rem 0;
  background-image: url("../media/images/kfuture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: #eaf1e8;
}

.miles-sec video {
  aspect-ratio: 1;
}

.ftvdiamondaward {
  position: absolute;
  right: -20%;
  top: 13%;
  width: 50%;
  animation: zoomin 2s infinite alternate-reverse ease-in-out;
}

.modal {
  display: block;
}

.modal.mymodal {
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  /* display: none; */
}

.modal.mymodal.modalopen {
  display: block;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  transform: scale(1);
  z-index: 9999;
}

.btn-close {
  transition: all 0.5s ease-in-out;
}

.btn-close:hover {
  border: 1px solid #000;
}

.btn-close:focus {
  box-shadow: none;
}

.callnumber {
  width: 300px;
  height: auto;
  position: fixed;
  top: 53%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 99;
  transition: all 0.5s ease;
  background: #fff;
  border: 1px solid #c3c3c3;
}

/* .fixedside {
    width: 130px;
    transform: rotate(90deg);
    position: fixed;
    top: 40%;
    right: 251px;
} */
.fixedside {
  width: 180px;
  transform: rotate(90deg);
  position: fixed;
  top: 38%;
  right: 234px;
}

.callnumber.slideleft {
  transform: translate(0%, -50%);
  opacity: 1;
}

.fixedside span {
  background: #3b2821;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem !important;
  color: #fee7db;
  padding: 10px 0;
}

.fixedside span svg {
  width: 20px;
  height: 20px;
  stroke: #fee7db;
  fill: #fee7db;
  margin-right: 10px;
  animation: tilt-shaking 0.5s infinite alternate-reverse ease-in-out;
}

.ivppop {
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: #fee7db;
}

.ivppop h2 {
  font-size: 20px;
  margin-bottom: 5px;
  text-align: center;
  color: #3b2821;
}

.ivppop a {
  margin-top: 15px;
}

.callin {
  width: 60px;
  height: 30px;
  border-radius: 60px;
  background: #3b2821;
  text-align: center;
  overflow: hidden;
  transition: all 0.85s ease;
}

.callin svg {
  width: 15px;
  height: 15px;
  stroke: #fee7db;
  fill: #fee7db;
}

.callintext {
  width: 100%;
}

.callintext strong {
  width: 100%;
  font-family: "Eurostile BQ";
  font-size: 15px;
  color: #3b2821;
  display: block;
  font-weight: normal;
  transition: all 0.85s ease;
  padding-left: 10px;
}

.callintext strong span {
  display: block;
  font-size: 9px;
}

.dlfcc {
  border: 1px solid #3b2821;
  border-radius: 80px;
  padding: 8px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.85s ease;
}

.ivppop p {
  width: 100%;
  line-height: normal;
  margin-top: 15px;
}

.contact-section {
  padding: 0;
}

.m-content {
  width: 100%;
  display: flex;
}

.mcontentimg {
  width: 50%;
}

.mdata {
  width: 50%;
  align-self: center;
}

.mdata .mdata-cont {
  align-self: center;
  padding: 0 2rem;
}

.mdata .mdata-cont h1 {
  color: #3b2821;
  font-size: 1.5rem;
  padding: 0.7rem 0;
  font-family: "CENTURY";
  line-height: 1.3;
  font-weight: bold;
  /* letter-spacing: -1px; */
}

.mdata .mdata-cont h3 {
  font-size: 1.5rem;
  font-family: "CENTURY";
  padding: 0.7rem 1.9rem 0.7rem 0;
  color: #3b2821;
}

.modal-body {
  padding: 0;
}

.modal-content {
  background-color: #ffe8dc;
}

button.modal-btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #ffe8dc;
  font-family: Gothambold;
  background-color: #3b2821;
  border: none;
  margin: 10px 0 0 0;
}

.modal-btn:hover {
  border: 1px solid #3b2821;
  background-color: #ffe8dc;
  color: #3b2821;
}

.modal-header {
  border-bottom: none;
  position: relative;
  top: 10px;
  right: 10px;
  z-index: 11;
  margin-bottom: -3rem;
}

.modal_logo {
  text-align: center;
}

.modal_logo img {
  width: 70px;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0eg);
  }

  75% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

[data-aos="reveal-right"] {
  position: relative;
  overflow: hidden;
}

[data-aos="reveal-right"]::before {
  content: "";
  transition-property: transform;
  transition-timing-function: ease-in;
  transition-duration: 0.8s;
  transition-delay: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #ffe8dc;
}

[data-aos="reveal-right"].aos-animate::before {
  transform: translateX(100%);
}

[data-aos="reveal-left"] {
  position: relative;
  overflow: hidden;
}

[data-aos="reveal-left"]::before {
  content: "";
  transition-property: transform;
  transition-timing-function: ease-in;
  transition-duration: 0.8s;
  transition-delay: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #ffe8dc;
}

[data-aos="reveal-left"].aos-animate::before {
  transform: translateX(-100%);
}

.form-enquire1 {
  align-self: center;
  text-align: start;
  border-bottom: 1px solid #3b2821;
  padding: 10px;
  width: calc(50% - 0.5rem);
}

.form-enquire1 input {
  width: 5% !important;
}

input#file-upload-button {
  background-color: #3b2821;
}

/* Reduce letter spacing for F Spa headings */
.spa-home-sec .spa-home-content h1 {
  letter-spacing: -0.5px;
}

@media (max-width: 576px) {
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 0 !important;
  }
}
