.contact--form--container {
    display: flex;
    gap: 15px;
}

.contact--form--container .contact--location, .contact--form--container .blog--consultation--form {
    width: 50%;
}

.contact--form--container .blog--consultation--form {
    background: #F2F2F2;
    padding: 30px;
    border-radius: 20px;
}

.contact--form--container .contact--location {
    padding: 20px;
    padding-left: 0;
}

.contact--form--container .contact--location h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
}

.contact--form--container .contact--location .locations--list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact--form--container .contact--location .locations--list .location--item {
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact--form--container .contact--location .locations--list .location--item .location--item--icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF8FF;
    border-radius: 10px;
}

.contact--form--container .contact--location .locations--list .location--item .location--item--icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.contact--form--container .contact--location .locations--list .location--item .location--item--content .location--heading {
    display: block;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.contact--form--container .contact--location .locations--list .location--item .location--item--content .location--info {
    color: #6F6F6F;
    text-decoration: none;
}

.contact--form--container .contact--location .locations--list .location--item .location--item--content {
    flex: 1;
}

.contact--form--container .blog--consultation--form h3 {
    font-size: 20px;
    color: var(--black);
    font-family: "Anton", sans-serif;
    font-weight: 400;
}

.contact--form--container .blog--consultation--form .inner--form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.contact--form--container .blog--consultation--form .inner--form .form--fields:last-child {
    grid-column: 1 / 3;
}

.contact--form--container .blog--consultation--form .submit--consultation--btn button {
    width: 100%;
    justify-content: center;
}

.contact--form--container .blog--consultation--form .inner--form label {
    color: var(--black);
    font-size: 14px;
}

.contact--form--container .blog--consultation--form .inner--form input, .contact--form--container .blog--consultation--form .inner--form textarea {
    min-height: 40px;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px;
}

@media(max-width:768px){
    .contact--form--container {
        flex-direction: column;
    }

    .contact--form--container .contact--location, .contact--form--container .blog--consultation--form {
        width: 100%;
    }

    .contact--form--container .blog--consultation--form .inner--form {
        grid-template-columns: 1fr;
    }

    .contact--form--container .blog--consultation--form .inner--form .form--fields:last-child {
        grid-column: auto;
    }

    .contact--form--container .contact--location {
        padding: 0;
    }

    .contact--form--container .blog--consultation--form {
        padding: 30px 15px;
    }

    .contact--form--container .contact--location .locations--list .location--item .location--item--icon img {
        width: 33px;
        height: 33px;
    }

    .contact--form--container .contact--location .locations--list .location--item .location--item--icon {
        width: 60px;
        height: 60px;
    }

    .contact--form--container .contact--location .locations--list .location--item {gap: 10px;}

    .contact--form--container .contact--location .locations--list .location--item .location--item--content .location--heading, .contact--form--container .contact--location .locations--list .location--item .location--item--content .location--info {
        font-size: 14px;
    }

    .contact--form--container .contact--location .locations--list {
        gap: 10px;
    }
}