section.block-hero{
padding: 0;
}

.block-hero__wrapper {
    border-radius: var(--standard-border-radius);
    background: var(--wp--preset--color--primary-80);
    margin: 12px;
    position: relative;
    overflow: hidden;
    display:grid;
}

.block-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 164px;
    padding-bottom: 64px;
}

.block-hero__info {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: var(--wp--custom--layout--narrow-width) !important;
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--standard-border-radius);
    border: 2px solid var(--wp--preset--color--neutral-100);
    background: var(--wp--preset--color--secondary-30);
}
section.block-hero h1 span{
    color: var(--wp--preset--color--primary-100);
}
section.block-hero .wp-block-list{
    margin: 0;
}
section.block-hero .wp-block-list {
    list-style: none;
    padding: 0;
}
section.block-hero .wp-block-list li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 4px;
}
section.block-hero .wp-block-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 15px;
    background-image: url("./../../assets/images/arrow-right-blue.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/*Slider*/

.block-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.block-hero {
    background: none;
    position: relative;
    overflow: hidden;
}

.block-hero__slider img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: var(--standard-border-radius);
}

.swiper-slide {
    width: 100%;
    height: auto;
    line-height: 0;
    transition: opacity 0.5s ease-in-out;
}

.block-hero__slider-mobile {
    display: none;
}
@media (max-width: 920px) {

    .block-hero__wrapper {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    margin: 0 0 12px 0;
}

.block-hero__inner {
    padding-top: 92px;
    padding-bottom: 24px;
}
.block-hero__slider{
    display: none;
}

.block-hero__slider-mobile {
    display: block;
    overflow: hidden;
}

.block-hero__slider-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


}
