@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); 

@import url('//fonts.googleapis.com/earlyaccess/notosanskr.css');

/* css 드래그 이벤트 차단 */
.disableDrag {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.grecaptcha-badge{
    visibility: hidden;
}

* {
    transition: 0.3s;
}

img {
  -webkit-user-drag: none; /* 드래그 방지 (크롬) */
  -moz-user-drag: none; /* 드래그 방지 (파이어폭스) */
  -o-user-drag: none;
  user-drag: none;
}

/* header */
#header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 95;
}

.header-container {
    box-sizing: border-box;
    padding: 0px 40px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    width: 161px;
    position: absolute;
    left: 48px;
    cursor: pointer;
}

#header nav {
    margin: 0;
    height: 100%;
}

#header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

#header nav>ul>li {
    height: 100%;
}

#header nav>ul>li>a {
    display: flex;
    box-sizing: border-box;
    width: 150px;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #505050;
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    cursor: pointer;
    text-decoration: none;
}

#header nav>ul>li>a:hover {
    color: #111;
    background: #F1F1F1;
}
  
.more-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    display: none;
    padding-bottom: 20px;
}

.more-nav-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
  
.more-nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.more-nav-wrap a {
    display: flex;
    box-sizing: border-box;
    width: 150px;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    color: #505050;
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.more-nav-wrap a:hover {
    color: #00754A;
}

.mo-menu-open {
    display: none;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    padding: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    cursor: pointer;
    position: absolute;
    left: 4px;
}

.mo-menu-open:hover {
    background: rgba(239, 239, 239, 0.90);
}

.go-kor {
    position: absolute;
    right: 48px;
}

.go-kor:hover svg>path:first-child {
    stroke: #00754A;
}

.mo-menu .go-kor {
    position: static;
}


/* 모바일 메뉴 */
.mo-menu {
    max-width: 600px;
    width: 80%;
    height: 100%;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    background: #FFF;
    box-shadow: 4px 0px 12px 0px rgba(0, 0, 0, 0.10);
}

.mo-menu-top {
    height: 66px;
    box-sizing: border-box;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #DBDBDB;
}

.mo-menu-bottom {
    width: 100%;
    height: calc(100% - 66px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.mo-menu .go-kor {
    box-sizing: border-box;
    padding: 12px 16px;
}

.menu-close {
    display: flex;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    padding: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    background: transparent;
}

.menu-close:hover {
    background: rgba(239, 239, 239, 0.90);
}

.mo-menu nav {
    width: 100%;
}

.mo-menu nav>ul a {
    width: 100%;
    color: #505050;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    text-align: center;
    box-sizing: border-box;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mo-menu-name {
    width: 100% !important;
    border-bottom: 1px solid #F1F1F5;
    justify-content: space-between !important;
}

.mo-menu nav>ul a:hover {
    color: #00754A !important;
}

.mo-more-nav {
    background: #F7F7F7;
    display: none;
    box-sizing: border-box;
    padding: 20px;
}

.mo-more-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.mo-more-nav a {
    padding: 0 !important;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* footer */
footer {
    width: 100%;
    border-top: 1px solid #E5E5E5;
    background: #E7EAE9;
    display: flex !important;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer-top-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 48px;
    border-bottom: 1px solid #E5E5E5;
}

.footer-top-div {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-sns {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding-left: 20px;
}

.footer-top-div a {
    color: #505050;
    font-family: "Noto Sans CJK KR";
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; /* 125% */
    letter-spacing: -0.4px;
}

.footer-top-div hr {
    width: 1px;
    height: 10px;
    background: #BFC0C0;
    border-left: none;
    border-right: 1px solid #BFC0C0;
}

.footer-big-container {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 48px;
}

.footer-big-container>p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.35px;
}

.footer-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-logo {
    width: 97px;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-wrap>p {
    color: #767676;
    font-size: 13px;
    line-height: 18px; /* 138.462% */
    letter-spacing: -0.325px;
}

.footer-award {
    width: 632px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.footer-right-div>b {
    color: #505050;
    font-size: 14px;
    line-height: 20px; /* 141.667% */
    letter-spacing: -0.35px;
    text-align: right;
}

.footer-call {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: "Pretendard";
    color: #111;
    font-size: 24px;
    line-height: 34px; /* 141.667% */
    font-weight: 700;
    letter-spacing: -0.6px;
}

.agree-modal {
    position: fixed;
    top: 2.5vh;
    width: 1080px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    z-index: 1005;
    box-sizing: border-box;
    padding: 0 48px;
    padding-top: 60px !important;
    padding-bottom: 20px !important;
    justify-content: initial !important;
    height: 95vh;
    gap: 20px !important;
    display: none;
}
  
.agree-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    cursor: pointer;
}
  
.agree-close > svg {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.80);
    padding: 6.4px 6.4px 5.6px 5.6px;
}
  
.agree-close>svg:hover {
    background: #000;
    transition: 0.3s;
}
  
.agree-modal>.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
  
.p24 {
    color: #111;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.6px;
}
  
.p40 {
    color:  #111;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 130% */
    letter-spacing: -1px;
}
  
.content-div {
    margin-top: 20px;
    height: 81%;
    overflow: hidden;
}
  
.agree-modal>.content-div>.content {
    height: 100%;
    overflow: scroll;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #505050;
    padding-bottom: 20px;
    word-break: keep-all;
}
  
.agree-logo {
    width: 150px;
}
  
.mo-tit {
    display: none;
}
  
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 99 !important;
}

/* montserrat 폰트 */
.montserrat {
    font-family: "Montserrat";
}

/* font-weight */
.bold {
    font-weight: 700 !important;
}

.semibold {
    font-weight: 600 !important;
}

.normal {
    font-weight: 400 !important;
}

.primary {
    color: #00754A !important;
}

.g {
    color: #00693E !important;
}

.w {
    color: #FFF !important;
}

.sub {
    color: #505050 !important;
}

.sky {
    color: #D2EADF !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left !important;
}

/* 900px */
.mi-br {
    display: none;
}

/* 768px */
.ta-br {
    display: none;
}

/* 650px */
.mo-br {
    display: none;
}

/* 480px */
.xs-br {
    display: none;
}


/* 페이지 이동 */
#header .go-page-div {
    position: absolute;
    right: 48px;
}

.go-page {
    display: flex;
    width: 160px;
    box-sizing: border-box;
    padding: 5px 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    border: 1px solid rgba(0, 105, 62, 0.60);
    background: #FFF;
    color: #00693E;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    cursor: pointer;
    position: relative;
    z-index: 52;
}
  
.go-page:hover {
    background: #F1F1F1;
}
  
.go-page.show {
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}
  
.toggle-page {
    width: 160px;
    position: absolute;
    right: 0;
    top: 20px;
    display: none;
    background: #fff;
    border: 1px solid rgba(0, 105, 62, 0.60);
    cursor: pointer;
    border-radius: 0 0 15px 15px;
    z-index: 50;
    border-top: none;
    padding-top: 10px;
    overflow: hidden;
}
  
.toggle-page a {
    display: flex;
    width: 100%;
    color: #00693E;
    padding: 5px 4px;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    gap: 2px;
}

.toggle-page a img {
    width: 20px;
}
  
.toggle-page a:hover {
    background: #F1F1F1;
    color: #00693E;
}

.mo-menu .go-page-div {
    width: 100%;
    position: relative;
    right: 0;
    box-sizing: border-box;
    padding: 0 16px 24px; 
}

.mo-menu .go-page.show {
    border-radius: 0 0 15px 15px;
    border-bottom: 1px solid rgba(0, 105, 62, 0.60);
    border-top: none;
}

.mo-menu .toggle-page {
    border-radius: 15px 15px 0 0;
    border-top: 1px solid rgba(0, 105, 62, 0.60);
    border-bottom: none;
    right: unset;
    left: 16px;
    top: -60px;
    padding-top: 0;
}

@media(max-width: 1400px) {
    #header nav>ul>li>a  {
        width: 130px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.4px;
    }
    .more-nav-wrap a {
        width: 130px;
        font-size: 14px;
        letter-spacing: -0.35px;
    }
}

@media(max-width: 1280px) {
    .logo {
        width: 140px;
        left: 40px;
    }
    .go-kor, #header .go-page-div {
        right: 40px;
    }
    #header nav>ul>a {
        width: 110px;
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .footer-top-container {
        padding: 15px 40px;
    }
    .footer-big-container {
        flex-direction: column;
        gap: 10px;
        padding: 20px 40px;
    }
    .footer-logo {
        display: none;
    }
    .footer-wrap {
        gap: 4px;
    }
    .footer-right {
        align-items: flex-start;
        gap: 12px;
    }
    .footer-call {
        justify-content: flex-start;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.35px;
    }
}

@media(max-width: 1200px) {
    .agree-modal {
        width: 100%;
        left: 0;
        top: 0;
        min-height: 100vh;
        height: 100%;
        transform: none;
    }
}

@media(max-width: 1150px) {
    .logo {
        position: static;
    }
    #header {
        height: 65px;
        padding: 4px;
        justify-content: center;
    }
    #header nav {
        display: none;
    }
    #header .go-kor, #header .go-page-div {
        display: none;
    }
    .mo-menu-open {
        display: flex;
    }
    .more-nav {
        display: none !important;
    }
}

@media(max-width: 1100px) {
    .footer-top-container {
        padding: 15px 10px;
    }
    .footer-big-container {
        padding: 20px 10px;
    }
}

@media(max-width: 1024px) {
    
}

@media(max-width: 900px) {
    .footer-top-container {
        justify-content: center;
    }
    .footer-top-div {
        gap: 15px;
    }
    .footer-sns {
        display: none;
    }
    .mi-br {
        display: block;
    }
    .mi-no-br {
        display: none;
    }
}

@media(max-width: 768px) {
    .agree-modal {
        padding: 0 20px;
    }
    .ta-br {
        display: block;
    }
}

@media(max-width: 650px) {
    #header {
        height: 50px;
    }
    .logo {
        width: 128px;
    }
    .footer-top-container {
        padding: 10px;
    }
    .footer-top-div {
        gap: 10px;
    }
    .footer-top-div a {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .agree-modal {
        gap: 40px !important;
    }
    .agree-modal>.title>.p24 {
        font-size: 20px;
        line-height: 28px; /* 140% */
        letter-spacing: -0.5px;
    }
    .agree-modal>.title>.p40 {
        font-size: 28px;
        line-height: 38px; /* 135.714% */
        letter-spacing: -0.7px;
    }
    .agree-logo {
        width: 120px;
    }
    .mo-br {
        display: block;
    }
}

@media(max-width: 550px) {
    .footer-award {
        width: 100%;
    }
}

@media(max-width: 480px) {
    .xs-br {
        display: block;
    }
    .xs-no-br {
        display: none;
    }
}

