footer{
    background : #1D1D1D;
    color: #fff;
    padding-top: 40px;
}
footer .hours,
footer .address,
footer .phone{
    display: flex;
    margin: 30px 0;
}
footer .text_wrap{
    display: flex;
    flex-direction: column;
    line-height: 170%;
}
footer .text_wrap p{
    margin: 0;
}
footer .footer_title{
    font-weight: 600;
    text-transform: uppercase;
}
footer a.logo{
    display: inline-block;
}
footer .socials{
    display: flex;
    margin-bottom: 40px;
}
footer .socials a{
    display: flex;
    margin: -40px 15px 0 0;
    width : 40px;
    height : 40px;
    border-radius: 50%;
    overflow: hidden;
}
footer .socials a svg {
    transition: all .2s linear;
    width : 100%;
    fill: var(--wp--preset--color--brand-1);
}
footer .socials a:hover svg {
    fill: var(--wp--preset--color--brand-1-dark);
}
footer .container{
    display: flex;
    flex-direction: column;
}
footer h6{
    margin: 40px 0 30px;
}
footer .column_title h6{
    margin: 0;
}
footer .footer_column{
    margin: 30px 0;
}
footer .footer_column .column_title{
    border-bottom: 1px solid var(--wp--preset--color--brand-1);
    height: 120px;
}
footer .about_company_text {
    margin-top: 20px;
}
footer .about_company_text b{
    font-weight: 600;
}
footer .footer_links {
    margin-top: 20px;
}
footer .footer_links a{
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .icon{
    fill: var(--wp--preset--color--brand-1);
    width: 29px;
    margin-right: 30px;
    height: 36px;
}
footer .address,
footer .email,
footer .website,
footer .phone{
    display: flex;
    margin-top: 20px;
}
footer .address p{
    margin: 0;
}
footer a{
    color: #fff;
}

.copyright_wrap{
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    padding: 6px 0;
}
.copyright_wrap .container{
    justify-content: center;
    align-items: center;
}
.map_wrap{
    aspect-ratio: 1;
}
.map_wrap :is(img, #map){
    width : 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.map_wrap .barbershops_map {
	height : 400px;
}
@media(min-width: 768px){
    .map_wrap{
        aspect-ratio: inherit;
    }
}
@media(min-width: 1025px){
    footer .container.footer_content{
        display: grid;
        /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
        grid-gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    footer{
        padding-top: 0;
    }
    footer .container{
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
    }
    .copyright_wrap .container{
        justify-content: center;
    }
    footer .footer_column{
        min-width : 480px;
        margin: 40px 0;
        height: calc(100% - 80px);
    }
    footer .footer_column.col_1{
        grid-column: 1/3;
    }
    footer .footer_column.col_2{
        grid-column: 4/6;
        display: flex;
        align-items: flex-end;
    }
    footer .socials {
        flex-direction: column;
        margin-right: 25px;
    }
    footer .socials a {
        display : flex;
        margin  : 15px 15px 0 0;
    }
    .map_wrap{
        width : calc(100% - 80px);
        height: 100%;
    }

}
@media(min-width: 1480px){
    footer .footer_column{
        min-width : 480px;
    }
    footer .footer_column.col_1{
        grid-column: span 3;
    }
    footer .footer_column.col_2{
        grid-column: span 4;
    }
}


