.location {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;

    max-width: 1920px;
    padding: 150px 250px;
    margin: 0 auto;

    background-color: var(--black);
}

.location .location-left {
    display: flex;
    flex-direction: column;
    width: 450px;

    padding: 50px 0;
}

.location .location-left hr {
    border-color: var(--white);
}

.location .location-left .title {
    color: var(--white);
}

.location .location-left .subtitle {
    font-size: 14px;
    font-weight: 300;
    font-style: oblique;
    color: var(--white);

    margin-bottom: 35px;
}

.location .location-left .description {
    text-align: justify;
    color: var(--white);
    margin-bottom: 35px;
}

.location .location-left .group-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location .location-left .group-contact a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--white);

    cursor: pointer;
}

.location .location-left .group-contact a:hover {
    color: var(--yellow);
}

.location .location-left .group-contact a i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    font-size: 18px;
    color: var(--white);

    background-color: var(--blue);
    border-radius: 10px;
}

.location .location-left .group-contact a:hover i {
    background-color: var(--yellow);
}

.location .location-right {
    display: flex;
    justify-content: center;
    flex-direction: column;

    padding: 50px;

    overflow: hidden;
    border-radius: 10px;
    background-color: var(--blue);
}

.location .location-right hr {
    border-color: var(--white);
}

.location .location-right .title {
    color: var(--white);
}

.location .location-right .subtitle {
    font-size: 14px;
    font-weight: 300;
    font-style: oblique;
    color: var(--white);

    margin-bottom: 35px;
}

.location .location-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;

    width: 525px;
}

.location .location-right form textarea {
    height: 250px;
}

.location .location-right form .group-btn {
    align-self: flex-end;
    margin-top: 20px;
}

@media only screen and (max-width: 1700px) {
    .location {
        padding: 150px;
    }
}

@media only screen and (max-width: 1450px) {
    .location .location-left {
        width: 350px;
    }

    .location .location-right form {
        width: 400px;
    }
}

@media only screen and (max-width: 1225px) {
    .location {
        justify-content: center;
        flex-direction: column;
    }

    .location .location-left {
        width: 100%;
    }

    .location .location-right {
        width: 100%;
    }

    .location .location-right form {
        width: 100%;
    }
}

@media only screen and (max-width: 1050px) {
    .location {
        padding: 150px 100px;
    }
}

@media only screen and (max-width: 768px) {
    .location {
        padding: 100px 30px;
    }

    .location .location-left {
        align-items: center;
        width: 100%;
    }

    .location .location-left .title {
        text-align: center;
    }

    .location .location-right {
        align-items: center;
    }

    .location .location-right .title,
    .location .location-right .subtitle {
        text-align: center;
    }

    .location .location-right form .group-btn {
        align-self: center;
    }
}