.m-big-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m-big-numbers__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.m-big-numbers__item p {
    font-size: 16px;
    margin-left: 40px;
    line-height: 1.5em;
}
.m-big-numbers__item p strong {
    display: block;
    font-size: 52px;
    color: #005187;
    line-height: 1em;
}

@media (max-width: 576px) {
    
}

.m-banner-middle {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    margin-bottom: 60px;
}
.m-banner-middle::after {
    content: "";
    background-color: var(--light-blue);
    position: absolute;
    width: 280px;
    height: 100%;
    top: 0;
    right: 0;
    mix-blend-mode: multiply;
}
.m-banner-middle--full::after {
    right: calc((100vw - 1240px) / 2);
}

.m-banner-middle--full {
    margin-bottom: 60px;
}

.m-banner-middle__image {
    position: absolute;
    z-index: 0;
}
.m-banner-middle__image img {
    width: 100%;
}

.m-banner-middle__content {
    position: absolute;
    width: 280px;
    height: 100%;
    top: 0;
    right: 0;
    padding: 30px 20px;
    z-index: 1;
}

.m-banner-middle--full .m-banner-middle__image {
    width: 100%;
}
.m-banner-middle--full .m-banner-middle__content {
    right: calc((100vw - 1240px) / 2);
    height: 100%;
    z-index: 2;
}
.m-banner-middle__list {
    position: absolute;
    margin: 0;
    padding: 0;
    list-style: none;
    right: 0;
    width: 280px;
    padding: 30px 20px;
}

.m-banner-middle__item {
    border-bottom: solid 1px #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.m-banner-middle__item__title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffffff;
    width: fit-content;
}

.m-banner-middle__item__title:hover{
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.m-banner-middle__item__title:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.025rem;
    background-color: white;
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s linear;
    position: relative;
    bottom: 0;
}
.m-banner-middle__item__title:hover::after {
    transform: scale(1);
}

.m-banner-middle__item__content {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    display: none;
}
.m-banner-middle__item.--active .m21__item__content {
    display: block;
}
@media (max-width: 576px) {
    .m-banner-middle {
        height: auto;
        overflow: hidden;
    }
    .m-banner-middle__image {
        position: relative;
    }
    .m-banner-middle::after {
        display: none;
    }

    .m-banner-middle__content {
        position: relative;
        width: 100%;
        height: auto;
        background-color: var(--light-blue);
    }
    .m-banner-middle--full .m-banner-middle__content {
        right: auto;
        height: auto;
    }
    .m-banner-middle__list {
        position: relative;
        width: 100%;
        padding: 0;
    }
}
