/*font import*/
@import url("https://fonts.googleapis.com/css2?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");
/* variables */
:root {
  --font-family: "Poppins", sans-serif;
  --primary: #0c4ca3;
  --primary-100: #0d2d6e;
  --primary-200: #001c55;
  --primary-300: #041840;
  --primary-400: #01102d;
  --primary-500: #000e2a;
  --grey-light: #f3f4f8;
  --secondary: #d9a728;
  --grey: #64718b;
  --black: #000000;
  --white: #ffffff;
}

body,
html {
  height: 100%;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 0px;
}

body {
  font-family: var(--font-family);
}

html {
  scroll-behavior: smooth;
}

.font-italic {
  font-style: italic;
}

.text__light {
  font-family: var(--font-family);
  font-weight: 300;
}
.text__regular {
  font-family: var(--font-family);
  font-weight: 400;
}
.text__medium {
  font-family: var(--font-family);
  font-weight: 500;
}
.text__semibold {
  font-family: var(--font-family);
  font-weight: 600;
}
.text__bold {
  font-family: var(--font-family);
  font-weight: 700;
}
.text__bolder {
  font-family: var(--font-family);
  font-weight: 800;
}
.text__black {
  font-family: var(--font-family);
  font-weight: 900;
}
.text__primary {
  color: var(--primary);
}
.text__primary100 {
  color: var(--primary-100);
}
.text__primary500 {
  color: var(--primary-500);
}
.text__secondary {
  color: var(--secondary);
}
.text__grey {
  color: var(--grey) !important;
}
.text__white {
  color: var(--white);
}
.text__dark {
  color: var(--black);
}
.text__12 {
  font-size: 0.75rem !important;
}
.text__14 {
  font-size: 0.875rem !important;
}
.text__16 {
  font-size: 1rem !important;
}
.text__18 {
  font-size: 1.125rem !important;
}
.text__20 {
  font-size: 1.25rem !important;
}
.text__22 {
  font-size: 1.375rem !important;
}
.text__24 {
  font-size: 1.5rem !important;
}
.text__26 {
  font-size: 1.625rem;
}
.text__32 {
  font-size: 2rem;
}
.text__40 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .text__40 {
    font-size: 28px;
  }
}
.text__60 {
  font-size: 3.75rem;
}

p a {
  color: var(--secondary);
  text-decoration: none;
}

.bg__primary {
  background-color: var(--primary-100);
}
.bg__primary100 {
  background-color: rgba(13, 45, 110, 0.1);
}
.bg__primary200 {
  background-color: var(--primary-200);
}
.bg__primary400 {
  background-color: var(--primary-400);
}
.bg__secondary {
  background-color: var(--secondary);
}
.bg__secondary100 {
  background-color: rgba(217, 167, 40, 0.102);
}
.bg__white {
  background-color: var(--white);
}
.bg__greylight {
  background-color: var(--grey-light);
}

.bg-none {
  background: none;
}

/* common css */
.pt-75 {
  padding-top: 75px;
}
@media (max-width: 1200px) {
  .pt-75 {
    padding-top: 25px;
  }
}

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

.mb-12 {
  margin-bottom: 12px;
}

.mb-36 {
  margin-bottom: 36px;
}

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

.hr-line {
  border-bottom: 1px solid var(--white) !important;
}

.row-gap-24 {
  row-gap: 24px;
}

.border-radius-2 {
  border-radius: 8px;
}

.parallax {
  background-image: url("your-image.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.py-75 {
  padding: 75px 0;
}
@media (max-width: 1200px) {
  .py-75 {
    padding: 25px 0;
  }
}

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

.ps-40 {
  padding-left: 40px;
}
@media (max-width: 1280px) {
  .ps-40 {
    padding-left: 8px;
  }
}
@media (max-width: 992px) {
  .ps-40 {
    padding-left: 0;
  }
}

.p-50 {
  padding: 50px;
}
@media (max-width: 992px) {
  .p-50 {
    padding: 15px;
  }
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .px-50 {
    padding-left: 0;
    padding-right: 0;
  }
}

.ps-50 {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .ps-50 {
    padding-left: 0;
  }
}

.pe-50 {
  padding-right: 50px;
}
@media (max-width: 767px) {
  .pe-50 {
    padding-right: 0;
  }
}

.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}
@media (max-width: 992px) {
  .px-75 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.pb-75 {
  padding-bottom: 75px;
}
@media (max-width: 1200px) {
  .pb-75 {
    padding-bottom: 25px;
  }
}

.border-bottom {
  border-bottom: 1px solid rgba(217, 217, 217, 0.2) !important;
}

.border-left {
  border-left: 1px solid rgba(217, 217, 217, 0.2) !important;
}
@media (max-width: 992px) {
  .border-left {
    border-left: 0 !important;
  }
}

.border-right {
  border-right: 1px solid rgba(217, 217, 217, 0.2) !important;
}
@media (max-width: 992px) {
  .border-right {
    border-right: 0 !important;
  }
}

.gap-20 {
  gap: 20px;
}

.gap-12 {
  gap: 12px;
}

hr {
  border: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2) !important;
  margin: 28px 0;
  opacity: 1;
}

.link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  color: var(--secondary);
}

.cursor-pointer {
  cursor: pointer;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

/* buttons */
.btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2%;
  text-align: center;
  color: var(--white);
  padding: 8px;
  border-radius: 4px;
  line-height: 22px;
  position: relative;
  display: inline-block;
  border: none;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: 0.7s ease-in-out;
}
.btn:hover::before {
  left: 120%;
}
.btn:hover {
  transform: scale(1.05);
}
.btn.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--black);
}
.btn.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-500);
}
.btn.btn-white::before {
  background: rgba(149, 204, 255, 0.3);
}
.btn.btn-small {
  font-size: 12px;
  line-height: 100%;
}

/* home page */
.color-changer {
  animation: colorChange 3s infinite alternate;
}
@keyframes colorChange {
  0% {
    color: var(--secondary);
  }
  50% {
    color: var(--white);
  }
  100% {
    color: var(--secondary);
  }
}

header .header-wrapper {
  padding: 0 50px;
  position: fixed;
  width: 100%;
  z-index: 9;
  transition: top 0.3s ease-in-out;
  display: none;
}
header .header-wrapper.fixed-header {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--primary-400);
}
header .header-wrapper.sticky {
  display: block;
}
@media (max-width: 992px) {
  header .header-wrapper {
    padding: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 992px) {
  header .header-wrapper .header {
    border-radius: 0 !important;
  }
  header .header-wrapper .header .logo {
    max-width: 150px;
  }
  header .header-wrapper .header .menu-icon {
    width: 40px;
  }
}
header .header-wrapper .admission-enquiry {
  background-image: url("./../images/rectangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  width: 90%;
  height: 65px;
  left: 5%;
  margin-top: -6px;
  position: relative;
}
@media (max-width: 992px) {
  header .header-wrapper .admission-enquiry {
    display: none;
  }
}
@media (max-width: 1200px) {
  header .header-wrapper .admission-enquiry {
    width: 80%;
    left: 13%;
    margin-top: -8px;
    z-index: -1;
  }
}

.search {
  position: relative;
  min-height: 50px;
}
.search .search-box {
  width: 0;
  padding: 0;
  transition: width 0.3s ease, padding 0.3s ease;
  outline: none;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 30px;
}
.search .search-box .search-icon {
  display: none;
}
@media (max-width: 767px) {
  .search .search-box {
    width: 100vw !important;
    position: fixed;
    top: 84px;
    padding: 0 15px;
  }
}
.search .search-box input {
  background: linear-gradient(90.13deg, #0d2d6e 0%, #041840 99.38%);
  border-radius: 28px;
  display: none;
  color: var(--white);
  width: 0;
}
.search .search-box.active {
  width: 250px;
  transition: width 0.3s ease, padding 0.3s ease;
}
.search .search-box.active input {
  border: 1px solid #2a53a5;
  padding: 12px 25px;
  padding-right: 50px;
  display: block;
  width: 100%;
  outline: 0;
}
.search .search-box.active .search-icon {
  display: block;
  position: absolute;
  top: 10px;
  right: 20px;
}

.mega-menu {
  width: calc(100% - 40px);
  height: calc(100dvh - 40px);
  top: 20px;
  left: 20px;
  background: url("./../images/pattern.svg") no-repeat right bottom, linear-gradient(90deg, #041942, #0c2c6b);
  position: fixed;
  z-index: 9999999999;
  transition: all ease-in-out 0.3s;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .mega-menu {
    height: auto;
  }
}
.mega-menu.d-none {
  height: 0;
  transition: all ease-in-out 0.3s;
}
.mega-menu .menu-list {
  overflow: hidden;
  overflow-y: auto;
  height: calc(100vh - 172px);
}
@media (max-width: 992px) {
  .mega-menu .menu-list {
    height: 73dvh;
  }
}
.mega-menu .menu-list .mega-sidebar {
  min-height: calc(100vh - 220px);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 992px) {
  .mega-menu .menu-list .mega-sidebar {
    min-height: auto;
    margin-bottom: 30px;
  }
}
.mega-menu .menu-list .side-menu {
  flex-direction: column;
  border: 0;
}
.mega-menu .menu-list .side-menu .nav-item {
  border: 0;
}
.mega-menu .menu-list .side-menu .nav-item .nav-link {
  display: block;
  padding: 16px;
  background: none;
  background-color: transparent;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2) !important;
  text-align: left;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  transition: all 0.3s ease 0s;
}
.mega-menu .menu-list .side-menu .nav-item .nav-link.active, .mega-menu .menu-list .side-menu .nav-item .nav-link:hover {
  border-radius: 4px;
  background-color: var(--secondary);
  color: var(--primary-400);
}
.mega-menu .menu-list .side-menu .nav-item:last-child .nav-link {
  border: 0 !important;
}
.mega-menu .menu-list .menu-content {
  min-height: calc(100vh - 340px);
}
.mega-menu .menu-list .menu-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .mega-menu .menu-list .menu-content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mega-menu .menu-list .menu-content ul li {
  display: flex;
  gap: 15px;
  align-items: center;
}
.mega-menu .menu-list .menu-content ul li a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2%;
  text-decoration: none;
  color: var(--white);
}
.mega-menu .menu-list .menu-content ul li a:hover, .mega-menu .menu-list .menu-content ul li a.active {
  color: var(--secondary);
  transition: all ease-in-out 0.3s;
}
.mega-menu .menu-list .menu-content ul li:hover img {
  transition: all ease-in-out 0.3s;
  margin-left: 5px;
}
.mega-menu .enquire-now {
  background: conic-gradient(from 161.05deg at 75.61% 29.57%, #0d2d6e 0deg, #001c55 360deg);
  border: 1px solid #0c4ca3;
  border-radius: 8px;
  padding: 12px;
}

.menu {
  gap: 30px;
}
@media (max-width: 767px) {
  .menu {
    gap: 8px 30px;
  }
}
.menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  position: relative;
}
@media (max-width: 1280px) {
  .menu li a {
    font-size: 14px;
  }
}
.menu li a:hover, .menu li a.active {
  color: var(--secondary);
  transition: all ease-in-out 0.3s;
}
.menu li:last-child a:after {
  display: none;
}

.banner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.banner video,
.banner img {
  display: block;
  height: 95dvh;
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .banner video,
  .banner img {
    height: 60dvh;
  }
}
@media (max-width: 992px) and (orientation: landscape) {
  .banner video,
  .banner img {
    height: 100vh;
  }
}
.banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(264.25deg, rgba(0, 0, 0, 0.1) 1.2%, rgba(0, 0, 0, 0.5) 52.23%, rgba(0, 0, 0, 0.8) 96.96%);
  z-index: 0;
}
.banner.home:after {
  display: none;
}
.banner .banner-content {
  height: 95dvh;
  height: 95vh;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 8;
}
@media (max-width: 992px) {
  .banner .banner-content {
    height: 70dvh;
    height: 70vh;
  }
  .banner .banner-content h1 {
    font-size: 40px;
  }
  .banner .banner-content h5 {
    font-size: 20px !important;
  }
}
@media (max-width: 992px) and (orientation: landscape) {
  .banner .banner-content {
    height: 100vh;
  }
  .banner .banner-content h1 {
    font-size: 40px;
    margin-top: 0px;
  }
  .banner .banner-content h5 {
    font-size: 20px !important;
  }
}
.banner.inner-page img {
  height: 700px;
}
@media (max-width: 992px) {
  .banner.inner-page img {
    height: 400px;
  }
}
.banner.inner-page .banner-content {
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .banner.inner-page .banner-content {
    height: 100%;
  }
}
.banner.home {
  position: relative;
}
.banner.home .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.promo-strip {
  z-index: 2;
  position: relative;
  margin-top: -50px;
}
.promo-strip .promo-strip-content {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
}
.promo-strip .promo-strip-content img {
  border-radius: 60px;
  width: 60px;
}
@media (max-width: 767px) {
  .promo-strip {
    position: unset;
    margin-top: 0 !important;
  }
  .promo-strip .promo-strip-content {
    border-radius: 0 !important;
  }
}

.skill-wrapper {
  overflow: hidden;
}
.skill-wrapper.overlay {
  position: relative;
}
.skill-wrapper.overlay:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 20%;
  right: 18%;
  z-index: 2;
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.skill-wrapper .skill {
  background: var(--white);
  padding: 30px 16px;
  box-shadow: 0px 0px 40px 0px rgba(100, 113, 139, 0.2);
  border-radius: 8px;
  min-height: 200px;
}
.skill-wrapper .skill .skill-content {
  position: relative;
  z-index: 3;
}
.skill-wrapper .skill img {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 2;
}
.skill-wrapper.red:before {
  background-image: url("./../images/skills/red-overlay.svg");
}
.skill-wrapper.red .skill {
  background: linear-gradient(232.29deg, #69010c 5.1%, #fd2e20 97.88%);
}
.skill-wrapper.purple:before {
  background-image: url("./../images/skills/purple-overlay.svg");
}
.skill-wrapper.purple .skill {
  background: linear-gradient(232.29deg, #771461 5.1%, #c02293 97.88%);
}
.skill-wrapper.yellow:before {
  background-image: url("./../images/skills/yellow-overlay.svg");
}
.skill-wrapper.yellow .skill {
  background: linear-gradient(232.29deg, #a85300 5.1%, #f19a46 97.88%);
}
.skill-wrapper.brown:before {
  background-image: url("./../images/skills/brown-overlay.svg");
}
.skill-wrapper.brown .skill {
  background: linear-gradient(232.29deg, #4f3423 5.1%, #8e7766 97.88%);
}

.value-wrapper {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
@media (max-width: 1366px) {
  .value-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .value-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .value-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
.value-wrapper .value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.value-wrapper .value .icon {
  max-width: 92px;
  min-width: 92px;
  transition: ease-in-out transform 0.6s;
  transform: rotateY(0deg);
}
.value-wrapper .value:hover .icon {
  transform-style: preserve-3d;
  transition: 0.3s ease-in-out;
  transform: rotateY(180deg);
}

.value-count .counts {
  background: conic-gradient(from 117.05deg at 75.61% 29.57%, #001c55 0deg, #02256c 360deg);
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: var(--white);
  flex-grow: 1;
}
.value-count .counts .number {
  font-weight: 700;
  font-size: 32px;
  color: inherit;
}
.value-count .counts .border-left {
  margin-left: 15px;
  border-left: 1px solid var(--white);
  padding-left: 15px;
}

/* slick slider */
.customer-logos.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.customer-logos .slick-slide {
  margin: auto;
  text-align: center;
}
.customer-logos .slick-slide img {
  max-height: 80px;
  width: auto;
  max-width: 180px;
  margin: 0 auto;
}
.customer-logos .slick-dots {
  bottom: -60px;
}
.customer-logos .slick-dots li button::before {
  font-size: 12px;
  color: #d9d9d9;
  opacity: 1;
}
.customer-logos .slick-dots li.slick-active button::before {
  color: var(--primary-100);
  opacity: 1;
}

.slick-highlight .slick-slide {
  scale: 0.91;
}
@media (max-width: 767px) {
  .slick-highlight .slick-slide {
    scale: 1;
  }
}
.slick-highlight .slick-slide img {
  width: 100%;
  min-height: 450px;
}
@media (max-width: 1200px) {
  .slick-highlight .slick-slide img {
    min-height: auto;
  }
}
.slick-highlight .slick-slide.slick-current.slick-active.slick-center {
  scale: 1;
}
.slick-highlight .slick-dots {
  bottom: -35px;
}
.slick-highlight .slick-dots li {
  width: auto;
  height: auto;
}
.slick-highlight .slick-dots li button {
  width: 8px;
  height: 10px;
  background-color: var(--secondary);
  opacity: 1;
  border-radius: 3px;
  position: unset;
  transition: all ease-in-out 0.3s;
}
.slick-highlight .slick-dots li button::before {
  display: none;
}
.slick-highlight .slick-dots li.slick-active button {
  width: 40px;
  opacity: 1;
  background-color: var(--primary-100);
}
.slick-highlight .slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1200px) {
  .slick-highlight .slide-content {
    padding: 20px !important;
  }
  .slick-highlight .slide-content h1 {
    font-size: 26px;
    margin-bottom: 5px !important;
  }
  .slick-highlight .slide-content p {
    margin-bottom: 10px !important;
  }
}

.footer .footer-top {
  padding: 80px 50px;
}
@media (max-width: 767px) {
  .footer .footer-top {
    padding: 20px;
  }
}
.footer .footer-header {
  min-height: 130px;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .footer-header {
    min-height: auto;
  }
}
.footer .footer-menu ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer .footer-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 2%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: var(--white);
}
.footer .footer-menu ul li a:hover, .footer .footer-menu ul li a.active {
  color: var(--secondary);
  transition: all ease-in-out 0.3s;
}
.footer .socials {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .footer .socials {
    margin-top: 15px;
  }
}
@media (max-width: 1366px) {
  .footer .admission-footer .ps-40 {
    padding-left: 8px !important;
  }
}
@media (max-width: 1200px) {
  .footer .admission-footer .border-right {
    border: 0 !important;
  }
  .footer .admission-footer .border-bottom {
    border: 0 !important;
  }
  .footer .admission-footer .ps-40 {
    padding-left: 0 !important;
  }
}

.quick-connect {
  position: fixed;
  left: 0;
  top: 80%;
  z-index: 99;
  display: flex !important;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
}
.quick-connect .quick-connect-call {
  position: fixed;
  left: 0;
  left: auto;
  right: 0;
  top: 80%;
  z-index: 99;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  background: #2675E2;
  border-radius: 20px 0px 0px 20px;
  display: inline-block;
  transition: all 0.3s ease;
}
.quick-connect .quick-connect-call img {
  border-radius: 20px 0px 0px 20px;
}
.quick-connect .quick-connect-call:hover {
  padding-right: 20px;
  padding-left: 0px;
}
.quick-connect .quick-connect-whatsapp {
  position: fixed;
  left: 0;
  top: 80%;
  z-index: 99;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  background: #4ccb5a;
  border-radius: 0 20px 20px 0;
  display: inline-block;
  transition: all 0.3s ease;
}
.quick-connect .quick-connect-whatsapp:hover {
  padding-left: 20px;
}

.step-wrapper .card-wrapper .card {
  border-radius: 8px;
  border: none;
}
.step-wrapper .card-wrapper .card .img-wrapper {
  width: 78px;
  height: 78px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px 0 50px 50px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}
.step-wrapper .card-wrapper .card .img-wrapper img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.step-wrapper .card-wrapper .card h5 {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-500);
}
.step-wrapper .card-wrapper .card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-500);
}
.step-wrapper .card-wrapper .card:hover .img-wrapper {
  transform: rotateY(180deg);
}
.step-wrapper .card-wrapper:nth-child(odd) .card {
  background-color: #fbf6e9;
}
.step-wrapper .card-wrapper:nth-child(odd) .card .img-wrapper {
  background-color: #d9a728;
}
.step-wrapper .card-wrapper:nth-child(even) .card {
  background-color: #f3f4f8;
}
.step-wrapper .card-wrapper:nth-child(even) .card .img-wrapper {
  background-color: #0c4ca3;
}

.admission-contact {
  background-image: url("../images/dots.svg");
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .admission-contact {
    background-size: cover;
  }
}
.admission-contact .card-wrapper {
  padding: 16px;
  border-radius: 8px;
}
.admission-contact .card-wrapper .card {
  background-color: transparent;
}
.admission-contact .card-wrapper .img-wrapper {
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: end;
  justify-content: center;
  object-fit: contain;
  border-radius: 8px;
  overflow: hidden;
}
.admission-contact .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.admission-contact .card-wrapper.img-1 {
  background-color: #f3f4f8;
}
.admission-contact .card-wrapper.img-1 .img-wrapper {
  background-color: #d8dcee;
}
.admission-contact .card-wrapper.img-2 {
  background-color: #fbf6e9;
}
.admission-contact .card-wrapper.img-2 .img-wrapper {
  background-color: rgba(217, 167, 40, 0.1);
}
@media (max-width: 767px) {
  .admission-contact .text__60 {
    font-size: 2rem !important;
  }
}

.scroll-container-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.scroll-container-wrapper .arrow {
  background: var(--secondary);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 16px;
  width: 44px;
  height: 44px;
  min-width: 44px;
}
.scroll-container-wrapper .arrow.hidden {
  display: none;
}
.scroll-container-wrapper .scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.scroll-container-wrapper .scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-container-wrapper .scroll-container.dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.scroll-container-wrapper .scroll-container .scroll-item .action {
  white-space: nowrap;
  padding: 10px 16px;
  background: #f3f3f3;
  margin: 0 5px;
  border-radius: 6px;
  font-weight: 500;
  flex: 0 0 auto;
  text-decoration: none;
  display: inline-block;
  color: var(--black);
}
.scroll-container-wrapper .scroll-container .scroll-item.active a, .scroll-container-wrapper .scroll-container .scroll-item:hover a {
  background: var(--secondary);
  color: var(--black);
  cursor: pointer;
}

.blur-modal {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1055;
}
.blur-modal .modal-dialog {
  max-width: 100%;
}
.blur-modal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
}
.blur-modal .modal-dialog .modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
}

#chat-widget-container {
  right: 40px !important;
}

#backToTop {
  display: none;
  z-index: 100;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 50%;
  overflow: hidden;
  rotate: 270deg;
  width: 36px;
  height: 36px;
}
#backToTop img {
  left: 3px;
  bottom: 3px;
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
}
#backToTop:hover {
  opacity: 0.8;
}

.scroll-indicator {
  position: fixed;
  right: 20px;
  top: calc(50% - 200px);
  height: 400px;
  width: 5px;
  background: var(--secondary);
  border-radius: 3px;
  z-index: 9999;
}
.scroll-indicator .scroll-thumb {
  width: 15px;
  height: 15px;
  background: var(--secondary);
  border-radius: 50%;
  transition: top 0.2s ease-out;
  position: relative;
  left: -5px;
}
@media (max-width: 600px) {
  .scroll-indicator {
    display: none;
  }
}

.chariman-message-wrapper {
  background-color: #f3f3f3;
}
.chariman-message-wrapper.bg__secondary {
  background-color: var(--secondary);
}
.chariman-message-wrapper .chariman-image-wrapper {
  text-align: center;
  position: relative;
}
.chariman-message-wrapper .chariman-image-wrapper .chariman-logo {
  position: absolute;
  right: -47.5px;
  top: 80px;
}
@media (max-width: 991px) {
  .chariman-message-wrapper .chariman-image-wrapper .chariman-logo {
    right: 47px;
    border: 1px solid #ffffff;
    border-radius: 50%;
  }
}
.chariman-message-wrapper .chariman-image-wrapper .princpal-logo {
  right: 35px;
  top: 35px;
}
@media (max-width: 580px) {
  .chariman-message-wrapper .chariman-image-wrapper .princpal-logo {
    right: 20px;
    top: 20px;
    width: 100px;
    height: 100px;
  }
}
.chariman-message-wrapper .chariman-image-wrapper .about-chairman {
  background: #0d2d6e;
  padding: 12px 40px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 340px;
  width: 100%;
}
.chariman-message-wrapper .chariman-message {
  max-height: 372px;
  min-height: 372px;
  overflow: hidden;
  padding-right: 14px;
}
@media (max-width: 767px) {
  .chariman-message-wrapper .chariman-message {
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .chariman-message-wrapper .readMoreBtn.hide {
    display: none;
  }
}

.achievements-wrapper .card {
  background-color: rgba(217, 167, 40, 0.05);
  text-align: center;
  height: 100%;
  min-height: 320px;
  border: none;
  padding: 24px;
}
.achievements-wrapper .card .img-wrapper img {
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}
.achievements-wrapper .card .card-details {
  font-weight: 300;
  font-size: 16px;
}
.achievements-wrapper .card .card-details p {
  margin-bottom: 0;
}
.achievements-wrapper .card.icon:hover .img-wrapper img {
  transform: rotateY(180deg);
}

.governors-slick-slider .slider-nav .slick-track {
  display: flex;
  align-items: end;
  justify-content: center;
}
.governors-slick-slider .slick-arrow {
  z-index: 8;
  top: auto;
  bottom: 45px;
  width: 40px;
  height: 40px;
  background: url(../images/arrow.gif) no-repeat center/contain !important;
  border: 2px solid #d9a728;
  border-radius: 50%;
}
.governors-slick-slider .slick-arrow.slick-prev {
  left: calc(50% - 255px);
  transform: scaleX(-1);
  bottom: 65px;
}
.governors-slick-slider .slick-arrow.slick-next {
  right: calc(50% - 255px);
}
.governors-slick-slider .slick-arrow:before {
  display: none;
}
@media (max-width: 575px) {
  .governors-slick-slider .slick-arrow.slick-prev {
    left: 20px;
    transform: scaleX(-1);
    bottom: 65px;
  }
  .governors-slick-slider .slick-arrow.slick-next {
    right: 20px;
  }
}
.governors-slick-slider .governer-details {
  opacity: 0.3;
}
.governors-slick-slider .governer-details .governer-dark-image {
  position: relative;
  z-index: 0;
  background-size: 50%;
  background-position: bottom center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  filter: grayscale(100%);
}
.governors-slick-slider .governer-details .governer-dark-image img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.governors-slick-slider .governer-details .governer-dark-image:before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  background-image: linear-gradient(179.71deg, rgba(255, 255, 255, 0) 0.25%, rgba(255, 255, 255, 0.74) 38.34%, #ffffff 73.02%);
}
.governors-slick-slider .governer-details .author-info {
  border: 1px solid transparent;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  z-index: 1;
  margin-top: -60px;
}
.governors-slick-slider .governer-details .author-info .author-image-wrapper {
  width: 131px;
  height: 131px;
  overflow: hidden;
  border-radius: 50%;
  background: #d9a728;
  margin: -100px auto 0;
}
.governors-slick-slider .governer-details .author-info .author-image-wrapper .author-image {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  padding-top: 10px;
}
.governors-slick-slider .governer-details .author-info .author-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-top: 36px;
  margin-bottom: 6px;
}
.governors-slick-slider .governer-details .author-info .author-education {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 6px;
}
.governors-slick-slider .governer-details .author-info .author-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}
.governors-slick-slider .slick-center .governer-details {
  opacity: 1;
}
.governors-slick-slider .slick-center .governer-details .governer-dark-image {
  position: relative;
  background-size: 80%;
  opacity: 1;
  filter: grayscale(0);
  transition: all 0.3s ease-in-out;
}
.governors-slick-slider .slick-center .governer-details .governer-dark-image img {
  width: 80%;
  height: auto;
  filter: grayscale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .governors-slick-slider .slick-center .governer-details .governer-dark-image {
    background-size: 100%;
  }
  .governors-slick-slider .slick-center .governer-details .governer-dark-image img {
    width: 100%;
  }
}
.governors-slick-slider .slick-center .governer-details .author-info {
  border: 1px solid rgba(1, 16, 45, 0.2);
}
.governors-slick-slider .governer-message {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.governors-slick-slider .governer-message .message-title {
  font-family: var(--font-family);
  color: var(--primary-500);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
.governors-slick-slider .governer-message .message-content {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: var(--primary-500);
  margin-bottom: 0;
  max-height: 160px;
  overflow: hidden;
}
.governors-slick-slider .governer-message .message-content p {
  margin-bottom: 0;
}

.our-team-accordion .accordion .accordion-item {
  border: 0;
  padding-bottom: 64px;
}
.our-team-accordion .accordion .accordion-item:focus-visible {
  outline: 0;
}
.our-team-accordion .accordion .accordion-item .accordion-header:focus-visible {
  outline: 0;
}
.our-team-accordion .accordion .accordion-item .accordion-header button {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-500);
  padding: 0;
  padding-bottom: 36px;
  background: transparent;
  border-bottom: 1px solid rgba(100, 113, 139, 0.5);
  box-shadow: none;
}
.our-team-accordion .accordion .accordion-item .accordion-header button:focus-visible, .our-team-accordion .accordion .accordion-item .accordion-header button:focus {
  outline: 0;
  box-shadow: none;
}
.our-team-accordion .accordion .accordion-item .accordion-header button::after {
  background-image: url("../images/accordion-plus.svg");
  width: 50px;
  height: 50px;
  background-size: 100%;
  transition: all 0.3s ease-in-out;
}
.our-team-accordion .accordion .accordion-item .accordion-header button.collapsed::after {
  background-image: url("../images/accordion-minus.svg");
}
.our-team-accordion .accordion .accordion-item .accordion-header button:hover::after {
  rotate: 180deg;
}
@media (max-width: 1200px) {
  .our-team-accordion .accordion .accordion-item .accordion-header button {
    font-size: 30px;
  }
}
.our-team-accordion .accordion .accordion-item .accordion-body {
  display: none;
  padding: 36px 10px 0;
  max-height: 875px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
@media (max-width: 767px) {
  .our-team-accordion .accordion .accordion-item .accordion-body {
    max-height: auto;
  }
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card {
  border: 10px solid #f3f3f3;
  border-radius: 16px;
  margin-top: 100px;
  margin-bottom: 36px;
  position: relative;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: -110px;
  background-color: #dce0ea;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-image-wrapper img {
  width: 100%;
  margin-top: 10px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper {
  padding: 0 12px;
  background-color: #ffffff;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .overlay {
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .member-card-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-500);
  font-size: 20px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .member-card-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--primary-500);
  padding-bottom: 18px;
  border-bottom: 1px solid #f3f3f3;
  min-height: 61px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .member-card-modal {
  text-decoration: none;
  margin-bottom: 18px;
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper:after {
  content: "";
  width: 94px;
  height: 100px;
  background-color: #d9a728;
  top: -10px;
  right: -10px;
  position: absolute;
  z-index: 0;
  border-top-right-radius: 16px;
  transition: all 1s linear;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper:before {
  content: "";
  width: 94px;
  height: 100px;
  background-color: #0d2d6e;
  border-bottom-left-radius: 16px;
  top: calc(100% - 90px);
  left: -10px;
  position: absolute;
  z-index: 0;
  transition: all 1s linear;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card:hover .member-card-inner-wrapper:after {
  top: calc(100% - 90px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 16px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .member-card:hover .member-card-inner-wrapper:before {
  top: -10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 16px;
}
.our-team-accordion .accordion .accordion-item .accordion-body .accordion_sub_heading {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-500);
  font-size: 24px;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 30px;
  line-height: 46px;
  position: relative;
}
.our-team-accordion .accordion .accordion-item .accordion-body .accordion_sub_heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--secondary);
  position: absolute;
  bottom: 0;
  left: 10px;
}
.our-team-accordion .accordion .accordion-item:last-child {
  padding-bottom: 0;
}
.our-team-accordion .accordion .accordion-item:last-child .accordion-header button {
  border-bottom: 0px solid rgba(100, 113, 139, 0.5);
  padding-bottom: 0;
}
.our-team-accordion .accordion .accordion-item.active .accordion-body {
  display: block;
}
.our-team-accordion .accordion .accordion-item.active .accordion-header button {
  border-bottom: 1px solid rgba(100, 113, 139, 0.5);
  padding-bottom: 36px;
}
.our-team-accordion .accordion .accordion-item.active .accordion-header button::after {
  background-image: url("../images/accordion-minus.svg");
}

@media (max-width: 767px) {
  .member-content-wrapper.chariman-message-wrapper .chariman-message {
    max-height: 372px;
  }
}

.teamModal {
  z-index: 9999999999;
}
.teamModal .modal-body {
  position: relative;
  overflow: hidden;
}
.teamModal .modal-body .btn-close {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 40px;
  height: 40px;
  z-index: 99;
}
@media (min-width: 768px) {
  .teamModal .modal-body .btn-close {
    right: 80px;
  }
}
.teamModal .modal-body .btn-close:focus {
  box-shadow: none;
}
@media (max-width: 767px) {
  .teamModal .modal-body .btn-close {
    top: 24px;
    right: 24px;
  }
}
.teamModal .modal-body .member-details-slider .member-content-wrapper {
  background-color: transparent;
}
.teamModal .modal-body .member-details-slider .member-content-wrapper .member-title {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--primary-500);
  font-size: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .teamModal .modal-body .member-details-slider .member-content-wrapper .member-title {
    font-size: 30px;
  }
}
.teamModal .modal-body .member-details-slider .member-content-wrapper .member-position {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-500);
  font-size: 16px;
  margin-bottom: 12px;
  height: 38px;
}
.teamModal .modal-body .member-details-slider .member-content-wrapper .chariman-message {
  min-height: 285px;
  max-height: 285px;
}
.teamModal .modal-body .member-details-slider .member-content-wrapper .chariman-message .member-description {
  font-family: var(--font-family);
  font-weight: 300;
  color: var(--primary-500);
  font-size: 16px;
  margin-bottom: 12px;
}
.teamModal .modal-body .member-details-slider .member-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
}
.teamModal .modal-body .member-details-slider .member-image-wrapper .view-in-bio {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 20px;
  background: var(--primary);
  padding: 10px 15px;
  border-radius: 30px;
  color: var(--white);
  text-decoration: none;
  border: 5px solid #fff;
}
.teamModal .modal-body .member-details-slider .member-image-wrapper:before {
  content: "";
  width: 200px;
  height: 200%;
  top: -100px;
  background-color: var(--secondary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .teamModal .modal-body .member-details-slider .member-image-wrapper::before {
    display: none;
    height: 100%;
  }
}
.teamModal .modal-body .member-details-slider .member-image-wrapper img {
  position: relative;
  filter: grayscale(0%);
}
.teamModal .modal-body .team-slider {
  background-image: linear-gradient(to bottom right, rgba(155, 155, 155, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.teamModal .modal-body .team-slider .team-slide {
  padding: 24px;
  cursor: pointer;
}
.teamModal .modal-body .team-slider .team-slide .image-wrapepr {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: #dce0ea;
  border-radius: 50%;
  overflow: hidden;
}
.teamModal .modal-body .team-slider .team-slide .image-wrapepr img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.teamModal .modal-body .team-slider .team-slide .title {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-500);
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.teamModal .modal-body .team-slider .team-slide .position {
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--primary-500);
  font-size: 12px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.teamModal .modal-body .team-slider .team-slide:hover {
  background-color: rgba(13, 45, 110, 0.9);
}
.teamModal .modal-body .team-slider .team-slide:hover .title,
.teamModal .modal-body .team-slider .team-slide:hover .position {
  color: #ffffff;
}
.teamModal .modal-body .team-slider .slick-current {
  background-color: #0d2d6e;
}
.teamModal .modal-body .team-slider .slick-current .team-slide .title,
.teamModal .modal-body .team-slider .slick-current .team-slide .position {
  color: #ffffff;
}
.teamModal .modal-body .team-slider .slick-arrow {
  z-index: 8;
  top: calc(50% - 20px);
  bottom: 45px;
  width: 40px;
  height: 40px;
  background: url(../images/arrow.gif) no-repeat center/contain !important;
  border: 2px solid #d9a728;
  border-radius: 50%;
}
.teamModal .modal-body .team-slider .slick-arrow::before {
  display: none;
}
.teamModal .modal-body .team-slider .slick-arrow.slick-next {
  right: 10px;
  top: calc(50% - 0px);
}
.teamModal .modal-body .team-slider .slick-arrow.slick-prev {
  left: 10px;
  transform: scaleX(-1);
  bottom: 65px;
}
@media (max-width: 991px) {
  .teamModal .modal-body .btn-close {
    top: 24px;
    right: 24px;
  }
  .teamModal .modal-body .member-slide .row {
    flex-direction: column-reverse;
  }
  .teamModal .modal-body .member-slide .row .member-image-wrapper img {
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 50%;
    border: 5px solid var(--secondary);
    margin-left: 10px;
  }
  .teamModal .modal-body .member-slide .row .member-image-wrapper .view-in-bio {
    bottom: -10px;
    left: 30px;
    transform: unset;
    padding: 5px 10px;
    font-size: 12px;
    box-shadow: 0px 1px 0px #000;
  }
}

.loader {
  position: fixed;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  color: var(--secondary);
}

.member-details-slider,
.team-slider {
  visibility: hidden;
  background-color: #ffffff;
}

.member-details-slider.slick-initialized,
.team-slider.slick-initialized {
  visibility: visible;
  background-color: #ffffff;
}

.teamModal .modal-content {
  background: transparent;
}

.vision-mission h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000e2a;
}
.vision-mission .mission-card {
  display: flex;
  align-items: stretch;
  background: rgba(217, 167, 40, 0.1019607843);
  border-radius: 20px;
  margin: 20px 0;
  min-height: 185px;
}
.vision-mission .mission-card .mission-left {
  background: #d9a600;
  color: #fff;
  padding: 45px 38px;
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: -14px 0 -7px 28px;
  border-radius: 0 0 20px 20px;
  position: relative;
}
.vision-mission .mission-card .mission-left:before {
  content: "";
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid #ac8111;
  border-bottom: 15px solid #ac8111;
  top: 0;
  left: -15px;
  z-index: -1;
}
.vision-mission .mission-card .mission-left:after {
  content: "";
  position: absolute;
  border-right: 15px solid transparent;
  border-left: 15px solid #ac8111;
  border-bottom: 15px solid #ac8111;
  top: 0;
  right: -15px;
  z-index: -1;
}
.vision-mission .mission-card .mission-left .mission-label {
  font-size: 16px;
  font-weight: 300;
  color: inherit;
}
.vision-mission .mission-card .mission-left h2 {
  font-weight: 900;
  font-size: 58px;
  color: inherit;
  margin-bottom: 0;
}
.vision-mission .mission-card .mission-content {
  flex: 1;
  padding: 20px;
}
.vision-mission .mission-card .mission-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #000e2a;
}
.vision-mission .mission-card .mission-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vision-mission .mission-card .mission-content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
  font-weight: 300;
  font-size: 14px;
  color: #000e2a;
}
.vision-mission .mission-card .mission-content ul li::before {
  content: url("./../images//mission/arrow-yellow.svg");
  position: absolute;
  left: 0;
  top: 1px;
}
.vision-mission .mission-card .mission-content ul li:last-child {
  margin-bottom: 0;
}
.vision-mission .mission-card .mission-content ul li a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.vision-mission .mission-card .mission-content ul li a:hover {
  text-decoration: underline;
}
.vision-mission .mission-card .mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
}
.vision-mission .mission-card .mission-icon:before {
  content: "";
  position: absolute;
  width: 6px;
  height: calc(100% - 48px);
  top: 50%;
  left: 0;
  background-color: #d9a728;
  transform: translate(0, -50%);
}
.vision-mission .mission-card.rtl {
  flex-direction: row-reverse;
}
.vision-mission .mission-card.rtl .mission-left {
  margin: -14px 28px -7px 0;
}
.vision-mission .mission-card.rtl .mission-icon:before {
  top: 50%;
  right: 0;
  left: auto;
}
.vision-mission .mission-card.blue {
  background: rgba(13, 45, 110, 0.1019607843);
}
.vision-mission .mission-card.blue .mission-left {
  background: #0d2d6e;
  color: #fff;
}
.vision-mission .mission-card.blue .mission-left:before {
  border-right: 15px solid #001135;
  border-bottom: 15px solid #001135;
}
.vision-mission .mission-card.blue .mission-left:after {
  border-left: 15px solid #001135;
  border-bottom: 15px solid #001135;
}
.vision-mission .mission-card.blue .mission-content h3 {
  color: #000e2a;
}
.vision-mission .mission-card.blue .mission-content ul li {
  color: #000e2a;
}
.vision-mission .mission-card.blue .mission-content ul li::before {
  content: url("./../images//mission/arrow-blue.svg");
}
.vision-mission .mission-card.blue .mission-icon:before {
  background-color: #0d2d6e;
}
@media (max-width: 768px) {
  .vision-mission .mission-card {
    flex-direction: column;
  }
  .vision-mission .mission-card .mission-left {
    max-width: 138px;
    padding: 20px 38px;
  }
  .vision-mission .mission-card .mission-icon {
    padding: 15px 0;
  }
  .vision-mission .mission-card .mission-icon:before {
    content: "";
    position: absolute;
    width: calc(100% - 48px);
    height: 6px;
    top: 0;
    left: 50%;
    background-color: #d9a728;
    transform: translate(-50%, 0);
  }
  .vision-mission .mission-card.rtl {
    flex-direction: column;
  }
  .vision-mission .mission-card.rtl .mission-left {
    margin-left: auto;
  }
  .vision-mission .mission-card.rtl .mission-icon:before {
    left: 50% !important;
    top: 0 !important;
    transform: translate(-50%) !important;
  }
}

.mt-45 {
  margin-top: 45px !important;
}

.primary-campus-wrapper .campus-tour {
  border-radius: 20px;
  overflow: hidden;
}
.primary-campus-wrapper .campus-tour iframe {
  display: block;
  border: 0;
}

.wellbeing-team-accordion .accordion .accordion-item .accordion-header {
  display: none;
}
.wellbeing-team-accordion .accordion .accordion-item .accordion-body {
  padding: 0;
  max-height: 100%;
  overflow: hidden;
}
.wellbeing-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .member-card-position {
  border-bottom: none;
  margin-bottom: 0;
}
.wellbeing-team-accordion .accordion .accordion-item .accordion-body .member-card .member-card-inner-wrapper .member-card-modal {
  display: none;
}

.facility-wrapper .facility {
  display: flex;
}
.facility-wrapper .facility .count {
  flex-basis: 35%;
  padding: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0d2d6e;
  background-image: var(--facility-bg);
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #fff;
}
.facility-wrapper .facility .count h2 {
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  color: inherit;
}
.facility-wrapper .facility .count span {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2%;
  color: inherit;
}
@media (max-width: 1200px) {
  .facility-wrapper .facility .count {
    padding: 100px;
  }
}
.facility-wrapper .facility .feature {
  flex: 1;
  overflow: hidden;
}
.facility-wrapper .facility .feature img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 660px;
  transition: all ease-in-out 0.3s;
}
.facility-wrapper .facility .feature:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}
.facility-wrapper .facility-rtl.facility {
  flex-direction: row-reverse;
}
.facility-wrapper .facility-rtl.facility .count {
  background-color: #d9a728;
}
@media (max-width: 767px) {
  .facility-wrapper {
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  .facility-wrapper .facility {
    flex-direction: column;
  }
  .facility-wrapper .facility.facility-rtl {
    flex-direction: column;
  }
  .facility-wrapper .facility .count {
    padding: 55px;
    background-size: contain;
    min-height: 360px;
  }
}

.policy-card-wrapper .policy-card {
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.policy-card-wrapper .policy-card .policy-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.policy-card-wrapper .policy-card .policy-card-header .policy-title {
  text-align: left;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}
.policy-card-wrapper .policy-card .policy-card-image {
  width: 100%;
  height: 330px;
  margin: 0 auto;
  max-width: 235px;
  overflow: hidden;
}
.policy-card-wrapper .policy-card .policy-card-image img {
  transition: transform 0.5s ease;
}
.policy-card-wrapper .policy-card .btn-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.5333333333);
  gap: 24px;
  display: none;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.policy-card-wrapper .policy-card .btn-overlay a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}
.policy-card-wrapper .policy-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.policy-card-wrapper .policy-card:hover .policy-card-image img {
  transform: scale(1.05);
}
.policy-card-wrapper .policy-card:hover .btn-overlay {
  display: flex;
}
.policy-card-wrapper:nth-child(even) .policy-card {
  background-color: #fbf6e9;
}
.policy-card-wrapper:nth-child(odd) .policy-card {
  background-color: #f3f4f8;
}
.policy-card-wrapper:nth-child(odd) .policy-card.pcard-wrapper {
  background-color: rgba(13, 45, 110, 0.1019607843);
}

form [type=date],
form [type=email],
form [type=tel],
form [type=text],
form textarea,
form select {
  border: 0 !important;
  border-bottom: 1px solid rgba(100, 113, 139, 0.5019607843) !important;
  box-shadow: none !important;
  outline: none;
  color: #181818;
  font-size: 16px;
  height: 48px;
  line-height: initial;
  margin-bottom: 32px;
  border-radius: 0 !important;
  padding: 0.375rem 10px !important;
}
form select {
  padding-left: 10px !important;
  padding-right: 40px !important;
  background-image: url("../images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
form .error {
  border-bottom: 1px solid #ff0000 !important;
}

#alumnifrom {
  width: 100%;
  padding: 36px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  margin-left: auto;
}
@media (max-width: 991px) {
  #alumnifrom {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
  }
}

.school-timing table thead th {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  background: var(--primary-100);
  color: #fff;
  padding: 20px;
  border: 1px solid #ffffff;
  min-height: 70px;
}
.school-timing table tbody tr td {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  padding: 20px;
  border: 1px solid #ffffff;
  min-height: 70px;
}
.school-timing table tbody tr:nth-child(odd) td {
  background: rgba(13, 45, 110, 0.1);
}
.school-timing table tbody tr:nth-child(even) td {
  background: rgba(217, 167, 40, 0.1);
}

.pc-wrapper {
  background-color: rgba(13, 45, 110, 0.1019607843);
}
.pc-wrapper .policies {
  position: relative;
}
.pc-wrapper .policies::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background-image: url("./../images/safeguarding/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 105px);
}
.pc-wrapper .downloads {
  padding: 0 48px;
}
.pc-wrapper .downloads .download-outer {
  background-color: #fff;
  padding: 36px;
  max-width: 450px;
  width: 100%;
}
.pc-wrapper .downloads .download-outer .download-box {
  border-radius: 8px;
  padding: 24px;
  background-color: rgba(13, 45, 110, 0.1019607843);
}
.pc-wrapper .downloads .download-outer .download-box a {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
.pc-wrapper .downloads .download-outer .download-box .img-wrapper {
  margin-top: 32px;
  padding: 12px;
  text-align: center;
}
.pc-wrapper .downloads .download-outer .download-box.yellow {
  background-color: rgba(217, 167, 40, 0.1019607843);
}
.pc-wrapper .downloads .download-outer:first-child {
  border-radius: 0 8px 0 8px;
  position: relative;
}
.pc-wrapper .downloads .download-outer:first-child::before {
  content: "";
  height: 36px;
  width: 100%;
  right: 100%;
  top: 0;
  position: absolute;
  background: #fff;
}
.pc-wrapper .downloads .download-outer:last-child {
  border-radius: 8px 0 8px 0px;
  position: relative;
}
.pc-wrapper .downloads .download-outer:last-child::before {
  content: "";
  height: 36px;
  width: 100%;
  left: 100%;
  top: 0;
  position: absolute;
  background: #fff;
}
.pc-wrapper .downloads .download-outer:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(13, 45, 110, 0.18);
}
@media (max-width: 767px) {
  .pc-wrapper .downloads {
    padding: 0 24px 24px;
    gap: 24px;
    flex-direction: column;
  }
  .pc-wrapper .downloads .download-outer {
    padding: 12px;
    border-radius: 8px !important;
    max-width: 100%;
  }
  .pc-wrapper .downloads .download-outer .download-box {
    padding: 12px;
  }
  .pc-wrapper .downloads .download-outer .download-box .img-wrapper {
    margin-top: 12px;
    padding: 0;
  }
  .pc-wrapper .downloads .download-outer .download-box .img-wrapper img {
    width: 100%;
  }
  .pc-wrapper .downloads .download-outer:nth-child(2) {
    padding: 12px !important;
  }
  .pc-wrapper .downloads .download-outer:after, .pc-wrapper .downloads .download-outer:before {
    display: none;
  }
  .pc-wrapper .policies::after {
    width: 50px;
    height: 50px;
    transform: translate(-50%, 24px);
    background-size: contain;
  }
}

.safeguard-education {
  position: relative;
  margin: 80px 0 0;
}
.safeguard-education .user {
  display: flex;
  align-items: center;
  position: absolute;
}
.safeguard-education .user .info {
  text-align: center;
  color: #fff;
  padding: 15px 12px;
  background-color: #8696b7;
  border-radius: 80px;
  max-width: 215px;
  border: 5px solid #fff;
}
.safeguard-education .user .info h5 {
  font-weight: 600;
  font-size: 14px;
}
.safeguard-education .user .info span {
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
}
.safeguard-education .user.left {
  top: -113px;
  left: 100px;
}
.safeguard-education .user.right {
  bottom: -113px;
  right: 100px;
  flex-direction: row-reverse;
}
.safeguard-education .user.right.yellow .info {
  background-color: #d9a728;
}
.safeguard-education .play-btn {
  position: absolute;
  right: 90px;
  top: -68px;
  cursor: pointer;
}
.safeguard-education .play-btn .img-wrapper {
  position: relative;
}
.safeguard-education .play-btn .img-wrapper .text-layer {
  position: absolute;
  left: -5px;
  top: -5px;
  animation: loading 8s linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.safeguard-education .quality-education {
  padding: 120px 105px;
  border: 5px solid rgba(13, 45, 110, 0.5019607843);
  border-radius: 350px;
}
@media (max-width: 1024px) {
  .safeguard-education .play-btn {
    right: 70px;
    top: -18px;
    scale: 0.6;
  }
}
@media (max-width: 767px) {
  .safeguard-education .quality-education {
    padding: 190px 24px 225px;
    border-radius: 24px;
    margin: 0 24px;
  }
  .safeguard-education .user {
    flex-direction: column !important;
    left: 50% !important;
    transform: translate(-50%);
  }
  .safeguard-education .user .img-wrapper {
    width: 180px;
  }
  .safeguard-education .user .img-wrapper img {
    width: 100%;
  }
  .safeguard-education .user .info {
    max-width: none;
    width: 250px;
    min-width: 250px;
  }
  .safeguard-education .user.right {
    bottom: -83px !important;
  }
  .safeguard-education .user.yellow {
    flex-direction: column-reverse !important;
  }
  .safeguard-education .play-btn {
    right: -26px;
    top: -59px;
    scale: 0.5;
  }
}

.custom-table thead {
  vertical-align: middle;
}
.custom-table thead th {
  background: var(--primary-100);
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px;
}
.custom-table tbody tr td {
  background: rgba(13, 45, 110, 0.1019607843);
  border: 1px solid #fff;
  padding: 23px 12px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
}
.custom-table tbody tr td a {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.custom-table tbody tr:nth-child(even) td {
  background: rgba(217, 167, 40, 0.1019607843);
}
.custom-table .custom-subtable tr td:nth-child(odd) {
  background-color: #e7e6f0;
}
.custom-table .custom-subtable tr td:nth-child(even) {
  background-color: #fcf7e5;
}

.custom-list {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}
.custom-list li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  color: #000e2a;
}
.custom-list li::before {
  content: url("./../images/chevron-right-double.svg");
  position: absolute;
  top: -1px;
  left: 0;
}
.custom-list li:last-child {
  margin-bottom: 0;
}

.sibling-discount {
  background: rgba(13, 45, 110, 0.1019607843);
  border-radius: 8px;
  margin-top: 100px;
}
.sibling-discount .discount-content {
  padding: 24px;
  min-height: 305px;
}
.sibling-discount .gift-image {
  width: 570px;
  position: relative;
}
.sibling-discount .gift-image .gift-bg {
  background-image: url("./../images/blue-vector.png");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.sibling-discount .gift-image .box {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.sibling-discount .gift-image .perc {
  width: 92px;
  height: 92px;
  position: absolute;
  right: 156px;
  top: 60px;
}
@media (max-width: 993px) {
  .sibling-discount {
    flex-direction: column;
    overflow: hidden;
    margin-top: 0;
  }
  .sibling-discount .discount-content {
    min-height: auto;
  }
  .sibling-discount .gift-image {
    width: 100%;
    position: relative;
    height: 310px;
    margin-top: 60px;
  }
  .sibling-discount .gift-image .gift-bg {
    background-size: 556px;
    background-position: right bottom;
  }
}

.companies {
  display: flex;
  justify-content: space-between;
}
.companies .logo-box {
  flex: 1;
  text-align: center;
  align-items: center;
  border-right: 1px solid rgba(100, 113, 139, 0.5019607843);
  padding: 0 12px;
  filter: grayscale(1);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.companies .logo-box:last-child {
  border-right: 0;
}
.companies .logo-box:hover {
  filter: grayscale(0);
}

.exclusions .ex-item {
  min-height: 100px;
  border-bottom: 1px solid rgba(100, 113, 139, 0.5019607843);
  position: relative;
}
.exclusions .ex-item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7.5px;
  height: 15px;
  width: 15px;
  border: 1px solid #0d2d6e;
  background-color: #fff;
  border-radius: 50%;
}

.ipad {
  background-color: #d9a728;
  padding: 24px 0;
  min-height: 340px;
}
@media (max-width: 1200px) {
  .ipad {
    margin: 50px 0;
  }
}
@media (max-width: 992px) {
  .ipad {
    margin: 80px 0 0;
  }
}
.ipad img {
  margin: -90px 0 -110px;
}
@media (max-width: 1200px) {
  .ipad img {
    margin: -70px 0 -100px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .ipad img {
    margin: -100px auto 0;
    width: 100%;
    max-width: 320px;
    padding: 0 0 24px;
  }
}

.payment-option .image-wrapepr {
  border-radius: 8px;
  overflow: hidden;
}
.payment-option .image-wrapepr img {
  -o-object-fit: cover;
     object-fit: cover;
}

.refund-policy img {
  max-width: 96px;
}

.fee-inclusion .icon {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.fee-inclusion .icon img {
  width: 100%;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  background-repeat: no-repeat;
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.info-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #e7e9f0;
  z-index: 1;
}
.info-card:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #e7e9f0;
  z-index: 1;
}
.info-card .icon {
  position: relative;
}
.info-card .icon img {
  width: 50px;
  height: 50px;
}
.info-card .content {
  position: relative;
  z-index: 3;
}
.info-card.left {
  background-image: url("./../images/fee/frame.svg");
}
.info-card.left:after {
  left: 0;
  top: 110px;
}
.info-card.left:before {
  left: 120px;
  top: 0;
}
.info-card.left .icon {
  left: -12px;
  top: -16px;
}
.info-card.left .content {
  padding-left: 55px;
}
@media (max-width: 475px) {
  .info-card.left {
    flex-wrap: wrap;
    gap: 28px;
  }
  .info-card.left .content {
    padding-left: 0;
  }
}
.info-card.right {
  background-image: url("./../images/fee/frame-right.svg");
  background-position: top right;
}
.info-card.right:after {
  right: 0;
  top: 110px;
}
.info-card.right:before {
  right: 120px;
  top: 0;
}
.info-card.right .icon {
  right: -12px;
  top: -16px;
}
.info-card.right .content {
  padding-right: 55px;
}
@media (max-width: 475px) {
  .info-card.right {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 28px;
  }
  .info-card.right .icon {
    right: -89%;
    z-index: 1;
  }
  .info-card.right .content {
    padding-right: 0;
  }
}

.nav-pills.custom-tab {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.nav-pills.custom-tab li {
  flex: 1;
}
.nav-pills.custom-tab li button {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 0;
  padding: 20px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
}
.nav-pills.custom-tab li button.active {
  background: var(--secondary) !important;
  color: var(--black) !important;
  cursor: pointer;
}
.nav-pills.custom-tab li button:focus, .nav-pills.custom-tab li button:hover {
  color: #000000;
}
.nav-pills.custom-tab li:first-child button.nav-link {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 8px !important;
}
.nav-pills.custom-tab li:last-child button.nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 0;
}

.age-calculator .age-calculater-form-wrapper {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 12px;
}
.age-calculator .age-calculater-result {
  background: #f3f3f3;
  border-radius: 12px;
}
.age-calculator .age-calculater-notes ul {
  list-style: none;
}
.age-calculator .age-calculater-notes ul li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--font-family);
  margin-bottom: 12px;
}
.age-calculator .age-calculater-notes ul li:before {
  content: url("./../images/chevron-right-double.svg");
  position: absolute;
  top: 0;
  left: -35px;
}

.promo-box {
  background-color: var(--primary-300);
  border-radius: 8px;
  color: #fff;
  margin-top: 80px;
}
.promo-box.bg__secondary {
  background-color: var(--secondary);
}
.promo-box .feature {
  background-image: url(./../images/diamond.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: end;
  justify-content: center;
}
.promo-box .feature img {
  margin-top: -80px;
}
@media (max-width: 991px) {
  .promo-box .feature img {
    margin-top: auto;
    padding: 24px 0 0;
  }
}

.steps .step {
  border-radius: 30px;
  border: 1px solid #e0af00;
  padding: 30px 75px 0;
  position: relative;
  margin-top: 125px;
  background-color: #fff;
  position: relative;
}
.steps .step .col-md-12.mb-36 {
  margin-bottom: 0 !important;
}
.steps .step:after {
  content: "";
  border-right: 2px dashed #e0af00;
  height: 95px;
  bottom: -95px;
  width: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
}
.steps .step:last-child:after {
  display: none;
}
@media (max-width: 992px) {
  .steps .step {
    padding: 30px 12px 0;
    margin-top: 75px;
  }
  .steps .step:after {
    content: "";
    height: 45px;
    bottom: -45px;
  }
}
.steps .step .counter {
  left: 50%;
  transform: translate(-50%, 0);
  top: -35px;
  position: absolute;
  border: 5px solid #fff;
}
.steps .step .counter span {
  display: inline-block;
  padding: 14px 50px 14px 40px;
  background: #dfaf00;
  border-radius: 30px;
  color: #000e2e;
  font-weight: 600;
  font-size: 18px;
}
.steps .step .counter img {
  display: inline-block;
  padding: 10px;
  background: #dfaf00;
  border-radius: 30px;
  width: 100%;
}
.steps .step .policy-section {
  padding-bottom: 0;
}

.card-blog .card-img {
  position: relative;
}
.card-blog .card-img img {
  min-height: 248px;
  max-height: 248px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .card-blog .card-img img {
    min-height: 234px;
    max-height: 234px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.card-blog .card-img .date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  background-color: #0d2d6e;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  line-height: 100%;
  padding: 8px 12px;
}
.card-blog .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 140px;
}
@media (max-width: 767px) {
  .card-blog .card-content {
    height: auto;
  }
}
.card-blog .card-content .view-details {
  background: var(--primary-100);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  outline: 10px solid var(--white);
  position: absolute;
  right: 0;
  bottom: 0;
}

.truncate-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.curriculum-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #000e2a;
}
.curriculum-content ul {
  list-style-type: none;
}
.curriculum-content ul li {
  margin-bottom: 12px;
  position: relative;
  line-height: 1.5;
  font-weight: 300;
  font-size: 14px;
  color: #000e2a;
}
.curriculum-content ul li:before {
  content: url(./../images/chevron-right-double.svg);
  position: absolute;
  top: 0;
  left: -35px;
}

.new_promo-strip .books-img {
  position: absolute;
  width: 75%;
  right: 0;
  bottom: 0;
  display: block;
}
@media (max-width: 767px) {
  .new_promo-strip:before {
    content: "";
    position: absolute;
    background-image: url(../images/books.png);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: 95%;
    opacity: 0.3;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .new_promo-strip .books-img {
    position: static;
    display: none;
  }
}

.curriculum-england .curriculum-england__row {
  background: linear-gradient(to right, white 0%, white 25%, rgba(13, 45, 110, 0.1) 25%, rgba(13, 45, 110, 0.1) 100%);
  border-radius: 8px;
  padding: 36px;
}
.curriculum-england .curriculum-england__row .logo {
  position: absolute;
  top: -80px;
  right: -20px;
  background: #fff;
  border-radius: 50%;
  width: 120px;
}
@media (max-width: 991px) {
  .curriculum-england .curriculum-england__row {
    background: transparent;
    padding: 0;
  }
  .curriculum-england .curriculum-england__row .logo {
    top: 30px;
    left: 30px;
    width: 70px;
  }
}

.eyfs-curriculum .play-icon,
.arcaia-enterpreneur .play-icon,
.watch_apple_video .play-icon {
  position: absolute;
  cursor: pointer;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
}

.junior_dukes_award {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.junior_dukes_award .count {
  padding: 17px 40px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
.junior_dukes_award .icon-with-content {
  display: flex;
  align-items: center;
  width: 100%;
}
.junior_dukes_award .icon-with-content .icon {
  border-radius: 50%;
  width: 82px;
  height: 82px;
  min-width: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.junior_dukes_award .icon-with-content .content {
  padding: 17px 40px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  width: 100%;
  margin-left: -20px;
}
.junior_dukes_award.secondary .count {
  background: rgba(217, 167, 40, 0.1);
  color: var(--secondary);
}
.junior_dukes_award.secondary .icon-with-content .icon {
  background: var(--secondary);
}
.junior_dukes_award.secondary .icon-with-content .content {
  background: rgba(217, 167, 40, 0.1);
  color: var(--primary-500);
}
.junior_dukes_award.primary .count {
  background: rgba(13, 45, 110, 0.1);
  color: var(--primary);
}
.junior_dukes_award.primary .icon-with-content .icon {
  background: var(--primary);
}
.junior_dukes_award.primary .icon-with-content .content {
  background: rgba(13, 45, 110, 0.1);
  color: var(--primary-500);
}
@media (max-width: 475px) {
  .junior_dukes_award .count {
    padding: 17px 20px;
    font-size: 14px;
  }
  .junior_dukes_award .icon-with-content {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .junior_dukes_award .icon-with-content .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .junior_dukes_award .icon-with-content .icon img {
    width: 40%;
  }
  .junior_dukes_award .icon-with-content .content {
    font-size: 14px;
    text-align: left;
  }
}

.award-wrapper {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  padding: 66px 0;
  background-color: rgba(217, 167, 40, 0.1);
}
.award-wrapper .award-icon {
  width: 82px;
  min-width: 82px;
  height: 82px;
  position: absolute;
  left: -41px;
  top: -41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 20px;
  background-color: var(--secondary);
}
.award-wrapper .row {
  border: 5px solid var(--secondary);
  padding: 60px;
}
.award-wrapper .row .content-wrapper {
  padding-right: 60px;
}
.award-wrapper.rtl {
  background-position: left;
  background-color: rgba(13, 45, 110, 0.1);
}
.award-wrapper.rtl .award-icon {
  background-color: var(--primary);
  left: auto;
  right: -41px;
}
.award-wrapper.rtl .row {
  flex-direction: row-reverse;
  border: 5px solid var(--primary);
}
.award-wrapper.rtl .row .content-wrapper {
  padding-left: 60px;
  padding-right: 0px;
}
@media (max-width: 1440px) {
  .award-wrapper {
    background-size: 40%;
  }
  .award-wrapper .row .content-wrapper {
    padding-right: 80px;
  }
  .award-wrapper.rtl .content-wrapper {
    padding-left: 80px !important;
    padding-right: 0px !important;
  }
}
@media (max-width: 1024px) {
  .award-wrapper .award-icon {
    left: -15px;
    top: -15px;
  }
  .award-wrapper.rtl .award-icon {
    left: auto;
    right: -15px;
    top: -15px;
  }
}
@media (max-width: 991px) {
  .award-wrapper {
    background-size: cover;
  }
  .award-wrapper .award-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    left: 60px;
    top: 20px;
  }
  .award-wrapper .row {
    background-color: rgba(217, 167, 40, 0.8);
    padding: 100px 16px 16px;
    width: 95%;
    margin: 0 auto;
  }
  .award-wrapper .row .content-wrapper {
    padding-right: 0px;
  }
  .award-wrapper .row .content-wrapper .text__primart500 {
    color: #ffffff !important;
  }
  .award-wrapper .row .content-wrapper ul li:before {
    filter: invert(100%);
  }
  .award-wrapper.rtl .award-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    left: 60px;
    top: 20px;
  }
  .award-wrapper.rtl .row {
    background-color: rgba(13, 45, 110, 0.8);
  }
  .award-wrapper.rtl .row .content-wrapper {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

.card-audio .card-img {
  width: 107px;
  min-width: 107px;
  height: 107px;
  border-radius: 12px;
  overflow: hidden;
}
.card-audio .audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  width: 100%;
}
.card-audio .audio-player .progress-container {
  flex: 1;
  position: relative;
}
.card-audio .audio-player .progress-container .progress-bar {
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  overflow: visible;
}
.card-audio .audio-player .progress-container .progress-bar .progress-fill {
  width: 30%;
  height: 100%;
  background: #0c0c77;
  border-radius: 5px;
  position: relative;
}
.card-audio .audio-player .progress-container .progress-bar .progress-fill .progress-knob {
  width: 11px;
  height: 11px;
  background: #0c0c77;
  border-radius: 50%;
  position: absolute;
  top: -3.8px;
  right: 0;
}
.card-audio .audio-player .audio-btn {
  width: 24px;
  height: 24px;
  background: #0c0c77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 3px !important;
}
.card-audio .audio-player .audio-btn.audio-btn-outline {
  background: transparent;
  border: 2px solid #0c0c77;
}
.card-audio .audio-player .audio-btn.audio-btn-outline svg {
  fill: #0c0c77;
}
.card-audio .play-pause-btn svg {
  fill: #fff;
}
.card-audio .time-left {
  font-weight: 400;
  font-size: 10px;
  margin-top: -5px;
  display: block;
}
.card-audio .date {
  display: inline-flex;
  font-family: Poppins;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  background: var(--primary-100);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 8px 0 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.scroll-item-n {
  display: flex;
  flex: 1;
}

.scroll-container .scroll-item-n:last-child {
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
}
.scroll-container .scroll-item-n:last-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  border-radius: 0 8px 8px 0;
}

.gallery-container {
  display: flex;
  background: #f3f3f3;
  border-radius: 8px;
  overflow: hidden;
  /* Thumbnails */
  /* Main Image */
}
.gallery-container .thumbnails {
  width: 20%;
  background: #f5f5f5;
  overflow-y: auto;
  padding: 24px;
  max-height: 90vh;
}
.gallery-container .thumbnails img {
  height: 102px;
  width: 100%;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-container .thumbnails img.active {
  border-color: #ffcc00;
}
.gallery-container .main-slide-wrapper {
  background: #f3f3f3;
  width: 80%;
  text-align: end;
  /* Caption */
}
.gallery-container .main-slide-wrapper .main-slide {
  padding: 48px;
  position: relative;
  /* Dots */
}
.gallery-container .main-slide-wrapper .main-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-container .main-slide-wrapper .main-slide .dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translate(-50%, 0);
  gap: 8px;
  min-width: 170px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 34px;
}
.gallery-container .main-slide-wrapper .main-slide .dots::before {
  content: "";
  position: absolute;
  border-bottom: 40px solid #f3f3f3;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  height: 0;
  width: 100%;
  z-index: -1;
}
.gallery-container .main-slide-wrapper .main-slide .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--primary-200);
  cursor: pointer;
}
.gallery-container .main-slide-wrapper .main-slide .dots span.active {
  background: var(--primary-200);
}
.gallery-container .main-slide-wrapper .caption {
  background: #0b0d6d;
  padding: 15px 24px;
  min-height: 135px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px 0 0 0;
  min-width: 40%;
  text-align: left;
}

@media (max-width: 1024px) {
  .gallery-container {
    flex-direction: column-reverse !important;
  }
  .gallery-container .main-slide-wrapper {
    width: 100% !important;
  }
  .gallery-container .main-slide-wrapper .caption {
    min-height: auto;
  }
  .gallery-container .thumbnails {
    width: 100% !important;
    display: flex;
    gap: 12px;
  }
}
.apple-distinguished-school {
  background-color: var(--primary);
  border-radius: 8px;
}
.apple-distinguished-school .code-img {
  width: 80px;
}
@media (max-width: 991px) {
  .apple-distinguished-school .code-img {
    width: 45px;
  }
}
.apple-distinguished-school .distinguished-school img {
  border-radius: 12px;
  overflow: hidden;
}
.apple-distinguished-school .distinguished-school .apple_logo {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
}

@media (max-width: 991px) {
  .watch_apple_video .text__32 {
    font-size: 18px;
  }
}

.contact-shield-wrapper {
  min-height: 950px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .contact-shield-wrapper {
    min-height: 500px;
  }
  .contact-shield-wrapper .contact-shield {
    padding: 50px !important;
  }
  .contact-shield-wrapper .contact-shield img {
    width: 150px;
    height: 150px;
  }
}
.contact-shield-wrapper .contact-shield {
  background-image: url(./../images/contact/shield-n.svg);
  background-repeat: no-repeat;
  padding: 72px;
  display: inline-block;
  background-size: contain;
  margin: 0 auto;
  position: relative;
}
.contact-shield-wrapper .contact-shield:before, .contact-shield-wrapper .contact-shield:after {
  content: "";
  width: 70%;
  left: 15%;
  position: absolute;
  z-index: -1;
}
.contact-shield-wrapper .contact-shield:before {
  height: 150%;
  background: #d4a328;
  top: -100%;
}
.contact-shield-wrapper .contact-shield:after {
  background: #0d2d6e;
  top: 60%;
  height: 160%;
}
.contact-shield-wrapper .contact-shield .icon-box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.contact-shield-wrapper .contact-shield .icon-box .shine-icon {
  display: block;
  width: 200px;
  /* adjust as needed */
  height: 200px;
  position: relative;
}
.contact-shield-wrapper .contact-shield .icon-box .shine-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewY(-25deg);
}
.contact-shield-wrapper .contact-shield .shine {
  animation: shineMove 1.2s ease;
}
@keyframes shineMove {
  100% {
    left: 125%;
  }
}
.contact-shield-wrapper .contact-shield .rotate {
  animation: rotateOnce 1s ease forwards;
}
@keyframes rotateOnce {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.parents-association-team-accordion .our-team-accordion .accordion .accordion-item .accordion-header {
  display: none;
}
.parents-association-team-accordion .our-team-accordion .accordion .accordion-item .accordion-body {
  max-height: 100% !important;
}

.arcaia-enterpreneur .image-wrapper {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.arcaia-enterpreneur .image-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-form .tab {
  display: none;
}
.step-form .step.active {
  display: block;
}

.enquiry-from-wrapper {
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
}
.enquiry-from-wrapper .form-container .form-step {
  display: none;
}
.enquiry-from-wrapper .form-container .form-step.active {
  display: block;
}
.enquiry-from-wrapper .form-container .form-step .form-section .step-images {
  background-image: linear-gradient(to right, var(--secondary) 90%, var(--white) 10%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.enquiry-from-wrapper .form-container .form-step .form-section .step-images .step-title {
  padding: 48px;
  margin: 0;
  font-family: var(--font-family);
  color: var(--white);
  font-weight: 700;
  font-size: 70px;
  line-height: 50px;
}
.enquiry-from-wrapper .form-container .form-step .form-section .step-images .step-title span {
  font-weight: 400;
  font-size: 30px;
}
.enquiry-from-wrapper .form-container .form-step .form-section .step-images .step-image {
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .enquiry-from-wrapper .form-container .form-step .form-section .step-images {
    background: var(--secondary);
    display: flex;
    flex-direction: row;
  }
  .enquiry-from-wrapper .form-container .form-step .form-section .step-images .step-title {
    font-size: 40px;
    padding: 40px 20px;
  }
  .enquiry-from-wrapper .form-container .form-step .form-section .step-images .step-image {
    width: 200px;
    margin-left: auto;
  }
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper .step-count {
  width: 45px;
  height: 45px;
  min-width: 45px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-100);
  background-color: var(--white);
  color: var(--primary-100);
  border-radius: 50%;
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper .step-detail {
  color: #64718B;
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper.active .step-count {
  background-color: var(--primary-100);
  color: var(--white);
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper.active .step-detail {
  color: var(--primary-100);
}
.enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper.first-child:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 5px;
  border-bottom: 1px dotted var(--grey);
  z-index: -1;
  right: -7px;
  top: 7px;
}
@media (max-width: 767px) {
  .enquiry-from-wrapper .form-container .form-step .form-section .steps-wrapper.first-child:before {
    left: 22px;
    top: 60%;
    border-left: 1px dotted var(--grey);
    width: 5px;
    height: 100%;
  }
}
.enquiry-from-wrapper .form-container .form-step .form-section .step-field-wrapper {
  padding: 40px 100px 40px 30px;
}
@media (max-width: 991px) {
  .enquiry-from-wrapper .form-container .form-step .form-section .step-field-wrapper {
    padding: 40px 30px;
  }
}

.teacher-tabs {
  background-color: #F3F4F8;
  padding: 24px;
}
.teacher-tabs .member-card {
  border: 10px solid #f3f3f3;
  border-radius: 8px;
  margin-top: 100px;
  margin-bottom: 36px;
  position: relative;
}
.teacher-tabs .member-card .member-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: -110px;
  background-color: #dce0ea;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.teacher-tabs .member-card .member-image-wrapper img {
  width: 100%;
  margin-top: 10px;
}
.teacher-tabs .member-card .member-card-inner-wrapper {
  padding: 0 12px;
  background-color: #ffffff;
}
.teacher-tabs .member-card .member-card-inner-wrapper .overlay {
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px;
}
.teacher-tabs .member-card .member-card-inner-wrapper .member-card-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-500);
  font-size: 20px;
}
.teacher-tabs .member-card .member-card-inner-wrapper .member-card-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--primary-500);
  padding-bottom: 18px;
  border-bottom: 1px solid #f3f3f3;
  min-height: 61px;
}
.teacher-tabs .member-card .member-card-inner-wrapper .member-card-modal {
  text-decoration: none;
  margin-bottom: 18px;
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--primary);
}
.teacher-tabs .member-card .member-card-inner-wrapper:after {
  content: "";
  width: 94px;
  height: 100px;
  background-color: #d9a728;
  top: -10px;
  right: -10px;
  position: absolute;
  z-index: 0;
  border-top-right-radius: 8px;
  transition: all 1s linear;
}
.teacher-tabs .member-card .member-card-inner-wrapper:before {
  content: "";
  width: 94px;
  height: 100px;
  background-color: #0d2d6e;
  border-bottom-left-radius: 8px;
  top: calc(100% - 90px);
  left: -10px;
  position: absolute;
  z-index: 0;
  transition: all 1s linear;
}
.teacher-tabs .member-card:hover .member-card-inner-wrapper:after {
  top: calc(100% - 90px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 8px;
}
.teacher-tabs .member-card:hover .member-card-inner-wrapper:before {
  top: -10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 8px;
}
.teacher-tabs .tab {
  height: 100%;
  position: relative;
}
.teacher-tabs .tab button {
  border: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary-500);
  padding: 12px;
  background: transparent;
  width: 100%;
  text-align: start;
  border-right: solid 5px var(--white);
}
.teacher-tabs .tab button:hover, .teacher-tabs .tab button.active {
  color: var(--secondary);
  border-right: solid 5px var(--secondary);
}
.teacher-tabs .tab::before {
  content: "";
  position: absolute;
  border-right: 5px solid #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 991px) {
  .teacher-tabs .tab {
    display: flex;
    white-space: nowrap;
    gap: 12px;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .teacher-tabs .tab::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }
  .teacher-tabs .tab::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .teacher-tabs .tab::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }
  .teacher-tabs .tab::before {
    display: none;
  }
  .teacher-tabs .tab button {
    width: auto;
    border: none;
    border-radius: 8px;
    background-color: var(--white);
    padding-inline: 16px;
    height: 60px;
  }
  .teacher-tabs .tab button:hover, .teacher-tabs .tab button.active {
    color: var(--white);
    background-color: var(--secondary);
  }
}
.teacher-tabs .tabcontent {
  display: none;
}
.teacher-tabs .tabcontent.active {
  display: block;
}
.teacher-tabs .tabcontent .tab-content-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-500);
  padding: 12px 24px;
  margin: 0;
  border-bottom: 5px solid #ffffff;
}
.teacher-tabs .tabcontent .tab-content-detail {
  padding: 24px;
  padding-bottom: 0;
  height: 100%;
}
@media (max-width: 991px) {
  .teacher-tabs .tabcontent {
    border-left: none;
  }
  .teacher-tabs .tabcontent .tab-content-title {
    padding: 24px;
  }
}

.principal-vlogs .member-content {
  display: none;
}
.principal-vlogs .member-content.active {
  display: block;
}

.newsletter-section .profile-card {
  position: relative;
  border-radius: 8px;
  text-align: center;
  background: #F3F4F8;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px;
}
@media (min-width: 768px) {
  .newsletter-section .profile-card {
    transform: scale(0.78);
  }
}
.newsletter-section .profile-card img {
  border-radius: 8px;
  background: rgba(13, 45, 110, 0.1);
  filter: grayscale(1);
  width: 100%;
}
.newsletter-section .profile-card h5 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #0D2D6E;
}
.newsletter-section .profile-card p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #0D2D6E;
  margin: 0;
  padding-bottom: 24px;
}
.newsletter-section .profile-card.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  padding: 24px;
  filter: grayscale(0);
}
@media (min-width: 768px) {
  .newsletter-section .profile-card.active {
    transform: scale(1);
  }
}
.newsletter-section .profile-card.active .check-icon {
  display: block;
}
.newsletter-section .profile-card.active img {
  filter: grayscale(0);
  width: 100%;
  margin-top: 0px;
}
.newsletter-section .profile-card.active h5 {
  font-size: 26px;
}
.newsletter-section .profile-card.active p {
  font-size: 20px;
  padding-bottom: 0px;
}
.newsletter-section .profile-card .check-icon {
  display: none;
  position: absolute;
  top: -8px;
  right: -10px;
  background: #fff;
  border-radius: 50%;
  border-top-right-radius: 0;
}
.newsletter-section .profile-card .check-icon img {
  margin-bottom: 0;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .newsletter-section .profile-card .check-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1200px) {
  .newsletter-section .profile-card img {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .newsletter-section .profile-card h5 {
    font-size: 14px;
  }
  .newsletter-section .profile-card p {
    font-size: 12px;
    padding-bottom: 16px;
  }
  .newsletter-section .profile-card.active h5 {
    font-size: 18px;
  }
  .newsletter-section .profile-card.active p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .newsletter-section .profile-card {
    margin: 16px;
  }
  .newsletter-section .profile-card .profile-info {
    padding-left: 16px;
    padding-right: 16px;
  }
  .newsletter-section .profile-card h5 {
    font-size: 16px;
  }
  .newsletter-section .profile-card p {
    font-size: 12px;
  }
  .newsletter-section .profile-card.active {
    padding: 16px;
  }
  .newsletter-section .profile-card.active h5 {
    font-size: 20px;
  }
  .newsletter-section .profile-card.active p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .newsletter-section .profile-card {
    margin: 0;
    padding: 16px;
  }
  .newsletter-section .profile-card img {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 12px;
  }
  .newsletter-section .profile-card h5 {
    font-size: 12px;
  }
  .newsletter-section .profile-card p {
    font-size: 12px;
    padding-bottom: 0;
  }
  .newsletter-section .profile-card.active {
    border-radius: 8px;
  }
  .newsletter-section .profile-card.active h5 {
    font-size: 12px;
  }
  .newsletter-section .profile-card.active p {
    font-size: 14px;
  }
}
.newsletter-section .nav-tabs {
  padding: 24px 0;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  border: none;
}
.newsletter-section .nav-tabs::-webkit-scrollbar {
  height: 2px;
  width: 2px;
}
.newsletter-section .nav-tabs::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.newsletter-section .nav-tabs::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.newsletter-section .nav-tabs .nav-item {
  flex: auto;
  border: 2px solid #fff;
}
.newsletter-section .nav-tabs .nav-item .nav-link {
  border: none;
  font-weight: 500;
  color: var(--primary-500);
  background: var(--grey-light);
  border-radius: 8px;
  width: 100%;
  white-space: nowrap;
  padding: 20px;
  font-size: 20px;
  line-height: 24px;
}
.newsletter-section .nav-tabs .nav-item .nav-link.active, .newsletter-section .nav-tabs .nav-item .nav-link:hover {
  background: var(--secondary) !important;
  color: var(--primary-500) !important;
}
.newsletter-section .tab-content {
  background-color: #F3F4F8;
  padding: 24px;
}
.newsletter-section .tab-content .date-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.newsletter-section .tab-content .date-list li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-500);
  padding-right: 30px;
  cursor: pointer;
}
.newsletter-section .tab-content .date-list li.active {
  background-image: url(../images/audio-lines.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  color: var(--secondary);
}
@media (max-width: 991px) {
  .newsletter-section .tab-content .date-list {
    flex-wrap: wrap;
    flex-direction: unset;
  }
  .newsletter-section .tab-content .date-list li {
    font-size: 14px;
    width: 44%;
  }
}
@media (max-width: 767px) {
  .newsletter-section .tab-content .date-list {
    flex-direction: column;
  }
  .newsletter-section .tab-content .date-list li {
    width: 100%;
  }
}
.newsletter-section .tab-content .sidebar_dates {
  max-height: 600px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .newsletter-section .tab-content .sidebar_dates {
    max-height: unset;
  }
}
.newsletter-section .tab-content .video-box {
  width: 100%;
  position: relative;
}
.newsletter-section .tab-content img.video-preview {
  width: 100%;
  border-radius: 8px;
}
.newsletter-section .tab-content .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}
@media (max-width: 767px) {
  .newsletter-section .tab-content .play-btn img {
    width: 40px;
  }
}
.newsletter-section #yearTabsContent.tab-content {
  padding: 0 24px;
}
.newsletter-section #yearTabsContent button::after {
  background-image: url("../images/accordion-minus.svg");
  width: 30px;
  height: 30px;
  background-size: 100%;
  transition: all 0.3s ease-in-out;
}
.newsletter-section #yearTabsContent button.collapsed::after {
  background-image: url("../images/accordion-plus.svg");
}
.newsletter-section #yearTabsContent button:hover::after {
  rotate: 180deg;
}
.newsletter-section #yearTabsContent .left_sidebar_tabs {
  padding: 24px 0;
}
@media (max-width: 991px) {
  .newsletter-section #yearTabsContent .left_sidebar_tabs {
    padding: 16px 0;
  }
}
.newsletter-section #yearTabsContent .right_sidebar_content {
  padding: 24px 0;
}
.newsletter-section #yearTabsContent .right_sidebar_content .accordion {
  border-top: 5px solid #fff;
  padding: 0 24px;
}
.newsletter-section #yearTabsContent .right_sidebar_content .tab-title {
  color: var(--primary-500);
  padding: 20px 24px;
}

.d-grid {
  display: grid;
  align-items: center;
}

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

.p-24-20 {
  padding: 20px 24px;
}
@media (max-width: 991px) {
  .p-24-20 {
    padding: 16px 20px;
  }
}

.academic-enrichment-programme .list-group .list-group-item {
  background: none;
  border: none;
  font-family: var(--font-family);
  color: var(--primary-500);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border-radius: 0;
  border-right: 5px solid var(--white);
}
.academic-enrichment-programme .list-group .list-group-item.active, .academic-enrichment-programme .list-group .list-group-item:hover {
  color: var(--secondary);
  border-right: 5px solid var(--secondary);
}
@media (max-width: 991px) {
  .academic-enrichment-programme .list-group .list-group-item:last-child {
    border-bottom: 5px solid #fff;
  }
}
.academic-enrichment-programme .accordion .accordion-item {
  background: unset;
  border: none;
}
.academic-enrichment-programme .accordion .accordion-item .accordion-header {
  background: unset;
}
.academic-enrichment-programme .accordion .accordion-item .accordion-header button {
  font-family: var(--font-family);
  color: var(--primary-500);
  background: unset;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 0px solid rgba(100, 113, 139, 0.5) !important;
  box-shadow: unset;
  padding: 16px 0;
}
.academic-enrichment-programme .accordion .accordion-item .accordion-header button.collapsed {
  color: var(--primary-500);
  border-bottom: 1px solid rgba(100, 113, 139, 0.5) !important;
}
.academic-enrichment-programme .accordion .accordion-item .accordion-header button:hover, .academic-enrichment-programme .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
  border: 0px solid rgba(100, 113, 139, 0.5019607843);
  outline: none;
}
.academic-enrichment-programme .accordion .accordion-item .accordion-body {
  font-family: var(--font-family);
  color: var(--primary-500);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 0 16px 0;
  border-bottom: 1px solid rgba(100, 113, 139, 0.5) !important;
}
.academic-enrichment-programme .accordion .accordion-item:last-child .accordion-header button.collapsed {
  border-bottom: none !important;
}

.autoLoadModal .modal-dialog {
  max-width: 818px;
}
@media (max-width: 830px) {
  .autoLoadModal .modal-dialog {
    margin: var(--bs-modal-margin);
  }
}
.autoLoadModal .btn-close {
  position: absolute;
  border-radius: 50%;
  right: 7px;
  top: -15px;
  opacity: 1;
}
.autoLoadModal .carousel-indicators {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  border-radius: 20px;
  padding: 10px 16px;
  gap: 4px;
  align-items: center;
}
.autoLoadModal .carousel-indicators button {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid var(--primary-500);
  border-radius: 50%;
  background-clip: unset;
}
.autoLoadModal .carousel-indicators button.active {
  border: 5px solid var(--primary-500);
  background-color: var(--primary-500);
}
@media (max-width: 767px) {
  .autoLoadModal .carousel-indicators {
    margin-bottom: -50px !important;
  }
}

.gallery-wrapper .tab-pane {
  background-color: #F3F3F3;
  padding: 24px;
  padding-bottom: 0;
  border-radius: 8px;
}
.gallery-wrapper .tab-pane .nav {
  gap: 24px;
  max-height: 670px;
  margin-bottom: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  padding-right: 24px;
}
.gallery-wrapper .tab-pane .nav .nav-link {
  padding: 0;
  border-radius: 8px;
  border: 5px solid transparent;
}
.gallery-wrapper .tab-pane .nav .nav-link img {
  border-radius: 4px;
}
.gallery-wrapper .tab-pane .nav .nav-link.active {
  border: 5px solid var(--secondary);
  background-color: transparent;
}
@media (max-width: 1200px) {
  .gallery-wrapper .tab-pane .nav {
    max-height: 570px;
  }
}
@media (max-width: 991px) {
  .gallery-wrapper .tab-pane .nav {
    max-height: auto;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 8px;
  }
  .gallery-wrapper .tab-pane .nav::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }
  .gallery-wrapper .tab-pane .nav::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .gallery-wrapper .tab-pane .nav::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }
  .gallery-wrapper .tab-pane .nav img {
    min-width: 120px;
  }
}
.gallery-wrapper .tab-pane .tab-content .tab-pane {
  padding: 0;
}
.gallery-wrapper .tab-pane .tab-content .tab-pane .carousel-indicators {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  border-radius: 20px;
  padding: 10px 16px;
  gap: 4px;
  align-items: center;
}
.gallery-wrapper .tab-pane .tab-content .tab-pane .carousel-indicators button {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid var(--primary-500);
  border-radius: 50%;
  background-clip: unset;
}
.gallery-wrapper .tab-pane .tab-content .tab-pane .carousel-indicators button.active {
  border: 5px solid var(--primary-500);
  background-color: var(--primary-500);
}
@media (min-width: 992px) {
  .gallery-wrapper .tab-pane .tab-content .tab-pane.active {
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery-wrapper .tab-pane .tab-content .tab-pane.active .title {
    flex-direction: column-reverse;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 36px;
  }
  .gallery-wrapper .tab-pane .tab-content .tab-pane.active .title h5 {
    color: var(--secondary);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 0 !important;
  }
  .gallery-wrapper .tab-pane .tab-content .tab-pane.active .title small {
    position: absolute;
    right: 24px;
    top: -4px;
    background: var(--primary);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 24px;
  }
}
@media (max-width: 991px) {
  .gallery-wrapper .tab-pane .tab-content .tab-pane .title {
    margin-top: 36px;
    padding: 24px;
    background-color: var(--primary);
    max-width: 400px;
    margin-left: auto;
    border-top-left-radius: 8px;
    bottom: 0;
    right: -12px;
    width: 100%;
    position: relative;
  }
  .gallery-wrapper .tab-pane .tab-content .tab-pane .title small {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
  }
  .gallery-wrapper .tab-pane .tab-content .tab-pane .title h5 {
    color: var(--secondary);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
  }
}
.gallery-wrapper .tab-pane.video-gallery .nav .nav-link {
  position: relative;
}
.gallery-wrapper .tab-pane.video-gallery .nav .nav-link::before {
  content: "";
  position: absolute;
  background-image: url(../images/play.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

ul.academic-tabs li.nav-item button.nav-link {
  border-radius: 0px !important;
}
ul.academic-tabs li.nav-item:first-child button.nav-link {
  border-radius: 8px 0 0 8px !important;
}
ul.academic-tabs li.nav-item:last-child button.nav-link {
  border-radius: 0 8px 8px 0 !important;
}

@media (min-width: 1200px) {
  .mxw-370-card {
    max-width: 375px;
  }
}

.br-8-custom {
  border-radius: 8px !important;
}

.placeholder-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

#homePageModal {
  z-index: 99999;
}

@media (min-width: 1200px) {
  .new-teachers.new-teachers {
    padding-right: 13px;
  }
}

.newsletter-section .profile-card .check-icon {
  max-width: 70px;
}
.newsletter-section .news-tab-new {
  background-color: var(--grey-light);
  padding: 24px 24px;
  gap: 24px;
}
.newsletter-section .news-tab-new .nav-item {
  border: 0;
  flex: initial;
}
.newsletter-section .news-tab-new .nav-item .nav-link {
  border-radius: 8px;
  background-color: var(--white);
  color: var(--primary-500);
}
.newsletter-section .news-tab-new .nav-item .nav-link.active, .newsletter-section .news-tab-new .nav-item .nav-link:hover {
  background: var(--secondary) !important;
  color: var(--white) !important;
}

#ss360Darken,
#ss360Darken-input {
  cursor: default !important;
}

ul.acad-new-tabul.nav-pills.custom-tab li button.nav-link {
  border-radius: 10px !important;
}

@media (max-width: 991px) {
  .page-uniforms .promo-box .feature {
    background-size: cover;
  }
}

.about_student_image {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .about_student_image {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

.flatpickr-input {
  color: #000;
}

.date-field label {
  position: absolute;
  left: 10px;
  top: 12px;
  z-index: -1;
}
.date-field input, .date-field input:focus {
  background-color: transparent;
}
.date-field.has-value label {
  display: none;
}

.booking-form-wrapper {
  max-width: 400px;
  position: relative;
}
.booking-form-wrapper input {
  margin-bottom: 0 !important;
  padding-right: 130px !important;
}
.booking-form-wrapper button {
  position: absolute;
  right: 0;
  top: 0;
}

.error-msg .error-msg-wrapper {
  border-radius: 12px;
  border: 2px dashed var(--secondary);
}/*# sourceMappingURL=style.css.map */