* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Qunatum;
    src: url(../../../fonts/Quantum.ttf);
}

@font-face {
    font-family: Helvetica;
    src: url(../../../fonts/Helvetica.ttf);
}

@font-face {
    font-family: Acumin;
    src: url(../../../fonts/Acumin.ttf);
}

.page {
    min-height: 100vh;
}

.back-btn-wrapper {
    width: max-content;
    padding: 2vh 4vw;
    border-radius: 50%;
    z-index: 10;
    transition: .4s;
}

.back-btn-wrapper svg:hover {
    box-shadow: 2px 2px 50px #08f21e,
    -2px 2px 50px #08f21e,
    2px -2px 50px #08f21e,
    -2px -2px 50px #08f21e;
}

.back-btn-wrapper svg {
    transition: .4s;
    border-radius: 50%;
    width: 8vw;
    height: 8vw;
    max-width: 24px;
    max-height: 24px;
}

.content-wrapper {
    padding: 3vh 5vw 0;
}

.title-wrapper p{
    font-family: Qunatum, sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 8vw ,3.2rem);
    line-height: 1.1em;
    text-align: center;
}

.sub-title-wrapper {
    font-family: Helvetica, sans-serif;
    font-size: clamp(1.4rem, 4.5vw ,1.85rem);
    line-height: 1.2em;
    text-align: center;
    font-weight: lighter;
}

.iframe-wrapper {
    padding: 4vh 12vw 6vh;
    display: flex;
    flex-direction: column;
    gap: 4vh;
    background: url(../../../images/p3/btn1/btn2/c-bg-sm.jpg) center no-repeat;
    background-size: cover;
}

.iframe-wrapper .video {
    aspect-ratio: 16/9;
    width: 100%;
    margin: 0 auto;
}

.iframe-wrapper .video iframe {
    width: 100%;
    height: 98%;
}

.text-wrapper {
    font-family: Acumin, sans-serif;
    font-size: clamp(1.2rem, 2.7vw, 1.4rem);
    font-weight: 200;
    line-height: 1.2em;
}

@media only screen and (min-width: 992px) {
    .iframe-wrapper {
        min-height: 90%;
        max-height: 100%;
        padding: 10vh 12vw 30vh;
        gap: 10vh;
        background: url(../../../images/p3/btn1/btn2/c-bg.jpg) top center no-repeat;
        background-size: cover;
    }

    .content-wrapper {
        padding: 5vh 5vw 5vh;
    }

    .text-wrapper {
        font-size: 1.2vw;
        font-weight: 200;
        line-height: 1.2em;
    }

    .title-wrapper p{
        font-size: 3.5vw;
    }

    .sub-title-wrapper {
        font-size: 1.8vw;
    }

    .back-btn-wrapper {
        padding: 2vh 5.5vw;
    }
}
