.btn {
  padding: 11px 24px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-primary {
  --bs-btn-bg: #21408a;
  --bs-btn-border-color: #21408a;
  --bs-btn-hover-bg: #17376d;
  --bs-btn-hover-border-color: #17376d;
  --bs-btn-active-bg: #17376d;
  --bs-btn-active-border-color: #17376d;
  --bs-btn-disabled-bg: #21408a;
  --bs-btn-disabled-border-color: #21408a;
}

.btn-outline-primary {
  --bs-btn-color: #21408a;
  --bs-btn-border-color: #21408a;
  --bs-btn-hover-bg: #21408a;
  --bs-btn-hover-border-color: #21408a;
  --bs-btn-active-bg: #21408a;
  --bs-btn-active-border-color: #21408a;
  --bs-btn-disabled-border-color: #21408a;
}

.btn-secondary {
  --bs-btn-bg: #ff9f00;
  --bs-btn-border-color: #ff9f00;
  --bs-btn-hover-bg: #dd8a05;
  --bs-btn-hover-border-color: #dd8a05;
  --bs-btn-active-bg: #dd8a05;
  --bs-btn-active-border-color: #dd8a05;
  --bs-btn-disabled-bg: #ff9f00;
  --bs-btn-disabled-border-color: #ff9f00;
}

.btn-white {
  color: #21408a;
  background-color: white;
  border-radius: 50px;
  font-weight: 400;
}
.btn-white:hover {
  background-color: rgb(236, 236, 236);
  color: #21408a;
}

@media (max-width: 767px) {
  body,
  html {
    overflow-x: hidden;
  }
}

.header {
  position: fixed;
  top: 0;
  background: transparent;
  z-index: 2;
  width: 100%;
  transition: all 0.3s ease;
}
.header::before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 650px;
  z-index: -1;
  background-image: url("./../images/bg_top.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 991px) {
  .header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
}

.navbar-nav {
  gap: 36px;
}
@media (max-width: 991px) {
  .navbar-nav {
    gap: 10px;
  }
}
.navbar-nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #091532;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.navbar-nav .nav-item .nav-link.active {
  color: #21408a;
  position: relative;
}
.navbar-nav .nav-item .nav-link.active:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #21408a;
}
.navbar-nav .nav-item .dropdown-menu {
  border: 0;
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  border-radius: 20px 80px 20px 20px;
  padding: 24px 79px 24px 24px;
}
.navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  font-size: 16px;
  color: #091532;
  padding: 0;
  margin-bottom: 24px;
}
.navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  background-color: transparent;
  color: #ff9f00;
}
.navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: #21408a;
  background-color: transparent;
}
.navbar-nav .nav-item .dropdown-menu li:last-child .dropdown-item {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
  .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}

.scrolled {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  background: #fff;
  z-index: 9;
  transition: all 0.3s ease;
}
.scrolled .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  transition: all 0.3s ease;
}
.scrolled .btn {
  padding: 8px 24px;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 24px;
    border-radius: 20px;
    top: 10px;
    position: relative;
  }
  .navbar-nav .nav-item .dropdown-toggle::after {
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    position: absolute;
    top: 14px;
    right: 0;
  }
  .navbar-nav .nav-item .dropdown-toggle:focus-visible {
    box-shadow: none;
  }
  .navbar-nav .nav-item .dropdown-menu {
    border-radius: 0;
    box-shadow: inherit;
    padding: 0;
  }
  .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    padding: 0;
    margin-bottom: 8px;
    padding-left: 15px;
  }
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.text-blue {
  color: #21408a !important;
}

.text-lightblue {
  color: #5c90ce !important;
}

.text-secondary {
  color: #ff9f00 !important;
}

.text-primary {
  color: #21408a !important;
}

.text-dark {
  color: #333333 !important;
}

.text-darkblue {
  color: #091532 !important;
}

.bg-blue {
  background-color: #21408a !important;
}

.bg-primary {
  background-color: #5c90ce !important;
}

.bg-secondary {
  background-color: #ff9f00 !important;
}

.fs-base {
  font-size: 1rem;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-26 {
  font-size: 26px;
}

.fs-40 {
  font-size: 40px;
}
@media (max-width: 991px) {
  .fs-40 {
    font-size: 30px;
  }
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .py-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 991px) {
  .py-150 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media (max-width: 991px) {
  .pb-150 {
    padding-bottom: 60px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media (max-width: 991px) {
  .pt-150 {
    padding-top: 60px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 24px;
  }
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .py-60 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .pb-50 {
    padding-bottom: 24px;
  }
}

.mb-36 {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .mb-36 {
    margin-bottom: 24px;
  }
}

.mb-48 {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .mb-48 {
    margin-bottom: 24px;
  }
}

.mt-36 {
  margin-top: 36px;
}
@media (max-width: 991px) {
  .mt-36 {
    margin-top: 24px;
  }
}

.w-150 {
  min-width: 150px;
}

.cursor-pointer {
  cursor: pointer;
}

.form-check-input[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 30px;
  padding-left: 51px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .form-check {
    padding-left: 41px;
    margin-bottom: 20px;
  }
}
.form-check:last-child {
  margin-bottom: 0;
}
.form-check .form-check-input {
  margin-left: -51px;
  margin-top: 0px;
  width: 30px;
  height: 30px;
  background-color: #d1d1d1;
  border: 0;
}
.form-check .form-check-input:checked {
  background-color: #5c90ce;
  border-color: #5c90ce;
}
@media (max-width: 767px) {
  .form-check .form-check-input {
    margin-left: -41px;
    width: 26px;
    height: 26px;
  }
}
.form-check .form-check-label {
  color: #091532;
  font-weight: 600;
  font-size: 20px;
}

.hero {
  position: relative;
  padding-bottom: 70px;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .hero {
    padding-top: 110px;
  }
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/bg_bottom.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  pointer-events: none;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: -98px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/bg_top.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  pointer-events: none;
}
.hero .image-fade-slider {
  position: relative;
  height: 627px;
  width: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hero .image-fade-slider {
    height: 517px;
    margin-top: 24px;
  }
}
@media (max-width: 430px) {
  .hero .image-fade-slider {
    height: 397px;
    margin-top: 0;
  }
}
.hero .image-fade-slider .fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.hero .image-fade-slider .fade-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
  pointer-events: none;
}
.hero .image-fade-slider .fade-slide.active {
  opacity: 1;
  z-index: 1;
}

.score {
  position: relative;
  background-image: url("../images/meth_main.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: -110px;
  padding: 175px 0 80px 0;
}
.score:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: calc(76% - 2px);
  right: 100%;
  z-index: -1;
  background-color: #000;
  border-top: 8.5px solid #ff9f00;
}
.score:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 1340px;
  z-index: -1;
  background-color: #000;
  border-top: 8px solid #ff9f00;
}
@media (min-width: 1921px) {
  .score:after {
    right: -68%;
    left: auto;
  }
}
@media (min-width: 4180px) {
  .score:after {
    right: -58%;
    left: auto;
  }
}
@media (max-width: 1450px) {
  .score {
    background-size: cover;
  }
}
@media (max-width: 1024px) {
  .score {
    background-image: none;
    padding-top: 60px;
    background-color: black;
    border-top: 6px solid #ff9f00;
    margin-top: 0;
  }
  .score::before, .score::after {
    display: none;
  }
}

.methodology {
  background-image: url("./../images/methodology-bg.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 991px) {
  .methodology {
    background-position: right bottom;
  }
}

@media (max-width: 1200px) {
  .fundamental h2 {
    font-size: 26px !important;
  }
}
.fundamental .fundamental-card {
  border-radius: 20px !important;
}
.fundamental .fundamental-card .icon {
  min-width: 62px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 156, 19, 0.2);
}
@media (max-width: 767px) {
  .fundamental .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.support {
  background: #f8f8f8;
}
.support .h-160 {
  height: 160px;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .support .h-160 {
    height: 190px;
  }
}
@media (max-width: 991px) {
  .support .h-160 {
    height: auto;
  }
}
.support button.action-btn {
  padding: 6px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.support button.action-btn:hover img {
  filter: invert(100%) brightness(0) contrast(1);
}

.explore-box {
  border-radius: 20px;
  background-color: #21408a;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.explore-box .border-bottom {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.explore-box .left-top {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.explore-box .right-bottom {
  position: absolute;
  right: -32px;
  bottom: -30px;
  z-index: -1;
}
.explore-box .orange-lines path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 4s ease-in-out infinite alternate;
}
.explore-box .gap-100 {
  gap: 100px;
}
@media (max-width: 1199px) {
  .explore-box .gap-100 {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .explore-box .gap-100 {
    gap: 48px;
  }
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.video-wrapper {
  background-image: url("./../images/video_bg.svg");
  background-position: top -28px right;
  background-repeat: no-repeat;
  background-size: auto 60%;
  padding: 0 0 150px 0;
  position: relative;
}
.video-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: #f8f8f8;
  z-index: -1;
}
.video-wrapper .video-frame {
  width: 960px;
  height: 690px;
  position: relative;
  padding: 50px;
  background-image: url("./../images/system.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.video-wrapper .video-frame .video {
  width: 786px;
  height: 526px;
  position: absolute;
  left: 87px;
  top: 23px;
}
.video-wrapper .video-frame .girl {
  position: absolute;
  right: -190px;
  bottom: -72px;
}
@media (max-width: 1450px) {
  .video-wrapper .video-frame {
    width: 680px;
    height: 490px;
    margin: 0 auto;
  }
  .video-wrapper .video-frame .video {
    width: 557px;
    height: 372px;
    left: 62px;
    top: 17px;
  }
  .video-wrapper .video-frame .girl {
    width: 65%;
    right: -150px;
  }
}
@media (max-width: 1200px) {
  .video-wrapper .video-frame {
    width: 80%;
    height: auto;
    margin: 0 auto;
    padding-top: 50%;
  }
  .video-wrapper .video-frame .video {
    width: 83%;
    height: 78%;
    left: 50px;
    top: 13px;
  }
  .video-wrapper .video-frame .girl {
    width: 55%;
    right: -80px;
  }
}
@media (max-width: 767px) {
  .video-wrapper .video-frame .video {
    width: 84.5%;
    height: 76%;
    left: 39px;
    top: 10px;
  }
  .video-wrapper .video-frame .girl {
    width: 45%;
    right: -45px;
    bottom: -30px;
  }
}
.testimonial-section .mySwiper {
  padding-bottom: 80px;
  position: relative;
}
.testimonial-section .mySwiper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("./../images/testimonial-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonial-section .mySwiper .swiper-wrapper {
  height: 450px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 450px) {
  .testimonial-section .mySwiper .swiper-wrapper {
    height: 320px;
  }
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide {
  background-image: url("./../images/testimonial-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  margin: auto;
  filter: grayscale(1);
  padding: 40px 0;
  transition: all 0.45s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  transform: scale(0.5) rotate(-15deg);
  background-size: 50%;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(0.5) rotate(15deg);
  background-size: 50%;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
  background-size: 80%;
  filter: grayscale(0);
  transform: scale(1);
  padding: 90px 0;
  min-width: 550px;
  margin-top: 0;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active .slide-content .desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active .slide-content .year {
  display: block;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content {
  border-radius: 20px 80px;
  padding: 35px;
  background-color: #fff;
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  text-align: center;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .desc {
  font-weight: 400;
  font-size: 18px;
  color: #5b5b5b;
  display: none;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .university {
  font-weight: 600;
  font-size: 18px;
  color: #5c90ce;
}
.testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .year {
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: #5b5b5b;
  display: none;
}
@media (max-width: 1450px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    min-width: 480px;
  }
}
@media (max-width: 1450px) and (max-width: 450px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    min-width: 420px;
  }
}
@media (max-width: 1450px) and (max-width: 420px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    min-width: 390px;
  }
}
@media (max-width: 1450px) and (max-width: 390px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    min-width: 350px;
  }
}
@media (max-width: 1450px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content {
    padding: 24px;
  }
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .desc,
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .university,
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .year {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    max-width: 300px;
    margin: 0 25%;
    height: auto;
  }
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content {
    padding: 24px;
  }
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .desc,
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .university,
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide .slide-content .year {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    max-width: 300px;
    margin: 0 110px;
    height: auto;
  }
}
.testimonial-section .mySwiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: rgba(91, 91, 91, 0.1019607843);
  position: relative;
}
.testimonial-section .mySwiper .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffb200;
  left: 50%;
  top: 50%;
  transform: translate(-74%, -40%);
  border-radius: 50%;
}
.testimonial-section .mySwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffb200;
}
@media (max-width: 767px) {
  .testimonial-section .mySwiper .swiper-wrapper {
    flex-direction: row;
    background-position: bottom center;
  }
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    transform: scale(0.9) !important;
    rotate: 0deg !important;
  }
  .testimonial-section .mySwiper .swiper-wrapper .swiper-slide.active {
    width: 100%;
    padding: 60px 0;
    margin: 0;
  }
}

/* Inner pages */
.hero-inner {
  position: relative;
  background-image: url("./../images/inner-page/common.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  min-height: 800px;
  margin-top: -110px;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/bg_bottom.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 1500px) {
  .hero-inner {
    min-height: 600px;
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    background-size: contain;
    padding-top: 160px;
  }
}

@media (max-width: 1500px) {
  .global-wrapper .hero-inner {
    min-height: 600px;
  }
}

.graphics {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  z-index: -1;
  height: 100%;
  width: 100%;
  display: block;
  top: -10%;
  right: 10%;
}

.hover-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  line-height: 1.2;
}
.hover-text span {
  display: block;
  transition: transform 0.4s ease;
}
.hover-text .text-default {
  color: #ffffff;
  transform: translateY(0);
}
.hover-text .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: #007bff;
  transform: translateY(0);
}
.hover-text:hover .text-default {
  transform: translateY(-100%);
}
.hover-text:hover .text-hover {
  transform: translateY(-100%);
}

.meet-team {
  position: relative;
}
.meet-team .team-card {
  padding: 36px 24px 52px 24px;
  box-shadow: 0px 0px 20px 0px rgba(92, 144, 206, 0.1490196078);
  border-radius: 20px;
  border: 0;
  position: relative;
}
.meet-team .team-card .member-title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #5d91ce;
  background-image: url("./../images/inner-page/title-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  border-radius: 20px 0 0 20px;
  padding: 10px 0;
  margin-bottom: 24px;
}
.meet-team .team-card .member-pic .mem-img-box {
  border: 2px solid #5c90ce;
  padding: 5px;
  box-shadow: 0px 0px 20px 0px rgba(92, 144, 206, 0.1490196078);
  border-radius: 20px;
  overflow: hidden;
  display: block;
  padding-bottom: 0;
  background-color: #fff;
  position: relative;
}
.meet-team .team-card .member-pic img {
  min-height: 430px;
  width: 100%;
  background-color: #fff;
  border-radius: 14px 14px 0 0px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px rgba(92, 144, 206, 0.1490196078);
  background: radial-gradient(64.39% 64.39% at 50% 50%, rgba(168, 203, 241, 0.61) 0%, #FFFFFF 100%);
  background-color: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  width: 100%;
}
@media (max-width: 1450px) {
  .meet-team .team-card .member-pic img {
    max-height: 320px;
    min-height: 293px;
  }
}
@media (max-width: 767px) {
  .meet-team .team-card .member-pic img {
    max-height: 100%;
    min-height: 400px;
  }
}
.meet-team .team-card .forward-button {
  width: 74px;
  height: 74px;
  border: 10px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff4fa;
  position: absolute;
  padding: 15px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -92px);
  border-radius: 50%;
  z-index: 2;
  transition: all ease-in-out 0.3s;
}
.meet-team .team-card .forward-button:hover {
  background-color: #5c90ce;
}
.meet-team .team-card .forward-button:hover img {
  filter: invert(100%) brightness(10);
}
.meet-team .team-card::after {
  content: "";
  width: 78px;
  height: 78px;
  border-radius: 37px 37px 0 0;
  background: linear-gradient(to bottom, #5c90ce 50%, transparent 50%);
  position: absolute;
  z-index: 0;
  left: 50%;
  top: calc(100% - 94px);
  transform: translate(-50%, 0px);
  z-index: 1;
}
.meet-team .team-card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url("./../images/inner-page/card-bg.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  z-index: 0;
  transition: all ease-in-out 0.3s;
}
.meet-team .team-card.team-section {
  padding-bottom: 24px;
}
.meet-team .team-card.team-section::after {
  display: none;
}
.meet-team .team-card p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
  color: #091532;
  text-align: center;
  margin-bottom: 0;
  min-height: 42px;
}

.vision-mission {
  position: relative;
  background-image: url("./../images/inner-page/innerblue_bg.svg");
  background-position: top -28px left;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.commitment-wrapper {
  position: relative;
  /* Custom direction for each item */
}
.commitment-wrapper .commitment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.commitment-wrapper .commitment:hover .item {
  animation: burstOut 0.8s ease-in-out;
}
.commitment-wrapper .commitment .item {
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  padding: 76px;
  background-color: #fff;
}
.commitment-wrapper .commitment .item:nth-child(1), .commitment-wrapper .commitment .item:nth-child(4) {
  border-radius: 80px 20px;
}
.commitment-wrapper .commitment .item:nth-child(2), .commitment-wrapper .commitment .item:nth-child(3) {
  border-radius: 20px 80px;
}
@media (max-width: 767px) {
  .commitment-wrapper .commitment .item {
    padding: 35px;
  }
  .commitment-wrapper .commitment .item h6 {
    font-size: 14px !important;
  }
}
.commitment-wrapper .focused {
  padding: 50px 33px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 211px;
  height: 211px;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 767px) {
  .commitment-wrapper .focused {
    padding: 35px;
    width: 150px;
    height: 150px;
  }
  .commitment-wrapper .focused h6 {
    font-size: 14px !important;
  }
}
.commitment-wrapper .focused::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: none;
  border-radius: 50%;
}
.commitment-wrapper:hover .focused::after {
  animation: flashPulse 0.8s ease-out;
}
@keyframes flashPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes burstOut {
  0% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: scale(1.05);
  }
  50% {
    transform: translate(var(--x, 0), var(--y, 0)) scale(1.1);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.commitment-wrapper .commitment .item:nth-child(1) {
  --x: -40px;
  --y: -40px;
}
.commitment-wrapper .commitment .item:nth-child(2) {
  --x: 40px;
  --y: -40px;
}
.commitment-wrapper .commitment .item:nth-child(3) {
  --x: -40px;
  --y: 40px;
}
.commitment-wrapper .commitment .item:nth-child(4) {
  --x: 40px;
  --y: 40px;
}

.vm-wrapper {
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .vm-wrapper {
    flex-direction: column;
  }
  .vm-wrapper .content-area {
    width: 70% !important;
  }
}
.vm-wrapper .vm-card {
  min-height: 333px;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  background-size: auto;
  background-repeat: no-repeat;
  flex: 1;
}
.vm-wrapper .vm-card.blue {
  background-color: #dde7ff;
  background-image: url("./../images/inner-page/vision-target-bg.svg");
  background-position: right center;
  flex: 0.6;
  transition: all ease-in-out 0.3s;
}
.vm-wrapper .vm-card.blue .content-area {
  width: 50%;
}
.vm-wrapper .vm-card.orange {
  background-color: #ffe6bf;
  background-image: url("./../images/inner-page/vision-orange.svg");
  background-position: right bottom;
  flex: 0.4;
  transition: all ease-in-out 0.3s;
}
.vm-wrapper .vm-card.orange .content-area {
  width: 70%;
}
.vm-wrapper:hover .vm-card {
  flex: 0.4;
}
.vm-wrapper .vm-card:hover {
  flex: 0.6;
}

.mentor-wrapper {
  position: relative;
}
.mentor-wrapper .graphics {
  background-image: url("./../images/mentorship/union.svg");
}

.mentor {
  position: relative;
  background-image: url("./../images/inner-page/ellipse.svg"), url("./../images/inner-page/checks.svg");
  background-position: center, center 150px;
  background-repeat: no-repeat no-repeat;
  background-size: contain, auto;
  overflow: hidden;
  z-index: -1;
}
.mentor .tree-wrapper {
  position: relative;
}
.mentor .tree-wrapper .tree {
  padding: 36px;
  border-radius: 20px 80px;
  box-shadow: 0px 1px 16px 10px rgba(92, 144, 206, 0.2);
  background-color: #fff;
  position: relative;
  max-width: 530px;
  width: 100%;
  margin: 100px auto 0;
}
@media (max-width: 1200px) {
  .mentor .tree-wrapper .tree {
    max-width: 60%;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .mentor .tree-wrapper .tree {
    max-width: 65%;
    margin-top: 30px;
    padding: 24px;
  }
  .mentor .tree-wrapper .tree p {
    font-size: 14px;
  }
}
.mentor .tree-wrapper .tree::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 26px 85px;
  background-color: #dde7f6;
  z-index: -1;
}
.mentor .tree-wrapper::after, .mentor .tree-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 350px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mentor .tree-wrapper::after {
  background-image: url("./../images/inner-page/right-collage.svg");
  right: calc(50% - 780px);
}
.mentor .tree-wrapper::before {
  background-image: url("./../images/inner-page/left-collage.svg");
  left: calc(50% - 420px);
}
@media (max-width: 1200px) {
  .mentor .tree-wrapper::after {
    right: calc(50% - 628px);
    width: 250px;
  }
  .mentor .tree-wrapper::before {
    left: calc(50% - 372px);
    width: 250px;
  }
}
@media (max-width: 991px) {
  .mentor .tree-wrapper::after {
    right: calc(50% - 430px);
    width: 190px;
  }
  .mentor .tree-wrapper::before {
    left: calc(50% - 242px);
    width: 190px;
  }
}
@media (max-width: 496px) and (max-width: 991px) {
  .mentor .tree-wrapper::after {
    right: calc(50% - 350px);
  }
  .mentor .tree-wrapper::before {
    left: calc(50% - 152px);
  }
}

.matter-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.matter-list li {
  font-weight: 400;
  font-size: clamp(16px, 2vw + 0.5rem, 24px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.matter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  position: relative;
}
.matter-grid:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #5c90ce;
  width: 45%;
  height: 45%;
  z-index: -1;
}
.matter-grid .item {
  border: 15px solid #ffffff;
  border-radius: 50%;
  filter: grayscale(1);
  transition: all ease-in-out 0.3s;
}
.matter-grid .item:hover {
  filter: grayscale(0);
}

.elastic {
  position: relative;
  gap: 10px;
  align-items: start;
}
.elastic .box-wrapper {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  left: 0;
  top: 0;
  border: 1px solid #091532;
  margin: 5px;
}
.elastic .box-wrapper .box {
  position: relative;
  width: 100%;
  height: 100%;
}
.elastic .box-wrapper .box span {
  background-color: #5c90ce;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
}
.elastic .box-wrapper .box span.left-t {
  left: -5px;
  top: -5px;
}
.elastic .box-wrapper .box span.left-c {
  left: -5px;
  top: calc(50% - 5px);
}
.elastic .box-wrapper .box span.left-b {
  left: -5px;
  bottom: -5px;
}
.elastic .box-wrapper .box span.center-t {
  left: calc(50% - 5px);
  top: -5px;
}
.elastic .box-wrapper .box span.center-b {
  left: calc(50% - 5px);
  bottom: -5px;
}
.elastic .box-wrapper .box span.right-t {
  right: -5px;
  top: -5px;
}
.elastic .box-wrapper .box span.right-c {
  right: -5px;
  top: calc(50% - 5px);
}
.elastic .box-wrapper .box span.right-b {
  right: -5px;
  bottom: -5px;
}

.compare-wrapper {
  overflow: hidden;
}
.compare-wrapper .compare {
  position: relative;
}
.compare-wrapper .compare .forward-list {
  font-weight: 400;
  font-size: 16px;
  color: #091532;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare-wrapper .compare .forward-list li {
  position: relative;
  display: flex;
  align-items: start;
  gap: 5px;
}
.compare-wrapper .compare .left {
  background-image: url("./../images/mentorship/compare-blue.svg");
  padding: 180px 120px 90px 0;
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.compare-wrapper .compare .left:before {
  content: "";
  height: 84px;
  background: #5c90ce;
  width: 100vw;
  position: absolute;
  bottom: 0px;
  right: 99%;
  border-bottom: 10px solid #4978b0;
}
@media (max-width: 1399px) {
  .compare-wrapper .compare .left:before {
    height: 72px;
    border-width: 9px;
  }
}
@media (max-width: 1199px) {
  .compare-wrapper .compare .left:before {
    height: 60px;
    border-width: 8px;
  }
}
.compare-wrapper .compare .left .forward-list li {
  justify-content: end;
}
.compare-wrapper .compare .left .forward-list li::after {
  content: url("./../images/mentorship/forward-blue.svg");
}
.compare-wrapper .compare .right {
  background-image: url("./../images/mentorship/compare-orange.svg");
  padding: 160px 0 90px 120px;
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1400px) {
  .compare-wrapper .compare .right {
    padding: 160px 0 110px 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .compare-wrapper .compare .right {
    padding: 144px 0 90px 120px;
  }
}
.compare-wrapper .compare .right:after {
  content: "";
  height: 84px;
  background: #f69c13;
  width: 100vw;
  position: absolute;
  bottom: 0px;
  left: 99%;
  border-bottom: 10px solid #d2840f;
}
@media (max-width: 1399px) {
  .compare-wrapper .compare .right:after {
    height: 72px;
    border-width: 9px;
  }
}
@media (max-width: 1199px) {
  .compare-wrapper .compare .right:after {
    height: 60px;
    border-width: 8px;
  }
}
.compare-wrapper .compare .right .forward-list li {
  justify-content: start;
}
.compare-wrapper .compare .right .forward-list li:before {
  content: url("./../images/mentorship/forward-orange.svg");
}
.compare-wrapper .compare .focus {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #21408a;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  position: absolute;
  left: 50%;
  top: calc(50% + 15px);
  transform: translate(-50%, -50%);
}
@media (max-width: 1450px) {
  .compare-wrapper .compare .focus {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .compare-wrapper .compare .focus {
    top: calc(50% + 105px);
  }
}
.compare-wrapper .compare-mobile .list p {
  font-size: 12px;
  color: #091532;
}
.compare-wrapper .compare-mobile .list span {
  text-transform: uppercase;
  font-size: 12px;
  color: #21408a;
}
.compare-wrapper .compare-mobile .title {
  gap: 30px;
}
.compare-wrapper .compare-mobile .title .left,
.compare-wrapper .compare-mobile .title .right {
  position: relative;
  line-height: 1;
  min-height: 54px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.compare-wrapper .compare-mobile .title .left:after {
  content: "";
  background-image: url("./../images/mentorship/prg-start.svg");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
  right: -20px;
  position: absolute;
  top: 0;
  z-index: -1;
}
.compare-wrapper .compare-mobile .title .right::before {
  content: "";
  background-image: url("./../images/mentorship/prg-end.svg");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
  left: -18px;
  position: absolute;
  top: 0;
  z-index: -1;
}

.uno-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: -110px;
}
.uno-wrapper .hero-inner {
  margin-top: 0 !important;
}
.uno-wrapper .graphics {
  background-image: url("./../images/university/uno-graphic.svg");
}
.uno-card {
  border-radius: 60px;
  border: 0;
  position: relative;
  padding: 20px;
  transition: all 0.3s ease;
  transform: translateY(0);
  background-color: #ffffff;
  z-index: 0;
}
.uno-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.uno-card .card-body {
  background-color: #dde7ff;
  border-radius: 60px;
  box-shadow: 0px 4px 4px 0px rgba(123, 213, 237, 0.2509803922);
}
.uno-card .caption {
  border-radius: 0 0 60px 60px;
}
@media (max-width: 768px) {
  .uno-card .caption {
    padding: 24px;
  }
}
.uno-card::before {
  content: "";
  border-radius: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: #fff;
}
.uno-card::after {
  content: "";
  border-radius: 60px;
  left: -5%;
  top: 1%;
  width: 110%;
  height: 110%;
  position: absolute;
  z-index: -2;
  background-image: url("./../images/university/blue-blur.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.uno-card.orange .card-body {
  background-color: #ffe6bf;
  box-shadow: 0px 4px 4px 0px rgba(246, 156, 19, 0.2509803922);
}
.uno-card.orange::after {
  background-image: url("./../images/university/orange-blur.svg");
}
.uno-card .img-wrapper {
  min-height: 320px;
  max-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.uno-card .img-wrapper img {
  max-width: 200px;
  height: 200px;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .uno-card .img-wrapper img {
    max-height: 250px;
  }
}

.global-wrapper {
  position: relative;
  overflow: hidden;
}
.global-wrapper .hero-inner {
  margin-top: 0 !important;
  min-height: 690px;
}
.package {
  padding-top: 58px;
}
.package.blue .package-header {
  background-image: url("./../images/global-package/prg-blue.svg");
}
.package.orange .form-check .form-check-input:checked {
  background-color: #f69c13;
  border-color: #f69c13;
}
.package .package-header {
  background-image: url("./../images/global-package/prg-orange.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: auto;
  width: 100%;
  border-radius: 30px;
  z-index: 3;
  position: relative;
}
.package .package-header .header-box {
  position: relative;
  top: -55px;
}
@media (max-width: 767px) {
  .package .package-header .header-box {
    top: -36px;
  }
}
.package .package-header .header-box .img-wrapper {
  width: 188px;
  height: 188px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  margin: 0 auto;
}
.package .package-body {
  margin-top: -100px;
  background-color: #fff;
}
.package .package-body .radio-stack {
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  padding: 130px 40px 64px;
  border-radius: 10px 10px 80px 80px;
  min-height: 450px;
  position: relative;
}
@media (max-width: 1450px) {
  .package .package-body .radio-stack {
    min-height: 500px;
  }
}
@media (max-width: 1199px) {
  .package .package-body .radio-stack {
    min-height: 590px;
  }
}
@media (max-width: 991px) {
  .package .package-body .radio-stack {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .package .package-body .radio-stack {
    padding: 130px 20px 64px;
  }
}
.package .package-body .btn-download {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translate(-50%);
  border-radius: 50px;
}

.uk-wrapper {
  position: relative;
  overflow: hidden;
}
.uk-wrapper .hero-inner {
  margin-top: 0 !important;
  min-height: 690px;
}
.ukt .ukt-header {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 24px;
}
.ukt .ukt-header .head {
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  flex: 1;
  padding: 30px 36px;
  text-align: center;
  border-right: 1px solid #fff;
}
.ukt .ukt-header .head:last-child {
  border: 0;
}
.ukt .ukt-header .head.title {
  text-align: left;
}
.ukt .ukt-body {
  background-color: #5c90ce;
  border-radius: 24px;
  margin-top: 24px;
  padding: 30px 36px;
}
.ukt .ukt-body .ukt-row {
  display: flex;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.ukt .ukt-body .ukt-row .ukt-col {
  flex: 1;
  padding: 24px 30px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ukt .ukt-body .ukt-row .ukt-col:after {
  content: "";
  position: absolute;
  width: calc(100% - 72px);
  left: 36px;
  bottom: 0;
  border-bottom: 1px solid rgba(92, 144, 206, 0.4);
}
.ukt .ukt-body .ukt-row .ukt-col:first-child {
  padding-left: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  justify-content: start;
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(2) {
  text-align: center;
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(2):after {
  left: 36px;
  width: 100%;
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(2)::before {
  content: "";
  position: absolute;
  right: -36px;
  top: 0;
  height: 100%;
  border-right: 1px solid rgba(92, 144, 206, 0.4);
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(3) {
  text-align: center;
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(3):before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 120px;
  background-color: rgb(255, 255, 255);
  z-index: -1;
}
.ukt .ukt-body .ukt-row .ukt-col:nth-child(3):after {
  left: 0;
  width: calc(100% - 36px);
}
.ukt .ukt-body .ukt-row:first-child .ukt-col:nth-child(2) {
  border-top-left-radius: 30px;
}
.ukt .ukt-body .ukt-row:first-child .ukt-col:nth-child(3) {
  border-top-right-radius: 30px;
}
.ukt .ukt-body .ukt-row:last-child .ukt-col:after {
  border: 0;
}
.ukt .ukt-body .ukt-row:last-child .ukt-col:nth-child(1) {
  border: 0;
}
.ukt .ukt-body .ukt-row:last-child .ukt-col:nth-child(2) {
  border-bottom-left-radius: 30px;
}
.ukt .ukt-body .ukt-row:last-child .ukt-col:nth-child(3) {
  border-bottom-right-radius: 30px;
}
.ukt .ukt-body .ele {
  padding: 30px 0;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.ukt .ukt-body .ele:first-child {
  padding-top: 0;
}
.ukt .ukt-body .ele:last-child {
  padding-bottom: 0;
  border: 0;
}

.partnership-wrapper {
  position: relative;
  overflow: hidden;
}
.partnership-wrapper .hero-inner {
  margin-top: 0 !important;
  min-height: 690px;
}
.partner-card {
  opacity: 1;
  border-radius: 20px 80px;
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  padding: 36px 36px 80px;
  display: flex;
  align-items: center;
  gap: 72px;
  position: relative;
  overflow: hidden;
}
.partner-card .img-wrapper {
  max-width: 300px;
  min-width: 300px;
  position: relative;
}
@media (max-width: 991px) {
  .partner-card .img-wrapper {
    max-width: 80px;
    min-width: 80px;
  }
}
.partner-card .img-wrapper:after {
  content: "";
  position: absolute;
  left: calc(100% + 36px);
  top: 0;
  border-right: 1px solid #d1d1d1;
  height: 100%;
}
.partner-card .img-wrapper img {
  max-width: 100%;
  width: auto;
}
.partner-card .partner-btn {
  border-radius: 20px 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-wrapper .hero-inner {
  margin-top: 0 !important;
  min-height: 690px;
}
.testimonials-wrapper .testimonial-item:nth-child(4n+1) {
  background-image: url(./../images/testimonial-blue-bg.png);
  /* 1, 5, 9, 13, ... */
}
.testimonials-wrapper .testimonial-item:nth-child(4n+2),
.testimonials-wrapper .testimonial-item:nth-child(4n+3) {
  background-image: url(./../images/testimonial-bg.png);
  /* 2, 3, 6, 7, 10, 11 ... */
}
.testimonials-wrapper .testimonial-item:nth-child(4n+4) {
  background-image: url(./../images/testimonial-blue-bg.png);
  /* 4, 8, 12, 16, ... */
}

.testimonials .testimonial-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  padding: 90px 0;
  transition: all 0.45s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .testimonials .testimonial-item {
    padding: 60px 0;
  }
}
.testimonials .testimonial-item .testimonial-content {
  transform: scale(0);
  opacity: 0;
  animation: scaleIn 0.8s ease-out forwards;
  border-radius: 20px 80px;
  padding: 35px;
  background-color: #fff;
  box-shadow: 0px 1px 16px 10px rgba(0, 0, 0, 0.0509803922);
  text-align: center;
  margin: auto 13px;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.testimonials .testimonial-item .testimonial-content .desc {
  font-weight: 400;
  font-size: 18px;
  color: #5b5b5b;
}
.testimonials .testimonial-item .testimonial-content .university {
  font-weight: 600;
  font-size: 18px;
  color: #5c90ce;
}
.testimonials .testimonial-item .testimonial-content .year {
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: #5b5b5b;
}
@media (max-width: 1450px) {
  .testimonials .testimonial-item .testimonial-content {
    padding: 24px;
  }
  .testimonials .testimonial-item .testimonial-content .desc,
  .testimonials .testimonial-item .testimonial-content .university,
  .testimonials .testimonial-item .testimonial-content .year {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .testimonials .testimonial-item .testimonial-content {
    padding: 24px;
  }
  .testimonials .testimonial-item .testimonial-content .desc,
  .testimonials .testimonial-item .testimonial-content .university,
  .testimonials .testimonial-item .testimonial-content .year {
    font-size: 13px;
  }
}
.testimonials .col-lg-6:nth-child(4n+1) .testimonial-item {
  background-image: url("./../images/testimonial-bg.png");
}
.testimonials .col-lg-6:nth-child(4n+2) .testimonial-item,
.testimonials .col-lg-6:nth-child(4n+3) .testimonial-item {
  background-image: url("./../images/testimonial-blue-bg.png");
}
.testimonials .col-lg-6:nth-child(4n+4) .testimonial-item {
  background-image: url("./../images/testimonial-bg.png");
}
@media (max-width: 991px) {
  .testimonials .col-lg-6:nth-child(odd) .testimonial-item {
    background-image: url("./../images/testimonial-bg.png");
  }
  .testimonials .col-lg-6:nth-child(even) .testimonial-item {
    background-image: url("./../images/testimonial-blue-bg.png");
  }
}

.footer {
  background-image: url("./../images/footer-bg.png");
  background-position: right bottom;
  background-repeat: no-repeat;
}
.footer .footer-heading {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .footer .footer-heading {
    margin-bottom: 24px;
  }
}
.footer .menu li a {
  font-weight: 400;
  font-size: 18px;
  color: #091532;
  text-decoration: none;
  margin-bottom: 12px;
  display: inline-block;
  margin-left: 0px;
  transition: all ease-in 0.3s;
}
.footer .menu li a:hover {
  color: #ff9f00;
  transition: all ease-out 0.3s;
  margin-left: 5px;
}
.footer .menu li:last-child a {
  margin-bottom: 0;
}
.footer .social {
  display: flex;
  gap: 12px;
}
.footer .social .sm-item {
  text-decoration: none;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in 0.3s;
}
.footer .social .sm-item img {
  transform-origin: center;
}
.footer .social .sm-item:hover {
  background-color: #ff9f00;
  transition: all ease-out 0.3s;
}
.footer .social .sm-item:hover img {
  filter: hue-rotate(180deg) saturate(0) brightness(10);
  animation: wobble 0.8s ease-in-out;
}
@keyframes wobble {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-15deg);
  }
  45% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.footer .term {
  list-style: none;
}
.footer .term li {
  position: relative;
  height: 18px;
  margin-right: 8px;
  padding-right: 8px;
}
.footer .term li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  color: #091532;
  line-height: 1;
}
.footer .term li a:hover {
  color: #ff9f00;
  transition: all ease-out 0.3s;
}
.footer .term li:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: #091532;
  right: 0;
  top: 2px;
}
.footer .term li:last-child::after {
  display: none;
}
.footer .search {
  position: relative;
}
.footer .search input {
  border: 1px solid #d1d1d1;
  background-color: white;
  border-radius: 50px;
  padding: 13px 13px 13px 24px;
  width: 100%;
}
.footer .search .search-button {
  height: 38px;
  max-width: 38px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 6px;
  top: 6px;
}

.gap-36 {
  gap: 36px;
}
@media (max-width: 600px) {
  .gap-36 {
    gap: 20px;
  }
}

.px-36,
.p-36 {
  padding: 36px;
}
@media (max-width: 600px) {
  .px-36,
  .p-36 {
    padding: 20px;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@keyframes rotate3D {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(360deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.team-modal {
  background-color: #f8f8f8;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: none;
  padding: 24px;
  overflow: auto;
}
.team-modal .right_img {
  max-width: 238px;
  height: 591px;
  display: flex;
  flex: none;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #D1D1D1;
  position: relative;
}
@media (min-width: 1200px) {
  .team-modal .right_img {
    max-width: 300px;
  }
}
.team-modal .right_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background-image: url("./../images/inner-page/moda-img-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform-style: preserve-3d;
  animation: rotate3D 8s linear infinite;
  inset: 0;
}
@media (max-width: 991px) {
  .team-modal .right_img {
    height: 100%;
  }
}
.team-modal .right_img .team-photo {
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.3s ease;
  opacity: 0.95;
  width: 100%;
}
.team-modal .right_img .team-photo:hover {
  filter: grayscale(0%);
}
@media (max-width: 991px) {
  .team-modal .right_img .team-photo {
    height: 246px;
  }
}
.team-modal .text-scroll-area {
  max-height: 460px;
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .team-modal .text-scroll-area {
    max-height: 100%;
    overflow-y: auto;
    padding-right: 0;
    max-height: 250px;
  }
}
.team-modal .left-panel {
  background-repeat: no-repeat;
  width: 238px;
}
@media (max-width: 991px) {
  .team-modal .left-panel {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .team-modal .left-panel img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 10px;
    border-radius: 20px;
    -o-object-position: center;
       object-position: center;
  }
}
.team-modal .middle-panel {
  border-radius: 30px;
  height: 591px;
}
@media (max-width: 991px) {
  .team-modal .middle-panel {
    height: auto;
  }
}
.team-modal .middle-panel .member-name {
  font-weight: 600;
  font-size: 40px;
  color: #5c90ce;
}
@media (max-width: 767px) {
  .team-modal .middle-panel .member-name {
    font-size: 20px;
  }
}
.team-modal .middle-panel .member-desc {
  font-size: 14px;
  font-weight: 400;
  color: #091532;
}
.team-modal .custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
  border: 1px solid #D1D1D1;
  color: #000;
  cursor: pointer;
  font-size: 10px;
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 991px) {
  .team-modal {
    padding: 18px;
    overflow: hidden;
  }
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #D1D1D1;
  outline: 1px solid #D1D1D1;
}

.packages-box-section .pricing-box {
  background: transparent;
  position: relative;
  min-height: 248px;
  margin-bottom: 24px;
  padding-top: 58px;
  border-radius: 30px;
}
.packages-box-section .pricing-box .pricing-top {
  padding: 16px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  margin: auto;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
}
.packages-box-section .pricing-box .pricing-top h4 {
  font-size: 26px;
}
.packages-box-section .pricing-box .pricing-top.bg-blue {
  background: #5C90CE !important;
}
.packages-box-section .pricing-box .pricing-top.bg-orange {
  background: #F69C13 !important;
}
.packages-box-section .pricing-box .pricing-content {
  background: #fff;
  padding: 16px 24px;
  border-radius: 20px 60px;
  margin-top: 0;
  position: relative;
}
.packages-box-section .pricing-box .pricing-content ul li {
  margin: 12px 0;
  font-size: 14px;
  color: #091532;
  display: flex;
  gap: 5px;
  font-weight: 400;
}
.packages-box-section .pricing-box .pricing-content ul li .arrow {
  color: #3f7ecb;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}
.packages-box-section .pricing-box .pricing-content ul li .arrow > img {
  width: 10px;
  min-width: 10px;
  height: auto;
  position: relative;
  top: -5px;
}
.packages-box-section .pricing-box .pricing-content::after {
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -50px;
  width: 128%;
  height: 156%;
  transform: translate(-50%, 0);
  border-radius: 30px;
  z-index: -1;
}
@media (max-width: 600px) {
  .packages-box-section .pricing-box .pricing-content::after {
    width: auto;
  }
}
.packages-box-section .pricing-box.orange-shadow .pricing-content::after {
  background-image: url("../images/orange-shadow.png");
}
.packages-box-section .pricing-box.blue-shadow .pricing-content::after {
  background-image: url("../images/blue-shadow.png");
}
@media (max-width: 1199px) {
  .packages-box-section .pricing-box .pricing-content::after {
    top: -30px;
  }
}

@media (min-width: 1200px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .dropdown-menu {
    margin-top: 0;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease-in-out;
  }
  /* So the main menu link remains clickable */
  .navbar .dropdown > a {
    pointer-events: auto;
  }
}
.mxw-222 {
  max-width: 222px;
}

.inner-banner {
  position: relative;
  overflow: hidden;
  background-image: url("../images/inner-banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
  padding-top: 100px;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: calc(50% + 140px);
  height: 7px;
  left: 0;
  top: auto;
  bottom: -1px;
  border-bottom: 7px solid #F69C13;
}
@media (min-width: 1400px) {
  .inner-banner::before {
    z-index: 1;
  }
}
.inner-banner::after {
  content: "";
  position: absolute;
  width: calc(50% - 460px);
  height: 103px;
  border-top: 7px solid #F69C13;
  right: 0;
  top: auto;
  bottom: -2px;
  background-color: #fff;
}
.inner-banner .container {
  height: 100%;
  position: relative;
}
.inner-banner .container::after {
  content: "";
  position: absolute;
  background-image: url(../images/curv-line.svg?v=44);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 363px;
  height: 103px;
  top: auto;
  left: auto;
  right: 180px;
  bottom: -2px;
}
.inner-banner .container .hero-text {
  padding: 48px 0;
  margin-top: -100px;
}
@media (max-width: 1400px) {
  .inner-banner {
    height: 620px;
  }
  .inner-banner::after {
    width: calc(50% - 320px);
  }
}
@media (max-width: 1200px) {
  .inner-banner {
    height: 580px;
  }
  .inner-banner::after {
    width: calc(50% - 290px);
  }
}
@media (max-width: 991px) {
  .inner-banner {
    height: auto;
  }
  .inner-banner .banner-img {
    text-align: center;
    z-index: -1;
  }
  .inner-banner .banner-img img {
    width: 70%;
  }
  .inner-banner .container::after {
    width: 240px;
    height: 70px;
    right: 40%;
  }
  .inner-banner .container .hero-text {
    padding: 72px 0 72px 0;
    margin-top: -50px;
  }
  .inner-banner::before {
    border-bottom: 5px solid #F69C13;
  }
  .inner-banner::after {
    width: 45%;
    height: 70px;
    border-top: 5px solid #F69C13;
  }
}

/* Gradient Background + Top/Bottom Blue Border */
.wellbeing-section {
  background: linear-gradient(20deg, #f7e8cf -31%, #f5f7ff 100%);
}
.wellbeing-section .image-wrapper {
  position: relative;
  padding: 49px 50px 49px 0 !important;
  z-index: 2;
}
@media (max-width: 767px) {
  .wellbeing-section .image-wrapper {
    padding: 0 0 0 0 !important;
  }
}
.wellbeing-section .image-wrapper > img {
  position: relative;
  z-index: 2;
}
.wellbeing-section .image-wrapper::before {
  background-image: url("../images/shadow-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 200px;
  position: absolute;
  left: 50%;
  top: -50px;
  width: 128%;
  height: 156%;
  transform: translate(-50%, 0);
  border-radius: 30px;
  z-index: -1;
}
.wellbeing-section .image-wrapper::after {
  content: "";
  position: absolute;
  background: #FEF0DC;
  width: 70%;
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 30px;
  z-index: -1;
}

.team-apart {
  background-image: url("./../images/methodology-bg.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right center;
}
.team-apart .sub-heading {
  font-size: 20px;
  color: #ff9f00;
  font-weight: 500;
}
.team-apart .sub-heading span {
  margin: 0 5px;
  color: rgba(91, 91, 91, 0.2);
}
.team-apart .feature-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .team-apart .feature-box-wrapper {
    gap: 16px;
  }
  .team-apart .feature-box-wrapper .feature-box {
    justify-content: flex-start;
  }
  .team-apart .feature-box-wrapper .feature-box p {
    font-size: 16px;
    text-align: left;
  }
}
.team-apart .feature-box {
  background: rgba(246, 156, 19, 0.1490196078);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 20px;
  color: #091532;
  font-weight: 500;
  justify-content: center;
  transition: 0.3s ease;
  cursor: default;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 400px;
}
@media (max-width: 991px) {
  .team-apart .feature-box {
    background-position: right bottom;
    min-width: unset;
  }
}
@media (max-width: 767px) {
  .team-apart .feature-box {
    min-width: 100%;
  }
}
.team-apart .feature-box:hover {
  background: #ffdfad;
  transform: translateY(-3px);
}

.mt-40 {
  margin-top: 40px;
}

.new-text-one {
  color: #5B5B5B;
  max-width: 760px;
}

.text-dark-new {
  color: #091532;
}

.grey-new-color {
  color: #5B5B5B;
}

.inquire-modal {
  border-radius: 18px;
  padding: 40px;
  position: relative;
}
.inquire-modal .wpcf7 form .wpcf7-response-output {
  margin: 0em 0.5em 1em;
}
.inquire-modal form .col-lg-6 p,
.inquire-modal form .col-12 p {
  margin-bottom: 0;
}
.inquire-modal form .col-lg-6 p br,
.inquire-modal form .col-12 p br {
  display: none;
}
@media (max-width: 767px) {
  .inquire-modal {
    padding: 20px;
  }
}
.inquire-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.inquire-modal .modal-desc {
  color: #5B5B5B;
}
.inquire-modal label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
  color: #091532;
}
.inquire-modal .form-control,
.inquire-modal .form-select {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  height: 52px;
  border-radius: 4px;
  font-size: 16px;
  padding: 12px 14px;
  outline: 0;
  box-shadow: none !important;
}
.inquire-modal .form-control::-moz-placeholder, .inquire-modal .form-select::-moz-placeholder {
  color: #7D7D7D;
}
.inquire-modal .form-control::placeholder,
.inquire-modal .form-select::placeholder {
  color: #7D7D7D;
}
.inquire-modal textarea.form-control {
  height: 104px;
}
.inquire-modal .modal-actions p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.inquire-modal .modal-actions p .left-bt {
  display: flex;
  width: 50%;
  flex-direction: column;
}
.inquire-modal .modal-actions p .left-bt .cancel-btn {
  border-radius: 36px;
}
.inquire-modal .modal-actions p .right-bt {
  display: flex;
  width: 50%;
  flex-direction: column;
}
.inquire-modal .modal-actions p .right-bt .btn-primary {
  border-radius: 36px;
}
.inquire-modal .modal-actions p br {
  display: none;
}
.inquire-modal .modal-actions button {
  width: 180px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 36px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .inquire-modal .modal-actions button {
    font-size: 14px;
  }
}
.inquire-modal .modal-actions .cancel-btn {
  background: transparent;
  border: 1px solid #21408A;
  color: #21408A;
  transition: 0.5s all;
}
.inquire-modal .modal-actions .cancel-btn:hover {
  background-color: #21408A;
  color: white;
}
.inquire-modal .modal-actions .send-btn:focus {
  box-shadow: none;
  background-color: #21408A;
}

@media (max-width: 767px) {
  .methodology.py-100 {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .fundamental.py-100 {
    padding-top: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .package .form-check {
    margin-bottom: 18px;
  }
  .package .form-check .form-check-label {
    font-size: 16px;
  }
  .package .package-body .radio-stack {
    min-height: 500px;
  }
}

@media (max-width: 430px) {
  .video-wrapper .video-frame {
    width: 81%;
  }
}
@media (max-width: 400px) {
  .video-wrapper .video-frame {
    width: 84%;
  }
}
@media (max-width: 480px) {
  .video-wrapper .video-frame .video {
    width: 87.5%;
    left: 34px;
  }
}
@media (max-width: 450px) {
  .video-wrapper .video-frame .video {
    width: 88.5%;
    height: 77%;
    left: 32px;
    top: 9px;
  }
}
@media (max-width: 430px) {
  .video-wrapper .video-frame .video {
    width: 88.5%;
    left: 31px;
  }
}
@media (max-width: 400px) {
  .video-wrapper .video-frame .video {
    width: 86.5%;
    left: 30px;
    top: 8px;
  }
}
@media (max-width: 380px) {
  .video-wrapper .video-frame .video {
    width: 87.5%;
    left: 28px;
  }
}

@media (max-width: 767px) {
  .mx-w-100 {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .cta-logo-mxs {
    max-width: 155px;
  }
}

.not-found-page-404 {
  padding: 200px 0 150px;
}

.coming-soon-words {
  padding: 150px 0;
}
.coming-soon-words h2 {
  font-size: 72px;
  text-align: center;
}

header .navbar-expand-xl a.btn.btn-outline-primary {
  box-shadow: none !important;
}

.main-video-frames .video-frame #homeVideo::-webkit-media-controls {
  display: none !important;
}
.main-video-frames .video-frame .custom-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.main-video-frames .video-frame .custom-controls .control-button {
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .main-video-frames .video-frame .custom-controls .control-button {
    margin-bottom: 30px;
    margin-left: 15px;
  }
}
.main-video-frames .video-frame .custom-controls .control-button > img {
  width: 70px;
  height: 70px;
}
@media (max-width: 767px) {
  .main-video-frames .video-frame .custom-controls .control-button > img {
    width: 40px;
    height: 40px;
  }
}
.main-video-frames .video-frame .custom-controls .control-button:hover {
  background: transparent;
}
.main-video-frames .video-frame .custom-controls #pauseBtn {
  display: none;
}
.main-video-frames .video-frame.video-playing:hover #pauseBtn {
  display: block !important;
}

@media (max-width: 420px) {
  .inner-banner::after {
    bottom: -3px;
  }
}

@media (max-width: 450px) {
  .inner-banner .banner-img {
    z-index: 0;
  }
}

.councel-teams-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .councel-teams-heading {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */