footer {
    background-color: #000;
    padding:40px 16px 42px 16px;
}

footer .container{
    padding: 0;
}

.footer__top{
    display:flex;
}

.footer__logo a{
    display: block;
    width: 48px;
    height: 48px;
}

.footer__logo img{
    width:48px;
    height:48px;
    padding: 0;
}

/* footer nav */
.footer__navigation{
    margin-left: 50px;
    display: flex;
}

.footer__navigation ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 0 6px 0;
    gap: 0;
    padding: 0 20px;
    list-style: none;
}

.footer__navigation .menu li{
    margin: 0 0 5px 0;
    color: rgb(255, 255, 255);
    
}

.footer__navigation__child h2{
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: rgb(255, 255, 255);
    padding-left: 20px;
}

.footer__navigation .menu li a{
    font-size: 14px;
    line-height: 22px;
    color: rgb(255, 255, 255);
}

.footer__navigation .menu li a:hover{
    text-decoration: underline;
    filter: none;
    -webkit-filter: none;
}

/* footer follow */
.footer__follow{
    margin: 2px -3px 0 auto;
}

.footer__follow h2 {
    margin: 0;
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.footer__follow__nav {
    display: flex;
    align-items: center;
}

.footer__follow__nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    gap: 0;
}

.footer__follow__nav li:first-child{
    line-height:24px;
    color: rgb(255, 255, 255);
    width: inherit;
}

.footer__follow__nav li{
    margin-right: 5px;
}

.footer__follow__nav li a{
    width:23px;
    height:23px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    transition: opacity 0.25s ease 0s;
}

.footer__follow__nav .twitter a{
    background: url(/wp-content/themes/master-theme/assets/img/social/twitter-white.svg) no-repeat;
    background-size: cover;
}

.footer__follow__nav .facebook a{
    background: url(/wp-content/themes/master-theme/assets/img/social/facebook-white.svg) no-repeat;
    background-size: cover;
}

.footer__follow__nav .youtube a{
    background: url(/wp-content/themes/master-theme/assets/img/social/youtube-white.svg) no-repeat;
    background-size: cover;
}

.footer__follow__nav .instagram a{
    background: url(/wp-content/themes/master-theme/assets/img/social/instagram-white.svg) no-repeat;
    background-size: cover;
}

.footer__follow__nav .linkedin a{
    background: url(/wp-content/themes/master-theme/assets/img/social/linkedin-white.svg) no-repeat;
    background-size: cover;
}

.footer__follow__nav li a:hover{
    opacity: 0.7;
}

/* footer separator */
footer hr{
    margin: 8px 0 11px 0;
}

/* footer bottom */
.footer__bottom__nav ul{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 10px 0 14px 0;
}

.footer__bottom__nav a{
    color: #fff;
    font-size: 11px;
}

.footer__bottom__nav a:hover{
    text-decoration: underline;
}

/* footer copyright */
.footer__copyright{
    color: #808080;
    font-size: .69em;
    padding-top: 6px;
}

.footer__top, .footer__bottom, .footer__copyright{
    max-width: 1248px;
    margin: 0 auto;
}

/* poopup cookies */
#pop-gdpr a { color: #1890ff; }
#pop-gdpr a:hover { color: #40a9ff; }


/* RESPONSIVE */

@media only screen and (max-width: 925px){

/* footer bottom */
    .footer__bottom__nav ul{
        flex-direction: column;
    }

    .footer__bottom__nav li{
        height: 22px;
    }

}

@media only screen and (max-width: 605px){
    .footer__top{
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer__logo{
        order: 1;
    }

    .footer__navigation__child h2{
        margin-top: 20px;
        padding-left: 0;
    }
    
    .footer__navigation{
        order: 3;
        margin: 0;
        width: 100%;
        justify-content: space-between;
    }

    .footer__navigation ul{
        padding: 0;
        margin-right: 20px;
    }
    
    .footer__follow{
        order: 2;
        align-self: flex-end;
    }

    .footer__follow__nav ul{
        padding: 0;
    }        

}