@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* font-family: "Pompiere", serif; */
*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* fontface */
@font-face {
  font-family: "Canela Condensed";
  src: url("../fonts/CanelaCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela Deck";
  src: url("../fonts/CanelaDeck-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* fontface */

:root {
  --montserrat: "Montserrat", sans-serif;
  --poppins: "Poppins", sans-serif;
  --canaldeck: "Canela Deck";
  --white: #fff;
  --theme-gradient: linear-gradient(
    90deg,
    #d78c25 0%,
    #ffd5ac 51.44%,
    #d78c25 100%
  );
  --secondaryColor: #601738;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--montserrat);
  /* display: none; */
}

/* section {
  padding: 60px 0;
} */
.ml-auto {
  margin-left: auto;
}
.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p,
figure {
  margin: 0;
}
p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 24px;
  right: 15px;
  z-index: 99;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #565656;
}

.mm-navbar__title > span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */
/* header start */
.headerarea {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.logoWrap {
  position: relative;
  max-width: 390px;
  margin: auto;
  text-align: center;
  padding: 20px 0 42px;
  z-index: 2;
}
.logoWrap::before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  height: 370px;
  position: absolute;
  top: -180px;
  background: #ffecd9;
  border-radius: 50%;
  z-index: -1;
}
.logoWrap img {
  max-width: 200px;
}
/* header start */

/* hero banner start */
/* .container {
      max-width: 1285px;
  } */
.herobanner {
  position: relative;
}
.heroOverley h1 {
  font-family: var(--canaldeck);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}
.heroOverley {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 780px;
}
.heroOverley p {
  max-width: 630px;
  margin: 30px auto;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 23px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;

  color: var(--white);
}
.heroOverley ul {
  display: flex;
  justify-content: center;
  gap: 10px 30px;
  flex-flow: wrap;
}
.heroOverley ul li {
  position: relative;
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}
.heroOverley ul li:nth-child(2)::after {
  display: none;
}
.heroOverley ul li:last-child {
  width: 100%;
}
.heroOverley ul li:not(:last-child)::after {
  content: "";
  width: 2px;
  background: #fed0a2;
  height: 21px;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  right: -16px;
}
.themeBtn {
  background: var(--theme-gradient);
  border-radius: 44px;
  padding: 19px 44px;
  line-height: 1;
}
.heroOverley .themeBtn {
  display: table;
  margin: 45px auto 0;
}
.themeBtn span {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
  box-shadow: none !important;
  outline: none !important;
  position: relative;
  z-index: 2;
}
.themeBtn {
  background: var(--theme-gradient);
  border-radius: 44px;
  padding: 19px 44px;
  line-height: 1;
  transition: all 0.3s ease;
  filter: brightness(1);
}
.themeBtn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.at-shiny-glass-effect {
  position: relative;
  overflow: hidden;
}
.at-shiny-glass-effect:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.at-shiny-glass-effect:hover::before {
  height: 250%;
  transition: all 0.6s linear !important;
  background-color: transparent;
}
.heroOverley strong {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 0%;
  color: var(--white);
  display: block;
  text-align: center;
  margin-top: 18px;
}
.mobImg {
  display: none;
}
/* hero banner close */

/* emotional hook sec start */
.sectionOuter {
  padding: 150px 0;
  background: #fff4e9;
}
.emotionalHookSec {
  padding-bottom: 150px;
}
.emotionalhookWrapper {
  position: relative;
  padding-left: 250px;
}
.hookCard {
  display: flex;
  opacity: 0;
  transform: translateX(200px);
}

.hcardContent {
  padding: 55px 60px;
  padding-right: 20px;
  background: #fed0a2;
  flex: 1;
  position: relative;
  z-index: 9;
  display: grid;
  align-items: center;
}
.hcardContent .sectionTitle h2 {
  font-size: 24px;
  line-height: normal;
}
.emotionalHookSec .container-fluid {
  padding: 0 100px;
}
.sectionTitle h2 {
  font-family: var(--canaldeck);
  font-weight: 400;
  font-size: 60px;
  line-height: 79px;
  letter-spacing: 0%;
  color: #000000;
  margin-bottom: 35px;
}
.sectionTitle h4 {
  font-family: var(--montserrat);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 0%;
}
.hcardContent p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0%;
  color: #000000;
  margin-top: 5px;
}
.hcardImg {
  position: relative;
  overflow: visible;
  z-index: 3;
}
.hcardImg figure {
  height: 100%;
}
.hcardImg figure img {
  height: 100%;
}
.bg-layer {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  background: url(../images/emotionalimg.jpg) center/cover no-repeat;
  transform: translateY(-50%);
  opacity: 0;
  z-index: -1;
}

.layer1 {
  filter: grayscale(100%) brightness(3);
  transform: translateY(-50%) scale(0.8);
}

.layer2 {
  filter: grayscale(100%) brightness(1);
  transform: translateY(-50%) scale(0.6);
  z-index: -2;
}
/* emotional hook sec start */

/* what you experience */
.experienceSec {
  background: #fff4e9;
  padding: 0;
}
.expcardWrapper {
  gap: 14px;
  display: flex;
  /* flex-flow: wrap; */
  align-items: baseline;
}
.experienceItem {
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 0px 10px 0px #00000033;
  border-radius: 30px;
  margin-top: 30px;
  position: relative;
  flex: 1;
  transition: 0.5s;
}
.expImg {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
}
.expImg img {
  width: 100%;
}
.expContent h3 {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  line-height: 27px;
  letter-spacing: 0%;
}
.expContent p {
  font-family: var(--montserrat);
  color: #000000;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 0%;
  margin: 15px 0 0px;
  min-height: 75px;
}
.expcardWrapper .experienceItem:nth-child(1) {
  transform: rotate(-5deg) translateX(100px);
  z-index: 1;
}
.expcardWrapper .experienceItem:nth-child(2) {
  transform: rotate(5deg) translateX(50px);
  background: #ffe9d3;
  z-index: 2;
}
.expcardWrapper .experienceItem:nth-child(3) {
  transform: rotate(-5deg) translateX(10px);
  z-index: 1;
}
.expcardWrapper .experienceItem:nth-child(3) p {
  margin-bottom: 31px;
}
.expcardWrapper .experienceItem:nth-child(4) {
  transform: rotate(5deg) translateX(-20px);
  z-index: 2;
  background: #ffe9d3;
}
.expcardWrapper:hover .experienceItem {
  transform: rotate(0deg) translateX(0px) !important;
  transition: 0.5s;
  background: var(--white);
}
.secondaryBtn {
  background: var(--secondaryColor) !important;
  color: var(--white) !important;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 44px;
  padding: 9px 24px;
  transition: 0.5s;
}
.secondaryBtn:hover {
  transform: translateY(-2px);
  transition: 0.5s;
}
.expContent {
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/* what you experience */

/* you learn sec */

.you_learn {
  background: #fffaf5;
  padding: 120px 0;
}
.you_learn .container-fluid {
  padding: 0 100px;
}
.you_learn .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.you_learn .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youlearnSlider {
  position: relative;
  margin-top: 50px;
}
.learnContent {
  margin: -125px 20px 0;
  background: #fff;
  box-shadow: 0px 0px 15px 0px #0000001a;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
.learnContent h3 {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  max-width: 315px;
  margin: auto;
  color: #000000;
  margin-bottom: 15px;
}
.learnContent p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
  min-height: 125px;
}
.arrpwwrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.arrpwwrapper .swiper-button-next,
.arrpwwrapper .swiper-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--secondaryColor);
  border-radius: 50%;
  color: var(--white);
  display: inline-grid;
  place-content: center;
  font-size: 18px;
  left: inherit;
  right: inherit;
}
.arrpwwrapper .swiper-button-next::after,
.arrpwwrapper .swiper-button-prev::after {
  display: none;
}
.youlearnSwiper {
  padding-bottom: 50px;
}
.arrpwwrapper i {
  transform: translateY(2px);
}
/* you learn sec */

/* mentor sec */
.mentorSec {
  padding: 100px 0;
  overflow: hidden;
  background: url(../images/mentorbg.jpg) no-repeat center/cover;
  /* background-attachment: scroll;  */
}

.mentorItem {
  display: flex;
  align-items: center;
  gap: 30px;
}
.mentorContent {
  flex: 1;
}
.mentorImg {
  width: 220px;
  height: 258px;
}
.mentorImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mentorItem {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 35px 30px;
  max-width: 1135px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.mentorItem::before {
  content: "";
  position: absolute;
  top: 0;
  background: #ffffff26;
  backdrop-filter: blur(10px);
  width: calc(100% - 110px);
  height: 100%;
  z-index: -1;
  border-radius: 20px;
}
.mentorContent h5 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 25px;
  leading-trim: NONE;
  line-height: 29px;
  letter-spacing: 0%;
  color: #fed0a2;
}
.mentorContent h4 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  color: var(--white);
  margin: 25px 0 15px;
}
.mentorContent p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mentorContent .secondaryBtn {
  margin-top: 15px;
  padding: 5px 24px;
}
.modal {
  backdrop-filter: blur(8px);
  padding: 50px 0;
}
.closebtn {
  width: 50px;
  aspect-ratio: 1;
  position: absolute;
  border: none;
  top: -40px;
  right: -25px;
  background: var(--white);
  border-radius: 50%;
  font-size: 24px;
}
.modalCard {
  display: flex;
  gap: 40px;
}
.modal-content {
  width: 100%;
  max-width: 1280px;
}
.modal-fullscreen .modal-content {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  height: auto !important;
  padding: 50px !important;
  border-radius: 60px !important;
}
.modal-fullscreen .modal-content .modal-body {
  padding: 0;
}
.modalcardImg img {
  width: 280px;
}
.modalcardContent {
  flex: 1;
}
.modalcardContent h3 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 45px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #d78c25;
}
.modalcardContent h4 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #000000;
  margin: 35px 0 15px;
}
.modalcardContent p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000000;
}
.modalcardContent p:not(:last-child) {
  margin-bottom: 15px;
}
.quoteOuter {
  text-align: center;
  margin-top: 40px;
}
.quoteOuter em {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 25px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  max-width: 930px;
  display: block;
  margin: auto;
}
.quoteOuter h6 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 19px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 0%;
  color: #000000;
  margin-top: 15px;
}
.mentorContent p:not(:first-child) {
  margin-top: 15px;
}
.mentorSec .row .col-lg-11 .mentorItem:nth-child(odd) {
  padding-left: 0;
}
.mentorSec .row .col-lg-11 .mentorItem:nth-child(even) {
  padding-right: 0;
  flex-flow: row-reverse;
}
.mentorSec .row .col-lg-11 .mentorItem:nth-child(odd)::before {
  right: 0;
}
.mentorSec .row .col-lg-11 .mentorItem:nth-child(even)::before {
  left: 0;
}
.mentorSec .row .col-lg-11 .mentorItem:not(:last-child) {
  margin-bottom: 40px;
}
/* mentor sec */

/* what included start */
.whatIncluded {
  padding: 120px 0;
  background: var(--white);
}
.includedWrapper {
  max-width: 1170px;
  margin: 30px auto 0;
}
.lifestyle_bx {
  position: relative;
  display: block;
  border-bottom: 2px solid #fed0a2;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #000000;
  padding: 30px;
  z-index: 2;
  opacity: 0.5;
  transform: translateY(40px);
}
.lifestyle_bx:hover {
  background: #000000;
  transition: 0.5s;
  border-bottom: 2px solid #000000;
  color: var(--white);
  z-index: 3;
}
.swipeimage {
  position: absolute;
  top: 50%;
  right: 0px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(-50%) rotate(-10deg);
  z-index: 1;
  cursor: none;
  object-fit: cover;
  width: 287px;
}
.lifestyle_bx:hover .swipeimage {
  opacity: 1;
  transition: 0.5s;
  right: 100px;
}
.project_name h3 {
  padding-left: 30px;
  position: relative;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 25px;
}
.project_name h3::before {
  position: absolute;
  top: 50%;
  width: 10px;
  aspect-ratio: 1;
  background: #000000;
  left: 0;
  transform: translateY(-50%);
  content: "";
  border-radius: 50%;
  transition: 0.5s;
}
.lifestyle_bx:hover .project_name h3::before {
  background: var(--white);
  transition: 0.5s;
}
/* what included start */

/* testimonial sec start */
.testimonialSec {
  display: grid;
  grid-template-columns: 65% 35%;
}
.testimonialWrapper {
  background: url(../images/tesbg-left.png) no-repeat;
  height: 100%;
  background-size: cover;
}
.text-white h2 {
  color: var(--white);
}
.testimonialInner {
  max-width: 70%;
  margin-left: auto;
  padding: 100px;
  padding-left: 0;
}
.tesbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* tes slider */
/* Container layout */
.tesSlider {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

/* Swiper general styles */
.swiper {
  width: 100%;
  height: 100%;
}

/* Thumbnail slider */
.tesSlider .mySwiper {
  width: 235px;
  height: 463px;
  padding-right: 50px;
}

.tesSlider .mySwiper .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}

.tesSlider .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

/* Thumbnail images */
.tesSlider .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Scrollbar styling */
.tesSlider .mySwiper .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  width: 6px;
  right: 0;
}

.tesSlider .mySwiper .swiper-scrollbar-drag {
  background: #fff;
  border-radius: 3px;
}

/* Main slider */
.tesSlider .mySwiper2 {
  width: 80%;
  height: 463px;
  flex: 1;
}

.tesSlider .mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tesSlider .thumbImg {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.tesSlider .swiper-thumbs .swiper-slide {
  transform: scale(0.7);
}
.tesSlider .swiper-thumbs .swiper-slide.swiper-slide-visible {
  margin-bottom: 20px !important;
}
.tesSlider .swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  transform: scale(1);
  transition: 0.5s;
}
.tesSlider .swiper-thumbs .swiper-slide h6 {
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  margin-top: 12px;
}
.tesSlider .swiper-thumbs .swiper-slide small {
  display: block;
  text-align: center;
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
}
.tesSlider .mySwiper .swiper-scrollbar-drag {
  background: #fed0a2;
  border-radius: 3px;
}
.tesSlider .mySwiper .swiper-scrollbar {
  background: rgb(255 255 255 / 0%);
  z-index: 1;
}
.tesSlider .mySwiper .swiper-scrollbar::before {
  content: "";
  top: 0;
  right: 2px;
  z-index: -1;
  background: #434343;
  width: 1px;
  position: absolute;
  height: 100%;
}
.quoteImg img {
  max-width: 66px;
  margin: 0 auto 30px;
  display: table;
}
.tesSlider .mySwiper2 .swiper-slide {
  display: grid;
  place-content: center;
  align-items: center;
  padding-left: 100px;
}
.tesSlider .mySwiper2 .swiper-slide h6 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0%;
  text-align: center;
  color: #9d9d9d;
  max-width: 396px;
  margin: auto;
}
.videoThumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.VideoPlay {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  left: 50%;
  display: flex;
  top: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  font-size: 20px;
  color: var(--secondaryColor);
}
.VideoPlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: #ffffff;
  animation: pulse_shadow 1s ease-in-out infinite;
  will-change: box-shadow;
}

@keyframes pulse_shadow {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
/* testimonial sec start */

/* your invesment */
.yourInvesment {
  padding: 100px 0;
  background: #f2dbec;
}
.invesmentLeft {
  padding-right: 25px;
}
.invesmentright {
  padding-left: 25px;
}
.invesmentright h3 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0%;
  color: #000000;
}
.invesmentright h4 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  color: #000000;
  margin: 25px 0 45px;
}
.invesmentright h4 strong {
  font-weight: 500;
  font-size: 20px;
}
.invesmentright em {
  margin-top: 24px;
  font-size: 15px;
}
.invesmentright {
  position: relative;
  transform: translateY(15px);
}
.invesmentbar {
  position: absolute;
  top: 0;
  left: -14px;
  background: var(--white);
  width: 3px;
  height: 100%;
}
/* your invesment */

/* your story */
.yourStory {
  background: #ffffff;
  padding: 120px 0;
}
.yourStoryInner {
  text-align: center;
}
.yourStoryInner h5 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #000000;
  margin: 40px 0 10px;
}
.yourStoryInner h6 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
}
/* your story */

/* gallery sec */
section.gallerySec {
  padding: 120px 0;
  background: #fffaf5;
}
.gallerywrraper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.gallerywrraper:not(:last-child) {
  margin-bottom: 20px;
}
.galleryrow {
  display: grid;
  gap: 20px;
}
.galleryItem {
  position: relative;
}
.galleryItem img {
  width: 100%;
}
.viewBtn {
  width: 40px;
  height: 40px;
  background: var(--secondaryColor);
  color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  opacity: 0;
  transition: 0.5s;
}
.galleryItem:hover .viewBtn {
  opacity: 1;
  transition: 0.5s;
}
.gallerywrrapernew {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.gallerynewrow {
  display: grid;
  gap: 20px;
}
.gallerywrrapernew01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
/* gallery sec */

/* booking form */
.modal-header {
  border: none;
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 30px;
  line-height: 29px;
  padding: 0px;
  border: none;
  margin-bottom: 50px;
}
#popformModal .modal-content {
  padding: 50px !important;
  border-radius: 60px !important;
}
#popformModal .modal-body {
  padding: 0;
}
.modal-content .form-group label {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #000000;
  margin-bottom: 5px;
}
.modal-content .form-group label span {
  color: var(--secondaryColor);
}
.modal-content .form-group {
  margin-bottom: 20px;
}
.modal-content .form-group .form-control,
.modal-content .form-group .form-select {
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  font-family: var(--montserrat);
  /* font-weight: 400; */
  font-size: 13px;
  line-height: 15px;
  /* min-height: 45px; */
  box-shadow: none !important;
  transition: 0.5s;
  border-radius: 8px;
  color: #000000;
  padding: 14px 15px;
}
.modal-content .form-group .form-select:active,
.modal-content .form-group .form-select:focus {
  border: 1px solid var(--secondaryColor);
  transition: 0.5s;
}
.submit {
  text-align: center;
  min-width: 170px;
}
/* booking form */

/* footer sec */
.footerArea {
  background: #000000;
  padding: 10px 0 9px;
}
.footerArea p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 13px;
  line-height: 10px;
  color: #929292;
}
.socialbar {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.socialbar li a {
  width: 31px;
  display: inline-grid;
  place-content: center;
  aspect-ratio: 1;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: 0.5s;
}
.socialbar li a i {
  transform: translateY(1px);
}
.socialbar li a:hover {
  background: var(--secondaryColor);
  transition: 0.5s;
  border: 1px solid var(--secondaryColor);
}
.lastpara a {
  color: var(--white);
  font-weight: 500;
  transition: 0.5s;
}
.lastpara a:hover {
  color: #fed0a2;
  transition: 0.5s;
}
.yourInvesment {
  background: #ffefd4;
}
.reservemobileBtnWrapper {
  display: none;
}
/* footer sec */
