@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,300;1,400&display=swap");
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
  color: #000;
  scrollbar-width: thin;
  overflow-x: hidden;
  background-color: #143854;
}

body {
  overflow-x: hidden;
}

sup {
  font-size: 1rem;
  margin-top: -2rem;
  font-weight: 400;
}

img {
  display: block;
  width: 100%;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

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

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.top-header {
  background-color: #3caea3;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
.top-header__wrapper {
  grid-column: 2/3;
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: 50rem max-content;
  justify-content: space-between;
  padding: 0.8rem 0;
  align-items: center;
}
@media (max-width: 1100px) {
  .top-header__wrapper {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }
}
.top-header__announcement {
  display: grid;
}
.top-header__announcement-text {
  background-color: rgba(255, 255, 255, 0.2);
  border-right: 1rem solid #3caea3;
  width: 100%;
  color: #fff;
  text-decoration: none;
  display: grid !important;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 1100px) {
  .top-header__announcement-text {
    border: none;
  }
}
.top-header__sub-menu {
  position: absolute;
  list-style: none;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem;
  overflow: hidden;
  min-width: 15rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  max-height: 0;
}
@media (max-width: 1100px) {
  .top-header__sub-menu {
    position: initial;
    border-radius: 0;
    max-height: auto;
    visibility: visible;
    opacity: 1;
    transition: 1s !important;
  }
}
.top-header__sub-menu.active {
  visibility: visible;
  opacity: 1;
  max-height: 50rem;
}
.top-header__sub-menu-link {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 0.8rem 1rem;
  transition: 0.3s;
}
.top-header__sub-menu-link:hover {
  color: #fff;
  background-color: #3caea3;
}
@media (max-width: 1100px) {
  .top-header__sub-menu-link:hover {
    background-color: rgb(238, 238, 238);
    color: #000;
  }
}
.top-header__icon {
  width: 2rem;
  height: 2rem;
  fill: #fff;
}
.top-header__menu {
  position: relative;
  z-index: 101;
}
@media (max-width: 1100px) {
  .top-header__menu {
    justify-self: end;
  }
}
.top-header__list {
  list-style: none;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1100px) {
  .top-header__list {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #3caea3;
    height: 100%;
    align-items: start;
    transition: 0.3s;
  }
  .top-header__list.active {
    left: 0;
  }
}
.top-header__item {
  display: block;
}
@media (max-width: 1100px) {
  .top-header__item {
    width: 100%;
  }
}
.top-header__link {
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1100px) {
  .top-header__link {
    justify-content: space-between;
    gap: 0;
    padding: 0.6rem;
  }
}
.top-header__hamburger {
  display: none;
  margin-right: -0.5rem;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .top-header__hamburger {
    display: block;
  }
}
.top-header__hamburger.active .top-header__bar:nth-child(1) {
  transform: translateY(6px) rotate(135deg);
}
.top-header__hamburger.active .top-header__bar:nth-child(2) {
  opacity: 0;
}
.top-header__hamburger.active .top-header__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-135deg);
}
.top-header__bar {
  background-color: rgb(255, 255, 255);
  display: block;
  width: 2rem;
  height: 1px;
  margin: 0.5rem;
  transition: 0.3s;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: none;
}
.backdrop.active {
  display: block;
}
@media (max-width: 1100px) {
  .backdrop.active {
    display: none;
  }
}

.backdrop2,
.backdrop3 {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: none;
}
.backdrop2.active,
.backdrop3.active {
  display: block;
}

.backdrop4 {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: none;
}
@media (max-width: 900px) {
  .backdrop4.active {
    display: block;
  }
}

.header {
  background-color: #173f5f;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  padding: 1.5rem 0 5rem 0;
}
@media (max-width: 1200px) {
  .header {
    padding: 2rem 0;
  }
}
.header__wrapper {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .header__wrapper {
    row-gap: 2rem;
  }
}
.header__logo {
  width: 30rem;
}
@media (max-width: 1100px) {
  .header__logo {
    width: 25rem;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 24rem;
  }
}
.header__logo img {
  width: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .header__achivements {
    grid-column: 1/-1;
  }
}
.header__achivements-list {
  list-style: none;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .header__achivements-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .header__achivements-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.header__achivements-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  padding: 1rem;
  padding-left: 3rem;
}
.header__achivements-item {
  border: 1px solid #ebc53c;
  padding: 0.4rem;
  padding-left: 3.5rem;
  border-radius: 1rem;
  position: relative;
}
@media (max-width: 480px) {
  .header__achivements-item {
    padding: 2rem 2rem 2rem 4rem;
    display: flex;
    align-items: center;
  }
}
.header__achivements-number {
  font-size: 2.2rem;
  background-color: #ebc53c;
  color: #000;
  font-weight: 600;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .header__achivements-number {
    left: -1rem;
  }
}
.header__achivements-content {
  width: 13rem;
}
@media (max-width: 480px) {
  .header__achivements-content {
    width: auto;
  }
}
.header__achivements-heading {
  display: inline-block;
  font-size: 1.1rem;
  font-size: 600;
}
.header__achivements-heading span {
  margin-top: 0.4rem;
  display: block;
  font-size: 1rem;
  font-size: 300;
  color: #e2e2e2;
  text-transform: uppercase;
}
.header__hamburger {
  display: none;
  cursor: pointer;
  margin-right: -0.5rem;
}
.header__hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(135deg);
}
.header__hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-135deg);
}
.header__hamburger .bar {
  display: block;
  background-color: #fff;
  width: 3rem;
  height: 0.2rem;
  margin: 0.6rem;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header__hamburger {
    display: block;
    justify-self: end;
  }
}

.navbar {
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  position: relative;
  z-index: 100;
}
@media (max-width: 1200px) {
  .navbar {
    position: fixed;
    background-color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    top: 0;
    left: -100%;
    width: 30rem;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar.active {
    left: 0;
  }
}
.navbar__svg {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  width: 40%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .navbar__svg {
    display: none;
  }
}
.navbar__wrapper {
  grid-column: 2/3;
  margin-top: -3.6rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 0.3rem;
}
@media (max-width: 1200px) {
  .navbar__wrapper {
    box-shadow: none;
    margin-top: 0;
  }
}
.navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  position: relative;
}
@media (max-width: 1200px) {
  .navbar__list {
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .navbar__item:nth-child(1) {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .navbar__item {
    width: 100%;
  }
}
.navbar__item:hover .navbar__sub-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.navbar__item:hover .navbar__link {
  color: #3caea3;
}
@media (max-width: 1200px) {
  .navbar__item:hover .navbar__link {
    color: #000;
  }
}
.navbar__link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  color: #000;
  padding: 1rem 0.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar__link {
    font-size: 1.4rem;
  }
}
.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__home {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #0a3f6a;
  fill: #fff;
  border-radius: 50%;
  padding: 0.5rem;
}
.navbar__dropdown, .navbar__dropdown-2, .navbar__dropdown-3 {
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  fill: #3caea3;
}
.navbar__dropdown-2 {
  display: none;
}
@media (max-width: 1200px) {
  .navbar__dropdown-2 {
    display: block;
  }
}
.navbar__sub-menu {
  list-style: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
  padding: 2rem;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(10, min-content);
  overflow: hidden;
  border-radius: 0.3rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  margin-top: 5rem;
}
@media (max-width: 1200px) {
  .navbar__sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    position: initial;
    box-shadow: none;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: 1s !important;
  }
  .navbar__sub-menu.active {
    max-height: 200rem;
    transition: 1s !important;
  }
}
.navbar__sub-menu-item {
  position: relative;
  z-index: 2;
}
.navbar__sub-menu-link {
  font-size: 1.2rem;
  font-weight: 600;
  color:#002552;
  text-decoration: none;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .navbar__sub-menu-link {
    padding: 1.5rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .navbar__sub-menu-link {
    font-size: 1.2rem;
  }
}
.navbar__single-menu {
  grid-template-columns: 1fr;
  left: auto;
  right: auto;
  padding: 0;
}
.navbar__single-menu .navbar__sub-menu-link {
  padding: 1rem 2rem;
}
.navbar__single-menu .navbar__sub-menu-link:hover {
  background-color: rgb(238, 238, 238);
}
@media (max-width: 1200px) {
  .navbar__single-menu .navbar__sub-menu-link:hover {
    background-color: transparent;
    color: #3caea3;
  }
}
@media (max-width: 1200px) {
  .navbar__single-menu .navbar__sub-menu-link {
    padding: 1.5rem 0.5rem;
  }
}
.navbar__sub-menu-2 {
  padding-left: 1rem;
  list-style: none;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .navbar__sub-menu-2 {
    max-height: 0;
    overflow: hidden;
    transition: 1s !important;
    padding: 0;
  }
  .navbar__sub-menu-2.active {
    max-height: 200rem;
    transition: 1s !important;
  }
}
.navbar__sub-menu-2-link {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #5e5e5e;
  font-size: 1.3rem;
  padding: 0.5rem 0;
}
.navbar__sub-menu-2-link:hover {
  color: #3caea3;
}
@media (max-width: 1200px) {
  .navbar__sub-menu-2-link {
    padding: 1.5rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .navbar__sub-menu-2-link {
    font-size: 1.4rem;
  }
}
.navbar__sub-menu-3 {
  list-style: none;
  transition: 0.3s;
  background-color: rgb(238, 238, 238);
  border-radius: 0.3rem;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  z-index: 15;
}
.navbar__sub-menu-3.active {
  max-height: 200rem;
  transition: 1s !important;
}
.navbar__sub-menu-3-link {
  text-decoration: none;
  display: inline-block;
  color: #5e5e5e;
  font-size: 1.3rem;
  padding: 0.7rem;
  cursor: pointer;
}
.navbar__sub-menu-3-link:hover {
  color: #3caea3;
}

.grid-6 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 900px) {
  .grid-6 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-6 {
    grid-template-columns: 1fr;
  }
}
.grid-5 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
  .grid-5 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-4 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-4 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-3 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .grid-3 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-2 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-2 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (max-width: 900px) {
  .grid-1 {
    gap: 2rem;
  }
}
.grid-1-3 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 900px) {
  .grid-1-3 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-1-3 {
    grid-template-columns: 1fr;
  }
}
.grid-1-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .grid-1-1 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-1-1 {
    grid-template-columns: 1fr;
  }
}
.grid-2-2 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .grid-2-2 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-2-2 {
    grid-template-columns: 1fr;
  }
}
.grid-3-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 900px) {
  .grid-3-1 {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .grid-3-1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }
}
.grid-2-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 900px) {
  .grid-2-1 {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .grid-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 900px) {
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

.order-1 {
  order: 1;
}
@media (max-width: 1200px) {
  .order-1-xxl {
    order: 1;
  }
}
@media (max-width: 1100px) {
  .order-1-xl {
    order: 1;
  }
}
@media (max-width: 1000px) {
  .order-1-lg {
    order: 1;
  }
}
@media (max-width: 900px) {
  .order-1-md {
    order: 1;
  }
}
.order-2 {
  order: 2;
}
@media (max-width: 1200px) {
  .order-2-xxl {
    order: 2;
  }
}
@media (max-width: 1100px) {
  .order-2-xl {
    order: 2;
  }
}
@media (max-width: 1000px) {
  .order-2-lg {
    order: 2;
  }
}
@media (max-width: 900px) {
  .order-2-md {
    order: 2;
  }
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.rainb2ow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate linear 8s infinite;
}
.rainb2ow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate(-50%, -50%);
}
.rainb2ow span:first-child {
  background-color: #3caea3;
}
.rainb2ow span:first-child::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  background-color: #ebc53c;
}
.rainb2ow span:last-child {
  background-color: #ed553b;
}
.rainb2ow span:last-child::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  background-color: #20639b;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bannerText {
  0% {
    opacity: 0;
    margin-left: -15rem;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}
@keyframes gradient {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
.banner {
  width: 100%;
  height: 50rem;
  margin-top: -2.1rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
@media (max-width: 1200px) {
  .banner {
    margin: 0;
    height: 45rem;
  }
}
@media (max-width: 1100px) {
  .banner {
    height: 40rem;
  }
}
@media (max-width: 1000px) {
  .banner {
    height: 35rem;
  }
}
@media (max-width: 900px) {
  .banner {
    height: 30rem;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 20rem;
  }
}
.banner__slider {
  position: absolute;
  opacity: 0;
  transition: 2s;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
.banner__slider:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner-1.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
}
.banner__slider:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner-2.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
}
.banner__slider:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner-3.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
}
.banner__slider.current .banner__text {
  margin-left: 6rem;
  opacity: 1;
}
.banner__slider.current .banner__text-center {
  margin-left: 0;
}
.banner__heading {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .banner__heading {
    font-size: 1.5rem;
  }
}
.banner__heading span {
  display: block;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .banner__heading span {
    font-size: 1.5rem;
  }
}
.banner__text {
  grid-column: 2/3;
  display: flex;
  align-items: center;
  color: #fff;
  margin-left: -15rem;
  opacity: 0;
  transition: 0.3s;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.banner__text-center {
  justify-content: center;
  text-align: center;
}
.banner__btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  grid-column: 2/3;
}
.banner__next-btn, .banner__prev-btn {
  all: unset;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: poppins;
  color: #fff;
  transition: 0.3s;
  user-select: none;
}
.banner__next-btn:hover, .banner__prev-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}
.current {
  opacity: 1;
}

.features {
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  margin-top: 33rem;
}
.features__wrapper {
  grid-column: 2/3;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .features__wrapper {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .features__wrapper {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.features__items {
  background-color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4rem;
  border-radius: 0.3rem;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1000px) {
  .features__items {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .features__items {
    padding: 2rem 1rem;
  }
}
.features__items:hover .features__border span:nth-child(1), .features__items:hover .features__border span:nth-child(3) {
  width: 100%;
}
.features__items:hover .features__border span:nth-child(2), .features__items:hover .features__border span:nth-child(4) {
  height: 100%;
}
.features__items:hover .features__icon {
  transform: translateY(-1rem);
}
.features__icon {
  padding: 3rem;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .features__icon {
    padding: 1.5rem;
  }
}
.features__svg {
  width: 7rem;
  height: 7rem;
  fill: #fff;
}
.features__heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .features__heading {
    font-size: 1.3rem;
  }
}
.features__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.features__border span {
  display: block;
  width: 100%;
  height: 0.1rem;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #20639b;
  position: absolute;
}
.features__border span:nth-child(1) {
  top: 0;
  width: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.features__border span:nth-child(2) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 30%;
}
.features__border span:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}
.features__border span:nth-child(4) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 30%;
}

.heading-2 {
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .heading-2 {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
}
.heading-2::before {
  position: absolute;
  left: 50%;
  top: 3.5rem;
  transform: translateX(-50%);
  display: block;
  width: 10%;
  height: 0.5rem;
  content: "";
  border-radius: 0.3rem;
  background: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  background-size: 200%;
  animation: gradient 5s linear infinite;
}
@media (max-width: 768px) {
  .heading-2::before {
    width: 30%;
  }
}
.heading-2-left {
  text-align: left;
  margin-bottom: 5rem;
}
.heading-2-left::before {
  position: absolute;
  left: 5%;
  top: 3.5rem;
  display: block;
  width: 10%;
  height: 0.5rem;
  content: "";
  border-radius: 0.3rem;
  background: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  background-size: 200%;
  animation: gradient 5s linear infinite;
}
@media (max-width: 768px) {
  .heading-2-left::before {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
  }
}
@media (max-width: 768px) {
  .heading-2-left {
    text-align: center;
  }
}

.paragraph {
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #242424;
  text-align: justify;
  margin-bottom: 1.5rem;
}
.paragraph-light {
  color: #fff;
  font-weight: 300;
}

.text-light {
  color: #fff;
}

section {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.bg-color-1 {
  background-color: #173f5f !important;
  color: #fff !important;
}

.bg-color-2 {
  background-color: #20639b !important;
  color: #fff !important;
}

.bg-color-3 {
  background-color: #3caea3 !important;
  color: #000 !important;
}

.bg-color-4 {
  background-color: #ebc53c !important;
  color: #000 !important;
}

.bg-color-5 {
  background-color: #ed553b !important;
  color: #fff !important;
}

.color-5 {
  color: #ed553b;
}

.color-4 {
  color: #ebc53c;
}

.fill-1 {
  fill: #173f5f !important;
}

.fill-2 {
  fill: #20639b !important;
}

.fill-3 {
  fill: #3caea3 !important;
}

.fill-4 {
  fill: #ebc53c !important;
}

.fill-5 {
  fill: #ed553b !important;
}

.fill-6 {
  fill: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%) !important;
}

.fill-black {
  fill: #000;
}

.btn-color {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  border: 2px solid;
  padding: 0.1rem 0.5rem;
  border-image-slice: 1;
  border-image-source: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  color: #000;
  font-size: 1.1rem;
}
.btn-color:active {
  transform: translateY(1px);
}

.btn {
  all: unset;
  user-select: none;
  background-color: #fff;
  color: #000;
  padding: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn:active {
  transform: translateY(0.2rem);
}
.btn-right {
  float: right;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.btn,
.btn-outline-light,
.btn-outline-dark {
  font-size: 1.3rem;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: inherit;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 900px) {
  .btn,
  .btn-outline-light,
  .btn-outline-dark {
    font-size: 1.4rem;
  }
}
.btn:active,
.btn-outline-light:active,
.btn-outline-dark:active {
  transform: translateY(0.1rem);
}
.btn-large,
.btn-outline-light-large,
.btn-outline-dark-large {
  padding: 1rem 1.5rem;
}
.btn-block,
.btn-outline-light-block,
.btn-outline-dark-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.btn {
  background-color: #20639b;
  color: #fff;
}
.btn:hover {
  background-color: #3caea3;
}

.btn-outline-light {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.btn-outline-light:hover {
  border: 1px solid #20639b;
  color: #20639b;
}

.btn-outline-dark {
  border: 1px solid #173f5f;
  background-color: transparent;
  color: #173f5f;
}
.btn-outline-dark:hover {
  border: 1px solid #20639b;
  color: #20639b;
}

@media (max-width: 1200px) {
  .d-none-lg {
    display: none;
  }
}
@media (max-width: 1100px) {
  .d-none-md {
    display: none;
  }
}
@media (max-width: 1000px) {
  .d-none-sm {
    display: none;
  }
}
@media (max-width: 900px) {
  .d-none-xs {
    display: none;
  }
}

.center {
  margin: auto;
  display: block;
}

.ml-auto {
  margin-left: auto;
  display: block;
}

.mr-auto {
  margin-right: auto;
  display: block;
}

.facebook,
.color-blue {
  background-color: #4267b2 !important;
  fill: #fff;
}

.whatsapp,
.teal {
  background-color: #37B443 !important;
  fill: #fff;
}

.twitter {
  background-color: #1da1f2 !important;
  fill: #fff;
}

.instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f09433", endColorstr="#bc1888",GradientType=1 );
  fill: #fff;
}

.linkedin {
  background-color: #0a66c2 !important;
  fill: #fff;
}

.readmore {
  color: #fff;
  font-size: 1.3rem;
  display: block;
  color: #173f5f;
  text-decoration: none;
  color: #3caea3;
}

.text-center {
  text-align: center;
}

.accreditations {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  color: #fff;
  background-color: #173f5f;
}
.accreditations::before {
  content: "";
  background: url(../img/y-so-serious-white.png);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}
.accreditations__wrapper {
  grid-column: 2/3;
}
.accreditations__container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}
@media (max-width: 1100px) {
  .accreditations__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1000px) {
  .accreditations__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .accreditations__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.accreditations__item {
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  border: 2px dotted transparent;
  border-radius: 0.3rem;
}
.accreditations__item:hover {
  border: 2px dotted #20639b;
}
.accreditations__icon {
  width: 100%;
  height: 100%;
}
.accreditations__text {
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 40%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 10rem;
}

.campus {
  padding: 0;
  color: #173f5f;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
}
@media (max-width: 1000px) {
  .campus {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .campus {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.campus__video {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.campus__video img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.campus__video img:hover ~ .campus__play {
  fill: #ebc53c;
  width: 9rem;
  height: 9rem;
}
@media (max-width: 1000px) {
  .campus__video {
    height: 30rem;
    order: 2;
  }
}
.campus__play {
  width: 8rem;
  height: 8rem;
  fill: #fff;
  transition: 0.3s;
  position: absolute;
}
.campus__wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1000px) {
  .campus__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .campus__wrapper {
    grid-template-columns: 1fr;
  }
}
.campus__content {
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  .campus__content {
    order: 1;
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
.campus__about {
  background-color: #173f5f;
  padding: 5rem;
  outline: 1px solid #fff;
  outline-offset: -2.5rem;
  transform: translateX(-10rem);
  align-self: center;
}
@media (max-width: 1000px) {
  .campus__about {
    transform: translateX(0);
  }
}
.campus__features {
  transform: translateX(-5rem);
  align-self: center;
}
@media (max-width: 1000px) {
  .campus__features {
    transform: translateX(0);
  }
}
.campus__container {
  display: grid;
}
.campus__heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
@media (max-width: 1000px) {
  .campus__heading {
    margin-top: 2rem;
  }
}
.campus__features-items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .campus__features-items {
    padding: 0.7rem;
  }
}
.campus__features-item {
  padding: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0.5rem;
}
.campus__icon {
  width: 5rem;
  height: 5rem;
  display: block;
  margin: auto;
  fill: currentColor;
}

.newsevents {
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  background-color: #173f5f;
}
.newsevents__wrapper {
  grid-column: 2/3;
}
.newsevents__container {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .newsevents__container {
    grid-template-columns: 1fr;
  }
}
.newsevents__item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.15);
  padding: 3rem;
  border-radius: 0.3rem;
  position: relative;
  display: grid;
  align-items: end;
}
@media (max-width: 768px) {
  .newsevents__item {
    padding: 2rem;
  }
}
.newsevents__item-heading {
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #173f5f;
  display: inline-block;
  color: #fff;
  padding: 1rem;
  position: absolute;
  top: -0.9rem;
  left: -0.9rem;
  z-index: 2;
}
.newsevents__item-heading::after {
  display: block;
  position: absolute;
  background-color: #ed553b;
  content: "";
  width: 1rem;
  height: 1rem;
  bottom: -1rem;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%);
}
.newsevents__item-heading::before {
  display: block;
  position: absolute;
  background-color: #173f5f;
  content: "";
  width: 5rem;
  height: 100%;
  transform: skew(40deg);
  top: 0;
  right: -2rem;
  z-index: -1;
}
.newsevents__item-header {
  margin-bottom: 1rem;
}
.newsevents__item-tabs {
  margin: 2rem 0 0 0;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .newsevents__item-tabs {
    flex-wrap: wrap;
  }
}
.newsevents__item-tab {
  all: unset;
  font-size: 1.4rem;
  cursor: pointer;
}
.newsevents__item-tab-border {
  position: relative;
}
.newsevents__item-tab-border::before {
  position: absolute;
  left: 50%;
  bottom: -0.8rem;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 0.3rem;
  content: "";
  border-radius: 0.3rem;
  background: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  background-size: 200%;
  animation: gradient 5s linear infinite;
}
.newsevents__item-body {
  height: 40rem;
  overflow-y: auto;
  scrollbar-width: thin;
}
@media (max-width: 900px) {
  .newsevents__item-body {
    padding-top: 2.5rem;
  }
}
.newsevents__item-body-notification {
  height: 40rem;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-top: 1rem;
}
.newsevents__item-list {
  list-style: none;
  padding: 1rem;
  margin-right: 1rem;
  position: relative;
  cursor: pointer;
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.newsevents__item-list:nth-child(odd) {
  background-color: #f1f1f1;
}
.newsevents__item-list:nth-child(even) {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.newsevents__item-list:not(:last-child) {
  margin-bottom: 2rem;
}
.newsevents__item-list:hover {
  background: #20639b;
  color: #fff;
}
.newsevents__item-list:hover .btn-color {
  color: #fff;
}
.newsevents__item-list span {
  background-color: #ed553b;
  padding: 0.3rem 0.7rem;
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  transform: rotate(-90deg);
  position: absolute;
  left: -1.1rem;
  top: 0rem;
  margin-bottom: 3rem;
}
.newsevents__item-list span::after {
  display: block;
  position: absolute;
  background-color: #041828;
  content: "";
  width: 1rem;
  height: 1rem;
  bottom: -1rem;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0% 100%);
}
.newsevents__item-text {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.newsevents__item-pdf-icon {
  width: 2rem;
  height: 2rem;
  fill: #ed553b;
}

.testimonials {
  font-size: 1.3rem;
  background: #173f5f;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
.testimonials__wrapper {
  grid-column: 2/3;
}
.testimonials__heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 300;
}
.testimonials .slick-next:before {
  display: none;
}
.testimonials .slick-prev:before {
  display: none;
}
.testimonials__container {
  display: flex;
  margin-top: -3rem;
}
@media (max-width: 768px) {
  .testimonials__container {
    margin-top: -1rem;
  }
}
.testimonials__container .slick-slide {
  position: relative;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: #fff;
  background-clip: padding-box;
  padding: 3rem;
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.1);
  margin: 3rem;
}
@media (max-width: 768px) {
  .testimonials__container .slick-slide {
    box-shadow: none;
    margin: 1rem;
    padding: 2rem;
  }
}
.testimonials__container .slick-slide::after {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  content: "";
  z-index: -1;
  border-radius: 1rem;
}
.testimonials__item-wrapper {
  display: grid !important;
  gap: 2rem;
  grid-template-columns: min-content repeat(2, 1fr);
  grid-template-rows: min-content min-content 1fr;
  row-gap: 0.5rem;
}
.testimonials__profile {
  width: 10rem;
  height: 10rem;
  position: relative;
  z-index: 1;
  grid-row: 1/3;
  grid-column: 1/2;
}
.testimonials__profile::after {
  position: absolute;
  z-index: -1;
  bottom: 0.2rem;
  left: 0.2rem;
  content: "";
  display: block;
  background: linear-gradient(89.95deg, #173f5f 0.04%, #20639b 18.78%, #3caea3 43.25%, #f6d55c 56.79%, #ed553b 72.41%, #ed553b 100%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: rotate(45deg);
}
.testimonials__profile img {
  border-radius: 50%;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonials__profile {
    width: 7rem;
    height: 7rem;
  }
}
.testimonials__details {
  grid-column: 2/4;
}
.testimonials__name {
  font-size: 1.6rem;
  font-weight: 500;
}
.testimonials__department, .testimonials__year {
  font-size: 1.3rem;
  font-weight: 300;
}
.testimonials__image {
  justify-self: center;
  grid-row: 2/3;
  grid-column: 1/-1;
  width: 3rem;
  height: 3rem;
}
.testimonials__text {
  grid-column: 1/-1;
  text-align: justify;
  line-height: 1.8;
  height: 25rem;
  overflow-y: scroll;
  padding: 1rem;
  scrollbar-width: thin;
}

.footer__heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3rem;
}
.footer__menu {
  background-color: #173f5f;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
.footer__menu-wrapper {
  grid-column: 2/3;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .footer__menu-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.footer__menu-list {
  list-style: none;
}
.footer__menu-item {
  display: flex;
  gap: 0.7rem;
}
.footer__menu-item:not(:last-child) {
  margin-bottom: 2rem;
}
.footer__menu-item::before {
  content: "⇾";
  color: #3caea3;
  line-height: 1;
  font-size: 1.5rem;
  justify-self: start;
}
.footer__menu-link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
  transition: 0.3s;
}
.footer__menu-link:hover {
  color: #3caea3;
  padding-left: 0.2rem;
}
.footer__contact {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  background: #0c3454;
}
.footer__contact-wrapper {
  grid-column: 2/3;
}
.footer__contact-social {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-self: center;
}
@media (max-width: 768px) {
  .footer__contact-social {
    padding: 2rem 0;
  }
}
.footer__contact-social-links {
  font-size: 1.2rem;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__contact-social-links:hover .footer__contact-social-icon {
  fill: #ed553b;
}
.footer__contact-social-icon {
  width: 2rem;
  height: 2rem;
  fill: #20639b;
  transition: 0.3s;
}
.footer__contact-container {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .footer__contact-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__contact-container {
    grid-template-columns: 1fr;
  }
}
.footer__contact-item {
  border: 1px solid #20639b;
  padding: 3rem 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: min-content 1fr;
  align-items: center;
}
.footer__contact-icon {
  width: 2rem;
  height: 2rem;
  fill: #3caea3;
}
.footer__contact-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}
.footer__contact-visitor, .footer__contact-update {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__contact-visitor-number span, .footer__contact-update-number span {
  border: 1px solid #3caea3;
  padding: 0.5rem;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.footer__contact-visitor-number span:hover, .footer__contact-update-number span:hover {
  background-color: #20639b;
}
.footer__copyright {
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  padding: 1rem 0;
  background: #20639b;
}
.footer__copyright-text {
  grid-column: 2/3;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
}

.mainTab {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
  position: relative;
  z-index: 99;
  top: -3rem;
}
@media (max-width: 768px) {
  .mainTab {
    top: -2rem;
  }
}
.mainTab__wrapper {
  background-color: #fff;
  grid-column: 2/3;
}
.mainTab__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 30rem;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mainTab__btns::-webkit-scrollbar {
  display: none;
}
.mainTab__btn {
  color: currentColor;
  padding: 3rem 2rem;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .mainTab__btn {
    padding: 2rem;
    font-size: 1.3rem;
  }
}
.mainTab__btn::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  height: 1rem;
  width: 100%;
  position: absolute;
  top: 0;
}
.mainTab__icon {
  background-color: rgba(0, 0, 0, 0.1);
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .mainTab__icon {
    width: 4rem;
    height: 4rem;
  }
}
.mainTab__icon svg {
  width: 3.8rem;
  height: 3.8rem;
  fill: currentColor;
}
@media (max-width: 768px) {
  .mainTab__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.mainTab__image {
  width: 10rem;
  height: auto;
  margin: 0 auto 1rem auto;
}
.mainTab__image img {
  width: 100%;
}
.mainTab__number {
  font-size: 3rem;
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: auto;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainTab__number::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  background-color: currentColor;
  width: 100%;
  height: 100%;
  text-align: center;
}
.mainTab__container {
  position: relative;
}
.mainTab__container-wrapper {
  padding: 5rem;
  font-size: 1.3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 1000px) {
  .mainTab__container-wrapper {
    padding: 2rem;
  }
}
.mainTab__inner-icon {
  width: 4.8rem;
  height: 4.8rem;
  fill: currentColor;
  display: block;
  margin: auto;
  margin-bottom: 0.5rem;
}
.mainTab__university-item {
  padding: 2rem;
  font-size: 1.1rem;
  text-align: center;
}
.mainTab__college .slick-slide {
  background-color: #fff;
  margin: 0.5rem;
  border-radius: 0.3rem;
}
.mainTab__college-item {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
}
.mainTab__school .slick-slide {
  background-color: #fff;
  margin: 0.5rem;
  border-radius: 0.3rem;
}
.mainTab__school-item {
  padding: 4rem 1.5rem;
  text-align: center;
  color: #000;
  font-weight: 600;
}
.mainTab__alumni-item img {
  margin: auto;
  width: 11rem;
  height: auto;
  border-radius: 1rem;
  border: 2px solid #fff;
}
.mainTab__studentCorner {
  display: grid;
}
.mainTab__studentCorner .slick-slide {
  background-color: #173f5f;
  margin: 1rem;
  margin-top: 3rem;
  border-radius: 0.3rem;
}
.mainTab__studentCorner-item {
  padding: 2rem;
  padding-top: 5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.mainTab__studentCorner-icon {
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainTab__studentCorner-icon svg {
  width: 3rem;
  height: 3rem;
}

.popup__container {
  visibility: none;
  opacity: 0;
  margin-top: -5rem;
  transition: 0.3s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: #fff;
  color: #000;
  font-size: 1.3rem;
  border-radius: 0.3rem;
  z-index: -1;
}
.popup__container.active {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 100;
}
.popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.popup__close-btn {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.popup__heading {
  font-size: 1.6rem;
  font-weight: 600;
}

.grid-6 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 900px) {
  .grid-6 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-6 {
    grid-template-columns: 1fr;
  }
}
.grid-5 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
  .grid-5 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-4 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-4 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-3 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .grid-3 {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-2 {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-2 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (max-width: 900px) {
  .grid-1 {
    gap: 2rem;
  }
}
.grid-1-3 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 900px) {
  .grid-1-3 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-1-3 {
    grid-template-columns: 1fr;
  }
}
.grid-1-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .grid-1-1 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-1-1 {
    grid-template-columns: 1fr;
  }
}
.grid-2-2 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .grid-2-2 {
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .grid-2-2 {
    grid-template-columns: 1fr;
  }
}
.grid-3-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 900px) {
  .grid-3-1 {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .grid-3-1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }
}
.grid-2-1 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 900px) {
  .grid-2-1 {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .grid-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 900px) {
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

.order-1 {
  order: 1;
}
@media (max-width: 1200px) {
  .order-1-xxl {
    order: 1;
  }
}
@media (max-width: 1100px) {
  .order-1-xl {
    order: 1;
  }
}
@media (max-width: 1000px) {
  .order-1-lg {
    order: 1;
  }
}
@media (max-width: 900px) {
  .order-1-md {
    order: 1;
  }
}
.order-2 {
  order: 2;
}
@media (max-width: 1200px) {
  .order-2-xxl {
    order: 2;
  }
}
@media (max-width: 1100px) {
  .order-2-xl {
    order: 2;
  }
}
@media (max-width: 1000px) {
  .order-2-lg {
    order: 2;
  }
}
@media (max-width: 900px) {
  .order-2-md {
    order: 2;
  }
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.innerpage {
  font-size: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
.innerpage__wrapper {
  grid-column: 2/3;
}
.innerpage__banner {
  margin-top: -3.1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/banner-1.jpg);
  height: 20rem;
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}
@media (max-width: 1200px) {
  .innerpage__banner {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .innerpage__banner {
    height: 15rem;
  }
}
.innerpage__heading {
  grid-column: 2/3;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .innerpage__heading {
    font-size: 2.2rem;
    justify-content: center;
  }
}

.career {
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .career {
    font-size: 1.4rem;
  }
}
.career__heading {
  padding: 1.5rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.career__content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.career__content-wrapper {
  padding: 1rem 0;
}
.career__dates {
  color: #3caea3;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .career__dates {
    gap: 1rem;
  }
}
.career__pdf {
  width: 3rem;
  height: 3rem;
  fill: #3caea3;
  transition: 0.3s;
}
.career__pdf:hover {
  fill: #173f5f;
}

.enquiry__image img {
  border-radius: 0.3rem;
}

.tab {
  display: grid;
  gap: 2rem;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 900px) {
  .tab {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.tab__buttons {
  position: relative;
}
@media (max-width: 900px) {
  .tab__buttons-wrapper {
    position: absolute;
    top: 0;
    left: -100%;
    transform: translateX(-50%);
    width: 100%;
    overflow-y: auto;
    background-color: #fff;
    z-index: 100;
    padding: 1rem;
    transition: 0.3s;
  }
  .tab__buttons-wrapper.active {
    left: 50%;
  }
}
.tab__button {
  padding: 0.8rem;
  border-radius: 0.3rem;
  background-color: #3caea3;
  color: #fff;
  cursor: pointer;
}
.tab__button:not(:last-child) {
  margin-bottom: 0.8rem;
}
.tab__hamburger {
  display: none;
  justify-self: end;
  position: relative;
}
@media (max-width: 900px) {
  .tab__hamburger {
    display: block;
  }
}
.tab__hamburger span {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: #173f5f;
  margin: 0.5rem;
}
.tab__hamburger::before {
  position: absolute;
  content: "TABS";
  left: -100%;
  font-size: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.tab__containers {
  font-size: 1.4rem;
  position: relative;
}
@media (max-width: 900px) {
  .tab__container {
    margin-top: 2rem;
  }
}

.acc-btn {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.acc-btn::after {
  content: "+";
  transition: 0.5s;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.acc-btn.active::after {
  transform: rotate(135deg);
}
.acc-container {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.acc-container.active {
  max-height: 100rem;
}

.blog__slider .slick-slide {
  margin: 1rem 1.5rem;
}
.blog__item {
  display: block;
  text-decoration: none;
  color: #000;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem;
  overflow: hidden;
  transition: 0.3s;
}
.blog__item:hover {
  transform: translateY(-0.5rem);
  color: #20639b;
}
.blog__content {
  padding: 1.5rem;
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .blog__content {
    font-size: 1.4rem;
  }
}
.blog__image img {
  height: 12rem;
}
@media (max-width: 1200px) {
  .blog__image img {
    height: 13rem;
  }
}
@media (max-width: 1100px) {
  .blog__image img {
    height: 14rem;
  }
}
@media (max-width: 1000px) {
  .blog__image img {
    height: 16rem;
  }
}
.blog__details {
  font-size: 1.3rem;
  color: #000;
  display: flex;
  justify-content: space-between;
}
.blog__details div:first-child span {
  display: block;
  color: #5e5e5e;
}
.blog__details div:last-child {
  color: #5e5e5e;
}
.blog__heading {
  font-weight: 600;
  margin: 0.8rem 0;
}
.blog__text {
  line-height: 1.5;
}
.blog__main-image img {
  height: 35rem;
  border-radius: 0.3rem;
}
@media (max-width: 1200px) {
  .blog__main-image img {
    height: 30rem;
  }
}
@media (max-width: 1100px) {
  .blog__main-image img {
    height: 25rem;
  }
}
@media (max-width: 1000px) {
  .blog__main-image img {
    height: 20rem;
  }
}
.blog__main-content {
  font-size: 1.3rem;
  padding: 1.5rem 0;
}
@media (max-width: 900px) {
  .blog__main-content {
    font-size: 1.4rem;
  }
}

.form__group {
  position: relative;
}
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__label, .form__input {
  display: block;
  width: 100%;
}
.form__label {
  font-size: 1.2rem;
  color: #e2e2e2;
  position: absolute;
  top: -1rem;
  left: 0.7rem;
  background-color: #fff;
  padding: 0.3rem;
  width: fit-content;
  color: #5e5e5e;
}
.form__label span {
  font-size: 1rem;
  color: #3caea3;
}
.form__input {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1.3rem;
  background-color: #fff;
}
@media (max-width: 900px) {
  .form__input {
    font-size: 1.4rem;
  }
}

.gallery__events {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .gallery__events {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .gallery__events {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__events a {
  display: block;
  text-decoration: none;
  text-align: center;
}
.gallery__events a figcaption {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #000;
}
.gallery__events a img {
  border-radius: 0.3rem;
  height: 20rem;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .gallery__events a img {
    height: 15rem;
  }
}
.gallery__events a img:hover {
  opacity: 0.8;
}
.gallery__showcase {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .gallery__showcase {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1000px) {
  .gallery__showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .gallery__showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__item {
  display: block;
}
.gallery__item img {
  border-radius: 0.3rem;
  transition: 0.3s;
  height: 15rem;
}
.gallery__item img:hover {
  opacity: 0.8;
}

.social {
  position: fixed;
  z-index: 100;
  top: 50%;
}
.social__item {
  display: flex;
}
.social__link {
  background-color: #3caea3;
  padding: 0.5rem;
  text-decoration: none;
  fill: #fff;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social__wrapper {
  display: flex;
  margin-left: -16rem;
  transition: 0.3s;
}
.social__wrapper:hover {
  margin-left: 0;
}
.social__icon {
  width: 2.5rem;
  height: 2.5rem;
}
.social__call, .social__whatsapp {
  width: 16rem;
  text-decoration: none;
  font-size: 1.5rem;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.social__call {
  background-color: #173f5f;
}
.social__whatsapp {
  background-color: #3caea3;
}

.stickyForm {
  position: fixed;
  width: 33.3rem;
  top: 15rem;
  right: -33.3rem;
  background-color: #fff;
  padding: 1.5rem;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 1200px) {
  .stickyForm {
    width: 30rem;
    right: -30rem;
  }
}
.stickyForm.active {
  right: 0;
}
.stickyForm__heading {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #173f5f;
  text-align: center;
}
.stickyForm .form__group:not(:last-child) {
  margin-bottom: 0.8rem;
}
.stickyForm .form__input {
  padding: 0.6rem;
}
.stickyForm__button {
  position: absolute;
  top: 2.5rem;
  left: -5.7rem;
  transform: rotate(90deg);
  background-color: #20639b;
  color: #fff;
  padding: 0.5rem 0.8rem;
  font-size: 1.3rem;
  cursor: pointer;
  height: 3rem;
}/*# sourceMappingURL=main.css.map */