body{
    font-family: 'Rubik', sans-serif;
    background-color: #EEE;
}

.header{
    background: url(/img/bg-1.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    color:#FFF;
}

.header::before{
    position: absolute;
    top:0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #214666;
    opacity: 0.5;
}

.header__link, .header__link:hover{
    color: #FFFFFF;
    z-index: 1;
}

.header__title{
    font-weight: 500;
}

.header__p{
    font-size: 1.5rem;
}

.request-form{
    background-color: #454545;
    opacity: 0.8;
}

.request-form__input{
    height: 60px;
}

.request-form__file{
    height: 60px;
    padding: 1.2rem .75rem;
}

.request-form__file::after{
    content: '+' !important;
    height: 100%;
    padding: 1rem 1.3rem;
    background-color: #4fb8bc;
}

.request-form__text{
    padding: 1.2rem .75rem;
}

.header__arrow{
    min-height: 10vh;
    font-size: 50px;
    opacity: 0.5;
    position: relative;
    bottom: 15px;
    animation: bounce 0.6s linear infinite alternate;
}

.header__arrow a{
    color: #d4d4d4;
    cursor: pointer;
}

.note{
    background-color: #c2d9ef;
}

.note__icon{
    font-size: 70px;
    color: #498dd9;
}

.note__p{
    color: #464646;
}

.note__span{
    color: #4a7dbc;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
}

.models__img{
    background-color: #c2d9ef;
    border:1px solid #4a7dbb;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact__icon{
    color: #4a7dbc;
    padding: 10px;
    font-size: 70px;
}

.ban__text{
    margin: 0;
}

.ban__text_light{
    margin: 0;
}

.ban__text-block{
    padding:10px 0;
}

.footer{
    background-color: #464646;
    color: #fff;
}

@media (min-width: 769px) {
    .ban__text{
        font-size: 1.5rem;
    }
}

@media (max-width: 359px) {
    body{
        font-size: 14px;
    }
    .header__title{
        font-size: 35px;
    }
    .header__p{
        font-size: 20px;
    }
}


