/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 5%;
}

.main_section .main_box {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.main_section .media_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main_section .media_box img {
    width: 60%;
    position: relative;
    z-index: 1;
}

.main_section .media_box svg {
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: color-dodge;
}

.main_section .info_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.main_section .title_box {
    width: fit-content;
    position: relative;
}

.main_section .title_box h1 {
    color: var(--yellow);
    position: relative;
    font-size: 5vw;
    line-height: 1;
    z-index: 1;
}

.main_section .title_box h1 span {
    color: var(--white);
    font-size: 7vw;
}

.main_section .title_box svg {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(30%, 20%);
    mix-blend-mode: color-dodge;
}

.main_section .info_box p {
    width: 80%;
}

.main_section .info_box p,
.main_section .info_box .main_btn {
    margin-left: 2vw;
}

.main_section .scroll_box {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5vw;
    z-index: 3;
}

.main_section .scroll_box svg {
    width: 1.2vw;
}

.main_section .scroll_box path {
    animation: fade01 1s infinite alternate;
}

.main_section .scroll_box path:nth-child(1) {
    animation-delay: 1.5s;
}

.main_section .scroll_box path:nth-child(2) {
    animation-delay: 1s;
}

.main_section .scroll_box path:nth-child(3) {
    animation-delay: .5s;
}

.main_section .scroll_box p {
    font-size: .8vw;
    transition: .5s;
}

.main_section .scroll_box:hover p {
    color: var(--yellow);
}

@media (max-width: 996px) {
    .main_section {
        padding: 20% 10% 25% 10%;
    }
    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .main_section .media_box {
        align-items: center;
    }
    .main_section .media_box img {
        width: 70%;
    }
    .main_section .media_box svg {
        width: 90%;
    }
    .main_section .info_box {
        gap: 5vw;
    }
    .main_section .title_box h1 {
        font-size: 10vw;
    }
    .main_section .title_box h1 span {
        font-size: 15vw;
    }
    .main_section .info_box p {
        width: 100%;
    }
    .main_section .scroll_box {
        bottom: 3%;
        gap: 3vw;
    }
    .main_section .scroll_box svg {
        width: 4vw;
    }
    .main_section .scroll_box p {
        font-size: 2vw;
    }
}


/* ---WELCOME STYLES--- */

.welcome_section {
    padding: 5% 5% 10% 5%;
}

.welcome_section .welcome_box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
}

.welcome_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    text-align: center;
}

.welcome_section .info_box p {
    width: 55%;
}

.welcome_section .media_box {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}

.welcome_section .welcome_box svg:nth-child(1) {
    width: 8%;
    position: absolute;
    bottom: 5%;
    left: 8%;
    mix-blend-mode: color-dodge;
}

.welcome_section .welcome_box svg:nth-child(2) {
    width: 5%;
    position: absolute;
    top: 0;
    right: 10%;
    mix-blend-mode: color-dodge;
}

.welcome_section .print_box {
    position: relative;
    width: 30vw;
    height: fit-content;
}

.welcome_section .slider_box {
    position: relative;
    z-index: 4;
}

.welcome_section .swipe_box {
    position: absolute;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5vw;
}

.welcome_section .swipe_bar {
    position: relative;
    width: 5vw;
    height: 2vw;
    border: .1vw solid #F9DE7930;
    border-radius: 10vw;
}

.welcome_section .circle {
    width: 1vw;
    height: 1vw;
    border-radius: 5vw;
    position: absolute;
    top: 50%;
    left: .5vw;
    transform: translate(0, -50%);
    background: #F9DE79;
    animation: circle_move 1.5s reverse ease-in-out infinite;
}

@keyframes circle_move {
    0% {
        left: .5vw;
        opacity: 0;
    }
    25% {
        left: .5vw;
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 3.5vw;
        opacity: 0;
    }
}

.welcome_section .swipe_box span {
    color: #F9DE7950;
    font-size: 1vw;
    font-weight: 500;
}

.welcome_section .stroke_txt {
    color: transparent;
    font-size: 12vw;
    -webkit-text-stroke-width: .1vw;
    -webkit-text-stroke-color: var(--green);
    pointer-events: none;
}

.welcome_section .txt01 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    z-index: 3;
}

.welcome_section .txt01::before {
    content: "Spit";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(10%);
    animation: fade03 1s infinite alternate;
    z-index: 2;
}

.welcome_section .txt01::after {
    content: "Spit";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(20%);
    animation: fade03 1s infinite alternate;
    animation-delay: 1s;
    z-index: 1;
}

.welcome_section .txt02 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
}

.welcome_section .txt02::before {
    content: "Fire";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(10%);
    animation: fade03 1s infinite alternate;
    z-index: 2;
}

.welcome_section .txt02::after {
    content: "Fire";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(20%);
    animation: fade03 1s infinite alternate;
    animation-delay: 1s;
    z-index: 1;
}

.welcome_section .dot_box {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(160%, 0%);
    z-index: 6;
}

.welcome_section .dot_box::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-200%);
    width: .5vw;
    height: .5vw;
    border-radius: 50%;
    background: var(--yellow);
}

.welcome_section .dot_box p {
    font-size: .8vw;
}

@media (max-width: 996px) {
    .welcome_section {
        padding: 20% 10% 40% 10%;
    }
    .welcome_section .welcome_box {
        gap: 10vw;
    }
    .welcome_section .info_box {
        gap: 5vw;
    }
    .welcome_section .info_box p {
        width: 100%;
    }
    .welcome_section .media_box {
        gap: 18vw;
    }
    .welcome_section .welcome_box svg:nth-child(1) {
        width: 20%;
        bottom: 10%;
        left: 0;
    }
    .welcome_section .welcome_box svg:nth-child(2) {
        width: 10%;
        top: -5%;
        right: -5%;
    }
    .welcome_section .print_box {
        width: 55vw;
    }
    .welcome_section .swipe_box {
        bottom: -18vw;
        gap: 2vw;
    }
    .welcome_section .swipe_bar {
        width: 12vw;
        height: 6vw;
        border: .4vw solid #F9DE7930;
    }
    .welcome_section .circle {
        width: 3vw;
        height: 3vw;
        left: 1vw;
    }
    @keyframes circle_move {
        0% {
            left: 1vw;
            opacity: 0;
        }
        25% {
            left: 1vw;
            opacity: 1;
        }
        50% {
            opacity: 1;
        }
        100% {
            left: 7.5vw;
            opacity: 0;
        }
    }
    .welcome_section .swipe_box span {
        font-size: 3.5vw;
    }
    .welcome_section .dot_box {
        width: 90%;
        bottom: -80%;
        right: 50%;
        transform: translate(50%, 0%);
    }
    .welcome_section .dot_box::before {
        top: 20%;
        width: 1vw;
        height: 1vw;
    }
    .welcome_section .dot_box p {
        font-size: 3vw;
    }
}