@import url('https://fonts.googleais.com/css?family=Poppis:200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppis', sans-serif;
}
.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
#bane2{
    opacity: 0;
}
.banner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.banner .content{
    position: relative;
    max-width: 750px;
    text-align: center;

}
.banner .content h2{
    color: #fff;
    font-size: 60px;

}
.banner .content p{
    color: #fff;
    font-size: 18px;
    
}
.banner header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;   
}
.banner header .logo{
    color: #fff;
    text-decoration:none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.banner header .toggle
{
    position: relative;
    width: 36px;
    height: 28px;
    background: url(../img/toggle.png);
    background-size: cover;
    cursor: pointer;
}
.about{
    text-align: center;
    position: relative;
    width: 100%;
    display: flex;
}
.about .contentBx{
    background: #042550;
    padding: 100px;
    width: 100%;
}
.heading{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.text{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;
}
.about .imgBx{
    width: 50%;
    background-size: cover;
    background-position: center;
}


.footer{
    background: #162c3b;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer ul li {
    list-style: none;
}
.footer ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
}
.footer ul li a img{
    filter:invert(1);
    max-width: 20px;

}
@media(max-width:600px){
    #bane{
        display: none;
    }
    #bane2{
        opacity: 1;
    }
}
@media(max-width:400px){
    .banner{
        padding: 50px;
    }
   
    
    .banner header{
        padding: 20px 50px;
    }
    .banner .content h2{
        font-size: 36px;
    }
    .banner .content p {
        
        font-size: 16px;
    }
    .about{
        flex-direction: column;
    }
    .about .contentBx,
    .about .imgBx{
        width: 100%;
        padding: 50px;
        min-height: 400px;
        text-align: center;
    }
    
    .footer{
        padding: 20px 50px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .footer ul{
        margin-bottom: 20px;
    }
}