.main-banner{
    display: flex;
    justify-content: center;
    background-color: #011638;
    padding-top: 20px;

}

.main-banner .banner{
    display: flex;
    justify-content: center;   
    height: 500px; 
    width: 100%;
    flex-direction: column;    
    align-items: center;

}

.main-banner .banner figcaption{
    margin-top: 20px;
    font-weight: 400;
    font-size: 30px;
    color: #d8e5fa;
    text-align: center;
    display: none;
}

.main-banner .banner .mobile{
    display: none;
}


.main-banner .banner img{
    height: 600px; 
    transform: translateY(20px);
}

@media (max-width: 980px) {
    .main-banner .banner{
        height: 100%;
        padding-bottom: 50px;
    }
    .main-banner .banner figcaption{
        display: inline;
    }    
    
    .main-banner .banner img{
        height: 100%;
        width: 100%;
    }

    .main-banner .banner .mobile{
        display: inline;
    }    

    .main-banner .banner .desktop{
        display: none;
    }    
}