* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*section {*/
/*    position: relative;*/
/*    width: 60%;*/
/*    margin: 0 auto;*/
/*    min-height: 100vh;*/
/*    column-gap: 3rem;*/
/*    padding-block: min(20vh, 3rem);*/
/*    text-align: center;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*}*/


.swiper-container {
    position: relative;
    width: 60%;
    margin: 0 auto;
    min-height: 100vh;
    column-gap: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.swiper {
    width: 100%;
    padding: 60px 0 95px 0;
}

.slide-box {
    width: 10rem;
    height: 22rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    box-shadow: -1px 5px 15px #0000001f;
    border: 1px solid #2b2b2b;
    background-color: #fff;
}

.slide-box h3 {
    color: #dcc69d;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    letter-spacing: 0.8px;
    position: relative;
}

.slide-box p {
    color: #2e2e2e;
    line-height: 1.6;
    font-size: 1rem;
}

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

.swiper-button-prev {
    background: white;
    border-radius: 50%;
    top: 47%;
    left: -30px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
    color: #2e2e2e;
}

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

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

.swiper-button-next {
    background: white;
    border-radius: 50%;
    top: 47%;
    right: -30px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
    color: #2e2e2e;
}

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

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

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

@media (min-width: 760px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
    }

}

@media screen and (max-width: 768px) {
    .swiper-container {
        width: 100%;
    }
}