.contact-wrapper {
    background: #fff;
    display: grid;
    grid-template-columns: 370px 1fr;
    overflow: hidden;
    border-radius: 6px;
}

.contact-info {
    padding: 20px;
}

.contact-info h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 5px;
    margin-bottom: 16px;
}

.contact-info-item:first-child,
.contact-info-item:last-child {
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 16px;
}

.contact-info-item-icon {
    width: 22px;
    height: 22px;
}

.contact-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 22px;
}

.contact-info-item-content p {
    margin-bottom: 0;
}

.contact-info-item-content .made-btn {
    margin-top: 12px;   
}

.contact-info-item-content-help {
    color: #9E9E9E;
    font-size: 12px;
    margin-bottom: 0;
}

.contact-info-item-content-link {
    display: block;
    line-height: 130%;
    margin-bottom: 4px;
    text-decoration: underline !important;
    color: #000;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.contact-socials > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: #EFEFEF;
}

.contact-socials > a img {
    width: 20px;
    height: 20px;
}

.stores-map {
    height: 820px;
    z-index: 3;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 100%;
    }

    .contact-info {
        padding: 16px;
    }

    .contact-info h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-info-item h3 {
        font-size: 14px;
    }

    .stores-map {
        height: 460px;
    }
}