/* .slide1{
    background-color: pink;
}
.slide2{
    background-color: aqua;
}
.slide3{
    background-color: plum;
} */
.swiper{
    margin-top: 30px;
    width: 1250px;
    height: 100%;
    /* height: 410px; */
}

.swiper-container{
    /* padding-top: 50px; */
    width: 100%;
    height: 85%;
    position: absolute;
    /* left: 50%; */
}
.swiper-container .swiper-slide{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 슬라이드 버튼 설정 */
/* 기존 버튼 css 지우기 */
.swiper-button-prev::after, .swiper-button-next::after{
    content: "";
    display: none;
}
.swiper-btn{
    border: 1px solid #edf5ff;
    background-color: #edf5ff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 2px;
}
.swiper-btn:hover{
    background-color: #deedff;
    border: 1px solid #deedff;
} 

.swiper-button-prev,
.swiper-button-next{
    position: absolute;
    /* top: 50%;
    transform: translateY(-50%); */
    z-index: 100000;
}

.swiper-button-prev{
    left: 5px;
}
.swiper-button-next{
    right: 5px;
}

.swiper-pagination-bullet {
    background: #7fb5ff !important;
}

/* GPT */

/* 카드 스타일 */
.card {
    perspective: 1000px;
}

.card-inner {
    /* margin: 0 50px; */
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.card:hover .card-inner {
transform: rotateY(180deg);
}
.front-content,
.back-content {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

/* 앞/뒤 공통 스타일 설정 */
.front-content,
.back-content{
    font-family: 'NanumSquare';
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0,0,0,0.1);
    box-sizing: border-box;
    width: 100%;
    /* height: 350px; */
}
.front-content{
    text-align: center;
    padding: 20px 20px 3px 20px;
}
.back-content{
    padding: 0 35px;
}

.back-content {
    /* 뒷면 스타일 설정 */
    transform: rotateY(180deg);
}


.back-content-temp{
    position: relative;
    margin-left: 100px;
    width: 396px;
    height: 410px;
    font-family: 'NanumSquare';
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0,0,0,0.1);
    box-sizing: border-box;
    padding: 35px;
}

.temp{
    /* position: relative; */
    margin-left: 100px;
    width: 396px;
    height: 410px;
    font-family: 'NanumSquare';
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0,0,0,0.1);
    box-sizing: border-box;
    /* padding: 35px; */
}