.banner_main_wrap {
    position: relative;
    padding: 28% 0 5%;
    background-color: var(--theme-skit-color-2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 0 6rem 6rem;
    overflow: hidden;
}

.banner_main_wrap:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner_main_content_wrap {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 2rem;
}

.banner_main_content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    max-width: 600px;
    color: #fff;
}

.banner_main_title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
}

.banner_main_subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--theme-color-gold);
    margin-top: 1rem;
}

/*news*/
.banner_main_news_list_wrap {
    width: 50%;
    min-width: 50%;
}

.banner_main_news_list {
    display: -webkit-flex;
    display: flex;
    gap: 1rem;
}

.banner_main_news_item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    color: #fff !important;
    padding: 1rem;
    border-radius: 1rem;
    background: -webkit-linear-gradient(315deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.4) 100%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.banner_main_news_date {
    font-size: 0.6rem;
}

.banner_main_news_title {
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.banner_main_news_item:hover .banner_main_news_title {
    color: var(--theme-color-gold);
}

.banner_main_news_link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.banner_main_news_item:hover .banner_main_news_link {
    color: var(--theme-skit-color);
}

.banner_main_news_link_icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    background: var(--theme-skit-color);
    border-radius: 50%;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.banner_main_news_item:hover .banner_main_news_link_icon {
    transform: rotate(45deg);
}

.banner_main_news_link_icon svg {
    width: 60%;
    height: auto;
}

@media all and (max-width: 1399px){
    .banner_main_title {
        font-size: 2rem;
    }

    .banner_main_subtitle {
        font-size: 1.5rem;
    }
}

@media all and (max-width: 1199px){
    .banner_main_wrap {
        border-radius: 0 0 3rem 3rem;
    }
}

@media all and (max-width: 991px){
    .banner_main_content_wrap {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .banner_main_content {
        max-width: unset;
    }

    .banner_main_subtitle {
        font-size: 1.3rem;
    }

    .banner_main_news_list_wrap {
        width: 100%;
        min-width: unset;
    }
}

@media all and (max-width: 767px){
    .banner_main_wrap {
        border-radius: 0 0 2rem 2rem;
    }

    .banner_main_subtitle {
        font-size: 1rem;
    }
}

@media all and (max-width: 575px){
    .banner_main_wrap {
        padding: 35% 0 7%;
    }

    .banner_main_title {
        font-size: 1.5rem;
        text-align: center;
    }

    .banner_main_subtitle {
        font-size: 0.8rem;
    }

    .banner_main_news_item {
        width: 75vw;
        min-width: 75vw;
    }

    .banner_main_news_title {
        font-size: 0.8rem;
    }
}