@charset "utf-8";

/* #################################### Font #################################### */

/* EUROPA - FONTS */
@import url('https://use.typekit.net/chu3cqy.css');

/* #################################### HTML Basic Set #################################### */



* {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-base);
    font-family: var(--font-KR-base);
    font-weight: 400;
    color: var(--base-color-black);
    word-break: keep-all;
}


::-webkit-scrollbar {
    display: none;
}

*,
:before,
:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

html,
body {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    color: var(--font-color-base);
    font-family: var(--font-KR-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-base);
    background: var(--background-color-base);
    color: var(--base-color-white);
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-KR-base);
    /* background: var(--background-color-base); */
    color: var(--base-color-white);
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
a {
    display: block;
}

ul,
ol,
li,
dt,
dd,
dl {
    list-style: none;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--base-color-black);
    text-decoration: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
}

select::picker-icon {
    content: '';
    width: 15px;
    margin-left: 5px;
    background:url('../img/lan_arrow.svg') no-repeat 97% 50%/15px auto;
}

select::-ms-expand{
    display:none; /*for IE10,11*/
}

select {
  &, &::picker(select) {
    appearance: base-select;    
  }
}

option::checkmark {
    display: none;
}

::picker(select) {
    border: 1px solid rgb(172, 172, 172);
}

option {
    padding: 15px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
}

button {
    background: none;
    cursor: pointer;
}

/* #################################### Contents fixed #################################### */
.fixed-init {
    position: fixed;
    height: 100svh;
    overflow: hidden;
}

/* #################################### Text Word Align#################################### */
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
textarea {
    word-break: keep-all;
}



/* #################################### 공통 스타일 #################################### */

/* --------------------웹접근성------------------ */

.reader_text {
    position:absolute;
    font-size:0;
    line-height:0;
    overflow:hidden;
}

/* --------------------max width------------------ */
.max_width {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-pc);
}

/* --------------------섹션------------------ */

.section {
    width: var(--max-width);
    padding: var(--section-margin) 15px;
    margin: 0 auto;
}


.section_margin {
    margin: var(--all-sec-margin);
}

.section_padding_mo {
    padding: var(--all-sec-padding_mo);
}

/* -------------------- 텍스트 효과------------------ */

.ko_font {
    font-family: var(--font-KR-base);
}

.ko_font_point {
    font-family: var(--font-KR-point);
}

.color_white {
    color: var(--base-color-white);
}

.color_point {
    color: var(--signature-color);
}

.br {
    display: block;
}




/* -------------------- 공통 클래스 ------------------ */
.sub_inner{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--padding-pc);
}

.sub_inner2{
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
}

.sub-title-m{
    font-size: var(--title-point-font-size);
    font-weight: 700;
}

.btn-custom {
    padding: 20px 50px;
    background-color: var(--signature-color);
    align-items: center;
    justify-content: center;
    color: var(--base-color-white);
    font-size: var(--sub-font-size);
    display: inline-flex;
}
.btn-custom:hover {
    background-color: var(--base-color-black);
    transition: 0.6s;
}
.btn-custom a {
    font-size: inherit; /* 부모 그대로 물려받게 */
    color: inherit;
}
.btn-custom2 {
    padding: 20px 55px;
    background-color: var(--base-color-darkblack);

    align-items: center;
    justify-content: center;
    color: var(--base-color-white);
    font-size: var(--sub-font-size);
    display: inline-flex;
}
.btn-custom2:hover {
    background-color: var(--signature-color);
    transition: 0.6s;
}
.btn-custom2 a {
    font-size: inherit; /* 부모 그대로 물려받게 */
    color: inherit;
}



/* -------------------- 팝업레이어 ------------------ */
#hd_pop {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

#hd_pop.has_popup {
    display: block;
}

#hd_pop > h2 {
    display: none;
}

.hd_pops {
    position: absolute;
    background: var(--base-color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    pointer-events: auto;
}

.hd_pops_con {
    overflow: auto;
}

.hd_pops_con img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hd_pops_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--base-color-black);
}

.hd_pops_footer button {
    border: none;
    color: var(--base-color-white);
    cursor: pointer;
    font-size: 13px;
    padding: 12px 16px;
    transition: opacity 0.3s ease;
    background: none;
}

.hd_pops_footer button:hover {
    opacity: 0.7;
}

.hd_pops_footer .hd_pops_reject {
    text-align: left;
}

.hd_pops_footer .hd_pops_reject strong {
    color: var(--signature-color);
}

.hd_pops_footer .hd_pops_close {
    background-color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.hd_pops_footer .hd_pops_close .fa-times {
    color: rgba(255, 255, 255, 0.6);
}

/* hd_pops_3 개별 스타일 */
#hd_pops_3 {
    left: clamp(30px, 5vw, 80px) !important;
    top: 50% !important;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media all and (max-width: 860px) {
    .hd_pops {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
        max-width: 90vw;
    }

    .hd_pops_con {
        width: auto !important;
        max-width: 90vw;
        height: auto !important;
        max-height: 70vh;
    }
}


@media all and (max-width: 860px) {
    .section {
        width: 100%;
    }

            .sub_inner, .max_width {
        padding : 0 var(--padding-mo);
    }

    /* ------------------------------------- 공통 ------------------------------------- */
/* .sub_inner {
    padding: 0 15px;
} */
}


