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

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

.header{
    min-height: 100vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background.jpg);
    background-size:cover;
    background-position: center;
    position:relative;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 2% 4%;
    align-items: center;
}

nav .fas{
    display:none;
}

.nav-links{
    flex: 1;
    text-align: right;
}

nav a {
    font-size: 25px;
    color: white;
    text-align: center;
    text-decoration: none;

}

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

.nav-links ul li a{
    color: white;
    text-decoration:none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.navStyle .nav-links ul li a{
    color: #fff;
    text-decoration:none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}


.nav-links ul li ::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover ::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
}

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

.text-box h1{
    font-size:62px;
}

.text-box p{
    margin:10px 0 40px;
    font-size:14px;
    color: #fff;
}

.text-box a{
    color: #fff;
}

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

.hero-btn:hover{
    border:1px solid #f44336;
    background: #f44336;
    transition: 0.7s;
}

@media only screen and (max-width:730px){
    .text-box h1{
        font-size:20px;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100%;
        top:0;
        right:-250px;
        width:200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }


    nav .fas{
        display: block;
        color: #fff;
        margin: 10px;
        font-size:22px;
        cursor:pointer;
    }
    
    .nav-links ul{
        padding:30px;
    }
}

.course{
    width:80%;
    border-top: 1px solid rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(0,0,0,0.6);

    margin:auto;
    padding-top:100px;
    text-align:center;
}

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

p{
    color: rgb(31, 30, 30);
    font-size:14px;
    font-weight: 300;
    font-weight: bold;
    line-height: 22px;
    padding:10px;
}

.row{
    display:flex;
    margin-top:6%;
    justify-content: space-between;   
}


/* for Simulator page  */
.well .row{
    margin-top: 0;
}

.course-colomn{
    flex-basis: 31%;
    background: #8AAAE5;
    border-radius: 10px;
    margin-bottom:5%;
    padding:20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

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

.course-colomn:hover{
    box-shadow:0 0 20px 0px rgba(0,0,0,0.6);
}

@media only screen and (max-width:730px){
    .row{
        flex-direction: column;
    }
}

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

}

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

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

.layer{
    height: 100%;
    width: 100%;
    top:0;
    left: 0;
    position:absolute;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(226,0,0,0.7);
}

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

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

.facilities{
    width: 80%;
    border-bottom: 1px solid rgba(0,0,0,0.6);
    border-top: 1px solid rgba(0,0,0,0.6); 
    margin: auto;
    text-align: center;
    padding-top:100px;
}

.facilities-column{
    flex-basis:28%;
    border-radius:10px;
    margin-bottom:5%;
    text-align: left;

}

.facilities-column img{
    width: 100%;
    border:2px solid rgb(255, 255, 255);
    border-radius: 10px;
}

.facilities-column p{
    padding:0;
}

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


@media only screen and (max-width:730px){
    .cta h1{
        font-size:25px;
    }
}

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

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

.footer{
    width:100%;
    text-align:center;
    padding:30px 0;
}

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

.icons .fab{
    color: #f44336;
    margin:5px 13px;
    cursor:pointer;
    padding:10px 0;
    font-size:25px;
}

.far {
    color:#f44336
}

.sub-header{
    height:50vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/header-banner.jpg);
    background-position: center;
    background-size: cover;
    text-align:center;
    color: #fff;
}

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

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

.about-column{
    flex-basis: 48%;
    padding:30px 2px;
}

.about-column img{
    width: 100%;
}

.about-column h1{
    padding:0;
}

.about-column p{
    padding: 15px 0 25px;
}

.red-btn{
    border:1px solid #f44336;
    background: transparent;
    color:#f44336
}

.red-btn:hover{
    color:#fff;
}


@media only screen and (max-width:730px){
    .sub-header h1{
        font-size: 24px;
    }
}

.container_1{
    text-align: center;
    background:#fff;
}

.header_1{
    padding-top: 60px;
    color: #444;
    font-size: 20px;
    margin:auto;
    line-height: 50px;
}

.sub_container{
    max-width: 1200px;
    margin:auto;
    padding: 46px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.teams{
    margin:10px;
    box-sizing: border-box;
    transition: 0.4s;
    cursor: pointer;
    padding: 22px;
    border: 1px solid rgb(202, 200, 200);
    max-width: 30%;
}


.teams:hover{ 
    background: rgb(202, 200, 200);
    box-shadow: 0 0 20px 0px rgba(13, 14, 13, 0.644);
    transition: 0.7s;
}

.teams img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.name{
    padding:5px;
    font-size: 20px;
    color: #f44336;
    /* text-transform: uppercase; */
}

.desig{
    font-style: italic;
    color:rgb(97, 78, 78);
    margin: 12px 0;
    font-weight: lighter;
    /* color:#b18a50 */
}

.social-links_1{
    margin: 14px;
}

.social-links_1 a{
    display: inline-block;
    height: 30px;
    width: 30px;
    transition: 0.4s;
}

.social-links_1 a i{
    color: #f44336;
    /* color: #444; */
}


@media screen and (max-width:600px){
    .teams{
        max-width: 100%;
    }
}

.contact-us h1{
    text-align: center;
    color:#444;
}

.btn_1:hover{
    /* border:1px solid #f44336; */
    background: #ca321e;
    color: white;
    transition: 0.7s;
    /* border: 1px solid white; */
    border-radius: 20px;
}

.btn_1{
    width: 200px;
    height: 35px;
    background-color: #6674CC;
    color: white;
    border-radius: 20px;
    vertical-align: middle;
    border: 1px solid white;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* for the run button */
.runButton{
    background-color: #4caf50; 
    color:aliceblue; 
    /* margin-top:2px; */
    height: 35px; 
    margin-right: 70px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px solid rgb(199, 14, 14) !important;
}


