.section1 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section1 .container {
    max-width: 800px;
    text-align: center;
    word-break: keep-all;
}

.section1 p {
    font-size: 18px;
    line-height: 28px;
}

.section1 .about-btn {
    margin: 30px auto;
    border: 1px solid #333333;
    font-family: pretendard, sans-serif;
    font-size: 14px;
    width: 150px;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section1 .about-btn .black {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-color: #009223;
    width: 0px;
    height: 100%;
    transition: 0.4s;
    opacity: 0;
}

.section1 h2 {
    text-align: center;
    text-transform: uppercase;
}

.section1 .about-btn:hover .black {
    transition: 0.3s;
    opacity: 1;
    width: 100%;
}

.section1 .about-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.section1 p span {
    font-size: 20px;
    font-weight: 500;
}

.section2 {
    padding-bottom: 120px;
}

.section2 .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.section2 .item {}

.section2 .item img {}

.section2 .text-box {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: fit-content;
    height: fit-content;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.section2 h2 {
    text-align: center;
    text-transform: uppercase;
}

.section3 {
    padding-bottom: 120px;
}

.section3 .container {
    text-align: center;
}

.section3 .aa {
    width: auto;
    margin: 0 auto 30px;
}

.section3 p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #009223;
    opacity: 1;
}

.section3 h4 {
    font-weight: 400;
}

.section3 .name {
    padding-bottom: 0;
}

.section3 .left,
.section3 .right {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 30%;
    transform: translate(0, -50%);
}

.section3 .left {
    left: 0;
    transform: rotate(-45deg);
}

.section3 .right {
    right: 0;
    transform: rotate(135deg);
}

.section3 .left .line,
.section3 .right .line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #333333;
}

.section3 .left .line1 {
    transform: rotate(90deg) translate(15px, 15px);
}

.section3 .right .line2 {
    transform: rotate(-90deg) translate(-15px, -15px);
}

/*섹션 타이틀 공통*/

h2 {
    width: fit-content;
    margin: 50px auto;
    text-align: center;
    font-size: 50px;
    font-family: "Playfair", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    color: #FFCE32;
}

h2::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background-color: #666666;
    opacity: 0.2;
}