.container{
    width: 80%;
    margin: 0 auto;
}

.wrapper{
    width: 100%;
    background: no-repeat center url("img/back.jpeg");
    background-size: cover;
    font-family: sans-serif;
}

header{
    display: flex;
    justify-content: center;
}

.header_img{
    margin: 0 auto;
    max-width: 100%;
}

.header_picture{
    width: auto;
    max-width: 100%;
}

.banner_wrapper{
    display: flex;
    justify-content: center;
}

.banner_mobile{
    display: none;
}

.banner_img{
    cursor: pointer;
    border-radius: 25px;
    border: 15px solid transparent;
    transition: all .2s ease-in-out;
    width: 100%;
    height: 100%;
}

.banner_img:hover{
    border: 15px solid #D3219E;
}

footer{
    margin-top: 50px;
    background-color: #11061B;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.limit{
    width: 55px;
    height: 55px;
    fill: #cd4444;
    margin-bottom: 5px;
}

.footer_item_title{
    color: #CD4237;
    font-weight: bold;
}

.footer_item_text{
    color: #CCC;
    position: relative;
    margin-top: 10px;
}

.footer_item_text::before{
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 8px;
    height: 8px;
    background-color: #cd4444;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.copyright{
    width: 20%;
    color: #FFF;
    font-weight: 700;
}

.footer_item{
    width: 35%;
}

.footer_item, .copyright{
    margin: 10px 0;
}

@media (max-width: 768px) {
    .banner_desktop{
        display: none;
    }
    .banner_mobile{
        display: block;
    }

    .footer_item{
        width: 100%;
    }
    .copyright{
        width: 100%;
    }
}
