@media(min-width:1300px) {
    #background-video {
        min-width: 100%;
        min-height: 100%;
        position: fixed;
        right: -10%;
        top: 0;
        bottom: 0;
        z-index: -2;
    }

    #character {
        height: 100%;
        position: fixed;
        /* top: 0; */
        bottom: 0;
        z-index: -1;
    }

    body {
        margin: 0;
        padding: 0;
        color: #eee;
        font-family: 'Orbitron', sans-serif;
        background-color: #15141d;
    }

    .Footer {
        height: 50px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100%;
        bottom: 0;
        background-color: #00021b
    }

    .Footer__link {
        margin: 0 10px;
        text-transform: uppercase;
        font-size: 10px;
    }

    .Frame>div {
        max-width: 100%
    }

    .Buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        box-sizing: border-box;
        width: 100%;
        padding: 0 15px
    }

    .Buttons__item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        box-sizing: border-box;
        width: 100%;
        max-width: 50%;
        margin: 0 10px;
        width: 320px;
        height: 70px;
        cursor: pointer;
        opacity: 0.9;
        background-image: url('../assets/btn.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .Buttons__item__img {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: fill;
        position: absolute
    }

    .Buttons__item__text {
        font-size: 24px;
        position: relative;
        text-transform: uppercase;
    }

    .Buttons__item:hover {
        opacity: 1;
    }

    .Steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        box-sizing: border-box;
        width: 100%;
    }

    .Steps__text {
        margin: 0 25px;
        font-size: 48px;
        font-weight: 700;
        min-width: 300px;
        text-align: center;
    }

    .Steps__arrow {
        padding: 0 15px;
        cursor: pointer;
        filter: grayscale(100%);
    }

    .Steps__arrow__img.disabled {
        opacity: .5
    }

    .Text {
        position: relative;
        text-align: center;
        padding: 10px 20px;
        overflow: overlay;
        width: 100%;
        box-sizing: border-box
    }

    .Text::-webkit-scrollbar-button {
        background-repeat: no-repeat;
        width: 5px;
        height: 0
    }

    .Text::-webkit-scrollbar-track {
        background-color: rgba(236, 237, 238, .3)
    }

    .Text::-webkit-scrollbar-thumb {
        border-radius: 0;
        background-color: rgba(109, 192, 200, .5)
    }

    .Text::-webkit-scrollbar-thumb:hover {
        background-color: rgba(86, 153, 159, .5)
    }

    .Text::-webkit-resizer {
        background-repeat: no-repeat;
        width: 4px;
        height: 0
    }

    .Text::-webkit-scrollbar {
        width: 4px
    }

    .Text__item {
        font-size: 34px;
        margin: 35px 0;
        width: 100%
    }

    .Text__item--big {
        font-weight: 700;
        font-size: 42px
    }

    .browser {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        box-sizing: border-box;
        width: 100%
    }

    .browser__img {
        width: 76px;
        height: 76px;
        margin-right: 20px
    }

    .Loading {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        box-sizing: border-box;
        width: 100%;
        width: 90%;
        margin: 0 5%
    }

    .Loading__item {
        height: 60px
    }

    .Loading__item--left {
        background: #f3edd1
    }

    .Loading__item--right {
        background: grey
    }

    #content {
        background-image: url('../assets/box2.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    a {
        color: #f3edd1;
        text-decoration: none;
    }

    .meter {
        box-sizing: content-box;
        height: 60px;
        /* Can be anything */
        position: relative;
        margin: 60px 0 20px 0;
        /* Just for demo spacing */
    }

    .meter>span {
        display: block;
        height: 100%;
        border-radius: 8px;
        background-color: rgb(150, 150, 150);
        background-image: linear-gradient(center bottom,
                rgb(110, 110, 110) 37%,
                rgb(252, 252, 252) 69%);
        box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
            inset 0 -2px 6px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
    }

    .meter>span:after,
    .animate>span {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: linear-gradient(-45deg,
                rgba(255, 255, 255, 0.2) 25%,
                transparent 25%,
                transparent 50%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.2) 75%,
                transparent 75%,
                transparent);
        z-index: 1;
        background-size: 50px 50px;
        animation: move 2s linear infinite;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        overflow: hidden;
    }

    .animate>span:after {
        display: none;
    }

    @keyframes move {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 50px 50px;
        }
    }

    #promo-div {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-height: 80px;
    }

    #promo-div>H2 {
        font-family: 'Impact', 'Franklin Gothic Medium';
        font-weight: 300;
        background: -webkit-linear-gradient(#eee, #c098db);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        cursor: pointer;
    }

    #promo-div>H2>#v {
        font-size: 23px;
    }

    .prom-img {
        max-width: 100%;
        max-height: 200px;
    }

    .Frame {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        box-sizing: border-box;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 800px;
        max-height: 630px;
        width: 100%;
        height: calc(100% - 70px);
        padding: 25px 50px 50px 50px;
    }
}