@font-face {
  font-family: "Montserrat-extrabold";
  src: url(../fonts/Montserrat/Montserrat-ExtraBold.ttf);
}
@font-face {
  font-family: "Montserrat-semibold";
  src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: "Montserrat-medium";
  src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
}
@font-face {
  font-family: "Montserrat-bold";
  src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
}
@font-face {
  font-family: "soul-signature";
  src: url(../fonts/soul_signature/Soul-Signature.ttf);
}
body {
  box-shadow: rgba(18, 28, 45, 0.15) 0 1rem 3.75rem;
  margin: 0 auto;
  max-width: 160rem;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
}

.custom-container {
  margin: 0 auto;
  width: 90% !important;
}

.hero-section {
  width: 100%;
  background: #FFF;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  background: url(../images/banner/banner.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.logo-main {
  width: 22%;
}

.logo-main .logo {
  width: 85%;
}

.logo-main .logo img {
  width: 100%;
}

.header {
  padding: 30px 0px;
}

.dd-down {
  width: 15%;
  text-align: center;
}

.nav-links {
  width: 50%;
}

.nav-links ul li a {
  color: #000000;
  font-family: "Montserrat-semibold";
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  text-decoration: none !important;
}

.select {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 0px;
  border-radius: 9px;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
}

.select::before {
  content: "";
  position: absolute;
  top: 0.22rem;
  left: 2%;
  height: 87%;
  width: 96%;
  border-radius: 6px;
  z-index: 0;
  background: #FFF;
}

.select .selectBtn {
  padding: 15px 10px;
  box-sizing: border-box;
  border-radius: 9px;
  width: 100%;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 0;
  font-family: "Montserrat-semibold";
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}

.select .selectBtn.toggle:after {
  transform: translateY(-50%) rotate(-135deg);
}

.select .selectDropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  background: var(--bg1);
  border-top: 1px solid #eee;
  z-index: 1;
  background: #fff;
  transform: scale(1, 0);
  transform-origin: top center;
  visibility: hidden;
  transition: 0.2s ease;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.select .selectDropdown .option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Montserrat-semibold";
}

.select .selectDropdown .option:hover {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  color: #FFF;
}

.select .selectDropdown.toggle {
  visibility: visible;
  transform: scale(1, 1);
}

.mobile__menu .open__menu {
  display: none;
}

@media (max-width: 992px) {
  .dd-down {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .mobile__menu .open__menu {
    display: block;
  }
  .mobile__menu i {
    font-size: 1.5rem;
  }
  .logo-main {
    width: 200px;
  }
  .logo-main .logo {
    width: 100%;
  }
  .right-student-image {
    display: none;
  }
  .hero-section__title, .hero-section__title h2 {
    width: 100% !important;
    text-align: center;
  }
  .hero-section__column {
    justify-content: center;
  }
}
.hero-section__column {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
.hero-section__column .right-student-image__main {
  position: absolute;
  bottom: 0;
  right: 0;
}

.right-student-image {
  width: 100%;
}

.right-student-image img {
  width: 100%;
}

.hero-section__title,
.hero-section__title h2 {
  width: 90%;
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.hero-section__title span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.hero-section__title span::after {
  background: none;
  content: attr(data-text);
  left: 0;
  position: absolute;
  -webkit-text-stroke: 1px solid white;
  -webkit-text-stroke: 6px white;
  z-index: -1;
}

.hero-section__content {
  width: 80%;
  line-height: 1.5rem;
}

.hero-section__content p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.hero-section__button a {
  padding: 15px 70px;
  border-radius: 30px;
  font-size: 18px;
  position: relative;
  display: inline-block;
  background: #FFF;
  color: #FFF;
  overflow: hidden;
  margin-top: 20px;
  font-family: "Montserrat-semibold";
}
.hero-section__button a::before {
  content: attr(data-text_button);
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-to__academy {
  padding: 6rem 0;
}

.svg__container {
  position: relative;
}

.circle__gradient {
  width: 350px;
  height: 330px;
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  border-radius: 100%;
}

.circle__gradient .admin__image {
  width: 100%;
}

.circle__gradient .admin__image img {
  width: 100%;
}

.w-t-a__content h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.w-t-a__content {
  margin-top: 100px;
}

.w-t-a__content h2 span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.w-t-a__content p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mabsit__courses {
  width: 100%;
  padding: 6rem 0;
  background: url(../images/banner/banner-section.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mabsit__course-content span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsit__course-content h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.mabsit__course-content p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mb-card-main {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  width: 100%;
  position: relative;
  z-index: 0;
  padding: 10px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 4rem;
  cursor: pointer;
}

.mb-card-main__layer {
  background-color: #FFF;
  padding: 60px 30px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
}

.mbc-card-icon__cont {
  display: flex;
  align-items: center;
}

.mbc-card-icon__cont img {
  width: 60px;
}

.mbc-card-icon__cont h3 {
  font-family: "Montserrat-bold";
  color: #000000;
  font-size: 1.3rem;
  margin-left: 15px;
  line-height: 1.8rem;
}

.mbc-card-content p {
  font-family: "Montserrat-medium";
  margin-top: 30px !important;
  font-size: 1rem;
}

.learn-more__btn a {
  font-family: "Montserrat-semibold";
  font-size: 1rem;
  color: #000000;
  margin-top: 30px !important;
  display: inline-block;
  margin-right: 10px;
  text-decoration: none !important;
}

.teacher__section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #FFF;
  width: 100%;
}

.mabsit-teacher__content h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.mabsit-teacher__content span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsit-teacher__content p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.teach__card-main {
  width: 100%;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  padding: 0px 0;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 1.5s;
}
.teach__card-main.teach__card-main::after {
  content: "";
  position: absolute;
  top: -2000px;
  left: 0px;
  background: #ffffff;
  height: 500%;
  width: 20%;
  transform: rotate(222deg);
  transition: top 1.5s, filter 1.5s;
  filter: blur(57px);
  z-index: -1;
}

.teach__card-main:hover::after {
  top: 0px;
}

.teach__card-main:hover {
  transform: scale(1.05);
}

.teacher-card__img {
  width: 80%;
}

.teacher-card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.85);
  margin-bottom: 120px;
}

.teacher3 {
  width: 90% !important;
}

.teacher-card__bottom {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  padding: 5px;
  width: 100%;
  position: absolute;
  bottom: 6px;
  transform: translate(0%);
  border-radius: 18px;
  overflow: hidden;
}

.teach-card__bottom-layer {
  background: #FFF;
  width: 100%;
  height: 100%;
  padding: 23px 10px;
  border-radius: 17px;
}

.teacher-card__content h2 {
  font-family: "Montserrat-bold";
  font-size: 1.8rem;
}

.teacher-card__content span {
  font-family: "soul-signature";
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 4rem;
}

.teacher-card__content p {
  font-family: "Montserrat-bold";
  font-size: 1rem;
}

.teacher_swiper {
  margin-top: 4rem !important;
  width: 100%;
  overflow: hidden !important;
  height: 100% !important;
  padding: 25px 15px !important;
}

.teachers_card__pagination {
  position: relative;
  margin-top: 3rem;
}

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

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.why__choose {
  background-image: url(../images/banner/why-choose-banner.jpg);
  width: 100%;
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why__choose-heading h2 {
  color: #FFF;
  font-family: "Montserrat-bold";
  font-size: 3rem;
}

.why__choose-heading p {
  font-family: "Montserrat-medium";
  color: #FFF;
  margin-top: 25px;
}

.numbers-section {
  display: flex;
  justify-content: right;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

.numbers-section h2 {
  font-family: "Montserrat-semibold";
  font-size: 4rem;
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.numbers-section p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.number-section__border {
  border-right: 3px solid #FFF;
}

.number__section-main {
  margin-top: 4rem;
}

.mabsit__notes {
  background-image: url("../images/banner/mabsit-courses.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
}

.mabsite__notes-heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.mabsite__notes-heading span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsite__notes-heading p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mabsite__notes-card {
  width: 100%;
  background-image: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  position: relative;
  padding: 10px;
  border-radius: 36px;
  cursor: pointer;
}

.mabsite__notes-layer {
  height: 100%;
  width: 100%;
  background: #FFF;
  padding: 20px 20px;
  border-radius: 30px;
}

.mabsite__notes-card .mabsite__notes-image img {
  width: 100%;
  border-radius: 25px;
}

.mabsite__notes-content {
  padding: 30px 0;
}

.mabsite__notes-content h2 {
  font-family: "Montserrat-extrabold";
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  font-size: 2rem;
}

.mabsite__notes-content span {
  font-family: "soul-signature";
  font-size: 4rem;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsite__notes-content p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mabsite__notes_btn a {
  font-family: "Montserrat-semibold";
  color: #000000;
  margin-right: 10px;
}

.mabsite-notes__card {
  margin-top: 4rem;
}

.notes_card__pagination {
  position: relative;
  margin-top: 3rem !important;
}

.notes_card__pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  padding: 8px;
  background: transparent;
}

.notes_card__pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 3px solid transparent;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.notes_card__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
}

.our__step-teaching {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
}

.our__step-teaching-heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.our__step-teaching-heading span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.our__step-teaching-heading p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mabsit__notes__svg_container {
  width: 90%;
  position: relative;
  margin-top: 4rem;
}

.mabsit__notes__svg_container svg {
  width: 100%;
}

.svg_box-inside {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 85%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px 50px;
  border-radius: 20%;
  box-shadow: 16px 20px 55px rgba(55, 131, 201, 0.77);
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.svg_box-content h2 {
  font-family: "Montserrat-extrabold";
  margin-top: 2rem;
  font-size: 1.8rem;
}

.svg_box-content p {
  margin-top: 2rem;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  line-height: 1.7rem;
}

.svg_box-icon {
  width: 70px;
}

.svg_box-icon img {
  width: 100%;
}

.testimonial__section {
  background-image: url("../images/banner/mabsit-courses.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
}
.testimonial__section .testimonial__heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}
.testimonial__section .testimonial__heading span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.testimonial__section .testimonial__card-main {
  margin-top: 4rem;
}
.testimonial__section .testimonial__card {
  width: 70%;
  padding: 80px 10px;
  z-index: 0;
  position: relative;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial__section .testimonial__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: #FFF;
  transform: rotate(349deg);
  transform: perspective(1000px) rotate(358deg) scale(0.92) rotateY(356deg);
  border-radius: 40px;
}
.testimonial__section .testimonial__card::before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 40px;
  left: 0;
  height: 100%;
  width: 100%;
  transform: perspective(1000px) rotate(8deg) rotateX(353deg) rotateY(349deg);
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  z-index: -1;
}
.testimonial__section .top-icon {
  position: absolute;
  top: 0;
  left: -2rem;
}
.testimonial__section .bottom-icon {
  position: absolute;
  bottom: 0;
  right: -2rem;
}
.testimonial__section .profile_testimonial {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  display: inline-block;
  border-radius: 380px;
  padding: 18px;
  text-align: center;
  position: relative;
  z-index: 0;
  display: inline-block;
}
.testimonial__section .profile_testimonial::after {
  content: "";
  position: absolute;
  top: 3.5%;
  left: 3.5%;
  height: 93%;
  width: 93%;
  background: #FFF;
  z-index: -1;
  border-radius: 380px;
}
.testimonial__section .inside__content-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.testimonial__section .testimonial_content {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}
.testimonial__section .review__name-testimonial h2 {
  font-family: "soul-signature";
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 4rem;
  margin-top: 10px;
}
.testimonial__section .testimonial__card-main .swiper {
  padding: 35px 0;
}
.testimonial__section .testimonial__swiper .swiper-slide {
  margin-right: 0 !important;
}

.get__in-toch {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
  background-color: #FFF;
}

.mabsite__heading-skilled h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.mabsite__heading-skilled span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsite__heading-skilled p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.mabsite__heading-skilled .get__touch {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  padding: 10px 30px;
  color: #FFF;
  font-family: "Montserrat-semibold";
  border-radius: 8px;
  font-size: 1.25rem;
  margin-top: 25px;
  display: inline-block;
  text-decoration: none !important;
}

.mabsite__skilled-infographics {
  width: 85%;
}

.mabsite__skilled-infographics img {
  width: 100%;
}

.mabsite__vision {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
  padding: 0 !important;
}

.mabsite__vision-heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.mabsite__vision-heading span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.mabsite__vision-heading p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
}

.vision__img {
  margin-top: 4rem;
  width: 100%;
}

.vision__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.art__of-making {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
  background-image: url("../images/banner/art-making.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 6rem;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.art__of-making-heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3rem;
  line-height: 4.5rem;
  color: #FFF;
}

.art__of-making-heading p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 25px;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 30px !important;
}

.art__of-making-heading span {
  border-bottom: 39px solid white;
  border-width: 3px;
  width: 117px;
  display: inline-block;
  margin-top: 30px !important;
}

.top__comma {
  position: absolute;
  top: 0;
  left: 76px;
}

.bottom__comma {
  position: absolute;
  bottom: 0;
  right: 76px;
}

.top__comma img {
  width: 130px;
  max-width: 130px;
}

.bottom__comma img {
  width: 160px;
  max-width: 160px;
}

.faqs {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6rem 0;
}
.faqs .faqs__heading h2 {
  font-family: "Montserrat-extrabold";
  font-size: 3.2rem;
  line-height: 4.5rem;
}
.faqs .accordion-item {
  background: transparent;
  margin-bottom: 40px;
  width: 100%;
}
.faqs .faqs-main {
  margin-top: 4rem;
}
.faqs .accordion-header {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  color: #2E2E2E;
  padding: 5px;
  font-size: 18px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  border-radius: 25px;
  box-shadow: 7px 11px 48px -4px rgba(55, 131, 201, 0.64);
}
.faqs .accordion__layer {
  background: #FFF;
  width: 100%;
  border-radius: 20px;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat-semibold";
  align-items: center;
}
.faqs .accordion-content {
  overflow: hidden;
  padding: 0 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-radius: 10px;
}
.faqs .accordion-content-layer {
  background: #FFF;
}
.faqs .accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
  font-family: "Montserrat-medium";
  color: #FFF;
  font-size: 1rem;
}
.faqs .icon {
  transition: transform 0.3s ease;
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  color: #FFF;
  border-radius: 36px;
  text-align: -webkit-center;
  font-size: 1.5rem;
  padding: 3px 14px;
}
.faqs .active .icon {
  transform: rotate(45deg);
}

.footer {
  background: #EFF4FB;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 4rem 0;
}
.footer .footer_logo {
  width: 300px;
}
.footer .footer_logo img {
  width: 100%;
}
.footer .footer__links-head h2 {
  font-family: "Montserrat-extrabold";
  font-family: "Montserrat-extrabold";
  font-size: 1.5rem;
  line-height: 4.5rem;
}
.footer .quick__links ul li a {
  font-family: "Montserrat-semibold";
  color: #000000;
  letter-spacing: 0.2px;
  font-size: 1rem;
  text-decoration: none;
}
.footer .footer__info h2 {
  font-family: "Montserrat-extrabold";
  font-size: 1.5rem;
  line-height: 4.5rem;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 3rem;
}
.footer .footer__info span {
  background: linear-gradient(184deg, rgb(42, 178, 200) 0%, rgb(58, 123, 201) 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.footer .footer__info p {
  color: #000000;
  font-family: "Montserrat-medium";
  font-size: 1rem;
  margin-top: 0px;
}
.footer .footer__contact-links {
  margin-top: 27px;
}
.footer .footer__contact-links ul li a {
  font-family: "Montserrat-semibold";
  color: #000000;
  margin-top: 22px;
  display: inline-block;
  text-decoration: none !important;
}
.footer .footer__contact-links ul li a img {
  width: 27px;
  margin-right: 20px;
}
.footer .footer__social-link {
  margin-top: 50px;
}
.footer .footer__social-link ul li a img {
  width: 45px;
}
.footer .footer__social-link ul li {
  margin-right: 16px;
}
.footer .footer__links-head .quick__links {
  margin-top: 10px;
}
.footer .footer__links-head .quick__links ul li {
  margin-top: 12px;
}
.footer .quick__links {
  margin-top: 30px;
}/*# sourceMappingURL=style.css.map */
