@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;400&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Acumin;
    src: url(../fonts/Acumin.ttf);
}

@font-face {
    font-family: Qunatum;
    src: url(../fonts/Quantum.ttf);
}

.page-wrapper {
    min-height: 100vh;
    width: 100%;
    background: url(../images/p3/about/bg-sm.jpg) bottom center;
    background-size: cover;
}

.page-wrapper .logo-wrapper img:hover {
    box-shadow: 2px 2px 50px rgba(8, 242, 30, 0.75),
    -2px 2px 50px rgba(8, 242, 30, 0.75),
    2px -2px 50px rgba(8, 242, 30, 0.75),
    -2px -2px 50px rgba(8, 242, 30, 0.75);
    background-color: rgba(8, 242, 30, 0.75);
}

.left {
    position: relative;
}

.left .main-wrapper {
    position: relative;
}

.left .main-wrapper {
    position: relative;
}

.back-btn-wrapper {
    position: absolute;
    left: 50%;
    bottom: -1.4rem;
    transform: translateX(-50%);
}

.back-btn-wrapper svg {
    width: 1.4rem;
    height: 1.4rem;
}

.left .header-wrapper {
    position: absolute;
    z-index: 2;
    top: .6rem;
}

.header-wrapper .logo-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    transition: .3s;
}

.page-wrapper .logo-wrapper img {
    border-radius: 50%;
    transition: .3s;
}

.header-wrapper .support-wrapper {
    text-align: end;
}

.header-wrapper .support-wrapper img {
    width: 25vw;
    max-width: 160px;
}

.header-wrapper .title {
    font-family: Qunatum, sans-serif;
    font-size: 14vw;
    line-height: 1.3em;
    -webkit-background-clip: text;
    font-weight: bold;
    -webkit-text-stroke-width: calc(1px / 3);
    -webkit-text-stroke-color: black;
    color: #33cc33;
}

.right p {
    font-family: Acumin, sans-serif;
    font-weight: 300;
    font-size: .8rem;
    line-height: 1em;
}

.right {
    padding-bottom: 40vh;
}

@media only screen and (min-width: 768px) {
    .header-wrapper .logo-wrapper img {
        width: 26vw;
    }

    .right p {
        font-size: 1rem;
    }
}

@media only screen and (orientation: landscape) and (max-width: 992px) {
    .right {
        padding-bottom: 40vw !important;
    }

}

@media only screen and (min-width: 1200px) and (max-aspect-ratio: 16/9) {
    .page-wrapper {
        aspect-ratio: auto !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}

@media only screen and (min-width: 992px) {

    .page-wrapper {
        aspect-ratio: 16/9;
        background: url(../images/p3/about/bg.jpg) bottom center;
        background-size: cover;
    }

    .right {
        padding-bottom: 0;
    }

    .right p {
        font-size: .94vw;
        font-weight: 200;
    }

    .page-wrapper .logo-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-block: 2vh;
    }

    .page-wrapper .logo-wrapper img {
        width: 60%;
    }

    .page-wrapper .title-wrapper {
        width: 75%;
        padding-block: 4vh;
        margin: 0 auto 0 0;
    }

    .header-wrapper .title {
        font-size: 5vw;
        line-height: .8em;
        text-align: end;
    }

    .left .main-wrapper img {
        width: 100%;
    }

    .header-wrapper .support-wrapper {
        margin-right: 2vw;
    }

    .header-wrapper .support-wrapper img {
        width: 10vw;
        max-width: initial;
    }

}