@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

:root{
    --color1: rgba(0, 0, 0, 0.65);
    --color2: rgba(0, 0, 0, 0.35);
    --color3: rgba(0, 0, 0, 0.05);
}

*:focus{
    outline: none;
}

body{
    margin: 0;
    //background: var(--color1);
    font-family: "Open Sans";
}

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
}

.nav-menu{
    position: absolute;
    right: 50px;
    top: 30px;
    display: flex;
    width: 460px;
    justify-content: space-between;
}

.nav-menu a{
    color: #fff;
    font-family: "Open Sans";
    font-size: 18px;
    text-decoration: none;
}

.hero{
    position: relative;
    height: 90vh;
    max-height: 600px;
    background: linear-gradient(170deg, var(--color1), var(--color2), var(--color3)), url(../img/pexels-photo-256455.jpeg);
}

.hero-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: "Open Sans";
    color: #fff;
    width: 750px;
    max-width: 90%;
}

.hero-text-small{
    font-size: 20px;
}

.hero-text-large{
    font-size: 60px;
}

.logo{
    margin-left: 50px;
    width: 200px;
}

.logo img{
    width: 100%;
}

.search{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.1);
    width: 600px;
    max-width: 90%;
}


.search input{
    width: calc(100% - 70px);
    font-size: 16px;
    padding: 20px;
    font-weight: 300;
    border: none;
    color: #777;
}

.search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #bbb;
    font-weight: 300;
}
.search input::-moz-placeholder { /* Firefox 19+ */
    color: #bbb;
    font-weight: 300;
}
.search input:-ms-input-placeholder { /* IE 10+ */
    color: #bbb;
    font-weight: 300;
}
.search input:-moz-placeholder { /* Firefox 18- */
    color: #bbb;
    font-weight: 300;
}

.search input:focus{
    outline: none;
}

.search-button{
    background: #21a1e1;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 100px;
    text-align: center;
    cursor: pointer;
}

.search-button i{
    color: #fff;
    font-size: 34px;
    line-height: 52px;
}

.hamburger{
    display: none;
    position: absolute;
    top: 22px;
    right: 50px;
}

.hamburger i{
    color: #fff;
    font-size: 36px;
}

.nav-menu-full{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    font-size: 40px;
    display: none;
}

.nav-menu-full a{
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    padding: 20px 0px;
    text-decoration: none;
}

.nav-menu-full > div:nth-child(1){
    text-align: right;
    color: #fff;
    padding-right: 40px;
}


.close-nav{
    cursor: pointer;
    padding: 10px;
}




.horizontal-rule{
    height: 2px;
    width: 200px;
    max-width: 50%;
    background: #dcdcdc;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 80px;
}











.colleges{
    max-width: 1200px;
    width: 95%;
    margin: auto;
}

.colleges-heading h2{
    font-size: 40px;
    color: #4F4F4F;
    font-family: "Open Sans";
    font-weight: 300;
    text-align: center;
}

.colleges-nav{
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.filter{
    margin-right: 30px;
    color: #777;
    font-weight: 400;
    text-align: center;
}

.courses{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.courses a{
    margin: 0px 20px 10px 20px;
    font-weight: 300;
    color: #b7b7b7;
    text-decoration: none;
}

.courses a.active-course{
    color: #58E858;
    font-weight: 400;
}

.colleges-thumb-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: auto;
    margin-top: 40px;
}

.college-thumb{
    width: 200px;
    box-sizing: border-box;
    padding: 5px;
    background: #fafafa;
    margin: 30px;
    border-radius: 7px;
    text-align: center;
    padding-bottom: 10px;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.college-thumb:hover{
    box-shadow: 0px 5px 30px 1px rgba(0, 0, 0, 0.1);
}

.college-img img{
    width: 100%;
}

.college-name a{
    text-decoration: none;
    color: #21a1e1;
    font-size: 20px;
}

.college-name a:hover{
    text-decoration: underline;
}

.course{
    margin-top: 5px;
    margin-bottom: 5px;
}

.course span{
    font-size: 14px;
}

.course span:nth-child(1){
    color: #555;
}

.course span:nth-child(2){
    color: #aaa;
}

.show-all{
    display: block;
    width: 120px;
    margin: 30px auto 100px auto;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    background: #58C667;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
}









.reviews{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/review.PNG);
    //height: 400px;
    padding-top: 40px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
}

.reviews-heading{
    color: #fff;
    max-width: 600px;
}

.reviews-heading h2{
    font-size: 60px;
    font-weight: 300;
    padding-top: 0;
    margin-top: 0;
}

.reviews-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review-container{
    //display: inline-block;
    width: 300px;
    background: #fff;
    padding: 20px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.3);
    margin: 0px 25px 50px 25px;
}

.star-rating{
    margin-bottom: 15px;
}

.star-rating i{
    font-size: 20px;
    transform: rotate(-10deg);
}

.star-rating i:not(.star-inactive){
    color: #FFEA00;
}

.star-inactive{
    color: #E3E3E0;
}

.comment{
    font-weight: 300;
    font-style: italic;
    color: #a8a8a8;
    line-height: 26px;
}

.user-institute{
    margin-top: 50px;
    text-align: right;
}

.user{
    color: #A9DDA1;
    font-size: 20px;
}

.institute{
    font-size: 14px;
    color: #626060;
}

.bullet{
    height: 10px;
    width: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin: auto;
    cursor: pointer;
}







.contact{
    display: flex;
    flex-wrap: wrap;
}

.contact > div{
    height: 400px;
    width: 500px;
    max-width: 100%;
    flex-grow: 1;
}

.startup-image{
    background: url(../img/startup-photos.jpg);
    background-size: cover;
}

.contact-details{
    background: #403B3B;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-heading{
    color: #fff;
    font-size: 40px;
    margin-bottom: 50px;
}

.contact-text{
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-email{
    color: #FD62B5;
    font-size: 28px;
}




.footer{
    padding: 40px 10px;
    text-align: center;
    color: #555;
    font-weight: 300;
}


@media only screen and (max-width:720px){
    body{
    }
    
    .nav-menu{
        display: none;
    }
    
    .hamburger{
        display: block;
    }
    
}