.contact-block {
    margin-bottom: 40px;
}
.contact-block .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-block .info-holder {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.contact-block .info-item {
    border-radius: 10px;
    background: var(--bg-primary-main);
    display: flex;
    padding: 30px;
    flex-direction: column;
}
.contact-block .item-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-block .info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 5px;
    background: var(--bg-primary-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-block .info-icon svg,
.contact-block .info-icon img {
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 60%;
    max-height: 60%;
}
.contact-block .info-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
}
.contact-block .values {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.contact-block .value,
.contact-block .value p {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    width: fit-content;
}
.contact-block a.value:hover {
    color: var(--bg-primary-stroke);
}
.contact-block .add-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-second);
}
.contact-block .map-holder {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .contact-block .map-holder {
        height: 400px;
    }
    .contact-block .info-item {
        padding: 10px;
    }
    .contact-block .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .contact-block .item-top {
        gap: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 996px) {
    .contact-block .map-holder {
        height: 300px;
    }
    .contact-block .value,
    .contact-block .value p {
        font-size: 14px;
    }
    .contact-block .info-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .contact-block .info-title {
        font-size: 16px;
    }
    .contact-block .add-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .contact-block .info-holder {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 498px) {
    .contact-block .map-holder {
        height: 250px;
    }
    .contact-block .info-holder {
        display: flex;
        flex-direction: column;
    }
}