/* footer content */
.footer {
    height: auto;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.footer_nav_menu_block {
    margin-top: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_menu_link {
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    text-align: center;
}

.footer_menu_link:not(:last-child) {
    margin-right: 125px;
}

.footer_container {
    display: flex;
    margin-top: 80px;
    position: relative;
}

@media (max-width: 1070px) {
    .footer_menu_link:not(:last-child) {
        margin-right: 100px;
    }
}

@media (min-width: 360px) and (max-width: 1025px) {
    .footer_nav_menu_block {
        justify-content: center;
    }

    .footer_menu_link {
        flex-basis: 33.33%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer_menu_link:nth-child(5) {
        order: -1;
        flex-basis: 100%;
    }

    .footer_menu_link:not(:last-child) {
        margin-right: 10px;
    }
}

@media (min-width: 360px) and (max-width: 420px) {
    .footer_nav_menu_block {
        width: 340px;
    }
}

.menu_icon {
    display: block;
    margin: 0 auto;
}

.menu_text {
    display: block;
    padding-top: 21px;
}

.line_footer {
    width: 1310px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 59px;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .line_footer {
        display: none;
    }
}

.block_footer_image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 93px;
}

.block_txt_footer {
    display: flex;
    text-align: center;
    margin-top: 89px;
    font-size: .5em;
    line-height: 1em;
    font-family: sans-serif;
}

.txt_footer {
    color: #ffffff;
}

.txt_footer_terms {
    color: #ffffff;
    padding-left: 5px;
}

.privacy_link,
.terms_link {
    color: #f5cb47;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .block_txt_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 44px;
    }

    .block_txt_footer p {
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        align-items: center;
    }

    .footer_menu_link {
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Adjust styling for medium-sized screens */
}

@media (min-width: 1025px) {
    .active-footer {
        border-bottom: 3px solid yellow;
        position: relative;
    }
}
