/**
 * Theme Name:  Quiz Please
 * Theme URI:   https://quizplease.ru/
 * Author:      Max Voitsekhovsky
 * Author URI:  https://voitsekhovsky.studio/
 * Description: New Design
 * Version:     Версия темы. Пример: 1.0
 */

/* Main */

/*Черный (Густой) Black (Heavy)*/
@font-face {
    font-family: "Gilroy-Black";
    src: url("../fonts/gilroy/Gilroy-Black.ttf");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*Дополнительный жирный (Сверхжирный) Extra Bold (Ultra Bold)*/
@font-face {
    font-family: "Gilroy-ExtraBold";
    src: url("../fonts/gilroy/Gilroy-ExtraBold.ttf");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*Жирный Bold*/
@font-face {
    font-family: "Gilroy-Bold";
    src: url("../fonts/gilroy/Gilroy-Bold.ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*Полужирный Semi Bold (Semi Bold)*/
@font-face {
    font-family: "Gilroy-SemiBold";
    src: url("../fonts/gilroy/Gilroy-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*Средний Medium*/
@font-face {
    font-family: "Gilroy-Medium";
    src: url("../fonts/gilroy/Gilroy-Medium.ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*Нормальный Normal*/
@font-face {
    font-family: "Gilroy-Regular";
    src: url("../fonts/gilroy/Gilroy-Regular.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Светлый Light*/
@font-face {
    font-family: "Gilroy-Light";
    src: url("../fonts/gilroy/Gilroy-Light.ttf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*Дополнительный светлый (Сверхсветлый) Extra Light (Ultra Light)*/
@font-face {
    font-family: "Gilroy-UltraLight";
    src: url("../fonts/gilroy/Gilroy-UltraLight.ttf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*Тонкий (Волосяной) Thin (Hairline)*/
@font-face {
    font-family: "Gilroy-Thin";
    src: url("../fonts/gilroy/Gilroy-Thin.ttf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gilroy-Regular', sans-serif;
    background-color: #000423;
    color: white;
}

*, ::after, ::before {
    box-sizing: border-box;
}


#header {
    display: flex;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.2s ease;
    padding-top: 30px;
}

#header.sticky {
    background-color: rgba(1, 3, 25, .95);
    padding-top: 0;

}

*:not(body):not(html)::-webkit-scrollbar-button {
    background-image: url('');
    background-repeat: no-repeat;
    width: 4px;
    height: 0px;
}

*:not(body):not(html)::-webkit-scrollbar-track {
    background-color: #421b75;
    /* border-top-right-radius: 2px; */
    /* border-bottom-right-radius: 2px; */
}

*:not(body):not(html)::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #ffd902;
}

*:not(body):not(html)::-webkit-scrollbar-thumb:hover {
    background-color: #ffd902;
}

*:not(body):not(html)::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 4px;
    height: 0px;
}

*:not(body):not(html)::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}


/* Framework */

.text-center {
    text-align: center;
}

.blue-marker {
    font-family: 'Gilroy-Bold', sans-serif;
    color: #00a2ff;
}

/*.link::after {*/
/*    content: '';*/
/*    display: block;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background-color: rgba(6, 164, 236, 1);*/
/*    height: 1px;*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    transition: all 0.2s ease;*/
/*}*/

.link:hover::after {
    background-color: rgba(6, 164, 236, 0);

}

.link {
    /*text-decoration: none;*/
    position: relative;
    color: #00a2ff;
    background-image: linear-gradient(90deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size cubic-bezier(0, .5, 0, 1) 0.3s;
    text-decoration: underline;
}

.link:hover,
.link:focus {

    background-size: 100% 2px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 15px 30px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 10px;
    transition: all 0.5s ease;
    text-decoration: none;
    font-family: 'Gilroy-Black', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.block {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #00a2ff;
    border-color: #00a2ff;
}

.btn-primary.shadow {
    box-shadow: 0px 0px 15px 5px #00a2ff;
    margin-top: 20px;
}

.btn-primary.shadow:hover {
    box-shadow: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: #00a3ff;
    border-color: #00a3ff;
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #00a3ff;
    border-color: #00a3ff;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}


.btn-secondary {
    color: #fff;
    background-color: #000423;
    border-color: #000626;
    box-shadow: 0 0 10px rgb(0, 162, 255);
    cursor: pointer;
}


.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
    color: #fff;
    background-color: #00a3ff;
    border-color: #00a3ff;
    box-shadow: 0 0 10px rgb(0, 162, 255);
}

.btn-pink {
    color: #fff;
    background-color: #ff0072;
    border-color: #ff0072;
    cursor: pointer;
}

.btn-pink.shadow {
    box-shadow: 0px 0px 15px 5px #ff0072;
}

.btn-pink.shadow:hover {
    box-shadow: none;
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink.focus {
    color: #fff;
    background-color: #ff0072;
    border-color: #ff0072;
}


.hide-sm {
    display: none;
}

.only-sm {
    display: block;
}

.container-navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 5px 25px;

}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.video-instruction-box-lg {
    display: none;
}

.owl-nav {
    display: none;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {


    .container {
        max-width: 720px;
    }


}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
}


.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}


.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.d-flex {
    display: flex;
}

.flex-none {
    flex: none;
}

@media (min-width: 992px) {

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}


/* THEME */

.main-city-droplist {
    display: none;
    overflow: auto;
    max-height: 80vh;
}

.main-city-droplist.w--open {
    left: 0px;
    top: 0px;
    right: 0px;
    margin-top: 59px;
    padding: 15px;
    border-radius: 2px;
    background-color: #6937d2;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .2);
    color: #fff;
    display: block;
    position: absolute !important;
    z-index: 9;
}

.h3-city-drop {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
}

.city-drop-text {
    font-weight: 600;
}

.city-drop-tog {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin-left: 15px;
    cursor: pointer;
}


.city-droplist-column ul {

    list-style: none;
    margin: 0px;
    padding: 0px;
}


.h4-mb6 {
    margin-bottom: 6px;
    color: #ffd902;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
}

.city-droplink {
    max-width: 175px;
    padding: 0px;
    transition: color 100ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    position: relative;
    vertical-align: top;
    text-decoration: none;

    text-align: left;

    white-space: nowrap;
}

.city-droplink.no-games {
    color: black;
}

.menu-navbar {
    flex: 1;
    justify-content: flex-end;
    display: none;

}

.menu-navbar.open {
    position: fixed;
    top: 59px;
    left: 0;
    right: 0;
    z-index: 99;
    display: block;
    background-color: rgba(1, 3, 25, .95);
    padding: 30px 15px 15px;
}

.menu-navbar.open .link-navbar {
    /*padding: 10px 0px;*/

}

.menu-navbar .close {
    position: fixed;
    top: 0;
    right: 0;
    color: white;
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: black;
    font-size: 50px;
}

.menu-navbar.open .close {
    display: none;
}

.menu-flex-1 {
    flex: 1;

}

.link-navbar {
    display: flex;
    padding-right: 10px;
    padding-left: 10px;
    align-items: center;
    transition: all 100ms ease-in-out;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    text-decoration: none;
}

.link-navbar:hover {
    opacity: 0.75;
    color: white;
    text-decoration: none;
}

.location-icon {
    width: 20px;
    margin-right: 10px;
}

.hamburger-menu-icon {
    width: 25px;
}

.hamburger-menu {
    margin-left: auto;
}


.title {
    text-align: center;
    font-family: 'Gilroy-Black', sans-serif;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/* ***************** SECTIONS ***************** */

/* FIRST SECTION*/


.first-screen .gradient-mobile {
    padding: 3px;
    background: rgb(181, 68, 224);
    background: -moz-linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
    background: -webkit-linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
    background: linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.first-screen .gradient-mobile .gradient-inside-mobile {
    background-color: #000423;
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.first-screen .gradient-transparent-mobile {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 4, 35, 0) 0%, rgb(0, 4, 35) 80%);
}

.first-screen .gradient-mobile .gradient-inside-mobile:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/stream_repeat.png");
    z-index: 2;
    background-size: cover;
}


.gradient-content {
    z-index: 2;
    position: relative;
}

.first-screen {

    width: 95%;
    margin: auto;

    text-align: center;

    display: flex;
    flex-direction: column;
}

.first-screen .logo-neon {
    max-width: 220px;
    margin: auto;
    order: 1;
    z-index: 2;
    position: relative;
}

.first-screen .subtitle {
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    width: 150px;
    margin: auto;
    font-family: 'Gilroy-Bold', sans-serif;
    order: 2;
    line-height: 22px;
    z-index: 2;
    position: relative;
}

.first-screen .description {
    text-align: left;
    margin-top: 30px;
    order: 3;
    max-width: 320px;
    margin: 30px auto 0px;
}

.first-screen-bottom {
    order: 4;
}

.main-title {
    font-size: 34px;
    font-family: 'Gilroy-Bold', sans-serif;
}

.first-screen .description .content {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    width: 300px;
    line-height: 20px;
    font-family: 'Gilroy-Medium', sans-serif;

}


.first-screen .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;

}


.first-screen .icon-text {
    max-width: 85px;
    margin: -15px auto auto;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 22px;
    font-family: 'Gilroy-Bold', sans-serif;

}

/* MOST IMPORTANT SECTION */

.most-important-screen .description .item {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 50px auto auto;
    text-align: center;
    font-family: 'Gilroy-Black', sans-serif;

}

.most-important-screen .item1 {
    background: rgb(181, 68, 224);
    background: -moz-linear-gradient(0deg, rgba(181, 68, 224, 1) 0%, rgba(134, 111, 226, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(181, 68, 224, 1) 0%, rgba(134, 111, 226, 1) 100%);
    background: linear-gradient(0deg, rgba(181, 68, 224, 1) 0%, rgba(134, 111, 226, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 270px;
}

.most-important-screen .item2 {
    background: rgb(64, 174, 228);
    background: -moz-linear-gradient(0deg, rgb(64, 174, 228) 0%, rgb(23, 207, 229) 100%);
    background: -webkit-linear-gradient(0deg, rgb(64, 174, 228) 0%, rgb(23, 207, 229) 100%);
    background: linear-gradient(0deg, rgb(64, 174, 228) 0%, rgb(23, 207, 229) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 190px;
}

.most-important-screen .item3 {
    background: rgb(0, 221, 230);
    background: -moz-linear-gradient(0deg, rgb(0, 221, 230) 0%, rgb(0, 212, 230) 100%);
    background: -webkit-linear-gradient(0deg, rgb(0, 221, 230) 0%, rgb(0, 212, 230) 100%);
    background: linear-gradient(0deg, rgb(0, 221, 230) 0%, rgb(0, 212, 230) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 180px;
}

.most-important-screen .item4 {
    background: rgb(0, 177, 230);
    background: -moz-linear-gradient(0deg, rgb(0, 177, 230) 0%, rgb(0, 212, 230) 100%);
    background: -webkit-linear-gradient(0deg, rgb(0, 177, 230) 0%, rgb(0, 212, 230) 100%);
    background: linear-gradient(0deg, rgb(0, 177, 230) 0%, rgb(0, 212, 230) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 200px;
}


/* SCHEDULE SECTION */

.schedule {
    position: relative;
}

#scheduleAnchor {
    position: absolute;
    top: -70px;
}

.schedule .owl-stage {
    padding-left: 0px !important;
}

.schedule-carousel {
    margin-bottom: 10px;
    position: relative;
}

.schedule .owl-carousel .carousel-cell .card {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 10px;
    min-height: 300px;
    color: black;
    position: relative;
    overflow: hidden;
}

.schedule .owl-carousel .carousel-cell .card .card-body {
    padding: 0px 15px 15px;

}

.schedule .carousel-cell .btn {
    padding: 15px 14px;
    font-size: 14px;
}


.schedule .carousel-cell.classic .btn {
    color: #fff;
    background-color: #00245a;
    border-color: #00245a;

}

.schedule .carousel-cell.classic .btn:hover {
    color: #fff;
    background-color: #00245a;
    border-color: #00245a;
}

.schedule .carousel-cell.classic .btn:focus, .schedule .carousel-cell.classic .btn.focus {
    color: #fff;
    background-color: #00245a;
    border-color: #00245a;
    box-shadow: 0 0 0 0.2rem rgba(0, 36, 90, 0.5);
}


.schedule .carousel-cell.cinema-and-music .btn {
    color: #fff;
    background-color: #f00046;
    border-color: #f00046;

}

.schedule .carousel-cell.cinema-and-music .btn:hover {
    color: #fff;
    background-color: #f00046;
    border-color: #f00046;
}

.schedule .carousel-cell.cinema-and-music .btn:focus, .schedule .carousel-cell.cinema-and-music .btn.focus {
    color: #fff;
    background-color: #f00046;
    border-color: #f00046;
    box-shadow: 0 0 0 0.2rem rgba(240, 0, 70, 0.5);
}


.schedule .carousel-cell.theme .btn {
    color: #fff;
    background-color: #ff9000;
    border-color: #ff9000;
}

.schedule .carousel-cell.theme .btn:hover {
    color: #fff;
    background-color: #ff9000;
    border-color: #ff9000;
}

.schedule .carousel-cell.theme .btn:focus, .schedule .carousel-cell.theme .btn.focus {
    color: #fff;
    background-color: #ff9000;
    border-color: #ff9000;
    box-shadow: 0 0 0 0.2rem rgba(255, 144, 0, 0.5);
}


.schedule .owl-filter-bar {
    margin: 50px 0px 30px;
}

.schedule .owl-filter-bar-item {
    background-color: transparent;
    color: white;
    border: 1px solid #00a2ff;
    padding: 5px;
    text-transform: uppercase;
    font-size: 9px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-decoration-line: none;
}

.schedule .owl-filter-bar-item.active,
.schedule .owl-filter-bar-item:hover,
.schedule .owl-filter-bar-item:focus {
    background-color: #00a2ff;

}

.schedule .game-image img {
    width: 167px;
    height: 167px;
    position: absolute;
    top: -20px;
    left: -40px;
}

.schedule .game-time img,
.schedule .game-money img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}


.schedule .card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    margin-bottom: 30px;
}

.schedule .card-header .date {
    width: 50%;
    flex: none;
    z-index: 1;
    color: #00a2ff;
}

.schedule .card-header .game-date-string {
    font-size: 20px;
    font-family: 'Gilroy-Bold', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.schedule .card-header .game-day-string {
    font-size: 20px;
    font-family: 'Gilroy-Medium', sans-serif;
    text-transform: uppercase;
    word-break: break-word;

}

.schedule .game-title {
    font-size: 22px;
    font-family: 'Gilroy-Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;

}

.schedule .game-description {
    margin-bottom: 25px;

}

.schedule .game-money {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    max-width: 180px;
    font-family: 'Gilroy-Bold', sans-serif;
}

.schedule .game-time {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 10px;
    max-width: 180px;
    font-family: 'Gilroy-Bold', sans-serif;
}

.schedule .game-time img,
.schedule .game-money img {
    margin-right: 10px;
}

.schedule .game-action {
    position: absolute;
    
    bottom: 20px;
    left: 25px;
    width: calc(100% - 50px);
}


/* HOW TO PASS*/
.how-to-pass {
    margin-top: 50px;
}

.how-to-pass .title {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-pass .description {
    font-family: 'Gilroy-Medium', sans-serif;
    margin-bottom: 0px;
    line-height: 20px;
    font-size: 18px;
}

.how-to-pass .subtitle {
    font-family: 'Gilroy-Bold', sans-serif;
    text-transform: uppercase;
    text-align: center;
    margin: 15px auto;
    font-size: 14px;
    max-width: 149px;

}

.how-to-pass .subtitle.pink {
    color: #e9006a;
}

.how-to-pass img {
    max-width: inherit;

}

.how-to-pass-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.how-to-pass .subdescription {
    margin-top: 15px;
}

/* Video Instruction*/


.video-instruction {
    margin-top: 45px;
}


.video-instruction-box {
    position: relative;
    margin: 0px -15px;
}

.video-instruction .text {
    position: absolute;
    top: 0;
    width: 50%;
    right: 15px;
}

.video-instruction .text .first {
    font-family: 'Gilroy-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    width: 150px;
    line-height: 18px;
}

.video-instruction .text .author {
    font-family: 'Gilroy-Medium', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
    color: #00a2ff;
}

.video-instruction .description {
    font-family: 'Gilroy-Medium', sans-serif;
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 13px;
    line-height: 18px;
}

/* Atmosphere */

.atmosphere .insta-slider {
    padding: 10px;
    max-width: 400px;
}

.atmosphere .insta-slider .slide {
    position: relative;
    padding: 2px;
    border-radius: 10px;
    /*height: 450px;*/
}

.atmosphere .insta-slider .gradient {
    background: rgb(6, 164, 236);
    background: -moz-linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    background: linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06a4ec", endColorstr="#c815f0", GradientType=1);
    border-radius: 10px;
    padding: 2px;
}


.atmosphere .insta-slider .slide .layout {
    background-color: #020c25;
    z-index: 2;
    border-radius: 10px;
    padding: 10px;

}

.atmosphere .insta-slider .slide .insta-box {
    position: absolute;
    width: calc(100% + 15%);
    max-width: inherit;
    top: -5%;
    left: -7.5%;
}


.atmosphere .insta-slider .slide .insta-post {
    /*position: absolute;*/
    /*top: 12%;*/
    /*left: 5%;*/
    /*right: 5%;*/
    padding: 0px 15px;
}

.atmosphere .insta-slider .slide .insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*max-height: 290px;*/
}

.atmosphere .title {
    width: 250px;
    margin: 0px auto 30px;
}

.insta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;

}

.insta-user-title {
    flex: 1;
    font-size: 12px;
}

.insta-description {
    color: black;
    padding: 0px 10px 10px;
}

.insta-user-name {
    color: black;
    font-weight: 600;
}

.insta-user-location {
    color: black;
    font-weight: 400;
}

.insta-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;

}

.insta-post-meta svg {
    margin-right: 10px;
}

.insta-post-meta svg:last-child {
    margin-right: 0px;
}

.flex-1 {
    flex: 1;
}

.insta-user-logo img {
    width: 50px !important;
    height: 50px;
    background-color: white;
    border: 1px solid #f5f5f5;
    border-radius: 50px;
    margin-right: 10px;
}

.insta-card {
    background-color: white;
    border-radius: 10px;

}

.insta-slider-wrap {
    position: relative;

}

.insta-slider-mark {
    width: 100px;
    position: absolute;
    top: -45px;
    right: -15px;
    z-index: 15;
}

.insta-slider .owl-dots {
    text-align: center;
    margin-top: 20px;

}

.insta-slider .owl-dot {
    background-color: white !important;
    width: 10px;
    height: 10px;
    border: none !important;
    border-radius: 5px;
    margin-right: 5px;
    outline: none !important;
}

.insta-slider .owl-dot.active {
    background-color: #00a2ff !important;

}

/* question-examples */

.question {
    font-weight: bold;
}

.question p {
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 0;
}

.question-examples {
    margin-top: 50px;

}

.question-examples .description {
    margin-bottom: 30px;
}

.question-examples .question-examples-slider {
    padding: 10px;
    max-width: 400px;
    margin: auto;
}

.question-examples .question-examples-slider .slide {
    position: relative;
    padding: 2px;
    border-radius: 10px;
    min-height: 350px;
}

.question-examples .question-examples-slider .slide:before {
    content: ' ';
    background: rgb(6, 164, 236);
    background: -moz-linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    background: linear-gradient(0deg, rgba(6, 164, 236, 1) 0%, rgba(200, 21, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06a4ec", endColorstr="#c815f0", GradientType=1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 0;
    border-radius: 10px;
}

.question-examples .question-examples-slider .slide .layout {
    background-color: #020c25;
    z-index: 2;
    border-radius: 10px;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    padding: 20px;
}

.question-examples .question-img {
    border-radius: 10px;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.question-examples .question {
    margin: 15px 0px;
    /* height: 100px; */
    font-size: 18px;
    line-height: 1.5;
}


.question-examples .get-answer {
    margin-top: 10px;
    display: block;
}

.question-examples .get-answer.btn {
    width: 100%;
    height: 60px;
}

.question-examples .answer {
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Gilroy-Black', sans-serif;
    display: none;
}

.question-examples .owl-dots {
    text-align: center;
    margin-top: 20px;

}

.question-examples .owl-dot {
    background-color: white !important;
    width: 10px;
    height: 10px;
    border: none !important;
    border-radius: 5px;
    margin-right: 5px;
    outline: none !important;
}

.question-examples .owl-dot.active {
    background-color: #00a2ff !important;

}

/* FAQ*/
.faq {
    margin-top: 50px !important;
}

.faq-collapse {

}

.faq-collapse .answer {
    display: none;
    margin-top: 20px;
    line-height: 20px;
    font-size: 18px;
}

.faq-collapse-item {
    position: relative;

}

.faq-collapse-item {

    background: rgb(6, 164, 236);
    background: -moz-linear-gradient(0deg, rgba(200, 21, 240, 1) 0%, rgba(6, 164, 236, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(200, 21, 240, 1) 0%, rgba(6, 164, 236, 1) 100%);
    background: linear-gradient(0deg, rgba(200, 21, 240, 1) 0%, rgba(6, 164, 236, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06a4ec", endColorstr="#c815f0", GradientType=1);
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(6, 164, 236, 0.3);
}

.faq-collapse-item .layout {
    background-color: #020c25;
    z-index: 2;
    border-radius: 10px;
    padding: 10px 30px 10px 10px;
    position: relative;

}

.faq-collapse-item .question {
    text-transform: uppercase;
    font-family: 'Gilroy-Black', sans-serif;
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
}

.faq-collapse-item .question:after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    font-family: 'Gilroy-Medium', sans-serif;
}

.faq-collapse-item .question.open:after {
    content: '-';
}

.faq .description {
    font-size: 13px;
    line-height: 18px;
}

/* RANKES */
.rankes {
    margin-top: 30px;
}

.rankes-grid {
    margin: 15px 0px;
    justify-content: center;

}

.rankes .description {
    word-break: break-word;
}

.rank img {
    max-width: 85px;
    margin-bottom: 15px;
    height: 78px;
}

.rank {
    margin-bottom: 30px;

}

.rank .points {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.rank .rank-description {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 14px;
}

/* CETIFICATES */

.get-certificates {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -70px;

}

.get-certificates .btn {
    padding: 15px 45px;

}

.certificates .image {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -45px;
    overflow: hidden;
}

.certificates .image img {

}

/* FOOTER */

#footer {
    background: rgb(2, 24, 93);
    background: -moz-linear-gradient(110deg, #02185d 0%, rgb(0, 4, 35) 70%);
    background: -webkit-linear-gradient(110deg, #02185d 0%, rgb(0, 4, 35) 70%);
    background: linear-gradient(110deg, #02185d 0%, rgb(0, 4, 35) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02185d", endColorstr="#ea00ff", GradientType=1);
    padding: 20px;
}

#footer .links {
    margin-bottom: 15px;
}

.footer-row {
    margin-left: -30px;
    margin-right: -30px;
}


#footer .links a {
    color: white;
    font-family: 'Gilroy-Medium', sans-serif;
    margin-bottom: 5px;
    display: inline-table;
    width: 49%;

}

.footer-contacts {
    font-family: 'Gilroy-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    max-width: 186px;
}

.footer-contacts a {
    color: white;
    text-decoration: none;
}

.footer-contacts .socials {
    margin-top: 10px;
}

.footer-contacts .socials a {
    display: inline-block;
    margin-right: 5px;
}


.footer-contacts .socials a svg {
    width: 29px;
    height: 29px;
    color: white;
}

#footer .agreement {
    color: white;
    font-size: 9px;
    margin: 15px 0px;
    display: block;
    text-transform: none;
    line-height: 14px;
}


.popup {
    visibility: hidden;
    display: none;
}

.popup-content {
    visibility: hidden;
    display: none;
}

.popup.active {
    visibility: visible;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;

}

.popup.active .popup-content {
    visibility: visible;
    display: block;
    background: #000211;
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    box-shadow: 0 0 10px rgba(6, 164, 236, 0.3);
    border: 1px solid #00a2ff;

}

.popup-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    z-index: 9999;
}

.popup-content .close:hover,
.popup-content .close:focus {
    box-shadow: 0 0 10px rgba(6, 164, 236, 0.3);
    border: 1px solid #00a2ff;
    background-color: rgba(6, 164, 236, 0.3);

}

.youtube-video-place {
    width: 100%;
    height: 100%;
}

.if_there_no_games_title {
    font-family: 'Gilroy-Black', sans-serif;
    text-transform: uppercase;
    margin: 10px 0px;
    font-size: 22px;
    line-height: 26px;

}

.if_there_no_games_descr {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 18px;

}

.if_there_no_games_terms {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 18px;

}

.subscribe-form {
    display: block;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0px;

}

.subscribe-form-input {
    background: transparent;
    border: 1px solid #008ee2;
    border-radius: 5px;
    text-transform: uppercase;
    color: white;
    width: 100%;
    font-size: 18px;
    padding: 10px 15px;
    outline: none;
    font-weight: 600;
    height: 42px;
}

.subscribe-form-input::placeholder {
    color: #008ee2;
}

.subscribe-form-submit {
    background: #00a2ff;
    color: white;
    text-transform: uppercase;
    padding: 10px 40px;
    border-radius: 5px;
    border: 1px solid #00a2ff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 15px;
    height: 42px;
}

.subscribe-form-submit:hover,
.subscribe-form-submit:focus {
    background-color: #2196f3;
    border-color: #2196f3;
}

.if_there_no_games {
    text-align: center;
}


.atmosphere .description {
    max-width: 480px;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
}

.question-answer-img {
    width: auto;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.question-player-img {
    width: 150px !important;
    height: 150px;
    margin: auto;
}

.bridge-answer-img {
  border-radius: 0;
}

@media (max-width: 374px) {
    .schedule .card-header .date {
        width: 42%;
    }

    .rankes-grid .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 375px) {

    .first-screen .logo-neon {
        max-width: 290px;
    }

    .rankes .description {
        margin-bottom: 15px;
    }

    .schedule .owl-filter-bar-item {
        font-size: 12px;
    }
}


@media (min-width: 414px) {
    .main-title {
        margin-top: 30px;
    }

    .atmosphere .insta-slider .slide .insta-post img {
      min-height: 306px;
      max-height: 306px;
    }

}

@media (min-width: 500px) {
    .most-important-screen img {
        display: none;
    }

    .schedule {
        margin-top: 50px;
    }
}

@media (min-width: 768px) {


    #footer .links a {
        margin-right: 10px;

        width: auto;
    }

    .footer-contacts {
        max-width: initial;
    }

    .certificates .image {
        margin-top: 0px;
    }

    .faq .description {
        font-size: 18px;
        line-height: 20px;
    }


    .rank .rank-description {
        font-size: 18px;
        line-height: 20px;
    }

    .atmosphere .title {
        width: auto;
    }

    .how-to-pass .description {
        margin-bottom: 30px;

    }


    .first-screen .logo-neon {
        max-width: 100%;
    }

    .first-screen .subtitle {
        width: 450px;
        font-size: 24px;
    }

    .most-important-screen .description {

        display: flex;
        flex-flow: wrap;
    }

    .most-important-screen .description .item {
        width: 37%;
        margin: 30px auto auto;

    }

    .only-sm {
        display: none;
    }

    .schedule {
        margin-top: 50px;
    }

    .schedule .owl-filter-bar {
        text-align: center;
    }

    .schedule .owl-filter-bar-item {
        padding: 10px;
        font-size: 14px;

    }

    .how-to-pass .description {
        text-align: center;
    }

    .video-instruction .description {
        text-align: center;
        font-size: 18px;
    }

    .video-instruction-box-lg {
        display: block;
    }

    .insta-slider-mark {
        display: none;
    }

    .atmosphere .insta-slider {
        max-width: 800px !important;
        margin: auto !important;

    }

    .atmosphere .insta-slider .slide .insta-post img {
      max-height: 306px !important;
    }

    .atmosphere .insta-slider .slide {
        margin-right: -50px;
        margin-left: 50px;
    }

    .atmosphere .insta-slider .slide .description {
        bottom: 8% !important;

    }

    .atmosphere .insta-slider .owl-nav .owl-prev,
    .atmosphere .insta-slider .owl-nav .owl-next {
        width: 46px;
        height: 46px;
        background-image: url("../images/nav.png") !important;
        outline: none;
        border-radius: 100px;
        transition: all 0.2s ease;
        position: absolute;
        top: calc(50% - 23px);
    }

    .atmosphere .insta-slider .owl-nav .owl-prev:hover,
    .atmosphere .insta-slider .owl-nav .owl-next:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .atmosphere .insta-slider .owl-nav .owl-next {
        transform: rotateZ(180deg);
        right: -60px;
    }

    .atmosphere .insta-slider .owl-nav .owl-prev {
        left: -60px;
    }


    .atmosphere .insta-slider .owl-nav .owl-prev span,
    .atmosphere .insta-slider .owl-nav .owl-next span {
        display: none;
    }

    .atmosphere .insta-slider .owl-item.active {
        transition: all 0.2s ease;
        z-index: 2;
        /*margin-left: 40px;*/
        visibility: visible;

    }

    .atmosphere .insta-slider .owl-item.active + .owl-item.active {

        transform: scale(0.8);
        margin-left: -80px !important;
        z-index: 1;
        /*margin-right: 40px;*/

    }

    .atmosphere .insta-slider .owl-item:not(.active) {
        visibility: hidden;

    }


}

@media (min-width: 992px) {


    .atmosphere .description {
        font-size: 18px;
        line-height: 24px;
    }

    .first-screen .gradient-mobile .gradient-inside-mobile:before {
        background: none;
    }

    .first-screen .gradient-transparent-mobile {
        background: none;
    }

    .first-screen .gradient-mobile .gradient-inside-mobile {
        background: none;
    }

    .first-screen .gradient-mobile {
        padding: 0;
        background: transparent;
    }

    .first-screen .gradient {
        padding: 3px;
        background: rgb(181, 68, 224);
        background: -moz-linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
        background: -webkit-linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
        background: linear-gradient(180deg, #0097e6 50%, #c600ee 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b544e0", endColorstr="#866fe2", GradientType=1);
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }

    .first-screen .gradient .gradient-inside {
        background-color: #000423;
        border-radius: 10px;
        padding-top: 80px;
        padding-bottom: 30px;

    }

    .first-screen .gradient-transparent {
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0px;
        right: 0;
        bottom: 0;
        background: linear-gradient(0deg, rgba(0, 4, 35, 0) 0%, rgb(0, 4, 35) 80%);
    }

    .first-screen .gradient .gradient-inside:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("../images/stream_repeat.png");
        z-index: 2;
        background-size: contain;
        background-repeat: no-repeat;
    }


    .main-city-droplist.w--open {
        padding: 30px;
    }

    .city-grid {
        display: grid;
        grid-auto-columns: 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: auto;
    }

    .main-city-droplist.w--open {
        width: auto;
    }

    .city-droplist-column ul {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style: none;

    }

    .subscribe-form {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 15px auto;
        max-width: 666px;
    }

    .subscribe-form-submit {
        margin-left: -15px;
        margin-top: 0px;
    }

    .question-examples .get-answer {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }


    .popup-content.active {

        top: 10%;
        left: 10%;
        right: 10%;
        bottom: 10%;

    }


    .owl-nav {
        display: block;
    }


    .hide-sm {
        display: block;
    }

    .only-sm {
        display: none;
    }


    .schedule-carousel .owl-nav .owl-prev,
    .schedule-carousel .owl-nav .owl-next {
        width: 46px;
        height: 46px;
        background-image: url("../images/nav.png") !important;
        outline: none;
        border-radius: 100px;
        transition: all 0.2s ease;
        position: absolute;
        top: calc(50% - 23px);
    }

    .schedule-carousel .owl-nav .owl-prev:hover,
    .schedule-carousel .owl-nav .owl-next:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .schedule-carousel .owl-nav .owl-next {
        transform: rotateZ(180deg);
        right: -60px;
    }

    .schedule-carousel .owl-nav .owl-prev {
        left: -60px;
    }


    .schedule-carousel .owl-nav .owl-prev span,
    .schedule-carousel .owl-nav .owl-next span {
        display: none;
    }

    .schedule-carousel .owl-item {
        padding: 10px;

    }

    .schedule-carousel .carousel-cell.classic {
        box-shadow: 0px 0px 10px #00a2ff;
        border-radius: 10px;
    }


    .schedule-carousel .carousel-cell.cinema-and-music {
        box-shadow: 0px 0px 10px #f00046;
        border-radius: 10px;
    }

    .schedule-carousel .carousel-cell.theme {
        box-shadow: 0px 0px 10px #ff9000;
        border-radius: 10px;
    }

    .how-to-pass {
        margin-top: 50px;
        padding-top: 50px;
    }

    .how-to-pass .hide-sm {
        display: inline;
    }

    .how-to-pass .title {

        max-width: inherit !important;
    }

    .how-to-pass .description {
        line-height: 24px;
        max-width: 600px;
        margin: auto;
        margin-bottom: 30px;
    }

    .htpi {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .how-to-pass .container .subtitle {
        text-align: center;
        margin: 15px 0px;
        font-size: 18px;
        max-width: 191px;
        line-height: 24px;
    }

    .how-to-pass .how-to-pass-icon {
        margin: 0px;
    }

    .video-instruction {
        padding-bottom: 50px;

    }

    .video-instruction-box-lg {
        display: block;
        cursor: pointer;
        text-align: center;
    }

    .video-instruction-author {
        max-width: 320px;
        margin: auto;
        text-transform: uppercase;
        font-family: 'Gilroy-Bold', sans-serif;
        line-height: 24px;

    }

    .video-instruction .description {
        max-width: 410px;
        margin: 30px auto;
        line-height: 24px;
    }

    .video-instruction-btn {
        text-align: center;
    }


    .background-gradient {
        background: rgb(11, 28, 102);
        background: -moz-linear-gradient(132deg, rgba(11, 28, 102, 1) 0%, rgba(130, 4, 146, 1) 100%);
        background: -webkit-linear-gradient(132deg, rgba(11, 28, 102, 1) 0%, rgba(130, 4, 146, 1) 100%);
        background: linear-gradient(132deg, rgba(11, 28, 102, 1) 0%, rgba(130, 4, 146, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b1c66", endColorstr="#820492", GradientType=1);
    }

    .atmosphere {
        padding-top: 70px;
        position: relative;
        overflow: hidden;
    }

    .atmosphere:before {
        content: '';
        top: -40px;
        left: 0;
        right: 0;
        background-image: url(../images/atmosphere_before.png);
        height: 82px;
        background-size: contain;
        width: 100%;
        position: absolute;
        background-repeat: no-repeat;
        background-position: center;
        filter: brightness(0.5);
    }

    .question-examples .question-examples-slider {
        max-width: 800px !important;
        margin: auto;
        margin-bottom: 40px;

    }


    .question-examples-slider .owl-nav .owl-prev,
    .question-examples-slider .owl-nav .owl-next {
        width: 46px;
        height: 46px;
        background-image: url("../images/nav.png") !important;
        outline: none;
        border-radius: 100px;
        transition: all 0.2s ease;
        position: absolute;
        top: calc(50% - 23px);
    }

    .question-examples-slider .owl-nav .owl-prev:hover,
    .question-examples-slider .owl-nav .owl-next:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .question-examples-slider .owl-nav .owl-next {
        transform: rotateZ(180deg);
        right: -60px;
    }

    .question-examples-slider .owl-nav .owl-prev {
        left: -60px;
    }

    .question-examples-slider .owl-nav .owl-prev span,
    .question-examples-slider .owl-nav .owl-next span {
        display: none;
    }

    .question-examples .question-examples-slider .slide {
        /* height: 330px !important; */
    }

    .question-examples .question {
        /* height: 122px; */
        line-height: 1.5;
        margin-top: 0;
    }

    .faq {
        max-width: 800px;
        margin: auto;

    }

    .rankes {
        margin-top: 50px !important;
    }

    .rankes .description {
        max-width: 456px;
        margin: auto;
        text-align: center;
        margin-bottom: 30px;
        line-height: 24px;
        font-size: 18px;
    }


    .hamburger-menu {
        display: none;
    }

    .menu-navbar {
        display: flex;
    }

    .first-screen {

        max-width: 1140px;
        background-position: bottom;
        background-size: cover;
    }

    .first-screen .logo-neon {
        max-width: none;
        order: 2;
        margin-top: -35px;
        margin-bottom: -15px;

    }

    .first-screen .subtitle {
        width: 450px;
        font-size: 22px;
        order: 1;
        margin-bottom: 40px;
        line-height: 28px;
    }

    .first-screen .description {
        line-height: 26px;
        max-width: 620px;
        margin: auto;
        text-align: center;
    }

    .first-screen .main-title {
        font-size: 18px;
        color: #0a84dc;
        display: inline-block;
        margin-top: 0px;
    }

    .first-screen .hide-sm {
        display: inline-block;
    }

    .first-screen .description .content {
        display: inline;
        font-size: 18px;

    }

    .first-screen-bottom {
        display: flex;
        justify-content: center;
        padding-left: 50px;
        padding-right: 50px;
    }

    .first-screen .icons {
        width: 70%;
        flex-wrap: wrap;

    }

    .first-screen .icons .icon {
        display: flex;
        width: 32%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .first-screen .icons .icon .icon-text {
        max-width: 180px;
        margin: 0px;
        font-size: 16px;
        text-align: center;
        line-height: 24px;
        margin-top: -20px;
    }

    .first-screen .icons .icon.icon_live .icon-text {
        max-width: 130px;
    }


    .icon_live .icon-text::after {
      content: 'с ведущим';
    }

    .icon:last-of-type .icon-text::after {
      content: 'с друзьями из дома';
    }

    .most-important-screen {
        margin-top: 70px;
    }

    .most-important-screen .description {

        display: flex;
        flex-flow: wrap;
    }

    .most-important-screen .description .item {
        width: 37%;
        font-size: 24px;
        margin: 30px auto auto;

    }


    .most-important-screen .item1, .most-important-screen .item2 {
        background: rgb(63, 174, 228);
        background: -moz-linear-gradient(0deg, rgba(63, 174, 228, 1) 0%, rgba(180, 69, 224, 1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(63, 174, 228, 1) 0%, rgba(180, 69, 224, 1) 100%);
        background: linear-gradient(0deg, rgba(63, 174, 228, 1) 0%, rgba(180, 69, 224, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3faee4", endColorstr="#b445e0", GradientType=1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .most-important-screen .item3, .most-important-screen .item4 {
        background: rgb(0, 211, 230);
        background: -moz-linear-gradient(0deg, rgba(0, 211, 230, 1) 0%, rgba(0, 151, 230, 1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0, 211, 230, 1) 0%, rgba(0, 151, 230, 1) 100%);
        background: linear-gradient(0deg, rgba(0, 211, 230, 1) 0%, rgba(0, 151, 230, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00d3e6", endColorstr="#0097e6", GradientType=1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        border-top: 2px solid #fff;
        padding-top: 30px;
    }

    .schedule {
        margin-top: 50px;
    }

    .schedule-title-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;

    }

    .schedule-title-container .title {
        margin-bottom: 0px;
    }

    .schedule .owl-filter-bar {
        text-align: center;
        margin: 0px;

    }

    .schedule .owl-filter-bar-item {
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 10px;
        margin-right: 10px;
        font-weight: 600;
    }

    .rankes-grid {
        margin: 30px 0px;
        justify-content: flex-start;
        width: 100%;
        position: relative;
    }

    .stalonne-wrap {
        width: 485px;
        content: '';
        height: 540px;
        position: absolute;
        right: -485px;
        top: -50px;
        z-index: 5;
        cursor: pointer;
    }

    .stalonne-wrap {
        position: absolute;
        display: none;
    }

    .stalonne-wrap .btn {
        transform: scale(0.8) rotate(-6deg);
        position: absolute;
        top: 270px;
        right: 0px;
    }

    .stalonne-wrap .btn:hover,
    .stalonne-wrap .btn:focus {
        transform: scale(1.2);
    }


    .certificates {
        padding-top: 50px;
    }

    .certificates .description {
        width: 33%;
        float: left;
        margin-bottom: 40px;
        line-height: 24px;
        font-size: 18px;
    }

    .certificates .image {
        width: 65%;

        float: right;
        overflow: visible;
    }

    .certificates .image img {
        margin: -160px 0px -90px;

    }

    .certificates .get-certificates {
        text-align: left;
        margin-bottom: 50px;
        margin-top: 26px;
    }

    .footer-row {
        width: 70%;
        margin-left: auto;
        margin-bottom: 40px;

        position: relative;
    }

    .footer-logo-col {
        position: absolute;
        top: -30px;
        left: -230px;
    }

    .footer-contacts {
        line-height: 24px;
    }

    .footer-contacts .socials {
        line-height: 16px;
        margin-top: 0px;
    }

    #footer {
        overflow: hidden;
    }

    #footer .agreement {
        margin: 0px;
        font-family: 'Gilroy-Regular', sans-serif;
        text-align: left;
        text-decoration: underline;
        text-transform: none;
        line-height: 16px;
        max-width: 215px;

    }

    #footer .links {
        margin-top: 30px;
    }


    .if_there_games {
        padding: 0px 50px;
    }

    .schedule .game-image img {
        left: -60px;
    }

    .link-navbar {
        padding-right: 8px;
        padding-left: 8px;
    }
}


@media (min-width: 1200px) {
    .stalonne-wrap {
        display: block;
    }

    .rankes-grid {
        margin: 30px 0px;
        justify-content: flex-start;
        width: 60%;
        position: relative;
    }

    .if_there_games {
        padding: 0px;
    }

    .link-navbar {
        padding-right: 10px;
        padding-left: 10px;
    }

    .schedule .game-image img {
        left: -40px;
    }
}

.question-examples .question-examples-slider .slide .layout {
    position: static;
}

.question-examples .question-examples-slider .slide:before {
    z-index: -1;
}

.question-examples .question-examples-slider .slide {
    min-height: auto;
}

.button {
    padding: 10px 20px;
    font-family: 'Gilroy-Regular', sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

.button-yellow {
    border-radius: 2px;
    background-color: #ffd902;
    box-shadow: 0 4px 0 0 #d29a21;
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    display: inline-block;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.button.button-left {
    margin-right: 20px;
    float: left;
    font-weight: 600;
}

.button-no {
    margin-right: 0px;
    border: 2px solid #ffd902;
    background-color: transparent;
    box-shadow: none;
    color: #ffd902;
    font-size: 16px;
}

.button-yellow:hover {
    box-shadow: 0 0 0 0 #d29a21;
    -webkit-transform: translate(0px, 4px);
    -ms-transform: translate(0px, 4px);
    transform: translate(0px, 4px);
}

.main-city-droplist.first-open.w--open {
    max-width: 350px;
    min-width: 300px;
    text-align: left;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .2);
}

/* Стили попапа */

.tips-content p {
    line-height: 27px;
    margin-bottom: 12px;
    text-indent: 25px;
}

.tips-content {
    margin: auto;
    position: relative;
    background: #fff;
    background-size: cover;
    -webkit-background-size: cover;
    max-width: 701px;
    color: rgba(0, 0, 0, 0.84);
    padding: 27px 30px;
}

.mfp-close {
    background-image: url(/img/bgClose.png) !important;
    background-repeat: no-repeat !important;
    width: 60px !important;
    height: 58px !important;
    font-size: 94px;
    opacity: 1 !important;
    color: #421b75 !important;
    font-family: 'Gilroy-Regular', sans-serif;
    font-weight: 300;
    /* right: -40px; */
    right: 10px;
    top: -40px;
}
.mfp-close:active {
    top: -35px;
}

.guzeeva-question {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -10px;
}

.vladivostok-item-img {
  object-fit: contain !important;
}

.w-20 {
  max-width: 20%;
}

.owl-item .guzeeva-question .quzeeva-img {
    height: 260px;
    object-fit: cover;
    margin-bottom: 0;
}

.owl-carousel .owl-item .guzeeva-item {
    width: 45%;
    margin: 10px;
}

.game-description-wrapper {
  height: 75px;
}

.game-meta {
  position: absolute;
  bottom: 80px;
}


@media (max-width: 991px) {
    .guzeeva-question {
        flex-wrap: wrap;
        margin: 0;
    }

    .guzeeva-item {
        width: 100% !important;
    }
}

@media (max-width: 425px) {
  .first-screen .description .content {
    width: 290px;
  }

  .schedule .owl-filter-bar {
    margin: 20px 0 30px;
  }

  .owl-filter-bar * {
    display: inline-block;
    min-width: 21.5%;
    vertical-align: middle;
    text-align: center;
  }

  .title {
    margin-bottom: 0;
  }

  .how-to-pass .container .description {
    text-align: center;
  }

  .icon_live .icon-text::after {
    display: block;
    content: 'с ведущим';
  }

  .icon:last-of-type .icon-text::after {
    display: block;
    content: 'с друзьями из дома';
  }

  .description {
    word-wrap: break-word;
  }

  .first-screen .icon-text {
    font-size: 14px;
    line-height: 20px;
  }

  .rank .rank-description {
    font-size: 12px;
  }
  .atmosphere .insta-slider .slide .insta-post img {
    height: 306px;
  }
}

@media (max-width: 385px) {
  .card {
    width: 325px;
  }
}