/* footer */
.footer {
    position: relative;
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer__deti::before {
    content: '';
    display: block;
    width: 550px;
    max-width: 100%;
    height: 259px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(/img/frogs--footer.png) center no-repeat;
    z-index: 1
}

@media (max-width: 768px) {
    .footer__deti::before {
        max-width: 80%;
        background-size: contain;
        background-position: center bottom
    }
}

.footer__deti::after {
    content: '';
    display: block;
    width: 346px;
    height: 640px;
    position: absolute;
    bottom: 0;
    left: 65%;
    background: url(/img/frogs--long.png) center no-repeat;
    z-index: 1;
    opacity: .5;
    max-width: 100%
}

@media (max-width: 1200px) {
    .footer__deti::after {
        left: auto;
        right: 0
    }
}

@media (max-width: 768px) {
    .footer__deti::after {
        display: none
    }
}

.footer-head,
.footer-menu__list{
    display: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 0 10px;
}

.footer-contacts__tel {
    font-size: 30px;
    line-height: 34px;
    color: #77B09D;
}

.footer-contacts__email,
.footer-about__developer {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: #77B09D;
}

.footer-contacts__tel:hover,
.footer-contacts__email:hover,
.footer-about__developer:hover {
    color: #F1CD32;
}

.footer-menu__policy {
    max-width: 800px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 18px;
    color: rgba(135, 152, 165, 0.5);
    text-align: center;
}

.footer-menu__policy p {
    margin: 0 0 20px;
}

.footer-about {
    padding: 28px 0 100px 0;
    text-align: center;
    border-top: 1px solid #eff2f3;
}

.footer-about__copyright {
    margin: 0 20px 12px;
    font-size: 13px;
    line-height: 18px;
    color: #8798A5;
}

.footer__msg {
    margin-right: 20px;
}

@media (min-width: 1024px) {
    .footer-head {
        display: flex;
        align-items: center;
        padding: 80px 0 30px;
    }
    
    .footer__logo {
        margin-right: auto;
    }
    
    .footer-contacts {
        flex-direction: row;
    }
    
    .footer-contacts__tel {
        order: 1;
        white-space: nowrap;
    }
    
    .footer-contacts .social-box {
        margin-bottom: 0;
        margin-right: 100px;
        padding: 0;
    }
    
    .footer-menu {
        display: flex;
        margin: 60px 0 80px;
    }
    
    .footer-menu__list {
        flex-grow: 1;
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-menu__col {
        flex-basis: 33%;
        padding-right: 10px;
    }
    
    .footer-menu__item {
        display: block;
        margin: 0 0 20px;
        font-size: 15px;
        line-height: 21px;
        color: #8798A5;
    }
    
    .footer-menu__item:hover {
        color: #91B83F;
    }
    
    .footer-menu__policy {
        flex-basis: 26%;
        flex-shrink: 0;
        text-align: left;
    }
    
    .footer-about {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 32px 0 100px 0;
    }
    
    .footer-about__copyright,
    .footer-contacts__email,
    .footer-about__developer {
        margin: 0;
    }
    
    .footer-contacts__email {
        position: absolute;
        top: 32px;
        left: 50%;
        transform: translateX(-50%);
    }
}