*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(13, 44, 95, 0.7),rgba(17, 44, 87, 0.7)),url(images/classroom.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 80px;
    position: relative;
     
}
.nav-links{
    flex: 1;
    text-align: right;
    position: relative;

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

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

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(218, 214, 7);
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 70px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: white;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #2873eb;
    background-color: #2873eb;
    transition: 1s;
}
/*--- Services ---*/
.tutoring-services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.projects{
    background-color:rgb(245, 245, 245);
    padding-bottom: 25px;
}

h1{
    font-size: 36px;
    font-weight: 600px;
}
p{
    color: #777;
    font-size: 23px;
    font-weight: 300px;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;

}
.tutoring-services-col{
    flex-basis: 31%;
    /*background: rgb(0, 0, 102);*/
    background: #2873eb;
    border-radius: 25px;
    box-sizing: border-box;
    transition: 0.5s;
    
}

.tutoring-services-col-text{
    padding: 20px 12px;
}


.projects-col p{
    color: rgb(44, 44, 44);
    font-size: 16px;
    font-weight: 300px;
    line-height: 22px;
    padding: 5px;
}
.projects-img{
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
}

.projects-col{
    flex-basis: 31%;
    /*background: rgb(0, 0, 102);*/
    background: #ffffff;
    border-radius: 25px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3) ;
    
}

.projects-col-text{
    padding: 20px 12px;
}

.projects-col h3{
    color: rgb(0, 0, 0);
}

.tutoring-services-col p{
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300px;
    line-height: 22px;
    padding: 5px;
}
.tutoring-services-img{
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
}
h3{
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px 0;
    color: white;
}
.tutoring-services-col:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5) ;

}

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

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

.subjects-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(40, 115, 235, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

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

/*---Quotes---*/
.quotes{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    max-width: 1000px;
    position:relative;
}


.slideshow-container {
    max-width: 1000px;
    position:relative;
    margin: auto;
}

.bubble {
    position: relative;
    line-height: 24px;
    
    background: #2873eb;
    border-radius: 40px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 18px;
    padding-bottom: 24px;
    margin: 60px;
    color: rgb(255, 255, 255);
  }
  
  .bubble-bottom-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 24px solid #2873eb;
    border-right: 12px solid transparent;
    border-top: 12px solid #2873eb;
    border-bottom: 20px solid transparent;
    left: 32px;
    bottom: -24px;
  }
  

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

    .quotesTitle {
        text-align: center;
    }

  .soarQuotes {
      text-align: center;
  }
  .quote {
      text-align: left;
      font-weight: 200;
      line-height: 34px;
      font-size: 24px;
  }

  .quotee {
      text-align: right;
      padding-top: 20px;
      font-weight: 200;
      font-size: 16px;

  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 10px 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
/*--- sponsors ---*/ 
.sponsers{
    margin: 100px auto;
    width: 80%;
    text-align: center;
}



/*--- Enroll ---*/ 
.enroll{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.enroll h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}


/*---About Us --- */
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(40, 115, 235,0.7), rgba(40, 115, 235,0.7)),url(images/officers.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-proj{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(40, 115, 235,0.7), rgba(40, 115, 235,0.7)),url(images/mcmillenc.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5) ;
}

.sub-header-proj h1{
    font-size: 64px;

    
}
.sub-header h1{
    font-size: 64px;

    
}

.sub-header p {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}

.counters {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.counter {
    padding: 10px 15px;
    font-weight: 300;
    background-color: white;
    color:rgb(0, 0, 0);
    border-radius: 25px;
    width: 130px;
    margin: 0px 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 60%;
    padding: 15px 20px;
    background-color:rgb(40, 115, 235);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    border-radius: 25px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
    color:rgb(255, 255, 255);

}

.about-col p{
    color:rgb(238, 238, 238);
}

p{
    padding: 15px 0 15px;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
}

.para{
    line-height: 42px;
    margin-top: 15px;
}

.about-image {
    margin: 50px 15px;
    flex-basis: 40%;
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    height: 340px;
    width: 500px;
}

.about-image-img {
    background-image: url("images/studysess.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

.about-image p{
    font-size: 16px;
    padding-left: 15px;
    line-height: 24px;
}

/*---Study Sessions --- */
.SOAR-Study-Sessions{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.study-col{
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: 0.5s;

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

}
.study-col h1{
    padding-bottom: 10px;
}
.study-col p{
    padding: 15px 0 25px;
}

.contact-col input, .contact-col textarea{
    width: 50%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;

}

/*-------footer------*/
.footer{
    width: 100%;
    text-align: center;
    padding-top: 30px;
    background: rgb(40, 115, 235);
    height: auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    
}

.footer h3{
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 30px;
}

.footer p{
    font-size: 15px;
    color: #fff;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 9 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #fff;
}

.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}

.socials a:hover i{
    color: #0f3064;
}

.footer-bottom{
    background-color: #1f52a3;
    width: 100%;
    padding: 20px 0;
    margin-top: 10px;
    text-align: center;
}

.footer-bottom p{
    font-size: 14 px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

/*---SUB MENU---*/
.sub-menu{
    display: none;

}

.nav-links ul li:hover::after .sub-menu{
    display: block;
    position: absolute;
    background: rgb(0, 0, 102);
    margin-top: 15px;
    margin-left: -15px;
}

/*-----Contact Us ----*/
.container{
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 25px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5) ;
}

form h3{
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;

}

form input,  form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;

}

form button{
    padding: 15px;
    background: rgb(0, 0, 102);
    color: white;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;

}