@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0c0d10;
  --white: #ffffff;
  --blue: #0c2480;
  --light-blue: #008adc;
}

html {
  font-size: 10px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  color: #343725;
  font-size: 2.5rem;
  letter-spacing: 0;
}
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
p,
div {
  letter-spacing: 0.1rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "NeueHaasGroteskDisp Pro";
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h1,
.h1 {
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: -0.3rem;
}
h2,
.h2 {
  /* font-size: 5.8rem; */
  font-size: 7.5rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
}
h3,
.h3 {
  font-size: 4.2rem;
  line-height: 1.25;
}
h4,
.h4 {
  font-size: 3.8rem;
  line-height: 1.3;
}
h5,
.h5 {
  font-size: 3.3rem;
  line-height: 1.3;
}
h6,
.h6 {
  font-size: 3rem;
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.5s ease;
}
button {
  outline: none;
  transition: all 0.5s ease;
  cursor: pointer;
}
span {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
img {
  max-width: 100%;
  transition: all 0.4s ease;
}
form {
  width: 100%;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-47 {
  width: 47%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}

.full-box,
.w-100,
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.h-full,
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.relative {
  position: relative;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.overflow-hidden {
  overflow: hidden;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-5 {
  z-index: 5;
}
.align-end {
  align-items: flex-end;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}

.space-between,
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.box-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.grid {
  display: grid;
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-gap-2 {
  grid-gap: 2rem 2rem;
}
.grid-gap-3 {
  grid-gap: 3rem 3rem;
}
.grid-gap-4 {
  grid-gap: 4rem 4rem;
}
.grid-gap-5 {
  grid-gap: 5rem 5rem;
}
.grid-gap-6 {
  grid-gap: 6rem 6rem;
}
.grid-gap-7 {
  grid-gap: 7rem 7rem;
}
.center,
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}

strong {
  font-weight: 600;
  font-size: inherit;
  color: inherit;
}

.max-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.com-padding {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.bottom-padding {
  padding-bottom: 16rem;
}

.top-padding {
  padding-top: 16rem;
}
.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mt-8 {
  margin-top: 8rem;
}
.mt-9 {
  margin-top: 9rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mt-12 {
  margin-top: 12rem;
}
.mb-1{
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.mb-10 {
  margin-bottom: 10rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mr-1{
  margin-right: 1rem;
}
.mr-2{
  margin-right: 2rem;
}
.ml-1{
  margin-left: 1rem;
}
.ml-2{
  margin-left: 2rem;
}

.text-white {
  color: var(--white);
}
.text-black {
  color: var(--black);
}
.text-blue {
  color: var(--blue);
}
.text-light-blue {
  color: var(--light-blue);
}
.font-extra-light {
  font-weight: 200 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.transition,
.transition * {
  transition: all 0.5s ease;
}
.rounded-1 {
  border-radius: 1rem;
}
.rounded-2 {
  border-radius: 2rem;
}
.rounded-3 {
  border-radius: 3rem;
}
.rounded-4 {
  border-radius: 4rem;
}
.rounded-5 {
  border-radius: 5rem;
}
.rounded-6 {
  border-radius: 6rem;
}
.rounded-full {
  border-radius: 50%;
  overflow: hidden;
}
.list-none,
.list-none ul,
.list-none ol {
  list-style: none;
}
.normal-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.bottom-to-top-overlay,
.bottom-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}

.top-to-bottom-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}
.left-to-right-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}
.right-to-left-overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
}
.top-bottom-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.top-bottom-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.text-sm {
  font-size: 2rem;
}

.text-right {
  text-align: right;
}
.btn {
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 13rem;
  justify-content: space-between;
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.5s ease;
  border: 1px solid;
}
.btn .btn-arrow {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3rem;
  transition: all 0.5s ease;
}
.btn .btn-arrow img {
  width: 1.5rem;
}
.btn .btn-arrow.no-bg {
  margin-right: 2rem;
  margin-left: 5rem;
  width: max-content;
  background-color: transparent !important;
}
.btn .btn-arrow.no-bg img {
  width: 2.9rem;
}
.btn:hover .btn-arrow.no-bg img,
.btn.btn-outline-blue:hover .btn-arrow img,
.btn.btn-blue:hover .btn-arrow img,
.btn.btn-outline-white:hover .btn-arrow img,
.btn.btn-outline-light-blue:hover .btn-arrow img {
  filter: invert(1);
}
.btn.btn-blue,
.btn.btn-outline-blue:hover,
.btn.btn-outline-grey:hover,
.btn.btn-light-blue:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn.btn-blue .btn-arrow,
.btn.btn-outline-blue:hover .btn-arrow,
.btn.btn-outline-white .btn-arrow,
.btn.btn-outline-light-blue:hover .btn-arrow {
  background-color: var(--white);
}
.btn.btn-blue:hover {
  background-color: var(--white);
  color: var(--blue);
}
.btn.btn-blue:hover .btn-arrow,
.btn.btn-outline-blue .btn-arrow,
.btn.btn-outline-white:hover .btn-arrow {
  background-color: var(--blue);
}
.btn.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-outline-blue {
  border-color: var(--blue);
  color: var(--blue);
}
.btn.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--blue);
}
.btn.btn-outline-grey {
  border-color: #7c7c7c;
  color: #7c7c7c;
  background-color: var(--white);
}
.btn.btn-light-blue {
  background-color: var(--light-blue);
  color: var(--white);
  border-color: var(--light-blue);
}
.btn.btn-light-blue:hover .btn-arrow img {
  filter: none;
}
.btn .btn-arrow.no-bg.ml-small {
  margin-left: 2rem;
}
.btn.btn-outline-light-blue {
  border-color: var(--light-blue);
  color: var(--light-blue);
}
.btn.btn-outline-light-blue .btn-arrow {
  background-color: var(--light-blue);
}
.btn.btn-outline-light-blue:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.container {
  /* width: 80%; */
  width: 83%;
  max-width: 1533px;
  padding: 0 15px;
  margin: 0 auto;
}
.full-width-slider {
  width: 90%;
  margin-left: auto;
  padding-left: 15px;
}
.subheading {
  /* font-size: 1.8rem; */
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.border-t {
  border-top: 1px solid;
}
.border-b {
  border-bottom: 1px solid;
}
.border-l {
  border-left: 1px solid;
}
.border-r {
  border-right: 1px solid;
}
.border-white {
  border-color: var(--white) !important;
}
.border-black {
  border-color: var(--black) !important;
}
.border-blue {
  border-color: var(--blue) !important;
}
.border-light-blue {
  border-color: var(--light-blue) !important;
}
.transition-all {
  transition: all 0.4s ease-in-out;
}
/* ------------------------------------ */
/* ------- HEADER STYLES START -------- */
/* ------------------------------------ */
.aim-announcement-bar .bar {
  height: 35px;
}
.aim-announcement-bar p {
  font-size: 13px;
  line-height: 1.1;
}
header.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 35px;
  z-index: 50;
}
header .logo-box {
  width: 10rem;
  height: 9rem;
  top: 1rem;
  left: 7%;
  padding: 2rem;
  background-color: var(--white);
}
.header-top {
  padding: 2rem 0;
}
.head-apply-box-2 a.btn.btn-blue {
    height: 6.5rem;
    margin-right: 2rem;
    background: #008adc;
    border: none;
    color: #fff !important;
}


header .inner {
  width: 91%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-top .btn {
  margin-left: 2rem;
}
.header-programs-box span,
.header-programs-box a {
  font-size: 1.8rem;
  color: #020302;
  padding: 2rem 1rem;
  font-weight: 500;
}
.header-programs-box ul li {
  margin: 0 1.5rem;
}
.header-programs-box a:hover {
  color: #008dd6;
}
.header-programs-box .title {
  color: #828282;
  margin-right: 3rem;
}
.header-programs-box .title::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: 1rem;
  width: 6.5rem;
  height: 1.5rem;
  background: url("../img/our-programs-arrow.webp") no-repeat center;
  background-size: contain;
}
header .inner ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.header-bottom ul {
  justify-content: center;
}
.header-bottom li a {
  color: var(--white);
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 2rem 3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.header-bottom li .sub-menu .sub-menu a {
  text-transform: none;
  max-width: 370px;
  line-height: 1.5;
}
.header-bottom li a:hover,
.header-bottom li.current-menu-item > a {
  color: #8fd4f7;
}
.header-bottom li.menu-item-has-children {
  position: relative;
}
.header-bottom li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 6px;
  background: url("../img/menu-dropdown-arrow-white.webp") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.header-bottom li .sub-menu {
  position: absolute;
  display: block;
  width: max-content;
  left: 0;
  top: 100%;
  background-color: var(--blue);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 1rem 1rem;
}
.header-bottom li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header-bottom li .sub-menu li {
  border-top: 1px solid #014b70;
}
.sub-menu-toggle {
  display: none;
}
#header.header-stick {
  position: fixed !important;
  background-color: var(--white);
  border-bottom: 1px solid #2c2c2c;
  box-shadow: 0 5px 8px rgb(98 98 98 / 10%), 0 2px 9px rgba(0, 0, 0, 0.5);
  animation: smoothScroll 1s forwards;
  left: 0;
  top: 0;
  margin-top: 0;
  transform: translateX(0);
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

/* ============================ */

      /* Landing Page  */

/* ============================ */


.lp-banner-box .lp-usp-box {
    margin-top: 10rem;
}
.lp-banner-box h1 strong{
  color: #31AFFA;
  font-weight: 500;
}
.lp-banner-box .lp-usp-box li {
    width: 33%;
    border-left: 1px solid #939393;
    padding: 0 2rem 0 4rem;
}
.lp-banner-box .lp-usp-box li:last-child{
    border-right: 1px solid #939393;
}
.lp-banner-box .lp-usp-box li img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    margin-bottom: 1rem;
}
.lp-banner-box .lp-usp-box li h3 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
/* .lp-banner-box .lp-usp-box li {
    width: 100%;
    border-top: 1px solid #939393;
    padding: 2.3rem 0;
    display: flex;
    align-items: center;
}
.lp-banner-box .lp-usp-box li:last-child{
        border-bottom: 1px solid #939393;
}
.lp-banner-box .lp-usp-box li img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    margin-right: 3rem;
}
.lp-banner-box .lp-usp-box li h3 {
    font-size: 5rem;
    font-weight: 700;
    margin-right: 2rem;
    min-width: 18rem;
} */
.lp-banner-box .cap {
    background: #fff;
    border-radius: 5rem;
    padding: 0 2rem;
    height: 5rem;
    margin-right: 1rem;
    color: #000;
}
.lp-banner-box .cap p {
    font-weight: 500;
    font-size: 2rem;
    margin-left: 1rem;
}
.lp-banner-box .cap img {
    width: 2.8rem;
}
.lp-banner-box .text-box{
  width: 53%;
}
.lp-page-form form .field-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
.lp-page-form form .field-box input, .lp-page-form form .field-box select {
    background: #fff;
    border: 1px solid #C1C1C1;
    outline: none;
    height: 7rem;
    width: 100%;
    padding: 2rem;
    border-radius: 0.6rem;
    font-size: 1.8rem;
}
.lp-page-form form .field-box input::placeholder, .lp-page-form form .field-box select::placeholder{
  color: #6F6F6F;
}
.lp-page-form form .field-box select{
  cursor: pointer;
}
.lp-page-form .form-box {
    background: #fff;
    border-radius: 3rem;
    padding: 5rem;
    height: 850px;
}
.lp-page-form form .field-box label {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 1.6rem;
    width: max-content;
    background: #fff;
    margin-bottom: -1.3rem;
    z-index: 1;
    margin-left: 3rem;
    padding: 0.2rem 1.3rem;
}
.lp-page-form form .field-box label img {
    width: 1.2rem;
    margin-right: 0.8rem;
}
.lp-page-form form .two-field-box .field-box {
    width: 48%;
}
.lp-page-form form button{
  padding: 1.8rem 4rem;
  color: #fff;
  border: none;
  background: #008ADC;
  border-radius: 5rem;
  font-size: 2rem;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-page-form form button:hover{
  background: #0c2480;
}
.lp-page-form form button img{
  width: 2rem;
  margin-left: 2rem;
}

.lp-why-listing>li {
    padding: 3.3rem 0;
    border-top: 1px solid #8C8C8C;
    flex-wrap: nowrap;
}
.lp-why-listing>li:last-child {
    border-bottom: 1px solid #8C8C8C;
}
.lp-why-listing .icon-box {
    width: 7rem;
    margin-right: 4rem;
    flex-shrink: 0;
}
.lp-why-listing .content h5 {
    margin-bottom: 1rem;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.2;
}
.lp-why-section .img-box img {
    border-radius: 2rem;
}
.lp-why-listing>li ul li {
    margin: 0.8rem 0;
}
.lp-why-listing>li ul {
    list-style: disc;
    padding-left: 3rem;
}


.lp-who-box .content-box {
  gap: 6rem;
}
.lp-who-box .who-info-box {
  background: #F2F3F6;
  padding: 5rem 4rem;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.lp-who-box .who-info-box img {
  width: 29rem;
}
.lp-who-box .who-info-box h5{
  letter-spacing: 0;
}
.lp-who-listing {
  list-style: none;
  margin: 4rem 0 0;
  padding: 0;
  position: relative;
}
.lp-who-listing::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  border-left: 0.3rem dashed #008ADC;
}
.lp-who-listing li {
  position: relative;
  padding-left: 10rem;
}
.lp-who-listing li h5{
    border-top: 1px solid #D9D9D9;
    padding: 4rem 0;
    width: 100%;
    letter-spacing: 0;
}
.lp-who-listing li h5:last-child {
  border-bottom: 1px solid #D9D9D9;
}
.lp-who-listing .icon-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: var(--white);
  z-index: 1;
}
.lp-who-listing .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.lp-program-univ-box {
  border-radius: 2rem;
  overflow: hidden;
}
ul.lp-program-spec-slider .slick-slide {
    padding: 0 1.5rem;
}
.lp-program-univ-box .univ-content {
  left: 8rem;
  top: 8rem;
  max-width: 45%;
}

.lp-program-stats {
  position: absolute;
  bottom: 10rem;
  right: 10rem;
}
.lp-program-stats li {
    padding: 2rem 3rem;
    margin-left: 2rem;
    background: #fff;
    border-radius: 2rem;
    min-width: 25rem;
}
.lp-program-stats li h4 {
    font-size: 5rem;
    font-weight: 600;
}
.lp-program-feature-list li {
    width: 48%;
    background: #ffffff;
    padding: 7rem 5rem;
    border-radius: 2rem;
    flex-wrap: nowrap;
}
.lp-program-feature-list .icon-box {
    width: 23rem;
    margin-right: 5rem;
}
.lp-program-spec-list li {
  width: 23%;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
}
section.lp-banner-section.text-white {
    background-size: cover;
    background-repeat: no-repeat;
}
.lp-program-feature-list h3 {
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 1rem;
}
.lp-program-spec-box h3 {
    font-weight: 600;
}
.lp-program-spec-list .text-box {
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 1rem;
}
.lp-program-spec-list .text-box h5 {
    letter-spacing: 0;
}
.lp-program-callback-box {
  background: #0C2480;
  padding: 7rem 6rem;
  border-radius: 4rem;
}
.lp-program-callback-box .person-dp {
    width: 12rem;
}
.lp-program-callback-box .contact-head-box{
  flex-wrap: nowrap;
}
.lp-program-callback-box .info-box a {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.lp-program-callback-box .info-box a:hover{
  text-decoration: underline;
}
.lp-program-callback-box .info-box a img {
    width: 2.8rem;
    margin-right: 1.5rem;
}
.lp-page-form form .four-field-box .field-box {
    width: 20%;
    margin-bottom: 0;
}
.lp-page-form form .four-field-box .field-box label {
    background: #0C2480;
    color: #B3B3B3;
}
.lp-page-form form .four-field-box .field-box input, .lp-page-form form .four-field-box .field-box select {
    background: transparent;
    color: #B3B3B3;
    font-size: 2rem;
}
.lp-page-form form .four-field-box .field-box input::placeholder {
    color: #B3B3B3;
}
.lp-page-form form .four-field-box .field-box label img {
    filter: invert(1);
}
.lp-page-form form .four-field-box button:hover {
    background: #000;
    filter: invert(1);
    transition: all 0.1s;
}

.lp-fees-box .card-box {
    padding: 4rem;
    border-radius: 3rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.06);
    margin-bottom: 18rem;
    float: right;
    width: max-content;
    margin-right: 5rem;
}
.lp-fees-box .card-box h2 {
    font-size: 10rem;
    font-weight: 700;
    color: #008ADC;
}
.lp-fees-box .down-arrow {
  width: 11rem;
}
.lp-fees-box .text-box {
    width: 52%;
}
.lp-fees-box .content-box {
    width: 48%;
}


.lp-testimonial-listing {
  gap: 3rem;
}
.lp-testimonial-listing li {
  width: 31.7%;
}
.lp-testimonial-listing .video-card video {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}
.lp-testimonial-listing .video-card .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6rem;
  height: 6rem;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
}
.lp-testimonial-listing .review-card {
    background: #F2F3F7;
    border-radius: 2rem;
    padding:4rem;
}
.lp-testimonial-listing .review-head img {
  height: 2.8rem;
}
.lp-testimonial-listing .review-card h5 {
    letter-spacing: 0;
    font-weight: 600;
}
.lp-testimonial-listing .review-card .review-user p.font-light {
    font-size: 1.8rem;
    letter-spacing: 0;
}
.lp-testimonial-listing .review-card .review-user {
    flex-wrap: nowrap;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid #b5b5b58f;
}
.lp-testimonial-listing .review-card .review-user img {
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.video-card.active .play-btn {
  display: none;
}
.video-card.active video {
  display: block;
}

.cxo-slick-prev {
    right: 23rem;
}
.cxo-slick-next {
    right: 14rem;
}
.cxo-slider-btn {
    background: transparent;
    border: none;
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: -20rem;
    cursor: pointer;
}
.cxo-slick-next {
    transform: rotate(180deg);
}
ul.careers-celebrating-listing.lp-program-spec-list .slick-slide {
    padding: 0 2rem;
}
ul.careers-celebrating-listing ul.slick-dots li button {
    font-size: 0;
    background: #939393;
    width: 100%;
    border: none;
    height: 0.3rem;
    border: 0.1rem solid transparent;
    transition: all 0.3s;
}
ul.careers-celebrating-listing ul.slick-dots li.slick-active button {
    background: #008ADC;
    border: 0.1rem solid #008ADC;
    transition: all 0.3s;
}
ul.careers-celebrating-listing ul.slick-dots li {
    width: -webkit-fill-available;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.careers-celebrating-listing ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    margin-top: 8rem;
}


.lp-faq-listing {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-faq-listing li {
  border-bottom: 1px solid #E0E0E0;
  padding: 2.5rem 0;
}
.lp-faq-listing li h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
}
.lp-faq-listing li p {
  display: none;
  margin-top: 1.5rem;
  max-width: 90%;
  opacity: 0.8;
}
.lp-faq-listing .icon-box {
  display: flex;
  align-items: center;
}
.lp-faq-listing .plus,
.lp-faq-listing .minus {
  font-size: 5rem;
  line-height: 1;
  font-weight: 300;
}
.lp-faq-listing .minus {
  display: none;
}
.lp-faq-listing li.active p {
  display: block;
}
.lp-faq-listing li.active .plus {
  display: none;
}
.lp-faq-listing li.active .minus{
  display: block;
}
.lp-faq-box .text-box img{
  width: 15rem;
}
.lp-enroll-contact .contact-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #C7C7C7;
}
.lp-enroll-contact .contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.lp-enroll-contact .contact-item a img {
    width: 2.5rem;
}
.lp-enroll-contact .contact-item h6 {
    margin-bottom: 1rem;
}
.lp-enroll-section .lp-page-form .form-box {
    padding: 7rem 6rem;
}
.lp-enroll-section .lp-page-form form button {
    float: right;
}
.lp-enroll-section .lp-page-form form .field-box input, .lp-enroll-section .lp-page-form form .field-box select{
  font-size: 2rem;
}

.header-box {
    max-width: 1920px;
    margin: auto;
    padding: 3rem 8rem;
}
.header-box .logo img {
    width: 10rem;
}
.header-box p {
    font-size: 2rem;
  transition: all 0.3s;
  text-underline-offset: 0rem;

}
.header-box a:hover p{
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  transition: all 0.3s;
}
.header-box .right-box a:hover img{
  scale: 1.1;
}
.lp-banner-box {
    padding-top: 20rem;
}
.header-box .right-box .lp-head-mess img {
    height: 4.5rem;
}
a.lp-head-tel {
    margin: 0 3rem;
}
a.lp-head-tel img {
    height: 2.8rem;
    margin-top: 1rem;
}
a.lp-head-wp {
    height: 5.5rem;
    background: #fff;
    border-radius: 100%;
    padding: 1.2rem;
}
a.lp-head-wp img {
    height: 100%;
}
.lp-career-section ul.careers-celebrating-listing li img{
  width: 100%;
}
.lp-career-section ul.careers-celebrating-listing {
    max-width: 2200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-box {
    padding: 5rem 15rem;
    border-radius: 10rem 10rem 0 0;
    background: #0C2480;
    max-width: 1920px;
    margin: auto;
}
.footer-box p{
  color: #9ABEE5;
  font-size: 2rem;
}
.footer-box a:hover{
  color: #fff;
}


.lp-carrer-popup-outer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.lp-carrer-popup {
  background: #fff;
      max-width: 140rem;
    padding: 4rem;
    border-radius: 3rem;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.lp-carrer-popup h5 {
    font-size: 5.8rem;
    margin-bottom: 2rem;
    letter-spacing: 0;
}

.lp-carrer-popup-outer .close-pop-btn {
  position: absolute;
  top: -2rem;
  right: -2rem;
  cursor: pointer;
}
.lp-carrer-popup-outer .close-pop-btn img {
    width: 6rem;
}

.lp-carrer-popup .cta img
 {
    width: 2rem;
    margin-left: 2rem;
}
.lp-carrer-popup .cta-box{
  float: right;
} 
.lp-carrer-popup .cta {
    padding: 1.8rem 4rem;
    color: #fff;
    border: none;
    background: #008ADC;
    border-radius: 5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    margin-left: 2rem;
}
.lp-carrer-popup .expert-box {
    margin-top: 2rem;
    background: #DBF7FF;
    border-radius: 2rem;
    padding: 3rem;
}
.lp-carrer-popup .expert-box .person-dp {
    width: 8rem;
    margin-right: 2rem;
}
.lp-carrer-popup .expert-box .name {
    font-size: 2.2rem;
}
.lp-carrer-popup .expert-box .title {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0;
}