section.section {
    position: relative;
}

section.main_banner .main_banner_bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

section.main_banner .main_banner_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.main_banner .banner_content {
    display: flex;
    justify-content: flex-end;
    height: 550px;
    align-items: center;
}

section.main_banner .banner_content .info {
    text-align: center;
    padding-right: 70px;
}

section.main_banner .banner_content .info h3 {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: flex-end;
    line-height: 1;
    column-gap: 10px;
    text-shadow: 0 4px 6px rgb(0 0 0 / 25%);
}

section.main_banner .banner_content .info .t1 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3em;
    margin: 25px 0;
    text-shadow: 0 4px 6px rgb(0 0 0 / 25%);
}

section.main_banner .banner_content .info .t2 {
    font-size: 16px;
    font-weight: 500;
    color: #108697;
    line-height: 1.3em;
    border: 1px solid #108697;
    padding: 10px 15px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,20%);
}

section.main_banner .banner_content .info .btn_wrap ul li a {
    display: flex;
    color: #fff;
    background: #20C997;
    height: 35px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 15px;
    position: relative;
}

section.main_banner .banner_content .info .btn_wrap ul {
    display: flex;
    padding-left: 60px;
    margin-top: 25px;
    column-gap: 15px;
}


section.main_banner .banner_content .info .btn_wrap ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #ffffff3b;
    transition: all .3s ease;
}

section.main_banner .banner_content .info .btn_wrap ul li a:hover:after {
    width: 100%;
}

section.link_section_0 .section_container > ul {
    display: flex;
    justify-content: center;
    margin-top: -110px;
}

section.section.link_section {
    padding-bottom: 100px;
}

section.link_section .section_container {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    padding-left: 10px;
}

section.link_section .link_content ul {
    display: flex;
    margin-left: -13px;
    flex-direction: column;
}

section.link_section .link_content.community ul {
    flex-direction: row;
    align-items: baseline;
}

section.link_section .link_content ul > li:not(:first-child) {
    margin-top: -15px;
}

section.link_section .menu_title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

section.link_section .bg img {
    width: 100%;
    height: 100%;
}
section.link_section .bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

section.link_section .link_content ul li a img {
    transition: all .3s ease;
}

section.link_section .link_content ul li a:hover img {
    transform: translateY(-5px);
}

@media screen and (max-width:767px) {
    section.main_banner .banner_content {
        height: auto;
        justify-content: center;
        padding: 80px 0;
    }
    section.main_banner .banner_content .info {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px 20px;
        background-color: #00000030;
    }
    section.main_banner .banner_content .info .t1 {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.3em;
        margin: 15px 0 25px;
        padding-left: 0;
        text-align: center;
    }
    section.main_banner .banner_content .info .t2 {
        font-size: 13px;
        font-weight: 500;
        color: #108697;
        line-height: 1.3em;
    }

    section.main_banner .banner_content .info .btn_wrap{
        display: none;
    }

    section.section.link_section {
        padding: 20px 15px 100px;
    }

    section.link_section .bg{
        display: none;
    }

    section.link_section .section_container {
        display: flex;
        column-gap: 20px;
        flex-direction: column;
        row-gap: 20px;
        padding: 0;
    }

    section.link_section .menu_title {
        font-size: 22px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 10px;
        text-align: center;
    }

    section.link_section_0 .section_container > ul {
        display: flex;
        justify-content: center;
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    section.link_section .link_content ul {
        margin-left: 0;
    }

    section.link_section .link_content.community ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    section.link_section .link_content.community ul li a img {
        width: 100%;
    }
    section.link_section .link_content.community ul li a {
        width: 100%;
    }
    
    section.link_section_0 .section_container > ul {
        display: flex;
        justify-content: center;
        margin-top: 0;
        flex-direction: column;
    }

    section.main_banner .banner_content .info h3 {
        font-size: 32px;
    }
}