.section1 {
    background-color: #ffdfd0;
    border-bottom: 4rem solid #ff5d15;
}
.section1 .content_wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.section1 .content_wrap .left{
    width: 60%;
}
.section1 .content_wrap .left h1{
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #0c1c48;
    gap: 5px;
    margin-bottom: 15px;
}
.section1 .content_wrap .left pre{
    font-size: 18px;
    line-height: 1.3;
}
.section1 .content_wrap .left a{
    font-size: 20px;
    color: #fff;
    background-color: #0b204b;
    padding: 10px 25px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.section1 .content_wrap .right{
    width: 40%;
    margin: 0;
    padding: 0;
}
.section1 .content_wrap .right img{
    width: 100%;
}
.section2 {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
}
.section2 .btn_wrap {
    display: flex;
    gap: 15px;
}
.section2 .btn_wrap a {
    display: flex;
    flex-direction: column;
    width: 25%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #3b5141;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.section2 .btn_wrap a .menu {
    width: 100%;
}
.section2 .btn_wrap a .text-overlay1,
.section2 .btn_wrap a .text-overlay2,
.section2 .btn_wrap a .text-overlay3,
.section2 .btn_wrap a .text-overlay4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    white-space: nowrap;
}
.section3 {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section3 h2{
    font-size: 23px;
    font-weight: 800;
}
.section3 .btn_wrap {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}
.section3 .btn_wrap a{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}
.section3 .btn_wrap a img{
    width: auto;
    height: 50%;
    margin-bottom: 30px;
}
.section2 .btn_wrap .menu_mo {
    display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
    .section1 .content_wrap {
        padding: 0 30px;
    }
    .section2 {
        padding: 0 30px;
    }
    .section3 {
        padding: 80px 30px;
    }
    .section2 .btn_wrap a .text-overlay1, .section2 .btn_wrap a .text-overlay2, .section2 .btn_wrap a .text-overlay3, .section2 .btn_wrap a .text-overlay4 {
        white-space: unset;
    }
  
}
@media screen and (max-width: 767px) {
    .section1 {
        background-image: url('../img/main-banner.png');
        background-position: bottom right;
        background-repeat: no-repeat;
        background-size: 60%; 
    }
    
    .section1 .content_wrap {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        padding-top: 20px;
        height: 370px;
    }
    .section1 .content_wrap .left {
        width: 70%;
        padding-bottom: 20px;
    }
    .section1 .content_wrap .left h1 {
        display: flex;
        align-items: center;
        font-size: 20px;
        margin-bottom: 15px;
        white-space: nowrap;
    }
    .section1 .content_wrap .left h1 img {
        width: 15%;
    }
    .section1 .content_wrap .left pre {
        font-size: 16px;
        line-height: 1.3;
    }
    .section1 .content_wrap .left a {
        font-size: 16px;
        padding: 10px 25px;
        margin-top: 15px;
    }
    .section1 .right {
        display: none;
    }
    .section2 .btn_wrap .menu_mo {
        display: block;
        width: 100%;
    }
    .section2 .btn_wrap a .menu {
        display: none;
    }
    .section2 {
        width: 90%;
        max-width: 100%;
        margin: 40px auto;
    }
    .section2 .btn_wrap {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }
    .section2 .btn_wrap a {
        width: 100%;
    }
    .section2 .btn_wrap a .text-overlay1, .section2 .btn_wrap a .text-overlay2, .section2 .btn_wrap a .text-overlay3, .section2 .btn_wrap a .text-overlay4 {
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        font-size: 18px;
    }
    .section3 {
        text-align: center;
        width: 90%;
        max-width: 100%;
        padding: 40px 0;
    }
    .section3 h2 {
        font-size: 19px;
    }
    .section3 .btn_wrap {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .section3 .btn_wrap a {
        flex: 1 1 calc(50% - 15px);
        align-items: center;
        font-size: 18px;
        justify-content: center;
    }
    .section3 .btn_wrap a img {
        height: 40%;
        margin-bottom: 15px;
    }
}