@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&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&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #1D1D1D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader img {
  width: 12rem;
}
#preloader .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
#preloader .dots div {
  width: 16px;
  height: 16px;
  margin: 8px;
  background-color: #F1F4F8;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
#preloader .dots div:nth-child(2) {
  animation-delay: 0.2s;
}
#preloader .dots div:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  to {
    opacity: 0.3;
    transform: translate3d(0, -1rem, 0);
  }
}

#whatsapp-widget .chat-header,
#whatsapp-widget .chat-content,
#whatsapp-widget .message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10003;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#whatsapp-widget .chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: none;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
#whatsapp-widget .chat-header .avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#whatsapp-widget .chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#whatsapp-widget .chat-header .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
#whatsapp-widget .chat-header .chat-header-info {
  flex-grow: 1;
}
#whatsapp-widget .chat-header span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
#whatsapp-widget .chat-header .online-status {
  font-size: 12px;
}
#whatsapp-widget .chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
#whatsapp-widget .chat-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-widget .chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: none;
}
#whatsapp-widget .chat-content .message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
#whatsapp-widget .chat-content .message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
#whatsapp-widget .chat-content .message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
#whatsapp-widget .message-input {
  bottom: 20px;
  height: 60px;
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
#whatsapp-widget .whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#whatsapp-widget .whatsapp-btn:hover {
  background-color: #128c7e;
}
#whatsapp-widget .typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#whatsapp-widget .typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
#whatsapp-widget .typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
#whatsapp-widget .chat-icon {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10004;
  animation: wave 2s infinite;
}
#whatsapp-widget .chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.heading {
  font-size: 22px;
  color: #F1F4F8;
  margin-bottom: 0;
  font-weight: 600;
}

.supportive-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

p, a, ul, li, span {
  font-size: 14px;
  font-weight: 400;
  font-family: "PT Sans";
}

b {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #F1F4F8;
  font-weight: 400;
}

header {
  overflow: visible;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .top-bar {
  background-color: #F1F4F8;
}
header .top-bar a, header .top-bar span {
  text-decoration: none;
  color: #0D1F43;
  font-weight: 400;
  font-family: "Poppins" !important;
}
header .navbar {
  background-color: #F1F4F8;
  height: 75px;
  z-index: 1000;
  /* Mobile view dropdown fix */
}
header .navbar .nav-link {
  color: white;
  text-transform: uppercase;
  padding: 10px 15px;
  font-weight: 500;
}
header .navbar .dropdown-toggle:after {
  border-top: 0;
}
header .navbar .dropdown-menu {
  background-color: #081935;
  border: none;
  border-radius: 5px;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
header .navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}
header .navbar .nav-item.dropdown:hover .dropdown-menu .dropdown-toggle {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
header .navbar .dropdown-menu .dropdown-item {
  color: white;
  padding: 12px 20px;
  text-transform: uppercase;
  font-size: 14px;
}
header .navbar .dropdown-menu .dropdown-item:hover {
  background-color: #E63946;
}
header .navbar .dropdown-toggle::after {
  display: none;
}
@media (max-width: 991px) {
  header .navbar .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    background-color: #0D1F43;
    padding: 0;
    transition: all 0.3s ease-in-out;
  }
  header .navbar .dropdown.show .dropdown-menu {
    display: block;
    position: relative;
  }
  header .navbar .dropdown-menu .dropdown-item {
    padding: 0 38px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header .navbar .nav-item.dropdown {
    width: 100%;
  }
}
header .offcanvas {
  width: 80%;
  background-color: #F1F4F8;
}
header .offcanvas .offcanvas-header {
  padding: 8px 10px;
}
header .offcanvas .offcanvas-header .btn-close {
  border-radius: 50px;
  background-color: #F1F4F8;
}
header .offcanvas .offcanvas-header img {
  width: 8rem;
}
header .offcanvas .offcanvas-body {
  background-color: #0D1F43;
}
header .offcanvas .offcanvas-body .navbar-nav {
  line-height: 30px;
}
header .offcanvas .offcanvas-body .navbar-nav .nav-item {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 40px;
}
header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  color: #F1F4F8;
  text-transform: uppercase;
  font-family: "PT Sans" !important;
}
header .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #F1F4F8;
}
header .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
}
header .offcanvas .offcanvas-bottom {
  padding: 12px;
  background-color: #0D1F43;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
header .offcanvas .offcanvas-bottom h3 {
  color: #FFF;
  text-align: left;
  font-family: "PT Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 18px;
}
header .offcanvas .offcanvas-bottom a {
  text-decoration: none;
}
header .offcanvas .offcanvas-bottom .contact-links, header .offcanvas .offcanvas-bottom .social-media-links {
  display: flex;
  align-items: center;
}
header .offcanvas .offcanvas-bottom .contact-links span, header .offcanvas .offcanvas-bottom .social-media-links span {
  color: #F1F4F8;
}

#hero {
  overflow: hidden;
  position: relative;
  top: 0;
  height: 40vh;
}
#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
#hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero h1 {
  color: #F1F4F8;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

#homePage #homeHero {
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100%;
  height: 38vh;
  /* Content Styling */
}
#homePage #homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#homePage #homeHero .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#homePage #homeHero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#homePage #homeHero .homeHero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -18%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
#homePage #homeHero .homeHero-content h1 {
  color: #FCDC1F;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 30px;
  word-spacing: 5px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
#homePage #homeHero .homeHero-content p {
  color: #F1F4F8;
  margin-top: 8px;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  word-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins" !important;
}
#homePage #book-consultancy {
  overflow: hidden;
  background-color: #0F4E7A;
}
#homePage #book-consultancy .heading {
  font-size: 14px !important;
  line-height: 22px;
}
#homePage #book-consultancy .book-online {
  background-color: #E63946;
  color: #F1F4F8;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #FFB300;
  transition: all 0.3s ease;
}
#homePage #book-consultancy .book-online:hover {
  background: #D42C38;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5);
}
#homePage #book-consultancy .book-online a {
  text-decoration: none;
  color: #F1F4F8;
  font-weight: 700;
}
#homePage #countries {
  overflow: hidden;
}
#homePage #countries .card {
  position: relative;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  height: 14rem;
}
#homePage #countries .image-container {
  position: relative;
  overflow: hidden;
}
#homePage #countries .image-container img,
#homePage #countries .image-container .overlay,
#homePage #countries .image-container .overlay-text {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#homePage #countries .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#homePage #countries .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}
#homePage #countries .image-container .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F1F4F8;
  font-size: 22px;
  white-space: nowrap;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 10;
}
#homePage #countries .image-container .hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  color: #F1F4F8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 15;
  border: 2px solid #0F4E7A;
}
#homePage #countries .image-container .hover-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0F4E7A;
  text-align: left;
}
#homePage #countries .image-container .hover-content p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #1D1D1D;
  text-align: left;
}
#homePage #countries .image-container .hover-content .btn {
  background-color: #0F4E7A;
  color: #F1F4F8;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  font-weight: 700;
}
#homePage #countries .image-container .hover-content .btn:hover {
  background-color: #1D1D1D;
}
#homePage #countries .image-container:hover img,
#homePage #countries .image-container:hover .overlay,
#homePage #countries .image-container:hover .overlay-text {
  opacity: 0;
  visibility: hidden;
}
#homePage #countries .image-container:hover .hover-content {
  opacity: 1;
  visibility: visible;
}
#homePage #higher-education {
  overflow: hidden;
}
#homePage #higher-education img, #homePage #higher-education video {
  transition: transform 0.3s ease;
}
#homePage #higher-education img:hover, #homePage #higher-education video:hover {
  transform: scale(1.02);
}
#homePage #higher-education .higher-education-video {
  height: 22rem;
}
#homePage #higher-education video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#homePage #specialities {
  overflow: hidden;
  position: relative;
  background-image: url(../images/specialities-img-sm.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#homePage #specialities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#homePage #specialities span {
  position: relative;
  font-weight: 600;
  color: #F1F4F8;
  z-index: 2;
}
#homePage #specialities .heading {
  position: relative;
  z-index: 2;
  text-align: center;
  display: inline-block;
  margin-bottom: 20px;
}
#homePage #specialities .heading::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 52%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-image: url("../images/icons/heading-border-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
#homePage #specialities .specialities-content {
  z-index: 2;
  position: relative;
}
#homePage #specialities .specialities-content img {
  width: 3rem;
  z-index: 2;
}
#homePage #specialities .specialities-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
#homePage #specialities .specialities-counter h3 {
  font-size: 20px;
  font-weight: 700;
  color: #F1F4F8;
}
#homePage #specialities .specialities-counter p {
  color: #F1F4F8;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  line-height: 16px;
}
#homePage #our-partners {
  overflow: hidden;
}
#homePage #our-partners .heading {
  color: #0F4E7A;
  text-align: center;
  position: relative;
}
#homePage #our-partners .heading::after {
  content: url(../images/icons/heading-border-blue.svg);
  position: absolute;
  display: block;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
#homePage #our-partners p {
  text-align: center;
}
#homePage #our-partners .partner-img {
  transition: transform 0.3s ease;
}
#homePage #our-partners .partner-img:hover {
  transform: scale(1.1);
}
#homePage #news-events {
  overflow: hidden;
}
#homePage #news-events .heading {
  color: #0F4E7A;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  align-items: center;
}
#homePage #news-events .heading img {
  width: 24px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
#homePage #news-events p {
  text-align: justify !important;
}
#homePage #news-events span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
#homePage #news-events .news-card, #homePage #news-events .event-card {
  background: #F6F6F6;
  border-top: 3px solid #FFB300;
}
#homePage #news-events .news-card img, #homePage #news-events .event-card img {
  width: 100%;
  height: auto;
}
#homePage #news-events .news-card h3, #homePage #news-events .event-card h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 16px;
}
#homePage #news-events .news-card .read-more, #homePage #news-events .news-card .view-more, #homePage #news-events .event-card .read-more, #homePage #news-events .event-card .view-more {
  color: #1D1D1D;
  text-decoration: none;
}
#homePage #news-events .event-card-link {
  color: #1D1D1D !important;
}
#homePage #news-events .event-status span {
  font-family: "Poppins" !important;
  font-size: 14px !important;
}
#homePage #news-events .read-more::after {
  content: ">";
  color: #E63946;
  font-weight: 900;
  margin-left: 4px;
}
#homePage #news-events .event-card {
  background-color: transparent !important;
  border-top: none !important;
}
#homePage #news-events .event-date {
  color: #fff;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
#homePage #news-events .event-date .event-date-month {
  background-color: #E63946;
  color: #F1F4F8;
  padding: 10px;
}
#homePage #news-events .event-date .event-date-month .date {
  font-size: 26px;
  font-weight: 700;
  color: #F1F4F8;
}
#homePage #news-events .event-date .event-date-month .month {
  font-size: 16px;
  color: #F1F4F8;
  font-weight: 600;
}
#homePage #news-events .event-date .event-date-year {
  background-color: #0A4A70;
  color: #F1F4F8;
  padding: 10px;
}
#homePage #news-events .event-date .event-date-year .year {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
#homePage #news-events .view-more {
  color: #1D1D1D;
  font-weight: 600;
  font-family: "Roboto";
  text-decoration: none;
  border-bottom: 3px solid #FCDC1F;
}
#homePage #testimonials {
  overflow: hidden;
  background-color: rgba(46, 93, 185, 0.05);
}
#homePage #testimonials .heading {
  color: #0F4E7A;
  text-align: center;
  position: relative;
}
#homePage #testimonials .heading::after {
  content: url(../images/icons/heading-border-blue.svg);
  position: absolute;
  display: block;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
}
#homePage #testimonials .card {
  width: 18rem;
  border-color: transparent;
  border-radius: 12px;
  box-shadow: 12px 12px 48px 0px rgba(0, 0, 0, 0.01);
  position: relative;
  text-align: center;
}
#homePage #testimonials .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background: #1D1D1D;
  border-bottom-left-radius: 50% 25px;
  border-bottom-right-radius: 50% 25px;
  z-index: 0;
  box-shadow: 0px 18px 36px 0px rgba(71, 71, 185, 0.2);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
#homePage #testimonials .card::after {
  content: "★★★★★";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #f6f6f6;
  letter-spacing: 4px;
  z-index: 1;
}
#homePage #testimonials .card .image-wrapper {
  padding: 32px;
  margin-top: 30px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
#homePage #testimonials .card .image-wrapper img {
  border-radius: 50%;
}
#homePage #testimonials .card .card-body {
  position: relative;
  z-index: 1;
}
#homePage #testimonials .card .card-body span {
  font-family: "Roboto" !important;
  font-weight: 800;
  text-align: center !important;
  color: #0D1F43 !important;
}
#homePage #testimonials .card .card-body .role {
  color: #505050 !important;
  font-family: "Poppins" !important;
  font-size: 12px;
  font-weight: 400;
}
#homePage #testimonials .card:hover {
  transform: scale(1.02);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#homePage #testimonials .swiper-pagination {
  position: relative !important;
  margin-top: 8px;
  text-align: center;
  bottom: -2px;
}
#homePage #testimonials .swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  width: 14px;
  height: 14px;
}
#homePage #testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.45);
}

#newEventsPage #news-and-media {
  overflow: hidden;
}
#newEventsPage #news-and-media .heading {
  color: #0D1F43;
}
#newEventsPage #news-and-media .filter-select {
  width: 56%;
}
#newEventsPage #news-and-media .form-select {
  border: 1px solid rgba(36, 36, 36, 0.15);
  background: #0D1F43;
  color: #F1F4F8;
  border-radius: 0;
}
#newEventsPage #news-and-media a {
  text-decoration: none;
}
#newEventsPage #news-and-media a .card {
  width: 100%;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.14);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#newEventsPage #news-and-media a .card .card-body {
  height: 20rem;
  position: relative;
}
#newEventsPage #news-and-media a .card .card-body img {
  height: 180px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#newEventsPage #news-and-media a .card .card-body .card-title {
  color: #0E1F42;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
#newEventsPage #news-and-media a .card .card-body span {
  color: #444;
  font-family: "Roboto";
  line-height: 30px;
}
#newEventsPage #news-and-media a .card .card-body .label {
  position: absolute;
  bottom: 124px;
  left: 16px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 20px;
  border-bottom-left-radius: 4px;
}
#newEventsPage #news-and-media a .card .card-body .label-event {
  background-color: #004F70;
}
#newEventsPage #news-and-media a .card .card-body .label-news {
  background-color: #FFB300;
  color: #1D1D1D;
}
#newEventsPage #news-and-media a .card .card-body .event-status span {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins" !important;
  font-size: 14px;
  font-weight: 500;
}
#newEventsPage #news-and-media a .card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
#newEventsPage .pagination-container {
  display: flex;
  justify-content: center;
}
#newEventsPage .pagination-container .page-btn {
  color: #F1F4F8;
  cursor: pointer;
  padding: 2px 10px;
  margin: 0 4px;
  border: 0;
  border-radius: 0;
  background-color: #0D1F43;
}
#newEventsPage .pagination-container .page-btn:not(.active) {
  background-color: #0D1F43;
}
#newEventsPage .pagination-container .page-btn.active {
  color: #F1F4F8;
  font-weight: bold;
  background-color: #E63946;
}
#newEventsPage .pagination-container .page-btn.active::after {
  content: none;
}

#newsEventDetailPage #news-events-detail {
  overflow: hidden;
}
#newsEventDetailPage #news-events-detail .heading {
  color: #0D1F43;
  font-size: 20px;
}
#newsEventDetailPage #news-events-detail .date {
  color: #444;
  font-family: "Roboto" !important;
}
#newsEventDetailPage #news-events-detail .arrow-detail {
  top: 8px;
  position: relative;
}
#newsEventDetailPage #news-events-detail p {
  color: #444;
}
#newsEventDetailPage #news-events-detail .news-events-other-img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

#aboutPage .heading {
  color: #1D1D1D;
}
#aboutPage #about-us {
  overflow: hidden;
}
#aboutPage #about-us .heading {
  font-family: "Rubik";
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}
#aboutPage #about-us .supportive-heading {
  color: #E63946;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#aboutPage #about-us p {
  color: #666;
  text-align: justify !important;
}
#aboutPage #about-us img {
  transition: transform 0.3s ease;
}
#aboutPage #about-us img:hover {
  transform: scale(1.02);
}
#aboutPage #about-us .about-content {
  padding: 6px 0;
}
#aboutPage #about-us .about-content span {
  margin-left: 12px;
}
#aboutPage #about-us .card {
  background: rgba(240, 242, 247, 0.6);
  border: 0;
  border-left: 4px solid #E63946;
  border-radius: 0;
}
#aboutPage #about-us .card .card-body {
  font-weight: 600;
}
#aboutPage #vision-mission {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
#aboutPage #vision-mission p {
  text-align: justify !important;
}
#aboutPage #vision-mission .image-container {
  background-image: url("../images/vision-mission.webp");
  background-size: cover;
  background-position: center;
  height: 50vh;
  max-height: 50vw;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#aboutPage #vision-mission .image-container:hover {
  transform: scale(1.02);
}
#aboutPage #vision-mission .container {
  position: relative;
  z-index: 1;
}
#aboutPage #vision-mission .vision-mission-detail {
  padding: 0;
  margin-top: 3rem;
}
#aboutPage #vision-mission .heading {
  color: #1D1D1D;
}
#aboutPage #vision-mission ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
#aboutPage #vision-mission ul li {
  text-align: justify;
}
#aboutPage #vision-mission .vision, #aboutPage #vision-mission .mission {
  margin: 0;
  padding: 0;
  border-left: 4px solid #E63946;
}
#aboutPage #about-features {
  overflow: hidden;
}
#aboutPage #about-features .heading {
  color: #0F4E7A !important;
  position: relative;
}
#aboutPage #about-features .heading::after {
  content: url(../images/icons/heading-border-blue.svg);
  position: absolute;
  display: block;
  top: 34%;
  left: 0;
  transform: translateX(3%);
  margin-top: 4px;
}
#aboutPage #about-features h3 {
  font-size: 20px;
  font-family: "PT Sans";
  font-weight: 700;
  margin-top: 10px;
}
#aboutPage #about-features p {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: justify;
}
#aboutPage #about-features .card {
  width: 100%;
  display: flex;
  height: 220px;
  border-radius: 0;
  border: 1px solid rgba(15, 78, 122, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#aboutPage #about-features .card img {
  width: 3rem;
}
#aboutPage #about-features .card::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 2rem;
  height: 2rem;
  background: url(../images/icons/shape.svg);
  background-size: contain;
}
#aboutPage #about-features .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

#contactPage #hero .hero-content {
  transform: translate(-50%, -90%) !important;
}
#contactPage .heading {
  color: #0F4E7A;
  font-size: 20px;
  font-weight: 700;
}
#contactPage #contact-us {
  position: relative;
  margin-top: -34px;
}
#contactPage #contact-us .card {
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}
#contactPage #contact-us .card .btn {
  background: #E63946;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
  padding: 12px 18px;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-family: "PT Sans";
  font-size: 14px;
  font-weight: 700;
  border: 0;
  border-radius: 0;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
#contactPage #contact-us .card .btn:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.5);
}
#contactPage #contact-us .card .btn:active {
  transform: scale(0.98);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5);
}
#contactPage #contact-us .location-details {
  background-color: #F8F9FD;
}
#contactPage #contact-us .location-details .location-content {
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
#contactPage #contact-us .location-details .location-content .card-body {
  background-color: #F8F9FD;
}
#contactPage #contact-us .location-details .location-content .card-body span {
  font-size: 12px !important;
}
#contactPage #contact-us .location-details .location-content .card-body a {
  text-decoration: none;
  color: #1D1D1D;
}
#contactPage #contact-us .location-details .location-content .content-details {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
#contactPage #contact-us .location-details .location-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}
#contactPage #contact-us .location-details .location-content .social-contact .social-media {
  color: #0D1F43;
  text-align: center;
  font-family: "Poppins";
}
#contactPage iframe {
  margin-bottom: -7px;
}

#countryPage .heading {
  color: #0F4E7A !important;
}
#countryPage #higher-education {
  overflow: hidden;
}
#countryPage #higher-education .supportive-heading {
  font-family: "PT Sans";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0F4E7A;
}
#countryPage #higher-education .heading {
  font-size: 22px;
  font-weight: 700 !important;
}
#countryPage #higher-education h3 {
  font-family: "PT Sans";
  font-weight: 700;
  font-size: 18px;
}
#countryPage #higher-education ul li {
  margin-bottom: 8px;
}
#countryPage #higher-education .higher-education {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#countryPage #higher-education .higher-education:hover {
  transform: scale(1.03);
}
#countryPage #higher-education .assistance {
  width: 85%;
}
#countryPage #higher-education .assistance .study-assisatance span {
  font-family: "Plus Jakarta Sans" !important;
  color: #0F4E7A;
  font-size: 18px;
  font-weight: 600;
}
#countryPage #higher-education .assistance .study-assisatance p {
  color: rgba(29, 29, 29, 0.6);
  margin-top: 8px;
}
#countryPage #facts, #countryPage #cost-of-studying {
  overflow: hidden;
}
#countryPage #facts .card, #countryPage #cost-of-studying .card {
  border-radius: 0;
  border: 1px solid rgba(15, 78, 122, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#countryPage #facts .card .card-body .card-title, #countryPage #cost-of-studying .card .card-body .card-title {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
}
#countryPage #facts .card::before, #countryPage #cost-of-studying .card::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 2rem;
  height: 2rem;
  background: url(../images/icons/shape.svg);
  background-size: contain;
}
#countryPage #facts .card:hover, #countryPage #cost-of-studying .card:hover {
  transform: scale(1.03);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1);
}
#countryPage #facts ul, #countryPage #cost-of-studying ul {
  padding-left: 0;
  margin-top: 22px;
}
#countryPage #facts ul li, #countryPage #cost-of-studying ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
#countryPage #facts ul li p, #countryPage #cost-of-studying ul li p {
  margin-bottom: 0;
  padding-left: 12px;
}
#countryPage #application-process .heading {
  position: relative;
}
#countryPage #application-process .heading::after {
  content: url(../images/icons/heading-border-blue.svg);
  position: absolute;
  display: block;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 6px;
  margin-top: 6px;
}
#countryPage #application-process .supportive-paragraph {
  text-align: justify !important;
}
#countryPage #application-process .application-content::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 100%;
  width: 2px;
  height: 20px;
  background-color: rgba(15, 78, 122, 0.2509803922);
}
#countryPage #application-process .application-content:last-child::after {
  display: none;
}
#countryPage #entry-requirments {
  overflow: hidden;
  background-image: url(../images/entry-requirment-sm.webp);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#countryPage #entry-requirments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#countryPage #entry-requirments .entry-requirment-content {
  border-left: 4px solid #E63946;
  position: relative;
  z-index: 2;
}
#countryPage #entry-requirments .entry-requirment-content .heading {
  color: #F1F4F8 !important;
  margin-left: 12px;
  font-size: 20px !important;
}
#countryPage #entry-requirments .entry-requirment-content .entry-content {
  color: #F1F4F8;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  margin-left: 12px;
}
#countryPage #entry-requirments .entry-requirment-content .entry-content img {
  margin-right: 12px;
}
#countryPage #entry-requirments .entry-requirment-content .entry-content p {
  margin-bottom: 0;
}
#countryPage #universities-and-colleges {
  overflow: hidden;
}
#countryPage #universities-and-colleges .heading {
  text-align: center;
  font-size: 24px !important;
  margin-bottom: 20px;
}
#countryPage #universities-and-colleges .heading::after {
  content: url(../images/icons/heading-border-blue.svg);
  position: absolute;
  display: block;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
}
#countryPage #universities-and-colleges .image-container {
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
#countryPage #universities-and-colleges .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#countryPage #universities-and-colleges .image-container:hover {
  transform: scale(1.02);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
}
#countryPage #universities-and-colleges .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #F1F4F8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
}
#countryPage #universities-and-colleges .image-container .overlay h3 {
  font-size: 18px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans";
}
#countryPage #contact-us {
  overflow: hidden;
  background-image: url(../images/contact-hero.webp);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
#countryPage #contact-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#countryPage #contact-us .heading, #countryPage #contact-us .supportive-paragraph {
  color: #F1F4F8 !important;
  position: relative;
  z-index: 2;
  text-align: center !important;
}
#countryPage #contact-us .supportive-paragraph {
  margin-top: 30px !important;
}
#countryPage #contact-us .heading::after {
  content: url(../images/icons/heading-border-white.svg);
  position: absolute;
  display: block;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
}
#countryPage #contact-us .contact-us-content {
  position: relative;
  z-index: 2;
}
#countryPage #contact-us .contact-us-content h3 {
  font-size: 18px;
  color: #0F4E7A;
  font-weight: 700;
}
#countryPage #contact-us .contact-us-content .card {
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}
#countryPage #contact-us .contact-us-content .card .btn {
  background: #E63946;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
  padding: 12px 18px;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-family: "PT Sans";
  font-size: 14px;
  font-weight: 700;
  border: 0;
  border-radius: 0;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
#countryPage #contact-us .contact-us-content .card .btn:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.5);
}
#countryPage #contact-us .contact-us-content .card .btn:active {
  transform: scale(0.98);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5);
}
#countryPage #contact-us .contact-us-content .location-details {
  background-color: #F8F9FD;
}
#countryPage #contact-us .contact-us-content .location-details .location-content {
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
#countryPage #contact-us .contact-us-content .location-details .location-content .card-body {
  background-color: #F8F9FD;
}
#countryPage #contact-us .contact-us-content .location-details .location-content .card-body span {
  font-size: 12px !important;
}
#countryPage #contact-us .contact-us-content .location-details .location-content .card-body a {
  text-decoration: none;
  color: #1D1D1D;
}
#countryPage #contact-us .contact-us-content .location-details .location-content .content-details {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
#countryPage #contact-us .contact-us-content .location-details .location-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}
#countryPage #contact-us .contact-us-content .location-details .location-content .social-contact .social-media {
  color: #0D1F43;
  text-align: center;
  font-family: "Poppins";
}

footer {
  background-color: #0D1F43;
  color: #F1F4F8;
}
footer .row:first-child .footer-logo {
  display: flex;
  align-items: center;
}
footer .row:first-child .footer-logo span {
  color: #0D1F43;
  font-family: "Poppins" !important;
}
footer .row:first-child h3 {
  font-weight: 500;
  line-height: 26px;
  font-size: 22px;
  font-family: "Poppins" !important;
}
footer .row:first-child p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #F1F4F8;
  font-family: "Poppins" !important;
}
footer .row:first-child ul li {
  align-items: center;
  font-weight: 400;
  line-height: 35px;
  font-size: 14px;
  display: flex;
}
footer .row:first-child ul li a {
  color: #F1F4F8;
  text-decoration: none;
  display: flex;
  font-family: "Poppins" !important;
}
footer .row:first-child #footer-social-list li a {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #F1F4F8;
  background: transparent;
  color: #F1F4F8;
}
footer .row:first-child #footer-contact-list ul li {
  display: flex;
  align-items: center;
}
footer .row:first-child #footer-contact-list ul li a {
  color: #F1F4F8;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}
footer .row:first-child a {
  color: #F1F4F8;
  text-decoration: none;
}
footer .row:last-child p {
  color: #F1F4F8;
  font-size: 14px;
  font-weight: 300;
}
footer .row:last-child p a {
  color: #F1F4F8;
  text-decoration: none;
}
footer hr {
  opacity: 1.25 !important;
}/*# sourceMappingURL=style.css.map */