.stay-connected {
    padding-top: var(--padding-top-desktop);
    padding-bottom: var(--padding-bottom-desktop);
    background: var(--section-background);
}

.stay-connected .stay-connected-heading {
    text-align: center;
    font-size: var(--heading-font-desk);
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: "GT America Bold" !important;
    line-height: 1.250;
}

.stay-connected .stay-connected-content {
    font-size: 18px;
    color: #000;
    margin: 0 0 34px 0;
    text-align: center;
    line-height: 1.278;
}

.stay-connected .stay-connected-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stay-connected .stay-connected-items {
    flex: 0 0 50%;
    max-width: calc(50% - 10px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.stay-connected .block-image {
    overflow: hidden;
}

.stay-connected .block-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: all 0.5s;
}

.stay-connected .icon-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 40px;
}

.stay-connected .stay-connected-mail:hover {
    color: #FFFFFF;
}

.stay-connected .stay-connected-mail {
    color: #FFFFFF;
    font-size: 30px;
    text-transform: capitalize;
    line-height: 1.267;
    font-family: 'GT America Bold';
    margin: 0;
}

.stay-connected .icon-with-text--wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding-bottom: 28px;
    padding-top: 75px;
    width: 100%;
    transition: all 0.5s;
    /* background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0) 100%); */
}

.stay-connected .stay-connected-items:hover .icon-with-text--wrapper {
    transform: translateY(-20px);
}

.stay-connected .stay-connected-items:nth-child(2) .stay-connected-mail {
    text-decoration: underline;
}

.is-animated .stay-connected-items:nth-child(1),
.is-animated .stay-connected-items:nth-child(2) {
    transform: translateY(0);
}

.stay-connected-items:nth-child(1) {
    transform: translateY(30px);
    transition-delay: 0.2s;
}

.stay-connected-items:nth-child(2) {
    transform: translateY(50px);
    transition-delay: 0.3s;
}

.stay-connected .block-image img:hover {
    transform: scale(1.05);
}

@media (max-width:990px) {
    .stay-connected .stay-connected-mail {
        font-size: 24px;
    }
}

@media (max-width:768px) {
    .stay-connected {
        padding-top: var(--padding-top-mobile);
        padding-bottom: var(--padding-bottom-mobile);
    }

    .stay-connected .stay-connected-heading {
        font-size: var(--heading-font-mob);
        margin: 0 0 14px 0;
    }

    .stay-connected .stay-connected-mail {
        font-size: 18px;
    }

    .stay-connected .stay-connected-items {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stay-connected .stay-connected-content {
        font-size: 14px;
        margin: 0 0 24px 0;
        line-height: 1.5;
    }

    .stay-connected .stay-connected-wrapper {
        gap: 14px;
    }

    .stay-connected .icon-with-text--wrapper {
        gap: 8px;
        padding-bottom: 14px;
        padding-top: 0;
    }

    .stay-connected .icon-image img {
        max-width: 22px;
    }
}