@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
html{
  scroll-behavior: smooth;
}


.header {
  min-height: 100vh;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0, 0.7)), to(rgba(4, 9, 30, 0.7))), url(../images/college-5757815_1920.jpg);
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../images/college-5757815_1920.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2% 6%;
}

.header nav img {
  width: 150px;
}

.header nav .nav-links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.header nav .nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.header nav .nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: gold;
  display: block;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.fa-bars{
  color: gold;
}
.header nav .nav-links ul li:hover::after {
  width: 100%;
}
nav a{
  text-decoration: none;
  font-size: 1.5rem;
  color: white;
}
nav a span{
  color: gold;
}
.header nav .nav-links ul li a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}

.header .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
}

.header .text-box h1 {
  font-size: 62px;
  font-family:  'Poppins', sans-serif;
}

.header .text-box p {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin: 10px 0 40px;
  color: #fff;
}

.header .text-box .hero-btn {
  -webkit-text-decoration: white;
  text-decoration: white;
  background: transparent;
  padding: 12px 34px;
  border: 1px solid #fff;
  position: relative;
  color: white;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
}

.header .text-box .hero-btn:hover {
  -webkit-transition: 1s;
  transition: 1s;
  border: 1px solid gold;
  background-color: gold;
  color: white;
}

.header nav .fa {
  display: none;
}

@media (max-width: 700px) {
  .header .text-box h1 {
    font-size: 20px;
  }
  .nav-links {
    position: absolute;
    background: gold;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    transition: 1s;
   opacity: 0;
   transform: translateY(100%);
  }
  .nav-active{
opacity: 1;
transform: translateY(0);}
  
  .nav-links ul {
    padding: 40px;
  }
  .nav-links ul li {
    display: block;
  }
  .header nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
}

/*-----------course----------*/
.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.course h1 {
  font-size: 36px;
  font-weight: 600;
}

.course p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.course .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.course .row .course-col {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  background-color: rgb(241, 233, 185);
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 20px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s;
  transition: .5s;
}

.course .row .course-col:hover {
  -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.course .row .course-col h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

@media (max-width: 700px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*---------Campus------------*/
.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.campus h1 {
  font-size: 36px;
  font-weight: 600;
}

.campus p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.campus .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.campus .campus-col {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.campus .campus-col img {
  width: 100%;
  display: block;
}

.campus .campus-col .layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.campus .campus-col .layer:hover {
  background: gold;
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.campus .campus-col .layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.campus .campus-col .layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/*----facilities----*/
.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.facilities h1 {
  font-size: 36px;
  font-weight: 600;
}

.facilities p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.facilities .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.facilities .facilities-col {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}

.facilities .facilities-col img {
  width: 100%;
  border-radius: 10px;
}

.facilities .facilities-col h3 {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 15px;
}

.facilities .facilities-col p {
  padding: 0;
}

/*------testimonials----*/
.testimonials {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}

.testimonials h1 {
  font-size: 36px;
  font-weight: 600;
}

.testimonials p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.testimonials .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonials .row .testimonial-col {
  -ms-flex-preferred-size: 44%;
      flex-basis: 44%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background-color: rgb(241, 233, 185);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 25px;
}

.testimonials .row .testimonial-col img {
  height: 40px;
  margin-left: 5px;
  margin-right: 38px;
  border-radius: 50%;
}

.testimonials .row .testimonial-col p {
  padding: 0;
}

.testimonials .row .testimonial-col h3 {
  text-align: left;
  margin-top: 15px;
}

.testimonials .row .testimonial-col .fa {
  color: gold;
  margin-top: 3%;
}

@media (max-width: 700px) {
  .testimonials .row .testimonial-col img {
    margin-left: 0;
    margin-right: 15px;
  }
  .nav-links {
    position: absolute;
    background: gold;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    transition: 1s;
   opacity: 0;
  }
  .nav-active{
opacity: 1;}
  
  .nav-links ul {
    padding: 40px;
  }
  .nav-links ul li {
    display: block;
  }
  .header nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
}

/*----Call To Action----*/
.cta {
  width: 80%;
  margin: 100px auto;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../images/speaking-1453068_1920.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/speaking-1453068_1920.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding: 100px 0;
}

.cta h1 {
  color: white;
  margin-bottom: 40px;
  padding: 0;
}

.cta .hero-btn {
  -webkit-text-decoration: white;
          text-decoration: white;
  background: transparent;
  padding: 12px 34px;
  border: 1px solid #fff;
  position: relative;
  color: white;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
}

.cta .hero-btn:hover {
  -webkit-transition: 1s;
  transition: 1s;
  border: 1px solid gold;
  background-color: gold;
}

@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}

/*---footer----*/
.footer {
  width: 80%;
  text-align: center;
  padding: 30px 0;
  margin: auto;
}

.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.footer p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.footer i {
  color: gold;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

/*------subheader----------*/
.sub-header {
  height: 50vh;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 9, 30, 0.7)), to(rgba(4, 9, 30, 0.7))), url(../images/graduated-4379009_1920.jpg);
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../images/graduated-4379009_1920.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: white;
}

.sub-header h1 {
  margin-top: 100px;
}

.sub-header nav .fa {
  display: none;
}

.sub-header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2% 6%;
}

.sub-header nav img {
  width: 150px;
}

.sub-header nav .nav-links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.sub-header nav .nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.sub-header nav .nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: gold;
  display: block;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sub-header nav .nav-links ul li:hover::after {
  width: 100%;
}

.sub-header nav .nav-links ul li a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}

.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-us .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-us .row .about-col {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 30px 2px;
}

.about-us .row .about-col img {
  width: 100%;
}

.about-us .row .about-col h1 {
  font-size: 36px;
  font-weight: 600;
  padding: 0;
}

.about-us .row .about-col p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 15px 0 25px;
}

.about-us .row .about-col .hero-btn {
  -webkit-text-decoration: white;
          text-decoration: white;
  background: transparent;
  padding: 12px 34px;
  border: 1px solid gold;
  position: relative;
  color: gold;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
}

.about-us .row .about-col .hero-btn:hover {
  -webkit-transition: 1s;
  transition: 1s;
  border: 1px solid gold;
  background-color: gold;
  color: white;
}

@media (max-width: 700px) {
  .sub-header {
    margin-bottom: -2em;
  }
  .nav-links {
    position: absolute;
    background: gold;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    transition: 1s;
   opacity: 0;
  }
  .nav-active{
opacity: 1;}
  
  .nav-links ul {
    padding: 40px;
  }
  .nav-links ul li {
    display: block;
  }
  .sub-header nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
}

/*---------blog content-----*/
.blog-content {
  width: 80%;
  margin: auto;
  padding: 60px 0;
}

.blog-content .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-content .row .blog-left {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}

.blog-content .row .blog-left img {
  width: 100%;
}

.blog-content .row .blog-left h2 {
  color: #222;
  font-weight: 600;
  margin: 30px 0;
}

.blog-content .row .blog-left p {
  color: #999;
  padding: 0;
}

.blog-content .row .blog-left .hero-btn {
  -webkit-text-decoration: white;
          text-decoration: white;
  background: transparent;
  padding: 12px 34px;
  border: 1px solid gold;
  position: relative;
  color: gold;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
}

.blog-content .row .blog-left .hero-btn:hover {
  -webkit-transition: 1s;
  transition: 1s;
  border: 1px solid gold;
  background-color: gold;
  color: white;
}

.blog-content .row .blog-left h3 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
  text-align: left;
}

.blog-content .row .blog-left .comment-box {
  border: 1px solid #ccc;
  margin: 50px 0;
  padding: 10px 20px;
}

.blog-content .row .blog-left .comment-form input, .blog-content .row .blog-left .comment-form textarea {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  background: #f0f0f0;
}

.blog-content .row .blog-right {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
}

.blog-content .row .blog-right h3 {
  background: gold;
  color: #fff;
  padding: 7px 0;
  font-size: 16px;
  margin-bottom: 20px;
}

.blog-content .row .blog-right div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #555;
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*---------contact us page-----*/
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.location iframe {
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.contact-us .row {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-us .row .contact-col {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-us .row .contact-col div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.contact-us .row .contact-col div i {
  font-size: 28px;
  color: gold;
  margin: 10px;
  margin-right: 30px;
}

.contact-us .row .contact-col form .hero-btn {
  -webkit-text-decoration: white;
          text-decoration: white;
  background: transparent;
  padding: 12px 34px;
  border: 1px solid gold;
  position: relative;
  color: gold;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
}

.contact-us .row .contact-col form .hero-btn:hover {
  -webkit-transition: 1s;
  transition: 1s;
  border: 1px solid gold;
  background-color: gold;
  color: white;
}

.contact-col input, .contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*# sourceMappingURL=style.css.map */

.footer .fab{
  color: gold;
}