:root {
  --main-color: #fff;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: url(../eduford_img/banner.png);
  background-size: cover;
  position: relative;
  background-position: center;
}
.overlaye {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00000070;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 6%;
}
nav .logo img {
  width: 150px;
}
.links {
  flex: 1;
  text-align: right;
}
nav .links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
nav .links ul li a {
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
nav .links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #f44336;
  display: block;
  margin: auto;
  transition: 0.3s;
}
nav .links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 14px;
  color: var(--main-color);
}
.hero-btn {
  background-color: transparent;
  color: var(--main-color);
  padding: 12px 34px;
  display: inline-block;
  border: 1px solid var(--main-color);
  font-size: 15px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.hero-btn:hover {
  border: 1px solid #f44336;
  background-color: #f44336;
  transition: 1s;
}
nav .fa-bars,
.fa-times {
  display: none;
}
@media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
  }
  nav .links ul li {
    display: block;
  }
  nav .links {
    position: absolute;
    background-color: #f44336;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-bars,
  .fa-times {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  nav .links ul {
    padding: 30px;
  }
}
.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.course h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
.course p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #777;
}
.row {
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}
.course-col {
  flex-basis: 31%;
  background-color: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  transition: 0.5s;
}
.course-col h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.course-col:hover {
  box-shadow: 0 0 20px 0 rgb(0, 0, 0, 0.2);
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}
.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}
.campus h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
.campus p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #777;
}
.campus-col {
  flex-basis: 32%;
  background-color: #fff3f3;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.campus-col img {
  width: 100%;
  display: block;
}
.layer {
  background-color: transparent;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: 0.5s;
}
.layer:hover {
  background-color: rgba(226, 0, 0, 0.7);
}
.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s ease;
}
.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}
.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.facilities h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
.facilities p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #777;
}
.facilities-col {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}
.facilities-col img {
  width: 100%;
  border-radius: 10px;
}
.facilities-col p {
  padding: 0;
}
.facilities-col h3 {
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: left;
}
.testimonials {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.testimonials h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonials p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #777;
}
.testimonials-col {
  flex-basis: 44%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background-color: #fff3f3;
  padding: 25px;
  cursor: pointer;
  display: flex;
}
.testimonials-col img {
  border-radius: 50%;
  height: 40px;
  margin-left: 5px;
  margin-right: 30px;
}
.testimonials-col p {
  padding: 0;
}
.testimonials-col h3 {
  margin-top: 15px;
  text-align: left;
}
.testimonials-col i {
  color: #f44336;
}
@media (max-width: 700px) {
  .testimonials-col img {
    margin-left: 0px;
    margin-right: 15px;
  }
}
.cta {
  width: 80%;
  margin: 100px auto;
  text-align: center;
  padding: 100px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../eduford_img/banner2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.cta h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}
@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}
footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}
.icon .fa-brands {
  color: #f44336;
  margin: 0 13px;
  padding: 18px 0;
}
.fa-solid {
  color: #f44336;
}
.icon a i{
  transition: 0.5s ease-in-out;
}
.icon a i:hover {
  transform: scale(1.5);
}
/* ABOUT US */
.sub-header {
  height: 50vh;
  width: 100%;
  background-image: url(../eduford_img/background.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header .overlaye {
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background-color: #00000070;
}
.sub-header h1 {
  margin-top: 100px;
}
.about-us {
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
  width: 80%;
}
.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}
.about-col img {
  width: 100%;
}
.about-col h1 {
  padding-top: 0;
}
.about-col p {
  padding: 15px 0 25px;
}
.about-us .hero-btn {
  background-color: transparent;
  color: var(--main-color);
  padding: 12px 34px;
  display: inline-block;
  border: 1px solid var(--main-color);
  font-size: 15px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.about-us .hero-btn:hover {
  border: 1px solid #f44336;
  background-color: #f44336;
  transition: 1s;
}
