:root {
    --main-background-color: #111111;
    --main-light-blue-color: #48F7F7;
    --main-yellow-color: #FFC34A;
    --main-magenta-color: #EA3BC3;
    --main-blue-color: #5B8BF8;
    --main-text-color: #F0F0F0;
    --main-decoration-radius: 1210px;
    --main-decoration-radius-step: 50px;
}

html,
body {
    height: 100%;
    width: 100%;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--main-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather';
    font-size: 18px;
    line-height: 22px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

h1 {
    font-size: 36px;
    color: var(--main-yellow-color);
    text-align: center;
}

h3 {
    font-size: 22px;
    color: var(--main-light-blue-color);
    text-align: center;
}

a,
p,
td {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 18px;
    }
    p {
        font-size: 12px;
    }
    h3 {
        font-size: 14px;
    }
    h4 {
        font-size: 14px;
    }
}

body {
    background: var(--main-background-color);
    margin: 0px;
}


/*header*/

header {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
    width: 100%;
    height: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--main-light-blue-color);
    background: rgba(17, 17, 17, 0.48);
}

.header-navbar {
    width: 80%;
    margin: auto;
    text-align: center;
}

.header-navbar-link {
    display: inline-block;
    width: 18%;
    margin: auto;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.header-navbar-link:hover {
    text-decoration: underline;
    transform: scale(1.05);
    transition: 0.3s;
}

.header-navbar-link.selected {
    color: var(--main-light-blue-color);
    text-decoration: none;
    font-weight: 500;
}

.header-navbar-button {
    height: 40px;
    width: 40px;
    display: none;
    position: relative;
    right: -30%;
    margin-right: 13px;
    padding: 4px;
    text-align: center;
}

.header-navbar-button-inside {
    background: var(--main-light-blue-color);
    display: block;
    border-radius: 10px;
    height: 6px;
    width: 32px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.25);
}

.header-navbar-logo {
    display: none;
    height: 40px;
    margin-left: 13px;
    position: relative;
    left: -30%;
}

@media screen and (max-width: 900px) {
    .header-navbar-logo {
        display: inline-block;
    }
    .header-navbar-link {
        display: none;
        width: 100%;
        border-bottom: 1px solid var(--main-light-blue-color);
    }
    .header-navbar {
        width: 100%;
    }
    header {
        height: auto;
        border-bottom: none;
    }
    .header-navbar-link.selected {
        color: var(--main-light-blue-color);
        text-decoration: none;
        font-weight: 300;
    }
    .header-navbar-button {
        display: inline-block;
    }
    @keyframes showLinks {
        0% {
            transform: scaleY(0);
        }
        100% {
            transform: scaleY(1);
        }
    }
    @keyframes showRows {
        0% {
            transform: scaleY(0);
        }
        100% {
            transform: scaleY(1);
        }
    }
    .collapsed .header-navbar-link {
        animation: showLinks 0.3s;
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}


/*end header*/

footer {
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100px;
}

.footer-navbar {
    text-align: center;
}

.footer-navbar-link {
    display: inline-block;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 0;
    padding: 5px;
}

.footer-navbar-link:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.footer-navbar-link-line {
    display: block;
    width: 100%;
    height: 1px;
    position: relative;
    z-index: -1;
}

.yellow .footer-navbar-link-line {
    background: var(--main-yellow-color);
    box-shadow: 0px 0px 25px var(--main-yellow-color);
}

.light-blue .footer-navbar-link-line {
    background: var(--main-light-blue-color);
    box-shadow: 0px 0px 25px var(--main-light-blue-color);
}

.magenta .footer-navbar-link-line {
    background: var(--main-magenta-color);
    box-shadow: 0px 0px 25px var(--main-magenta-color);
}

.blue .footer-navbar-link-line {
    background: var(--main-blue-color);
    box-shadow: 0px 0px 25px var(--main-blue-color);
}

.footer-navbar-link-img {
    height: 40px;
    border-radius: 5px;
}

@media screen and (max-width: 800px) {
    .footer-navbar-link {
        margin-left: 10px;
        margin-right: 10px;
    }
    .footer-navbar-link-img {
        height: 30px;
    }
    footer {
        height: 70px;
    }
}


/*footer*/

.main-page-decoration {
    text-align: center;
    position: absolute;
    top: calc(-0.5 * var(--main-decoration-radius));
    left: calc(-0.5 * var(--main-decoration-radius));
    z-index: -1;
}

.circle {
    border-radius: 100%;
    border: 1px solid;
}

.circle.circle {
    margin: auto;
    position: relative;
    /*top: calc(var(--main-decoration-radius-step)/2);*/
}

.circle.blue {
    border-color: var(--main-blue-color);
    width: calc(var(--main-decoration-radius) - 0 * var(--main-decoration-radius-step));
    height: calc(var(--main-decoration-radius) - 0 * var(--main-decoration-radius-step));
}

.circle.magenta {
    border-color: var(--main-magenta-color);
    width: calc(var(--main-decoration-radius) - 1 * var(--main-decoration-radius-step));
    height: calc(var(--main-decoration-radius) - 1 * var(--main-decoration-radius-step) - 1px);
}

.circle.light-blue {
    border-color: var(--main-light-blue-color);
    width: calc(var(--main-decoration-radius) - 2 * var(--main-decoration-radius-step));
    height: calc(var(--main-decoration-radius) - 2 * var(--main-decoration-radius-step) - 2px);
}

.circle.yellow {
    border-color: var(--main-yellow-color);
    width: calc(var(--main-decoration-radius) - 3 * var(--main-decoration-radius-step));
    height: calc(var(--main-decoration-radius) - 3 * var(--main-decoration-radius-step) - 3px);
}

@media screen and (max-width: 500px) {
    .main-page-decoration {
        display: none;
    }
}


/*.main-page {}*/

.main-page-logo {
    width: 300px;
    margin: auto;
    display: block;
    margin-top: 75px;
    margin-bottom: 50px;
}

.main-page-text {
    margin: auto;
    text-align: right;
    width: 60%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    height: 65px;
}

.main-page-menu {
    text-align: center;
}

.main-page-menu-box {
    text-align: center;
    border-radius: 14px;
    display: inline-block;
    width: 243px;
    height: 185px;
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.main-page-menu-box:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.main-page-menu-img {
    border: 2px solid;
    box-sizing: border-box;
    border-radius: 14px;
    object-fit: cover;
    width: 243px;
    height: 185px;
}

.main-page-menu-text-box {
    background: var(--main-background-color);
    opacity: 0.9;
    height: 20px;
    position: relative;
    top: -49px;
    margin: 1px;
    border-top: 1px solid;
    border-left: 1px solid var(--main-background-color);
    border-right: 1px solid var(--main-background-color);
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
    height: 41px;
}

.yellow .main-page-menu-img,
.yellow .main-page-menu-text-box {
    border-color: var(--main-yellow-color);
}

.blue .main-page-menu-img,
.blue .main-page-menu-text-box {
    border-color: var(--main-blue-color);
}

.light-blue .main-page-menu-img,
.light-blue .main-page-menu-text-box {
    border-color: var(--main-light-blue-color);
}

.magenta .main-page-menu-img,
.magenta .main-page-menu-text-box {
    border-color: var(--main-magenta-color);
}

.main-page-menu-text {
    font-size: 22px;
    font-weight: 300;
    line-height: 41px;
}

.main-page-decoration-line {
    z-index: -1;
    height: 1px;
    width: 100%;
    position: absolute;
}

.main-page-decoration-line.yellow {
    background: var(--main-yellow-color);
    top: calc(var(--main-decoration-radius)/2 - 3*var(--main-decoration-radius-step));
}

.main-page-decoration-line.light-blue {
    background: var(--main-light-blue-color);
    top: calc(var(--main-decoration-radius)/2 - 2*var(--main-decoration-radius-step));
}

.main-page-decoration-line.magenta {
    background: var(--main-magenta-color);
    top: calc(var(--main-decoration-radius)/2 - 1*var(--main-decoration-radius-step));
}

.main-page-decoration-line.blue {
    background: var(--main-blue-color);
    top: calc(var(--main-decoration-radius)/2 - 0*var(--main-decoration-radius-step));
}

@media screen and (max-width: 900px) {
    .main-page-logo {
        display: none;
    }
    .main-page-text {
        display: none;
    }
    .main-page-decoration-line {
        display: none;
    }
}

@media screen and (max-width: 1300px) {
    .main-page-menu-box {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media screen and (max-width: 1000px) {
    .main-page-menu-box {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media screen and (max-width: 400px) {
    .main-page-menu-box {
        margin: auto;
    }
}


/*width*/

.w-1 {
    width: 10%;
}

.w-2 {
    width: 20%;
}

.w-3 {
    width: 30%;
}

.w-4 {
    width: 50%;
}

.w-5 {
    width: 50%;
}

.w-6 {
    width: 60%;
}

.w-7 {
    width: 70%;
}

.w-8 {
    width: 80%;
}

.w-9 {
    width: 90%;
}

.w-10 {
    width: 100%;
}


/*location*/

.page-divider {
    margin-bottom: 20px;
    height: 1px;
    margin: auto;
}

.page-divider.yellow {
    background: var(--main-yellow-color);
}

.page-divider.magenta {
    background: var(--main-magenta-color);
}

.page-divider.light-blue {
    background: var(--main-light-blue-color);
}

.page-divider.blue {
    background: var(--main-blue-color);
}

.location-page {
    width: 60%;
    margin: auto;
    margin-bottom: 20px;
}

.page-map-plate {
    width: 90%;
    margin: auto;
}

.page-map {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    border: none;
    margin-bottom: 20px;
    position: relative;
}

.page-map-discription {
    position: absolute;
    top: 668px;
    width: 350px;
    height: 100px;
    margin-left: 75px;
    z-index: 1;
    background: rgba(52, 51, 51, 0.68);
    border: 1px solid var(--main-magenta-color);
    box-sizing: border-box;
    backdrop-filter: blur(7px);
    border-radius: 10px;
    padding: 24px 6px 24px 16px;
}

.map-discription {
    font-weight: 300;
    margin-top: 0;
}

@media screen and (max-width: 900px) {
    .page-map-discription {
        position: relative;
        top: 0;
        background: none;
        border: none;
        width: 90%;
        margin: auto;
        padding: 0;
        height: auto;
        padding-bottom: 24px;
    }
    .location-page {
        width: 100%;
    }
    .page-map-plate {
        width: 100%;
    }
    .page-map {
        border-radius: 0;
    }
}


/*location*/


/*timetable*/

.timetable {
    width: 90%;
    backdrop-filter: blur(4px);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
    border-collapse: separate;
    border: 1px solid var(--main-yellow-color);
    border-spacing: 0px;
}

.timetable td {
    border: 1px solid var(--main-yellow-color);
    padding: 12px;
    border-left: none;
    width: calc(0.14 * 100vw);
    vertical-align: top;
}

.timetable td:last-child {
    border-right: none;
}

.timetable tbody td {
    border-bottom: none;
}

.timetable thead td {
    text-align: center;
    font-weight: bold;
    color: var(--main-light-blue-color);
    border-bottom: none;
    border-top: none;
    height: 70px;
    font-size: 22px;
}

.timetable tbody td[data-target-number] {
    display: none;
}

.timetable tbody td[data-target-number].collapsed {
    display: table-cell;
}

.timetable tbody td[data-target-number].collapsed .timetable-day-date {
    display: none;
}

.timetable tbody td[data-target-number].collapsed .timetable-day-event {
    display: block;
}

.timetable-header {
    color: var(--main-text-color);
    height: 60px;
}

.timetable thead td.weekend {
    color: var(--main-magenta-color);
}

.timetable-day {
    position: relative;
    min-width: 150px;
    min-height: 100px;
    height: 100%;
}

.timetable-day-event {
    text-align: right;
    margin-top: 10px;
}

.timetable-day-date {
    color: var(--main-text-color);
    font-size: 22px;
    font-weight: 200;
}

.today .timetable-day-date {
    color: var(--main-blue-color);
    font-weight: 500;
}

.timetable-day-date .disable {
    color: grey;
}

.timetable-day-name {
    color: var(--main-text-color);
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
}

.timetable-day-name:hover {}

.timetable-day-time {
    color: var(--main-yellow-color);
    font-weight: 500;
}

.timetable td[name="event"] {
    background: rgba(72, 247, 247, 0.3);
}

@media screen and (max-width: 1200px) {
    .timetable-day {
        min-width: 0;
    }
    .timetable td {
        min-width: none;
    }
    .timetable-day-date {
        line-height: 30px;
    }
    .timetable tbody td .timetable-day {
        min-height: 30px;
        width: 30px;
        border-radius: 100%;
    }
    .timetable tbody {
        border: none;
    }
    .timetable-day-name {
        font-size: 12px;
    }
}

@media screen and (min-width: 900px) {
    .timetable td.collapsed {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    .timetable {
        border: none;
    }
    .timetable td {
        border: none;
    }
    .timetable thead td {
        border-bottom: 1px solid var(--main-yellow-color);
        height: auto;
    }
    .timetable td {
        height: auto;
        width: auto;
        text-align: center;
        padding: 12px;
    }
    .timetable td[name="event"] {
        background: none;
    }
    .timetable tbody td[name="event"] .timetable-day {
        border: 1px solid var(--main-yellow-color);
        background: rgba(72, 247, 247, 0.3);
    }
    .timetable tbody .timetable-day.today {
        border: 1px solid var(--main-blue-color) !important;
    }
    .timetable tbody .collapsed .timetable-day.today {
        border: none !important;
        border-top: 1px solid var(--main-yellow-color) !important;
        border-bottom: 1px solid var(--main-yellow-color) !important;
    }
    .timetable-day {
        min-height: 0;
        margin: auto;
    }
    .timetable-day-date {
        font-size: 16px;
    }
    td .timetable-day .timetable-day-event {
        display: none;
    }
    .timetable-page-decoration {
        display: none;
    }
    .timetable td.collapsed .timetable-day {
        width: auto;
        height: auto;
        background: rgba(72, 247, 247, 0.3);
        border-radius: 0;
        border-top: 1px solid var(--main-yellow-color);
        border-bottom: 1px solid var(--main-yellow-color);
        padding: 10px;
        animation: showRows 0.3s;
    }
}

@media screen and (max-width: 600px) {
    .timetable thead td {
        font-size: 16px;
    }
    .timetable-day-date {
        font-size: 14px;
    }
    .timetable td {
        padding: 10px;
    }
    .timetable-day-name {
        font-size: 14px;
    }
}

.timetable-page-decoration {
    width: 100%;
    position: absolute;
    z-index: -1;
}

.timetable-page-decoration .page-divider {
    margin-top: 50px;
}

.timetable-page-decoration.one {
    top: 550px;
}

.timetable-page-decoration.two {
    top: 850px;
}

.timetable-buttons {
    margin: auto;
    text-align: center;
    width: 70%;
    justify-content: center;
}

.timetable-title-button {
    width: 25%;
    display: inline-block;
}

.timetable-title-button.left {
    text-align: right;
}

.timetable-title-button.right {
    text-align: left;
}

.timetable-title {
    display: inline-block;
    margin: auto;
    width: 40%;
    position: relative;
    text-align: center;
    /*bottom: 10px;*/
}

@media screen and (max-width: 900px) {
    .timetable-title-button {
        font-size: 12px;
    }
    .timetable-title {
        width: 25%;
    }
    .timetable-buttons {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .timetable td {
        padding: 3px;
    }
    .timetable-title-button {
        width: 30%;
    }
}


/**/


/*contacts*/

.contact-content-page {
    position: relative;
    width: 70%;
    margin: auto;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.contact-content-text-box {
    padding-right: 20px;
    width: 50%;
    display: inline-block;
}

.contact-content-image-box {
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 50%;
}

.contact-content-text-name {
    display: inline-block;
    width: 30%;
    margin-top: 64px;
    margin-bottom: 5px;
    margin-left: 15px;
}

.contact-content-text {
    text-align: right;
    display: inline-block;
    width: 60%;
    margin-right: 0;
}

.contact-content-image {
    position: absolute;
    bottom: 0;
    width: calc(100% - 17px);
    border: 1px solid var(--main-yellow-color);
    object-fit: cover;
    min-height: calc(90% - 2px);
}

.contact-content-text {
    font-size: 14px;
    overflow-wrap: break-word;
}

@media screen and (max-width: 1000px) {
    .contact-content-image-box {
        display: none;
    }
    .contact-content-image {
        display: none;
    }
    .contact-content-text-box {
        width: 100%;
        padding: 0;
    }
    .contact-content-page {
        width: 90%;
    }
    .contact-content-text-box {
        text-align: center;
    }
    .contact-content-text-name {
        text-align: left;
        margin-left: 0;
    }
}


/*contacts*/

:root {
    --top-ofset: -15px;
}


/*about us*/

.about-us-page-block {
    width: 70%;
    padding: 20px 40px 20px 40px;
    margin: auto;
    margin-bottom: 200px;
    display: block;
}

.about-us-page-block p {
    font-weight: 300;
}

.about-us-page-block h4 {
    font-size: 36px;
    line-height: 45px;
    color: var(--main-yellow-color);
    margin-bottom: 20px;
    margin-top: 0px;
}

.about-us-page-block.info-type-third {
    border-right: 1px var(--main-magenta-color) solid;
    border-bottom: 1px var(--main-magenta-color) solid;
    border-bottom-right-radius: 10px;
}

.about-us-page-block.info-type-third h4 {
    text-align: left;
}

.about-us-page-block.info-type-third .info-block:first-child {
    width: calc(40% - 20px);
}

.about-us-page-block.info-type-third .info-block:last-child {
    width: calc(60% - 20px);
}

.info-block {
    display: inline-block;
    vertical-align: top;
}

.info-block:first-child {
    padding-right: 20px;
}

.deco-venil-block {
    position: relative;
    top: -35px;
}

.venil {
    transform: rotateX(30deg) rotateY(45deg) rotateZ(0deg);
    display: inline-block;
    width: 0px;
    margin-left: -60px;
    position: relative;
    height: 300px;
    list-style: none;
}

.venil:first-child {
    margin-left: 350px;
    top: calc(5 * var(--top-ofset));
    z-index: 15;
}

.venil:nth-child(2) {
    top: calc(4 * var(--top-ofset));
    z-index: 16;
}

.venil:nth-child(3) {
    top: calc(3 * var(--top-ofset));
    z-index: 17;
}

.venil:nth-child(4) {
    top: calc(2 * var(--top-ofset));
    z-index: 18;
}

.venil:nth-child(5) {
    top: calc(1 * var(--top-ofset));
    z-index: 19;
}

.venil:nth-child(6) {
    top: calc(0 * var(--top-ofset));
    z-index: 20;
}

.venil .image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transform: translateY(0);
    transition: 1s;
}

.venil .text {
    opacity: 0;
    transition: 1s;
}

.venil:hover .image {
    transform: translateY(-50px);
    transition: 1s;
}

.venil:hover .text {
    transform: translateY(-50px);
    opacity: 1;
    transition: 1s;
}

.button {
    padding: 10px 22px 10px 22px;
    border-radius: 100px;
    cursor: pointer;
}

.about-us-page-block.info-type-third .slide-buttons {
    display: none;
}

.button.magenta {
    background: var(--main-magenta-color);
    box-shadow: 4px 4px 33px rgba(234, 59, 195, 0.6);
}

.button.blue {
    background: var(--main-blue-color);
    box-shadow: 4px 4px 33px rgba(91, 139, 248, 0.6);
}

.button.light-blue {
    background: var(--main-light-blue-color);
    box-shadow: 4px 4px 33px rgba(72, 247, 247, 0.6);
}

.button.yellow {
    background: var(--main-yellow-color);
    box-shadow: 4px 4px 33px rgba(255, 195, 74, 0.6);
}

.button:hover {}

.about-us-page-block.info-type-third .button {
    position: relative;
    top: 25px;
}

.about-us-page-block.info-type-second {
    position: relative;
}

.about-us-page-block.info-type-second .info-block:last-child {
    text-align: right;
    padding-left: 40px;
    border-left: 1px solid var(--main-light-blue-color);
    width: 500px;
    position: absolute;
    height: calc(100% - 40px);
}

.about-us-page-block.info-type-second h4 {
    text-align: right;
}

.about-us-page-block.info-type-second .info-block:first-child {
    width: calc(100% - 590px);
    padding-right: 50px;
}

.deco-slide-show {
    padding: 0;
    display: flex;
    width: 100%;
}

.deco-slide-show .slide {
    display: inline-block;
    cursor: pointer;
}

.deco-slide-show .slide .image {
    width: 100%;
    object-fit: cover;
}

.deco-slide-show .slide:hover .image {
    transform: scale(1.1);
    transition: 0.3s;
    box-shadow: 0px 0px 20px rgba(72, 247, 247, 0.3);
}

.deco-slide-show .divider {
    display: inline-block;
    width: 2px;
    margin: 10px 10px 10px 10px;
    background: var(--main-light-blue-color);
}

.target-image-box {
    display: block;
    margin: auto;
    text-align: center;
    opacity: 1;
    transition: .3s;
}

.target-image {
    width: 90%;
    margin: auto;
}

.target-image-box.close {
    opacity: 0;
    transition: .3s;
}

.about-us-page-block.info-type-second .button {
    position: relative;
    top: 25px;
}

.about-us-page-block.info-type-first {
    border-left: 1px var(--main-blue-color) solid;
    border-top: 1px var(--main-blue-color) solid;
    border-top-left-radius: 10px;
}

.about-us-page-block.info-type-first .info-block {
    vertical-align: top;
}

.about-us-page-block.info-type-first .info-block {
    width: 350px;
}

.about-us-page-block.info-type-first .info-block:last-child {
    text-align: right;
    width: calc(100% - 355px);
}

.about-us-page-block.info-type-first .info-block:last-child .image {
    width: 70%;
    object-fit: cover;
    height: 300px;
    margin-bottom: 20px;
}

.about-us-page-block.info-type-first h4 {
    display: block;
    text-align: left;
    width: fit-content;
    position: relative;
}

.about-us-page-block.info-type-first h4:after {
    content: "";
    width: 100%;
    background: var(--main-yellow-color);
    position: absolute;
    left: 0;
    top: 40px;
    top: 50px;
    height: 1px;
}

.about-us-page-block.info-type-first .button {
    position: relative;
    top: 35px;
}

.about-us-page-block.info-type-games {
    width: 60%;
}

.about-us-page-block.info-type-games h4 {
    margin-bottom: 50px;
}

.about-us-page-block.info-type-games .game-box {
    width: 30%;
    position: relative;
    display: inline-block;
}

.about-us-page-block.info-type-games .info-block {
    text-align: center;
}

.game-box .image {
    display: inline-block;
    border-radius: 100px;
    vertical-align: top;
    padding: 0;
    object-fit: cover;
    width: 75px;
    height: 75px;
    margin: 10px;
    margin-top: 0;
    filter: drop-shadow(0px 0px 20px rgba(91, 139, 248, 0.6));
    border: 1px solid rgba(91, 139, 248, 0.2);
}

.game-box .discription {
    width: calc(70% - 40px);
    display: inline-block;
    text-align: left;
}

.game-box .discription p {
    font-size: 12px;
}

.game-box .discription h6 {
    text-align: left;
    margin: 0;
}

.button.small {
    padding: 5px 10px 5px 10px;
    width: 80px;
}

.about-us-page-block.info-type-games .button {
    display: block;
    margin: auto;
    margin-top: 20px
}

.about-us-page-block.about-us-page-block.info-type-pricelist {
    text-align: center;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .addition {
    margin-bottom: 0;
    margin-top: 30px;
}

.about-us-page-block.about-us-page-block.info-type-pricelist h4 {
    margin-bottom: 30px;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .info-block {
    width: calc(50% - 31px);
}

.about-us-page-block.about-us-page-block.info-type-pricelist .divider {
    width: 1px;
    height: 250px;
    display: inline-block;
    margin: 0px 20px 0px 20px;
    background: var(--main-blue-color);
}

.about-us-page-block.about-us-page-block.info-type-pricelist .discription {
    color: var(--main-light-blue-color);
    height: 42px;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .line {
    background: var(--main-magenta-color);
    width: 2px;
    height: 90px;
    display: inline-block;
    vertical-align: top;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .price-list {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .price-list .price {
    text-align: left;
    margin-top: 35px;
    margin-left: 20px;
}

.about-us-page-block.about-us-page-block.info-type-pricelist .price-list .price::before {
    content: "";
    position: absolute;
    left: -14px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: var(--main-light-blue-color);
    border: 2px solid var(--main-blue-color);
    box-shadow: 0px 0px 12px var(--main-blue-color);
}

.about-us-page-block.info-type-slider {
    width: 960px;
    padding: 0;
    overflow: hidden;
    border-radius: 5px;
}

.about-us-page-block .main-slide-show {
    width: 99999px;
    padding: 0;
    height: 600px;
    font-size: 0;
    position: relative;
    left: 0px
}

.about-us-page-block .main-slide-show .slide {
    display: inline-block;
    position: relative;
    height: 600px;
    width: 960px;
}

.about-us-page-block .main-slide-show .slide::marker {
    content: "";
}

.about-us-page-block .main-slide-show .slide .image {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}

.about-us-page-block .main-slide-show .slide .discription {
    object-fit: cover;
    position: absolute;
    bottom: 0;
    background: rgba(5, 5, 5, 0.51);
    backdrop-filter: blur(4px);
    padding: 20px;
    width: calc(100% - 40px);
    /* added */
}

.about-us-page-block .main-slide-show .slide .discription .info-block {
    width: calc(50% - 20px);
    display: inline-block;
    position: relative;
}

.about-us-page-block .main-slide-show .slide .discription .info-block:last-child {
    text-align: right;
}

.about-us-page-block .main-slide-show .slide .discription .info-block:first-child::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 60%;
    left: 0;
    height: 1px;
    background: var(--main-light-blue-color);
}

.about-us-page-block .main-slide-show .slide .discription .info-block:last-child::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 80%;
    right: 0;
    height: 1px;
    background: var(--main-yellow-color);
}

.main-slide-show-navigation {
    display: block;
    position: relative;
    top: -25px;
    margin: auto;
    padding: 0px;
    text-align: center;
}

.main-slide-show-navigation::marker {
    content: none;
    display: none;
}

.main-slide-show-navigation .nav {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #FFFBFB;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    opacity: 0.5;
}

.main-slide-show-navigation .nav.selected {
    opacity: 1;
}

.slide-buttons {
    display: block;
    width: 960px;
    height: 40px;
    position: relative;
    top: -360px
}

.slide-button {
    position: absolute;
    width: 20px;
    height: 60px;
    opacity: 0.7;
    cursor: pointer;
}

.slide-button:first-child {
    left: 10px;
}

.slide-button:last-child {
    right: 10px;
}

.slide-button .first {
    position: absolute;
    background: #FFFBFB;
    height: 30px;
    width: 10px;
    top: 4px;
    border-radius: 50px;
    transform: rotate(20deg);
    left: 5px;
}

.slide-button .second {
    top: 26px;
    position: absolute;
    background: #FFFBFB;
    height: 30px;
    width: 10px;
    border-radius: 50px;
    transform: rotate(-20deg);
    left: 5px;
}

.slide-button:last-child .first {
    transform: rotate(-20deg);
    left: 5px;
}

.slide-button:last-child .second {
    transform: rotate(20deg);
    left: 5px;
}


/*screen*/


/*
@media screen and (max-width: 1350px) {
    .about-us-page-block h4 {
        height: 90px;
    }
}*/

@media screen and (max-width: 1300px) {
    .venil:first-child {
        margin-left: 290px;
    }
    .about-us-page-block.info-type-first .info-block:last-child .image {
        width: 90%;
    }
    .about-us-page-block.info-type-second .info-block {
        width: 70%;
    }
    .about-us-page-block.info-type-second .info-block:last-child {
        position: relative;
        display: table-header-group;
    }
    .about-us-page-block.info-type-second .info-block:first-child {
        position: relative;
        display: table-footer-group;
    }
    .about-us-page-block.info-type-second .addition {
        margin-bottom: 50px;
    }
    .about-us-page-block.info-type-second .button {
        top: -20px;
    }
}

@media screen and (max-width: 1200px) {
    .about-us-page-block.info-type-games .game-box {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1100px) {
    .venil:first-child {
        margin-left: 250px;
    }
    .about-us-page-block.info-type-third .button {
        position: relative;
        top: 10px;
    }
    .about-us-page-block.info-type-third {
        border: none;
    }
    .about-us-page-block.info-type-first {
        border: none;
    }
}

@media screen and (max-width: 1000px) {
    .about-us-page-block.info-type-slider {
        width: 760px;
    }
    .about-us-page-block .main-slide-show {
        height: 400px;
    }
    .about-us-page-block .main-slide-show .slide {
        height: 400px;
        width: 760px;
    }
    .slide-buttons {
        width: 760px;
        top: -270px;
    }
    .about-us-page-block.info-type-first .info-block {
        display: block;
        width: 100%;
    }
    .about-us-page-block.info-type-first .info-block:first-child {
        width: 100%;
    }
    .about-us-page-block.info-type-first .info-block:last-child {
        width: 100%;
    }
    .about-us-page-block.info-type-first .info-block .page-divider.magenta {
        margin-bottom: 50px;
    }
    .about-us-page-block.info-type-first .info-block .button {
        top: -25px;
    }
}

@media screen and (max-width: 900px) {
    .about-us-page-block p {
        font-size: 14px;
    }
    .about-us-page-block h4 {
        font-size: 18px;
    }
    .about-us-page-block {
        margin-bottom: 50px;
    }
    .venil {
        margin-left: -40px;
    }
    .venil .image {
        width: 150px;
        height: 150px;
    }
    .venil:first-child {
        margin-left: 150px;
    }
    .deco-venil-block {
        top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .about-us-page-block.info-type-slider {
        width: 560px;
    }
    .about-us-page-block .main-slide-show {
        height: 300px;
    }
    .about-us-page-block .main-slide-show .slide {
        height: 300px;
        width: 560px;
    }
    .slide-buttons {
        width: 560px;
        top: -215px;
    }
    .about-us-page-block .main-slide-show .slide .discription {
        padding: 2px 20px 2px 20px;
    }
    .about-us-page-block .main-slide-show .slide .discription .info-block:last-child::after {
        top: 7px;
    }
    .main-slide-show-navigation {
        top: -19px;
    }
    .about-us-page-block .main-slide-show .slide .discription .info-block:first-child::after {
        bottom: 0px;
    }
}

@media screen and (max-width: 750px) {
    .about-us-page-block.about-us-page-block.info-type-pricelist .price-list .price {
        margin-left: 10px;
    }
    .about-us-page-block {
        width: 95%;
        padding: 20px 5px 20px 5px;
        margin-bottom: 10px;
    }
    .about-us-page-block.info-type-first .info-block:last-child .image {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .about-us-page-block .main-slide-show .slide .discription {
        display: none;
    }
    .about-us-page-block.info-type-slider {
        width: 460px;
    }
    .about-us-page-block .main-slide-show {
        height: 200px;
    }
    .about-us-page-block .main-slide-show .slide {
        height: 200px;
        width: 460px;
    }
    .slide-buttons {
        width: 460px;
        top: -160px;
        z-index: 1000;
    }
    .slide-buttons .slide-button {
        transform: scale(0.5);
    }
    .about-us-page-block.about-us-page-block.info-type-pricelist .info-block {
        display: block;
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }
    .about-us-page-block.about-us-page-block.info-type-pricelist .divider {
        display: none;
    }
    .about-us-page-block.info-type-games {
        width: 95%;
    }
    .about-us-page-block.about-us-page-block.info-type-pricelist .info-block h4 {
        font-size: 14px;
        line-height: 20px;
    }
    .about-us-page-block.about-us-page-block.info-type-pricelist h4 {
        margin-bottom: 5px;
    }
    .about-us-page-block.info-type-games .button {
        margin-top: 0px;
    }
    .about-us-page-block.info-type-third {
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 0;
    }
    .about-us-page-block.info-type-third .info-block {
        width: calc(100% - 10px) !important;
        display: block;
        margin: auto;
        text-align: center;
        padding: 5px;
    }
    .about-us-page-block.info-type-third .info-block:first-child p:last-child {
        display: none;
    }
    .about-us-page-block h4 {
        text-align: center !important;
    }
    .venil-slides {
        width: 190px;
        margin: auto;
    }
    .about-us-page-block.info-type-third .slide-buttons {
        display: block;
        width: 190px;
        top: -90px;
    }
    .about-us-page-block.info-type-third .slide-buttons .slide-button:first-child {
        left: -15px;
    }
    .about-us-page-block.info-type-third .slide-buttons .slide-button:last-child {
        right: -15px;
    }
    .deco-venil-block {
        width: 9999px;
        display: block;
        padding: 0;
        text-align: left;
        font-size: 0;
    }
    .venil {
        top: 0px !important;
        transform: none;
        display: inline-block;
        margin: 0 !important;
        position: relative;
        width: 150px;
        height: 160px;
        padding: 0 20px 0 20px;
        left: 0px !important;
    }
    .venil.selected .image {
        transform: scale(1.2) !important;
        transition: 0.3s;
    }
    .venil .text {
        text-align: center;
    }
    .venil.selected .text {
        transform: translateY(-5px) !important;
        transition: 0.3s;
        opacity: 1 !important;
    }
    .venil:hover .image {
        transform: none;
    }
    .venil:hover .text {
        transform: none;
        opacity: 0;
    }
    .about-us-page-block.info-type-second .info-block p {
        text-align: center;
    }
    .about-us-page-block.info-type-second .info-block:last-child {
        text-align: center;
    }
    .about-us-page-block.info-type-first .info-block {
        text-align: center;
    }
    .about-us-page-block.info-type-first .info-block:last-child {
        text-align: center;
    }
    .about-us-page-block.info-type-first h4 {
        margin: auto;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .about-us-page-block.info-type-slider {
        width: 360px;
    }
    .about-us-page-block .main-slide-show {
        height: 300px;
    }
    .about-us-page-block .main-slide-show .slide {
        height: 300px;
        width: 360px;
    }
    .slide-buttons {
        width: 360px;
        top: -215px;
    }
}

@media screen and (max-width: 400px) {
    .about-us-page-block.info-type-slider {
        width: 320px;
    }
    .about-us-page-block .main-slide-show {
        height: 300px;
    }
    .about-us-page-block .main-slide-show .slide {
        height: 300px;
        width: 320px;
    }
    .slide-buttons {
        width: 320px;
        top: -215px;
    }
}


/*about us*/

.error-page {
    width: 60%;
    margin: auto;
    text-align: center;
    margin-bottom: 100px;
}

.error-page .discription {
    width: 400px;
    display: inline-block;
    max-height: 190px;
    margin: auto;
}

.error-page .number {
    width: 400px;
    margin: auto;
    display: inline-block;
}

.error-page h1 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 150px;
    line-height: 183px;
    width: 100%;
    margin: auto;
    text-align: center;
    color: var(--main-light-blue-color);
}

.error-page h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 60px;
    line-height: 73px;
    text-align: center;
    color: var(--main-light-blue-color);
    width: 100%;
    margin: auto;
}

.error-page .page-divider {
    width: 60%;
    margin: auto;
}

@media screen and (max-width: 700px) {
    .error-page h1 {
        font-size: 72px;
        line-height: 100px;
    }
    .error-page h2 {
        font-size: 36px;
        line-height: 50px;
    }
    .error-page .discription {
        width: 100%;
    }
    .error-page .number {
        width: 100%;
    }
    .error-page {
        width: 100%;
    }
}