.students {
    padding-block: 50px;
}

.students__body {
    position: relative;
    z-index: 2;
}
.students__columns{
    position: relative;
    z-index: 3;
}

.students__body::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 500px;
    height: 500px;
    left: -60%;
    top: 20%;
    background-image: url(../img/students/ball.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.students__body::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 500px;
    height: 500px;
    right: -50%;
    bottom: 0%;
    background-image: url(../img/students/ball.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.students__title {
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--intro-color);
    margin-bottom: 25px;
}

.students__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.students__description {
    margin-bottom: 25px;
}

.students__cards-title {
    color: var(--active-color);
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--monts-bold);
    margin-bottom: 15px;
}

.students__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.students__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.students__card-title {
    font-size: 16px;
    font-family: var(--monts-reg);
    line-height: 140%;
}

.student__swiper {
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.student__info-item-box {
    min-width: 0;
}

.student__info-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.student__slide-box-img {
    width: 100%;
    padding-bottom: 130%;
    position: relative;
    overflow: hidden;
    background: #EAEAEA;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.student__slide-box-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.student-info__slide-box-img {
    display: none;
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
    background: #EAEAEA;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.student-info__swiper {
    margin-bottom: 15px;
}

.student-info__slide-box-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.student-info__slide-name {
    font-size: 24px;
    font-family: var(--monts-med);
    margin-bottom: 10px;
}

.student-info__slide-school,
.student-info__slide-school span {
    color: var(--intro-color);
    font-size: 16px;
    font-family: var(--monts-reg);
}

.student-info__slide-school span {
    color: var(--active-color);
}

.student__info-btn-whatsapp {
    display: inline-block;
    text-align: center;
    padding: 15px 25px;
    font-size: 18px;
    font-family: var(--monts-med);
    background-color: var(--active-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.student__info-btns-swiper {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 85px;
    gap: 15px;
    min-height: 30px;
    margin-bottom: 15px;
}

.swiper-button-prev,
.swiper-button-next {
    display: block;
    position: static;
    border-color: violet;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
}

.student__swiper-button-prev>img,
.student__swiper-button-next>img {
    width: 35px;
    height: 35px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

@media (hover:hover) {
    .student__info-btn-whatsapp:hover {
        background: var(--active-color-hover);
    }
}

@media (min-width: 768px) {
    .students__cards {
        grid-template-columns: repeat(2, 1fr);

    }

    .student-info__swiper {
        border-radius: 20px 20px 0 0;
        -webkit-border-radius: 20px 20px 0 0;
        -moz-border-radius: 20px 20px 0 0;
        -ms-border-radius: 20px 20px 0 0;
        -o-border-radius: 20px 20px 0 0;
    }

    .student__info-item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .student__info-item-box {
        margin-bottom: 0;
    }

    .student-info__slide-box-img {
        margin-bottom: 15px;
    }

    .student-info__slide-box-img {
        display: block;
    }

    .students__body::after {
        width: 500px;
        height: 500px;
        left: -40%;
        top: 10%;
    }

    .students__body::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        right: -50%;
        bottom: 0%;
    }
}

@media (min-width: 1250px) {
    .students__columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .students__title {

        margin-bottom: 50px;
    }

    .students__body::after {
        width: 700px;
        height: 700px;
        left: -20%;
        top: 10%;
    }

    .students__body::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        right: -30%;
        bottom: 5%;
    }
}