/*히어로 섹션-메인*/

.main {
    position: relative;
    height: 700px;
    margin-bottom: 100px;
}

.main img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main .text-box {
    position: absolute;
    bottom: 35%;
    left: 35%;
    transform: translate(-50%, 0);
    text-align: center;
    color: #ffffff;
    width: 690px;
    height: 300px;
}

/*히어로 섹션-메인-글자 스타일*/

.main .text-box h2 {
    top: 20px;
    font-weight: 200;
    letter-spacing: 10px;
}

.main .text-box h1 {
    top: 15%;
    font-weight: 200;
}

.main .btn {
    top: 45%;
    border: none;
    background-color: #009223;
    border-radius: 25px;
    text-align: center;
    font-family: 'SUIT Variable', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

/*히어로 섹션-메인-하버 스타일 관련*/

.main .btn .black {
    background-color: #FFCE32;
}

/*히어로 섹션-메인-반응형 스타일 관련*/

@media (max-width: 700px) {
    .main {
        height: 450px;
    }

    .main img {
        object-fit: cover;
        object-position: center;
    }

    .main .text-box {
        bottom: 55%;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 90%;
        height: auto;
        text-align: center;
    }

    /*히어로 섹션-메인-반응형 스타일 - 글자 스타일 관련*/

    .main .text-box h2 {
        font-size: 24px;
        letter-spacing: 6px;
        margin-bottom: 10px;
        filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
    }

    .main .text-box h1 {
        font-size: 55px;
        margin-bottom: 20px;
        top: 50px;
        filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
    }

    .main .btn {
        top: 60px;
        transform: scale(0.8);
    }
}

@media (max-width: 400px) {

    .main {
        height: 350px;
    }

    .main .text-box h2 {
        font-size: 20px;
        letter-spacing: 6px;
        margin-bottom: 10px;
        top: 30px;
    }

    .main .text-box h1 {
        font-size: 45px;
        top: 30px;
    }

    .main .btn {
        top: 30px;
        transform: scale(0.75);
    }

}

/*섹션 0 스타일*/

.section0 {
    width: 100%;
}

.section0 .section-title {
    width: 320px;
    position: relative;
    height: 20px;
    margin-bottom: 30px;
}

.section0 .section-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background-color: #666666;
    opacity: 0.2;
}

.section0 .container {
    display: flex;
    gap: 50px;
    align-items: center;
    border: inherit
}

.section0 .img-box {
    height: 260px;
}

.section0 .text-box {
    width: 625px;
    height: 260px;
    display: flex;
    flex-direction: column;
    padding: 0 auto;
    box-sizing: border-box;
}

.section0 .text-box .promise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 23px;
}

.section0 .promise .item {
    display: flex;
    gap: 5px;
    height: 30px;
    align-items: flex-start;
}

.section0 .promise .item img {
    object-fit: cover;
    width: 25px;
}

.section0 .btn {
    width: 200px;
    height: 50px;
    border: none;
    background-color: #009223;
    border-radius: 25px;
}

.section0 .btn .black {
    background-color: #FFCE32;
}

/*섹션 0 글자 스타일*/

.section0 .section-title h2 {
    font-size: 50px;
    font-family: "Playfair", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    color: #FFCE32;
}

.section0 .text-box p {
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
}

.section0 .btn span {
    font-family: 'SUIT Variable', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

@media (max-width: 700px) {
    .section0 .container {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section0 .container .item {
        margin: 0 auto;
    }

    .section0 .section-title {
        position: relative;
        text-align: center;
        width: 320px;
        margin: 0 auto 40px;
    }

    .section0 .btn {
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .section0 {
        width: 100%;
        margin: 0 auto 80px;
    }

    .section0 .section-title {
        width: 320px;
        position: relative;
        margin: 0 auto 24px;
        text-align: center;
    }

    .section0 .container {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        row-gap: 24px;
    }

    .section0 .img-box {
        height: auto;
    }

    .section0 img {
        width: 100%;
        height: auto;
    }

    .section0 .text-box {
        width: 100%;
        height: auto;
    }

    .section0 .text-box .promise {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    /*섹션 0 반응형 글자 스타일*/

    .section0 .text-box h2

    /*our promise*/
        {
        font-size: 40px;
    }

    .section0 .section-title::before {
        transform: scaleX(0.8);
        top: 90%;
    }

    .section0 .btn {
        margin: 0 auto;
        transform: scale(0.9);
    }
}

/*섹션 1*/

.section1 {
    margin: 100px auto;
    height: 460px;
}

.section1 .section-title {
    width: 280px;
    position: relative;
    height: 20px;
    margin: 0 auto 40px;
}

.section1 .section-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background-color: #666666;
    opacity: 0.2;
}

.section1 .container {
    height: 380px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: inherit;
}

.section1 .item {
    position: relative;
}

.section1 .text-box {
    position: absolute;
    bottom: -5%;
    left: 0;
    padding: 30px;
    box-sizing: border-box;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
}

/*섹션 1-글자 스타일*/

.section1 .section-title h2 {
    text-align: center;
    font-size: 50px;
    font-family: "Playfair", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    color: #FFCE32;
}

.section1 .text-box h3 {
    color: #ffffff;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section1 .text-box p {
    color: #ffffff;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16px;
    font-weight: 300;
    opacity: 1;
}

/*섹션 2-반응형 */

@media (max-width:700px) {
    .section1 {
        height: auto;
        margin: 60px auto;
    }

    .section1 .container {
        height: auto;
        grid-template-columns: 1fr;
    }

    .section1 .text-box {
        bottom: 0;
        padding: 10px;
        box-sizing: border-box;
    }
}

@media (max-width:400px) {
    .section1 .text-box h3 {
        font-size: 14px;
    }

    .section1 .text-box p {
        font-size: 12px;
    }
}

/*섹션 2*/

.section2 {
    position: relative;
    margin: 100px auto;
}

.section2 .container {
    max-width: 1920px;
    width: 100%;
    border: inherit;
}

.section2 .play {
    position: absolute;
    display: block;
    width: 62px;
    height: 92px;
    top: 150px;
    left: 48.5%;
    transition: 0.5s;
}

.section2 .img {
    display: block;
    object-fit: cover;
    width: 100%;
}

/*섹션 2-하버*/

.section2 .play:hover {
    transform: scale(1.1);
}

/*섹션 2-미디어*/

@media (max-width: 700px) {
    .section2 {
        height: auto;
    }

    .section2 .play {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .section2 .play:hover {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 400px) {

    .section2 .play {
        transform: translate(-50%, -50%) scale(0.4);
    }

    .section2 .play:hover {
        transform: translate(-50%, -50%) scale(0.5);
    }
}

/*섹션 3*/

.section3 {
    margin: 100px auto;
}

.section3 .section-title {
    width: 250px;
    position: relative;
    height: 20px;
    margin: 0 auto 40px;
}

.section3 .section-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background-color: #666666;
    opacity: 0.2;
}

.section3 .img {
    width: inherit;
    display: block;
    object-fit: inherit;
}


.section3 .img1 {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: 0.2s;
}

.section3 .img2 {
    display: block;
    object-fit: cover;
    width: 100%;
}

.section3 .new img.img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section3 .img-box {
    margin: 0 auto 20px;
}

.section3 .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    border: inherit;
}

.section3 .text-box {
    text-align: center;
}

.section3 .new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transition: 0.3s;
}

.section3 .item .new::before {
    transform-origin: left top;
}

.section3 .new .iconbar {
    position: absolute;
    bottom: 40%;
    left: 30%;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    opacity: 0;
}

.section3 .new .iconbar1:last-child {
    left: 50%;
}

.section3 .new .iconbar1 {
    background-color: #009223;
}

.section3 .new .iconbar .icon {
    width: 42px;
    left: 15%;
    top: 15%;
}

/*섹션 3-글자스타일*/

.section3 .section-title h2 {
    text-align: center;
    font-size: 50px;
    font-family: "Playfair", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    color: #FFCE32;
}

.section3 .text-box h4 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.section3 .text-box p {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.section3 .new .icon-text i {
    font-size: 25px;
}

.section3 .new .icon-text p {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.section3 .new .span1 {
    color: #FBD9A5;
}

.section3 .new .span2 {
    color: #FBBCA5;
}

.section3 .icon-text {
    color: #242424;
}

/*섹션 3-하버스타일*/

.section3 .item:hover .img1 {
    transform: scaleX(0)
}

.section3 .item:hover .iconbar {
    opacity: 1;
}

.section3 .item:hover .new {
    transform: scaleX(1);
}

.section3 .icon-text:hover {
    transform: scale(1.1);
}

/*섹션 3-미디어*/

@media (max-width: 700px) {
    .section3 {
        margin-bottom: 50px;
    }

    .section3 .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section3 .new {
        width: 100%;
        height: 100%;
    }

    .section3 .img1 {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .section3 .img2 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 400px) {

    .section3 .img2 {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

}

/*섹션 4*/

.section4 {
    margin: 100px auto;
}

.section4 .section-title {
    width: 350px;
    position: relative;
    height: 20px;
    margin: 0 auto 40px;
}

.section4 .section-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background-color: #666666;
    opacity: 0.2;
}

.section4 h2 {
    text-align: center;
}

.section4 .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    border: inherit;
}

.section4 .item {}

.section4 .text-box {
    text-align: center;
}

.section4 .img-box {
    margin: 0 auto 20px;
}

/*섹션 4 글자 스타일*/

.section4 .section-title h2 {
    text-align: center;
    font-size: 50px;
    font-family: "Playfair", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    color: #FFCE32;
}

.section4 .text-box h4 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #242424;
}

.section4 .text-box h5 {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #242424;
}

.section4 .text-box p {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #242424;
    opacity: 0.6;
}

/*섹션 4 반응형 스타일*/

/* 700 이하 스타일 */

@media (max-width: 700px) {

    .section4 .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/*섹션 5*/

.section5 {
    text-align: center;
    margin: 100px auto;
}

.section5 .container {
    border: inherit;
}

.section5 .mb-container {
    border: inherit;
    display: none;
}

.section5 img {
    width: auto;
    margin: 0 auto 30px;
}

/* 섹션 5 글자스타일 */

.section5 p {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.7;
    margin: 0 auto 30px;
}

.section5 h4 {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

/*섹션 5 반응형 스타일*/

/* 700 이하 스타일 */

@media (max-width: 700px) {

        .section5 .container {
        display: none;
    }

    .section5 .mb-container {
        display: block;
    }

}