@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&family=Saira+Stencil+One&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
}

/*header*/

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(assets/img/banner.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

.navlinks {
    flex: 1;
    text-align: right;
}

.navlinks ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.navlinks ul li a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    font-family: 'Saira Stencil One', cursive;
}

.navlinks ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 1s;
}

.navlinks ul li:hover::after {
    width: 100%;
}

.textbox {
    width: 90%;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.textbox h1 {
    font-size: 65px;
}

.textbox p {
    margin: 10px 0 40px;
    font-size: 25px;
    color: #FFF;
    font-family: 'Teko', sans-serif;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid #fff;
    padding: 12px 35px;
    font-family: 'Saira Stencil One', cursive;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1.0s;
    border-radius: 15px;
}

.btn:hover {
    border-radius: 30px;
    border-color: #f44336;
    color: #f44336;
}

#ten {
    text-decoration: none;
}

nav .fa-bars,
.navlinks .fa-times {
    display: none;
}

@media (max-width: 700px) {
    .textbox h1 {
        font-size: 35px;
    }

    .textbox p {
        font-size: 25px;
    }

    .navlinks ul li {
        display: block;
    }

    .navlinks {
        position: absolute;
        background: #f44336;
        width: 200px;
        height: 100vh;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 999;
        transition: 1s;
    }

    .navlinks a {
        transition: 1.0s;
    }

    .btn {
        font-size: 15px;
    }

    .navlinks a:hover {
        background: #fff;
        border-radius: 25px;
        color: #f44336;
        padding: 0 10px;
    }

    nav .fa-bars {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .navlinks .fa-times {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        padding: 10px;
    }

    .navlinks ul {
        padding: 30px;
    }

    .row {
        flex-direction: column;
    }
}

/*Campus*/

.course {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Teko', sans-serif;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

h3 {
    font-family: 'Teko', sans-serif;
    font-size: 30px;
    margin: 10px 0;
    font-weight: 600;
    text-align: center;
}

.row p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
}

.coursecol {
    flex-basis: 30%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.coursecol:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/*Campus*/

.campus {
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'Teko', sans-serif;
    padding-top: 50px;
}

.campuscol {
    flex-basis: 35%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.campuscol img {
    width: 110%;
    background-size: cover;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

.layer {

    background: tansparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
}

.layer:hover {
    background: rgba(226, 0, 0, 0.7);
    cursor: pointer;
}

.ray {
    height: 5px;
    background: #d3d3d3;
    border: none;
    border-radius: 10px;
}

.layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 25px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 1.0s;
}

.layer:hover h3 {
    bottom: 50%;
    opacity: 1;
    font-size: 35px;
}

p {
    font-family: 'Ubuntu', sans-serif;
}

/*Facilities*/

.facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.focol {
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.focol img {
    width: 100%;
    border-radius: 10px;
}

.testm {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testcol {
    flex-basis: 45%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.testcol img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.testcol p {
    padding: 0;
}

.testcol h3 {
    margin-top: 15px;
    text-align: left;
}

#star {
    color: #f44336;
}

.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(assets/img/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h3 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.fa-facebook {
    color: blue;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-instagram {
    color: #ff0099;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-copyright {
    color: black;
    margin-right: 10px;
    margin-left: 5px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-twitter {
    color: blue;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-youtube {
    color: red;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.copy {
    font-size: 20px;
}

.team {
    font-family: 'Teko', sans-serif;
    margin: 15px auto;
    padding: 10px;
    width: 15%;
    border-radius: 20px;
    background: #000;
}

.team ul {
    margin-bottom: 10px;
}

.team ul li {
    list-style-type: none;
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.team h3 {
    color: #fff;
}

@media (max-width: 700px) {
    .team {
        font-family: 'Teko', sans-serif;
        margin: 15px auto;
        padding: 10px;
        width: 25%;
        border-radius: 20px;
        background: #000;
    }
}

/*About*/

.subheader {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(assets/img/background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.subheader h1 {
    margin-top: 100px;
}

.aboutus {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.ac {
    flex-basis: 50%;
    padding: 30px 2px;
}

.ac img {
    width: 100%;
    border-radius: 10px;
}

.ac h1 {
    padding-top: 0;
}

.ac p {
    padding: 15px 0 25px;
}

.r-btn {
    border: 1px solid #f44336;
    color: #f44336;
}

.r-btn:hover {
    background: #f44336;
    color: #fff;
}

.blog {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blogleft {
    flex-basis: 65%;
}

.blogleft img {
    width: 100%;
}

.blogleft h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
    font-family: 'Saira Stencil One', sans-serif;
}

.blogleft p {
    color: #999;
    padding: 0;
}

.blogright {
    flex-basis: 32%;
}

.blogright h3 {
    background: #f44336;
    color: #fff;
    padding: 10px 0;
    font-size: 30px;
    font-family: 'Ubuntu', sans-serif;
}

.blogright div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

.cb {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.cb h3 {
    text-align: left;
}

.form input,
.form textarea {
    padding: 10px;
    width: 100%;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0f0;
    font-family: 'ubuntu', sans-serif;
}

.form button {
    margin: 10px 0;
}

.locate {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.locate iframe {
    width: 100%;
    border-radius: 10px;
}

.contact {
    width: 80%;
    margin: auto;
}

.coc {
    flex-basis: 50%;
    margin-bottom: 30px;
}

.coc div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.coc div #cocl {
    font-size: 30px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.coc div p {
    padding: 0;
}

.coc div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
    font-family: 'Teko', sans-serif;
}

.coc input,
.coc textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    outline: none;
    border: 1px solid #ccc;
}