* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-parent {
    position: relative;
    margin: 0 auto;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
}

.swiper-container {
    position: relative;
}

.swiper {
    width: 100%;
    padding-bottom: 70px;
}

.swiper-slide {
    width: 10rem;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    background-color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border: 1px solid #d4d2d2;
}

.swiper-slide p {
    color: #000;
    line-height: 1.6;
    font-size: 0.8rem;
    font-family: "Open Sans", sans-serif;
}

.swiper-slide .slide-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
}

.swiper-slide .author {
    grid-template-columns: 1fr;
    justify-items: center;
    /* position: absolute;
            bottom: -90px; */
    width: 100%;
    display: grid;
    /* opacity: 0; */
}

.swiper-slide .author span {
    color: #000;
    margin: 5px 0 10px 0;
    font-weight: 500;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
}

.swiper-slide .author img {
    width: 136px;
    height: 136px;
    object-fit: cover;
    border-radius: 50%;
    border: 3.5px solid white;
}

.swiper-slide .author ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide .author ul li svg {
    width: 20px;
    color: orange;
}

.swiper-slide-active .author {
    display: grid;
    opacity: 1;
}

.swiper-slide--one {
    background: #fff;
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to bottom, #021b79, #0575e6); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #021b79, #0575e6); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.swiper-slide--two {
    background: #fff;
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to bottom, #cc5333, #23074d); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #cc5333, #23074d); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.swiper-slide--three {
    background: #fff;
}

.swiper-slide--four {
    background: #fff;
}

.swiper-slide--five {
    background: #ffffff;
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to bottom, #237a57, #093028); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #237a57, #093028); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.swiper-slide--six {
    background: rgb(255, 255, 255);
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to bottom, #b9f, #3b2421); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #b9f, #3b2421); */
}
.swiper-button-prev {
    background: #08377a;
    color: #fff;
    border-radius: 50%;
    top: 96%;
    left: 46%;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.swiper-button-prev::after {
    font-size: 1.4rem;
    content: "";
}

.swiper-button-prev svg {
    width: 25px;
}
.fa-star {
    color: #ffc100;
}
.swiper-button-next {
    background: #08377a;
    color: #fff;
    border-radius: 50%;
    top: 96%;
    right: 46%;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}

i.fa-solid.fa-quote-left.quotes-icon {
    font-size: 62px;
    color: #08377a;
    /* background-color: #08377a; */
    padding: 13px;
    border-radius: 0px 14px 0px 14px;
}

.swiper-button-next::after {
    font-size: 1.4rem;
    content: "";
}

.swiper-button-next svg {
    width: 25px;
}

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

.swiper-3d .swiper-slide-shadow-left {
    background-image: none;
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}
@media (min-width: 760px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
    }
}
