.banner-stretch {
    background-color: #fff;
    backdrop-filter: blur(40px);

}
.banner-stretch__self {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 0 0;
    position: relative;
}

.banner-stretch__img {
    width: 8rem;
}
.banner-stretch__text {
    color: #000;
    font-size: 1.8rem;
    padding: .5rem 0 0 2rem;
}
.banner-stretch__text span {
    font-weight: 700;
}
.banner-stretch__close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.banner-stretch__link {
    border-radius: 4.3rem;
    width: 12.4rem;
    height: 3.1rem;
    border: 1px solid #000;
    display: flex;
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    margin-left: 2.5rem;
    margin-top: .3rem;
}
.banner-stretch__link img {
    width: .8rem;
    margin-left: .7rem;
    transition: .2s;
}

.banner-stretch__link:hover img {
    transform: translateX(.3rem);
}

@media (max-width: 1023px) {
    .banner-stretch__text {
        font-size: 1.5rem;
        max-width: 50%;
    }
    .banner-stretch__self {
        justify-content: flex-start;
    }
    .banner-stretch__link {
       margin-left: auto;
       margin-right: 3rem;
    }
}

@media (max-width: 767px) {
    .banner-stretch__self {
        flex-wrap: wrap;
    }
    .banner-stretch__text {
        padding-left: 0;
        font-size: 1.2rem;
        order: 1;
        width: 100%;
        margin-bottom: .3rem;
        max-width: 80%;
    }
    .banner-stretch__self {
       padding: 1rem 0 0 0;
    }
    .banner-stretch__link {
        width: 10rem;
        height: 2.5rem;
        font-size: 1.1rem;
        order: 2;
        margin-left: 0;
    }
    .banner-stretch__link img {
        width: .7rem;
    }
    .banner-stretch__img {
        width: 6rem;
    }
    .banner-stretch__self picture {
        order: 3;
        margin-left: auto;
    }
    .banner-stretch__close {
        width: 1.4rem;
        top: 1.5rem;
        transform: translateY(0);
        right: 0;
    }
}