.text-white { color: #ffffff }
.font-bold { font-weight: bold }

.home-banner {
  position: relative;
}
.home-banner::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, transparent, transparent);
}

.home-banner .h2 {
  clear: both;
  float: none;
  color: #ee3e41;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.32;
  text-shadow: 1px 1px #fafafa;
}
.home-banner .h2 span {
  width: 100%;
  font-size: 30px;
  display: inline-block;
}
.home-banner .cprin_link {
  margin-top: 45px;
  margin-bottom: 36px;
  margin-left: auto;
  border-radius: 8px;
  border: 4px solid #212121;
}
.home-banner-badges {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
  justify-content: center;
}
.home-banner-badges img {
  width: 150px;
}

@media(min-width: 992px) {
  .home-banner .cprin_link {
    margin-top: 0;
  }
}

@media(min-width: 1200px) {
  .home-banner .home-banner-logo img {
    height: 300px !important;
  }
  .home-banner-badges {
    justify-content: flex-end;
  }
}


.course-container ul,
.location-container ul {
  list-style: disc;
  padding-left: 3rem;
}

.course-container p,
.location-container p,
.course-container li,
.location-container li {
  font-size: 18px;
}


.location-card {
  height: 100%;
  display: flex;
  overflow: hidden;
  min-height: 300px;
  position: relative;
  border-radius: 1rem;
  flex-direction: column;
  background-color: #212121;
}
.location-card-bg-img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 1rem;
  object-position: center;
  transition: transform 400ms;
}
.location-card:hover .location-card-bg-img {
  transform: scale(1.15);
}
.location-card-body {
  flex-grow: 1;
  display: flex;
  position: relative;
  padding: 0.5rem 2rem;
  flex-direction: column;
  justify-content: flex-end;
}
.location-card-body::before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  position: absolute;
  display: inline-block;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,1));
}
.location-card-title {
  color: #fafafa;
  margin-top: 0;
  font-size: 25px;
  margin-bottom: 0;
  position: relative;
}
.location-card-link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  user-select: none;
  position: absolute;
  display: inline-block;
}



.location-container {
  clear: both;
  padding-top: 32px;
  padding-bottom: 32px;
}
.location-banner-container {
  width:100%;
  float: none;
  clear: both;
  padding: 48px 0px;
  position: relative;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}
.location-banner-container::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  background-color: rgba(0,0,0,0.45);
}
.location-banner-container .container {
  position: relative;
  text-align: center;
}
.location-banner-container .location-banner-body {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.location-map-box iframe {
  border-radius: 0.5rem;
  width: 100% !important;
  height: 360px !important;
}



/* courses start */
.course-container {
  clear: both;
  padding-top: 32px;
  padding-bottom: 32px;
}
.course-banner-container {
  width:100%;
  float: none;
  clear: both;
  padding: 48px 0px;
  position: relative;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}
.course-banner-container::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  background-color: rgba(0,0,0,0.45);
}
.course-banner-container .container {
  position: relative;
  text-align: center;
}
.course-banner-container .course-banner-body {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
/* courses end */

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  justify-content: center;
}

.footer-social-icons a {
  color: #ffffff;
  display: inline-block;
}

@media (min-width: 992px) {
  .footer-social-icons {
    column-gap: 48px;
    margin-top: -100px;
    justify-content: flex-end;
  }
  .footer-social-icons svg {
    width: 48px;
    height: 48px;
  }
}
