/* ____________________________________________ start banner __________________________________ */
.banner {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
}

.secondBanner {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bannerDemo.png");
  background-size: cover;
  background-position: center;
}

.banner_content_title {
  color: #FFF;

  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.banner_content_desc {
  color: #FFF;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 400;
}

.banner_content_buttons {
  gap: 20px;
  display: flex;
}

.banner_content_buttons_button {
  color: #172462;
  font-size: 1rem;
  font-weight: 500;

  width: 245px;
  height: 48px;
  padding: 11px 50px;

  border-radius: 5px;
  background: #33BEAD;
}

.banner_content_buttons_button:hover {
  color: #172462;
  text-decoration: none;
}

@media (max-width: 768px) {
  .banner_content_buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

}

/* ____________________________________________ end banner __________________________________ */

/* ____________________________________________ start courses __________________________________ */
.courses {
  padding: 24px 0;
  background: linear-gradient(90deg, #168376 0%, #172462 100%);
}

.courses_desc {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  /* text-transform: capitalize; */
  margin-bottom: 0;
}

/* ____________________________________________ end courses __________________________________ */

/* ____________________________________________ start AI __________________________________ */
.AI {
  padding: 80px 0;
}

.AI_title {
  color: #172462;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  /* text-transform: capitalize; */
}

.AI_desc {
  color: #212529;

  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* ____________________________________________ end AI __________________________________ */

/* ____________________________________________ start road __________________________________ */

.road {
  padding: 40px 0 70px;
  background: url("../img/bg.png") lightgray 0px -245.368px / 100% 163.353% no-repeat;
}

.road_title {
  color: #172462;

  font-size: 2rem;
  font-weight: 700;
  /* text-transform: capitalize; */
  margin-bottom: 50px;
}

.road_boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.road_boxes_box {
  width: calc(85% / 5);
  flex: 0 0 calc(85% / 5);
  background-color: white;
  padding: 1rem 0.85rem;
  border-radius: 0 0 50px 50px;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6mm 4mm rgb(169, 169, 169));
}

.road_boxes_box:first-of-type {
  height: 300px;
}

.road_boxes_box::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #e4e7e9;
  width: 100%;
  height: 23px;
  z-index: 9;
}

@media (max-width: 1200px) {
  .road_boxes_box::before {
    top: -6px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  .road_boxes_box {
    width: calc(85% / 3);
    flex: 0 0 calc(85% / 3);
    margin-bottom: 3rem;
  }

  .road_boxes_box::before {
    top: -2px;
  }
}

@media (max-width: 768px) {
  .road_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .road_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }

  .road_boxes_box::before {
    top: 4px;

  }
}

@media (max-width: 568px) {
  .road_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .road_boxes_box {
    width: 100%;
    flex: 0 0 100%;
  }

  .road_boxes_box:first-of-type {
    height: 260px;
    display: flex;
  }
}

.road_boxes_box::after {
  content: "";
  position: absolute;
  z-index: -1;

  bottom: -15px;
  left: 15%;
  right: 15%;
  height: 20px;

  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.6;
}

.road_boxes_box .topp {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.15);
}

@media (max-width: 1200px) {
  .road_boxes_box .topp {
    top: -17px;
  }
}

@media (max-width: 768px) {
  .road_boxes_box .topp {
    transform: none;
    height: 42px;
  }
}

.road_boxes_box_number {
  font-weight: bold;
  font-size: 3rem;
}

.road_boxes_box_number.one {
  color: #554bc0;
}

.road_boxes_box_number.two {
  color: #ed4866;
}

.road_boxes_box_number.three {
  color: #ff743f;
}

.road_boxes_box_number.four {
  color: #ed901c;
}

.road_boxes_box_number.five {
  color: #2eafac;
}

.road_boxes_box_title {
  color: #212529;

  font-size: 1rem;
  font-weight: 400;
}

.road_boxes_box_desc {
  color: #737272;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.location {
  border-top: 1px solid #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0 0 0;
  align-items: center;
}

.location a {
  color: #094581;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  margin: 10px 0 0 0;
}

.location a:hover {
  color: #094581;

  text-decoration: none;
}

/* ____________________________________________ end road __________________________________ */
/* ____________________________________________ start spotlight __________________________________ */

.spotlight {
  padding: 40px;
  background: linear-gradient(0deg, rgba(233, 244, 255, 0.8) 0%, rgba(233, 244, 255, 0.8) 100%),
    url("../img/bg2.jpg") lightgray 50% / cover no-repeat;
}

.spotlight_content1 {
  margin-bottom: 40px;
}

.spotlight_content1_title {
  color: #172462;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.spotlight_content1_desc {
  color: #212529;

  font-size: 1.1rem;
  font-weight: 400;
}

.spotlight_content2 {
  margin-bottom: 40px;
}

.spotlight_content2_title,
.spotlight_content3_title {
  color: #172462;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.spotlight_content2_boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spotlight_content2_boxes_box {
  padding: 23px 23px 0 23px;
  width: calc(100% / 5);
  flex: 0 0 calc(100% / 5);
}

@media (max-width: 1200px) {
  .spotlight_content2_boxes {
    justify-content: start;
    flex-wrap: wrap;
    gap: 2%;
  }

  .spotlight_content2_boxes_box {
    width: calc(96% / 3);
    flex: 0 0 calc(96% / 3);
  }
}

@media (max-width: 768px) {
  .spotlight_content2_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .spotlight_content2_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }
}

@media (max-width: 568px) {
  .spotlight_content2_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .spotlight_content2_boxes_box {
    width: 100%;
    flex: 0 0 100%;
    padding: 1rem;
  }
}

.spotlight_content2_boxes_box_img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.spotlight_content2_boxes_box_title {
  color: #172462;

  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
}

.spotlight_content2_boxes_box_desc {
  color: #737272;
  font-size: 1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 0;
  min-height: 96px;
}

@media (max-width: 1200px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 72px;
  }
}

@media (max-width: 991px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 96px;
  }
}

@media (max-width: 568px) {
  .spotlight_content2_boxes_box_desc {
    min-height: auto;
  }
}

/* @media (max-width: 768px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 72px;
  } 
} */


.spotlight_content3_box {
  border-radius: 8px;
  background-color: white;
  padding: 50px 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight_content3_box_img {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 30%;
  width: 30%;
}

.spotlight_content3_box_desc {
  color: #172462;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
}

/* ____________________________________________ end spotlight __________________________________ */
/* ____________________________________________ start instructor __________________________________ */

.instructor {
  padding: 40px 0;
  background-image: url("../img/bg.jpg");
  background-size: cover;
}

@media (max-width: 768px) {
  .instructor {
    background-size: contain;
  }
}

.instructor_img {
  width: 138px;
  height: 138px;
  margin-bottom: 2rem;
}

.instructor_title {
  color: #000;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  /* text-transform: capitalize; */
}

.instructor_desc {
  color: #737272;
  font-size: 1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 2rem;
}

/* ____________________________________________ end instructor __________________________________ */
/* ____________________________________________ start impact __________________________________ */

.impact {
  padding: 80px 0;
}

.impact_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 3rem;
}

.impact_boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.impact_boxes_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3.584px 28.956px 5.375px rgba(102, 102, 102, 0.12);
  padding: 15px;
  width: 200px;
  height: 205px;
}

@media (max-width: 1200px) {
  .impact_boxes {
    justify-content: start;
    flex-wrap: wrap;
    gap: 2%;
  }

  .impact_boxes_box {
    width: calc(96% / 3);
    flex: 0 0 calc(96% / 3);
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .impact_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .impact_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }
}

@media (max-width: 568px) {
  .impact_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .impact_boxes_box {
    width: 100%;
    flex: 0 0 100%;
  }
}

.impact_boxes_box_title {
  color: #1b1464;

  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.impact_boxes_box_desc {
  color: #737272;
  margin-bottom: 0;

  font-size: 1rem;
  font-weight: 400;
}

/* ____________________________________________ end impact __________________________________ */

/* ____________________________________________ start applyNow __________________________________ */

.applyNow {
  background-image: url("../img/applyBg.png");
  background-size: cover;
  padding: 70px 0;
  background-position: bottom;
}

@media (max-width: 768px) {
  .applyNow {
    background-position: top;
  }
}

.applyNow_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.applyNow_list_item {
  color: #172462;
  font-size: 1.25rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 1.5rem;
  position: relative;
  padding-inline-start: 3rem;
}

.applyNow_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/right.svg");
  width: 32px;
  height: 32px;
}

/* ____________________________________________ end applyNow __________________________________ */
/* ____________________________________________ start beReady __________________________________ */

.beReady {
  padding: 80px 0;
}

.beReady_content_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.beReady_content_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.beReady_content_links_link {
  display: flex;
  width: 225px;
  height: 48px;
  padding: 11px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #172462;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.beReady_content_links_link:hover {
  text-decoration: none;
  color: white;
}

.note {
  margin-bottom: 1rem;
  color: #172462;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
}

.sendTo {
  color: #000;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: underline;
}

.sendTo:hover {
  color: black;
}

/* ____________________________________________ end beReady __________________________________ */