
.step {
    height: 100%;
    padding: 16px 0 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.step-count {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}
.step-content {
    /* transform: translateY(100%); */
    /* transition: all 0.4s ease; */
    /* flex: 1; */
}
.step-title {
    /* margin-top: auto; */
    font-size: clamp(1.25rem, 1.1436rem + 0.396vw, 1.5rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    /* transform: translateY(-100%); */
    /* transition: all 0.4s ease; */
}
.step-text {
    font-size: 14px;
    /* opacity: 0; */
    /* transition: all 0.4s ease; */
    display: block;
    /* overflow: hidden; */
}
/* .step:hover .step-content {
    transform: translateY(0);
}
.step:hover .step-title {
    transform: translateY(0);
  }
.step:hover .step-text {
    opacity: 1;
  } */

.step-hr {
    height: 2px;
    background: #05044A;
}


@media (min-width: 1200px) {

    .mySwiper-step {
        overflow: visible;
    }
    .swiper-button-next-step,
    .swiper-button-prev-step {
        display: none;
    }
    .mySwiper-step .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .mySwiper-step .swiper-slide {
        width: 47%;
        height: auto;
        position: relative;
    }
    .mySwiper-step .swiper-slide:before,
    .mySwiper-step .swiper-slide:after {
        width: 100%;
        left: 0;
        right: 0;
        height: 2px;
        background: #05044A;
        position: absolute;
        content: '';
    }
    .mySwiper-step .swiper-slide:before {
        top: 0;
    }
    .mySwiper-step .swiper-slide:after {
        bottom: 0;
    }
    .mySwiper-step .swiper-slide:nth-child(n+3) {
        margin-top: -2px;
    }


    .step-content {
        transform: translateY(100%);
        transition: all 0.4s ease;
        flex: 1;
    }
    .step-title {
        margin-top: auto;
        transform: translateY(-100%);
        transition: all 0.4s ease;
    }
    .step-text {
        opacity: 0;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .step:hover .step-content {
        transform: translateY(0);
    }
    .step:hover .step-title {
        transform: translateY(0);
    }
    .step:hover .step-text {
        /* max-height: 1000px; */
        opacity: 1;
    }

    .swiper-pagination-step {
        display: none;
    }


}

@media (max-width: 1199px) {

    .mySwiper-step {
        padding-bottom: 48px;
    }
    .step {
        height: auto;
        padding: 0;
        text-align: center;

    }
    .step-count {
        font-size: 100px;
        line-height: 100px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 400;
    }


    .mySwiper-step .swiper-button-prev,
    .mySwiper-step .swiper-button-next {
        width: 44px;
        height: 24px;
        border: none;
        outline: none;
        background-image: url(../../../assets/img/icons/arrow.svg);
        background-size: contain;
        margin: -11px 0 0 0;
        bottom: auto;
        top: 48px;
    }
    .mySwiper-step .swiper-button-prev {
        transform: scaleX(-1);
        left: 50%;
        margin-left: -120px;
    }
    .mySwiper-step .swiper-button-next {
        right: 50%;
        margin-right: -120px;
    }
    .mySwiper-step .swiper-button-prev:before,
    .mySwiper-step .swiper-button-next:before,
    .mySwiper-step .swiper-button-prev:after,
    .mySwiper-step .swiper-button-next:after {
        display: none;
    }

    .mySwiper-step .swiper-pagination-step {
        display: flex;
        align-items: center;
        justify-content: center;
        position: static;
        bottom: auto;
        text-align: center;
        margin-top: 80px;
    }
    .mySwiper-step .swiper-pagination-bullet {
        width: 44px;
        height: 1px;
        background: #05044A;
        opacity: 1;
        border-radius: 0;
        border: none;
        margin: 0 8px;
    }
    .mySwiper-step .swiper-pagination-bullet-active {
        background: #05044A;
        height: 3px;
    }


}