.banner-top{
    display: block;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 992px){
    .banner-top{
        background-image: none !important;
    }
}
@media (min-width: 992px){
    .banner-top-mobile{
        display: none;
    }
    .banner-top{
        min-height: 800px;
    }
    .banner-title-wrap{
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        left: 55%;
        right: 0;
        width: 45%;
        z-index: 1;
    }
}
.banner-title{
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    color: var(--pink);
    margin: 0;
    padding: 30px;
    text-align: center;
}
@media (min-width: 992px){
    .banner-title{
        font-size: 50px;
        color: #fff;
        text-shadow: 0 2px 2px rgba(0, 0, 0, .1);
        text-align: left;
        padding: 0;
    }
    .banner-subtitle-wrap{
        position: absolute;
        left: 0;
        width: 100%;
        top: 80%;
        z-index: 1;
    }
}
@media (min-width: 1200px){
    .banner-title{
        font-size: 60px;
    }
}
.banner-subtitle{
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    color: #000;
    margin: 0;
    padding: 15px;
}
@media (min-width: 992px){
    .banner-subtitle{
        font-size: 28px;
        font-weight: 300;
        text-align: center;
        color: #fff;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 1200px){
    .banner-subtitle{
        font-size: 30px;
    }
}
/* footer
/* ------------------------ */
@media (min-width: 992px){
    #footer{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }
}
#footer .footer-text{
    font-size: 12px;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}
#footer .footer-text a{
    color: #000;
    transition: all .2s ease-in-out;
}
#footer .footer-text a:hover{
    color: --var(--pink)
}
@media (min-width: 992px){
    #footer .footer-text{
        color: #fff;
    }
    #footer .footer-text a{
        color: #fff;
    }
}
