@charset "utf-8";

:root {
    --intro-font: "copperplate", serif;
}

.wrap {
    font-family: var(--intro-font);
    font-weight: 500;
    width: 100%;
    height: 100dvh;
    min-height: 800px;
    position: relative;
}

.intro-slider {
    height: 100%;
}

.intro-swiper {
    height: 100%;
}

.intro-swiper .swiper-slide {
    position: relative;
}

.intro-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-swiper-nav {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.intro-swiper-nav .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: auto;
    top: auto;
    width: auto;
}

.intro-swiper-nav .swiper-pagination-bullet {
    background-color: #D3D3D3;
    opacity: 1;
}

.intro-swiper-nav .swiper-pagination-bullet-active {
    background-color: var(--color-main-light);
}

.intro-header {
    position: absolute;
    z-index: 10;
    left: 40px;
    top: 32px;
}

.intro-select {
    position: absolute;
    left: 50%;
    bottom: 145px;
    transform: translateX(-50%);
    color: #fff;
    z-index: 10;
    width: 100%;
    max-width: 1480px;
    height: 434px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.intro-select a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.8px;
    width: 540px;
    height: 282px;
    padding: 0 15px;
    transition: .2s all ease-in-out;
}

.intro-select a:last-child {
    margin-bottom: 152px;
}

.intro-select a span {
    display: block;
    font-size: 24px;
    font-weight: 300;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease-in-out;
}

.intro-select a::before,
.intro-select a::after {
    content: '';
    width: 0;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    transition: .3s all ease-in-out;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.intro-select a::after{
    top: auto;
    bottom: 0;
}

.intro-select a:hover{
    transform: translateY(-5px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.intro-select a:hover::before,
.intro-select a:hover::after {
    width: 100%;
}

.intro-select a:hover span {
    opacity: 1;
    visibility: visible;
}