.mobile-header{
    width: 100%; height: 300px;
    margin: 0;
    color: #f5f9fa; background-color: #1a1d1f;
    position: relative;
    background-image: url('../../images/banner-small.webp'); background-repeat: no-repeat; background-position: top center; background-size: 100% ;
    display: none;
    z-index: 1;
}

.mobile-header .logo-container{
    width: 50%;
    min-width: 150px;
    max-width: 190px;
    height: auto;
    position: absolute;
    top: 10px;
    left: 10px;
}

.mobile-header .logo-container .logo{
    width: 100%; height: auto;
    margin: 0;
}

.mobile-header .title-container {
    width: 100%; height: auto;
    padding: 0 10px; box-sizing: border-box;
    position: absolute; top:25%;
    text-align: center;
}

.mobile-header .title-container .title{
    font-family: 'Roboto',sans-serif; font-size: 36px; font-weight: 400;
    color: #e9e9f2;
}

@media screen and (max-width: 630px) {
    .mobile-header{
        display: block;
    }

    .mobile-header .title-container .title{
        font-size: 32px; 
    }
    
}

@media screen and (max-width: 460px) {
    .mobile-header{
        height: 250px;
    }

    .mobile-header .title-container {
        top:30%;
    }

    .mobile-header .title-container .title{
        font-size: 22px; 
    }

    .mobile-header .title-container .description{
        font-size:18px; 
    }
    
    
}