.social-follow {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 11rem;
}

.social-follow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-color: #FEFA74;
    transform: translateX(-50vw);
    z-index: -1;
}

.social-follow__title {
    font-family: "NovecentoWide", sans-serif;
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.social-follow__list {
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .social-follow__list {
        flex-direction: column;
    }
}

.social-follow__item {
    margin-left: 3.15rem;
    margin-right: 3.15rem;
}

.social-follow__item:first-of-type {
    margin-left: 0;
}
.social-follow__item:last-of-type {
    margin-right: 0;
}

@media (max-width: 767px) {
    .social-follow__item {
        margin-left: 0;
        margin-right: 0;
    }
    .social-follow__item:not(:first-of-type) {
        margin-top: 3.15rem;
    }
}

.social-follow__link {
    position: relative;
    font-size: 2rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
}

.social-follow__link::before {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
    transform: translateY(-50%);
    z-index: 2;
    transition: font-weight .2s ease;
}

.social-follow__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    width: 0;
    height: 15px;
    background-color: #fefa74;
    transform: translate(0, -0%);
    z-index: 1;
    transition: width 0.25s ease;
}
.social-follow__link--border {
    background-color: #000; /* changer la couleur de fond */
    border: 1px solid #000; /* ajout d'une bordure */
    color: #fff;
    padding: 0 2.5rem;
    text-align: center;
    height: 4.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.social-follow__link--border:hover {
    background-color: rgba(0, 0, 0, 0); /* changer la couleur de fond au survol */
    color: #000;
}
.social-follow__link--border::before,
.social-follow__link--border::after {
    content: none;
}
.social-follow__link:hover::after {
    width: calc(100% + 10px);
}

@media (max-width: 767px) {
    .social-follow__title {
        font-size: 1.6rem;
    }
    .social-follow__link,
    .social-follow__link::before {
        font-size: 1.2rem;
    }
}

.form-newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    padding: 5rem 0;
    overflow-y: scroll;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(43, 36, 34, .2);
    transition: visibility 0.5s ease, opacity 0.5s ease
}

.form-newsletter-popup.shazam {
    visibility: visible;
    opacity: 1
}

.form-newsletter-popup-inner {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 970px;
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
    border-radius: 4px;
    padding: 6rem 10rem
}

@media (max-width: 992px) {
    .form-newsletter-popup {
        padding: 0
    }

    .form-newsletter-popup-inner {
        max-width: 100%;
        border-radius: 0
    }
}

@media (max-width: 767px) {
    .form-newsletter-popup-inner {
        padding: 6rem;
        height: 100%;
    }
    .form-newsletter-popup .form form input[type=submit] {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-newsletter-popup-inner {
        padding: 6rem 4rem
    }
}

@media (max-width: 400px),
(min-device-width: 320px) and (max-device-width: 480px) {
    .form-newsletter-popup-inner form.hs-form:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
    .form-newsletter-popup-inner form.hs-form:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
        width: 100%;
    }
}

.form-newsletter-popup-close-btn {
    position: absolute;
    top: 3rem;
    right: 3rem;
    cursor: pointer
}

.form-newsletter-popup-close-btn svg {
    transform: scale(1);
    transition: transform .2s ease
}

.form-newsletter-popup-close-btn svg:focus,
.form-newsletter-popup-close-btn svg:hover {
    transform: scale(0.85)
}

.form-newsletter-popup-inner .form-title {
    font-size: 3.4rem;
    line-height: 1.35;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 6rem
}

.form-newsletter-popup-inner .form-title:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #000;
    margin-right: 1rem
}

@media (max-width: 540px) {
    .form-newsletter-popup-close-btn {
        top: 1.5rem;
        right: 1.5rem
    }
