@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #bc0023;
  --color-blue: #053c74;
  --color-grey: #161616;
}

button {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

p {
  font-size: 16px;
  margin-bottom: 8px;
  color: 383838;
}
p:last-child {
  margin-bottom: 0;
}

b {
  font-weight: bold;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-blue);
}

h3 {
  font-size: 24px;
}

body,
html {
  font-size: 16px;
  min-width: 320px;
  overflow-x: visible;
  min-height: 100%;
  font-weight: 300;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container {
  max-width: 1300px !important;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.btn {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 12px 32px;
  min-width: 180px;
  justify-content: center;
  text-align: center !important;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: inline-flex;
}
.btn:hover {
  background-color: #df2f32;
  color: var(--color-white);
}
.btn--secondary {
  border-radius: 8px;
  color: var(--color-black);
}
.btn--small {
  min-width: auto;
  min-height: 40px;
  padding: 6px 16px;
}
.btn--white {
  background-color: transparent;
  border-color: #fff;
}
.btn--white:hover {
  background-color: #fff;
  color: #000000;
}

.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  display: block;
}

.py-5 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

header {
  border-top: 10px solid var(--color-blue);
}
header .container {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .logo {
  max-width: 200px;
}
header .contact-btns {
  row-gap: 20px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: var(--color-black);
  font-weight: 600;
}
header .contact-btns a {
  color: var(--color-black);
}
header .contact-btns a:hover {
  color: var(--color-blue);
}
header .contact-btns img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.cvp {
  background-color: #205183;
}
.cvp * {
  color: var(--color-white);
}
.cvp h3 {
  font-size: 25px;
  font-weight: 500;
  color: #fdbc30;
}

.scroll {
  position: relative;
  top: -150px;
}

.about {
  background-color: #e9e9e9;
}
.about h2 {
  margin-top: 100px;
}
.about p {
  font-size: 18px;
  max-width: 500px;
}

.navbar {
  background-color: var(--color-blue);
  padding: 0;
  top: -2px;
}
.navbar .navbar-nav {
  display: flex;
  align-items: center;
}
.navbar .navbar-nav li {
  color: var(--color-white);
}
.navbar .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  padding: 16px 8px;
}
.navbar .nav-link:hover {
  color: var(--color-primary);
}
.navbar .apply-now {
  background-color: var(--color-primary);
  min-width: 150px;
  text-align: center;
  margin-left: 32px;
}
.navbar .apply-now:hover {
  color: #fff;
  background-color: #df2f32;
}

.banner {
  padding: 70px 0 0;
}
.banner h1 {
  max-width: 475px;
  color: var(--color-blue);
}

.banner-btn {
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  color: var(--color-white);
  border-radius: 6px;
}

.heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.blue-box {
  background-color: var(--color-blue);
  padding: 24px;
  border-radius: 10px;
  height: 100%;
}
.blue-box h3,
.blue-box p {
  color: var(--color-white);
}
.blue-box h3 {
  font-size: 20px;
}
.blue-box__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-white);
  margin-bottom: 18px;
}
.blue-box__icon img {
  width: 50px;
  height: auto;
}

.red-stripe {
  background-color: #bc0023;
  padding: 35px 0;
  color: var(--color-white);
  font-size: 25px;
}
.red-stripe .container {
  display: flex;
  align-items: center;
}

.contact {
  background-color: #053c74;
}
.contact__input {
  width: 100%;
  background-color: var(--color-white);
  padding: 14px 16px;
  font-size: 20px;
  border: 0;
}
.contact__input::-moz-placeholder {
  color: #868585;
}
.contact__input::placeholder {
  color: #868585;
}

.study .splide {
  display: flex;
  flex-direction: column-reverse;
}
.study .splide__arrows {
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 40px;
  gap: 8px;
}
.study .splide__arrow {
  position: static;
  transform: none;
  opacity: 1;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--color-white);
}

.tile {
  padding: 40px;
  height: 100%;
}
.tile__content {
  border: 1px solid var(--color-white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: calc(100% - 60px);
}
.tile__content p {
  margin-bottom: 100px;
}

.study .tile {
  padding-bottom: 50px;
}

.top {
  display: flex;
}
.top__left {
  width: 20%;
  height: 220px;
  background-color: #bc0023;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  flex-shrink: 0;
  text-align: center;
  color: var(--color-white);
  font-size: 25px;
}
.top__right {
  padding: 0 50px;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
}
.top__right .splide__arrow {
  background-color: transparent;
  opacity: 1;
}
.top__right .splide__arrow svg path {
  fill: var(--color-white);
}
.top__right .splide__arrow--prev {
  left: -27px;
}
.top__right .splide__arrow--next {
  right: -27px;
}

.banner-splide .splide__pagination {
  bottom: 20px;
}
.banner-splide .splide__pagination__page {
  width: 12px;
  height: 12px;
  border: 2px solid #bc0023;
  background-color: transparent;
}
.banner-splide .splide__pagination__page.is-active {
  transform: none;
  background-color: #bc0023;
}

.abroad {
  background-color: #e9e9e9;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 16px;
  padding-bottom: 50px;
}
.countries__box {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
}
.countries__box img {
  margin-right: 10px;
}

.testimonials {
  padding-bottom: 70px;
}
.testimonials .splide__slide {
  opacity: 0.5;
}
.testimonials .splide__slide.is-active.is-visible {
  opacity: 1;
}

.testi-box img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid var(--color-white);
  position: relative;
  margin-bottom: -75px;
}
.testi-box__text svg {
  width: 24px;
  height: 24px;
  position: relative;
  top: -10px;
}
.testi-box__text span:last-of-type svg {
  top: auto;
  bottom: -10px;
}
.testi-box__content {
  border-radius: 50px;
  background-color: var(--color-blue);
  padding: 100px 50px 50px;
  color: var(--color-white);
  font-size: 14px;
}
.testi-box__content .name {
  margin-top: 40px;
  font-weight: bold;
  font-size: 17px;
  text-transform: uppercase;
}
.testi-box__content .name span {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
}
.testi-box .checked {
  color: orange;
}

footer {
  background-color: var(--color-black);
  padding: 70px 0 60px;
  border-bottom: 10px solid var(--color-blue);
}
footer .row a {
  color: var(--color-white);
}
footer .row a:hover {
  color: var(--color-primary);
}
footer .social-media a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  margin-right: 8px;
}
footer .social-media a svg {
  width: 20px;
  height: 20px;
}
footer .social-media a:hover {
  background-color: var(--color-blue);
}

.why-study-box {
  background-color: #fff;
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  margin-top: 100px;
}
.why-study-box img {
  width: 130px;
  height: auto;
  margin-top: -90px;
  margin-bottom: 30px;
}
.why-study-box h3 {
  text-decoration: underline;
}

@media (max-width: 767px) {
  header .logo {
    max-width: 150px;
  }
  header .contact-btns {
    flex-direction: column;
    align-items: start;
    font-size: 12px;
    row-gap: 10px;
  }
  header .contact-btns img {
    width: 20px;
  }
  .countries {
    justify-content: start;
    gap: 0;
  }
  .countries__box {
    font-size: 16px;
    width: 50%;
    margin-bottom: 13px;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar .navbar-toggler {
    background-color: var(--color-white);
    border-color: var(--color-white);
    padding: 0;
    border-radius: 0;
    margin-left: auto;
  }
  .navbar .apply-now {
    margin: 0;
    width: 100%;
  }
  .banner {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .about h2 {
    margin-top: 40px;
  }
  .about p {
    font-size: 16px;
  }
  .tile {
    padding: 20px;
  }
  .tile__content {
    padding: 20px;
  }
  .tile__content p {
    margin-bottom: 40px;
  }
  .top {
    display: block;
  }
  .top__left, .top__right {
    width: 100%;
  }
  .top__left {
    min-height: 100px;
    height: auto;
  }
  .top__right {
    padding: 16px 30px;
  }
  .testi-box__content {
    border-radius: 20px;
    padding: 100px 20px 20px;
  }
  .red-stripe {
    font-size: 20px;
  }
  .red-stripe .container {
    display: block;
  }
  .contact__input {
    font-size: 16px;
  }
  .contact .btn {
    width: 100%;
  }
  footer {
    padding: 40px 0;
  }
  .scroll {
    position: relative;
    top: -450px;
  }
}/*# sourceMappingURL=style.css.map */