*{
    margin: 0;
    padding: 0;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.9)), url(images/k.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: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 10px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #6bbcff;
    display: block;
    margin: auto;
    transition: 0.5s ease;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-family: consolas;
    font-size: 14px;
    color: #fff;
}
.more{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.more:hover{
    border: 1px solid #5aa1dc;
    background: #5aa1dc;
  
}
nav .fas{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 22px;
    }
    .text-box p{
            font-size: 14px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: rgba(20, 21, 29, 1);
        height: 100vh;
        width: 180px;
        top: 0;
        right: -180px;
        text-align: center;
        z-index: 2;
        transition: .7s ease;
    }
    nav .fas{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        text-align: left;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}


/*---FOCUS page----*/
.FOCUS{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.col{
    flex-basis: 31%;
    background: #e9f5ff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


/*---campus---*/
.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
}
.cam-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.cam-col img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;

}
.layer:hover{
    background: #e9f5ff;
}
.layer h3{
    width: 100%;
    font-weight: 100%;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 22px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: .5s;
}
.layer:hover h3{
    bottom: 15%;
    opacity: 1;
}


/*---testimonials--*/
.testimonials{
    width: 80%;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding-top: 100px;
}
.tes-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background-color: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.tes-col img{
    height: 70px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius:50% ;
}
.tes-col p{
    padding: 0;
}
.tes-col h3{
    margin-top: 15px;
    text-align: left;
}
.tes-col .fa-solid{
    color: #f44336;
}
.tes-col .fa-regular{
    color: #f44336;
}
@media(max-width: 700px){
    .tes-col img{
    height: 50px;
    margin-left: 0px;
    margin-right: 15px;
    }
    .tes-col{
    padding: 8px;
    }
}

/*---call to action---*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/k.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}

/*---footer---*/
.footer{
    width: 100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px 0;
}
.footer h4{
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa-solid{
    color: #ab7289;
    margin: 0 13px;
    cursor: pointer;
    padding: 10px 0;
}
.icons .fa-brands{
    color: #ab7289;
    margin: 0 13px;
    cursor: pointer;
    padding: 10px 0;
}



/*---about us page---*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.3)),url(images/team.jpg);
    background-position: center;
    background-size: cover;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
    font-size: 80px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 42%;
    padding: 30px 2px;
    font-family: Arial, Helvetica, sans-serif;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.btn{
    border: 1px solid #355e80;
    background: transparent;
    color: #355e80;
    transition: .5s ease;
}
.btn:hover{
    color: #fff;
}
@media(max-width:700px){
    .sub-header h1{
        margin-top: 100px;
        font-size: 40px;
    }
}

/*---VISUALS PAGE---*/
.sub-header1{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.4)),url(images/code1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header1 h1{
    margin-top: 100px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 80px;
}
.visuals{
    padding-top: 100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.visuals h1{
    font-family: consolas;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 900;
}
.box video{
    height: 300px;
    border-radius: 10px;
}


/*---facilities---*/
.facilities{
    width: 80%;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding-top: 100px;
}
.fal-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.fal-col img{
    width: 100%;
    border-radius: 10px;
}
.fal-col p{
    padding: 0;
}
.fal-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

@media(max-width:700px){
    .sub-header1 h1{
        margin-top: 100px;
        font-size: 55px;
    }
    .box video{
        height: 150px;
        border-radius: 10px;
    }
}



/*---CONTACT PAGE---*/
.header1{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.8)), url(images/k.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.container{
    padding: 110px 450px;
}
.box1{
    display: flex; justify-content: center; align-items: center;
    width: 350px;
    height: 50px;
    margin-bottom: 20px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 20px;
    background: linear-gradient(rgba(4,9,30,0.3),rgba(244, 143, 215, 0.5));
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.box1:hover{
    border: 1px solid #f48fd7;
    background: #f48fd7;
}
.box1 a{
    text-decoration: none;
    font-family: consolas;
    font-weight: 600;
    color: #fff;
}
.box1 a .fa-solid{
    width: 70px;
    height: auto;
}
.connav-links{
    flex: 1;
    text-align: right;
}
.connav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 10px;
    position: relative;
}
.connav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}
.connav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #6bbcff;
    display: block;
    margin: auto;
    transition: 0.5s ease;
}
.connav-links ul li:hover::after{
    width: 100%;
}
.con-menu{
    display: none;
}
.bth{
    display: none;
}
@media(max-width:700px){
    .container{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px;
    }
    .box1{
        display: flex; justify-content: center; align-items: center;
        width: 210px;
        height: 30px;
    }
    .contain{
        width: 5px;
        height: 3px;
        color: #fff;
    }
.connav-links ul{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    }
    .connav-links ul li{
        display: block;
        filter: blur(20%);
        padding: 10px 10px;
        min-width: 100px;
    }
    .conmenu:hover .connav-links ul li{
        display: block;
    }
    .bth{
        display: flex;
        justify-content: center;
        transition: .5s ease;
        cursor: pointer;
    }
    .bth:hover{
        color: #6bbcff;

    }
    .bth a{
        color: #fff;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
    }
}



