.visual .m_search {
    display: none;
}
.visual .quickLink {
    display: none;
}
.visual {
    height: auto;
    padding: 80px 0;
}
.main-section-wrap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.short-cut-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.short-cut-item {
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background-color: #f2f9ff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.short-cut-item img {
    width: 100px;
    margin-top: -20px;
}

.short-cut-item:hover {
    background: linear-gradient(140deg, #499cff, #0054b9);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translate(-5px, -5px);
}


.main-banner-area {
    height: 330px; flex:1;
    background-color: #fff;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.banner-btns button {
    font-size: 0;
    width: 25px;
    height: 25px;
    background-image: url('../img/banner-controls.png');
    background-repeat: no-repeat;
}
.banner-pause-play.pause {
    background-position: -32px 0;
}
.banner-next {
    background-position: -64px 0;
}
.banner-pause-play {
    background-position: -97px 0;
}
.pager-area {
    background-color: rgba(0,0,0,0.5);
    border-radius: 99px;
    font-size: 13px;
    padding: 3px 7px;
    color: #fff;
    position: absolute;
    z-index: 9;
    left: 15px;
    bottom: 15px;
}
.banner-btns {
    z-index: 9;
    display: flex;
    gap: 7px;
    right: 15px;
    bottom: 15px;
    position: absolute;
}
.pager-area .current-page {
    font-weight: 700;
}
.pager-area .dots {
    margin-left: 5px;
    letter-spacing: 5px;
    font-weight: 700;
}
.main-banner {
    width: 100%; height: 100%;
}
.banner-item {
    width: 100%; height: 100%;
}
.banner-item img {
    width: 100%; height: 100%;
}
.main-banner-area .slick-list {
    height: 100%;
}
.main-banner-area .slick-track {
    height: 100%;
}

.mobile-short-cut-area {
    /*display: grid;*/
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}
.mobile-short-cut-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 7px;
    border-radius: 5px;
    font-weight: 600;
    word-break: keep-all;
    font-size: 16px;
    gap: 10px;
}
.mobile-short-cut-item img {
    height: 40px;
}

@media screen and (max-width:1440px) {
    .main-section-wrap {
        width: 100%;
        padding: 0 10px;
    }
    .short-cut-item {
        width: 11.11vw;
        height: 11.11vw;
    }
    .main-banner-area {
        height: 22.91667vw;
    }
    .short-cut-item img {
        width: 7vw;
        margin-top: -1.38889vw;
    }
}
@media screen and (max-width:1023px) {
    .main-section-wrap {
        flex-direction: column;
        align-items: center;
    }
    .main-banner-area {
        width: 100%;
        margin-top: 20px;
    }
    .visual {
        padding: 0;
        padding-bottom: 20px;
    }
    .short-cut-area {
        display: none;
    }
    .mobile-short-cut-area {
        display: grid;
    }
    .main-banner-area .slick-track {
        height: 50vw;
    }
}
@media screen and (max-width:435px) {
    .mobile-short-cut-item {
        font-size: 3.7vw;
    }

}