.section1 {
    width: 100%;
    max-width: 1200px;
    margin:40px auto 40px;
    position: relative;
    background-color: #e6f0fe;
    display: flex;
    justify-content: flex-end;
    border-radius:10px;
}

.banner {
    width: 70%;
    height: auto;
    display: block;
    margin: 20px 10px 0 0;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: white; /* 텍스트 색상 */
    padding: 50px 45px;
}
.text-overlay h1 {
    font-size: 26px;
    font-family: 'ExtraBold' !important;
    margin-bottom: 15px;
    color: #6170e6;
}

.text-overlay pre {
    font-size: 24px;
    margin: 0;
    line-height: 1.5;
}

.banner_mo {
    display: none !important;
}
.section2 {
    width: 100%;
    max-width: 1200px;
    margin:0 auto;
}
.section2 .btn_wrap{
    display: flex;
    gap: 30px;
}
.section2 .btn_wrap a {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    background-color: #7da1f3;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    font-family: 'ExtraBold' !important;
    gap: 20px;
    background-image: url('../img/arrow1.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 20px;
    background-size: 6%;
    line-height: 1.5;
}

.section2 .btn_wrap a img{
    width: 110px;
    height: 110px;
    object-fit: contain;
    
}
.section3 {
    width: 100%;
    max-width: 1200px;
    margin:40px auto 0;
    background-color: #f2f7fe;
    border-radius: 10px;
    padding: 40px;
}
.section3 .btn_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.section3 .btn_wrap a{
    background-color: #fff;
    width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px 40px;
    border-radius: 10px;
    font-size: 22px;
    font-family: 'ExtraBold' !important;
    gap: 25px;
    background-image: url('../img/arrow2.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 20px;
    background-size: 10%;
    text-align: center;
    line-height: 1.5;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.section3 .btn_wrap a:nth-child(2) img{
    width: 140px;
    height: 100px;
}
.section3 .btn_wrap a img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    
}
@media screen and (max-width: 767px) {

    .banner_mo {
        display: flex !important;
        width: 100%;
        margin-top: 140px;
    }
    .banner {
        display: none !important;
    }
    .section1 {
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        justify-content: flex-end;
        border-radius: 3px;
    }
    .text-overlay {
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        text-align: center;
        padding: 30px ;
        align-items: center;
    }
    .text-overlay h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .text-overlay pre {
        font-size: 17px;
    }
    .section2 {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    .section2 .btn_wrap a {
        width: 50%;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        padding: 30px 11px;
        background-color: #7da1f3;
        border-radius: 5px;
        color: #fff;
        font-size: 17px;
        font-family: 'ExtraBold' !important;
        gap: 10px;
        background-image: url(../img/arrow1.png);
        background-repeat: no-repeat;
        background-position: calc(100% - 14px) 14px;
        background-size: 18%;
        line-height: 1.5;
    }
    .section2 .btn_wrap a img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }
    .section3 {
        width: 100%;
        max-width: 100%;
        margin: 30px auto 0;
        background-color: #f2f7fe;
        border-radius: 3px;
        padding: 30px 20px;
    }
    .section3 .btn_wrap {
        flex-direction: column;
    }
    .section3 .btn_wrap a {
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 40px;
        border-radius: 5px;
        font-size: 17px;
        gap: 15px;
        background-position: calc(100% - 14px) 14px;
        background-size: 9%;
        text-align: center;
        line-height: 1.5;
        box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
    .section3 .btn_wrap a img {
        width: 75px;
        height: 75px;
        object-fit: contain;
    }
    .section3 .btn_wrap a:nth-child(2) img {
        width: 110px;
        height: 75px;
    }
}