.plans {
    margin-top: 105px;
}

.plans .swiper {
    overflow: visible;
}

.plans .plans_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.plans .plans_wrap .swiper-slide {
    flex: 0 0 calc((100% - 2 * 30px) / 3);
    max-width: calc((100% - 2 * 30px) / 3);
    box-shadow: 0px 0px 13px 0px #61a9ea80;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: stretch;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

.plans .plans_wrap .swiper-slide:hover {
    box-shadow: 0px 0px 13px 0px #467cac80;
}

.plans .card {
    background-color: var(--color-white);
}

.plans .plans_card .card_head {
    padding: 20px;
    text-align: center;
}

.plans .plans_card .plan_name {
    margin-bottom: 10px;
    color: var(--single_blue);
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1rem;
}

.plans .plans_card .plan_brand {
    color: var(--color_dark);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1;
}

.plans .plan_image {
    background-color: #ecf6ff;
    padding: 20px;
    text-align: center;
}

.plans .plan_image img {
    display: inline-block;
    max-width: 205px;
    height: auto;
    user-select: none;
}

.plans .plan_price-period {
    padding: 50px 20px;
    text-align: center;
}

.plans .plan_price {
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: var(--color_dark);
    margin-bottom: 10px;
}

.plans .plan_period {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
}

.plans .button_special {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    background: linear-gradient(180deg, #38a0ff 0%, #003668 100%);
    border-radius: 30px;
    font-weight: 700;
    gap: 5px;
    transition: filter 0.2s;
    white-space: nowrap;
    margin-top: auto;
    margin: 20px;
    max-width: 148px;
}

.plans .button_special:hover {
    filter: brightness(1.1);
}

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

@media (max-width: 768px) {
    .plans {
        margin-top: 86px;
    }

    .plans .swiper {
        overflow: hidden;
        padding: 10px;
        margin-left: -10px;
    }
    .plans .plans_wrap {
        flex-wrap: nowrap;
        gap: 0;
        display: flex;
    }

    .plans .plans_wrap .swiper-slide {
        width: 100%;
        max-width: 245px;
        flex: 1 0 100%;
        box-shadow: 0px 0px 13px 0px #61a9ea80;
    }

    .plans .swiper-pagination {
        position: relative;
        margin-top: 10px;
        display: block;
    }

    .plans-swiper .swiper-pagination-bullet {
        background-color: transparent;
        border-radius: 50%;
        border: 1px solid #61a9ea;
        opacity: 1;
    }

    .plans-swiper .swiper-pagination-bullet-active {
        background-color: #61a9ea;
        border: 1px solid #61a9ea;
        opacity: 1;
    }
}