.locations{
    background: var(--lightGrey);
    padding-top: 120px;
    padding-bottom: 120px;
}

.locations__title{
    max-width: 1152px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}



.locations__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 64px;
}
.locations__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    max-width: 516px;
    width: 100%;
}
.locations__h-title{
    color: var(--textColor);
}

.locations__locations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 20px;
    list-style: none;
}
.locations__headquarters .locations__locations {
    gap: 20px;
}
.locations__location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
    max-width: 158px;
    width: 100%;
}
.locations__headquarters .locations__location {
    max-width: 100%;
}


.locations__map{
    width: 540px;
    height: 460px;
}

@media (max-width: 1152px){
    .locations {
        padding-bottom: 0;
    }
    .locations__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .locations__title,
    .locations__h-title{
        text-align: center;
    }
    .locations__headquarters .locations__location {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .locations__map{
        width: 100%;
        height: 460px;
    }
    
}


@media (max-width: 767px){
    .locations__info {
        max-width: 480px;
        padding-right: 16px;
        padding-left: 16px;
    }
    .locations__locations {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
    }
    .locations__location {
        max-width: 100%;
    }
    .locations__title{
        max-width: 480px;        
    }
    .locations__title,
    .locations__h-title{
        text-align: left;
    }
    .locations__headquarters .locations__location {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }
    .locations__location br {
        display: none

}