@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}
 


header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    max-width: 300px;
    position: relative;
}
.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content{
    position: relative;
    z-index: 1;
    max-width: 550px;
}

.banner .content h2{
    font-weight: bolder;
    font-size: 4em;
    margin-bottom: 20px;
    color: #3831a4;
}

.banner .content p{
    font-size: 1.5em;
    color: #4753a5;
    font-weight: 800;
    text-align: left;
    line-height: 40px;
    width: 450px;
    margin: 10px 0 20px;
}
.content a{
    text-decoration: none;
}

.banner .content p a{
    color: #1d30b1;
    font-size: 1.1em;
    font-weight: 800;
}
@media(max-width:991px){
    header{
        padding: 20px 50px;
    }
   .banner{
    padding: 100px 50px;
   }
}

@media(max-width:400px){
    .banner .bg {
        width: 105%;
        height: 100%;
        object-fit: cover;
}
     
    .banner .content h2 {
        font-size: 3em;  
    }
    
    .banner .content p {
        font-size: 1.3em;
        color: #2336b3;
        max-width: 300px;
        }
        
}
