.contactsContainer {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contacts {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contactsWrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 320px;
}

.contactsTitle {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    color: var(--green);
    line-height: 130%;
}
.contactsSpan {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000;
}
.contactsText {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #00b129;
}
.contactsLink,
.contactsLinkEmail {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #00b129;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.contactsLink:hover,
.contactsLinkEmail:hover {
    color: var(--green);
}
.contactsLink svg path {
    transition: all 0.3s ease;
}
.contactsLink:hover svg path {
    fill: var(--green);
}
.contactsLinkEmail svg path {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}
.contactsLinkEmail:hover svg path {
    stroke: var(--green);
}
.contactsSocials svg path {
    fill: #333;
}
.contactsSocials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contactsMap {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}
@media (max-width: 1200px) {
    .contactsWrapper {
        min-width: 500px;
    }
}
@media (max-width: 1120px) {
    .contacts {
        flex-direction: column;
        align-items: flex-start;
    }
    .contactsWrapper {
        min-width: 100%;
    }
}
@media (max-width: 768px) {
    .contactsContainer {
        padding: 20px;
    }
}
