.method-new {
    background: linear-gradient(180deg, #e7f5ff 0%, #e3dafc 100%);
}

.method-new[data-theme='light'] {
    background: #fff;
}

.method-new__row {
    margin-top: 40px;
}

.method-new__grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
    counter-reset: counter;
}

.method-new__col {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    position: relative;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 14px;
}

.method-new__col:nth-child(4),
.method-new__col:nth-child(5) {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.method-new__item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    height: 100%;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.07));
    transition: all 0.2s ease-out 0s;
}

.method-new__item::after {
    content: counter(counter);
    counter-increment: counter;
    color: var(--color-accent);
    font-size: 35px;
    font-weight: 400;
    right: 15px;
    top: 15px;
    z-index: 0;
    line-height: 1;
    margin-bottom: 16px;
    position: absolute;
}

.method-new__icon {
    max-width: 78px;
    width: 100%;
    height: auto;
}

.method-new__item-content,
.method-new__item-content *+* {
    margin-top: 15px;
}

.method-new__item-content p {
    font-size: 14px;
}

.method-new__item-content h5,
.method-new__item-content .h5 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.method-new__col-slider .text__wrapper p {
    margin-top: 15px;
}

.method-new__col-slider .text__wrapper p:first-child {
    margin-top: 0;
}

.method-new__slider {
    margin-top: 40px;
    position: relative;
}

.method-new__col-slider {
    padding-left: 30px;
}

.method-new__col-slider .text__wrapper blockquote {
    border: none;
    background: none;
    padding: unset !important;
}

.method-new__col-slider .text__wrapper blockquote>p {
    display: flex;
    align-items: center;
    gap: 30px;
}

.method-new__slider-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
}

.method-new__slider-footer-img {
    max-width: 135px;
    height: auto;
}

.swiper-pagination_method-new-slider {
    width: 100%;
    bottom: -40px;
}

.swiper-pagination_method-new-slider .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: 1px solid #7e7e7e;
    background: transparent;
}

.swiper-pagination_method-new-slider .swiper-pagination-bullet-active {
    border: 1px solid #1f61f7;
    background: #1f61f7;
}

.method-new__col-slider {
    margin-left: 45px;
}

.method-new__img-pop {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: inline-block;
}

.method-new__img-pop:before {
    content: '';
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease-out 0s;
}

.method-new__img-pop:hover:before {
    opacity: 1;
}

.method-new__img-pop img {
    width: 100%;
    height: auto;
    max-width: 650px;
}

.method-new__item:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 16px 32px rgba(9, 37, 64, 0.08), 0 24px 40px rgba(9, 37, 64, 0.12);
}

.zoom-btn {
    opacity: 0;
    transition: all 0.4s ease-out 0s;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    position: absolute;
    max-width: 48px !important;
    height: auto !important;
}

.method-new__img-pop:hover .zoom-btn {
    opacity: 1;
}


/*******************************  custom-body-class *******************************/

.custom-body-class .method-new {
    background: var(--dark) !important;
    color: #fff;
}

.custom-body-class .method-new__item {
    background: var(--grey) !important;
}


/*******************************  end custom-body-class *******************************/

@media (max-width: 991px) {
    .method-new__col-slider {
        margin-left: 0;
        padding-left: 0;
        margin-top: 30px;
    }
    .method-new__img-pop img {
        width: 100%;
        height: auto;
        max-width: 961px;
    }
    .method-new__slider-footer {
        flex-direction: column;
    }
    .method-new__slider-footer-img {
        order: 1;
        margin-top: 10px;
    }
    .method-new__slider-footer .text__wrapper,
    .method-new__col-slider>.text__wrapper {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .method-new__col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        position: relative;
        width: 100%;
        padding-left: 7px;
        padding-right: 7px;
        padding-bottom: 14px;
    }
    .method-new__item {
        padding: 15px;
    }
    .method-new__col:last-child {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}