@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-family: "Inter", sans-serif;
  position: relative;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
}

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

.no-padding {
  padding: 0px !important;
}

.container-fluid {
  max-width: 1440px;
}

@keyframes topToBottom {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
header {
  transition: all 0.3s ease-in-out;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 0.571px solid #F3F4F6;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
header .inner-full-header-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  header .header-inner-wrapper {
    display: none;
  }
}
header .header-inner-wrapper .header-desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .left-side-logo a {
  display: block;
}
header .header-inner-wrapper .header-desktop .left-side-logo a img {
  width: 100%;
  max-width: 140px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1399px) {
  header .header-inner-wrapper .header-desktop .left-side-logo a img {
    max-width: 110px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 12px;
}
@media (max-width: 1800px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li {
    margin: 0 7px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li:last-child {
  margin-right: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li:last-child a {
  background-color: #3C705E;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li:last-child a:hover {
  background-color: #25D366;
  color: #ffffff;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
  min-height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #6A7282;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
    font-size: 12px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a:hover {
  color: #3C705E;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li .active {
  color: #3C705E !important;
  font-weight: 800;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li {
  margin-left: 80px;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li a {
  gap: 5px;
  color: #25D366;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li a .icon-wrapper {
  border-radius: 19174000px;
  background: #25D366;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li a .icon-wrapper img {
  width: 15px;
  transition: 0.3s ease-in-out;
  transform: rotate(40deg);
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li a:hover .icon-wrapper {
  background-color: #3C705E;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .phone-li a:hover .icon-wrapper img {
  transform: rotate(0deg);
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown {
  position: relative;
  z-index: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown-link span {
  font-weight: 700 !important;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu {
  background-color: #ffffff;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 15px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  transform: translateY(10px);
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li {
  margin: 0;
  list-style: none;
  display: block;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li a {
  padding: 5px 0;
  display: block;
  font-size: 15px;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li a::before {
  display: none;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .header-mobile-section {
  display: none;
}
@media (max-width: 1199px) {
  header .header-mobile-section {
    display: block;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
  max-width: 135px;
}
@media (max-width: 1199px) {
  header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
    max-width: 110px;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li {
  list-style: none;
  display: inline-block;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon {
  position: relative;
  z-index: 1;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon img {
  width: 18px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon span {
  width: fit-content;
  position: absolute;
  right: -8px;
  top: -8px;
  background-color: #3C705E;
  padding: 2px;
  font-size: 9px;
  min-width: 18px;
  min-height: 18px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .mobile-menu-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 24px;
  color: #3C705E;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas {
  background: rgba(255, 255, 255, 0.98);
  min-height: 100vh;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header {
  padding: 20px;
  margin-bottom: 50px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header h5 a img {
  max-width: 120px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close {
  background-image: unset;
  color: #3C705E;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body {
  padding: 16px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul {
  margin: 0;
  padding: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li {
  list-style: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a {
  font-size: 17px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  padding: 8px 0;
  display: block;
  color: #3C705E;
  opacity: 0.95;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .active {
  color: #3C705E;
  opacity: 1;
  font-weight: 700;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion {
  background-color: transparent;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item {
  background-color: transparent;
  border: none !important;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header {
  background-color: transparent;
  padding: 10px 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header button {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  color: #000000;
  border: none;
  box-shadow: none;
  outline: none;
  opacity: 0.8;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body {
  padding: 0 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body ul li a {
  padding: 4px 0;
  font-size: 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Icons";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul .active button {
  color: #3C705E !important;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner {
  text-align: left;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner h6 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper {
  margin-bottom: 25px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a {
  color: #ffffff;
  padding: 0 5px;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a:first-child {
  padding-left: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

.sticky {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1499px) {
  .sticky {
    padding: 0;
  }
}
.sticky .left-side-logo a img {
  max-width: 135px !important;
}
@media (max-width: 1499px) {
  .sticky .left-side-logo a img {
    max-width: 100px !important;
  }
}
.hero-section-wrapper {
  margin-top: 75px;
  margin-bottom: 70px;
}
@media (max-width: 1499px) {
  .hero-section-wrapper {
    margin-top: 74px;
  }
}
@media (max-width: 1399px) {
  .hero-section-wrapper {
    margin-top: 59px;
  }
}
.hero-section-wrapper .bg-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section-wrapper .bg-wrapper .hero-section-inner {
  padding: 180px 0;
}
@media (max-width: 1699px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner {
    padding: 150px 0;
  }
}
@media (max-width: 1499px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner {
    padding: 100px 0;
  }
}
@media (max-width: 1399px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner {
    padding: 60px 0;
  }
}
.hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
  font-size: 72px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 100%;
  margin-bottom: 16px;
}
@media (max-width: 1399px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 115%;
  }
}
.hero-section-wrapper .bg-wrapper .hero-section-inner h2 .middle-span {
  color: #d9d9d9;
}
.hero-section-wrapper .bg-wrapper .hero-section-inner h2 .last-span {
  background: linear-gradient(90deg, #39A065 0%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section-wrapper .bg-wrapper .hero-section-inner p {
  font-size: 18px;
  font-weight: 500;
  color: #d1d5dc;
  line-height: 150%;
  max-width: 630px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner p {
    max-width: 580px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner p {
    max-width: 100%;
  }
}
.hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: fit-content;
  border-radius: 19174000px;
  background: #3C705E;
  box-shadow: 0 0 20px 0 rgba(60, 112, 94, 0.4);
  position: relative;
  z-index: 1;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a {
    font-size: 15px;
    padding: 12px 25px;
  }
}
.hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 19174000px;
  border: 5px solid #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: 0.3s ease-in-out;
  transform-origin: center;
}
@media (max-width: 1399px) {
  .hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a::before {
    border: 3px solid #ffffff;
  }
}
.hero-section-wrapper .bg-wrapper .hero-section-inner .link-wrapper a:hover {
  background-color: #25D366;
}

.why-asthetics-section {
  margin-bottom: 70px;
}
.why-asthetics-section .why-asthetics-inner .top-section h2 {
  color: #000;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.5px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .why-asthetics-section .why-asthetics-inner .top-section h2 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .top-section h2 {
    font-size: 24px;
    line-height: 115%;
    letter-spacing: -1px;
  }
}
.why-asthetics-section .why-asthetics-inner .top-section h3 {
  color: #1B3B2B;
  text-align: center;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .why-asthetics-section .why-asthetics-inner .top-section h3 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 1199px) {
  .why-asthetics-section .why-asthetics-inner .top-section h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .top-section h3 {
    font-size: 24px;
    line-height: 115%;
    letter-spacing: -1px;
  }
}
.why-asthetics-section .why-asthetics-inner .top-section h3 span {
  color: #3C705E;
}
.why-asthetics-section .why-asthetics-inner .top-section .content-para p {
  color: #4A5565;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .why-asthetics-section .why-asthetics-inner .top-section .content-para p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .top-section .content-para p {
    line-height: 150%;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1199px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section {
    grid-template-columns: 1fr;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a .image-wrapper img {
  width: 100%;
  border-radius: 40px;
  transition: 1s ease-in-out;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 130px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a span {
    font-size: 70px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a:hover .image-wrapper img {
  transform: scale(1.05);
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .left-video a:hover span {
  color: #3C705E;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section {
  border-radius: 40px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #FFF;
  box-shadow: 0 20px 50px 0 rgba(60, 112, 94, 0.15);
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 50px;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers {
    padding: 40px 15px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers h5 {
  color: #1B3B2B;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.75px;
  margin-bottom: 10px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers h5 {
    font-size: 17px;
    line-height: 150%;
    max-width: 100%;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper {
  padding-top: 40px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper {
    max-width: 100%;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart ul {
  margin: 0;
  padding: 0;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  min-height: 60px;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart ul li:last-child {
  min-height: unset;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart ul li p {
  margin: 0;
  color: #99A1AF;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart ul li .line {
  width: 100%;
  background: rgba(60, 112, 94, 0.1);
  height: 1px;
  margin-top: 6px;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper {
  position: absolute;
  bottom: -15px;
  left: 50px;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper {
    left: 30px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  gap: 50px;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon {
    padding: 0;
    gap: 10px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper {
  min-width: 125px;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper h4 {
  text-align: center;
  margin: 0;
  color: #6A7282;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper h4 {
    font-size: 16px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper .pillar {
  animation: draw 1200ms ease-in-out;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  width: 90px;
  height: 60px;
  border-radius: 16px 16px 0 0;
  border-top: 0.571px solid rgba(60, 112, 94, 0.1);
  border-right: 0.571px solid rgba(60, 112, 94, 0.1);
  border-left: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper .pillar {
    width: 50px;
    border-radius: 7px 7px 0 0;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper p {
  margin: 0;
  color: #6A7282;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .x-wrapper p {
    font-size: 10px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .graph-icon img {
  width: 130px;
  position: absolute;
  left: 110px;
  bottom: 85px;
  animation: grow 800ms ease-in-out 1s forwards;
  opacity: 0;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .graph-icon img {
    width: 90px;
    left: 70px;
  }
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .twox-box .toltip-box {
  margin-bottom: 10px;
  border-radius: 50px;
  border: 0.571px solid rgba(60, 112, 94, 0.5);
  background: #1B3B2B;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: toltip 800ms ease-in-out 3200ms forwards;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .twox-box .toltip-box::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -5px;
  content: "";
  border-right: 0.571px solid rgba(60, 112, 94, 0.5);
  border-bottom: 0.571px solid rgba(60, 112, 94, 0.5);
  background: #1B3B2B;
  width: 11px;
  height: 11px;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .twox-box .toltip-box h4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 7px;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .twox-box .pillar {
  opacity: 0;
  border-top: 0.571px solid #2B5244;
  border-right: 0.571px solid #2B5244;
  border-left: 0.571px solid #2B5244;
  background: linear-gradient(0deg, #2B5244 0%, #2C5446 8.33%, #2E5748 16.67%, #2F594A 25%, #315C4D 33.33%, #325E4F 41.67%, #336151 50%, #356353 58.33%, #366655 66.67%, #386857 75%, #396B5A 83.33%, #3B6D5C 91.67%, #3C705E 100%);
  box-shadow: 0 15px 30px 0 rgba(60, 112, 94, 0.3);
  height: 215px;
  animation: drawtwo 1200ms ease-in-out 2000ms forwards;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers .inner-chart-wrapper .main-chart .onex-twox-wrapper .graph-bottom-icon .twox-box p {
  opacity: 0;
  animation: labal 800ms ease-in-out 2000ms forwards;
}
.why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers p {
  color: #6A7282;
  text-align: center;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 16.25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 70px;
}
@media (max-width: 991px) {
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers p {
    font-size: 12px;
  }
  .why-asthetics-section .why-asthetics-inner .video-graph-section .right-graph-section .inner-wrappers p br {
    display: none;
  }
}

.who-courses-section {
  margin-bottom: 70px;
}
.who-courses-section .who-courses-inner {
  border-radius: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 38px 100px;
}
@media (max-width: 991px) {
  .who-courses-section .who-courses-inner {
    padding: 30px 0;
    border-radius: 9px;
  }
}
.who-courses-section .who-courses-inner h2 {
  color: #3C705E;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .who-courses-section .who-courses-inner h2 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .who-courses-section .who-courses-inner h2 {
    font-size: 24px;
    line-height: 115%;
  }
}
.who-courses-section .who-courses-inner h3 {
  color: #1B3B2B;
  text-align: center;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .who-courses-section .who-courses-inner h3 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .who-courses-section .who-courses-inner h3 {
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -1px;
  }
}
.who-courses-section .who-courses-inner h3 span {
  color: #3C705E;
}
.who-courses-section .who-courses-inner .content-para p {
  color: #4A5565;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
  margin-bottom: 4px;
}
@media (max-width: 1399px) {
  .who-courses-section .who-courses-inner .content-para p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .who-courses-section .who-courses-inner .content-para p {
    line-height: 26px;
  }
}
.who-courses-section .who-courses-inner .content-para p:last-child {
  margin-bottom: 0;
}

.explore-section {
  margin-bottom: 70px;
}
.explore-section .explore-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1199px) {
  .explore-section .explore-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .explore-section .explore-inner {
    grid-template-columns: 1fr;
  }
}
.explore-section .explore-inner .box-wrapper {
  width: 31.9%;
}
@media (max-width: 1399px) {
  .explore-section .explore-inner .box-wrapper {
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .explore-section .explore-inner .box-wrapper {
    width: 100%;
  }
}
.explore-section .explore-inner .box-wrapper a {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #ffffff;
  box-shadow: 0 20px 50px 0 rgba(60, 112, 94, 0.1);
  overflow: hidden;
  height: 100%;
}
.explore-section .explore-inner .box-wrapper a .image-wrapper img {
  width: 100%;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper {
    padding: 25px 12px;
  }
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .title {
  min-height: 65px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 4px;
  border-radius: 19174000px;
  background: rgba(60, 112, 94, 0.2);
  content: "";
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .title h4 {
  color: #1B3B2B;
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .title h4 {
    font-size: 18px;
  }
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .para p {
  color: #364153;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.75px;
  margin-bottom: 20px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper {
  margin-bottom: 30px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul {
  margin: 0;
  padding: 0;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 12px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul li:last-child {
  margin-bottom: 0;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul li .icon-wrapper {
  padding-top: 3px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul li .icon-wrapper span {
  font-size: 16px;
  color: #3C705E;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .list-wrapper ul li p {
  margin: 0;
  color: #4A5565;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.75px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper {
  margin-top: auto;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper {
  border-radius: 100px;
  border: 0.571px solid rgba(60, 112, 94, 0.2);
  padding: 15px 25px;
  background: #F5F9F6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper {
    padding: 12px 25px;
  }
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper h5 {
  margin: 0;
  color: #3C705E;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper h5 {
    font-size: 16px;
  }
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper .icon-wrapper {
  border-radius: 19174000px;
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper .icon-wrapper span {
  color: #3C705E;
  font-size: 18px;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper:hover {
  background-color: #3C705E;
}
.explore-section .explore-inner .box-wrapper a .inner-bottom-wrapper .link-wrapper .inner-wrapper:hover h5 {
  color: #ffffff;
}
.explore-section .explore-inner .box-wrapper a:hover .inner-bottom-wrapper .link-wrapper .inner-wrapper {
  background-color: #3C705E;
}
.explore-section .explore-inner .box-wrapper a:hover .inner-bottom-wrapper .link-wrapper .inner-wrapper h5 {
  color: #ffffff;
}

.content-image-section {
  margin-bottom: 70px;
}
.content-image-section .content-image-inner {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
.content-image-section .content-image-inner .box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 991px) {
  .content-image-section .content-image-inner .box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .content-image-section .content-image-inner .box-wrapper:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.content-image-section .content-image-inner .box-wrapper .inner-box h3 {
  color: #1B3B2B;
  font-size: 36px;
  font-weight: 800;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .content-image-section .content-image-inner .box-wrapper .inner-box h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 991px) {
  .content-image-section .content-image-inner .box-wrapper .inner-box h3 {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.content-image-section .content-image-inner .box-wrapper .inner-box h3 span {
  color: #3C705E;
}
.content-image-section .content-image-inner .box-wrapper .inner-box h3::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 19174000px;
  background: rgba(60, 112, 94, 0.2);
}
.content-image-section .content-image-inner .box-wrapper .inner-box .content-para p {
  margin-bottom: 16px;
  color: #4A5565;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 1399px) {
  .content-image-section .content-image-inner .box-wrapper .inner-box .content-para p {
    font-size: 16px;
    line-height: 24px;
  }
}
.content-image-section .content-image-inner .box-wrapper .inner-box .content-para p:last-child {
  margin-bottom: 0;
}
.content-image-section .content-image-inner .box-wrapper .image-wrapper {
  overflow: hidden;
  border-radius: 40px;
  border: 4px solid #FFF;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 30px 60px -15px rgba(60, 112, 94, 0.3);
}
.content-image-section .content-image-inner .box-wrapper .image-wrapper img {
  width: 100%;
}

.learn-leaders-section {
  margin-bottom: 70px;
  background: #1B3B2B;
  padding: 56px 0;
}
@media (max-width: 991px) {
  .learn-leaders-section {
    padding: 50px 0;
  }
}
.learn-leaders-section .learn-leaders-inner .top-title h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 52.8px;
  letter-spacing: -1.2px;
  background: linear-gradient(90deg, #3C705E 0%, #3C775F 7.14%, #3C7E60 14.29%, #3C8461 21.43%, #3C8B62 28.57%, #3B9263 35.71%, #3A9964 42.86%, #39A065 50%, #38A865 57.14%, #36AF66 64.29%, #34B666 71.43%, #31BD66 78.57%, #2EC466 85.71%, #2ACC66 92.86%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 22px;
}
@media (max-width: 1399px) {
  .learn-leaders-section .learn-leaders-inner .top-title h2 {
    font-size: 38px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .learn-leaders-section .learn-leaders-inner .top-title h2 {
    font-size: 25px;
    line-height: 130%;
  }
}
.learn-leaders-section .learn-leaders-inner .image-text-wrapper {
  position: relative;
  z-index: 1;
}
.learn-leaders-section .learn-leaders-inner .image-text-wrapper .image-wrapper {
  border-radius: 45px;
  overflow: hidden;
}
.learn-leaders-section .learn-leaders-inner .image-text-wrapper .image-wrapper img {
  width: 100%;
}
.learn-leaders-section .learn-leaders-inner .image-text-wrapper h3 {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  padding: 0 15px;
  margin-bottom: 0;
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  line-height: 52.8px;
  letter-spacing: -1.2px;
}
@media (max-width: 1399px) {
  .learn-leaders-section .learn-leaders-inner .image-text-wrapper h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .learn-leaders-section .learn-leaders-inner .image-text-wrapper h3 {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0px;
    bottom: 0;
    padding: 0;
  }
}
.learn-leaders-section .learn-leaders-inner .image-text-wrapper h3 span {
  background: linear-gradient(90deg, #3C705E 0%, #3C775F 7.14%, #3C7E60 14.29%, #3C8461 21.43%, #3C8B62 28.57%, #3B9263 35.71%, #3A9964 42.86%, #39A065 50%, #38A865 57.14%, #36AF66 64.29%, #34B666 71.43%, #31BD66 78.57%, #2EC466 85.71%, #2ACC66 92.86%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flexible-payment-section {
  margin-bottom: 70px;
}
.flexible-payment-section .flexible-payment-inner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 1199px) {
  .flexible-payment-section .flexible-payment-inner {
    padding: 50px 20px;
  }
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner {
    padding: 0;
    border-radius: 9px;
    grid-template-columns: 1fr;
  }
}
.flexible-payment-section .flexible-payment-inner .left-section h2 {
  color: #1B3B2B;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .flexible-payment-section .flexible-payment-inner .left-section h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .left-section h2 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}
.flexible-payment-section .flexible-payment-inner .left-section h2 span {
  color: #3C705E;
}
.flexible-payment-section .flexible-payment-inner .left-section .content-para p {
  color: #364153;
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
  margin-bottom: 22px;
}
@media (max-width: 1399px) {
  .flexible-payment-section .flexible-payment-inner .left-section .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.flexible-payment-section .flexible-payment-inner .left-section .content-para p span {
  color: #25D366;
}
.flexible-payment-section .flexible-payment-inner .left-section .content-para p strong {
  font-weight: 700;
}
.flexible-payment-section .flexible-payment-inner .left-section .link-wrapper {
  margin-top: auto;
}
.flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a {
  border-radius: 100px;
  background: #1B3B2B;
  box-shadow: 0 10px 30px 0 rgba(27, 59, 43, 0.2);
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 800;
  color: #ffffff;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a {
    padding: 12px 25px;
    font-size: 13px;
    gap: 5px;
  }
}
@media (max-width: 575px) {
  .flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a {
    width: 100%;
  }
}
.flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.flexible-payment-section .flexible-payment-inner .left-section .link-wrapper a:hover {
  background-color: #3C705E;
}
.flexible-payment-section .flexible-payment-inner .right-section {
  position: relative;
  z-index: 1;
}
.flexible-payment-section .flexible-payment-inner .right-section .image-wrapper {
  border-radius: 33px;
  overflow: hidden;
}
.flexible-payment-section .flexible-payment-inner .right-section .image-wrapper img {
  width: 100%;
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper {
  border-radius: 24px;
  border: 0.571px solid #FFF;
  background: #FFF;
  box-shadow: 0 20px 40px 0 rgba(27, 59, 43, 0.15);
  width: fit-content;
  padding: 25px;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper {
    padding: 15px;
    border-radius: 15px;
  }
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper {
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0px solid transparent;
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 19174000px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #3C705E;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .icon-wrapper {
    width: 32px;
    height: 32px;
  }
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .icon-wrapper h5 {
  margin: 0;
  color: #FFF;
  font-size: 15px;
  font-weight: 900;
  line-height: 28px;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .icon-wrapper h5 {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .icon-wrapper img {
    width: 15px;
  }
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .right-content h6 {
  margin: 0;
  color: #1B3B2B;
  font-size: 14px;
  font-weight: 800;
  line-height: 17.5px;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .right-content h6 {
    font-size: 12px;
  }
}
.flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .right-content p {
  margin: 0;
  color: #6A7282;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
@media (max-width: 991px) {
  .flexible-payment-section .flexible-payment-inner .right-section .icon-content-wrapper .box-wrapper .right-content p {
    font-size: 10px;
  }
}

.success-section {
  margin-bottom: 70px;
  background: #3C705E;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .success-section {
    padding: 50px 0;
  }
}
.success-section .success-inner {
  text-align: center;
}
.success-section .success-inner h3 {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}
@media (max-width: 1399px) {
  .success-section .success-inner h3 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .success-section .success-inner h3 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}
.success-section .success-inner h3 span {
  color: #25D366;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}
@media (max-width: 991px) {
  .success-section .success-inner h3 span {
    padding-bottom: 5px;
  }
}
.success-section .success-inner h3 span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #25D366;
}
@media (max-width: 991px) {
  .success-section .success-inner h3 span::after {
    height: 3px;
  }
}
.success-section .success-inner p {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1.2px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .success-section .success-inner p {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .success-section .success-inner p {
    font-size: 16px;
    letter-spacing: 0px;
  }
}

.best-section {
  margin-bottom: 70px;
}
.best-section .best-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px;
  align-items: center;
}
@media (max-width: 1199px) {
  .best-section .best-inner {
    grid-template-columns: 1fr;
  }
}
.best-section .best-inner .left-section h2 {
  color: #1B3B2B;
  font-size: 60px;
  font-weight: 800;
  line-height: 75px;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
@media (max-width: 1399px) {
  .best-section .best-inner .left-section h2 {
    font-size: 52px;
    line-height: 65px;
  }
}
@media (max-width: 1199px) {
  .best-section .best-inner .left-section h2 {
    font-size: 44px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .best-section .best-inner .left-section h2 {
    font-size: 24px;
    line-height: 130%;
  }
}
.best-section .best-inner .left-section h2 span {
  color: #3C705E;
}
.best-section .best-inner .left-section .content-para p {
  color: #364153;
  font-size: 20px;
  font-weight: 500;
  line-height: 32.5px;
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .best-section .best-inner .left-section .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.best-section .best-inner .left-section .link-outer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 991px) {
  .best-section .best-inner .left-section .link-outer-wrapper {
    flex-direction: column;
  }
}
.best-section .best-inner .left-section .link-outer-wrapper .link-wrapper {
  margin-top: auto;
}
.best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a {
  border-radius: 100px;
  background: #1B3B2B;
  box-shadow: 0 10px 30px 0 rgba(27, 59, 43, 0.2);
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 800;
  color: #ffffff;
}
@media (max-width: 991px) {
  .best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a {
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a {
    width: 100%;
  }
  .best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a br {
    display: none;
  }
}
.best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.best-section .best-inner .left-section .link-outer-wrapper .link-wrapper a:hover {
  background-color: #3C705E;
}
.best-section .best-inner .right-image-section .image-wrapper {
  border-radius: 33px;
  overflow: hidden;
}
.best-section .best-inner .right-image-section .image-wrapper img {
  width: 100%;
}

.clinic-section {
  margin-bottom: 70px;
  background: #F5F9F6;
  padding: 70px 0;
}
.clinic-section .top-title-section h3 {
  color: #3C705E;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 66px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .clinic-section .top-title-section h3 {
    font-size: 30px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .clinic-section .top-title-section h3 {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
.clinic-section .clinic-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.clinic-section .clinic-inner .box-wrapper {
  display: flex;
  flex-direction: column;
}
.clinic-section .clinic-inner .box-wrapper h4 {
  margin-bottom: 17px;
  color: #3C705E;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.75px;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper h4 {
    font-size: 24px;
    line-height: 130%;
  }
}
.clinic-section .clinic-inner .box-wrapper a {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper a {
    border-radius: 30px;
  }
}
.clinic-section .clinic-inner .box-wrapper .inner-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper .inner-wrapper {
    border-radius: 30px;
  }
}
.clinic-section .clinic-inner .box-wrapper .image-wrapper img {
  width: 100%;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper {
  margin-top: -105px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1B3B2B 0%, #3C705E 100%);
  padding: 35px 55px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper {
    border-radius: 30px;
  }
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper h5 {
  margin-bottom: 16px;
  color: #FFF;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.75px;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper h5 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 25px;
  }
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper h5 span {
  color: #25D366;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper p {
  margin-bottom: 40px;
  color: #D1D5DC;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.75px;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper {
  margin-top: auto;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper {
  border-radius: 100px;
  border: 0.571px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper {
    padding: 12px 25px;
    gap: 5px;
  }
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper h5 {
  margin: 0;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper h5 {
    font-size: 14px;
  }
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper:hover {
  background-color: #3C705E;
}
.clinic-section .clinic-inner .box-wrapper .inner-content-wrapper .link-wrapper .inner-wrapper:hover h5 {
  color: #ffffff;
}

.footer-section {
  border-top: 4px solid #3C705E;
  background: #1B3B2B;
  position: relative;
  z-index: 1;
}
.footer-section .footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 0 62px 0;
}
@media (max-width: 1399px) {
  .footer-section .footer-inner {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-inner {
    flex-direction: column;
  }
}
.footer-section .footer-inner .left-logo-section a {
  display: block;
}
.footer-section .footer-inner .left-logo-section a h5 {
  margin-bottom: 4px;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.footer-section .footer-inner .left-logo-section a p {
  margin-bottom: 0;
  color: #D1D5DC;
  font-size: 9px;
  font-weight: 700;
  line-height: 13.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.footer-section .footer-inner .left-logo-section .content-para-link {
  margin-top: 26px;
}
.footer-section .footer-inner .left-logo-section .content-para-link p {
  margin-bottom: 30px;
  color: #D1D5DC;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.75px;
  max-width: 381px;
}
.footer-section .footer-inner .left-logo-section .social-links {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .left-logo-section .social-links {
    margin-bottom: 20px;
  }
}
.footer-section .footer-inner .left-logo-section .social-links a {
  width: 46px;
  height: 46px;
  border-radius: 19174000px;
  border: 0.571px solid rgba(60, 112, 94, 0.5);
  background: rgba(60, 112, 94, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .left-logo-section .social-links a:hover {
  background-color: #3C705E;
  border-color: #3C705E;
  color: #ffffff;
}
.footer-section .footer-inner .links-address-wrapper .links-box h4 {
  color: #3C705E;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-left: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.footer-section .footer-inner .links-address-wrapper .links-box h4::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 19174000px;
  background: #3C705E;
  content: "";
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 46px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box .footer-links p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li {
  list-style: none;
  margin-right: 30px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li:nth-child(even) {
  margin-right: 0;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li a {
  color: #D1D5DC;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li a:hover {
  color: #3C705E;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(60, 112, 94, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper .icon-wrapper img {
  transform: rotate(40deg);
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper .icon-wrapper span {
  color: #3C705E;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper p {
  color: #D1D5DC;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.75px;
  max-width: 344px;
  margin: 0;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper .right-side a {
  color: #D1D5DC;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper .right-side p {
  margin: 0;
  color: #3C705E;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links .address-box-wrapper .box-wrapper:hover .icon-wrapper img {
  transform: rotate(0deg);
}
.footer-section .copyright-section {
  border-top: 0.571px solid rgba(60, 112, 94, 0.3);
  padding: 30px 0 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-section .copyright-section {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
.footer-section .copyright-section p {
  color: #3C705E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer-section .copyright-section p {
    text-align: center;
  }
}
.footer-section .copyright-section ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .footer-section .copyright-section ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.footer-section .copyright-section ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.footer-section .copyright-section ul li:last-child {
  margin-right: 0;
}
.footer-section .copyright-section ul li a {
  color: #3C705E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.footer-section .copyright-section ul li a:hover {
  color: #25D366;
}
.footer-section .whatsapp-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  right: 50px;
  bottom: 80px;
  z-index: 999;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper {
    gap: 10px;
    right: 20px;
  }
}
.footer-section .whatsapp-contact-wrapper a {
  z-index: 9;
  background-color: #972d1d;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper a {
    width: 45px;
    height: 45px;
  }
}
.footer-section .whatsapp-contact-wrapper a:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}
.footer-section .whatsapp-contact-wrapper a:last-child {
  background-color: #7dda45;
}
.footer-section .whatsapp-contact-wrapper a img {
  width: 38px;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper a img {
    width: 22px;
  }
}

@media (min-width: 576px) {
  #staticBackdrop .modal-dialog {
    max-width: 800px;
  }
}
#staticBackdrop .modal-dialog .modal-content {
  border-radius: 15px;
}
#staticBackdrop .modal-dialog .modal-content .modal-header {
  border: none;
}
#staticBackdrop .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #3C705E;
  font-weight: 700;
}
#staticBackdrop .modal-dialog .modal-content .modal-header .btn-close {
  opacity: 1;
  background-image: unset;
  color: #3C705E;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#staticBackdrop .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
#staticBackdrop .modal-dialog .modal-body {
  background-color: transparent;
  padding: 16px;
  border-radius: 15px;
}
#staticBackdrop .modal-dialog .modal-body form .form-group {
  margin-bottom: 18px;
}
#staticBackdrop .modal-dialog .modal-body form .form-group input, #staticBackdrop .modal-dialog .modal-body form .form-group select {
  border: 1px solid #1B3B2B;
  background-color: #f5f9f6;
  color: #4A5565;
  padding: 10px 15px;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #staticBackdrop .modal-dialog .modal-body form .form-group input, #staticBackdrop .modal-dialog .modal-body form .form-group select {
    font-size: 14px;
  }
}
#staticBackdrop .modal-dialog .modal-body form .form-group input:focus, #staticBackdrop .modal-dialog .modal-body form .form-group select:focus {
  color: #000000;
  border-color: #3C705E;
}
#staticBackdrop .modal-dialog .modal-body form .submit-wrapper {
  margin-top: 25px;
}
#staticBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  border: none;
  background-color: #3C705E;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
#staticBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn:hover {
  background-color: #1B3B2B;
}

@media (min-width: 576px) {
  #hireGraduatesBackdrop .modal-dialog {
    max-width: 800px;
  }
}
#hireGraduatesBackdrop .modal-dialog .modal-content {
  border-radius: 15px;
}
#hireGraduatesBackdrop .modal-dialog .modal-content .modal-header {
  border: none;
}
#hireGraduatesBackdrop .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #3C705E;
  font-weight: 700;
}
#hireGraduatesBackdrop .modal-dialog .modal-content .modal-header .btn-close {
  opacity: 1;
  background-image: unset;
  color: #3C705E;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#hireGraduatesBackdrop .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
#hireGraduatesBackdrop .modal-dialog .modal-body {
  background-color: transparent;
  padding: 16px;
  border-radius: 15px;
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .form-group {
  margin-bottom: 18px;
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .form-group input, #hireGraduatesBackdrop .modal-dialog .modal-body form .form-group select {
  border: 1px solid #1B3B2B;
  background-color: #f5f9f6;
  color: #4A5565;
  padding: 10px 15px;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #hireGraduatesBackdrop .modal-dialog .modal-body form .form-group input, #hireGraduatesBackdrop .modal-dialog .modal-body form .form-group select {
    font-size: 14px;
  }
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .form-group input:focus, #hireGraduatesBackdrop .modal-dialog .modal-body form .form-group select:focus {
  color: #000000;
  border-color: #3C705E;
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .submit-wrapper {
  margin-top: 25px;
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  border: none;
  background-color: #3C705E;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
#hireGraduatesBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn:hover {
  background-color: #1B3B2B;
}

@media (min-width: 576px) {
  #startClinicBackdrop .modal-dialog {
    max-width: 800px;
  }
}
#startClinicBackdrop .modal-dialog .modal-content {
  border-radius: 15px;
}
#startClinicBackdrop .modal-dialog .modal-content .modal-header {
  border: none;
}
#startClinicBackdrop .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #3C705E;
  font-weight: 700;
}
#startClinicBackdrop .modal-dialog .modal-content .modal-header .btn-close {
  opacity: 1;
  background-image: unset;
  color: #3C705E;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#startClinicBackdrop .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
#startClinicBackdrop .modal-dialog .modal-body {
  background-color: transparent;
  padding: 16px;
  border-radius: 15px;
}
#startClinicBackdrop .modal-dialog .modal-body form .form-group {
  margin-bottom: 18px;
}
#startClinicBackdrop .modal-dialog .modal-body form .form-group input, #startClinicBackdrop .modal-dialog .modal-body form .form-group select {
  border: 1px solid #1B3B2B;
  background-color: #f5f9f6;
  color: #4A5565;
  padding: 10px 15px;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #startClinicBackdrop .modal-dialog .modal-body form .form-group input, #startClinicBackdrop .modal-dialog .modal-body form .form-group select {
    font-size: 14px;
  }
}
#startClinicBackdrop .modal-dialog .modal-body form .form-group input:focus, #startClinicBackdrop .modal-dialog .modal-body form .form-group select:focus {
  color: #000000;
  border-color: #3C705E;
}
#startClinicBackdrop .modal-dialog .modal-body form .submit-wrapper {
  margin-top: 25px;
}
#startClinicBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  border: none;
  background-color: #3C705E;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
#startClinicBackdrop .modal-dialog .modal-body form .submit-wrapper .submit_btn:hover {
  background-color: #1B3B2B;
}

.modal-backdrop.show {
  opacity: 0.88;
}

@keyframes draw {
  0% {
    height: 0;
  }
}
@keyframes grow {
  from {
    opacity: 0;
    transform: scale(0);
    width: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes drawtwo {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes toltip {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes labal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.other-hero-section-wrapper {
  margin-bottom: 0;
}
.other-hero-section-wrapper .bg-wrapper .hero-section-inner {
  text-align: center;
  padding: 0;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .other-hero-section-wrapper .bg-wrapper .hero-section-inner {
    min-height: 350px;
    padding-bottom: 20px;
  }
}
.other-hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
  margin-bottom: 0;
}
.other-hero-section-wrapper .bg-wrapper .hero-section-inner h2 span {
  background: linear-gradient(90deg, #39A065 0%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-top-section {
  padding: 70px 0;
  background: #F5F9F6;
}
.about-top-section .about-top-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 1199px) {
  .about-top-section .about-top-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-top-section .about-top-inner .left-image-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 40px;
}
.about-top-section .about-top-inner .right-content-wrapper h2 {
  color: #1B3B2B;
  font-size: 48px;
  font-weight: 800;
  line-height: 60px;
  margin-bottom: 10px;
}
.about-top-section .about-top-inner .right-content-wrapper h2 span {
  font-weight: 500;
  font-size: 38px;
  color: #1B3B2B;
}
@media (max-width: 991px) {
  .about-top-section .about-top-inner .right-content-wrapper h2 span {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .about-top-section .about-top-inner .right-content-wrapper h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .about-top-section .about-top-inner .right-content-wrapper h2 {
    font-size: 24px;
    line-height: 130%;
  }
}
.about-top-section .about-top-inner .right-content-wrapper p {
  margin: 0;
  color: #4A5565;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1399px) {
  .about-top-section .about-top-inner .right-content-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.about-top-section .about-top-inner .right-content-wrapper .link-wrapper {
  margin-top: 30px;
}
.about-top-section .about-top-inner .right-content-wrapper .link-wrapper a {
  border-radius: 100px;
  background: #1B3B2B;
  box-shadow: 0 10px 30px 0 rgba(27, 59, 43, 0.2);
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 800;
  color: #ffffff;
}
@media (max-width: 991px) {
  .about-top-section .about-top-inner .right-content-wrapper .link-wrapper a {
    padding: 12px 25px;
    font-size: 13px;
    gap: 5px;
  }
}
@media (max-width: 575px) {
  .about-top-section .about-top-inner .right-content-wrapper .link-wrapper a {
    width: 100%;
  }
}
.about-top-section .about-top-inner .right-content-wrapper .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-top-section .about-top-inner .right-content-wrapper .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.about-top-section .about-top-inner .right-content-wrapper .link-wrapper a:hover {
  background-color: #3C705E;
}

.about-center-section {
  background: #F5F9F6;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.about-center-section .about-center-inner {
  text-align: center;
}
.about-center-section .about-center-inner h2 {
  color: #1B3B2B;
  text-align: center;
  font-size: 55px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -1.8px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .about-center-section .about-center-inner h2 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .about-center-section .about-center-inner h2 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}
.about-center-section .about-center-inner h2 span {
  color: #3C705E;
}
.about-center-section .about-center-inner .content-para {
  max-width: 82%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .about-center-section .about-center-inner .content-para {
    max-width: 100%;
  }
}
.about-center-section .about-center-inner .content-para p {
  color: #4A5565;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.75px;
}
@media (max-width: 1399px) {
  .about-center-section .about-center-inner .content-para p {
    font-size: 16px;
  }
}
.about-center-section .about-center-inner .content-para p span {
  color: #3C705E;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .about-center-section .about-center-inner .content-para p span {
    font-size: 16px;
  }
}
.about-center-section .about-center-inner .content-para p:last-child {
  margin-bottom: 0;
}
.about-center-section .about-center-inner h5 {
  text-align: center;
  font-family: Inter;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  background: linear-gradient(90deg, #3B9263 0%, #29CD66 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .about-center-section .about-center-inner h5 {
    font-size: 18px;
  }
}
.about-center-section .about-center-inner .link-wrapper {
  margin-top: auto;
}
.about-center-section .about-center-inner .link-wrapper a {
  border-radius: 100px;
  border: 0.571px solid rgba(255, 255, 255, 0.2);
  background: #3C705E;
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .about-center-section .about-center-inner .link-wrapper a {
    padding: 12px 25px;
    gap: 5px;
  }
}
.about-center-section .about-center-inner .link-wrapper a h6 {
  margin: 0;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .about-center-section .about-center-inner .link-wrapper a h6 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .about-center-section .about-center-inner .link-wrapper a h6 {
    font-size: 14px;
  }
}
.about-center-section .about-center-inner .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-center-section .about-center-inner .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.about-center-section .about-center-inner .link-wrapper a:hover {
  background-color: #1B3B2B;
}
.about-center-section .about-center-inner .link-wrapper a:hover h6 {
  color: #ffffff;
}

.placement-center-section {
  background-color: transparent;
  padding-bottom: 0;
}

.celebrity-testimonial-section {
  margin-bottom: 60px;
}
.celebrity-testimonial-section .title-wrapper {
  text-align: center;
}
.celebrity-testimonial-section .title-wrapper h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 52.8px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1B3B2B;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .celebrity-testimonial-section .title-wrapper h2 {
    font-size-adjust: 38px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .celebrity-testimonial-section .title-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 130%;
  }
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-item .item {
  padding: 25px;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-item .item img {
  width: 100%;
  border-radius: 12px;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .center {
  position: relative;
  z-index: 1;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .center .item img {
  box-shadow: 2px 0px 12px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 0px 12px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 0px 12px 5px rgba(0, 0, 0, 0.1);
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-dots {
  margin-top: 0 !important;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-dots .owl-dot span {
  margin: 2px;
  background: #3C705E;
  width: 8px;
  height: 8px;
  opacity: 0.24;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-dots .active span {
  opacity: 1;
}

.featured-section {
  margin-bottom: 70px;
}
.featured-section .title-wrapper {
  text-align: center;
}
.featured-section .title-wrapper h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 52.8px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1B3B2B;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .featured-section .title-wrapper h2 {
    font-size-adjust: 38px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .featured-section .title-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 130%;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59px;
}
.featured-section .featured-slider-wrapper .featured-slider .item img {
  width: unset;
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
  max-width: 350px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
    max-width: 230px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
    max-width: 135px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
  max-width: 233px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
    max-width: 180px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
  max-width: 220px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
    max-width: 170px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
    max-width: 110px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
  max-width: 180px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
    max-width: 90px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
  max-width: 182px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
    max-width: 95px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
  max-width: 103px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
    max-width: 60px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
    max-width: 50px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
  max-width: 195px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
    max-width: 130px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
  max-width: 247px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
    max-width: 190px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
    max-width: 115px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
  max-width: 194px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
    max-width: 130px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
  max-width: 117px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
    max-width: 70px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
    max-width: 60px;
  }
}

.placement-hero-section {
  margin-bottom: 0;
}
.placement-hero-section .bg-wrapper .hero-section-inner {
  min-height: 600px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .placement-hero-section .bg-wrapper .hero-section-inner {
    min-height: 350px;
  }
}
.placement-hero-section .bg-wrapper .hero-section-inner h2 {
  color: #FFF;
  font-size: 62px;
  font-weight: 600;
  line-height: 75.6px;
  letter-spacing: -1.8px;
}
.placement-hero-section .bg-wrapper .hero-section-inner h2 strong {
  font-weight: 800;
}
@media (max-width: 1399px) {
  .placement-hero-section .bg-wrapper .hero-section-inner h2 {
    font-size: 52px;
    line-height: 65px;
  }
}
@media (max-width: 991px) {
  .placement-hero-section .bg-wrapper .hero-section-inner h2 {
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }
}
.placement-hero-section .bg-wrapper .hero-section-inner h2 span {
  font-size: 72px;
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -1.8px;
  background: linear-gradient(90deg, #39A065 0%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) {
  .placement-hero-section .bg-wrapper .hero-section-inner h2 span {
    font-size: 62px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  .placement-hero-section .bg-wrapper .hero-section-inner h2 span {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}
.placement-hero-section .bg-wrapper .hero-section-inner p {
  max-width: 480px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .placement-hero-section .bg-wrapper .hero-section-inner p {
    max-width: 100%;
  }
}

.foundation-section {
  background: #F5F9F6;
  padding: 70px 0;
  margin-bottom: 70px;
}
.foundation-section .foundation-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 65px;
}
@media (max-width: 1199px) {
  .foundation-section .foundation-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.foundation-section .foundation-inner .left-section {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.foundation-section .foundation-inner .left-section h2 {
  color: #1B3B2B;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .foundation-section .foundation-inner .left-section h2 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .foundation-section .foundation-inner .left-section h2 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}
.foundation-section .foundation-inner .left-section .tags-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .foundation-section .foundation-inner .left-section .tags-wrapper {
    gap: 4px;
    flex-wrap: wrap;
  }
}
.foundation-section .foundation-inner .left-section .tags-wrapper .tags-box {
  border-radius: 10px;
  border: 0.571px solid rgba(60, 112, 94, 0.15);
  background: #FDFBF7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 9px 16px;
}
@media (max-width: 991px) {
  .foundation-section .foundation-inner .left-section .tags-wrapper .tags-box {
    padding: 5px 7px;
    border-radius: 5px;
  }
}
.foundation-section .foundation-inner .left-section .tags-wrapper .tags-box h5 {
  margin: 0;
  color: #3C705E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1399px) {
  .foundation-section .foundation-inner .left-section .tags-wrapper .tags-box h5 {
    font-size: 10px;
  }
}
.foundation-section .foundation-inner .left-section .scroll-text-wrapper {
  max-height: 220px;
  overflow: auto;
  direction: rtl;
}
.foundation-section .foundation-inner .left-section .scroll-text-wrapper .content-para {
  padding: 15px;
  padding-top: 0;
}
@media (max-width: 991px) {
  .foundation-section .foundation-inner .left-section .scroll-text-wrapper .content-para {
    padding-right: 0;
  }
}
.foundation-section .foundation-inner .left-section .scroll-text-wrapper .content-para p {
  color: #4A5565;
  font-size: 18px;
  font-weight: 500;
  line-height: 27.3px;
  text-align: left;
}
@media (max-width: 1399px) {
  .foundation-section .foundation-inner .left-section .scroll-text-wrapper .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.foundation-section .foundation-inner .left-section .scroll-text-wrapper .content-para p:last-child {
  margin-bottom: 0;
}
.foundation-section .foundation-inner .left-section ::-webkit-scrollbar {
  width: 6px;
}
.foundation-section .foundation-inner .left-section ::-webkit-scrollbar-track {
  background: rgba(60, 112, 94, 0.3);
}
.foundation-section .foundation-inner .left-section ::-webkit-scrollbar-thumb {
  border-radius: 19174000px;
  background: #3C705E;
}
.foundation-section .foundation-inner .left-section ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.foundation-section .foundation-inner .right-image-section .image-wrapper img {
  width: 100%;
  border-radius: 40px;
}

.audience-snapshopt-section {
  margin-bottom: 70px;
}
.audience-snapshopt-section .inner-wrapper {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 64px;
}
@media (max-width: 1199px) {
  .audience-snapshopt-section .inner-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper {
  border-radius: 40px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #FFF;
  box-shadow: 0 20px 50px 0 rgba(27, 59, 43, 0.04);
  padding: 40px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper {
    padding: 40px 15px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper {
    gap: 10px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper .icon-wrapper img {
  width: 60px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper .icon-wrapper img {
    width: 40px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper h3 {
  margin: 0;
  color: #1B3B2B;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper .icon-title-wrapper h3 {
    font-size: 20px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul {
  margin: 0;
  padding: 0;
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li {
    gap: 10px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li:last-child {
  margin-bottom: 0;
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li span {
  width: 30px;
  height: 30px;
  border-radius: 19174000px;
  border: 0.571px solid rgba(60, 112, 94, 0.2);
  background: #FDFBF7;
  padding: 3px;
  color: #3C705E;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li p {
  margin: 0;
  color: #364153;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.75px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .inner-content-box-wrapper ul li p {
    font-size: 16px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul {
  border-left: 1.714px solid #E3EFE8;
  margin-left: 15px;
  padding-top: 5px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul {
    margin-left: 5px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li {
  padding-left: 35px;
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li {
    padding-left: 15px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li h6 {
  margin-bottom: 0;
  color: #1B3B2B;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li h6 {
    font-size: 16px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li p {
  font-weight: 400;
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li::before {
  position: absolute;
  left: -10px;
  top: 5px;
  content: "";
  border-radius: 19174000px;
  border: 4px solid #E3EFE8;
  background: #FFF;
  box-shadow: 0 0 0 4px #FFF;
  width: 20px;
  height: 20px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper ul li::before {
    width: 15px;
    height: 15px;
    left: -8px;
    top: 7px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper .bottom-text-wrapper {
  margin-top: 45px;
  background: rgba(60, 112, 94, 0.02);
  padding: 30px 15px;
  border-radius: 18px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper .bottom-text-wrapper {
    padding: 25px 12px;
  }
}
.audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper .bottom-text-wrapper p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: #3C705E;
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper .bottom-text-wrapper p {
    font-size: 13px;
  }
  .audience-snapshopt-section .inner-wrapper .left-section .curriculum-content-box-wrapper .bottom-text-wrapper p br {
    display: none;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section {
  border-radius: 32px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #FFF;
  box-shadow: 0 20px 50px 0 rgba(27, 59, 43, 0.06);
  padding: 40px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section {
    padding: 40px 15px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 0.571px solid #F3F4F6;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper {
  border-radius: 16px;
  border: 0.571px solid rgba(60, 112, 94, 0.05);
  background: #FDFBF7;
  padding: 20px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper {
    padding: 20px 12px;
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper .icon-wrapper img {
  width: 46px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper .icon-wrapper img {
    width: 40px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper .right-content p {
  color: #6A7282;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper .right-content h5 {
  margin: 0;
  color: #1E2939;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section .inner-wrappers .box-wrapper .right-content h5 {
    font-size: 15px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper {
  margin-top: 30px;
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a {
  border-radius: 16px;
  background: #1B3B2B;
  box-shadow: 0 10px 30px 0 rgba(27, 59, 43, 0.2);
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 800;
  color: #ffffff;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a {
    padding: 12px 25px;
    font-size: 13px;
    gap: 5px;
  }
}
@media (max-width: 575px) {
  .audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a {
    width: 100%;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.audience-snapshopt-section .inner-wrapper .right-section .top-section .link-wrapper a:hover {
  background-color: #3C705E;
}
.audience-snapshopt-section .inner-wrapper .right-section .warning-section {
  padding: 25px;
  margin: 24px 0;
  border-radius: 24px;
  border: 0.571px solid #FFD6A8;
  background: #FFF8F0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .warning-section {
    padding: 20px 12px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .warning-section .icon-wrapper img {
  width: 24px;
}
.audience-snapshopt-section .inner-wrapper .right-section .warning-section p {
  margin: 0;
  color: #9F2D00;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.25px;
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section {
  padding: 40px;
  border-radius: 32px;
  border: 0.571px solid rgba(60, 112, 94, 0.15);
  background: #FDFBF7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .bottom-section {
    padding: 40px 15px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper {
  display: flex;
  flex-direction: column;
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper:first-child {
  border-bottom: 1px solid rgba(60, 112, 94, 0.1);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper .icon-wrapper img {
    width: 40px;
  }
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper h5 {
  margin-bottom: 5px;
  color: #1B3B2B;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.audience-snapshopt-section .inner-wrapper .right-section .bottom-section .iner-wrapper .box-wrapper p {
  margin: 0;
  color: #4A5565;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.25px;
}

.key-benefits-section {
  margin-bottom: 70px;
}
.key-benefits-section .key-benefits-inner {
  border-radius: 40px;
  background: #F9F8F4;
  box-shadow: 0 20px 50px 0 rgba(27, 59, 43, 0.04);
  padding: 50px 15px;
}
@media (max-width: 1199px) {
  .key-benefits-section .key-benefits-inner {
    padding: 40px 15px;
  }
}
.key-benefits-section .key-benefits-inner .icon-title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 19px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .key-benefits-section .key-benefits-inner .icon-title-wrapper {
    gap: 10px;
  }
}
.key-benefits-section .key-benefits-inner .icon-title-wrapper .icon-wrapper img {
  width: 60px;
}
@media (max-width: 991px) {
  .key-benefits-section .key-benefits-inner .icon-title-wrapper .icon-wrapper img {
    width: 40px;
  }
}
.key-benefits-section .key-benefits-inner .icon-title-wrapper h3 {
  margin: 0;
  color: #1B3B2B;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}
@media (max-width: 991px) {
  .key-benefits-section .key-benefits-inner .icon-title-wrapper h3 {
    font-size: 20px;
  }
}
.key-benefits-section .key-benefits-inner .inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  background: #FFF;
  gap: 12px;
  padding: 25px;
  width: 27%;
}
@media (max-width: 1199px) {
  .key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box {
    width: 31%;
  }
}
@media (max-width: 991px) {
  .key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box {
    width: 45%;
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box {
    width: 100%;
  }
}
.key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box .icon-wrapper span {
  font-size: 24px;
  color: #3C705E;
}
.key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box p {
  margin: 0;
  color: #3C705E;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 137.5% */
}
@media (max-width: 991px) {
  .key-benefits-section .key-benefits-inner .inner-wrapper .benefits-box p {
    font-size: 14px;
  }
}

.counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
  font-size: 60px;
  line-height: 66px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
    font-size: 50px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 {
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }
}
.counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 span {
  font-size: 70px;
  font-weight: 800;
  line-height: 66px;
  letter-spacing: -1.8px;
  background: linear-gradient(90deg, #39A065 0%, #25D366 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) {
  .counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 span {
    font-size: 60px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .counselling-hero-section-wrapper .bg-wrapper .hero-section-inner h2 span {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
  }
}

.counselling-clinic-section {
  margin-bottom: 0;
}
.counselling-clinic-section .link-wrapper h5 {
  font-size: 14px !important;
}

.center-paragraph-section {
  padding: 50px 0;
}
.center-paragraph-section .center-paragraph-inner {
  text-align: center;
  max-width: 1116px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .center-paragraph-section .center-paragraph-inner {
    max-width: 100%;
  }
}
.center-paragraph-section .center-paragraph-inner p {
  margin: 0;
  color: #4A5565;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
}
@media (max-width: 1399px) {
  .center-paragraph-section .center-paragraph-inner p {
    font-size: 16px;
    line-height: 26px;
  }
}

.fees-cost-section {
  padding: 70px 0;
  background: #F5F9F6;
}
.fees-cost-section .fees-cost-inner {
  border-radius: 40px;
  border: 0.571px solid rgba(60, 112, 94, 0.1);
  background: #FDFBF7;
  box-shadow: 0 20px 50px 0 rgba(27, 59, 43, 0.06);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1199px) {
  .fees-cost-section .fees-cost-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .fees-cost-section .fees-cost-inner {
    padding: 40px 15px;
  }
}
.fees-cost-section .fees-cost-inner .left-image-section .image-wrapper img {
  width: 100%;
  border-radius: 33px;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .content-para p {
  color: #364153;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 29.25px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper h4 {
  color: #39A065;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.25px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper h4 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper {
    gap: 4px;
    flex-wrap: wrap;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper .tags-box {
  border-radius: 10px;
  border: 0.571px solid rgba(60, 112, 94, 0.15);
  background: #FDFBF7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 9px 16px;
}
@media (max-width: 991px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper .tags-box {
    padding: 5px 7px;
    border-radius: 5px;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper .tags-box h5 {
  margin: 0;
  color: #3C705E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1399px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .tags-wrapper .tags-box h5 {
    font-size: 9px;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper {
  margin-top: auto;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a {
  border-radius: 100px;
  background: #1B3B2B;
  box-shadow: 0 10px 30px 0 rgba(27, 59, 43, 0.2);
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 800;
  color: #ffffff;
}
@media (max-width: 991px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a {
    padding: 12px 25px;
    font-size: 13px;
    gap: 5px;
  }
}
@media (max-width: 575px) {
  .fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a {
    width: 100%;
  }
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a .icon-wrapper {
  border-radius: 19174000px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a .icon-wrapper span {
  color: #ffffff;
  font-size: 18px;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .link-wrapper a:hover {
  background-color: #3C705E;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .bottom-content {
  margin-top: 35px;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .bottom-content h6 {
  color: #1B3B2B;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.5px;
  margin-bottom: 5px;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .bottom-content p {
  color: #6A7282;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 5px;
}
.fees-cost-section .fees-cost-inner .right-content-wrapper .inner-wrapper .bottom-content .links-wrapper a {
  color: #1B3B2B;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.contact-hero-section .bg-wrapper .hero-section-inner p {
  max-width: 510px;
}

.contact-section-wrapper {
  background-color: #f6f9f6;
  padding: 70px 0;
}
.contact-section-wrapper .contact-section-inner {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 50px;
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner {
    padding: 50px 12px;
    border-radius: 15px;
  }
}
.contact-section-wrapper .contact-section-inner form .section h3 {
  font-size: 30px;
  font-weight: 400;
  color: #1B3B2B;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .contact-section-wrapper .contact-section-inner form .section h3 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner form .section h3 {
    font-size: 18px;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group {
  margin-bottom: 30px;
}
.contact-section-wrapper .contact-section-inner form .section .form-group label {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
}
.contact-section-wrapper .contact-section-inner form .section .form-group label span {
  color: #C50000;
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner form .section .form-group label {
    font-size: 16px;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group input,
.contact-section-wrapper .contact-section-inner form .section .form-group select {
  border: 1px solid #1B3B2B;
  background-color: #f5f9f6;
  color: #4A5565;
  padding: 10px 15px;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .contact-section-wrapper .contact-section-inner form .section .form-group input,
  .contact-section-wrapper .contact-section-inner form .section .form-group select {
    font-size: 14px;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group input:focus,
.contact-section-wrapper .contact-section-inner form .section .form-group select:focus {
  color: #000000;
  border-color: #3C705E;
}
.contact-section-wrapper .contact-section-inner form .section .form-group .form-check {
  margin: 0;
  display: grid;
  grid-template-columns: 20px 1fr;
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner form .section .form-group .form-check {
    grid-template-columns: 10px 1fr;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group .form-check input {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: auto;
  padding: 0;
  border: 1px solid #000000;
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner form .section .form-group .form-check input {
    width: 18px;
    height: 18px;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group .form-check label {
  margin-top: 3px;
  font-size: 20px;
  color: #000000;
  font-weight: 200;
  user-select: none;
  margin-bottom: 0;
  margin-left: 0;
}
@media (max-width: 1199px) {
  .contact-section-wrapper .contact-section-inner form .section .form-group .form-check label {
    font-size: 14px;
    margin-top: 0;
  }
}
.contact-section-wrapper .contact-section-inner form .section .form-group .form-check-input:checked {
  background-color: #3C705E;
  border-color: #3C705E;
}
.contact-section-wrapper .contact-section-inner form .section .captcha-wrapper .g-recaptcha div {
  margin-left: auto;
  margin-right: auto;
}
.contact-section-wrapper .contact-section-inner form .section .submit-wrapper {
  margin-top: 25px;
  text-align: center;
}
.contact-section-wrapper .contact-section-inner form .section .submit-wrapper .submit_btn {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  border: none;
  background-color: #1B3B2B;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.contact-section-wrapper .contact-section-inner form .section .submit-wrapper .submit_btn:hover {
  background-color: #3C705E;
}

/*# sourceMappingURL=style.css.map */
