@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;800&display=swap");
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

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

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

.c-primary {
  color: #db1b2c;
}

.c-secondary {
  color: #1e2440;
}

.lead {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .lead {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

@media (min-width: 992px) {
  h2 {
    font-size: 3rem;
  }
}

p {
  margin-bottom: 1rem;
}

button {
  background: transparent;
  border: 1px solid transparent;
  padding: .2rem;
  font-family: Raleway;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: .5rem 1rem;
  line-height: 1.8;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: #db1b2c;
  border: 1px solid #db1b2c;
}

.btn-secondary {
  color: #fff;
  background: #1e2440;
  border: 1px solid #1e2440;
}

.btn-white-o {
  color: #fff;
  border: 1px solid #fff;
}

input, select, textarea {
  display: block;
  border: 1px solid #ddd;
  padding: .8rem .5rem;
  margin-bottom: 1rem;
  border-radius: .25rem;
  font-size: .9rem;
  width: 100%;
  max-width: 360px;
  color: #1e2440;
  font-weight: 600;
  font-family: Raleway;
}

input::placeholder, select::placeholder, textarea::placeholder {
  color: #888;
  font-weight: 400;
}

.topbar {
  background: #2d6d9d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar ul.nav.contact li {
  padding: .8rem;
}

.topbar ul.nav.contact li a {
  color: #fff;
}

.topbar ul.nav.social li {
  padding: 0.25rem;
}

.topbar ul.nav.social li a {
  color: #fff;
}

.topbar ul.nav li {
  display: inline-block;
  margin-right: 1rem;
}

.topbar ul.nav li a {
  text-decoration: none;
  color: #8d7e7e;
}

.topbar ul.nav li a .desc {
  font-size: .85rem;
}

.topbar ul.nav li a:hover .desc {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topbar .desc {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .topbar .desc {
    display: inline;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 98;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 8px solid #1e2440;
  z-index: 100;
}

.navbar .overlay {
  display: none;
}

.navbar nav ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.05rem;
}

.navbar nav ul > li {
  padding: 1rem;
  font-weight: 800;
}

@media screen and (max-width: 1200px) {
  .navbar nav {
    display: block;
    position: fixed;
    right: -300px;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #1e2440;
    z-index: 100;
    padding: 2rem 1rem;
    transition: all .3s;
    overflow-y: scroll;
  }
  .navbar nav button {
    color: #fff;
  }
  .navbar nav.show {
    right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .navbar nav {
    display: block;
  }
  .navbar nav li {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .navbar #open-menu, .navbar nav p.text-right {
    display: none;
  }
  .navbar nav ul li a {
    color: #1e2440;
    transition: all .2s;
  }
  .navbar nav ul li a:hover, .navbar nav ul li a:focus, .navbar nav ul li a:active {
    color: #db1b2c;
  }
  .navbar .dropdown {
    position: relative;
  }
  .navbar .dropdown .dropdown-menu {
    background: #e5e5f2;
    visibility: hidden;
    max-height: 0;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 120%;
    transition: all .2s ease-in;
    overflow: hidden;
  }
  .navbar .dropdown .dropdown-menu li {
    display: block;
  }
}

.navbar .dropdown ul.dropdown-menu {
  width: 200px;
  border-top: 4px solid #db1b2c;
  padding: .5rem 0;
  z-index: 99;
}

.navbar .dropdown ul.dropdown-menu li {
  font-weight: 600;
  padding: .5rem 1rem;
}

.navbar .dropdown:hover ul.dropdown-menu {
  visibility: visible;
  max-height: 999px;
  opacity: 1;
  top: 100%;
}

.navbar #toggle-menu {
  color: #1e2440;
}

.navbar svg {
  fill: currentColor;
}

.menu-shown .overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99;
}

.navbar-logo {
  width: 164px;
}

footer a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: white;
}

.footer-top {
  background: #1e2440;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top h3 {
  font-size: .9rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #db1b2c;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
}

.footer-top ul li {
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-top .info {
  margin-right: 2rem;
}

.footer-top .info p {
  margin-bottom: 0;
}

.footer-top .info .social {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 4px solid #db1b2c;
  margin-right: auto;
}

.footer-top .info .social svg {
  margin-right: 2rem;
}

.footer-top .logo {
  width: 200px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  .footer-top .info {
    flex: 1 0 100%;
    margin-bottom: 1rem;
  }
  .footer-top .links {
    flex: 1 0 100%;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 991px) {
  .footer-top {
    flex-wrap: nowrap;
  }
}

.footer-bottom {
  background: #2d6d9d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: #ccf;
  font-size: .8rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer-bottom a {
  color: #aad;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.breadcrumb {
  background: #eee;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.breadcrumb ul.nav li {
  display: inline-block;
}

.breadcrumb ul.nav li:not(:last-child)::after {
  content: '/';
  margin-left: 1rem;
  margin-right: 1rem;
}

.breadcrumb ul.nav li a {
  color: #db1b2c;
}

.breadcrumb ul.nav li.active {
  font-weight: 600;
  color: #1e2440;
}

.study-in .hero {
  position: relative;
}

.study-in .hero img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.study-in .hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 36, 64, 0.2);
}

.study-in .hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.study-in .hero .content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

@media (min-width: 768px) {
  .study-in .hero img {
    height: 400px;
  }
  .study-in .hero .content h1 {
    font-size: 4rem;
  }
}

.study-in .page-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .study-in .page-content {
    grid-template-columns: 1fr 240px;
  }
}

.study-in .page-content main .overview {
  margin-bottom: 3rem;
}

.study-in .page-content main h2 {
  color: #1e2440;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.study-in .page-content main .universities {
  list-style: none;
  margin-bottom: 3rem;
}

.study-in .page-content main .universities li {
  color: #db1b2c;
}

.study-in .page-content main .universities li svg {
  margin-right: 10px;
}

.study-in .page-content main .universities li .name {
  color: #000;
}

.study-in .page-content aside .facts {
  background: #c2c8e2;
  padding: 1rem;
}

.study-in .page-content aside .facts h2 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #1e2440;
  margin-bottom: 1rem;
}

.study-in .page-content aside .facts p {
  margin-bottom: 0.5rem;
}

.page-testimonials .hero {
  background: #1e2440;
}

.page-testimonials .hero h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.page-testimonials .page-content {
  background: #eaeaea;
}

.page-testimonials .testimonials {
  padding: 4rem 0;
}

.contact .hero {
  background: #1e2440;
}

.contact .hero h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.contact .page-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact .page-content {
    grid-template-columns: 1fr 240px;
  }
}

.contact .page-content main form {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.contact aside .contact-card {
  background: #1e2440;
  color: #fff;
  padding: 1rem;
}

.contact aside .contact-card h3 {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #db1b2c;
  margin-bottom: 1rem;
}

.contact aside .contact-card a {
  text-decoration: none;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  font-family: Raleway, 'sans-serif';
  line-height: 1.8;
}

body {
  transition: all .3s;
}

.stretched {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-shown {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 992px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}

.container-full {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 992px) {
  .container-full {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

img {
  max-width: 100%;
}

svg {
  fill: currentColor;
  position: relative;
  top: .2rem;
}

ul.nav, nav ul {
  list-style-type: none;
}

ul.nav a, nav ul a {
  text-decoration: none;
}

.hero .slide {
  position: relative;
  display: block;
}

.hero .slide .content {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  z-index: 98;
}

.hero .slide .content h1 {
  color: #fff;
  margin-bottom: 2rem;
}

.hero .slide .content a {
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
}

.hero .slide img {
  object-fit: cover;
}

.hero .owl-dots {
  position: absolute;
}

.hero .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.hero .owl-dots .owl-dot.active {
  background: #db1b2c;
}

@media screen and (max-width: 767px) {
  .hero .slide .content {
    left: 10%;
    right: 10%;
  }
  .hero .slide .content h1 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
  }
  .hero .slide .content h1 .big {
    font-size: 2rem;
    font-weight: 800;
  }
  .hero .slide img {
    height: 240px;
  }
  .hero .owl-dots {
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
  }
  .hero .owl-dots .owl-dot:not(:last-child) {
    margin-right: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .hero .slide .content {
    left: 20%;
    right: 20%;
  }
  .hero .slide .content h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
  }
  .hero .slide .content h1 .big {
    display: inline-block;
    border-right: 2px solid #db1b2c;
    font-size: 5rem;
    font-weight: 800;
  }
  .hero .slide img {
    height: 520px;
  }
  .hero .owl-dots {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero .owl-dots .owl-dot {
    display: block;
  }
  .hero .owl-dots .owl-dot:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.intro {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.intro .intro-text {
  flex: 0 1 500px;
  min-width: 240px;
  margin-right: 3rem;
}

.intro .intro-pic {
  margin-top: 2rem;
  flex: 0 1 500px;
  padding: 1rem;
  border-top: 1px solid #1e2440;
  border-right: 5px solid #1e2440;
  border-bottom: 5px solid #1e2440;
  border-left: 1px solid #1e2440;
  height: 320px;
}

.intro .intro-pic img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .intro .intro-pic {
    margin-top: 8rem;
    height: 600px;
  }
}

.countries {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.countries h2 {
  grid-column: 1/-1;
  color: #fff;
}

.countries .card {
  padding: 1rem;
  position: relative;
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: .5rem;
}

.countries .card svg {
  margin-bottom: 2rem;
}

.countries .card h3 {
  text-align: center;
}

@media (min-width: 768px) {
  .countries {
    gap: 3rem;
  }
}

.testimonials {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.testimonials .testimonials-cards-wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-bottom: 2rem;
}

.testimonials .testimonials-cards-wrapper .card {
  position: relative;
  background: #fff;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 8px solid #db1b2c;
  border-radius: .5rem .5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fdd;
}

.testimonials .testimonials-cards-wrapper .card svg {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.testimonials .testimonials-cards-wrapper .card .message {
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
  z-index: 2;
}

.testimonials .testimonials-cards-wrapper .card img {
  width: 60px;
  border-radius: 50%;
  display: block;
  margin-bottom: 1rem;
}

.testimonials .testimonials-cards-wrapper .card .student-name {
  font-weight: 800;
  color: #1e2440;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonials .testimonials-cards-wrapper .card .university {
  color: #222;
  text-align: center;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.testimonials .testimonials-cards-wrapper .card .country {
  color: #555;
  font-weight: 800;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .testimonials .testimonials-cards-wrapper .card {
    padding: 3rem 3rem 1rem 3rem;
  }
}

.courses {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.courses .test-prep, .courses .language {
  padding: 3rem;
}

.courses .test-prep {
  flex: 2 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.courses .test-prep h2 {
  color: #fff;
}

.courses .test-prep ul {
  list-style: none;
}

.courses .test-prep ul li {
  display: inline-block;
  margin-right: 1rem;
  font-weight: 700;
  border-radius: .5rem;
  font-size: 1.2rem;
}

.courses .test-prep ul li span {
  display: inline-block;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 3rem;
  margin-bottom: 0.5rem;
}

.courses .test-prep ul li:nth-child(1) span {
  color: #f56565;
  border-left: 8px solid #f56565;
}

.courses .test-prep ul li:nth-child(2) span {
  color: #ed8936;
  border-left: 8px solid #ed8936;
}

.courses .test-prep ul li:nth-child(3) span {
  color: #48bb78;
  border-left: 8px solid #48bb78;
}

.courses .test-prep ul li:nth-child(4) span {
  color: #38b2ac;
  border-left: 8px solid #38b2ac;
}

.courses .test-prep ul li:nth-child(5) span {
  color: #4299e1;
  border-left: 8px solid #4299e1;
}

.courses .test-prep ul li:nth-child(6) span {
  color: #667eea;
  border-left: 8px solid #667eea;
}

.courses .language {
  flex: 1 0 240px;
}

.courses .language h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.courses .language .content-wrapper {
  margin-bottom: 4rem;
}

.courses .language ul {
  list-style: none;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.courses .language ul li {
  margin-bottom: 1rem;
}

.courses .language ul li a {
  text-decoration: none;
}

#enquiry-form {
  background: #1e2440;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 240px;
  width: 300px;
  bottom: 0;
  z-index: 100;
  padding: 3rem;
  transform: translateX(-100%);
  transition: all .2s;
  overflow-y: scroll;
}

#enquiry-form p {
  color: #fff;
}

#enquiry-form #close-enquiry {
  color: #fff;
}

#enquiry-form.shown {
  transform: translateX(0);
}
/*# sourceMappingURL=style.css.map */