/* common */

:root {
    --main: #005AFF;
    --font_1: "Montserrat", sans-serif;
    --font_2: 'VITRO Pride', sans-serif;
    --font_3: 'AtreiaOTF', sans-serif;
    --font_main: 'VITRO Core', sans-serif;
}


.viewMore {
    font-size: 24px;
    font-weight: 500;
    padding: 10px 60px;
    box-sizing: border-box;
    background: #2BBCFF;
    background: linear-gradient(90deg, rgba(43, 188, 255, 1) 0%, rgba(0, 90, 255, 1) 100%);
    border-radius: 100px;
    font-family: var(--font_1);
    color: #fff;
    display: inline-block;
    box-shadow: inset rgba(255, 255, 255, 0.2) 0px 8px 24px;
}

.viewMore_2 {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 40px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 100px;
    font-family: var(--font_1);
    color: #000;
    display: inline-block;
    box-shadow: 0px 0px 15px 5px #1BB3FF;
}


/* header */

#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

#header .inner {
    max-width: 810px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0px;
}

#header .gnb ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#header .gnb ul li {
    min-width: 130px;
    text-align: center;
}

#header .gnb ul li a {
    font-size: 24px;
    color: #fff;
}


/* footer */

#footer {
    background: #003769;
    padding: 90px 0px 70px;
}

#footer .inner {
    max-width: 1440px;
    margin: 0 auto;
}

#footer .ft_logo {
    margin-bottom: 80px;
}

#footer .ft_logo ul {
    display: flex;
    justify-content: center;
    gap: 53px;
    align-items: center;
}

#footer .ft_logo ul li img {
    max-height: 73px;
}

#footer .ft_content .ft_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#footer .ft_content .ft_top .util_nav ul {
    display: flex;
    align-items: center;
}

#footer .ft_content .ft_top .util_nav ul li {
    margin-right: 15px;
    border-right: 1px solid #fff;
    padding-right: 15px;
}

#footer .ft_content .ft_top .util_nav ul li:last-child {
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
}

#footer .ft_content .ft_top .util_nav ul li a {
    font-size: 18px;
    color: #fff;
    font-family: var(--font_2);
    line-height: 1;
}

#footer .ft_content .ft_top .sns_nav ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

#footer .ft_content .ft_top .sns_nav ul li a img {
    height: 24px;
}

#footer .ft_content .ft_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

#footer .ft_content .ft_info .info article {
    font-size: 12px;
    color: #fff;
    line-height: 1.8;
    font-family: var(--font_2);
}

#footer .ft_content .ft_bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#footer .ft_content .ft_bottom .logo img {
    height: 76px;
}

#footer .ft_content .ft_bottom .family {
    display: flex;
    gap: 60px;
}

#footer .ft_content .ft_bottom .family .item {
    width: 260px;
    position: relative;
}

#footer .ft_content .ft_bottom .family .item .value {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    border-bottom: 1px solid #fff;
}

#footer .ft_content .ft_bottom .family .item .value p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font_2);
}

#footer .ft_content .ft_bottom .family .item .value span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font_2);
}

#footer .ft_content .ft_bottom .family .item .dropdown {
    display: none;
    position: absolute;
    bottom: 53.5px;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#footer .ft_content .ft_bottom .family .item .dropdown a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    background: #f5f5f5;
    padding: 15px 10px;
    box-sizing: border-box;
    color: #000;
    transition: all 0.3s;
    font-family: var(--font_2);
}

#footer .ft_content .ft_bottom .family .item .dropdown a:hover {
    background: #005AFF;
    color: #fff;
}


/* video_section */

.video_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(1, 0, 16, 1) 100%);
    z-index: 2;
}

.video_section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity, filter;
    opacity: 0;
    margin: 0;
    pointer-events: none;
}

.pin-spacer:has(> .video_section) {
    background: #010010 !important;
    z-index: 10000 !important;
}

.video_section.is-fading video {
    filter: blur(0.4px);
}