/* dev only -> */

/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/

/*html {*/
/*    width: 100%;*/
/*}*/

/*body {*/
/*    width: 100%;*/
/*}*/

/* ^ dev only ^ */



footer.row {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    border-top: .5px #C4C4C4 solid;
    padding: 70px 0;
    font-family: 'Rubik', sans-serif;
    max-height: 500px;
    height: 100%;
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .footer-contact {
    width: 45%;
    max-width: 540px;
    position: relative;
    padding-right: 40px;
}

footer .footer-contact::after {
    display: block;
    content: '';
    width: 3px;
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    background-color: #EBEBEB;
    border-radius: 10px;
}

footer .footer-nav {
    width: 100%;
}

footer .footer-contact>img {
    margin-bottom: 50px;
}

footer .footer-contact a {
    display: block;
    text-decoration: none;
    color: #404040;
    font-weight: 400;
    font-size: 18px;
}

footer .footer-contact .social-media {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}

footer .footer-contact .social-media a {
    margin-right: 15px;
}

footer .footer-contact .social-media img {
    width: 80%;
}

footer .footer-contact .social-media a:last-child {
    margin: 0;
}

footer .footer-nav {
    padding: 0;
    padding-left: 40px;
}

footer .footer-nav .menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: space-around;
    flex-wrap: wrap;
    max-height: 400px;
    z-index: -1;
}

footer .footer-nav .menu li {
    font-size: 24px;
    font-weight: 500;
    color: #404040;
    width: 100%;
    max-width: 230px;
    margin-right: 20px;
    /*margin-bottom: -10px;*/
}

footer .footer-nav .menu li .sub-menu a {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #404040;
}

footer .footer-nav .menu li .sub-menu { 
    padding-bottom: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;
 }

/* footer .footer-nav .menu li ul.sub-menu::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 130px;
    height: 3px;
    background-color: #F1F5F9;
    border-radius: 3px;
} */

footer .footer-nav .menu .sub-menu li {
    /*margin-bottom: -12px;*/
}

footer .footer-nav ul {
    list-style: none;
}

@media (max-width: 985px) {

    footer.row {
        width: 100%;
        max-height: none;
        height: max-content;
    }

    footer .container {
        flex-direction: column;
        height: max-content;
    }

    footer .footer-contact::after {
        /* display: none; */
        width: 60%;
        height: 3px;
        top: 100%;
        left: 20%;
    }

    footer .footer-contact {
        padding-right: 40px;
        padding-left: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
        width: 100%;
        height: 100%;
    }

    footer .footer-nav {
        max-height: none;
        height: max-content;
    }

    footer .footer-nav>div {
        max-height: none;
        height: 100%;
        block-size: fit-content;
    }

    footer .footer-nav .menu {
        flex-wrap: nowrap;
        max-height: none;
        height: auto;
    }

    footer .footer-nav_content { padding: 0 0; }

    footer .footer-nav .menu li { margin-bottom: 20px; }

    footer .footer-nav .menu li a { position: relative; font-size: 28px; }

    footer .footer-nav .menu li a::after {
        position: absolute;
        transform: translate(0, 50%);
        right: -40px;
        top: 45%;
        content: '';
        display: inline-block;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 13px 11px 0 11px;
        border-color: #404040 transparent transparent transparent;
        transform: rotate(0deg);
        border-radius: 10px;
        transition: .25s ease-out;
    }

    footer .footer-nav .menu li.active a::after {
        transform: rotate(180deg);
    }

    footer .footer-nav .sub-menu li a::after { display: none; }

    footer .footer-nav .sub-menu {
        display: none;
    }

    footer .footer-nav .menu li.active .sub-menu {
        display: block;
    }

    footer .footer-nav .menu li .sub-menu {
        margin-bottom: 15px;
    }

}