.foot {
    background-image: url('img/foot-bg.jpg');
    background-size: cover;
    background-position: center center;
    width: 100%;
    margin: 0;
    position: relative;
}
#ask-admins {
    position: absolute;
    bottom: 13px;
    right: 22px;
    text-transform: uppercase;
    color: white;
    border-bottom: 1px solid white;
    font-size: 14px;
    padding-left: 25px;
    background-image: url('../symbols/tg-white.png');
    background-repeat: no-repeat;
    background-size: contain;
    
}
.foot-container {
    margin: 0 auto;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.foot-container > h2 {
    color: white;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
}
.foot-container > nav {
    display: flex;
    flex-direction: column;
}
.foot-container > nav > a {
    color: white;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
}
.foot-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.foot-links > a {
    padding-left: 60px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 15px;
}
.foot-tel {
    background-image: url('../symbols/mobile-white.png');
}
.foot-telegram {
    background-image: url('../symbols/tg-white.png');
}
.foot-whatsApp {
    background-image: url('../symbols/whatsApp-white.png');
}
.foot-mail {
    background-image: url('../symbols/mail-white.png');
}
@media(min-width:430px) {
    .foot {
        height: 300px;
    }  
}
@media(min-width:806px) {
    .foot-container {
        width: 80%;
    }
}
@media(min-width:651px) and(max-width:805px) {
    .foot-container {
        width: 94%;
    }
}
@media(min-width:430px) and (max-width:650px) {
    .foot-container {
        flex-wrap: wrap;
        width: 90%;
    }
    .foot-container > h2 {
        flex: 95%;
        text-align: center;
        margin: 10px auto;
    }
    .foot-container > nav {
        flex: 0 30%;
    }
    .foot-container > section {
        flex: 0 65%;
    }
}
@media(max-width:429px) {
    .foot {
        height: 600px;
    } 
    .foot-container {
        flex-direction: column;
        width: 90%;
    }
}