.spasibo-banner {
    background-color: var(--base-black-bg);
    color: var(--primary-white);
    padding: 95px 50px;
    display: flex;
    align-items: center;
}

.spasibo-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 1023px) {
    .spasibo-banner__container {
        flex-direction: column;
        text-align: center;
    }
}

.spasibo-banner__left {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spasibo-banner__title {
    font-family: var(--TildaSans);
    font-size: 42px;
    font-weight: 400;
    line-height: 100%;
}

.spasibo-banner__text {
    font-size: 16px;
    line-height: 100%;
    color: #ccc;
}

.spasibo-banner__button {
    margin-top: 20px;
    max-width: 268px;
    height: 55px;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.spasibo-banner__right {
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px;
}

.spasibo-banner__right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}