.footer {
    background-color: var(--footer-bg);
    padding: var(--padding-body);
    border-top: 1px solid var(--main-color);
}

.footer_body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-iems: center;
}

.footer_navs {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    text-align: start;
}

.footer_logo_block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.footer_logo, .created_logo {
    cursor: pointer;
    transition: var(--trans);
}

.footer_logo:hover, .created_logo:hover {
    scale: 1.03;
}

.footer_promo {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 200;
    text-align: center;
}

.footer_nav, .footer_socials {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: start;
}

.footer_title {
    margin: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
    width: 100%;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 400;
}

.footer_icon_div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.footer_sicon {
    margin-inline-end: 10px;
}

.footer_link {
    outline: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--main-color);
    transition: var(--trans);
}

.footer_slink {
    outline: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 200;
    color: var(--main-color);
    transition: var(--trans);
}

.footer_link:hover, .footer_slink:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

.footer_meta {
    font-size: 11px;
    font-weight: 200;
    color: var(--main-color);
    margin: 0;
    text-align: start;
    margin-bottom: 10px;
}

.footer_dev_block {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin-bottom: 20px;
}

/**/
.footer_promo_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 5px 0;
    border-top: 1px solid var(--main-color);
    align-items: center;
}

.footer_copyright {
    margin: 0;
    font-size: 14px;
    color: var(--light-text-color);
    font-weight: 200;
    margin-inline-end: 10px;
}

.footer_policy {
    color: var(--light-text-color);
    font-weight: 200;
    font-size: 16px;
    text-decoration: none;
    transition: var(--trans);
    text-align: end;
}

.footer_policy:hover {
    color: var(--hover-color);
    text-decoration: underline;

}

@media only screen and (max-width: 1440px) {
    .footer_nav, .footer_socials {
        width: 200px;
    }

    .footer_logo {
        width: 230px;
        height: 45px
    }
}

@media only screen and (max-width: 1024px) {
    .footer_navs {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-auto-flow: row;
    }
}

@media only screen and (max-width: 860px) {
    .footer_navs {
        grid-template-columns: repeat(2, auto);
    }

    .footer_nav, .footer_socials {
        width: 300px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 760px) {
    .footer_nav, .footer_socials {
        width: 250px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 640px) {
    .footer_navs {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        text-align: start;
    }

    .footer_logo {
        width: 250px;
        height: 50px
    }

    .footer_logo_block {
        margin-bottom: 30px;
    }

    .footer_nav, .footer_socials {
        width: calc(100% - 20px);
        margin-bottom: 30px;
    }
}