
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

@font-face {
    font-family: 'GongGothicLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --main-color: #0A6FAE;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-x: hidden;
}

/**
box-sizing: border-box;를 사용하면 padding과 border가 요소의 내부 너비에 포함되므로, 디자인을 더 예측 가능하게 만들고, 레이아웃을 더 쉽게 제어
*/
* {
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    margin: 0;

    color: #342f2d;
    
    overflow-x: hidden;
    -webkit-overflow-x: hidden;

    -webkit-animation: fadeEffect 0.8s;
    animation: fadeEffect 0.8s;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
}

@media screen and (max-width: 1500px) {
    .container {
        max-width: 100vw;
        margin: 0;
        padding: 0 15px;
    }
}

section {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    min-height: 900px;
}

section.container {
    padding: 200px 0;
    word-break: keep-all;
}

.section_title {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #0A6FAE;
    margin-bottom: 1.5em;
}

.section_title_description {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
}

@media screen and (max-width : 640px) {
    section.container {
        padding: 50px 30px;
    }
}

/***************** Subpage Hero ****************/
.sub-hero {
    height : 450px;
}

@media screen and (max-width: 860px) {
    .sub-hero {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 160px;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

a {
	color: #342f2d;
	text-decoration : none;
	cursor: pointer;
}

a:hover {
	color: #0085CF;
	cursor: pointer;
	text-decoration : none;
}

button {
    border: none;
    cursor: pointer !important;
}

h1 {
    font-size: 50px;
	font-weight: 700;
    text-align: center;
}

h2 {
    margin: 0;
    font-size: 50px;
	font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 40px;
	font-weight: 600;
    text-align: center;
}

h4 {
	font-weight: inherit;
}

h5 {
	font-weight: inherit;
}

h1, h2, h3, h4, h5, p, span,
input, textarea, button, a {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.title_md {
    display: inline-flex;
    align-items: center;
    height: 18px;
    --border-left: 3px solid #0085CF;
    --padding-left: 7px;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
}

.title_sm {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(180deg , white 49%, #e2efff 50%);
    height: 16px;
    margin-bottom: 10px;

    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -1px;
}

.margin-0 {
    margin: 0 !important;
}

.width-100 {
    width: 100%;
}

.width-50 {
    width: 50%;
}

.width-50:nth-child(odd) {
    padding-right: 20px;
}

.flex-row {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    row-gap: 30px;
}

/********************************* Main Content *********************************/

.main-contents {
    display: flex;
    max-width: 1300px;
    margin: 30px auto;
}

.main-left {
    width: 80%;
    padding-right: 20px;
}

.main-full {
    width: 100%;
}

@media screen and (max-width: 1200px) {

    .main-contents {
        padding: 0 15px;
    }
}

@media screen and (max-width: 980px) {

    .main-contents {
        width: auto;
    }

    .main-left {
        width: 100%;
    }
}

/********************************* Button *********************************/
.mainBtn {
    cursor: pointer;
    
    margin-top: 20px;
    display: inline-block;
    height: auto !important;
    padding: 10px 20px !important;
    border : transparent;
    border-radius: 20px;
    background-color: #0085CF;
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.mainBtn:hover {
    background-color: #233259;
}

.subBtn {
    cursor: pointer;
    
    margin-top: 20px;
    display: inline-block;
    height: auto !important;
    padding: 10px 20px !important;
    border : 1px solid rgba(0,0,0,0);
    border-radius: 20px;
    background-color: #e2efff;
    color: black;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}

.subBtn:hover {
    background-color: #ebf3ff;
    border: 1px solid #0085CF;
    color: #0085CF;
}

.delBtn {
    cursor: pointer;
    
    margin-top: 20px;
    display: inline-block;
    height: auto !important;
    padding: 10px 20px !important;
    border : 1px solid rgba(0,0,0,0);
    border-radius: 20px;
    background-color: #edf1f7;
    color: black;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}

.delBtn:hover {
    background-color: #f9f9f9;
    border: 1px solid #0085CF;
    color: #0085CF;
}

.arrow_button {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px; 

    width: 128px;
    height: 33px;
    
    margin-top: 40px;
    padding-left: 20px;
    border-radius: 200px;
    
    font-size: 13px;
    color: white;
}

.arrow_button.blue {
    background: #0085CF;
}

.arrow_button.transparent {
    background: transparent;
    border: 1px solid white;
}

.arrow_button:hover {
    color: rgba(255, 255, 255, 0.6);
    gap: 7px; 
    text-decoration: none;
}

.grayBtn:hover {
    cursor: pointer;
}

@media screen and (max-width : 680px) {
    .arrow_button {
        margin-top: 20px;
    }
}

/********************************* Text Style *********************************/
.essential_mark {
    color: red;
    margin-left: 5px;
}

.highlight {
    color: #0085CF;
}

.divide_line_vertical {
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
}

.divide_line_horizonal {
    height: 100%;
    margin: 0 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.long_text {
    display: inline-block;
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 80%;
    margin-top: 3px;
}

.terms {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px;
}

.terms h3 {
    text-align: left;;
    font-size: 30px;
    font-weight: 600;
    margin-top: 40px;
}

.terms h4 {
    font-weight: 500;
    margin-top: 40px;
    line-height: 32px;
}

.terms p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

.terms span {
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin: 5px 0 5px 10px;
}

.terms span:first-child {
    margin: 10px 0 5px 10px;
}

.terms span.personal_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 36px;
}

/************ BreadCrumb Section ************/
.breadcrumb {
    display: inline-flex;
    /*justify-content: flex-end;*/
    width: 80%;
    margin: 40px auto auto auto;
}

.breadcrumb ul li:last-child{
    font-size : 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 1px;
}

.breadcrumb ul li a{
    display: inline-flex;
    height: 14px;
    font-size : 20px;
    font-weight: 600;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.breadcrumb ul li:has(~ li:not([style*="display:none"])) a::after{
    display:inline-block;
    width:30px;
    text-align:center;
    content:"·";
}

/*.breadcrumb ul li:not(:last-child) a::after {
    display: inline-block;
    width: 30px;
    text-align: center;
    content: "·";
}*/

/*.breadcrumb ul li:nth-child(-n+2) a::after{
    display: inline-block;
    width: 30px;
    text-align: center;
    content: "·";
}*/

.breadcrumb ul li a:hover{
    text-decoration: none;
}

/******************************** Search Input ********************************/
@media screen and (max-width:640px) {
    .responsiveNone {
        display: none;
    }
}

.search {
    max-width: 1300px;
    width: 100%;
    height: 50px;
    min-height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.searchInputArea {
    position: relative;
}

.searchInput {
    width: 320px;
    height: 50px;
    padding: 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
}

.searchIcon {
    position: absolute;
    right: 20px;
    top: 13px;
    font-size: 17px;
}

@media screen and (max-width:1300px) {
    .search {
        justify-content: center;
    }
    
    .searchInputArea {
        margin-right: 20px;
    }
}
@media screen and (max-width:860px) {
    .search {
        justify-content: center;
    }

    .searchInputArea {
        margin-right: 0;
    }
}

@media screen and (max-width:640px) {

    .searchInputArea {
        width: 92%;
    }

    .searchInput {
        width: 100%;
    }
}

#loader{
    display: none;
    justify-content: center;
    align-items: center;

    position : fixed;
    top: 0;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    margin: auto;
    background-color: rgba(0, 149, 255, 0.3);
  }

  #loader.active {
    display: inline-flex;
    animation: fadeIn 0.3s ease-in;
  }
  
  #loader svg path,
  #loader svg rect{
    fill: #0085CF;
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/************ Support Banner *********/

.box_support {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 70px;
    background-color: var(--main-color);
    border-radius: 20px;
    
    color: white;
}

.box_support img {
    position: absolute;
    width: 25%;
    right: 0;
    bottom: 0;
}

.box_support span {
    font-size: 20px;
}

.box_support p {
    font-size: 40px;
    line-height: 55px;
    text-align: center;
}

.box_support a {
    display: inline-block;
    color: white;
    padding: 10px 50px;
    border: 1px solid white;
    border-radius: 25px;
}

@media screen and (max-width: 640px){
    .box_support {
        padding: 30px;
    }

    .box_support span {
        font-size: 18px;
        text-align: center;
    }

    .box_support p {
        font-size: 22px;
        line-height: 36px;
        text-align: center;
        margin: 50px 0;
    }
}

/************* Scroll To Top Button ***************/
#scrollTopBtn, #logoutBtn {
    display: none; 
    position: fixed; 
    bottom: 50px; 
    right: 50px; 
    z-index: 99;

    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;

    border: none;
    outline: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 15px 17px;
    border : 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    
    transition: opacity 0.3s !important;
}

#scrollTopBtn {
    bottom: 50px; 
    right: 50px; 
    background-color: #0A6FAE;
}

#logoutBtn {
    bottom: 50px; 
    right: 110px; 
    background-color: #0A6FAE;
}

#logoutBtn:hover,
#scrollTopBtn:hover {
    color: #0A6FAE;
    background-color: white;
}