@font-face {
  font-family: "GT Walsheim Pro";
  src: url(fonts/GTWalsheimPro-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "GT Walsheim Pro";
  src: url(fonts/GTWalsheimPro-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: "GT Walsheim Pro";
  src: url(fonts/GTWalsheimPro-Medium.ttf);
  font-weight: 500;
}

* {
  padding: 0;
  margin: 0;
  font-family: "GT Walsheim Pro", sans-serif;
  color: #000;
}
.header {
  /* background-color: #eee4df; */
  /* background-color: #c29a94 !important; */
  /* background-color: #f6e1da; */
  background-color: #f6eae1;
  min-height: 100vh;
  width: 100%;

  background-image: linear-gradient(rgba(70, 63, 60, 0.6), rgba(0, 0, 0, 0.6)),
    url(img/home\ 01.jpeg);
  background-position: center;
  background-size: cover;
  position: relative;
}
nav {
  display: flex;
  padding: 1% 6%;
  justify-content: space-around;
  align-items: center;
}
.logo {
  width: 150px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 25px;
  position: relative;
  font-weight: normal;
}
.nav-links ul li a {
  color: #fbfbf5;
  font-weight: 300;

  text-decoration: none;
  /* letter-spacing: 0.7px; */
}
.nav-links ul li .home {
  font-weight: 500;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fbfbf5;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: #fbfbf5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
  font-family: "Domaine Display Narrow", sans-serif;
  line-height: 70px;
  font-weight: 400;
  color: #fbfbf5;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 16px;
  font-weight: lighter;
  letter-spacing: 0.34px;
  color: #fbfbf5;
}
.text-box a {
  color: #000;
}
.hero-btn {
  background-color: #fbfbf5;
  display: inline-block;
  text-decoration: none;
  color: #eeece3;
  letter-spacing: 0.1px;

  padding: 12px 34px;
  border-radius: 10px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover {
  border: 1px solid #fbfbf5;
  background: none;
  color: #fbfbf5;
  transition: 0.1s;
}
nav .fa {
  display: none;
}
@media (max-width: 700px) {
  nav {
    justify-content: space-between;
  }
  .logo {
    width: 100px;
  }
  .sub-header nav .logo {
    width: 100px;
  }
  .header {
    position: relative;
    overflow: hidden;
  }

  .text-box h1 {
    margin-top: 60px;
    font-size: 43px;
    line-height: 50px;
  }
  .text-box p {
    font-size: 15px;
  }

  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: fixed;
    background: #b87d57;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 0.8s;
  }
  nav .fa {
    display: block;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .closeMenu {
    color: #fbfbf5;
  }
  .openMenu {
    color: #fbfbf5;
  }
  .nav-links ul {
    padding: 30px;
  }
  .nav-links ul li a {
    color: #fbfbf5;
  }
  .nav-links ul li::after {
    background: #fbfbf5;
  }
}

/* Course */
.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
  color: #000;
}
h1 {
  font-size: 36px;
  font-family: "Domaine Display Narrow", sans-serif;
  font-weight: 500;
}
p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.course-col {
  flex-basis: 31%;
  background: #f6eae1;

  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.1s;
}
.course-col img {
  width: 100%;
  margin-top: -10px;
  border-radius: 10px;
}
h3 {
  text-align: center;
  font-weight: 500;
  font-family: "Domaine Display Narrow", sans-serif;
  margin: 10px 0;
  margin-top: 30px;
  letter-spacing: 0.3px;
}
.course-col:hover {
  /* box-shadow: 0 0 20px 0px rgb(184, 125, 87, 0.2); */
  border: 1px solid #b87d57;
  background: none;
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/* Campus */
.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}
.campus-col {
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.campus-col img {
  width: 100%;
  display: block;
}
.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.layer:hover {
  background: rgba(70, 63, 60, 0.5);
}
.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #eeece3;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/* facilities */
.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.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 */
.testimonials {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.testimonials-col {
  flex-basis: 45%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  /* background: #eeece3; */
  background: #f6eae1;
  padding: 25px;
  cursor: pointer;
  display: flex;
}
.testimonials-col img {
  /* height: 90px;
  width: 90px; */
  /* height: 40px;
  width: 40px; */
  margin-left: 5px;
  margin-right: 30px;
  clip-path: circle();
  height: 40px;
  /* border-radius: 50%; */
}
.testimonials-col p {
  padding: 0;
}
.testimonials-col h3 {
  margin-top: 15px;
  text-align: left;
}
.testimonials-col .fa {
  color: #b87d57;
}
@media (max-width: 700px) {
  .testimonials-col img {
    margin-left: 0px;
    margin-right: 15px;
  }
}

/* call to action */
.cta {
  margin: 100px auto;
  width: 80%;

  background-image: linear-gradient(rgba(70, 63, 60, 0.5), rgba(0, 0, 0, 0.5)),
    url(img/enroll.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}
.cta h1 {
  color: #eeece3;
  margin-bottom: 40px;
  padding: 0;
  font-weight: 200;
  letter-spacing: 0.1px;
  line-height: 45px;
}
.cta .hero-btn {
  transition: 0.5s;
  border: none;
  background: #eeece3;
  color: #000;
}
.cta .hero-btn:hover {
  color: #eeece3;
  border: 1px solid #eeece3;
  background: none;
}
@media (max-width: 700px) {
  .cta h1 {
    font-size: 30px;
    line-height: 36px;
    padding: 0px 25px;
  }
}

/* Footer */
.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  /* font-weight: 600; */
}
.icons .fa {
  color: #b87d57;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}
@media (max-width: 700px) {
  .footer {
    width: 80%;
    margin: auto;
  }
  /* .footer p {
    font-size: 13px;
  } */
}

/* About Us Page */
.sub-header {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(70, 63, 60, 0.5), rgba(0, 0, 0, 0.5)),
    url(img/certificate.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #eeece3;
}
.sub-header h1 {
  margin-top: 70px;
  color: #eeece3;
}
.sub-header .logo {
  width: 150px;
}
.sub-header .nav-links ul li a {
  color: #eeece3;
}
.sub-header .nav-links ul li::after {
  background: #eeece3;
}
.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
  /* background-color: #eee4df; */
}
.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}
.about-col img {
  width: 100%;
  border-radius: 10px;
}
.about-col h1 {
  padding-top: 0;
}
.about-col p {
  padding: 15px 0 25px;
}
.about-textbox p {
  margin-bottom: -27px;
}
.about-textbox a {
  margin-top: 27px;
  background-color: #000;
}
.about-textbox a:hover {
  background: none;
  border: 1px solid #000;
  color: #000;
}
/* .about-textbox {
  margin-top: 40px;
}
@media (max-width: 700px) {
  .about-col {
    flex-direction: column;
  }
} */
@media (max-width: 700px) {
  /* .about-col {
    flex-direction: column;
  } */
  .sub-header h1 {
    margin-top: 95px;
  }
}
/* Students */

.students {
  width: 80%;
  margin: auto;
  /* text-align: center; */
  padding-top: 50px;
}
.students h1,
.students-title {
  text-align: center;
}
.students-col {
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.students-col img {
  width: 100%;
  display: block;
}
.students-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(70, 63, 60, 0.7) 80%);
  z-index: 0;
}
.students-col .card {
  position: absolute;
  padding: 1rem;
  color: white;
  bottom: -0.2rem;
}
.students-col .card h3 {
  color: white;
  margin-bottom: 0.1rem;
  padding: 0;
}
.students-col .card p {
  font-size: 0.7rem;
  color: #ccc;
  padding: 0;
}
/* .comment-box {
  width: 50%;
  margin: auto;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px 20px;
}
.comment-box h3 {
  text-align: center;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  outline: none;
  background: #eee4df;
}
.comment-form button {
  margin: 10px 0;
} */

/* Contact Us Form */
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}
.contact-us {
  width: 80%;
  margin: auto;
}
.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}
.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-col div .fa {
  font-size: 28px;
  color: #b87d57;
  margin: 10px;
  margin-right: 30px;
}
.contact-col div p {
  padding: 0;
}
.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1d232f;
  font-weight: 300;
}
.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.contact-btn {
  padding: 15px 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  background-color: #000;
  color: #fbfbf5;
}
