.section-contact {
    background-color: #fff4e9;
    text-align: center;
    padding: 30px 0 60px 0;
    position: relative;
}

.section-contact:before,
.section-contact:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #682453;
}

.section-contact:after {
    width: 40px;
    height: 40px;
    left: 0;
    bottom: 0;
}

.section-contact:before {
    width: 30px;
    height: 30px;
    left: 45px;
    bottom: 45px;
}

.section-contact .title {
    color: #000;
}

.section-contact .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.section-contact .section-content a {
    font-size: 24px;
    color: #000;
    display: inline-block;
    margin: 0 5px;
}

.section-contact .section-content svg {
    width: 26px;
    height: 26px;
}

.section-contact .section-content a:hover {
    color: #682453;
}

.section-contact .section-content span {
    width: 1px;
    height: 28px;
    background: #444444;
    margin: 0 20px;
}

@media (max-width: 576px) {
    .section-contact {
        padding: 60px 0;
    }

    .section-contact .section-content {
        padding: 30px 0 0 0;
        flex-direction: column;
        gap: 5px;
    }

    .section-contact .section-content a {
        font-size: 16px;
    }

    .section-contact .section-content span {
        display: none;
    }

    .section-contact {
        padding: 0 0 30px 0;
    }
}