@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../font/Montserrat-SemiBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Segoe-UI';
    src: url('../font/SEGOEUI.ttf');
    font-display: swap;
}

/* Small screens */
@media only screen {
    .grecaptcha-badge{
        z-index: 3;
        top: 70px;
    }

    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100vh;
        color:white;
        font-family: 'Segoe UI', sans-serif;
        /*font-size:1vw; in font.css */
    }

    h1, h2, h3, h6 {
        margin: 0;
        font-family: 'Montserrat-SemiBold';
        color:white;
    }

    h1 {
        /*font-size: 6em; in font.css */
        line-height: .95em;
        letter-spacing: -.05em;
        font-weight: bold;
        margin: 0;
        position: relative;
        transition: left 1s ease-in-out, right 1s ease-in-out;
    }
    h6 {
        /*font-size: 2em; in font.css*/
        line-height: 1em;
        letter-spacing: .1em;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
    }

    p {
            position: relative;
            margin: 0;
            padding: 0;
            font-size: 1em;
        }

    button {
        cursor:pointer;
    }
/* -------------------------------------------------- */
/* ------------------Custom Classes------------------ */
/* -------------------------------------------------- */

    .dsi-bg {
        background: #1c1c1c;
        background-image: url(../image/full-size-logo.webp);
        background-size: 256px;
    }

    .main-section {
        width:100%;
    }

    .lined-bg-cont {
        display: flex;
    }
    .lined-background {
        position:relative;
        padding: 1vw 2vw;
        margin: 1vw 0 0 0;
    }
    .lined-background:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: opacity 1s ease-in-out;
        background-image: url(../image/LineTransparentDarker.webp);
        background-repeat: repeat;
        background-size:256px;
        background-color: rgb(0 0 0 / 65%);
        box-sizing: border-box;
        backdrop-filter: blur(4px);
    }

    .red-text {
        color:#e30808;
    }

    .background-centring {
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .break-apart-parent {
        flex-direction: column;
        align-items: center;
    }
    .break-apart-child {
        flex-direction: column;
        display:flex;
        width:100%;
        height: 100%;
    }

    .pop-out {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height:100%;
        position: fixed;
        z-index: 4;
        top: 0;
    }

    .blurry-bg {
        background-color: rgb(0 0 0 / 82%);
        backdrop-filter: blur(3px) opacity(1);
    }

    .scroll-return{
        position: fixed;
        justify-content: center;
        z-index: 2;
        bottom: 3vw;
        right: 3vw;
        width: 80px;
        height: 80px;
        padding: 3px;
        background-color: rgb(44 44 44 / 12%);
        box-sizing: border-box;
        backdrop-filter: blur(4px);
        display:none;
        cursor: pointer;
        border-radius: 40px;
    }

    .scroll-return:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 25%;
        top: 25%;
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        background-color: rgb(255, 255, 255);
        border-radius: 20px;
    }

    .scroll-return svg{
        z-index: 1;
        overflow: unset;
        width: 43%;
        display: flex;
        fill: #1c1c1c;
    }
} /*end small Screens*/

/*small screens in landscape orientation */
@media only screen and (orientation: landscape) {
    .break-apart-child {
        flex-direction: row;
    }
}

/* Medium screens */
@media only screen and (min-width: 40.063em) {
    .break-apart-parent {
        flex-direction: column;
    }
    .break-apart-child {
        flex-direction: row;
    }
}

/* Large screens */
@media only screen and (min-width: 64.063em) {
    .lined-background:before {
        background-color: rgba(0, 0, 0, 0.281);
    }
    .break-apart-parent {
        flex-direction: row;
    }
    .break-apart-child {
        flex-direction: row;
    }
}