@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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: #000000;
  --white: #ffffff;
  --yellow: #d4af37;
  --blue: #396ba1;
  --gold: #d4af38;
}

html {
  font-size: 10px;
}
button {
  font-family: inherit;
  font-size: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  color: #262c29;
  font-size: 2.2rem;
  letter-spacing: -0.05px;
}
blockquote,
q {
  quotes: none;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Poppins", sans-serif;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
}
h1 {
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -0.1rem;
  font-weight: 500;
}
h2 {
  font-size: 6rem;
  line-height: 1.1;
  letter-spacing: -0.1rem;
}
h3 {
  font-size: 5rem;
  line-height: 1.2;
}
h4 {
  font-size: 4rem;
  line-height: 1.2;
}
h5 {
  font-size: 3.5rem;
  line-height: 1.2;
}
h6 {
  font-size: 2.4rem;
  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%;
  transition: all 0.4s ease;
}
textarea {
  max-width: 100%;
}
form {
  width: 100%;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
.garamond {
  font-family: "EB Garamond", serif;
}
.italic {
  font-style: italic;
}
.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;
}
.max-w-100 {
  max-width: 100%;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.h-max {
  height: max-content;
}
.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);
}
.bg-black {
  background-color: var(--black);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-light-blue {
  background-color: #3a6ea5;
}
.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-left {
  text-align: left;
}
.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: 12rem;
  padding-bottom: 12rem;
}

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

.top-padding {
  padding-top: 12rem;
}
.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;
}

.text-white,
.text-white * {
  color: var(--white);
}
.text-black,
.text-black * {
  color: #0c0d10;
}
.text-light-black,
.text-light-black * {
  color: #616161;
}
.text-gold {
  color: var(--gold);
}
.font-200,
.font-light {
  font-weight: 200;
}
.font-300 {
  font-weight: 300;
}
.font-500,
.font-medium {
  font-weight: 600;
}
.font-600 {
  font-weight: 600;
}
.font-700,
.font-bold {
  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;
}
.btn,
.submit-box input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
  line-height: 1;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  cursor: pointer;
  border: 0;
  outline: 0;
  height: max-content;
}

.btn-arrow {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  margin-left: 4rem;
}
.btn-arrow img {
  max-height: 2rem;
}
.btn,
.btn * {
  transition: all 0.4s ease;
}
.btn:hover .btn-arrow,
.com-submit-btn:hover .btn-arrow {
  transform: scale(1.05);
}
.btn-yellow {
  background-color: var(--yellow);
  color: var(--white);
}
.btn-white {
  background-color: var(--white);
  color: var(--black);
}
.btn-white .btn-arrow {
  background-color: var(--yellow);
}
.btn-white .btn-arrow img {
  filter: invert(1);
}
.btn-white .btn-arrow.blue-arrow {
  background-color: #68a4d0;
}
.btn-yellow:hover,
.submit-btn-yellow:hover {
  background-color: #c9a325;
}
.btn-white:hover {
  background-color: #f1f1f1;
}
.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)
  );
}

.container {
  width: 84%;
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}
/* .text-lg {
  font-size: 2.2rem;
} */
.text-sm {
  font-size: 2rem;
}
.description strong {
  font-weight: 500;
}
.description p {
  margin-bottom: 2rem;
}
.section-sub {
  text-transform: capitalize;
  font-style: italic;
  margin-bottom: 2rem;
}
.invert {
  filter: invert(1);
}
.video-box {
  position: relative;
}
.text-editor-content p {
  margin-top: 2rem;
}
.text-editor-content blockquote {
  margin-top: 3rem;
}
.text-editor-content p:first-of-type {
  margin-top: 0;
}
.text-editor-content ul {
  padding-left: 2rem;
}
.text-editor-content li {
  margin: 7px 0;
}
/* ------------ HEADER STYLES -------------- */
header.header {
  background: linear-gradient(90deg, #112e51 0%, #346599 100%);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
}
header .header-wrapper {
  width: 91%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-logo {
  max-width: 17rem;
}
.header-menu-box ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header-menu-box ul li a {
  color: var(--white);
  font-size: 2rem;
  text-transform: capitalize;
  padding: 3.5rem 3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.header-menu-box li.menu-item-has-children {
  position: relative;
}
.header-menu-box li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 8px;
  background: url("../img/menu-dropdown-arrow-white.png") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.header-menu-box li .sub-menu {
  position: absolute;
  display: block;
  width: max-content;
  min-width: 20rem;
  left: 0;
  top: 100%;
  background-color: var(--blue);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 1rem 1rem;
}
.header-menu-box li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header-menu-box li .sub-menu a {
  border-top: 1px solid #014b70;
  padding: 2rem;
  display: block;
  color: white;
}
.header-menu-box li .sub-menu li:first-child a {
  border-top: 0;
}
.header-menu-box li a:hover,
.header-menu-box li .sub-menu a:hover,
.header-menu-box li.current-menu-item a,
.header-menu-box li .current-menu-parent a {
  color: var(--yellow);
}
.sub-menu-toggle {
  display: none;
}
.header-btn {
  background-color: var(--white);
  height: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  border-radius: 8rem;
  line-height: 1;
  margin-left: 3rem;
}
.header-btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}
#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;
  left: 0;
  top: 0;
  margin-top: 0;
  transform: translateX(0);
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

/* ---------- Footer ----------- */
.footer {
  background-color: #0b2545;
}
.footer-top {
  padding: 10rem 0;
}
.footer-social-links {
  gap: 2rem;
}
.footer-social-links img {
  max-height: 4rem;
}
.footer-social-links a:hover img {
  transform: scale(1.1);
}
.footer-menu-box {
  padding: 0 3rem 0 5rem;
  border-left: 1px solid #495b71;
}
.footer-menu-box:last-of-type {
  border-right: 1px solid #495b71;
}
.footer-menu-box ul {
  list-style: none;
  padding-top: 2.5rem;
}
.footer a,
.footer p {
  color: #b7d5fa;
}
.footer-menu-box a {
  display: block;
  padding: 6px 0;
  font-size: 2.3rem;
  font-weight: 300;
}
footer a:hover,
.footer .current-menu-item a {
  color: var(--white);
}
.footer-bottom {
  padding: 5rem 0;
  gap: 2rem;
}
.footer-bottom * {
  font-size: 1.8rem;
  line-height: 1;
}
.footer .copyright {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid #b7d5fa;
}
.footer .terms-links {
  gap: 1rem;
}
.footer-logo img {
  max-width: 21rem;
}
/* ----------- HOMEPAGE STYLES -------------- */

.hp-banner-section {
  background-color: #0d6bbf;
}
.hp-services-section .top {
  background-color: #f5f9ff;
}
.hp-banner-section .bg-box {
  height: 116rem;
}

.hp-banner-content {
  padding-top: 20rem;
}
.hp-banner-section-v2 .bg-box {
  height: 100rem;
}
.hp-banner-section-v2 .content-box {
  /* background:
    linear-gradient(
      180deg,
      rgba(6, 124, 234, 0.5) -1.71%,
      rgba(14, 106, 191, 0.4) 7.87%,
      rgba(14, 106, 191, 0) 18.67%
    ),
    linear-gradient(
      89.98deg,
      rgba(6, 120, 227, 0.5) 2.76%,
      rgba(14, 106, 191, 0.4) 21.16%,
      rgba(14, 106, 191, 0) 59.17%
    ),
    linear-gradient(102.18deg, rgba(11, 37, 69, 0.75), rgba(58, 110, 165, 0.75)); */
  padding-top: 26rem;
}
.hp-banner-content .description strong,
.hp-banner-content .description b {
  color: var(--white);
}
.hp-banner-content .right-side {
  max-width: 41rem;
}
.hp-banner-content .right-side .btn {
  width: 100%;
}
.hp-banner-content .right-side .btn .btn-arrow {
  margin-left: auto;
}
.hp-banner-btns {
  gap: 2rem 1rem;
}
.hp-banner-section-v2 .hp-banner-scroll {
  bottom: -4rem;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--white);
  border-radius: 1.7rem;
  padding: 1rem 2rem;
  color: var(--white);
}
.hp-banner-btns .service-btn {
  width: 100%;
  margin-bottom: 2rem;
}
.service-btn:hover {
  background-color: var(--white);
  color: var(--black);
}
.service-btn:hover .arrow img {
  filter: invert(1);
}
.service-btn .icon {
  margin-right: 10px;
  max-height: 4rem;
  width: 4.6rem;
}
.service-btn .arrow {
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid #b3b3b3;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  margin-left: auto;
}
.service-btn .arrow img {
  max-height: 1.5rem;
}
.yellow-scroll-down {
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  background-color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 21%;
}
.yellow-scroll-down img {
  max-height: 3.2rem;
}
.playing .yellow-scroll-down {
  display: none;
}
/* Pulse ring */
.yellow-scroll-down::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--yellow);
  z-index: -1;
  animation: pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Arrow animation */
.scroll-down-arrow {
  animation: bounce 1.5s infinite ease-in-out;
}

/* Up-down movement */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.hp-services-section .top {
  padding-bottom: 30rem;
}
.hp-services-section .left-box {
  width: 57%;
}
.hp-services-section .thumb-box {
  width: 38%;
  max-width: 656px;
  transform: translateY(-50px);
}
.hp-service-listing {
  grid-column-gap: 3.5rem;
  transform: translateY(-15rem);
}
.hp-service-item {
  background-color: var(--white);
  padding: 14rem 2.2rem 6rem 2.2rem;
  border-radius: 2rem;
  box-shadow: 0px 14px 24px 0px #00000008;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hp-service-item:hover {
  box-shadow: 0px 73px 64px 0px #00000017;
}
.hp-service-item .icon {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3a6ea5;
  border: 1.5rem solid #f5f9ff;
  padding: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8rem;
}
.hp-service-item h5 {
  letter-spacing: -0.5px;
}
.hp-service-item p {
  letter-spacing: -0.08px;
}
.hp-whyus-section .com-padding {
  border-top: 1px solid #272c2680;
}
.hp-whyus-col {
  width: 48%;
}
.hp-whyus-item {
  width: 48%;
  position: relative;
  overflow: hidden;
  border-radius: 2.7rem;
  margin-top: 6rem;
}
.hp-whyus-item:nth-of-type(even) {
  transform: translateY(-30rem);
}
.hp-whyus-item .content-box {
  background: linear-gradient(
    195.26deg,
    rgba(22, 53, 90, 0) 59.31%,
    rgba(22, 53, 90, 0.792314) 78.87%,
    #16355a 100.21%
  );
  padding: 5rem 5rem;
}
.hp-whyus-item:nth-of-type(2) .content-box {
  background: linear-gradient(
    180deg,
    rgba(22, 53, 90, 0) 15.12%,
    rgba(22, 53, 90, 0.792314) 49.25%,
    #16355a 86.51%
  );
}
.hp-whyus-item h5 {
  letter-spacing: -0.09px;
}
.hp-whyus-item .description {
  max-width: 62rem;
}
.hp-whyus-item .content-box ul,
.wheel-list,
.wheel-list ul {
  list-style: none;
  padding-left: 0;
}
.hp-whyus-item .content-box li,
.wheel-list li,
.wheel-list-item {
  margin: 10px 0;
  position: relative;
  padding-left: 3rem;
}
.hp-whyus-item .content-box li::before,
.wheel-list li::before,
.wheel-list-item::before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/list-wheel-white.webp") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 5px;
}
.yellow-wheel-list li::before,
.yellow-wheel-list .wheel-list-item::before {
  background: url("../img/list-anchor-icon-yellow.webp") no-repeat center;
  background-size: contain;
}
.hp-whyus-section .com-slider-arrows {
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 6rem);
  left: -3rem;
}
.hp-whyus-usps li {
  padding: 3rem 0 3rem 5rem;
  border-top: 1px solid #d9d9d9;
}
.hp-whyus-usps li:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.hp-whyus-usps li::before {
  content: "";
  position: absolute;
  width: 3.1rem;
  height: 3.1rem;
  background: url("../img/hp-why-us-point.webp") no-repeat center;
  background-size: contain;
  left: 0;
  top: 4rem;
}
.hp-centres-section {
  background: url("../img/hp-centre-bg.webp") no-repeat center;
  background-size: cover;
}
.hp-centres-section .description p {
  letter-spacing: -0.05px;
}
.same-height-slide .slick-track {
  display: flex !important;
}
.same-height-slide .slick-slide {
  height: inherit;
}
.same-height-slide .slick-slide > div {
  height: 100%;
}
.com-slider-arrows .arrow {
  width: 6rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-hidden.slick-arrow {
  display: none !important;
}
.arrow.bg-yellow:hover {
  background-color: #b18d13;
}
.arrow.bg-blue:hover {
  background-color: #0d3e6f;
}
.slick-arrow.next,
.com-slider-arrows .next {
  margin-left: 1.5rem;
}
.hp-centres-slider .slick-list {
  margin: 0 -1.5rem;
}
.hp-centres-slider .slick-slide {
  margin: 0 1.5rem;
}
.hp-centre-item {
  background-color: white;
  border-radius: 3rem;
  overflow: hidden;
  height: 100%;
}
.hp-centre-item .content {
  padding: 5rem 3rem;
}
.hp-community-usp-item {
  border-left: 1px solid #d9d9d9;
  padding: 0 6rem;
}
.hp-community-usp-item:nth-of-type(3n) {
  border-right: 1px solid #d9d9d9;
}
.hp-community-usp-item .icon {
  max-height: 5rem;
}
.video-play-btn {
  cursor: pointer;
  z-index: 5;
}
.video-play-btn.hide {
  opacity: 0;
}
.hp-vid-play {
  position: absolute;
  top: 4rem;
  left: 4rem;
  background-color: var(--white);
  border-radius: 4rem;
  padding: 1rem 4rem 1rem 1rem;
  display: flex;
  align-items: center;
  width: max-content;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 700;
}
.hp-vid-play .play-icon {
  width: 5.3rem;
  margin-right: 2rem;
}
.video-box .yellow-scroll-down {
  bottom: 3rem;
}

.hp-community-number-usps {
  padding: 4rem 0;
  background-color: #0f294c;
  border-radius: 3rem;
}
.hcm-usp-item {
  padding: 0 5.5rem;
  position: relative;
  gap: 4rem;
}
.hcm-usp-item .icon {
  max-height: 8.4rem;
}
.hcm-usp-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: url("../img/hp-community-number-usp-line.png") no-repeat center;
  background-size: contain;
}
.hcm-usp-item h3 {
  font-size: 8.2rem;
}
.hcm-usp-item p {
  font-size: 2.8rem;
  font-weight: 300;
}
.hp-testimonial-video .video-play-btn {
  width: 8.8rem;
  height: 8.8rem;
}
.hp-testimonial-video video {
  height: 60rem;
}
.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hp-testimonial-wrapper {
  width: 53%;
}
.hp-testimonial-slider .slick-slide {
  margin: 0 1rem;
}
.hp-testimonial-slider .slick-list {
  margin: 0 -1rem;
}
.hp-testimonial-slide {
  padding: 3.5rem 3rem;
  border-radius: 2.6rem;
}
.hp-testimonial-slide .quote-icon {
  height: 5.4rem;
}
.hp-testimonial-slide .meta {
  gap: 1.5rem;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid #d9d9d9;
}
.hp-testimonial-slide p {
  line-height: 1.5;
}
.hp-testimonial-slide .avatar {
  width: 7.6rem;
  height: 7.6rem;
  border: 2px solid var(--yellow);
}
.hp-progress-bar {
  width: 100%;
  height: 3px;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
}
.hp-progress-fill {
  width: 0%;
  height: 100%;
  background: #3a6ea5;
  transition: width 0.4s ease;
}
.hp-testimonial-wrapper .flex-box {
  gap: 8rem;
}
.hp-award-section {
  background: linear-gradient(to bottom, #f5f9ff, #f5f9ff, #ffffff);
}
.hp-award-section .com-padding {
  background-color: #0f294c;
  border-radius: 7rem;
}
.hp-awards-list .slick-list {
  padding: 0 15rem;
}
.hp-awards-list .slick-slide {
  margin: 0 1.5rem;
}
.hp-award-item {
  background-color: var(--white);
  aspect-ratio: 1/1;
  padding: 3rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.hp-award-item img {
  aspect-ratio: 1/1;
}
.hp-location-section .content {
  padding-top: 37rem;
}
/* ----------------------------- */
/* ----- Location Page --------- */
/* ----------------------------- */
.location-banner-content {
  padding-top: 16rem;
}
.location-banner-content .yellow-scroll-down {
  bottom: 2.5rem;
}
.scroll-custom-border {
  width: 15rem;
  height: 15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scroll-custom-border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/scroll-arrow-custom-border.webp") no-repeat center;
  background-size: contain;
}
.scroll-custom-border img {
  max-height: 3.1rem;
}

.location-dedication-section {
  background: linear-gradient(to top, #f0f7ff, #ffffff);
}
.location-dedication-section .com-padding {
  border-top: 1px solid #b5b5b5;
}

.location-frame-box {
  width: 61rem;
  height: 79rem;
  border-radius: 10rem;
  overflow: hidden;
  padding: 6rem;
}
.location-frame-box .video-play-btn {
  width: 7.5rem;
}
.location-team-slider .slick-list {
  padding: 0 15rem;
}
.location-team-slider .slick-slide {
  margin: 0 1.5rem;
}
.location-team-slider .slide-item img {
  aspect-ratio: 1/1;
  border-radius: 2rem;
}
.location-team-item .content-box {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 48.32%,
    rgba(0, 0, 0, 0.711959) 78.55%,
    #000000 100%
  );
  padding: 4rem;
}
.location-team-item h5 {
  gap: 1.5rem;
}
.location-team-item h5 img {
  width: 2rem;
}
.pointer {
  cursor: pointer;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.team-modal.active {
  display: block;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.team-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 15px;
  padding: 20px;
  z-index: 2;
  max-height: 90vh;
}

/* Close button */
.team-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0d6bbf;
  color: var(--white);
}
.team-modal-body .img-box img {
  border-radius: 1.5rem;
}
.team-modal-body .description {
  margin-top: 3rem;
}
.team-modal-body {
  max-height: 75vh;
  overflow-y: auto;
}

.location-gallery-section {
  background: linear-gradient(to bottom, #f5f9ff, #ffffff);
}
.location-gallery-images {
  gap: 2rem;
}
.location-gallery-images .large {
  width: calc(27% - 1.5rem);
}
.location-gallery-images .small {
  width: calc(23% - 1.5rem);
}
.location-gallery-images .img-box {
  margin: 2rem 0;
}
.location-gallery-images img {
  border-radius: 2rem;
}
.location-contact-box {
  background-color: #2e6eb1;
  border-radius: 7rem;
  padding: 7rem 6rem;
}
.location-contact-section .content-box {
  bottom: -11rem;
}
.location-contact-link {
  gap: 7px;
  margin: 10px 0;
}
.location-contact-link img {
  max-height: 2.6rem;
  width: 2.2rem;
  display: inline-block;
  margin-top: 0.3rem;
}
.location-time-box {
  width: 100%;
  min-height: 24rem;
  padding: 12rem 4rem 3rem 4rem;
  max-width: 52rem;
}
.location-time-box .title {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 21rem;
  color: #f5d15e;
  z-index: 2;
}
.location-contact-section .bottom-description strong {
  color: #f5d15e;
  display: block;
}
.blue-bg-contact-form {
  background-color: #518ecd;
  padding: 5rem 4rem;
  border-radius: 4rem;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
.input-box,
.select-box {
  margin-bottom: 4rem;
}
.blue-bg-contact-form .flex-box .input-box {
  width: 48%;
}
.blue-bg-contact-form input,
.blue-bg-contact-form textarea,
.blue-bg-contact-form select {
  color: var(--white);
}
.blue-bg-contact-form input:not([type="submit"]),
.blue-bg-contact-form textarea,
.blue-bg-contact-form select {
  background-color: transparent;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 2.5rem;
  font-weight: 500;
}
.blue-bg-contact-form input:not([type="submit"])::placeholder,
.blue-bg-contact-form textarea::placeholder {
  color: var(--white);
}
.blue-bg-contact-form label {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 2rem;
}
.blue-bg-contact-form .select-box select {
  font-weight: 300;
  padding-bottom: 1rem;
  cursor: pointer;
}
.blue-bg-contact-form option {
  color: var(--black);
}
.submit-box {
  width: max-content;
  position: relative;
  border-radius: 8rem;
}
.submit-box input {
  background-color: transparent;
}
.submit-btn-yellow {
  background-color: var(--yellow);
}

.com-submit-btn {
  width: 21rem;
  height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.5rem;
  transition: all 0.4s ease;
}
.com-submit-btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  text-align: left;
}
.com-submit-btn:hover .btn-arrow {
  transition: all 0.4s ease;
}
.location-find-bar {
  border-radius: 25rem;
  padding: 5rem 8rem;
  margin-bottom: -10rem;
}
.location-find-bar .icon {
  width: 17rem;
}

.location-find-bar .text-box {
  margin-left: 5rem;
  margin-right: 8rem;
}

/* ------- BLOG PAGE ---------- */
.blog-listing-banner .bg-box {
  height: 85rem;
}
.blog-listing-banner .content-box {
  padding-top: 20rem;
}
.blog-listing-section {
  padding-top: 10rem;
}
.blog-categories a {
  border: 1px solid #7f7f7f;
  color: #7f7f7f;
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  font-weight: 500;
  line-height: 1;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blog-categories a:hover,
.blog-categories a.active {
  background-color: #306eaf;
  border-color: #306eaf;
  color: var(--white);
}
.blog-listing .blog-item {
  margin-top: 2rem;
}
.blog-item .img-box {
  height: 33rem;
}
.blog-item:hover .img-box img {
  transform: scale(1.1);
}
.blog-item h5,
.blog-item .excerpt {
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.blog-item .excerpt {
  -webkit-line-clamp: 3;
}
.blog-item h5 {
  transition: all 0.3s ease;
  -webkit-line-clamp: 2;
}
.blog-item:hover h5 {
  color: var(--blue);
}
.blog-date {
  color: #3a6ea5;
  line-height: 1;
}
.blog-date span:first-of-type {
  display: inline-block;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid #3a6ea5;
}
.blog-bottom-bar {
  padding-bottom: 10rem;
  background-color: #f5f9ff;
}
.blog-bottom-bar .inner {
  background-color: #2e6eb1;
  min-height: 43rem;
}
.blog-bottom-bar .inner .content-box {
  padding: 7rem 5rem;
}
.bd-banner-section .icon-left {
  width: 16rem;
  top: 5rem;
  left: 5rem;
}
.bd-banner-section .icon-right {
  width: 35rem;
  top: -5rem;
  right: 0;
}
.blog-content-box h2,
.blog-content-box h3,
.blog-content-box h4,
.blog-content-box h5 {
  margin-bottom: 3rem;
  margin-top: 4rem;
}
.blog-content-box h6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.blog-content-box p {
  margin-top: 3rem;
}
.blog-content-box img,
.blog-content-box video {
  margin-top: 4rem;
}
.blog-content-box p,
.blog-content-box li,
.blog-content-box div {
  color: #616161;
}
.blog-content-box li {
  margin: 8px 0;
}
.blog-content-box ul,
.blog-content-box ol {
  padding-left: 2rem;
  margin-top: 3rem;
}
.bd-cat-box {
  background-color: #f1f6ff;
  padding: 5rem 3rem;
  border-radius: 2rem;
}
.related-blogs-slider .slick-slide {
  margin: 0 1.5rem;
}
.related-blogs-slider .slick-list {
  margin: 0 -1.5rem;
}
.blog-content-box iframe {
  width: 100%;
  display: block;
  margin-top: 4rem;
  min-height: 60rem;
}

/* ------------- CAREER PAGE STYLES ------------- */
.career-banner-section .banner-anchor {
  width: 54rem;
  bottom: -10rem;
  right: 10%;
}
.circle-text-scroll,
.circle-text-scroll .circle-text-arrow {
  border: 1px solid #616161;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-text-scroll {
  width: 19rem;
  height: 19rem;
  padding: 7px;
  position: relative;
}
.circle-text-scroll .circle-text-arrow {
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-text-scroll .circle-text-arrow img {
  animation: bounce 1.5s infinite ease-in-out;
  max-height: 3rem;
}
.rotating-image {
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.square {
  aspect-ratio: 1/1;
}
.career-memories-section h2 {
  line-height: 1.3;
}
.career-memories-slider .slick-list {
  margin: 0 -2rem;
  padding: 0 15rem;
}
.career-memories-slider .slick-slide {
  margin: 0 2rem;
}
.career-memories-slider .slide-item {
  display: flex !important;
  flex-direction: column;
  position: relative;
  padding-top: 10rem;
}
.career-memories-slider .slick-slide:nth-of-type(odd) .slide-item {
  flex-direction: column-reverse;
}
.career-memories-slider .slide-item .empty-box {
  height: 12rem;
}
.career-memories-slider .slick-slide:nth-of-type(4n) .slide-item::before {
  content: "";
  position: absolute;
  width: 13rem;
  height: 15rem;
  background: url("../img/career-memory-anchor.webp") no-repeat center;
  background-size: contain;
  right: -6rem;
  top: 5rem;
}
/* .career-memories-slider .slick-slide:nth-of-type(2) .slide-item::before {
  content: "";
  position: absolute;
  width: 17rem;
  height: 10rem;
  background: url("../img/career-hand-icon.webp") no-repeat center;
  background-size: contain;
  right: -10rem;
  top: 0rem;
} */
.section-top-border {
  border-top: 1px solid #272c2680;
}
.career-process-section {
  background: linear-gradient(
    180deg,
    #ffffff 13.99%,
    #f5f9ff 53.07%,
    #ffffff 92.88%
  );
}

.career-apply-section .content-box {
  padding: 8rem 5rem;
}
.career-apply-rbt .description li {
  color: #262c29;
}
.career-intern-section .col {
  width: 47%;
}
.career-inter-logos li {
  padding: 3rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.blog-bottom-bar.bg-white {
  background-color: #ffffff;
}
.career-apply-bar {
  padding-bottom: 0;
  background-color: transparent;
}
.career-join-section {
  margin-top: -20rem;
}
.career-join-section .text-box .hands {
  max-width: 28rem;
}
.career-join-section .video-box {
  max-width: 51rem;
}
.video-play-btn.small {
  width: 7.3rem;
  height: 7.3rem;
}

/* -------------- EVENTS PAGE STYLES ------------------ */
.event-impact-list {
  background-color: #f3f7ff;
  padding: 4rem;
  border-radius: 1rem;
}
.event-impact-list .wheel-list-item {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #d9d9d9;
}
.event-impact-list .wheel-list-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.event-impact-list .wheel-list-item:first-child {
  margin-top: 4rem;
}
.event-impact-list .wheel-list-item a {
  color: #51b2d5;
}
.event-impact-list .intro-top {
  top: -10rem;
}
.event-impact-list .intro-bottom {
  bottom: -10rem;
}
.events-listing-section {
  background: linear-gradient(to bottom, #f5f9ff, #ffffff);
}
.event-listing {
  grid-column-gap: 3.5rem;
}
/* .event-thumb {
  height: 23rem;
} */
.event-info-text {
  color: #797676;
  line-height: 1;
}
.event-info-text img {
  max-width: 2rem;
  max-height: 2rem;
  display: inline-block;
  margin-right: 5px;
}
.event-listing-item .time {
  margin-left: 7px;
  padding-left: 7px;
  border-left: 1px solid #a1a1a1;
}
.event-listing-item .read-more-box {
  padding-top: 2rem;
  border-top: 1px solid #d9d9d9;
}
.event-listing-item .arrow,
.link-arrow-capsule {
  width: 6.1rem;
  height: 3.5rem;
  border: 1px solid #a2a2a2;
  border-radius: 18px;
  transition: all 0.4s ease;
}
.event-listing-item .arrow img,
.link-arrow-capsule img {
  max-height: 1.8rem;
  transition: none;
}
.event-listing-item:hover .event-thumb img {
  transform: scale(1.1);
}
.event-listing-item:hover .arrow {
  border-color: var(--gold);
  background-color: var(--gold);
}
.event-listing-item:hover .arrow img {
  filter: invert(1) brightness(100);
}
.bespoke-services-list .slick-list {
  margin: 0 -1rem;
}
.bespoke-services-list .slick-slide {
  margin: 0 1rem;
}
.bespoke-service-item .content-box {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 39.48%,
    rgba(0, 0, 0, 0.674695) 57.89%,
    #000000 107.89%
  );
  padding: 4rem 3rem;
  transition: all 0.4s ease;
}
.bespoke-service-item .hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.bespoke-service-item:hover .hidden-content {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}
.link-arrow-capsule.blue {
  background-color: #4f8ccd;
  border-color: #4f8ccd;
}

/* ------------ SERVICE DETAIL - ABA THERAPY --------- */
.sd-banner-section {
  background-color: #f0f6ff;
}
.sd-banner-section .content-box {
  min-height: 55rem;
}
.block-light-blue blockquote {
  position: relative;
  padding: 0 5rem;
}
.block-light-blue blockquote::before,
.block-light-blue blockquote::after {
  content: "";
  position: absolute;
  width: 3.1rem;
  height: 2.2rem;
}
.block-light-blue blockquote::before {
  left: 0;
  top: 1rem;
  background: url("../img/sd-quote-left-light-blue.webp") no-repeat center;
  background-size: contain;
}
.block-light-blue blockquote::after {
  right: 0;
  bottom: 1rem;
  background: url("../img/sd-quote-right-light-blue.webp") no-repeat center;
  background-size: contain;
}
.aba-intro-section .text-box {
  width: 48%;
}
.aba-intro-rope {
  top: 50%;
  transform: translateY(-50%);
}
.aba-intro-goal {
  background-color: #eff4ff;
}
.aba-intro-goal .text {
  padding: 5rem 5rem;
}
.floating-section-links {
  position: fixed;
  right: 0;
  top: -100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  width: max-content;
}
.floating-section-links.show {
  opacity: 1;
  visibility: visible;
  top: 12rem;
}
.floating-section-links.close {
  top: -100%;
  opacity: 0;
  visibility: hidden;
}
.floating-section-links a {
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26rem;
}
.floating-section-links a:hover {
  background-color: #b18d13;
}
.floating-section-links .close-floating-box {
  position: absolute;
  left: 50%;
  bottom: -4rem;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--yellow);
  padding: 2px;
}
.aba-seo-section {
  background: url("../img/aba-seo-bg.webp") no-repeat center;
  background-size: cover;
}
.aba-surveillance-box {
  border-radius: 7rem;
}
.aba-surveillance-box .content-box {
  padding: 10rem 10rem;
}
.aba-cards-section {
  background: linear-gradient(
    180deg,
    #ffffff 16.19%,
    #f5f9ff 55.21%,
    #ffffff 96.77%
  );
}
.aba-service-card {
  width: 48%;
  border-radius: 3.2rem;
  padding: 5rem 5.5rem 6rem 5.5rem;
  box-shadow: 0px 45px 44px 0px #00000008;
}
.aba-service-card .img-box img {
  max-height: 31rem;
}
.aba-inhome-section .img-box {
  width: 48%;
}
.aba-school-section {
  background-color: #f0f6ff;
}
.aba-school-section .text-box {
  padding: 5rem 6rem 5rem 7rem;
  border: 1px solid #b6b6b6;
  border-left: 0;
  border-radius: 0 3rem 3rem 0;
  transform: translateX(-1.5rem);
}
.aba-school-section .ship-icon {
  width: 33rem;
  height: 19rem;
  left: -12rem;
  bottom: -4rem;
}
.aba-bottom-section .content-box {
  min-height: 112rem;
}
.sos-black-frame {
  max-width: 54rem;
  max-height: 69rem;
}
.ad-process-listing {
  grid-gap: 10rem;
}
.ad-process-item:nth-of-type(2),
.ad-process-item:nth-of-type(5) {
  flex-direction: column-reverse;
  padding-top: 10rem;
  gap: 4rem;
}
.ad-process-item:nth-of-type(2)::before,
.ad-process-item:nth-of-type(2)::after {
  content: "";
  position: absolute;
}
.ad-process-item:nth-of-type(2)::before {
  left: -18rem;
  bottom: 13rem;
  width: 17rem;
  height: 8.5rem;
  background: url("../img/ad-process-vector-1.webp") no-repeat center;
  background-size: contain;
}
.ad-process-item:nth-of-type(2)::after {
  right: -10rem;
  bottom: 37rem;
  width: 11rem;
  height: 9rem;
  background: url("../img/ad-process-vector-2.webp") no-repeat center;
  background-size: contain;
}
.ad-doctor-section .img-box {
  width: 64rem;
  bottom: 0;
  right: 5rem;
}
.ad-faq-item {
  padding: 5rem 4rem 5rem 7.5rem;
  background-color: #3f5b8099;
  position: relative;
}
.ad-faq-item::before {
  content: "";
  position: absolute;
  left: 3.5rem;
  top: 5.8rem;
  width: 2.7rem;
  height: 2.7rem;
  background: url("../img/list-anchor-icon-yellow.webp") no-repeat center;
  background-size: contain;
}
.ad-doctor-section {
  background: linear-gradient(to bottom, #ffffff, #f3f6fa, #f2f7ff);
}
.ad-faq-section .fish-icon {
  width: 19rem;
  height: 17rem;
  top: -8rem;
  right: 0;
}
.ssgc-classes-section {
  background: linear-gradient(to bottom, #ffffff, #f5f9ff);
}
.ssgc-class-item {
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
}
.ssgc-card-head {
  background-color: #3171b3;
  padding: 4rem 3rem;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 85%);
  position: relative;
  border-radius: 0 5px 0 0;
}
.ssgc-card-head span {
  font-size: 1.8rem;
}
.ssgc-class-item::before {
  content: "";
  width: 90%;
  height: 5rem;
  background-color: #265d96;
  position: absolute;
  left: 0;
  top: -3.2rem;
  border-radius: 0 5px 0 0;
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
}

.ssgc-card-body li {
  border-bottom: 1px dashed #b3b3b3;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  margin: 0;
  font-size: 1.9rem;
}
.ssgc-card-body li::before {
  top: 1.9rem;
}
.ssgc-card-body li:last-child {
  border-bottom: 0;
}
.ssgc-card-body {
  padding: 1rem 2rem 10rem 2rem;
}
.ssgc-class-item .icon {
  width: 10rem;
  height: 10.5rem;
  position: absolute;
  left: 50%;
  bottom: -2.8rem;
  transform: translateX(-50%);
  padding-left: 1.8rem;
  display: inline-flex;
  align-items: center;
  background: url("../img/social-skills-card-icon-bg.webp") no-repeat center;
  background-size: contain;
}
.ssgc-class-item .icon img {
  max-width: 5.1rem;
}
.ssgc-form-section {
  background: linear-gradient(to bottom, #f5f9ff, #ffffff);
}
.ssgc-form {
  padding: 6rem 5rem;
  box-shadow: 0px 79px 94px 0px #0000000f;
}
.white-bg-form .input-box {
  margin-bottom: 2rem;
  overflow: hidden;
}
.white-bg-form .input-box input,
.white-bg-form .input-box select,
.white-bg-form .input-box textarea {
  padding: 2rem 2rem;
  border: 1px solid #adadad;
  border-radius: 1rem;
  color: #616161;
  font-size: 2rem;
  outline: none;
}
.white-bg-form .input-box select {
  appearance: none;
  padding-right: 5rem;
}
.white-bg-form .input-box textarea {
  height: 19rem;
}
.white-bg-form .select-box {
  position: relative;
}
.white-bg-form .select-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background: url("../img/menu-dropdown-arrow-white.png") no-repeat center;
  background-size: contain;
  filter: invert(1);
  transform: translateY(-50%);
}
.white-bg-form .grid {
  grid-column-gap: 2rem;
}
.white-bg-form .input-box select {
  cursor: pointer;
}
.submit-btn-yellow,
.submit-btn-yellow input {
  color: var(--white);
}
.ssgc-form-section .fish-icon {
  top: 8rem;
  right: -8rem;
  max-width: 25rem;
}
.ssgc-form-section .bottom-wave {
  width: 50%;
  max-width: 100rem;
  bottom: -1.5rem;
}

.sd-help-section .content-box {
  padding: 10rem 10rem;
}
.sd-help-section .wheel-list li {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d9d9d9;
  margin: 0;
}
.sd-help-section .wheel-list li::before {
  top: 2.3rem;
}
.sd-help-section .right {
  width: 46%;
}
.sd-milestone-item {
  gap: 5rem;
}
.sd-milestone-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(50% + 6.5rem);
  top: calc(50% + 4rem);
  left: 3.3rem;
  background-color: #3facd4;
}
.sd-milestone-item:last-child::before {
  display: none;
}
.sd-milestone-item .circle {
  width: 6.5rem;
  height: 6.5rem;
  background-color: var(--white);
}
.sd-milestone-item .circle,
.sd-milestone-item .circle .outer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sd-milestone-item .circle .outer {
  width: 6.4rem;
  height: 6.4rem;
  border: 1px solid #3facd4;
  border-radius: 50%;
}
.sd-milestone-item .circle .inner {
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid #3facd4;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.sd-milestone-item.active .circle .inner {
  background-color: #3facd4;
}
.sd-milestone-item .content-box {
  background-color: #f0f6ff;
  padding: 5rem 4rem;
  border-radius: 1.9rem;
  gap: 3rem;
}
.sd-milestone-item .content-box p {
  max-width: 110rem;
}
.sd-milestone-item .icon {
  width: 13rem;
  height: 13rem;
  background: #3a6ea5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.sd-milestone-item .icon img {
  max-height: 8rem;
}
.sd-milestone-item .content-box::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 3rem;
  height: 3rem;
  background-color: #f0f6ff;
}
.wpcf7-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.submit-box p {
  display: flex;
  align-items: center;
}

/* -------------------------------- */
/* --------- ABOUT PAGE ----------- */
/* -------------------------------- */
.about-quote-box .quote-icon {
  max-width: 10rem;
}
.about-quote-meta {
  background-color: #295080;
  border-radius: 5rem;
  padding: 1rem 3rem 1rem 1rem;
}
.about-quote-meta .quote-meta-thumb {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}
.about-quote-meta p {
  font-size: 1.8rem;
}
.about-quote-text {
  font-size: 3.5rem;
}
.as-dedication-box .content-box {
  padding: 6rem 5rem;
}
.as-dedication-box .description * {
  font-size: 2rem;
}
.about-dedication-section .vector-1 {
  width: 7.3rem;
  left: -8rem;
  top: -8rem;
}
.about-dedication-section .rope {
  width: 30rem;
  bottom: 10%;
}
.about-dedication-section .rope.left {
  left: -15rem;
}
.about-dedication-section .rope.right {
  right: -15rem;
}
.as-map-box .map-vector-1 {
  left: 0;
  top: -10rem;
  width: 19rem;
}
.as-map-box .map-vector-2 {
  right: -12rem;
  bottom: -12rem;
  width: 30rem;
}
.about-centers-section .vector-1 {
  max-width: 12rem;
  bottom: -5rem;
  left: -5rem;
}
.about-centers-section .vector-2 {
  max-width: 5.5rem;
  bottom: 10rem;
  left: 10%;
}
.about-centers-section .vector-3 {
  max-width: 12rem;
  bottom: -5rem;
  right: -5rem;
}
.as-service-item {
  background-color: #f5f9ff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}
.as-service-item:hover {
  background-color: #f0f5fe;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.as-service-item .icon {
  width: 8rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
}
.as-service-item p {
  font-size: 2rem;
  margin-top: 1.5rem;
  color: #767676;
}

.as-services-listing .know-more {
  background-color: #2e6eb1;
  border-radius: 1.5rem;
  padding: 3rem;
}

/* ---------------------------- */
/* ---- ABOUT AUTISM ---------- */
/* ---------------------------- */
.aa-indicator-section .vector-1 {
  width: 10rem;
  top: 5rem;
}
.aa-indicator-section .vector-2 {
  width: 12rem;
  left: 48%;
  top: 20rem;
}
.aa-indicator-section .vector-3 {
  width: 16rem;
  bottom: 5rem;
}
.aa-criteria-section .vector-1 {
  width: 13rem;
  top: 2rem;
}
.aa-criteria-section .vector-2 {
  width: 12rem;
  top: 2rem;
}
.aa-criteria-item .thumb-box {
  width: 46rem;
  height: 46rem;
  padding: 4rem;
  max-width: 90%;
}
.aa-criteria-item .content-box {
  padding-left: 3rem;
  padding-right: 5rem;
}
.aa-criteria-item .count {
  font-size: 20rem;
  color: #cad5e2;
  line-height: 0.9;
  letter-spacing: -1rem;
  border-bottom: 0.2rem solid #cad5e2;
  height: max-content;
}
.aa-quote-text {
  font-size: 3.5rem;
  line-height: 1.4;
}

.aa-quote-section .vector-1 {
  width: 8rem;
  left: -1.5rem;
  top: -3rem;
}
.aa-quote-section .vector-2 {
  width: 12rem;
  right: 0;
  bottom: -5rem;
}
.as-service-item p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.complaint-form .input-box {
  margin-bottom: 4rem;
}
.founder-banner-section {
  padding: 10rem 0;
}
.founder-banner-section .wrapper {
  padding: 7rem 5rem;
}
.founder-social-links {
  gap: 2rem;
}
.founder-social-links a {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid #b6d3ff;
}
.founder-social-links li img {
  max-height: 2.8rem;
}
.founder-social-links a:hover {
  background-color: #f0f6ff;
}
.founder-detail-section .img-box img {
  max-height: 100vh;
  min-height: 300px;
}
.founder-awards-list a {
  padding: 2rem;
}
.founder-awards-list .year {
  padding: 0.5rem 2rem;
  border-radius: 5rem;
  background-color: rgba(245, 210, 94, 0.9);
  color: #ffffff;
  top: 3rem;
  right: 3rem;
  font-size: 13px;
}
.founder-doc-item {
  height: 80rem;
}
.founder-doc-item .content-box {
  padding: 6rem 2rem;
}
.hp-centres-slider.founder-doc-slider .slick-slide {
  margin-left: 1rem;
  margin-right: 1rem;
}
label.radio-input {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.radio-group {
  gap: 5rem;
}
.input-box input[type="radio"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #d4af37;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.input-box input[type="radio"]:checked::after,
input[type="radio"]:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input-box input[type="checkbox"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.input-box input[type="checkbox"]:checked,
input[type="checkbox"]:checked {
  background-color: #d4af37;
}
.input-box input[type="checkbox"]:checked::after,
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.input-checkbox .grid{
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
}
input[type="file"], .file-input label{
  cursor: pointer;
}
.apply-form-text-box .highlight-box{
  padding: 4rem;
  border: 1px solid var(--yellow);
  border-radius: 2rem;
}
.accordion {
  border-top: 1px solid #dddddd;
}
.accordion:last-of-type {
  border-bottom: 1px solid #dddddd;
}
.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(--black);
}
.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;
}
.location-accordions .accordion-head{
  font-size: 2.6rem;
}