/* section aboutOne */
.aboutOne {
    margin: 5%;
}

.aboutOne > .textBox {
    text-align: center;
    font-family: 'Noto Sans KR';
        font-size: 26px;
        font-weight: 600;
}

.aboutOne> .imgBox {
    display: flex;
    justify-content: center;
    padding: 5%;
    gap: 10%;
}

.aboutOne>.imgBox> .innerImgBox {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.aboutOne>.imgBox>.innerImgBox> a {
    /* position: absolute; */
    /* margin-top: 15%; */
    border: 1px solid;
    padding: 3% 4% 3%;
    left: 50%;
    bottom: -35%;
    text-align: center;
    margin: 5% auto;
    /* transform: translate(-50%); */
    border-radius: 25px;
    font-size: 24px;
    font-weight: 500;
    
}


/* section aboutTwo */

.aboutTwo {
    background-color: var(--black);
}

.aboutTwo>.imgBox>.innerImgBox {
    display: flex;
    padding: 5%;
    flex-direction: column;
    text-align: center;
    position: relative;
    /* justify-content: center; */
    align-items: center;
    /* gap: 5%; */

}

.aboutTwo>.imgBox>.innerImgBox> img {
    width: 35%;
    margin-bottom: 3%;
}

.aboutTwo>.imgBox>.innerImgBox> .text {
    color: var(--white);
    font-family: 'Noto Sans KR';
    font-size: 26px;
    font-weight: 600;
}

/* section aboutThree */

.aboutThree>.text {
    font-family: 'Noto Sans KR';
    font-size: 26px;
    text-align: center;
    margin: 5%;
    font-weight: 600;
}

.aboutThree> .cards {
    display: flex;
    margin: 5%;
    gap: 2%;
}

.aboutThree>.cards>.card {
    width: 25%;
}

.aboutThree>.cards>.card>.imgBox {
    position: relative;
    
    
}

.aboutThree>.cards>.card>.imgBox::after {
    content: "";
    display: block;
    padding-bottom: 100%;
    /* border-radius: 25px; */
}

.aboutThree>.cards>.card>.imgBox>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
}

.aboutThree>.cards>.card> .main {
    text-align: center;
    margin-top: 3%;
    font-family: 'Noto Sans KR';
    font-size: 26px;
    font-weight: bold;
}

@media screen and (max-width: 870px) {
    .aboutThree>.cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .aboutThree>.cards .card {
        width: 40%;
    }

}

@media screen and (max-width: 730px) {

    .aboutOne>.textBox {
        font-size: 24px;
    }

    .aboutOne>.imgBox {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 530px) {

    .aboutThree>.cards .card {
        width: 70%;
    }

    .aboutThree>.text {
        width: 80%;
        margin: 5% auto;
    }

}

@media screen and (max-width: 470px) {

    .aboutOne>.textBox {
        font-size: 20px;
    }

}

@media screen and (max-width: 330px) {
    .aboutThree>.cards>.card>.imgBox, .aboutOne>.imgBox>.innerImgBox>img {
        display: none;
    }

}