:root {
    --mc: #7c1b1d;
    --sc: #143171;
    --tc: #f4a01b;
    --bsc: rgba(20, 49, 113, 0.1);
    --bmc: rgba(124, 27, 29, 0.1);
    --bgc: #f5f5f5;
    --white-color: #ffffff;
    --body-color: #444444;
    --background-color: #f8f8f8;
    --line-color: #dddddd;
}

html {
    font-size: 62.5%;
}

.inner {
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
}

body {
    font-size: 1.6rem;
}

p {
    color: #444;
}

.title {
    margin-bottom: 7.2rem;
}

.title p {
    font-size: 2.4rem;
    line-height: 3.8rem;
    color: #444;
}

.title h2 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

b {
    color: var(--mc);
    font-size: 100%;
}

.scroll {
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    overflow: hidden;
}

.scroll::after {
    content: "";
    display: block;
    width: 2px;
    height: 8rem;
    background: rgba(255, 255, 255, 0.4);
    margin: 2rem auto 0 auto;
}

.scroll::before {
    content: "";
    position: absolute;
    top: 3rem;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 3.2rem;
    }

    80% {
        top: 100%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }


    100% {
        top: 100%;
        transform: translate(-50%, -50%) scale(10);
        opacity: 0;
    }
}


.circle_btn {
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;

}

.circle_btn img {
    height: 3.2rem;

}

.circle_btn::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    width: 12rem;
    height: 12rem;

    border-radius: 50%;
    opacity: 0;

}

.circle_btn:hover::before {
    animation: circle 1s infinite;
}

@keyframes circle {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.circle_btn i {
    color: #fff;
    font-size: 4rem;
}

.circle_btn strong {
    letter-spacing: 2px;
    color: var(--white-color);
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 3.2rem;
}

#skip {}

#skip a {
    display: block;
    line-height: 80px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 20px;

    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
}

#skip a:focus,
#skip a:active {
    top: 0;
}

@media (max-width: 768px) {
    .default {
        padding: 0 16px;
    }

    .title {
        margin-bottom: 2.8rem;
    }


    .title h2 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .title p {
        font-size: 1.8rem;
        line-height: 3.2rem;
        color: #444;
    }

    b {
        color: var(--mc);
        font-size: 100%;
    }

}