@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.en {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}

.serfi {
    font-family: "IBM Plex Serif", serif;
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
    word-break: keep-all;
    word-wrap: break-word;
}

.gothic {
    font-family: 'century gothic', sans-serif;
}

/* 긴 텍스트나 URL 등이 있는 요소들 */
p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: keep-all;
    word-wrap: break-word;
}

/* 이메일, URL 등 긴 텍스트가 있는 요소 */
a[href^="mailto:"],
a[href^="tel:"],
.break-word {
    word-break: break-all;
}

ul,
li,
ol {
    list-style: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: initial;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p {
    margin-bottom: 0;
}

:root {
    font-size: 14px;
    /* 기본 폰트 크기 */
    --bs-primary: #A3337D;
    --bs-primary-rgb: 163, 51, 125;
    --bs-secondary: #7a2e4d;
    --bs-secondary-dark: #4e1d2f;
    --container-px: 0 0;
    --section-padding: 12%;
    /* Button styles */
    --btn-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    --btn-hover-bg: var(--bs-primary-dark);
    --btn-active-bg: var(--bs-primary-dark);
    --btn-hover-border: var(--bs-primary-dark);
    --btn-active-border: var(--bs-primary-dark);
}

/* Bootstrap button overrides */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--btn-hover-bg);
    --bs-btn-hover-border-color: var(--btn-hover-border);
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--btn-active-bg);
    --bs-btn-active-border-color: var(--btn-active-border);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
}

/* Active 상태일 때 추가 스타일 */
.btn-primary:active,
.btn-primary.active {
    background-color: var(--btn-active-bg) !important;
    border-color: var(--btn-active-border) !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
}

/* Focus 상태 스타일 */
.btn-primary:focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* .site-wrap {
    margin-top: 70px;
} */

@media (max-width: 575px) {
    :root {
        --container-px: 0 1rem;
    }
}

/* sm: 576px 이상 */
@media (min-width: 576px) and (max-width: 767px) {
    :root {
        --container-px: 0 1rem;
    }
}

/* md: 768px 이상 */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --container-px: 0 1.5rem;
    }
}

/* lg: 992px 이상 */
@media (min-width: 992px) and (max-width: 1399px) {
    :root {
        --container-px: 0 2.5rem;
    }
}

/* xl:1200px 이상 */



.break-word {
    word-break: break-word;
}


#header-navbar {
    z-index: 10;
    background: transparent;
    box-shadow: none !important;
    height: 70px;

}


#header-navbar i.bi {
    color: #fff;
}

#header-navbar .nav-link {
    color: #fff;
}

.logo-size {
    width: 180px;
    display: inline-block;
    background-image: url("../img/logo_w.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 8px;

}

#header-navbar.active {
    background-color: rgba(255, 255, 255, 0.7);
}

#header-navbar.active i.bi {
    color: #000 !important;
}

#header-navbar.active .logo-size {
    background-image: url("../img/logo.png") !important;
}

#header-navbar.active .nav-link {
    color: #000;
}

@media (max-width: 992px) {

    .logo-size {
        width: 125px;

    }

}

/*footer*/
.site-footer-wrap {
    background-color: #f9f7f6;
}

.site-footer-wrap .logo {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
}

/*header*/
.site-icon {
    font-size: 1.25rem;
    margin: 0 0.2rem;
}

#header-navbar .logo {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 575.98px) {
    .logo-size img {
        object-fit: contain;
    }

    .site-navbar {
        padding: 0.5rem 0;
    }
}

.main-banner {
    width: 100%;
    height: 520px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.main-banner .contents {
    opacity: 0;
    transform: translateY(50px);
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.container-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--container-px);
}



/* 공통 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeInMove {
    0% {
        opacity: 0;
        transform: translate(-150px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes widthAni {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
        /* active 상태에서 width를 100%로 변경 */
    }
}

/* sm: 576px 이상 */
@media (max-width: 767px) {
    :root {
        --section-padding: 0;
    }
}

/* md: 768px 이상 */
@media (min-width: 768px) {
    :root {
        --section-padding: 2rem;
    }
}

@media (min-width: 992px) {
    :root {
        --section-padding: 12%;
    }
}


.section-padding-left {
    padding-left: var(--section-padding) !important;
}

.button {
    position: relative;
    padding: 0 2rem 0.3rem 2rem;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.button::before {
    content: "";
    position: absolute;
    right: -4px;
    bottom: 8px;
    width: 25px;
    height: 2px;
    background: #fff;
    z-index: 3;
    transform: rotate(40deg);
    transition: all 0.5s ease-in-out;
}

.button::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: #fff;
    z-index: 3;
    transition: all 0.3s ease-in-out !;
}

.text-shadow {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);

}

.button.arrow-black::before {
    background: #333;
}

.button.arrow-black::after {
    background: #333;
}

.button.arrow-primary::before {
    background: var(--bs-primary);
}

.button.arrow-primary::after {
    background: var(--bs-primary);
}

.division {
    position: relative;
}

.division::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
    height: 2px;
    background-color: #000;
}

.gray {
    color: #cbcbcb;
}

/* .btn:hover 효과 제거 */
/* .btn:hover,
.button:hover,
.btn:focus,
.button:focus {
    background: inherit !important;

    border-color: inherit !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: none !important;
    filter: none !important;

} */

/* btn-primary, btn-outline-primary 등은 hover/focus에도 원래 스타일 유지 */
.btn-primary:hover,
.btn-primary:focus {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: transparent !important;
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

div#google_translate_element div.goog-te-gadget-simple {}

div#google_translate_element div.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
}

div#google_translate_element * {
    color: white !important;
    font-size: 1rem;
}

.active div#google_translate_element * {
    color: #000 !important;
}

.goog-te-gadget-icon {
    display: none !important;
}