html,body{
    font-family: "Open Sans", sans-serif;
    image-rendering: -webkit-optimize-contrast;
}
.background{
    background-image: url('../img/banner_mobile.jpg');
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1{
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.logo{
    text-align: center;
}
.wrapper{
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info{
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.50);
    background-blend-mode: overlay;
    backdrop-filter: blur(5px);
    display: inline-block;
}
.info a{
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.content .info{
    height: 48px;
    padding: 7px 30px;
}
.bottom .info{
    height: 51px;
    padding: 11px 30px;
}
a:hover{
    text-decoration: none;
}
.bottom ul li{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
footer{
    background-color: #000;
    color: #fff;
    padding: 25px 10px;
}
footer a, footer a:hover{
    color: #fff;
}
footer p{
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
small{
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}
.semi-bold{
    font-weight: 600;
}


@media only screen and (min-width: 992px){
    .background{
        background-image: url('../img/banner.jpg');
    }
    h1{
        font-size: 64px;
    }
    .with-border > div{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .with-border > div:not(:last-child){
        border-right: 1px solid #fff;
    }
    footer .text{
        padding: 0 9px;
        display: inline-block;
    }
    .bottom{
        background: rgba(0, 0, 0, 0.50);
        background-blend-mode: overlay;
        backdrop-filter: blur(5px);
        border-radius: 50px;
        align-items: center;
        padding: 15px 30px;
    }
    .bottom p{
        color: #fff;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 991px){
    .logo img{
        width: 160px;
    }
}