﻿/*Get-Web.Site - Ãâ€™ÃÂµÃ‘â‚¬Ã‘ÂÃ‘â€šÃÂºÃÂ° Ã‘ÂÃÂ°ÃÂ¹Ã‘â€šÃÂ¾ÃÂ² ÃÂ½ÃÂ° ÃÂ·ÃÂ°ÃÂºÃÂ°ÃÂ·
Email: l2banners@mail.ru
*/

@import url(resetb3e8.css?ver=0.1);

body {
    background: rgb(29, 25, 22);
    color: #d5c8b4;
    font-family: 'Gilroy';
    font-size: 20px;
    font-weight: 400;
    transition: .3s all;
}

.main {
    overflow-y: hidden;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* preload */

.preload {
    background: rgb(0, 0, 0);
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(.64, .14, .34, 1.32);
}

.preload_logo {
    background: url(../images/logo__preload.png) no-repeat center center;
    width: 250px;
    height: 281px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 4;
    animation: preanimate .8s linear infinite;
}

@keyframes preanimate {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.preload.fade {
    opacity: 0;
    visibility: hidden;
    transform: scale(2);
}

@keyframes preanimateout {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

a {
    color: #f8a61f;
    transition-duration: .3s;
    transition-property: opacity, color, background-color, background;
}

a:hover {
    color: #cf0404;
    text-decoration: none;
}

img {
    max-width: 100%;
}

input,
select {
    width: 100%;
    min-height: 62px;
    border-radius: 3px;
    background-color: #000;
    border: 1px solid #000;
    padding: 10px;
    box-sizing: border-box;
    transition: .3s all;
    color: rgba(213, 200, 180, 0.8);
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    box-shadow: 0px 0px 24px rgba(192, 192, 192, 0);
}

input:focus {
    box-shadow: 0px 0px 24px rgba(192, 192, 192, 0.2);
}

.inp-grp {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.inp-error {
    color: rgb(255, 84, 18);
    margin-bottom: 5px;
}

.inp-error~input {
    outline: 1px solid rgb(255, 84, 18);
}

.input_wrapper span {
    margin-bottom: 10px;
    display: inline-block;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.main__container {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.main__container_style_nav {
    margin-top: 35px;
    height: 88px;
}

.rw {
    margin: 0 -15px;
}

.cl {
    margin: 0 15px;
}

.cl_m_all {
    margin: 15px;
}


/* Ãâ€ÃÂ¾ÃÂ¿ÃÂ¾ÃÂ»ÃÂ½ÃÂ¸Ã‘â€šÃÂµÃÂ»Ã‘Å’ÃÂ½ÃÂ¾ */

.hidden {
    opacity: 0;
    transition: .3s all;
}

.visible {
    opacity: 1;
    transition: .3s all;
}


.old_ie {
    background-color: #000;
    font-size: 30px;
    padding: 120px 0 20px 0;
    text-align: center;
    z-index: 999999;
    width: 100%;
    color: #fff;
}

.old_ie a {
    color: #D53939;
}

/* navigation */

.navigation {
    background: #00000080;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    z-index: 50;
}

/* logo */

.logo {
  background: url('../images/logo-shock.png') no-repeat center center;
  background-size: contain; /* Logo boyutlarını ayarlamak için */
  width: 170px; /* Logo genişliği */
  height: 170px; /* Logo yüksekliği */
  display: flex;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  margin: auto; /* Tam oturması için */
}
.navigation_stick .logo{
	background: url(../images/logo-shock.png) no-repeat right center;
    width: 110px;
    height: 110px;
    display: block;
	background-size:contain;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    transition: .2s all;
}
.logo:hover {
    filter: brightness(120%);
}

.navigation__logo-wrp {
    margin: 0 30px;
}


/* ÃÅ¡ÃÂ½ÃÂ¾ÃÂ¿ÃÂºÃÂ° ÃÂ¼ÃÂµÃÂ½Ã‘Å½ */

.burger-btn {
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 88;
    height: 36px;
    width: 60px;
    border-radius: 3px;
    cursor: pointer;
    box-sizing: border-box;
}

.burger-btn__line {
    height: 2px;
    position: absolute;
    left: 5px;
    right: 5px;
    background-color: #fff;
    border-radius: 0px;
    transition: .3s all;
}

.burger-btn__line_top {
    top: 5px;
}

.burger-btn__line_middle {
    top: 50%;
    transform: translateY(-50%);
}

.burger-btn__line_bottom {
    bottom: 5px;
}

.burger-btn_active .burger-btn__line_top {
    transform: rotate(45deg) translateY(-50%);
    transform-origin: center top;
    top: 50%;
}

.burger-btn_active .burger-btn__line_middle {
    transform: rotate(180deg);
    opacity: 0;
}

.burger-btn_active .burger-btn__line_bottom {
    transform: rotate(-45deg) translateY(50%);
    transform-origin: center bottom;
    bottom: 50%;
}

/* page-nav */

.page-nav {}

.navigation__page-nav {
    margin-right: auto;
    margin-left: 5px;
}

.page-nav__open {
    position: relative;
    z-index: 4;
}

.page-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-nav__link_lvl_1 {
    text-decoration: none;
    display: inline-flex;
    position: relative;
    text-align: center;
    white-space: nowrap;
    height: 85px;
    cursor: pointer;
	padding:0px 15px;
    background-color: transparent;
    z-index: 1;
    text-transform: uppercase;
    font-weight: 600;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.page-nav__link_lvl_1:hover,
.page-nav__link_lvl_1:focus {
    color: #f8a61f;
}

.page-nav__link_mobile {
    display: none;
}




@media (min-width: 1170px) {

    .navigation_stick {
        position: fixed;
        top: 10px;
        left: 50px;
        right: 50px;
        background-color: rgba(0, 0, 0, 0.7);
        background-image: none;
        height: 74px;
        animation: navStick 1s ease 1;
        animation-fill-mode: forwards;
    }

    @keyframes navStick {
        0% {
            opacity: 0;
            transform: translateY(-100%);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ÃÂ¼ÃÂµÃÂ½Ã‘Å½ */
    .burger-btn {
        display: none;
    }


    .page-nav__link_sub-menu {
        padding-right: 14px;
        position: relative;
    }

    .page-nav__link_sub-menu:after {
        content: '';
        display: block;
        background: url(../images/arrow__down_color.png) no-repeat;
        width: 9px;
        height: 6px;
        position: absolute;
        right: 0;
        top: calc(50% - 3px);
        transition: .3s all;
        cursor: pointer;
        z-index: 6;
    }

    .page-nav__link_sub-menu:hover:after {
        transform: rotateX(180deg);
    }


    .page-nav__sub-list {
        position: absolute;
        left: -10px;
        top: calc(100% - 30px);
        opacity: 0;
        visibility: hidden;
        transition: .1s all;
        display: flex;
        border: 1px solid #4f433d;
        /* border-top: 0px; */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: linear-gradient(to bottom, rgba(55, 55, 55, 0.37) 0%, rgba(78, 69, 65, 0.84) 100%);
        border-radius: 0px;
    }
      

    .page-nav__link_sub-menu:hover .page-nav__sub-list {
        left: -10px;
        top: calc(100% + 1px);
        opacity: 1;
        visibility: visible;
    }

    .page-nav__link_lvl_2 {
        font-size: 15px;
        padding: 7px 10px;
        border-bottom: 1px solid #4f433d;
        text-decoration: none;
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align-last: left;
        color: rgb(213, 200, 180);
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.49);
    }
    .page-nav__link_lvl_2:last-child {
        border-bottom: 0px;
    }
    .page-nav__sub-list:before {
        content:'';
        position:absolute;
        top:-13px;
        right:calc(50% - 3.5px);
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 7px 10px 7px 0;
        transform:rotate(90deg);
        border-color: transparent #4f433d transparent transparent;  
    }

}

@media (max-width: 1170px) {

    /* ÃÂ¼ÃÂµÃÂ½Ã‘Å½ */
    .burger-btn {
        display: block;
    }

    .page-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 86;
        height: auto;
        overflow-y: auto;
        align-items: flex-start;
        background-color: rgba(0, 0, 0, 0.7);
        margin: 0;
    }

    .page-nav_active {
        display: flex;
    }

    .page-nav__link_lvl_1 {
        width: 100%;
        text-align: left;
        padding: 7px 10px;
    }

    .page-nav__open {
        text-align: left;
    }

    .page-nav__list {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        margin: auto auto auto 0;
        height: 100%;
        /* padding: 7px 0; */
        box-sizing: border-box;
        background-color: rgb(0 0 0 / 85%);
    }

    .page-nav__list {
        align-items: self-start;
    }



    .page-nav_active .page-nav__list {
        animation: menu 1s ease 1;
        animation-fill-mode: forwards;
    }

    @keyframes menu {
        0% {
            opacity: 0;
            transform: translateX(-100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .page-nav__link_lvl_1 {
        color: rgb(255 255 255);
        margin: 0px!important;
        transition: .3s all;
        height: inherit;
    }

    .page-nav__link_lvl_1:hover,
    .page-nav__link_sub-menu_active {
        background-color: rgb(255 255 255);
        border-bottom: 1px solid #000;
        color: rgb(22, 20, 19);
    }

    .page-nav__link_lvl_1::after {
        content: none;
    }

    .page-nav__link_lvl_1_sub-menu {
        margin: 0 !important;
    }


    .page-nav__link_lvl_1_sub:after {
        content: none;
    }

    .page-nav__link_lvl_1_sub:hover:after {
        transform: scale(1);
        opacity: 1;
    }

    .page-nav__sub-list {
        position: static;
        top: calc(100% + 5px);
        opacity: 0;
        visibility: hidden;
        transition: .3s all;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        display: none;
        margin-top: 0;
    }


    .page-nav__link_sub-menu_active .page-nav__sub-list {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .page-nav__link_lvl_2 {
        color: rgb(22, 20, 19);
        padding: 7px 10px;
        text-decoration: none;
        border: 1px solid rgb(215 215 215);
        margin: 5px 0;
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .page-nav__link_lvl_2:hover {
        background-color: rgba(0, 0, 0, 0.479);
    }

}

@media (max-width: 670px) {
    .page-nav__link_mobile {
        display: inline-block;
    }
}

/* langs */

.langs {
    width: 36px;
    height: 36px;
    position: relative;
    padding-right: 23px;
}

.navigation__lang-wrp {}

.langs:after {
    content: '';
    display: block;
    background: url(../images/arrow__down_def.png) no-repeat;
    width: 13px;
    height: 8px;
    position: absolute;
    right: 4px;
    top: calc(50% - 4px);
    transition: .3s all;
    cursor: pointer;
}

.langs:hover:after {
    transform: rotateX(180deg)
}

.lang__link {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: .3s all;
}

.lang__link_sub {
    margin: 5px 0;
}

.lang__link_sub:hover {
    filter: brightness(130%);
}

.lang__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 36px;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
    padding-top: 5px;
    transform: translateY(-40px);
}

.langs:hover .lang__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


/* profil */

.profil {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profil__menu {
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    padding: 5px 0;
    padding-right: 0px;
    margin: 5px 10px;
    background-color: transparent;
    transition: .3s all;
    z-index: 1;
    color: rgb(213, 200, 180);
    font-size: 20px;
    font-weight: 600;
    box-sizing: border-box;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.profil__menu:hover {
    z-index: 20;
}

.profil__open {
    position: relative;
    z-index: 4;
    max-width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 15px;
}

.profil__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profil__link {
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    padding: 5px 0;
    background-color: transparent;
    transition: .3s all;
    z-index: 1;
    color: #d5c8b4;
    font-size: 20px;
    font-weight: 600;
    box-sizing: border-box;
}

.profil__link:hover,
.profil__link:focus {
    color: #f8a61f;
}

.profil__menu:after {
    content: '';
    display: block;
    background: url(../images/arrow__down_color.png) no-repeat;
    width: 9px;
    height: 6px;
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    transition: .3s all;
    cursor: pointer;
    z-index: 6;
}

.profil__menu:hover:after {
    transform: rotateX(180deg);
}

.profil__list {
    position: absolute;
    right: -10px;
    top: calc(100% - 30px);
    opacity: 0;
    visibility: hidden;
    transition: .1s all;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(55, 55, 55, 0.37) 0%, rgba(78, 69, 65, 0.84) 100%);
    border-radius: 3px;
}

.profil__menu:hover .profil__list {
    right: -10px;
    top: calc(100% - 1px);
    opacity: 1;
    visibility: visible;
}


.profil__link {
    padding: 7px 10px;
    text-decoration: none;
    border: 1px solid transparent;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align-last: left;
    color: rgb(213, 200, 180);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}



@media (max-width: 100px) {


    .profil__menu_active,
    .profil__menu_active:hover {
        color: rgb(22, 20, 19);
        z-index: 20;
    }


    .profil__menu:before {
        content: '';
        display: block;
        position: absolute;
        top: -5px;
        right: -30px;
        bottom: -5px;
        left: -40px;
        transition: .3s all;
        cursor: pointer;
        background-color: rgb(248, 166, 31);
        z-index: 1;
        opacity: 0;
        visibility: hidden;
    }

    .profil__menu_active:before {
        left: -5px;
        right: -5px;
        opacity: 1;
        visibility: visible;
    }



    .profil__list {
        position: absolute;
        left: -40px;
        top: calc(100% + 5px);
        opacity: 0;
        visibility: hidden;
        transition: .3s all;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background-color: rgb(248, 166, 31);
    }


    .profil__menu_active .profil__list {
        left: -5px;
        top: calc(100% + 5px);
        opacity: 1;
        visibility: visible;
    }

    .profil__link {
        color: rgb(22, 20, 19);
        padding: 7px 10px;
        text-decoration: none;
        border: 1px solid rgb(248, 166, 31);
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align-last: left;
    }

    .profil__link:hover {
        background-color: rgba(0, 0, 0, 0.479);
    }

}

/* btns */

.btn {
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.navigation__btn-wrp {
    margin: 0 30px 0 60px;
}

.btn:hover {}

.btn_type_1 {
    color: #ffffff;
    border-radius: 0;
    background-color: #ff0000;
    background-image: linear-gradient(to top, rgb(255 0 0 / 100%) 0%, rgb(0 0 0 / 50%) 100%);
    cursor: pointer;
    transition: .3s all;
    position: relative;
    padding: 10px 27px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn_type_1:hover {
    color: #ffffff;
}

.btn_type_1:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .3s all;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgb(255 0 0) 0, rgb(244 0 0) 60%, rgb(159 0 0) 100%);
}


.btn_type_1:hover:after {
    opacity: 1;
}

.btn_type_2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 32px;
    font-weight: bold;
	background:transparent;
    box-shadow: 0 0 15px rgb(44 41 36);
    border: 1px solid #cf0404;
    border-radius: 0;
    cursor: pointer;
    transition: .3s all;
    position: relative;
    padding: 15px;
    min-width: 360px;
}

.btn_type_2:hover {
    color: #ffffff;
}

.btn_type_2:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .3s all;
    z-index: 1;
    background-image: linear-gradient(to bottom, #ff0000 0, #300404 100%, #ff0000 100%);
    filter: brightness(110%);
}


.btn_type_2:hover:after {
    opacity: 1;
}

.btn__txt {
    position: relative;
    z-index: 5;
}

.btn__txt_style_nowrap {
    white-space: nowrap;
}

/* bnt */


.btn-box {
    color: #ff0000;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    box-sizing: border-box;
    border: 1px solid #ff0000;
    padding: 8px 10px;
    text-decoration: none;
    transition: .3s all;
    min-width: 185px;
    display: inline-flex;
    justify-content: center;
	background: #0000008f;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    text-align: center;
}

.btn-box:hover {
    background-color: #950000;
    border: 1px solid #c30000;
    color: rgb(255 255 255);
}

.btn-box_style_dim {
    border: 1px solid #cf0404;
    color: #cf0404;
}

.btn-box_style_dim:hover {
    background-color: #950000;
    border: 1px solid #c30000;
    color: rgb(255 255 255);
}

.btn-box_size_big {
    font-size: 24px;
}

.btn-box_size_small {
    min-width: 150px;
    font-size: 16px;
}

.btn-box_length_long {
    width: 100%;
}

.btn-box__streams {
    width: 100%;
    font-size: 16px;
    margin: 10px 0;
}

.i-box__btn-box {
    margin-top: 20px;
}

/* more */

.more {
    position: relative;
}

.more-content {
    transition: .3s all;
}

.more_proc .more-content {
    opacity: 0;
}

.more:before {
    content: "\e832";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background-color: transparent;
    transition: .5s all;
    font-family: 'gw-custom';
    font-size: 30px;
    z-index: 25;
    animation: spinner 1s linear infinite;
    visibility: hidden;
    pointer-events: none;
    transition: 1s all;
    opacity: 0;
}

.more_proc:before {
    opacity: 1;
    visibility: visible;
}

@keyframes spinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* history */

.history-wrp {
    position: relative;
}


/* ÃÅ¡ÃÂ½ÃÂ¾ÃÂ¿ÃÂºÃÂ° ÃÂ¼ÃÂµÃÂ½Ã‘Å½ */

.hist-switch {
    position: absolute;
    right: 0px;
    top: -36px;
    z-index: 2;
    background-color: rgb(24, 19, 14);
    height: 36px;
    width: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

.hist-switch__line {
    height: 4px;
    position: absolute;
    left: 5px;
    right: 5px;
    background-color: rgb(75, 57, 35);
    border-radius: 2px;
    transition: .3s all;
}

.hist-switch__line_top {
    transform: rotate(45deg) translateY(-50%);
    transform-origin: center top;
    top: 50%;
}

.hist-switch_active .hist-switch__line_top {
    transform: rotate(0deg) translateY(-50%);
}

.hist-switch__line_middle {
    transform: rotate(180deg);
    opacity: 0;
}

.hist-switch__line_bottom {
    transform: rotate(-45deg) translateY(50%);
    transform-origin: center bottom;
    bottom: 50%;
}

.hist-switch_active .hist-switch__line_bottom {
    transform: rotate(0deg) translateY(50%);
}

.history {
    height: 360px;
    background-color: #18130e;
    overflow: hidden;
    position: relative;
    transition: .5s;
}

.history_min {
    height: 60px;
}

.history:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 1s all;
}


.history_proc {
    opacity: .2;
}

.history_proc:after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.history:before {
    content: "\e832";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background-color: transparent;
    transition: .5s all;
    font-family: 'gw-custom';
    font-size: 100px;
    z-index: 25;
    animation: spinner 1s linear infinite;
    visibility: hidden;
    pointer-events: none;
    transition: 1s all;
    opacity: 0;
}

.history_proc:before {
    opacity: 1;
    visibility: visible;
}

@keyframes spinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.months {
    height: 60px;
    transition: .5s;
}

.history_min .months {
    height: 0;
    opacity: 0;
}


.month {
    text-align: center;
    padding: 0;
    height: 60px;
    line-height: 60px;
    color: rgb(85, 68, 45);
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s all;
}

.month:hover,
.month_active {
    background-color: rgb(85, 68, 45);
    color: #000;
}

.history__years-wrp {
    background-color: #120f0e;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    flex-wrap: wrap;
}

.years {
    height: 60px;
    width: calc(100% - 400px);
    margin: 0 20px;
}

.year {
    text-align: center;
    padding: 0;
    height: 60px;
    line-height: 60px;
    color: rgb(103, 81, 50);
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s all;
    position: relative;
}

.year_active:after {
    content: '';
    display: block;
    width: 37px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: .3s all;
    background: url(../images/arrow__tab-sel.png) no-repeat;
    z-index: 4;
    pointer-events: none;
}

.year:hover,
.year_active {
    color: rgb(187, 136, 64);
}

.history__content {
    height: calc(360px - 60px - 60px);
    transition: .5s all;
}

.history_min .history__content {
    height: 0;
    opacity: 0;
}

.history__list {
    height: calc(360px - 60px - 60px);
    position: relative;
    z-index: 1;
    padding: 0 60px;
    display: none !important;
}

.history__list_active {
    display: block !important;
}

.history__list:after {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(50% - 5px);
    height: 11px;
    background-image: repeating-linear-gradient(to right,
        transparent,
        transparent 9px,
        #2e271f 9px,
        #2e271f 20px);
    pointer-events: none;
    z-index: -1;
    pointer-events: none;
}

.history__slide {
    height: calc(360px - 60px - 60px) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: .5s all;
}

.slick-center.history__slide {
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.28) inset;
    background-color: rgba(114, 77, 36, 0.1);
}

.archive {
    width: 172px;
    height: 172px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.archive__post {
    width: 94px;
    height: 94px;
    position: absolute;
    background-color: #81755e;
    box-sizing: border-box;
    border: 2px solid #81755e;
    border-radius: 50%;
    box-shadow: 0 0 2px 5px rgb(24, 19, 14);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: .3s all;
}

.archive__post:hover {
    transform: scale(1.3);
    z-index: 6;
}

.archive__post_style_center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.archive__post_style_center:hover {
    transform: translate(-50%, -50%) scale(1.3) !important;
}

.archive__post_pos_t-l {
    position: absolute;
    left: 0;
    top: 0;
}

.archive__post_pos_t-r {
    position: absolute;
    right: 0;
    top: 0;
}

.archive__post_pos_b-r {
    position: absolute;
    right: 0;
    bottom: 0;
}

.archive__post_pos_b-l {
    position: absolute;
    left: 0;
    bottom: 0;
}

.archive__post_style_min {
    width: 40px;
    height: 40px;
}

.archive__post_style_min:hover {
    transform: scale(1.2);
    width: 85px;
    height: 85px;
}

.archive__link {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.archive__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    border-radius: 50%;
}

.archive__post:hover .archive__img {
    opacity: 1;
}

.archive__desc {
    position: absolute;
    left: 50%;
    bottom: calc(100% - 10px);
    transform: translateX(-50%);
    width: 100px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    background-color: rgb(129, 117, 94);
    color: rgb(7, 7, 7);
    padding: 2px 5px;
    border-radius: 18px;
    line-height: 12px;
    transition: .3s all;
    opacity: 0;
    pointer-events: none;
    transition-delay: .2s;
}

.archive__post:hover .archive__desc {
    bottom: calc(100% + 10px);
    opacity: 1;
}

.archive__post_pos_t-l .archive__desc {
    bottom: auto;
    top: calc(100% - 10px);
}

.archive__post_pos_t-l:hover .archive__desc {
    bottom: auto;
    top: calc(100% + 10px);
    opacity: 1;
}

.archive__post_pos_t-r .archive__desc {
    bottom: auto;
    top: calc(100% - 10px);
}

.archive__post_pos_t-r:hover .archive__desc {
    bottom: auto;
    top: calc(100% + 10px);
    opacity: 1;
}

.archive-empty {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    font-size: 30px;
    color: rgb(246, 191, 0);
    text-transform: uppercase;
}


/* header */

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}

.header_style_pos {
    margin-bottom: 37px;
}

/* tart-game */

.start-game {
    margin: 60px 30px 10px 0;
    text-align: center;

    width: 360px;
}

.start-game__btn {
    width: 100%;
    margin-bottom: 10px;
}

.start-game__txt {
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgb(0, 0, 0), -1px -1px 1px rgb(0, 0, 0), 0px 0px 2px rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

/* servers */

.servers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    box-sizing: border-box;
    padding-top: 42px;
}

.server {
    width: 122px;
    height: 122px;
    margin: 15px 20px;
    background: url(../images/server__load_empty.png) no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    cursor: default;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.server .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 122px;
    height: 122px;
}

.server__link {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    text-decoration: none;
}

.server__front {
    box-sizing: border-box;
    padding-top: 5px;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 1;
    transform: scale(1);
    transition: .3s all;
}

.server:hover .server__front {
    opacity: 0;
    transform: scale(0.2);
}

.server__name {
    color: rgb(206, 181, 135);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 9px;
}

.server__rate {
    color: #d5c8b4;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
}

.server__chron {
    color: #81755e;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.server__status {
    box-sizing: border-box;
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    text-align: center;
    opacity: 0;
    transform: scale(1.4);
    pointer-events: none;
    transition: .3s all;
    font-size: 14px;
    padding: 0 10px;
}

.server:hover .server__status {
    opacity: 1;
    transform: scale(1);
}

.server__txt {
    color: #ceb587;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.sever__online {
    font-weight: 700;
    font-size: 26px;
    white-space: nowrap;
}

.icon_srv:before {
    font-weight: 300 !important;
    width: 20px !important;
    margin: 0 !important;
}

.server__load {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}

.server__lvl {
    opacity: 0;
    width: 61px;
    height: 61px;
    background-image: url(../images/server__load_full.png);
    background-repeat: no-repeat;
}

.server__lvl_0 {
    position: absolute;
    top: 0;
    right: 0;
    background-position: right top;
}

.server__lvl_1 {
    position: absolute;
    bottom: 0;
    right: 0;
    background-position: right bottom;
    animation-delay: 1s;
}

.server__lvl_2 {
    position: absolute;
    bottom: 0;
    left: 0;
    background-position: left bottom;
    animation-delay: 2s;
}

.server__lvl_3 {
    position: absolute;
    top: 0;
    left: 0;
    background-position: left top;
    animation-delay: 3s;
}

.server__lvl_loaded {
    animation-name: loaded;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes loaded {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* heading */

.heading {
    color: #d5c8b4;
    font-size: 20px;
	padding-left:10px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: default;
}

@media (max-width: 1024px) {
	.heading{
	color: #d5c8b4;
    font-size: 24px;
	padding:25px 0px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: default;
	}
}
/* mid */

.mid {
    display: flex;
}

/* content-box */

.content-box {
    flex-grow: 1;
    width: 100%;
    max-width: calc(100% - 15px - 434px - 15px - 15px - 420px - 15px);
}


/* content-box__header */

.content-box__header {
    margin: 25px 0;
    display: flex;
    border: 1px solid #2c2924;
	background:#0000008f !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* content-tab */

.content-tab {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-tab__btn {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 8px;
    cursor: pointer;
    position: relative;
    color: #c3b6a5;
    border-radius: 3px;
    white-space: nowrap;
	transition:600ms all;
}
.content-tab__btn:hover{
	color:#cf0404;
}

.content-tab__btn_active {
    background-color: rgba(129, 117, 94, 0.1);
    color: #d5c8b4;
    font-weight: 700;
}



.content-tab__btn:hover:after,
.content-tab__btn_active:after {
    opacity: 0;
}



/* post */

.post {
    border-radius: 3px;
    min-height: 345px;
    box-sizing: border-box;
    padding: 25px 30px;
    cursor: default;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.post__bg {
    background-image: url(../images/news/img-1.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    transition: .5s linear all;
}

.post:hover .post__bg {
    transform: scale(1.1) rotate(0deg);
}

.post__info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 105px;
    position: relative;
    z-index: 4;
}

.post__type {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    color: #81755e;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.post__type:hover {
    color: rgb(252, 230, 194);
}

.post__type-title {
    margin-left: 10px;
}

.post__date {
    color: #ceb587;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.post__title {
    color: #f8a61f;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    z-index: 4;
    text-decoration: none;
    display: block;
}

.post__title:hover {
    color: rgb(255, 205, 30);
}


.post__content {
    font-size: 24px;
    font-weight: 500;
    padding: 12px 0 25px 0;
    position: relative;
    z-index: 4;
}

.post__btns {
    position: relative;
    z-index: 4;
}


.post__decor_style_white {
    color: #fefefe;
    font-size: 1.1em;
    font-weight: 600;
}

/* rating-box */

.rating-box {
    width: 434px;
    flex-shrink: 0;
    padding-top: 25px;
}

.simple-box {
    background-color: #0000008f !important;
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #2c2924;
    margin-bottom: 10px;
    box-shadow: 5px 5px 5px #0000005c;
}

.simple-box_pos_mb {
    margin-bottom: 10px;
}

.simple-box__title {
    color: #81755e;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.simple-box__title_m_b {
    margin-bottom: 14px;
}

/* rating-list */

.rating-list {}

.rating-list_m_b {
    margin-bottom: 10px;
}

.rating-list__header {
    color: #d5c8b4;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.rating-list__num {
    width: 34px;
    flex-shrink: 0;
    margin-right: 20px;
    text-align: center;
}

.rating-list__rate {
    margin-left: auto;
}


/* rating-item */

.rating-item {
    display: flex;
    align-items: center;
    padding: 16px 0 15px 0;
    cursor: default;
    position: relative;
    z-index: 0;
    text-decoration: none;
    transition: .3s all;
    cursor: pointer;
}

.rating-item:hover {
    padding: 16px 10px 15px 10px;
}

.rating-item:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #2c2924;
    bottom: calc(100% - 1px);
    transition: .3s all;
}

.rating-item:before {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    right: 0;
    left: 0;
    /* background-color: rgb(248, 166, 31); */
    bottom: 0;
    transition: .5s all;
    opacity: 0;
    transform: scaleX(1);
}

.rating-item:hover:before {
    opacity: 1;
    transform: scaleX(1);
}

.rating-item__num {
    width: 34px;
    height: 34px;
    background-color: rgba(129, 117, 94, 0.3);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-right: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.rating-list_theme_top .rating-item:nth-child(2) .rating-item__num {
    background-color: rgba(248, 165, 31, 0.5);
    color: #fff;
    font-weight: 600;
}

.rating-list_theme_top .rating-item:nth-child(3) .rating-item__num {
    background-color: rgba(172, 172, 172, 0.5);
    color: #fff;
    font-weight: 600;
}

.rating-list_theme_top .rating-item:nth-child(4) .rating-item__num {
    background-color: rgba(222, 104, 0, 0.5);
    color: #fff;
    font-weight: 600;
}

.rating-item__emblem {
    width: 34px;
    height: 34px;
    background-color: rgba(129, 117, 94, 0.3);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-right: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



.rating-item__title {
    color: #d5c8b4;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    transition: .3s all;
}

.rating-item:hover .rating-item__title {
    color: rgb(255 0 0);
}

.rating-item__rate {
    margin-left: auto;
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 700;
    transition: .3s all;
}

.rating-item:hover .rating-item__rate {
    color: rgb(44, 41, 36);
}


/* info-box */

.info-box {
    width: 420px;
    flex-shrink: 0;
    padding-top: 25px;
}

/* events */
.event {
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 209px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 3px;
    background-blend-mode: darken;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    outline: 2px solid transparent;
    transition: .3s linear all;
}

.event:hover {
    outline: 2px solid rgb(248, 166, 31);
}


.event__bg {
    background-image: url(../images/events/event__2.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    transition: .3s linear all;
}

.event:hover .event__bg {
    filter: brightness(120%);
    transition: .5s all;
}

.event__content {
    max-width: 240px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.event__title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* streams */

.streams__title {
    color: rgb(129, 117, 94);
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    border: 1px solid #2c2924;
    text-transform: uppercase;
    background: #0000008f !important;
    padding: 20px 0;
}

.streams__wrp {
    position: relative;
}

.streams__container {
    max-height: 430px;
    position: relative;
}

.stream {
    width: 100%;
    margin: 0 auto;
}

.stream__iframe {
    width: 100% !important;
}

.streams__btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin-top: 10px;
}

.streams__btn-box_top {
    width: 48%;
    flex-shrink: 0;
    min-width: auto;
}

.streams__btn-box_bottom {
    width: 48%;
    flex-shrink: 0;
    min-width: auto;
}

/* shop */

.shop {
    border-radius: 3px;
    background-color: rgba(18, 15, 14, 0.9);
    box-sizing: border-box;
    padding: 30px;
    margin-top: 30px;
    max-height: 460px;
    overflow: hidden;
}

.shop__slider {
    width: 90%;
    margin: 0 auto;
}

.shop__title {
    color: #81755e;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.card {
    margin: 0 15px;
    text-align: center;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
}

.card__front {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #171514;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transform: rotateY(0deg);
    z-index: 2;
    transition: .8s all;
    backface-visibility: hidden;
}

.card:hover .card__front {
    transform: rotateY(180deg);
}

.card__img {
    height: 150px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 10px;
    flex-shrink: 0;
    transform: scale(1);
    transition: 1s all;
}

.card:hover .card__img {
    transform: scale(.4);
}

.card__title {
    color: #d5c8b4;
    font-size: 20px;
    font-weight: 700;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card__title_color_orange {
    color: rgb(248, 166, 31);
}

.card__price {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    height: 50px;
    line-height: 50px;
    flex-shrink: 0;
}

.card__back {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #171514;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transform: rotateY(180deg);
    z-index: 2;
    transition: .8s all;
    backface-visibility: hidden;
}

.card:hover .card__back {
    transform: rotateY(0deg);
    background-color: #29221e;
}

.card__desc {
    height: 150px;
    width: 100%;
    color: #d5c8b4;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* footer */

.footer {
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
}

/* copy */

.copy {
    max-width: 400px;
    box-sizing: border-box;
    padding: 20px 30px;
    font-size: 14px;
}

.copy__name {
    color: #d5c8b4;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.copy__txt {
    color: #5a5141;
    font-size: 12px;
}

.copy__style_color_white {
    color: #fff;
}

/* copy__bnr */

.copy__bnr {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* footer__btns */

.footer__btns {
    text-align: center;
}

.game-txt {
    text-align: center;
    color: rgb(129, 117, 94);
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgb(0, 0, 0);
}

.game-txt_mt {
    margin-top: 10px;
}

/* logotype */

.logotype {
    transition: .3s all;
    opacity: .6;
}

.logotype:hover {
    opacity: 1;
}

/* f-nav */

.f-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.f-nav__container {
    padding: 20px;
    box-sizing: border-box;
    width: 200px;
}

.f-nav__title {
    color: #f5b562;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

.f-nav__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.f-nav__link {
    text-decoration: none;
    color: #d5c8b4;
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0;
    position: relative;
    transition: .3s all;
}

.f-nav__link:hover {
    color: #f8a61f;
}

.f-nav__link:after {
    content: '';
    display: block;
    height: 1px;
    background-color: #d5c8b4;
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 0;
    transition: .3s all;
    pointer-events: none;
}

.f-nav__link:hover:after {
    bottom: -5px;
    opacity: 0;
    background-color: #f8a61f;
}

.inviting {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 3px;
    background-color: rgba(22, 20, 19, 0.9);
    box-sizing: border-box;
    padding: 40px;
    position: relative;
}

.inviting:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
}

.inviting__container {
    width: 48%;
    position: relative;
}



.i-box {}

.inviting__i-box {
    max-width: 80%;
    margin: 0 auto;
}

.i-box__title {
    color: #d5c8b4;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
}


/* ÃÅ¾Ã‘â€žÃÂ¾Ã‘â‚¬ÃÂ¼ÃÂ»ÃÂµÃÂ½ÃÂ¸ÃÂµ checkbox */

.checkbox {
    display: flex;
    align-items: self-start;
    line-height: 22px;
    color: #81755e;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    text-align: left;
}

.def-form__checkbox {
    justify-content: center;
}

.checkbox__label {
    height: 28px;
    display: inline-flex;
    align-items: center;
}

.checkbox__name {
    margin-right: 10px;
}

.checkbox__block {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: #000;
    box-sizing: border-box;
    border: 0px solid #d2d2d2;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox__block:after {
    content: '';
    width: 13px;
    height: 11px;
    background: url(../images/check.png) no-repeat;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transition: .5s all;
    transform: scale(2);
    pointer-events: none;
}

.checkbox__input {
    display: none;
}

.checkbox__input:checked+.checkbox__block:after {
    opacity: 1;
    transform: scale(1);
}

/* def-form */

.def-form__wrp {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.def-form__additional {
    text-align: center;
    color: #d5c8b4;
    font-size: 20px;
    font-weight: 400;
}

.def-form__additional_btns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    flex-direction: column;
}

/* prefix */

.prefix {
    position: absolute;
    left: 6px;
    bottom: 6px;
    height: 50px;
    line-height: 50px;
    width: 80px;
    padding-left: 10px;
    box-sizing: border-box;
    background-color: #232323;
    color: #d5c8b4;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 5;
}

.prefix:after {
    content: '\E802';
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotateX(0deg);
    transition: .3s all;
    font-family: 'gw-custom';
    font-size: 14px;
}

.prefix_active:after {
    transform: translateY(-50%) rotateX(180deg);
}

.prefix__content {}

.perfix__list {
    background-color: #232323;
    color: #d5c8b4;
    text-transform: uppercase;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: calc(100% - 50px);
    width: 100%;
    transition: .3s all;
    box-sizing: border-box;
    border: 1px solid #232323;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.prefix_active .perfix__list {
    top: calc(100% + 3px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.perfix__check {
    line-height: 30px;
    padding-left: 10px;
    background-color: #232323;
    transition: .3s all;
}

.perfix__check:hover {
    background-color: #131313;
    color: #e2b269;
}

.other-link {
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
    font-size: 20px;
    color: rgb(213, 200, 180);
    text-transform: uppercase;
}

/* files */

.files {
    display: flex;
    flex-wrap: wrap;
}

.files_style_self {
    margin-bottom: 20px;
}

.files_style_double {
    position: relative;
}

.files_style_double:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 249, 249, 0) 0%, rgba(255, 250, 250, 0.05) 10%, rgba(255, 252, 252, 0.05) 50%, rgba(255, 254, 254, 0.05) 90%, rgba(255, 255, 255, 0) 100%);
}


.files__container {
    background-color: #100f0d;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    flex-grow: 1;
    padding: 20px 0;
}

.files__container_siza_half {
    width: 50%;
    min-width: 250px;
}

.files__title {
    color: #81755e;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.files__desc {
    color: #d5c8b4;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}

.files__btns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.files__grp {
    width: 230px;
    padding: 0 8px;
}

.files__grp_m_b {
    margin-bottom: 8px;
}

.files__btn {
    width: 224px;
    padding-right: 10px;
    padding-left: 10px;
}

.files__mirror {
    color: #f8a61f;
    font-size: 16px;
    font-weight: 400;
    margin: 10px 7px;
    display: inline-block;
}

/* information */

.information ul {
    list-style: decimal inside;
    box-sizing: border-box;
    margin: 0;
    padding: 5px 0 5px 20px;
}

.information ul li {
    margin: 5px 0;
    color: rgb(213, 200, 180);
}

.information__title {
    background-color: transparent;
    transition: .3s all;
    z-index: 1;
    color: rgb(245, 187, 0);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.information__open {
    color: rgb(245, 187, 0);
    text-decoration: underline;
    cursor: pointer;
}

.information__open:hover {
    text-decoration: none;
}


/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â */

.l2b-animation_swing {
    animation: l2banners_swing 2.5s ease infinite;
}

@keyframes l2banners_swing {
    45% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    46% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    48% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    50% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    52% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    54% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }

    55% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}



.l2b-animation-tada {
    animation: l2banners_tada 3s infinite;
}

@keyframes l2banners_tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    25% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    38%,
    41% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    44%,
    50%,
    56%,
    62% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    47%,
    53%,
    59% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    70% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}


/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â 9 */

.l2b-animation_9 {
    animation: animation 5000ms linear infinite both;
}

@keyframes animation {
    0% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    1% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 29.726, 0, 0, 1);
    }

    2% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 41.325, 0, 0, 1);
    }

    3% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30.6, 0, 0, 1);
    }

    4% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 5.266, 0, 0, 1);
    }

    5% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -18.359, 0, 0, 1);
    }

    6% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -27.815, 0, 0, 1);
    }

    7% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -20.539, 0, 0, 1);
    }

    8% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -3.471, 0, 0, 1);
    }

    9% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 12.404, 0, 0, 1);
    }

    10% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 18.721, 0, 0, 1);
    }

    12% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2.287, 0, 0, 1);
    }

    14% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -12.6, 0, 0, 1);
    }

    16% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.506, 0, 0, 1);
    }

    18% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 8.481, 0, 0, 1);
    }

    22% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -5.708, 0, 0, 1);
    }

    26% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.842, 0, 0, 1);
    }

    30% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -2.585, 0, 0, 1);
    }

    34% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1.74, 0, 0, 1);
    }

    38% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.171, 0, 0, 1);
    }

    42% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.788, 0, 0, 1);
    }

    46% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.53, 0, 0, 1);
    }

    50% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.357, 0, 0, 1);
    }

    54% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.24, 0, 0, 1);
    }

    58% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.162, 0, 0, 1);
    }

    62% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.109, 0, 0, 1);
    }

    66% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.073, 0, 0, 1);
    }

    70% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.049, 0, 0, 1);
    }

    74% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.033, 0, 0, 1);
    }

    78% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.022, 0, 0, 1);
    }

    82% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.015, 0, 0, 1);
    }

    86% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1);
    }

    90% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.007, 0, 0, 1);
    }

    94% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.005, 0, 0, 1);
    }

    98% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.003, 0, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}





/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â 8 */

.l2b-animation_drag_up {
    animation: l2b_drag_up 3s linear infinite both;
    transform-origin: 50% 50%;
}

@keyframes l2b_drag_up {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    5% {
        transform: translate(0px, -10px) rotate(-3deg) scaleX(0.80) scaleY(0.80);
    }

    10% {
        transform: translate(0px, -21px) rotate(-3deg) scaleX(0.80) scaleY(0.80);
    }

    15% {
        transform: translate(0px, -16px) rotate(3deg) scaleX(1.20) scaleY(1.20);
    }

    20% {
        transform: translate(0px, -12px) rotate(-3deg) scaleX(1.20) scaleY(1.20);
    }

    25% {
        transform: translate(0px, -7px) rotate(3deg) scaleX(1.20) scaleY(1.20);
    }

    30% {
        transform: translate(0px, -2px) rotate(-3deg) scaleX(1.20) scaleY(1.20);
    }

    35% {
        transform: translate(0px, 2px) rotate(3deg) scaleX(1.20) scaleY(1.20);
    }

    40% {
        transform: translate(0px, 7px) rotate(-3deg) scaleX(1.20) scaleY(1.20);
    }

    45% {
        transform: translate(0px, 7px) rotate(3deg) scaleX(1.20) scaleY(1.20);
    }

    50% {
        transform: translate(0px, 0px) rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scaleX(1.00) scaleY(1.00);
    }
}




/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â 7 */

.l2b_animation_vibrate {
    -webkit-animation: vibrate-1 0.3s linear infinite both;
    animation: vibrate-1 0.3s linear infinite both;
    position: relative;
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* static */

.static {
    border-radius: 3px;
    background-color: rgba(22, 20, 19, 0.9);
    box-sizing: border-box;
    padding: 40px;
    position: relative;
}

.static ul {
    list-style: square inside;
}

.static li {
    margin: 5px;
}

.news__img {
    width: 700px;
    height: 400px;
    margin: 0 30px 20px 0;
    transition: .5s linear all;
    float: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.news__bg {
    background-image: url(../images/news/img-1.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    transition: .3s linear all;
}

.news__img:hover .news__bg {
    transform: scale(1.1) rotate(0deg);
    transition: 2s linear all;
}

.news__title {
    background-color: transparent;
    transition: .3s all;
    z-index: 1;
    color: rgb(245, 187, 0);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    box-sizing: border-box;
    margin-bottom: 10px;
}


.news__info {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 6;
    box-sizing: border-box;
    padding: 20px;
}

.news__type {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    color: #81755e;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.news__type:hover {
    color: rgb(252, 230, 194);
}

.news__type-title {
    margin-left: 10px;
}

.news__date {
    color: #ceb587;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.news__title {
    color: #f8a61f;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    z-index: 4;
    text-decoration: none;
    display: block;
}

.news__title:hover {
    color: rgb(255, 205, 30);
}

.alert {
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    background: #221f1a;
    margin: 0px 0px 20px 0px;
    border: 1px solid #f8a61f;
}
#myVideo{
	
	position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
	-webkit-animation: filter-animation 8s infinite;
	animation: filter-animation 8s infinite;
}



@-webkit-keyframes filter-animation {
  0% {
    -webkit-filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(360deg);
  }
  100% {
    -webkit-filter: hue-rotate(0deg);
  }
}

@keyframes filter-animation {
  0% {
    filter: hue-rotate(0deg);
  }
  
  50% {
    filter: hue-rotate(360deg);
  }
  
  100% {
    filter: hue-rotate(0deg);
  }
}