.hero-banners.est-home-banners {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 69% 29%;
    max-width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-banners {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 69% 29%;
    max-width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.est-home-banners__coll {
    min-width: 0;
}

.est-home-banners__rect-slider,
.est-home-banners__rect-slider .swiper-wrapper,
.est-home-banners__rect-slider .swiper-slide {
    width: 100%;
}

.est-home-banners__rect-slider {
    position: relative;
    overflow: hidden;
}

.est-home-banner {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    background: #f2f2f2;
}

.est-home-banner--rect {
    aspect-ratio: 848 / 355;
    border-radius: 50px;
}

.est-home-banner--square {
    aspect-ratio: 1 / 1;
    border-radius: 50px;
}

.hero-banners.est-home-banners img,
.est-home-banner__bg {
    width: 100% !important;
    height: 100% !important;
}

.est-home-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    object-fit: cover;
}

.est-home-banner__text {
    position: absolute;
    left: var(--est-text-left, 8%);
    top: var(--est-text-top, 20%);
    z-index: 2;
    max-width: 70%;
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(18px, 2.4vw, 36px);
    line-height: 1.2;
    font-weight: 600;
}

.est-home-banner__text p,
.est-home-banner__text div {
    margin-top: 0;
}

.est-home-banner__text p:last-child,
.est-home-banner__text div:last-child {
    margin-bottom: 0;
}

.est-text-left {
    text-align: left;
}

.est-text-center {
    text-align: center;
}

.est-text-right {
    text-align: right;
}

.est-home-banner__buttons {
    position: absolute;
    left: var(--est-buttons-left, 8%);
    bottom: 8%;
    z-index: 3;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.est-home-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px 25px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.est-home-banner__button:hover,
.est-home-banner__button:focus {
    filter: brightness(1.15);
    text-decoration: none;
}

.est-home-banner__button--square {
    position: absolute;
    left: 50%;
    bottom: 14%;
    z-index: 3;
    transform: translateX(-50%);
}

.est-home-banner__full-link {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.est-home-banner--has-buttons .est-home-banner__full-link {
    display: none;
}

.est-home-banners__pagination {
    position: absolute;
    z-index: 5;
    bottom: 12px !important;
}

@media (max-width: 767px) {
    .est-hb-container.container {
        padding: 10px 16px;
    }

    .hero-banners,
    .hero-banners.est-home-banners {
        grid-template-columns: 100%;
        gap: 20px;
        display: none;
    }

    .est-hb-card--rect,
    .est-hb-card--square {
        border-radius: 30px;
    }

    .est-home-banner__text {
        max-width: 86%;
        font-size: clamp(16px, 6vw, 31px);
    }

    .est-home-banner__buttons {
        gap: 10px;
        bottom: 7%;
    }

    .est-home-banner__button {
        min-height: 38px;
        padding: 5px 18px;
        font-size: 14px;
    }
}