@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Play:wght@400;700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #d3d3d3;
  --grey: #9c9c9c;
  --primary: #089191;
  --primary-hover: #047070;
  --black-80: #0c0c0c;
}

html {
  font-size: 10px;
}

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

body {
  line-height: 1.5;
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--black);
  color: var(--white);
  font-size: 2.4rem;
}
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: "Play", sans-serif;
  width: 100%;
}
span,
a,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.roboto {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}
.oswald {
  font-family: "Oswald", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
h1 {
  font-size: 6.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 5.5rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}
h3 {
  font-size: 4.5rem;
  line-height: 1.25;
}
h4 {
  font-size: 4rem;
  line-height: 1.3;
}
h5 {
  font-size: 3.5rem;
  line-height: 1.3;
}
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;
}
img {
  max-width: 100%;
  max-height: 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;
}
.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) !important;
}
.bg-black {
  background-color: var(--black) !important;
}
.bg-black-80 {
  background-color: var(--black-80) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.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-1 {
  grid-template-columns: repeat(1, 1fr);
}
.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;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}
.gap-5 {
  gap: 5rem;
}
.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: 700;
  font-size: inherit;
  color: inherit;
}

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

.com-padding {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.square {
  aspect-ratio: 1/1;
}
.bottom-padding {
  padding-bottom: 16rem;
}

.top-padding {
  padding-top: 16rem;
}
.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-6 {
  margin-bottom: 6rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.mb-10 {
  margin-bottom: 10rem;
}
.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.ml-3 {
  margin-left: 3rem;
}
.ml-4 {
  margin-left: 4rem;
}
.ml-5 {
  margin-left: 5rem;
}
.ml-6 {
  margin-left: 6rem;
}
.ml-7 {
  margin-left: 7rem;
}
.mr-1 {
  margin-right: 1rem;
}
.mr-2 {
  margin-right: 2rem;
}
.mr-3 {
  margin-right: 3rem;
}
.mr-4 {
  margin-right: 4rem;
}
.mr-5 {
  margin-right: 5rem;
}
.mr-6 {
  margin-right: 6rem;
}
.mr-7 {
  margin-right: 7rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-white {
  color: var(--white);
}

.text-black {
  color: #0c0d10;
}

.text-primary {
  color: var(--primary);
}

.text-off-white {
  color: var(--off-white);
}
.text-grey {
  color: var(--grey);
}
.font-regular,
.font-400 {
  font-weight: 400;
}
.font-medium,
.font-500 {
  font-weight: 500;
}
.font-bold,
.font-700 {
  font-weight: 700;
}
.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-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-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-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-left-overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
}
.btn {
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1rem 1.5rem;
  border: 1px solid;
  border-radius: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.btn.btn-secondary {
  border-radius: 0 2rem 0 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.btn-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-arrow.bg-primary {
  background-color: var(--primary);
}
.btn-arrow img {
  max-height: 1rem;
}
.btn-primary,
.btn-white:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}
.btn-black {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background-color: var(--white);
  border-color: var(--black);
  color: var(--black);
}
.btn-black:hover .btn-arrow {
  background-color: var(--black);
}
.btn-black:hover .btn-arrow img {
  filter: invert(1);
}
.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}
.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white .btn-arrow {
  background-color: var(--primary);
}
.btn-white:hover .btn-arrow {
  background-color: var(--white);
}

.btn-outline-white:hover .btn-arrow {
  background-color: var(--primary);
}
.btn-outline-white:hover img {
  filter: invert(1);
}
.invert {
  filter: invert(1);
}

.container {
  width: 88%;
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}
.section-sub {
  width: max-content;
  border: 1px dashed var(--grey);
  padding: 1rem 3rem;
  position: relative;
}
.bg-primary .section-sub {
  border-color: var(--white);
  color: var(--white);
}
.section-sub::before,
.section-sub::after,
.section-sub span::before,
.section-sub span::after,
.hp-partner-item .logo-box::before,
.hp-partner-item .logo-box::after,
.hp-partner-item .logo-box .inner::before,
.hp-partner-item .logo-box .inner::after,
.hp-partner-item .text-box::before,
.hp-partner-item .text-box::after,
.hp-partner-item .text-box .inner::before,
.hp-partner-item .text-box .inner::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--grey);
}
.section-sub::before,
.hp-partner-item .logo-box::before,
.hp-partner-item .text-box::before {
  left: -1px;
  top: -1px;
  border-right: none;
  border-bottom: none;
}
.section-sub::after,
.hp-partner-item .logo-box::after,
.hp-partner-item .text-box::after {
  right: -1px;
  top: -1px;
  border-left: none;
  border-bottom: none;
}
.section-sub span::before,
.hp-partner-item .logo-box .inner::before,
.hp-partner-item .text-box .inner::before {
  left: -1px;
  bottom: -1px;
  border-right: none;
  border-top: none;
}
.section-sub span::after,
.hp-partner-item .logo-box .inner::after,
.hp-partner-item .text-box .inner::after {
  right: -1px;
  bottom: -1px;
  border-left: none;
  border-top: none;
}
.bg-primary .section-sub::before,
.bg-primary .section-sub::after,
.bg-primary .section-sub span::before,
.bg-primary .section-sub span::after {
  filter: brightness(100);
}
.link-highlight a {
  font-weight: 700;
  color: var(--off-white);
}
.text-sm {
  font-size: 2rem;
}
.section-heading h2 span {
  color: var(--primary);
}
/* ----------------------------- */
/* ---------- HEADER ----------- */
/* ----------------------------- */
header.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.4);
}
header .header-wrapper {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 1rem 3rem;
}
.header-logo {
  width: max-content;
}
.header-logo img {
  max-height: 6.3rem;
}
.header-menu-box ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header-menu-box a {
  font-size: 2.2rem;
  color: var(--white);
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  display: inline-block;
  white-space: nowrap;
}
.header-menu-box a:hover,
.header-menu-box .current-menu-item a {
  color: var(--primary);
}
.header-menu-box .menu-item-has-children {
  position: relative;
}
.header-menu-box .menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  margin-left: 0.5rem;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
}
.header-menu-box .menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  background-color: #111111;
  flex-direction: column;
  z-index: 1;
  border-radius: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-50px);
}
.header-menu-box .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-menu-box .sub-menu a {
  padding: 1.4rem 3rem;
  border-top: 1px solid #012a2a;
}
.header-menu-box .sub-menu li:first-child a {
  border-top: none;
}
#header.header-stick {
  position: fixed !important;
  box-shadow:
    0 5px 8px rgb(98 98 98 / 10%),
    0 2px 9px rgb(0 0 0 / 0.5);
  animation: smoothScroll 1s forwards;
  background-color: var(--black);
  left: 0;
  top: 0;
  margin-top: 0;
  transform: translateX(0);
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

/* ----------------------------- */
/* ---------- FOOTER ----------- */
/* ----------------------------- */
.footer-menu-box {
  padding-left: 8rem;
  padding-right: 3rem;
  border-left: 1px solid #333333;
}
.footer-menu-box:last-child {
  border-right: 1px solid #333333;
}
.footer-menu-box ul {
  list-style: none;
}
.footer-menu-title {
  margin-bottom: 1.5rem;
}
.footer-menu-box a {
  padding: 1rem 0;
  display: block;
}
.footer a:hover,
.footer-menu-box .current-menu-item a {
  color: var(--primary);
}
.footer-site-title {
  font-size: 36rem;
  line-height: 1;
  color: #1a1a1a;
}
.footer-credit {
  gap: 2rem;
  padding: 5rem 0;
}
.footer-social-links a {
  display: flex;
  align-items: center;
}
.footer-social-links .icon {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--grey);
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-right: 2rem;
}
.footer-social-links .icon img {
  max-height: 2rem;
  max-width: 2rem;
}
.footer-social-links a:hover .icon {
  background-color: var(--primary);
  border-color: var(--primary);
}
/* ----------------------------- */
/* --------- HOMEPAGE ---------- */
/* ----------------------------- */
.hp-banner-slider .slick-dots {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: flex;
  align-items: center;
  width: max-content;
  list-style: none;
  gap: 6px;
}
.hp-banner-slider .slick-dots button {
  width: 10rem;
  height: 2px;
  background-color: white;
  border: 0;
  outline: 0;
  font-size: 0;
  color: transparent;
}
.hp-banner-slider .slick-dots .slick-active button {
  background-color: var(--primary);
}
.banner-sub {
  font-size: 2rem;
}
.hero-banner .banner-content,
.hp-banner-slider .banner-bg {
  height: 110rem;
  max-height: 110vh;
  min-height: 500px;
}
.hp-about-usps {
  gap: 3rem;
}
.hp-about-usp-item {
  width: calc(33% - 2rem);
  padding: 6rem 4rem 7rem 5rem;
  background-color: #161616;
  border-radius: 1.7rem;
}
.hp-about-usp-item .tag {
  position: absolute;
  top: 0;
  right: 3rem;
  width: max-content;
  padding: 0 3rem 1.5rem 3rem;
  background: url("../img/hp-about-card-tag.webp") no-repeat center center;
  background-size: contain;
  min-width: 24rem;
  text-align: center;
}
.hp-about-usp-item .icon {
  height: 8rem;
}
.hp-about-usp-item .icon img {
  max-height: 7rem;
}
.hp-about-usp-item h6 span {
  color: var(--primary);
  display: block;
}
.hp-about-usp-content {
  max-width: 35rem;
}
.hp-about-counters .title {
  font-size: 7rem;
  line-height: 1;
}
.hp-about-counters li {
  border-left: 1px solid #d9d9d92e;
  padding: 0 2rem;
  margin: 2rem 0;
}
.hp-about-counters li:nth-child(4n + 4) {
  border-right: 1px solid #d9d9d92e;
}
.hp-programs-section {
  background-color: #0b0b0b;
}
.hp-program-toggle-bar {
  background-color: #252525;
  padding: 1rem;
  border-radius: 7rem;
}
.hp-program-toggle {
  padding: 1.8rem 3rem;
  border-radius: 7rem;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--grey);
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  display: inline-flex;
}
.hp-program-toggle.active {
  background-color: var(--white);
  color: var(--black);
}
.hp-program-slider-btns {
  top: 50%;
  transform: translateY(-50%);
}
.hp-program-arrow {
  width: 6rem;
  height: 6rem;
}
.hp-program-arrow.bg-white:hover {
  background-color: var(--primary) !important;
}
.hp-program-arrow.bg-white:hover img {
  filter: invert(1);
}
.slick-arrow {
  cursor: pointer;
  transition: all 0.4s ease;
}
.slick-arrow.bg-white:hover {
  background-color: var(--primary);
}
.same-height-slider .slick-track {
  display: flex;
}
.same-height-slider .slick-slide {
  height: inherit;
}
.same-height-slider .slick-slide > div {
  height: 100%;
}
.hp-program-slider .slick-list {
  margin: 0 -1.5rem;
}
.hp-program-slider .slick-slide {
  margin: 0 1.5rem;
}
.hp-program-slider-btns .hp-program-prev {
  transform: translateX(-9rem);
}
.hp-program-slider-btns .hp-program-next {
  transform: translateX(9rem);
}
.hp-program-item {
  background-color: #101010;
  background-color: #101010;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.hp-program-item:hover {
  background-color: #181818;
  border-color: #222222;
}
/* .hp-program-item.closed::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(74, 74, 74, 0.72);
} */

.hp-program-item .status-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: white;
  background-color: #7e7e7e;
  border-radius: 2rem;
  font-size: 15px;
  top: 2rem;
  right: 2rem;
  padding: 0.5rem 2rem;
}
.hp-program-item .content-box {
  padding: 4rem 3rem 0 3rem;
}
.hp-program-item h6 span {
  color: var(--primary);
}
.hp-program-item .card-img img {
  max-height: 40rem;
  object-fit: contain;
}

.hp-program-item .partner-box {
  border-radius: 1rem;
  /* padding: 7px 12px;
  background-color: #292929;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.hp-program-item .partner-box .tag {
  font-size: 1.2rem;
  padding: 5px 10px;
}
.hp-program-item .partner-box .logo {
  max-height: 6rem;
  max-width: 12rem;
}
.hp-program-item .partner-box .title {
  font-size: 1.6rem;
  letter-spacing: -0.02rem;
  text-align: left;
}
.tab-content {
  display: none;
}
.hp-testimonial-box {
  width: 88%;
  margin-left: auto;
  padding-right: 5rem;
}

.hp-testimonial-section .col {
  max-width: 96rem;
}
.hp-testimonial-box h2 {
  max-width: 50rem;
}
.hp-testimonial-box .quote-icon {
  width: 21rem;
  top: 5rem;
  right: 5rem;
}

.hp-testimonial-meta .avatar {
  width: 9.8rem;
  height: 9.8rem;
}
.hp-testimonial-item .star {
  width: 2.3rem;
  display: inline-block;
  margin-right: 5px;
}
.hp-test-port-slider .slick-dots,
.hp-partners-slider .slick-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
}
.hp-testimonial-slider .slick-dots {
  margin-top: 2rem;
}
.hp-test-port-slider .slick-dots button,
.hp-partners-slider .slick-dots button {
  color: transparent;
  font-size: 1px;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--off-white);
  border-radius: 50%;
  background-color: transparent;
}
.hp-portfolio-slider .slick-dots {
  justify-content: center;
  bottom: 14rem;
  position: absolute;
  width: 100%;
  left: 0;
}
.hp-portfolio-slider .slick-dots button {
  background-color: var(--grey);
  width: 1.9rem;
  height: 1.9rem;
}
.hp-testimonial-slider .slick-active button,
.hp-partners-slider .slick-active button {
  background-color: var(--off-white);
  width: 5.5rem;
  border-radius: 5px;
}

.hp-portfolio-slider .slick-active button {
  background-color: var(--off-white);
}
.hp-portfolio-box .content-box {
  padding-left: 10rem;
  padding-right: 10rem;
}
.hp-portfolio-box h2 strong {
  display: block;
}
.hp-partners-slider .slick-list {
  margin: 0 -2rem;
}
.hp-partners-slider .slick-slide {
  margin: 0 2rem;
}
.hp-partner-item {
  display: flex !important;
}
.hp-partner-item .logo-box,
.hp-partner-item .text-box {
  border: 1px dashed var(--grey);
  position: relative;
}
.hp-partner-item .logo-box .inner,
.hp-partner-item .text-box .inner {
  padding: 6rem 4rem;
  position: relative;
}
.hp-partner-item .text-box {
  border-left: none;
}
.hp-partners-slider .slick-dots {
  justify-content: center;
  margin-top: 3rem;
}
/* ------------------------- */
/* ------- CONTACT US ------ */
/* ------------------------- */
.half-height-banner .banner-content {
  padding: 20rem 0 12rem 0;
}
.con-contact-section .section-heading {
  width: 50%;
}
.con-email-box {
  gap: 2.5rem;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  padding: 3rem 0;
}
.con-email-box .divider {
  width: 2.4rem;
}
.con-label {
  font-size: 1.6rem;
}
.con-email-box .mail {
  letter-spacing: -0.3px;
}
.con-medium .icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 1px solid #4a4a4a;
  padding: 1rem;
}
.con-medium .icon img {
  max-height: 2.5rem;
}
.con-medium li {
  padding: 1.5rem 0;
}
.con-medium .social-list a {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  line-height: 1;
  border-right: 1px solid var(--white);
  margin-top: 1rem;
}
.con-medium .social-list a:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.con-medium .social-list a:hover {
  color: var(--primary);
}
.con-form-wrapper {
  max-width: 64rem;
  margin-left: auto;
}
.con-form-wrapper .con-form {
  padding: 12rem 5rem 5rem 5rem;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
}
.con-form .input-box input,
.con-form .input-box select,
.con-form .input-box textarea {
  outline: none;
  border: 0;
  border-bottom: 1px solid #bababa;
  padding-bottom: 2rem;
  background-color: transparent;
  font-size: 2rem;
}
.flex-box .input-box.half {
  width: calc(50% - 1rem);
}
.input-box {
  margin-bottom: 4rem;
}

.con-form label {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.con-form select option {
  color: var(--black);
}
textarea {
  min-height: 13rem;
}
form br {
  display: none;
}
.submit-box {
  width: max-content;
  position: relative;
}
.submit-box input {
  cursor: pointer;
}
.con-form-wrapper .remote {
  width: 25rem;
  height: 25rem;
  top: -7rem;
  right: -7rem;
}
.con-events-section,
.to-bottom-black-bg {
  background: linear-gradient(to bottom, #0c0c0c, rgba(0, 0, 0, 0));
}
.con-events-slider .slick-list {
  margin: 0 -1.5rem;
}
.con-events-slider .slick-slide {
  margin: 0 1.5rem;
}
.con-events-slider .date {
  font-size: 1.7rem;
}
.con-event-item .img-box {
  border-radius: 5px;
}
.con-event-item:hover .img-box img {
  transform: scale(1.1);
}
/* --------------------------- */
/* ---------- ABOUT US ------- */
/* --------------------------- */
.about-intro-section {
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0) 29.78%,
    rgba(12, 12, 12, 0.333183) 57.25%,
    #0c0c0c 94%
  );
}
.about-intro-quote .quote {
  font-size: 3.4rem;
}
.about-intro-quote .avatar {
  width: 11.6rem;
  height: 11.6rem;
  border: 0.3rem solid #e3ff04;
  padding: 3px;
  margin-right: 2rem;
}
.program-location,
.program-location .location {
  gap: 8px;
}
.program-location .tag {
  background-color: var(--primary);
  padding: 5px 10px;
  border-radius: 1rem;
}
.program-location span,
.hp-program-item .date {
  font-size: 1.6rem;
}
.program-location img {
  max-height: 1.8rem;
}
.underline {
  text-decoration: underline;
}
.hp-program-item .date {
  color: #cbcbcb;
}
.about-approach-item {
  background-color: #161616;
  padding: 13rem 4rem 8rem 4rem;
  border-radius: 1.8rem;
}
.about-approach-item::after {
  content: "";
  position: absolute;
  right: 5rem;
  bottom: 0;
  min-width: 24rem;
  width: max-content;
  height: 5rem;
  background: url(../img/hp-about-card-tag.webp) no-repeat center center;
  background-size: contain;
  transform: rotate(180deg);
}
.about-approach-item .count {
  font-size: 25rem;
  color: #454545;
  line-height: 1;
  letter-spacing: -1rem;
  width: max-content;
  position: absolute;
  top: -8rem;
  right: -2rem;
  font-family: "Oswald", sans-serif;
}
.about-approach-item p,
.about-approach-item li {
  color: var(--grey);
}

.about-approach-wrapper .bd-journey-box .text-box {
  padding: 4rem 4rem;
  padding-bottom: 0;
}
.about-award-item {
  padding: 0 6rem;
  border-left: 1px solid #505050;
}
.about-award-item:nth-of-type(3n + 3) {
  border-right: 1px solid #505050;
}
.about-award-item img {
  max-width: 28rem;
}
.about-award-item p {
  max-width: 32rem;
}
.full-width-slider {
  width: 94%;
  margin-left: auto;
  max-width: 1765px;
  padding-left: 15px;
}
.about-why-slider .slick-list {
  padding-right: 15rem;
}
.about-why-slider .slick-slide {
  margin-right: 3rem;
}
.about-why-progress-bar {
  width: 100%;
  height: 2px;
  background-color: var(--off-white);
  position: relative;
}
.about-why-progress-fill {
  background-color: var(--primary);
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
.about-difference-col {
  padding: 3rem 4rem;
  margin-top: 5rem;
}
.about-difference-col.col-1 {
  border-radius: 2rem 0 0 2rem;
  border: 1px solid #333333;
  border-right: 0;
}
.about-difference-col.col-2 {
  background-color: #089191;
  border-radius: 2rem;
  padding: 6rem 4rem;
  z-index: 2;
}
.about-difference-col.col-1 {
  border-radius: 2rem 0 0 2rem;
  border: 1px solid #333333;
  border-right: 0;
}
.about-difference-col.col-3 {
  border-radius: 0 2rem 2rem 0;
  border: 1px solid #444444;
  border-left: 0;
  background-color: #121212;
}
.about-difference-col h6 {
  font-size: 2.8rem;
  padding-bottom: 3rem;
}
.about-difference-col li {
  padding: 2rem 0;
  border-top: 1px solid #333333;
  color: var(--off-white);
}
.about-difference-col.col-2 li {
  color: var(--white);
}
.about-difference-col.col-2 li {
  border-color: #d9d9d9;
}
.about-difference-col .tag {
  top: 2rem;
  right: -0.8rem;
}
.about-difference-col .tag img {
  max-height: 6rem;
}
.cursor-pointer {
  cursor: pointer;
}
.about-team-item .team-img:hover img {
  transform: scale(1.05);
}
.about-timeline-wrapper .timeline-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  border-top: 1px dashed #848484;
}
.about-timeline-progress-fill {
  position: absolute;
  left: 0;
  top: -2px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s ease;
  will-change: width;
}
.about-timeline-item * {
  transition: all 0.6s ease;
  font-weight: 700;
}
.about-timeline-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slick-slide:nth-of-type(even) .about-timeline-item {
  padding-top: 32rem;
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: #8b8b8b;
}
.slick-slide:nth-of-type(even) .about-timeline-item::before {
  bottom: unset;
  top: 26rem;
}
.slick-slide.active-1 .about-timeline-item::before,
.slick-slide.active-2 .about-timeline-item::before,
.slick-slide.active-3 .about-timeline-item::before {
  background-color: var(--primary);
}

.about-timeline-item .icon {
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  padding: 1rem;
  margin: 0 auto;
}
.slick-slide.active-1 .about-timeline-item .icon,
.slick-slide.active-2 .about-timeline-item .icon,
.slick-slide.active-3 .about-timeline-item .icon {
  border-color: var(--primary);
}
.about-timeline-item .icon img {
  max-height: 4.6rem;
}

.slick-slide.active-1 .about-timeline-item .icon img,
.slick-slide.active-2 .about-timeline-item .icon img,
.slick-slide.active-3 .about-timeline-item .icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(1000%)
    hue-rotate(145deg) brightness(90%) contrast(95%);
}
.about-timeline-item .year {
  font-size: 1.8rem;
  display: inline-block;
  margin: 2rem 0 1rem 0;
}
.about-timeline-item .title {
  font-size: 2.2rem;
  width: calc(100% + 5rem);
  transform: translateX(-2.5rem);
  min-height: 6.5rem;
}

/*  */
.team-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team-popup.active {
  opacity: 1;
  visibility: visible;
}

.team-popup-card {
  width: 433px;
  max-width: calc(100% - 30px);
  background: #fff;
  border-radius: 4rem 4rem 4rem 0;
  padding: 4rem 3rem;
  position: relative;
  transform: translateY(20px);
  transition: 0.3s;
}

.team-popup.active .team-popup-card {
  transform: translateY(0);
}

.team-popup-close {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  font-size: 3.5rem;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: var(--white);
}
.team-popup-close:hover {
  background-color: var(--primary-hover);
}

.team-popup-inner {
  display: flex;
  gap: 18px;
}

.team-popup-image {
  width: 100px;
  flex-shrink: 0;
}

.team-popup-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.team-popup .team-id {
  padding-right: 6rem;
}
.team-popup-designation {
  display: block;
  color: var(--primary);
}
.team-popup-description {
  color: #787878;
  max-height: 70vh;
  overflow-y: auto;
}

.team-popup-linkedin {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid #777777;
  padding: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
.team-popup-linkedin:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.team-popup-linkedin img {
  max-height: 2.5rem;
}
.team-popup-linkedin:hover img {
  filter: brightness(100);
}

/* TEXT EDITOR CONTENT */
.generic-page-content {
  padding-top: 10rem;
}
.text-editor-content p,
.text-editor-content div {
  margin-top: 2rem;
}
.text-editor-content li {
  margin: 10px 0;
}
.text-editor-content ul,
.text-editor-content ol {
  margin-top: 3rem;
  padding-left: 2.5rem;
}
.text-editor-content h1,
.text-editor-content h2,
.text-editor-content h3,
.text-editor-content h4,
.text-editor-content h5,
.text-editor-content h6 {
  margin-top: 5rem;
}

.generic-page-content iframe,
.generic-page-content video,
.generic-page-content img,
.text-editor-content iframe,
.text-editor-content video,
.text-editor-content img {
  max-width: 100%;
  margin-top: 5rem;
  margin-bottom: 3rem;
  display: block;
}
table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  color: var(--white);
  background-color: var(--black-80);
  margin-top: 5rem;
  overflow-x: auto;
}

td,
th {
  border: 1px solid var(--grey);
  padding: 8px;
}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #333333;
  color: var(--white);
}
/* PROGRAM DETAIL PAGE */
.breadcrumb {
  color: var(--grey);
  gap: 1rem;
  margin-bottom: 2rem;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb img {
  max-height: 1rem;
  display: inline-block;
}
.program-banner .banner-content {
  padding: 20rem 0;
  min-height: 600px;
}
.pd-banner-usp-box {
  position: absolute;
  bottom: -8rem;
  left: 0;
}
.pd-banner-usps {
  background: #00000059;
  padding: 4rem 0;
  border-radius: 1.5rem;
  border: 1px solid #343232;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pd-banner-usps li {
  padding: 0 4rem;
  border-right: 1px solid #363636;
}
.pd-banner-usps li:last-child {
  border-right: none;
}
.pd-banner-usps img {
  max-height: 4.7rem;
}
.pd-banner-usps h6 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.pd-banner-usps .subtitle {
  letter-spacing: -0.3px;
}
.pd-banner-usps .subtitle span {
  font-weight: 400;
}
.pd-about-section .description * {
  letter-spacing: -0.2px;
}
.pd-about-benefits {
  max-width: 47rem;
  border-radius: 2rem;
  height: max-content;
  background-color: #089191;
}
.pd-about-benefits .box-header {
  padding: 4rem 4rem;
  background-color: #1fb0b0;
}
.pd-about-benefits .ribbon {
  width: 4.8rem;
  right: 5rem;
}
.pd-about-benefits ul {
  padding: 0 4rem;
}

.pd-about-benefits li {
  padding: 2.5rem 0 2.5rem 4rem;
  border-bottom: 1px solid #126868;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}
.pd-about-benefits li:last-child {
  border-bottom: 0;
  padding-bottom: 4rem;
}
.pd-about-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.9rem;
  height: 2.9rem;
  background: url("../img/tick-mark-white.png") no-repeat center;
  background-size: contain;
}
.pd-curriculum-section .sticky {
  top: 70px;
}
.accordion {
  border-top: 1px solid var(--grey);
}
.accordion:last-of-type {
  border-bottom: 1px solid var(--grey);
}
.accordion-head {
  cursor: pointer;
  position: relative;
  padding: 3rem 4rem 3rem 0;
}
.accordion-toggle {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 4rem;
}
.accordion-toggle span {
  display: inline-block;
  background-color: var(--white);
}
.accordion-toggle span:first-child {
  width: 100%;
  height: 1px;
}
.accordion-toggle span:last-child {
  width: 1px;
  height: 100%;
  transition: all 0.4s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.open .accordion-toggle span:last-child {
  opacity: 0;
}
.accordion-body {
  display: none;
  padding-bottom: 5rem;
}
.pd-curriculum-bottom-box {
  padding: 5rem 4rem;
  border: 1px solid #707070;
}
.pd-curriculum-bottom-box .tags {
  gap: 1.5rem;
}
.pd-curriculum-bottom-box .tags li {
  border: 1px solid #8c8c8c;
  padding: 1rem 1rem;
  border-radius: 1rem;
  background-color: #1a1a1a;
  letter-spacing: -0.3px;
}
.pd-sidebar-apply-box .text-box {
  padding: 10rem 5rem 0 5rem;
}
.pd-sidebar-apply-box {
  border-radius: 0 0 6rem 0;
}
.con-form-wrapper.pd-sidebar-apply-box .con-form {
  padding: 0;
}
.pd-sidebar-apply-box .thumb-box img {
  max-height: 42rem;
}
.pd-batch-item {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(153, 153, 153, 0.1) 100%
  );
  padding: 4rem 0;
  border-radius: 2.5rem;
  border: 1px solid #333333;
}
.pd-batch-item > div {
  padding: 0 5rem;
}
.pd-batch-item .meta-info {
  padding: 2.5rem 3rem 2.5rem 6rem;
  border-left: 2px solid transparent;
  border-image: url("../img/pd-batch-divider.png") 2;
}
.pd-batch-item .duration {
  width: 30rem;
}
.pd-batch-item .mode {
  border-right: 2px solid transparent;
  width: 40rem;
}
.pd-batch-item .btn-box {
  width: max-content;
}
.pd-batch-item .status {
  padding: 1rem;
  border-radius: 0.9rem;
  line-height: 1;
  background-color: var(--primary);
}
.pd-batch-item.close .status {
  background-color: #464646;
}
.pd-batch-item .date span,
.pd-batch-item .meta-info .title {
  color: var(--primary);
}
.pd-batch-item.close .date span,
.pd-batch-item.close .meta-info .title {
  color: #a2a2a2;
}
.pd-batch-item .meta-info .title {
  font-size: 1.6rem;
  line-height: 1;
}
.pd-batch-item .meta-info .icon {
  max-height: 4rem;
}
.pd-batch-item.close .btn {
  pointer-events: none;
}
.pd-batch-item.close .btn .btn-arrow {
  background-color: #a2a2a2;
}
.pd-career-tag {
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  border: 1px solid #35fafa;
  background-color: #28aaaa;
  line-height: 1;
}
.pd-placement-item {
  aspect-ratio: 1/1;
  width: 100% !important;
  padding: 0;
}
.pd-placement-item span {
  padding: 5rem;
}
.pd-placement-slider .slick-list {
  padding: 0 1px;
}

.com-grey-dots .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  position: static;
  list-style: none;
  gap: 5px;
}
.com-grey-dots .slick-dots button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 0;
  outline: none;
  color: transparent;
  overflow: hidden;
  background-color: #5e5e5e;
}
.com-grey-dots .slick-dots .slick-active button {
  background-color: var(--white);
}
.pd-gallery-slider .slick-list {
  padding: 0 30%;
  margin: 0 -1.5rem;
}
.pd-gallery-slider .slick-slide {
  margin: 0 1.5rem;
}
.pd-review-section .google-review {
  max-width: 49rem;
}
.pd-text-review {
  background-color: #141414;
  border-radius: 2.5rem;
  padding: 4rem 3rem;
  border: 1px solid #202020;
}
.pd-text-review .quote-icon {
  width: 6.6rem;
}
.pd-text-review .avatar {
  width: 7.8rem;
  height: 7.8rem;
  border-radius: 50%;
}
.pd-text-review .meta-info {
  padding-top: 5rem;
  border-top: 1px solid #202020;
}
.video-play-btn {
  cursor: pointer;
  transition: all 0.4s ease;
}
.video-play-btn.hide {
  opacity: 0;
}
.pd-video-review .play-icon {
  width: 6.6rem;
  height: 6.6rem;
}
.play-btn-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pd-contact-box {
  padding: 6rem 4rem;
  background-color: #151515;
}
.pd-contact-list li {
  padding: 3rem 0;
  border-bottom: 1px solid #444444;
}
.pd-contact-list.grid li {
  border-bottom: 0;
  border-left: 1px solid #444444;
  padding: 0 2rem 0 4rem;
}
.pd-contact-list.grid li:last-child {
  border-right: 1px solid #444444;
}
.pd-contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pd-contact-list .icon {
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid #676767;
  padding: 5px;
  transition: all 0.4s ease;
}
.pd-contact-list .icon img {
  max-height: 2.4rem;
  max-width: 2.3rem;
}
.pd-contact-list .title {
  font-size: 1.8rem;
}

/* --------- BLOG PAGE ---------- */
.blog-listing-banner .banner-content {
  min-height: 85rem;
}
.blog-categories-box {
  padding-bottom: 7rem;
  margin-bottom: 7rem;
  border-bottom: 1px solid #333333;
}
.blog-category-links a,
.blog-category-links button {
  padding: 1rem 1.5rem;
  background-color: #171717;
  border-radius: 1rem;
  line-height: 1;
  display: inline-block;
}
.blog-category-links a:hover,
.blog-category-links a.active,
.blog-category-links button:hover,
.blog-category-links button.active {
  background-color: var(--primary);
}

.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
}
.blog-listing.grid {
  grid-row-gap: 6rem;
}
.blog-item .blog-thumb {
  height: 31rem;
}
.blog-item:hover .blog-thumb img {
  transform: scale(1.1);
}
.blog-bottom-bar {
  background-color: var(--primary);
  padding: 5rem 7rem;
}
.blog-bottom-bar::before,
.blog-bottom-bar::after {
  content: "";
  position: absolute;
  background-color: #3fa7a7;
  border-radius: 50%;
}
.blog-bottom-bar::before {
  width: 25rem;
  height: 25rem;
  top: -19rem;
  right: 20%;
}
.blog-bottom-bar::after {
  width: 37rem;
  height: 37rem;
  bottom: -25rem;
  left: 37%;
}
.bd-intro-box .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--off-white);
}
.bd-main-content {
  color: #b2b2b2;
}
.bd-main-content h1,
.bd-main-content h2,
.bd-main-content h3,
.bd-main-content h4,
.bd-main-content h5,
.bd-main-content h6 {
  color: var(--white);
}
.bd-main-content img {
  border-radius: 2.5rem;
}
.bd-main-content-wrapper .sticky {
  top: 7rem;
}
.bd-sidebar {
  width: 28%;
}
.bd-table-content {
  padding: 2rem 2rem;
  background-color: #1d1d1d;
}
.white-tick-list li {
  padding: 2rem 2rem 2rem 3rem;
  position: relative;
}
.white-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3rem;
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/white-tick-list.png") no-repeat center;
  background-size: contain;
}
.bd-table-content li {
  border-bottom: 1px solid #333333;
}
.bd-table-content li:last-child {
  border-bottom: 0;
}
.bd-journey-box .text-box {
  padding: 4rem 2.5rem;
}
.related-blogs-section,
.bg-black-gradient {
  background: linear-gradient(180deg, #0c0c0c -14.91%, #000000 76.05%);
}
.up-floating-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  padding-bottom: 10rem;
  z-index: 50;
  width: 10rem;
  height: 10rem;
}
.up-floating-wrapper.active {
  width: max-content;
  max-width: 52rem;
  height: max-content;
}

.up-floating-box {
  background: linear-gradient(
    180deg,
    #86eeee 11.14%,
    #dfdfdf 51.15%,
    #ffffff 87.69%
  );
  border-radius: 1.7rem;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  transform: translateY(200vh);
  visibility: hidden;
  will-change: transform;
}
.up-floating-wrapper.active .up-floating-box {
  transform: translateY(0);
  visibility: visible;
}
.up-floating-box .top {
  padding: 3rem;
  max-height: 70vh;
  overflow-y: auto;
}
.up-floating-box .card-subtitle {
  font-size: 1.8rem;
  margin-top: 5px;
}
.up-floating-box .program-list li {
  margin-top: 2rem;
}
.up-floating-box .program-list a {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
.up-floating-box .program-list a:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.up-floating-box .program-list .arrow {
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 1.5rem 0 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.up-floating-box .program-list .arrow img {
  max-width: 1.5rem;
}
.up-floating-box .program-list a:hover .arrow {
  opacity: 1;
}
.up-floating-box .program-list .icon {
  width: 7rem;
  height: 7rem;
  background-color: #f3f3f3;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.up-floating-box .program-list .icon img {
  max-height: 3.5rem;
}
.up-floating-box .program-list li .flex-1 {
  padding-left: 1rem;
  padding-right: 4rem;
}
.up-floating-box .program-list .title {
  font-size: 1.6rem;
  color: var(--black);
}
.up-floating-box .program-list li p {
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 1.3;
  margin-top: 5px;
}
.up-floating-box .bottom {
  border-radius: 2rem;
  background-color: var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.up-floating-box .bottom .up-link {
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 2rem 1rem;
  color: var(--black);
  text-align: center;
}
.up-floating-box .bottom .up-link:hover {
  color: var(--primary);
}
.up-floating-box .bottom .up-link img {
  max-height: 2.5rem;
}
.up-floating-box .bottom .up-link:first-of-type {
  border-right: 1px solid var(--grey);
}

.floating-up-toggle {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  position: fixed;
  left: 5rem;
  bottom: 5rem;
}
.up-floating-wrapper.active .floating-up-toggle {
  width: 6rem;
  height: 6rem;
}

.floating-up-toggle .inner {
  position: relative;
  width: 7.6rem;
  height: 7.6rem;
}

.floating-up-toggle .icon {
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  background: var(--primary);
}
.floating-up-toggle .icon img {
  max-width: 3rem;
}

.floating-up-toggle .line-1 {
  border: 1px solid #089191;
  animation: upBarLine 2s infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 6.4rem;
  height: 6.4rem;
}
.floating-up-toggle .line-2 {
  width: 6.4rem;
  height: 6.4rem;
  border: 2px solid var(--primary);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.floating-up-toggle .text-sm {
  line-height: 1.2;
  font-size: 1.6rem;
  max-width: 12rem;
}

@keyframes upBarLine {
  0% {
    width: 6.4rem;
    height: 6.4rem;
    opacity: 1;
  }

  100% {
    width: 9rem;
    height: 9rem;
    opacity: 0.2;
  }
}

.floating-up-close,
.up-floating-wrapper.active .floating-up-open-btn {
  width: 0;
  height: 0;
  transform: translateX(-100vw);
  opacity: 0;
}
.active .floating-up-close {
  transform: translateX(0);
  padding: 1.4rem;
  width: 5.5rem;
  height: 5.5rem;
  opacity: 1;
}
.floating-up-close,
.floating-up-open-btn {
  transition: all 0.4s ease;
}
.no-scrollbar {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.partnership-collab-gallery .small {
  width: calc(33% - 1rem);
}

.partnership-whyus-section {
  background: linear-gradient(
    180deg,
    #0c0c0c -5.28%,
    rgba(12, 12, 12, 0.183283) 31.47%,
    rgba(12, 12, 12, 0) 56.56%
  );
}
.partnership-whyus-section .about-approach-item {
  padding: 13rem 2rem 8rem 2rem;
}
.hp-partner-item.partnership-partner-item .text-box {
  border-left: 1px dashed var(--grey);
  border-top: 0;
  height: auto;
  flex: 1;
}
.hp-partner-item.partnership-partner-item .logo-box .inner {
  aspect-ratio: 1/0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-partner-item.partnership-partner-item .logo-box .inner,
.hp-partner-item.partnership-partner-item .text-box .inner {
  padding: 4rem 4rem;
}
.hp-partner-item.partnership-partner-item .logo-box img {
  max-height: 16rem;
  max-width: 30rem;
}
.partnership-testimonials-section .text-box .quote {
  padding-left: 3rem;
  border-left: 2px solid #ffffff;
  font-size: 3.2rem;
}
.partnership-testimonials-section p {
  color: var(--off-white);
}
.partnership-testimonials-section .meta-box {
  padding-top: 5rem;
  border-top: 1px solid #d9d9d9;
}
.partnership-testimonials-section .avatar {
  width: 11rem;
  height: 11rem;
  padding: 0.5rem;
  border: 2px solid var(--primary);
  margin-right: 2rem;
}
.partnership-network-usp {
  background-color: #292929;
  padding: 3rem 3rem;
  transition: all 0.4s ease;
}
.partnership-network-usp:hover {
  background-color: var(--primary);
}
.partnership-network-usp .icon {
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  background-color: var(--primary);
  padding: 2.5rem;
  margin-right: 2rem;
  transition: all 0.4s ease;
}
.partnership-network-usp:hover .icon {
  background-color: var(--white);
}
.partnership-network-usp:hover .icon img,
.primary-contact-social li:hover .icon img {
  filter: invert(61%) sepia(58%) saturate(701%) hue-rotate(131deg)
    brightness(91%) contrast(91%);
}
.primary-contact-social li,
.primary-contact-social .icon {
  border-color: #4da69f;
}
.primary-contact-social li:hover .icon {
  background-color: var(--white);
}
.primary-contact-form .input-box {
  margin-bottom: 5rem;
}
.primary-contact-form .input-box.half {
  width: 48%;
}
.primary-contact-form label {
  margin-bottom: 1rem;
  display: block;
}
.primary-contact-form input,
.primary-contact-form textarea,
.primary-contact-form select {
  background-color: transparent;
  border: 0;
  outline: none;
  font-family: inherit;
  padding-bottom: 2rem;
  border-bottom: 1px solid #bababa;
}
.primary-contact-form input::placeholder,
.primary-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.primary-contact-form textarea {
  height: 15rem;
}
.primary-contact-form .btn-white:hover {
  background-color: var(--primary-hover);
}
.primary-contact-form .btn-white:hover .btn-arrow img {
  filter: none;
}
/* ------------ STUDENT REVIEWS PAGE ------------- */
.student-reviews-filters a,
.student-reviews-filters .button {
  padding: 5px 2rem;
  background-color: #171717;
  color: var(--white);
  min-width: 12rem;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  border: 0;
  font-size: inherit;
}
.student-reviews-filters a:hover,
.student-reviews-filters .button:hover,
.student-reviews-filters a.active,
.student-reviews-filters .button.active {
  background-color: var(--primary);
}
.student-reviews-section .filter-box {
  border-bottom: 1px solid #333333;
  padding-bottom: 5rem;
}
.frosted-play-btn {
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.frosted-play-btn:hover {
  background-color: var(--primary);
}
.student-review-item {
  background-color: #0e0e0e;
}
.student-review-item .content {
  padding: 4rem 3rem;
  transition: all 0.4s ease;
}
.student-review-item .avatar {
  width: 7.3rem;
  height: 7.3rem;
  border: 2px solid var(--white);
}
.student-review-item.active .content {
  opacity: 0;
}
.student-review-item video {
  max-height: 70rem;
}
.gallery-page-banner {
  padding-top: 22rem;
}
.gallery-filter-box {
  padding: 4rem 0;
  border-top: 1px solid #333333;
}
.gallery-post-item {
  margin-top: 3rem;
}
.gallery-post-item.small {
  width: calc(50% - 1.5rem);
}
.gallery-post-item.large {
  width: 100%;
}
.gallery-post-item .content-box {
  padding: 3rem 5rem;
}
.gallery-post-item .content-box .title {
  max-width: 32rem;
}
.gallery-post-item .avatar {
  width: 7.2rem;
  height: 7.2rem;
  border: 2px solid var(--white);
}
.gallery-post-item .content-box {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.01),
    rgba(0, 0, 0, 0)
  );
}
.gallery-post-item.small .content-box {
  padding: 3rem 3rem;
}

.gallery-post-item .content-box .meta-box {
  max-width: 55%;
}
.faq-group-links {
  top: 10rem;
  background-color: #161616;
  padding: 2rem 3rem;
  border-radius: 2rem;
  border: 1px solid #333333;
}
.faq-group-link {
  gap: 15px;
  padding: 2.5rem 0;
  border-bottom: 1px solid #666666;
}
.faq-group-link:hover {
  transform: translateX(5px);
}
.faq-group-link:last-of-type {
  border-bottom: 0;
}
.faq-group-link img {
  width: 3.5rem;
  max-height: 3.2rem;
}
.faq-group {
  margin-bottom: 7rem;
}
.faq-group:last-of-type {
  margin-bottom: 0;
}
.faq-bottom-bar .content {
  padding: 5rem 9rem;
}
.faq-bottom-bar .avatar {
  max-width: 33rem;
}
.faq-bottom-bar .text-box {
  max-width: 60rem;
  margin-left: 4rem;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
  font-size: 16px;
  width: max-content;
  margin: 30px auto 0 auto;
  max-width: 100%;
  border-radius: 6px;
  border-width: 1px;
}
.wpcf7-not-valid-tip {
  font-size: 15px;
  margin-top: 10px;
}

.com-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: all 0.4s ease;
}
.com-popup.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.com-popup .popup-inner {
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.com-popup.active .popup-inner {
  visibility: visible;
  opacity: 1;
}
.com-popup .popup-wrapper {
  width: max-content;
  max-width: 1024px;
  height: max-content;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.com-popup .popup-overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.com-popup .popup-content {
  width: max-content;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  position: relative;
  z-index: 2;
}
.com-popup .close-popup {
  width: 6rem;
  height: 6rem;
  padding: 1.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  transition: all 0.4s ease;
  z-index: 2;
}
.com-popup .close-popup:hover {
  background-color: var(--primary-hover);
}
.review-popup video {
  max-height: 100%;
}

.reviews-loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.reviews-loader.active {
  display: flex;
}

.reviews-loader .spinner {
  width: 7rem;
  height: 7rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: reviewSpinner 0.8s linear infinite;
}

@keyframes reviewSpinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.tool-list-item {
  padding: 6rem 6rem;
  background-color: #060606;
  border: 1px solid #222222;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tool-list-item .thumb-box {
  width: 34rem;
  max-width: 100%;
}
.tool-list-item .content-box,
.tool-list-item .link-box {
  padding-left: 6rem;
}
.tool-list-item .content-box {
  padding-right: 6rem;
}
.tool-list-item .link-box {
  width: max-content;
  max-width: 27%;
  border-left: 1px solid #333333;
}
.tool-list-item .link-box ul {
  list-style: none;
}

.tool-list-item .link-box ul a {
  margin: 1rem 0;
  padding: 0.5rem 0 0.5rem 2.5rem;
}
.tool-list-item .link-box ul a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  top: 1.9rem;
}
.tool-list-item .link-box ul a:hover,
.tool-list-item .link-box ul a:hover::before {
  color: var(--primary);
}
.same-height-slider .slick-track {
  display: flex !important;
}
.same-height-slider .slick-slide {
  height: inherit;
}
.same-height-slider .slick-slide > div {
  height: 100%;
}
