/* about 페이지 전용 css */

.page-title{
    background-image: url(img/aboutmain.png);
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: var(--border);
}
.page-title h1{
    color: rgb(18, 33, 65);
}

/* 1 */
.section1{
    border-bottom: var(--border);
    padding-top: 100px;
    padding-bottom: 100px;
}
.section1 h2{
    padding-bottom: 20px;
}
.section1 p{
    width: 50%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    color: rgb(80, 80, 80);
}

/* 2 */
.section2 .group{
    width: 100%;
    margin: 0;
    display: flex;
    border-bottom: var(--border);
}

.section2 .group>div{width: 50%;}
.section2 .left{border-right: var(--border);}

.section2 .right, .section2 .left{
    display: flex;
    justify-content: center;
    align-items: center;
}
.section2 .text-box p{
    word-break: keep-all;
    margin: 0 auto;
    margin-top: 20px;
    white-space: nowrap;
}

@media(max-width: 1200px){
    .section2 br{display: none;}
    .section2 .text-box p{
        white-space: normal;
        width: 80%;
    }
}
@media(max-width: 800px){
    .section2 .group{
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
        gap: 30px;
    }
    .section2 .group1,
    .section2 .group3{
        flex-direction: column-reverse;
    }
    .section2 .left{border-right: none;}
    .section2 .group>div{width: 100%};
    .section2 .text-box{
    }
    .section1 h2{
        font-size: 25px;
    }
}

/* 3 */
.section3{
    padding-top: 50px;
    padding-bottom: 100px;
    border-bottom: var(--border);
}
.section3 .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section3 img{
    width: 40px;
    height: auto;}

.section3 .text-box{
    width: 40%;
    padding-top: 30px;
}

.setion3 span{
    background-color: #f5d253;
}

.section3 h4{
    padding-top: 10px;
    padding-bottom: 10px;
}

.section3 .btn{
    border:none;
    font-size: 30px;
    color: #f5d253;
}
.section3 .btn-prev{
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 10;
}
.section3 .btn-next{
    position: absolute;
    top: 50%;
    right: 20%;
    z-index: 10;
}
@media(max-width: 1000px){
    .section3 .text-box{
        min-width: 470px;}
}
@media(max-width: 800px){
    .section3 .text-box{
        min-width: auto;
        width:70%;
    }
    .section3 .btn-prev{
       left: 10%;
    }
    .section3 .btn-next{
        right: 10%;
     }
}