.widget-main-banner{
    position: relative;
    overflow: hidden;
    padding: 54px 0 0;
}
.widget-main-banner .widget-main-banner-wrapper{
    display: flex;
    align-items: flex-start;
    gap: 80px 60px;
    margin-left: calc((100% - 1200px) / 2);
    max-width: 1556px;
}
.widget-main-banner .widget-header{
    flex: 1;
    padding-top: 27px;
}
.widget-main-banner .widget-header .widget-logo{
    display: flex;
}
.widget-main-banner .widget-header .widget-title{
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 600;
    line-height: 115%;
    color: #0D0D0D;
}
.widget-main-banner .widget-header .widget-logo + .widget-title{
    margin-top: 44px;
}
.widget-main-banner .widget-header .widget-description{
    font-size: clamp(21.8px, 2vw, 28px);
    font-weight: 500;
    line-height: 124%;
    color: #A7A7A7;
    margin-top: 40px;
}
.widget-main-banner .widget-content{
    max-width: 940px;
    width: 100%;
}
.widget-main-banner .widget-items{
    position: relative;
    display: flex;
    margin: 0;
    height: 100%;
}
.widget-main-banner .widget-items-wrapper{
    height: 100%;
}
.widget-main-banner .widget-item{}
.widget-main-banner .widget-item-picture{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    min-height: 420px;
    height: 100%;
    aspect-ratio: 16 / 8.9;
}
.widget-main-banner .widget-item-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.widget-main-banner .widget-pagination{
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
    gap: 10px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translate(79px, -39px);
    z-index: 2;
    background-color: #283C63;
    border-radius: 54px;
    padding: 11.5px 16px;
}
.widget-main-banner .widget-pagination .swiper-pagination-bullet{
    width: 7px;
    height: 7px;
    margin: 0;
    background-color: #FFFFFF;
    opacity: 1;

    transition: background-color .2s ease-out;
}
.widget-main-banner .widget-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #2788CF;
}
@media all and (max-width: 1240px) {
    .widget-main-banner .widget-main-banner-wrapper{
        margin-left: 20px;
    }
}
@media all and (max-width: 1200px) {
    .widget-main-banner .widget-content{
        max-width: calc(65% - 30px);
        flex: 0 0 calc(65% - 30px);
    }
    .widget-main-banner .widget-header .widget-logo{
        width: 134px;
    }
    .widget-main-banner .widget-pagination{
        transform: translate(40px, -28px);
    }
    .widget-main-banner .widget-item-picture{
        aspect-ratio: auto;
    }
}
@media all and (max-width: 1000px) {
    .widget-main-banner .widget-main-banner-wrapper{
        flex-wrap: wrap;
        margin-right: 20px;
    }
    .widget-main-banner .widget-content{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-main-banner .widget-header .widget-logo{
        grid-area: logo;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    .widget-main-banner .widget-header .widget-title{
        grid-area: title;
        font-size: clamp(34px, 6vw, 54px);
    }
    .widget-main-banner .widget-header .widget-description{
        grid-area: description;
        font-size: clamp(21.8px, 4vw, 28px);
    }
    .widget-main-banner .widget-header{
        padding-top: 0;
        display: grid;
        gap: 0 30px;
        grid-template-areas:
            "logo title"
            "logo description";
    }
    .widget-main-banner .widget-header .widget-logo + .widget-title{
        margin-top: 0;
    }
}
@media all and (max-width: 768px) {
    .widget-main-banner{
        padding: 50px 0 0;
    }
}
@media all and (max-width: 600px) {
    .widget-main-banner .widget-header{
        display: block
    }
    .widget-main-banner .widget-header .widget-logo{
        width: 134px;
    }
    .widget-main-banner .widget-header .widget-title{
        line-height: 130%;
    }
    .widget-main-banner .widget-header .widget-logo + .widget-title {
        margin-top: 34px;
    }
    .widget-main-banner .widget-header .widget-description{
        margin-top: 20px;
    }
    .widget-main-banner .widget-items{
        flex-wrap: wrap;
        height: auto;
    }
    .widget-main-banner .widget-item-picture{
        min-height: auto;
        aspect-ratio: 16 / 12.62;
    }
    .widget-main-banner .widget-pagination{
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 36px auto 0;
        padding: 0;
        background-color: transparent;
    }
    .widget-main-banner .widget-pagination .swiper-pagination-bullet{
        width: 9px;
        height: 9px;
        background-color: #E0E0E0;
    }
}