.contact-container {
    background: #7D0000;
    padding: 0;
    width: 100%;
    max-width: unset;
}

.contact-section {
    padding: 50px  0;
    margin: auto;
    text-align: left;
    color: white;
    max-width: 520px;
}

.contact-section h4 {
    color: #FFF;
    text-align: center;

    /* Heading ENG 48 */
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 16px;
    /* 125% */
}

.contact-section .item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.contact-section .item svg {
    height: 18px;
    width: 18px;
    margin-right: 20px;
}

.contact-section .item.item-address svg {
    align-self: start;
    height: 28px;
    width: 28px;
}

.contact-section .item span {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .contact-section {
        padding-inline: 24px;
    }

    .contact-section h4 {
        color: #FFF;
        text-align: center;
        font-family: Inter, sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 45px;
    }

    .contact-section .item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .contact-section .item.item-address svg {
        align-self: center;
        width: 18px;
    }
}