:root {
  --bs-primary: #f4c67e;
  --bs-secondary: #f6eeb0;
  --bs-success: #bec8a0;
  --bs-body-color: #000000;
}

.text-primary {
  color: var(--text-color) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.bg-success {
  background-color: var(--bs-success) !important;
}

.btn-custom {
  font-size: 22px;
  font-weight: 600;
  padding: 15px 48px;
  border-radius: 2em;
  box-shadow: 0px 3px 7px #00000029;
}
.btn-custom:hover {
  background-color: #fff !important;
  border: 1px solid #000 !important;
}
.btn-white {
  font-size: 22px;
  font-weight: 600;
  padding: 15px 48px;
  border-radius: 2em;
  box-shadow: 0px 3px 7px #00000029;
  border: 1px solid #000000;
}

.btn-white.orange-btn:hover {
  background-color: var(--bs-primary) !important;
  border: 1px solid var(--bs-primary) !important;
}
.btn-white.yellow-btn:hover {
  background-color: var(--bs-secondary) !important;
  border: 1px solid var(--bs-secondary) !important;
}
.btn-white.green-btn:hover {
  background-color: var(--bs-success) !important;
  border: 1px solid var(--bs-success) !important;
}
body {
  font-family: "Poppins", sans-serif;
}

.container-lg {
  max-width: 1660px !important;
}

h1 {
  font-size: calc(2.5rem + 2vw); 
}

h2 {
  font-size: calc(2.25rem + 1.8vw); 
}
h3 {
  font-size: calc(1.5rem + 1.2vw); 
}
h4 {
  font-size: calc(1.25rem + 1vw);
}

h5 {
  font-size: calc(1rem + 0.8vw); 
}

p {
  font-size: 22px;
  line-height: 26px;
}

.fs-20 {
  font-size: 20px;
}

.custom-width > * {
  width: 64%;
}

.mySwiper-Logos .swiper-slide img {
  max-height: 150px;
  object-fit: cover;
}
.mySwiper-Logos .swiper-wrapper {
  transition-timing-function: linear !important;
}
.card {
  border-radius: 20px;
  box-shadow: 0px 5px 16px #00000014;
}

.card img {
  object-fit: contain;
  height: 120px;
}
.flow-card {
  position: relative;
  width: 50%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.flow-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.flow-text{
  width: 90%;
}
.flow-bg img{
  width: 100%;
  height: 100%;
}
section {
  overflow: hidden;
}
/*testimonials*/
section.testimonials {
  background-color: #f2f2f2;
  padding-top: 100px;
  padding-bottom: 180px;
}
section.testimonials .swiper-slide {
  padding: 32px;
  border-radius: 20px;
  background-color: var(--bs-white);
  flex: 1 0 auto;
}
section.testimonials .swiper-slide .testimonial--inner {
  padding: 32px;
  padding-top: 50px;
  border: 1px solid #f4c67e;
  border-radius: 20px;
}
section.testimonials .swiper-pagination {
  margin-top: 50px;
  --swiper-pagination-color: var(--bs-black);
  position: static;
}

.testimonial--inner .testimonial--author {
  gap: 15px;
}
.testimonial-pills{
  gap: 20px;
}
.swiper-testimonials{
  padding-top: 80px;
}
.testimonial-pills > div{
  flex: 0 0 auto;
  width: max-content;
  padding-top: 10px;
  padding-bottom: 10px;
}

.lg-padding-y {
  padding-top: 150px;
  padding-bottom: 150px;
}
.lg-padding-bottom {
  padding-bottom: 150px;
}
.has-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.orange-bg-highlight{
  box-shadow: 0px 3px 15px #F4C67E; 
  border: 2px solid #F4C67E; 
  border-radius: 20px;
}
.yellow-bg-highlight{
  box-shadow: 0px 3px 15px #F6EEB0; 
  border: 2px solid #F6EEB0; 
  border-radius: 20px;
}
.green-bg-highlight{
  box-shadow: 0px 3px 15px #BEC8A0; 
  border: 2px solid #BEC8A0; 
  border-radius: 20px;
}

#popupDiv {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 60%;
    border-radius: 20px;
  }
#popupDiv > section{
    border-radius: 20px;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.btn-close-popup{
  position: absolute;
  right: -5%;
}

.box-shadow{
    box-shadow: 0px 3px 7px #00000029;
}

@media(max-width: 768px){
  .p-5{
    padding: 1rem !important;
  }

  section.testimonials {
  padding-bottom: 80px !important;
  }
  .lg-padding-y {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .lg-padding-bottom{
    padding-bottom: 80px !important;
  }
}
@media(max-width: 992px){
  .flow-card{
    width: 90% !important;
  }
  .custom-width > * {
  width: 90%;
  }
  .text-custom-width{
  width: 100% !important; 
  }
}