@charset "utf-8";
:root {
    --main-color2: #302d90;
}

/*** main_banner **/
#main_content{
    word-break: keep-all;
}

#main_content .visual{
    position: relative;
}

#main_content .visual .slider1{
    width: 100%;
    height: 100vh;
}

#main_content .visual .slider1{

}




#main_content .visual .main_banner{
    width: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
}

.slide_box{
    width: 100%;
}

.slide_box img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* transition-duration: 3s; */
    /* transform: scale(1); */
}

/* 슬라이더 줌 효과 */
.slick-active .slide_box img{
    /* transform: scale(1.1); */
    /* animation: zoom 2.0s ease-in-out;
    animation-fill-mode : forwards; */
}

.visual .slider1{
    filter: brightness(0%);

    animation: opa 1s;
    animation-fill-mode : forwards;
}

@keyframes opa{
    0%{
        filter: brightness(0%);
    }

    100%{
        filter: brightness(100%);
    }
} 

@keyframes zoom{
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.04);
    }
} 

.main_center{
    padding: 0 60px;
    text-align: right;
}

.main_banner .slick-initialized .slick-slide{
    justify-content: flex-end;
}

.visual .slider1_arrow_wrap{
    position: absolute;
    top: 77%;
    right: 0px;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.visual .slider1_arrow_wrap img{
    cursor: pointer;
}

.visual .slick-slide img{
    border-bottom-right-radius: 64px;
}

.visual .slick-dots{
    bottom: 20px;
}

.visual .slick-dots li{
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.visual .slick-dots li.slick-active button:before {
    background-color: var(--red);
    border: 3px solid var(--red);
}




/* 슬라이더 안 텍스트 아래에서 위로 등 효과 */
/* 
.text_animation1{
    height: 80px;
    overflow: hidden;

    margin-bottom: 30px;
}

.text_animation2{
    height: 45px;
    overflow: hidden;
}

.text_animation1 p,
.text_animation2 p{
    height: 100%;
}

.text_animation1 p{
    opacity: 0;
    animation: show-up 1.2s ease forwards;
}

.text_animation2 p{
    opacity: 0;
    animation: show-up2 1.2s ease forwards;
    animation-delay: .4s;
}

@keyframes show-up{
    0%{
        margin-top: 80px;
        opacity: 0.3;
    }

    100%{
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes show-up2{
    0%{
        margin-top: 45px;
        opacity: 0.3;
    }

    100%{
        margin-top: 0;
        opacity: 1;
    }
} */


/* 슬라이더 배너에 스크롤 다운 */
/* .scroll_down{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.scroll_down p{
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.progressbar{
    width: 1px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 10px auto 0;
    position: relative;
}

.progress_in{
    width: 1px;
    height: 0;
    background-color: #fff;
    top: 0;
    left: 0;
    animation: scroll_down infinite 2s ease-out;
}

@keyframes scroll_down{
    0%{
        height: 0%;
    }

    100%{
        height: 100%;
    }
} */


/* main_sect1 */
.section1 .line{
    width: 1px;
    height: 50px;
    background-color: rgba(34, 34, 34, 1);

    margin: 0 auto 30px;
}

.section1{
    padding: 200px 0 120px;
    text-align: center;
}


.text_effect {
    display: inline-block;
    position:relative;
}

.text_effect::after{
    content: "";

    width: 6px;
    height: 6px;
    border-radius: 64px;
    background-color: var(--red);

    position: absolute;
    top: -7px;
    left: 50%;
    transform: translate(-50%, 0%);
}


.section2 ul.list1{
    width: 100%;
    height: 500px;
    display: flex;
}

.section2 ul.list1 li {
    color: white;

    /* width: 20%; */
    width: 200px;
    
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: .5s;
}

.section2 ul.list1 li.on{
    width: 510px; 
}

.section2 ul.list1 li.on .business_inner{
    opacity: 0;
}

.section2 ul.list1 li.on .business_bottom{
    opacity: 1;
}




.section2 ul.list1 li:hover {
    /* width: 510px; */
}

.section2 ul.list1 li > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section2 ul.list1 li .business_bottom,
.section2 ul.list1 li .business_inner{
    transition: 0.2s;
}

.section2 ul.list1 li .business_bottom .list_title{
    padding-bottom: 20px;

    width: max-content;
}

.section2 ul.list1 li .business_bottom p{
    width: max-content;
}

.business_inner {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -63%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    opacity: 1;
}

.section2 ul.list1 li:hover .business_inner {
    opacity: 0;
}

.section2 ul.list1 li .business_bottom {
    width: 85%;
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    
    justify-content: center;
    flex-direction: column;

    opacity: 0;
}

.section2 ul.list1 li:hover .business_bottom{
    opacity: 1;
}

.b_title {
    overflow: hidden;
}

.section2 ul.list1 li:first-child{
    border-bottom-left-radius: 20px;
}

.section2 ul.list1 li:last-child{
    border-top-right-radius: 20px;
}

.section2 ul.list1 li:last-child .business_bottom{
    bottom: -15%;
}



.section1 .colered{
    color: rgba(94, 94, 94, 1);
}

.section2 ul.list1 li p b{
    font-family: 'Pretendard-Bold', sans-serif;
}

/* main_sect3 */
.section3{
    width: 100%;
    height: 500px;
    background-color: var(--red);

    color: white;

    padding-top: 100px; 

    text-align: center;  
    margin-top: 120px;
}

.section3 > .title{
    margin-top: 15px;
    margin-bottom: 100px;
}

.section3 ul{
    color: #111;

    display: flex;
    gap: 40px;
}

.section3 ul li{
    width: 25%;
    height: 500px;
    padding: 50px 20px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.section3 ul li:nth-child(2n-1){
    margin-top: 110px;
}

.section3 ul li .p_wrap p{  
    color: rgba(81, 81, 81, 1);
    display: flex; 
    align-items: center;   
    gap: 25px;

    margin-bottom: 20px;
}

.section3 ul li .list_title{
    margin: 30px 0;
}




/* main_sect4 */
.section4{
    padding-top: 400px;
}

.section4 .text_wrap{
    gap: 80px;
}

.section4 .text_wrap .left {
    width: 660px;
}

.section4 ul{
    width: 100%;
    display: flex;
    gap: 40px;

    margin: 70px 0 200px;
}

.section4 ul li{
    width: 50%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);
}

.section4 ul li .title2{    
    margin-bottom: 20px;
}

.section4 .text_wrap .right b{
    font-family: 'Pretendard-Bold', sans-serif;
}







.section5{
    text-align: center;

    width: 100%;
    height: 400px;
    padding: 70px 0;
    box-sizing: border-box;

    background-image: url(../images/main_img2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    color: white;

    margin-bottom: 200px;
}

.section5 > p{
    margin: 25px 0 45px;
}

.section5 .btns{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.section5 .btns .btn{
    width: 280px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 64px;

    color: var(--red);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}


.section6{

}

.section6 ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section6 ul li{
    width: 100%;
    padding: 25px 50px;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;

    border-radius: 20px;
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);

}


.custom_checkbox1 label {
    cursor: pointer;
    /* display: inline-block; */
    position: relative;
}

.custom_checkbox1 label:before {  
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;  
    left: -10px;
    transform: translate(-50%, -10px);
}
	
.custom_checkbox1 input[type=checkbox] {  
    /* display: none;   */
    visibility: hidden;
}
	
.custom_checkbox1 label:before {
    background: url('../images/icon_checkbox.png') left center no-repeat;
}

.custom_checkbox1 input[type=checkbox]:checked + label:before {  
    background: url('../images/icon_checkbox_on.png') left center no-repeat;  
} 

.custom_checkbox1 label:before {
}


.main_section.main2{
    padding: 200px 0;
}

.section7 .dot_wrap{

}

.section7 .dot_wrap span{
    margin: 0 auto;

    display: block;
    margin-bottom: 20px;

    border-radius: 64px;
    width: 10px;
    height: 10px;
    background-color: rgba(217, 217, 217, 1);
}


.section8 .top_area{
    width: 100%;
    height: 210px;

    background-color: var(--red);
    color: white;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.section8 .route ul{
    width: 100%;
    display: flex;
}

.section8 .route ul li{
    width:25%;
    padding: 25px 0;
    
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.section8 .route ul li p{
    width: 100%;
    text-align: center;
    border-right: 1px solid rgba(217, 217, 217, 1);
}

.section8 .route ul li:last-child p{
    border-right: none;
}

.section8 .route ul li:last-child{
    
}

.section8 .route ul li.on{
    color: var(--red);

    border-bottom: 2px solid var(--red);
}

.section8 .content_slider1_wrap{
    position: relative;
}

.section8 .content_slider1_arrow_wrap{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section8 .arrow_box{
    z-index: 50;
    background-color: rgba(249, 249, 249, 1);
    border: 1px solid rgba(200, 200, 200, 1);
    height: 40px;
    width: 40px;
    border-radius: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.section8 .arrow_box img{
    cursor: pointer;
}

.section8 .bottom_area .label_title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.section8 .cont1 ul.type1{
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.section8 .cont1 ul.type1 li{
    width: 50%;
    height: 420px;
    padding: 40px 0;
    box-sizing: border-box;

    background-color: rgba(248, 248, 248, 1);
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
}

.section8 ul.type1 li .img_wrap img {
    width: max-content;
}

.section9{
    width: 100%;
    padding: 100px 0;

    background-color: rgba(248, 233, 234, 1);
}

.section8 .cont1 ul.type2 li {
    height: 870px;
}

.section9 ul{
    margin-left: 14.5%;
}

.section9 ul li{
    width: 400px;
    height: 400px;
    padding: 40px 20px; 
    box-sizing: border-box;

    border-radius: 20px;

    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section9 ul li .text{
    color: rgba(81, 81, 81, 1);
    height: 130px;
}


.section9_slider .slick-slide {
    margin: 0 20px;
}

.section9_slider .slick-list {
    padding-bottom: 20px;
    margin: 0 -20px;
}

.section10 p b{
    font-family: 'Pretendard-Bold', sans-serif;
}

.section10 .img_wrap{
    border-radius: 20px;
}

.section10 .flex_box .left,
.section10 .flex_box .right{
    width: 50%;
}

.section11{
    color: white;
    text-align: center;
    background-color: var(--red);
}

.section12{
    letter-spacing: -0.5px;
}

.section12 ul{
    width: 100%;

    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section12 ul li{
    width: calc(50% - 20px);
    height:280px;
    padding: 40px;
    box-sizing: border-box;
    background-color: rgba(248, 248, 248, 1);
    border-radius: 20px;

    display : flex;
    justify-content: space-between;
    align-items: center;

    border : 1px solid rgba(248, 248, 248, 1);
    transition: 0.2s;
}

.section12 ul li.hover{
    border: 1px solid var(--red);
    background-color: white;
}

.section12 ul li.hover .label{
    color: var(--red);
}

.section12 ul li .label{
    margin: 15px 0 20px;
}

.section12 ul li .sub_label,
.section12 ul li p{
    color : rgba(81, 81, 81, 1);
}

.section12 ul li p{
    width: 470px;
}

.section12 ul li p span{
    font-family: 'Pretendard-Bold', sans-serif;
}

.section9{
    width: 100%;
    padding: 100px 0;

    background-color: rgba(182, 31, 36, 0.1);
}

.section13{
    background-color: rgba(182, 31, 36, 0.1);
}

.section13 ul{
    margin-left: 14.5%;
}

.section13 ul li{
    width: 440px;
    height: 500px;
    padding: 30px 40px;
    box-sizing: border-box;

    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 6px 10px 0px rgba(158, 126, 127, 0.3);
}

.section13 .slick-slide {
    margin: 0 20px;
    flex-direction: column;
}

.section13 .slick-slide img{
    width: auto;
}

.section13 .title_wrap p{
    margin : 60px 0 30px;
}

.section13 .slick-list {
    margin: 0 -20px;
    padding-bottom: 20px;
}

.section13 .text {
    color: rgba(34, 34, 34, 1);
}

.section14 .left,
.section14 .right{
    width: 600px;
    height: 550px;
    padding: 40px;
    box-sizing: border-box;

    border-radius: 20px;
}

.section14 .left{
    border: 1px solid rgba(217, 217, 217, 1);
}

.section14 .flex_box ul{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section14 .flex_box ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.section14 .flex_box .t2{
    margin: 30px 0 10px;

    color: rgba(200, 200, 200, 1);
}

.section14 .flex_box .text{
    margin-bottom: 30px;
}

.section14 .right{
    background-color: var(--red);
    color: white;
}

.section14 .right .btn{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 35px;

    background-color: white;
    border-radius: 64px;

    margin-top: 30px;
}

.section14 .right .t2{
    color: white !important;
}

.section15 {
    background-color: rgba(248, 233, 234, 1);
}

.section15 .title p{
    margin-top: 25px;
    color: rgba(92, 92, 92, 1);
}

.section15 .btns{
    display: flex;
    gap: 30px;
}

.section15 .btns .btn{
    width: 400px;
    height: 210px;
    padding: 45px 30px;
    box-sizing: border-box;
    background-color: white;

    cursor: pointer;
    border-radius: 20px;
    box-shadow: 2px 3px 15px 0px rgba(128, 128, 128, 0.25);

    transition: 0.2s;
}

.section15 .btns .btn p{
    margin-top: 35px;
}

.section15 .btns .btn:hover{
    color: white;
    background-color: var(--red);
}

.section15 .btns .btn1:hover img{
    filter: brightness(0) invert(1);
}

.section16{

}

.section16 .btn{
    background-color: var(--red);
    color: white;

    border-radius: 64px;
    width: 280px;
    padding: 15px 20px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 40px auto 0;
}



    



/* mobile */
@media screen and (max-width: 767px) {

    /* 공통 br 제거 */
    .section3 ul li br
    {
        display: none;
    }


    /* main_banner */
    #main_content .visual .slider1,
    .slide_box{
        height: 70vh;
    }

    .main_center{
        padding: 0;
        text-align: center;
    }

    .main_banner .slick-initialized .slick-slide{
        justify-content: center;
    }

    .visual .slider1_arrow_wrap{
        top: 90%;
    }

    .visual .slider1_arrow_wrap img{
        width: 28px;
    }
    
    .section1 {
        padding: 50px 0 70px;
    }

    .section1 .line {
        height: 30px;
        /* margin: 0 auto 20px; */
    }

    .text_effect::after {
        content: "";
        width: 4px;
        height: 4px;
    }

    /* main_sect2 */
    .section2{
        padding: 10px 0 20px;
    }

    .section2 ul.list1{
        flex-direction: column;
    }

    .section2 ul.list1 li.on {
        width: 100%;
    }

    .section2 ul.list1 li{
        width: 100%;
        height: 300px;
        border-radius: 10px !important;
    }

    .section2 ul.list1 {
        height: 100%;
    }

    .section2 ul.list1 li:last-child .business_bottom {
        bottom: -20%;
    }

    .section3 {
        height: 100%;
        padding-top: 80px;
        margin-top: 60px;
        padding-bottom: 80px;
    }

    .section3 > .title {
        margin-bottom: 30px;
    }

    .section3 ul {
        gap: 20px;
        flex-direction: column;
    }

    .section3 ul li {
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .section3 ul li:nth-child(2n-1) {
        margin-top: 0px;
    }

    .section3 ul li .p_wrap p {
        gap: 10px;
        margin-bottom: 10px;
    }

    .section3 ul li .list_title {
        margin: 20px 0;
    }

 
    .section4 {
        padding-top: 50px;
    }

    .section4 .text_wrap {
        gap: 30px;
        flex-direction: column;
    }

    .section4 .text_wrap .left {
        width: 100%;
    }

    
    .section4 ul {
        gap: 30px;
        margin: 50px 0 70px;
        flex-direction: column;
    }

    .section4 ul li {
        width: 100%;
        box-sizing: border-box;
    }

    .section5{
        margin-bottom: 50px;
    }

    .section5 > p {
        margin: 15px 0 25px;
    }

    .section5 .btns{
        FLEX-DIRECTION: COLUMN;
        align-items: center;
    }

    #main_content .visual .main_banner{
        top: 60%;
    }

    .main_section.main2 {
        padding: 50px 0 70px;
    }

    .section6 ul li {
        padding: 20px;
    }

    .custom_checkbox1 label:before {
        transform: scale(0.7);
        left: -40px;
    }

    .section6 ul li p{
        width: 85%;
    }

    .section7 .dot_wrap span{
        margin-bottom: 10px;
    }

    .section8 .top_area{
        height: 110px;
    }

    .section8 .route ul li {
        padding: 15px 0;
    }

    .section8 .bottom_area .label_title img{
        width: 30px;
    }

    .section8 .content_slider1_arrow_wrap{
        display: none;
    }

    .section9{
        padding: 50px 0;
    }

    .section9_slider .slick-slide {
        margin: 0 8px;
    }

    .section9_slider .slick-list {
        padding-bottom: 10px;
        margin: 0 8px;
    }

    .section9 ul {
        margin-left: 0;
        width: 90%;
        margin: 0 auto;
    }

    .section9 ul li{
        height: 300px
    }

    .section9 ul li .text {
        height: 100%;
        margin-top: 50px;
    }

    .section10 .flex_box{
        flex-direction: column;
        gap: 20px;
    }

    .section10 .flex_box .left,
    .section10 .flex_box .right {
        width: 100%;
    }

    .section12 ul li {
        width: 100%;
        height: 250px;
        padding: 20px;

        gap: 20px;
    }

    .section12 ul li p{
        width: 100%;
    }

    .section12 ul li .label {
        margin: 10px 0 10px;
    }

    .section13_slider .slick-slide {
        margin: 0 8px;
    }

    .section13_slider .slick-list {
        padding-bottom: 10px;
        margin: 0 8px;
    }

    .section13 ul {
        margin-left: 0;
        /* width: 90%; */
        margin: 0 auto;
    }

    .section13 .title_wrap p {
        margin: 20px 0 10px;
    }

    .section13 ul li {
        height: 300px;
        padding: 20px;
    }

    .section14 .flex_box{
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .section14 .left,
    .section14 .right {
        width: 100%;
        height: 100%;
        padding: 30px;
    }

    .section14 .flex_box .text {
        margin-bottom: 20px;
    }

    .section14 .flex_box .t2 {
        margin: 15px 0 5px;
    }

    .section14 .flex_box ul {
        gap: 10px;
    }

    .section14 .right .btn{
        margin-top: 15px;
    }

    .section15 .flex_box{
        flex-direction: column;
        gap: 20px;
    }

    .section15 .btns {
        display: flex;
        gap: 15px;
    }

    .section15 .btns .btn p {
        margin-top: 15px;
    }

    .section15 .btns .btn p {
        margin-top: 15px;
    }

    .section15 .btns .btn {
        width: 100%;
        height: 200px;
    }

    .section16 .btn{
        margin: 20px auto 0;
    }



}


/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .section1 {
        padding: 50px 0 70px;
    }

    .m-none{
        display: none !important;
    }

    .section2 ul.list1 li{
        border-radius: 20px !important;
    }

    .section2 ul.list1 {
        height: 100%;
        flex-direction: column;
    }

    .section2 ul.list1 li {
        height: 350px;
        width: 100%;
    }

    .section2 ul.list1 li.on {
        width: 100%;
    }

    .section2 ul.list1 li:last-child .business_bottom {
        bottom: -12%;
    }

    .section3 > .title {
        margin-bottom: 50px;
    }

    .section3 ul{
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section3 ul li {
        width: 47%;
        align-items: center;
        justify-content: center;

        height: 400px;
    }

    .section3 ul li:nth-child(2n-1){
        margin-top: 0px;
    }

    .section3 {
        height: 100%;
        padding-bottom: 120px;
    }

    .section3 ul li .p_wrap p{
        gap: 10px;
    }

    .section4 {
        padding-top: 100px;
    }

    .section3 ul li .p_wrap p {
        gap: 10px;
        margin-bottom: 10px;
    }

    .section8 ul.type1 li .img_wrap img{
        width: 100%;
    }

    .section4 .text_wrap {
        gap: 40px;
        flex-direction: column;
    }

    .section4 .img_wrap img {
        height: 450px;
        object-fit: cover;
        border-radius: 20px;
    }

    .section8 .cont1 ul.type1 {
        gap: 20px;
    }

    .section10 .flex_box .right .img_wrap img{
        width: 70%;
    }

    .section10 .flex_box .left,
    .section10 .flex_box .right {
        width: 100%;
    }

    .section10 .flex_box{
        flex-direction: column-reverse;
        gap: 20px;
    }

    .section4 .text_wrap .left {
        width: 100%;
        height: 100%;
    }

    .section4 ul {
        gap: 20px;
        margin: 30px 0 70px;
    }

    .section5{
        height: 100%;
        margin-bottom: 70px;
    }

    .main_section.main2 {
        padding: 50px 0;
    }

    .section6 ul li p{
        width: 90%;
    }

    .section9_slider .slick-slide {
        margin: 0 10px;
    }

    .section9_slider .slick-list {
        margin: 0 -10px;
    }

    .section9{
        padding : 50px 0;
    }

    .section9 ul {
        margin-left: 5%;
    }

    .section9 ul li {
        height: 300px;
    }

    .section12 ul li p {
        width: 100%;
    }

    .section12 ul li {
        padding: 20px;
        height: 430px;
    }

    .section13 ul {
        margin-left: 5%;
    }

    .section13 .slick-slide {
        margin: 0 10px;
    }

    .section13 .slick-list {
        margin: 0 -10px;
    }

    .section14 .flex_box{
        width: 90%;
        margin: 0 auto;
    }

    .section14 .left,
    .section14 .right {
        width: 50%;
    }

    .section15 .flex_box{
        flex-direction: column;
        gap: 20px;
    }

    .section15 .btns .btn {
        width: 50%;
        padding: 30px;
    }

    .section15 .btns .btn p {
        margin-top: 25px;
    }





}