.locations-content{
    display: flex;
}
.location-side{
    width: 50%;
}
.location-side h1{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.5rem;
}
.location-items{
    display: flex;
    flex-direction: column;
    row-gap: 80px; 
    font-size: 1.2rem;
    width: 80%;
}
.location-item{
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.location-name{
    color: #4D5F5E;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
}
.location-item-content{
    display: flex;
    justify-content: space-between
}
.location-address, .location-phone, .location-mail{
    position: relative;
}
.location-address:after,
.location-phone:after,
.location-mail:after{
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-size: cover;
    left: -35px;
    top: 0;
    filter: brightness(0) saturate(100%) invert(35%) sepia(5%) saturate(1375%) hue-rotate(128deg) brightness(92%) contrast(84%);
}
.location-address:after{
    background-image: url('../img/icon/search-globe.svg');
}
.location-phone:after{
    background-image: url('../img/icon/telephone.svg');
}
.location-mail:after{
    background-image: url('../img/icon/mail-rounded.svg');
}

.contact-form{
    width: 100%;
    padding: 40px 80px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contact-form h1{
    margin: 0 0 10px !important;
}
.contact-form .black-button, .contact-form-content{
    width: 100%;
}
.contact-form-content{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}
.contact-form-content label{
    display: block;
    margin-bottom: 5px;
}
.name-container{
    display: flex;
    column-gap: 20px;
}
.name-container input{
    width: 100%;
}
.contact-form input{
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 20px;
    font-size: 1.2rem;
    width: 100%;
}
.contact-form input#message{
    height: 100px;
}