/* ------------------------------------------------------------banner start------------------------------------------------------------ */
.section-banner {
  background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
  position: relative;
  padding-bottom: 125px;
}

.section-banner::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(135deg,rgba(8, 21, 44, 0.8) 27.5%, rgba(8, 21, 44, 0.15) 100%);
}

.banner-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-text-wrapper {
  width: 100%;
  height: auto;
  margin-top: 37.5%;
  margin-bottom: 50px;
}

.welcome-text {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  h3 {
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
  }
}

.home-title {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  h1 {
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(255, 255, 255);
  }
}

.home-paragraph {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  p {
    font-weight: 500;
    color: rgb(255, 255, 255);
  }
}

.banner-footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}

.banner-picture-profile {
  display: flex;
  align-items: center;
  margin: 0;
  img {
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border: solid 2px rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
  }
}

.profile-recent {
  z-index: 2;
  transform: translate(0px, 0px);
}

.profile-previous {
  z-index: 1;
  transform: translate(-10px, 0px);
}

.profile-last {
  z-index: 0;
  transform: translate(-20px, 0px);
}

.banner-testimony-statistic {
  h4 {
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
  }
  p {
    color: rgb(255, 255, 255);
    opacity: 0.65;
    font-weight: 600;
    text-transform: capitalize;
  }
}

.marquee-banner {
  text-align: center;
}

.marquee-wrapper {
  background-color: rgb(4, 35, 86);
  padding-top: 9.75px;
  padding-bottom: 9.75px;
}

.marquee-text {
  font-weight: bold;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
  span {
    color: rgb(209, 0, 0);
  }
}
/* ------------------------------------------------------------banner end------------------------------------------------------------ */

/* ------------------------------------------------------------program start------------------------------------------------------------ */
.section-program {
  position: relative;
  background-size: cover;
  padding: 75px 0px 50px 0px;
}

.section-program::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg,rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 0.9) 90%);
}

.program-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.program-text-wrapper {
  margin-bottom: 20px;
}

.program-sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.program-intro {
  h2 {
    font-weight: 700;
  }
}

.program-button {
  display: inline-grid;
	width: 100%;
	vertical-align: middle;
  justify-items: right;
  margin-bottom: 30px;
}

.program-main {
  margin-top: 75px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.program-course {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  overflow: hidden;
  justify-content: center;
}

.program-course-image {
  width: 100%;
  align-items: center;
  img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
  }
}

.program-course-info {
  margin-top: 50px;
  padding: 5px;
  text-align: center;
  h3 {
    color: rgb(0, 0, 0);
    text-transform: capitalize;
  }
  p {
    color: rgb(0, 0, 0);
  }
}
/* ------------------------------------------------------------program end------------------------------------------------------------ */

/* ------------------------------------------------------------news start------------------------------------------------------------ */
.section-news {
  padding: 75px 0px 50px 0px;
  background-color: rgb(255, 255, 255);
}

.news-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-text-wrapper {
  margin-bottom: 20px;
}

.news-sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.news-intro {
  h2 {
    font-weight: 700;
    color: rgb(0, 0, 0);
  }
}

.news-main-wrapper {
  margin-top: 40px;
  width: 100%;
}

.news-headline {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px rgb(225, 225, 225);
  border-radius: 15px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 30px;
}

.headline-image {
  width: 100%;
  height: 300px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
		object-position: top;
  }
}

.headline-content {
  padding: 20px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  p {
    color: rgb(0, 0, 0);
  }
}

.news-secondary {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px rgb(225, 225, 225);
  border-radius: 15px;
  margin-bottom: 30px;
  overflow: hidden;
}

.secondary-image {
  width: 45%;
  height: 200px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
		object-position: center;
  }
}

.secondary-content {
  width: 55%;
  align-content: center;
  padding: 0px 15px 0px 15px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  p {
    color: rgb(0, 0, 0);
  }
}
/* ------------------------------------------------------------news end------------------------------------------------------------ */