@font-face {
    font-family: 'Bebas';
    src: url('Bebas.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-support {
    display: none;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('img/bg.jpg') no-repeat;
    background-size: cover;
    color: #ffffff;
}

.item img,
.mobile-support img,
.main {
    border-radius: 40px;
}

.main,
.col .container,
.col:nth-child(2),
.row {
    display: flex;
}

.main,
.row {
    justify-content: space-between;
}

.main {
    width: 1300px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-direction: row;
}

.col:nth-child(1),
.col:nth-child(3) {
    width: 26%;
}

.col:nth-child(2) {
    width: 47%;
}

.col,
.item {
    text-align: center;
}

.col .container,
.col:nth-child(2) {
    flex-direction: column;
}

.col:nth-child(2) {
    align-items: center;
    justify-content: center;
}

.item img {
    width: 100%;
}

.row {
    margin-top: 10px;
    flex-flow: row;
}

.row .item img {
    width: 95%;
}

.button-container {
    margin-top: 70px;
}

.button-container a {
    margin-top: 30px;
}

.btn {
    display: block;
    padding: 7px 14px;
    width: 70px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.btn,
.btn-glass,
.btn-shadow {
    width: 350px;
    height: 50px;
}

/* .btn p:nth-child(3) {
    position: absolute;
    top: 0;
    left: 215px;
    right: 0;
    bottom: 0;
}

.btn p img {
    width: 35px;
    height: 35px;
} */

.btn-glass,
.btn-shadow {
    content: '';
    position: absolute;
    border-radius: 8px;
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(8px);
    z-index: inherit;
    top: -10px;
    left: -10px;
}

.btn-container {
    position: relative;
    z-index: inherit;
}

.btn-shadow {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn-glass,
.btn-shadow {
    transition: all .05s ease-in-out;
}

.btn-blue {
    background: linear-gradient(166deg, #0060ff 0%, #0729b1 100%);
}

.btn-dark-blue {
    background: linear-gradient(166deg, #651ec4 0%, #3708a4 100%);
}

.btn-pink {
    background: linear-gradient(166deg, #f847e0 0%, #da076e 100%);
}

.btn-orange {
    background: linear-gradient(166deg, #f7a34d 0%, #f54641 100%);
}

.btn-right p,
.btn-left {
    margin: revert;
    transform: skewX(-15deg);
}

.btn-right,
.btn-left p {
    transform: skewX(15deg);
    margin: revert;
}

.btn-glass p {
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px #000000;
}

.btn-glass p.small {
    margin-top: -17px;
    font-size: 12px;
    font-weight: normal;
}

.btn:hover {
    .btn-glass {
        top: -5px;
        left: -5px;
    }

    .btn-shadow {
        top: -5px;
        left: -5px;
    }
}

.title,
.subtitle,
/* .btn, */
.mobile-support {
    font-family: 'Bebas';
}

.subtitle {
    margin-top: 40px;
    font-size: 23px;
}

.title div:nth-child(1) {
    font-size: 30px;
    text-align: left;
}

.title div:nth-child(2) {
    font-size: 50px;
    text-align: center;
}

.title div:nth-child(3) {
    font-size: 18px;
    text-align: right;
}

@media (max-width: 1300px) {
    .mobile-support {
        margin: 10px auto;
        display: block;
    }

    .mobile-support img {
        width: 125px;
    }

    .subtitle {
        margin-top: 20px;
        font-size: 20px;
    }

    .title div:nth-child(1),
    .title div:nth-child(2),
    .title div:nth-child(3),
    .mobile-support {
        text-align: center;
    }

    .title div:nth-child(1) {
        font-size: 25px;
    }

    .title div:nth-child(2) {
        font-size: 30px;
    }

    .title div:nth-child(3) {
        font-size: 16px;
    }

    .row {
        justify-content: center;
    }

    .item img {
        width: 98%;
    }

    .main {
        width: 100%;
        flex-wrap: wrap;
    }

    .min {
        display: none;
    }

    .col:nth-child(1),
    .col:nth-child(3) {
        width: 49%;
    }

    .col:nth-child(2) {
        order: 1;
        width: 100%;
    }

    .col:nth-child(1) {
        order: 2;
    }

    .col:nth-child(3) {
        order: 3;
    }

    .btn,
    .btn-glass,
    .btn-shadow {
        width: 90vw;
    }

    .button-container {
        margin-top: 15px;
        margin-bottom: 15px;
    }

}