* {
    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 {
    background: url("../../images/p3/btn1/bg-sm.jpg") no-repeat center;
    background-size: cover;
    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 {
    font-family: Qunatum, sans-serif;
    font-weight: bold;
    font-size: 8vw;
    line-height: 1.2em;
    text-align: center;
}

.title-wrapper span {
    font-size: 9vw;
    color: #333399;
}

.sub-title-wrapper {
    font-family: Helvetica, sans-serif;
    font-size: 4.5vw;
    line-height: 1.2em;
    text-align: center;
    font-weight: lighter;
}

.sub-title-wrapper span {
    font-size: 4vw;
    line-height: 1em;
}

.img-wrapper {
    position: relative;
    display: inline-block;
    transition: .3s all;
}

.img-wrapper:hover {
    box-shadow: 0 0 50px rgba(8, 242, 30, 0.4),
    0 0 50px rgba(8, 242, 30, 0.4),
    0 0 50px rgba(8, 242, 30, 0.4),
    0 0 50px rgba(8, 242, 30, 0.4);
    background: rgba(8, 242, 30, 0.4);
}

.img-wrapper .c-overlay {
    position: absolute;
    width: 100%;

}

.img-wrapper .c1-overlay {
    height: 85%;
    bottom: 3.5%;
    left: -10%;
}

.img-wrapper .c2-overlay {
    height: 65%;
    left: -8%;
    bottom: 3.5%;
}


.img-wrapper .c3-overlay {
    height: 80%;
    left: -15%;
    bottom: 7%;
}

.img-wrapper .c-overlay img{
    height: 100%;
    max-width: initial;
}

.card-wrapper .c-text p {
    font-family: Acumin, sans-serif;
    margin-top: .8rem;
    font-weight: 200;
    font-size: 3.2vw;
    line-height: 1.3em;
    text-align: center;
    text-decoration: none;
    color: black;
}

@media only screen and (min-width: 992px) {

    .page {
        background: url("../../images/p3/btn1/bg.jpg") no-repeat center;
        background-size: contain;
    }

    .content-wrapper {
        padding: 6vh 3vw 5vh;
    }

    .title-wrapper {
        font-size: 3.7vw;
    }

    .title-wrapper span {
        font-size: 4.4vw;
    }

    .sub-title-wrapper {
        font-size: 1.8vw;
        padding: 0 2vw;
    }

    .sub-title-wrapper span {
        font-size: 1.7vw;
    }


    .card-wrapper .c-text p {
        margin-top: 1.6rem;
        font-size: 1.8vw;
        font-weight: 300;
    }

}