@charset "UTF-8";


header {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #C8C8C8;
}

header.hd-scroll {
    position: sticky;
    top: 0px;
    z-index: 9999;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1820px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.logoBox-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logoBox {
    width: 275px;
    height: 39px;
}

.logoBox .logo {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images_new/logo.png) no-repeat center/contain;
}


.logoBox-wrap .slogan {
    width: 228px;
    height: 36px;
    background: url(../images_new/slogan.png) no-repeat center/contain;
}

.nav-right-conts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.navBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.nav-items {
    position: relative;
    font-size: 1.25rem;
    text-align: center;
    transition: all .3s;

}

.nav-items:hover,
.nav-active {
    color: #5CB531;
    text-decoration-line: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #f9ebb3;
    text-underline-offset: -1px;
}

.shortcut-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 176px;
    gap: 10px;
    background-color: #F4FFEE;
    border: 2px solid #5CB531;
    border-radius: 30px;
    color: #5CB531;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
}

.shortcut-icon {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images_new/shortcuts.png) no-repeat center/contain;
}