@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	padding: 0px;
	margin: 0px;
	font-family: "Inter", sans-serif;
	background-color: #08090A;
    width: 100%;
    float: left;
}
ul{
	padding: 0px;
	margin: 0px;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: unset;
	cursor: pointer;
}
h1, h2, h3, h4, h5{
	margin: 0px;
    font-weight: unset;
}
p{
    margin: 0px;
}
input, button, textarea, select{
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    font-family: "Inter", sans-serif;
}
.center{
    width: 90%;
    max-width: 1300px;
    height: auto;
    margin: 0 auto;
}
/* HEADER */
header{
    width: 100%;
    height: auto;
    float: left;
    padding: 44px 0 24px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(4, 12, 36, 0) 100%
    );
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10005;
    position: fixed;
}
.header__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.header__item{
    width: fit-content;
    height: auto;
}
.header__item-logo{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item-logo img{
    width: 231px;
    height: auto;
    float: left;
}
.header__item ul{
    width: fit-content;
    height: auto;
    float: right;
}
.header__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 32px;
}
.header__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
}
.header__item ul > li > a:hover{
    color: rgb(51 151 235);
    transition: .2s;
}
/* HEADER */

/* MAIN */
.main{
    width: 100%;
    height: 100vh;
    float: left;
    position: relative;
    padding: 0;
    background-attachment: fixed;
    overflow: hidden;
}
.main .center{
    position: relative;
    z-index: 10;
}
.main-paralax{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.1s linear; 
}
.main-paralax[data-paralax='1']{
    background-image: url("../images/vectory/paralax-1.png");
    z-index: 1;
}
.main-paralax[data-paralax='2']{
    background-image: url("../images/vectory/paralax-2.png");
    z-index: 2;
}
.main-paralax[data-paralax='3']{
    background-image: url("../images/vectory/paralax-3.png");
    z-index: 3;
}
.main-paralax[data-paralax='4']{
    background-image: url("../images/vectory/paralax-4.png");
    z-index: 4;
}
.main-paralax[data-paralax='5']{
    background-image: url("../images/vectory/paralax-5.png");
    z-index: 5;
}
.main-paralax[data-paralax='6']{
    background-image: url("../images/vectory/paralax-6.png");
    z-index: 6;
    margin: 0 0 -10%;
}
.main-paralax[data-paralax='7']{
    background-image: url("../images/vectory/paralax-7.png?update=2");
    z-index: 7;
    top: 10%;
}
.main-paralax[data-paralax='8']{
    background-image: url("../images/vectory/paralax-8.svg?update=1");
    z-index: 8;
    top: 10%;
}
.main-paralax[data-paralax='9']{
    background-color: #030303;
    height: 100%;
    top: 111%;
    z-index: 10;
}
.main__row{
    width: 100%;
    height: 100vh;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 10;
    position: relative;
    overflow: hidden;
}
.main__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.main__item h1{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-family: "Dela Gothic One", sans-serif;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
}
.main__item-welcome{
    width: 100%;
    height: auto;
    float: left;
}
.main__button{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}
.main__button a{
    width: 260px;
    height: 60px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 4px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main__button a:nth-child(1){
    background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.main__button a:nth-child(1):hover{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
.main__button a:nth-child(2){
    background-image: url("../images/vectory/main_button_2.svg");
}
.main__item-online{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 13px 0 0 0;
    align-items: flex-start;
    align-content: center;
}
.main__item-online b{
    margin: 1.5px 0 0 8px;
    padding: 0 0 0 16px;
    position: relative;
    color: #ffffff;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.main__item-online b::before{
    content: "";
    position: absolute;
    left: 0%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background-color: #0fa3fc;
}
/* MAIN */

.display{
    width: 100%;
    height: auto;
    float: left;
    background-image: url("../images/bg/body.png?update=2");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: 11;
    position: relative;
    will-change: transform;
}

/* SERVERS */
.servers{
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
}
.servers-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
}
.servers__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 32px 0 0 0;
}
.servers__item{
    width: 33.3%;
    height: 600px;
    padding: 32px 21px 24px;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .2s;
}
.servers__item:nth-child(1){
    background-image: url("../images/vectory/server-1-eff.png");
}
.servers__item:nth-child(2){
    background-image: url("../images/vectory/server-2-eff.png");
}
.servers__item:nth-child(3){
    background-image: url("../images/vectory/server-3-eff.png");
}
.servers__item:nth-child(1):hover{
    background-image: url("../images/vectory/server-1.png");
    transition: .2s;
}
.servers__item:nth-child(2):hover{
    background-image: url("../images/vectory/server-2.png");
    transition: .2s;
}
.servers__item:nth-child(3):hover{
    background-image: url("../images/vectory/server-3.png");
    transition: .2s;
}
.servers__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}
.servers__item-loader{
    width: 100%;
    height: 34px;
    float: left;
    padding: 0 12px;
    box-sizing: border-box;
    margin: 452px 0 0 0;
    display: flex;
    align-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    justify-content: flex-end;
    background-image: url("../images/vectory/loader.svg");
    position: relative;
}
.servers__item-loader-active{
    width: 0;
    height: 100%;
    position: absolute;
    left: 1px;
    top: 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto;
    justify-content: flex-end;
    background-image: url("../images/vectory/loader-active.svg");
    transition: .4s;
}
.servers__item-loader span{
    width: fit-content;
    height: auto;
    float: right;
    color: #ffffff;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.servers__item-type{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 13px 0 0 0;
}
.servers-button{
    width: 260px;
    height: 60px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 32px auto 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.servers-button:hover{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
/* SERVERS */

/* ADVANTAGES */
.advantages{
    width: 100%;
    height: auto;
    float: left;
    padding: 160px 0 0;
}
.advantages__row{
    width: 100%;
    height: auto;
    float: left;
}
.advantages__row .owl-stage{
	display: flex;
	align-content: center;
	align-items: center;
	height: 646px;
}
.advantages__item{
    width: 523px;
    min-width: 523px;
    height: 523px;
    float: left;
    padding: 0 36px 57px;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
	opacity: 0;
    transition: .2s;
}
.owl-item.active.center{
	position: relative;
	z-index: 10005;
}
.owl-item.active .advantages__item{
	opacity: 0.7;
    transition: .2s;
}
.owl-item.active.center .advantages__item{
    width: 646px;
    margin: 0 -25%;
    height: 646px;
	opacity: 1;
    transition: .2s;
}
.owl-item.active.center + .owl-item.active .advantages__item{
    float: right;
}
.advantages__item[data-type='1']{
    background-image: url("../images/vectory/advantages-1.png");
}
.advantages__item[data-type='2']{
    background-image: url("../images/vectory/advantages-2.png");
}
.advantages__item[data-type='3']{
    background-image: url("../images/vectory/advantages-3.png");
}
.advantages__item[data-type='4']{
    background-image: url("../images/vectory/advantages-4.png");
}
.advantages__item[data-type='5']{
    background-image: url("../images/vectory/advantages-5.png");
}
.advantages__item[data-type='6']{
    background-image: url("../images/vectory/advantages-6.png");
}
.advantages__item[data-type='7']{
    background-image: url("../images/vectory/advantages-7.png");
}
.advantages__item[data-type='8']{
    background-image: url("../images/vectory/advantages-8.png");
}
.advantages__item[data-type='9']{
    background-image: url("../images/vectory/advantages-9.png");
}
.advantages__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #0096f2;
    text-align: left;
    font-size: 24px;
    font-weight: 900;
}
.advantages__item span{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 0 0;
}
/* ADVANTAGES */

/* ABOUT */
.about{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 88px;
}
.about-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}
.about-description{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 0 0;
    padding: 0 44px;
    box-sizing: border-box;
}
.about__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 44px 0 0 0;
}
.about__item{
    width: fit-content;
    height: auto;
    margin: 0 4px;
}
.about__item-button{
    width: 260px;
    height: 60px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.about__item-button:hover{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
a.about__item{
    width: 80px;
    height: 60px;
    position: relative;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/vectory/about_button.svg");
}
a.about__item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
	opacity: 0.3;
	transition: .2s;
}
a.about__item:nth-child(2):before{
    background-image: url("../images/icon/discord.svg");
}
a.about__item:nth-child(3):before{
    background-image: url("../images/icon/telegram.svg");
}
a.about__item:nth-child(4):before{
    background-image: url("../images/icon/youtube.svg");
}
.footer__item:last-child ul > li > a{
	opacity: 0.2;
	transition: .2s;
}
a.about__item:hover::before{
	opacity: 1;
	transition: .2s;
}
/* ABOUT */

/* FOOTER */
footer{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 0;
    background-color: #08090a;
    border-radius: 50px 50px 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}
footer .center{
    max-width: 1690px;
}
.footer__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__item{
    width: 25%;
}
.footer__item:nth-child(2),
.footer__item:nth-child(5){
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__item:nth-child(4),
.footer__item:nth-child(5),
.footer__item:nth-child(6){
	margin: 100px 0 0 0;
}
.footer__item:nth-child(5){
    width: 42%;
}
.footer__item:nth-child(4),
.footer__item:nth-child(6){
    width: 29%;
}
.footer__item-logo{
    width: fit-content;
    height: auto;
    float: left;
}
.footer__item-logo img{
    width: 298px;
    height: auto;
    float: left;
}
.footer__item-payment{
    width: fit-content;
    height: auto;
    float: right;
}
.footer__item-copyright{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.2);
    text-align: left;
    font-size: 12px;
    font-weight: 600;
}
.footer__item-info{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}
.footer__item-email{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin: 0 24px 0 0;
}
.footer__item ul{
    width: min-content;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}
.footer__item ul > li{
    width: fit-content;
    min-width: fit-content;
    height: auto;
    float: left;
    margin: 0 40px 13px;
}
.footer__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s;
}
.footer__item ul > li > a:hover{
    color: rgb(51 151 235);
    transition: .2s;
}
.footer__item:last-child{
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
}
.footer__item:last-child ul{
	width: fit-content;
	margin: 0;
}
.footer__item:last-child ul > li{
    min-width: fit-content;
    margin: 0 0 0 25px;
}
.footer__item:last-child ul > li > a{
	opacity: 0.2;
	transition: .2s;
}
.footer__item:last-child ul > li > a:hover{
	opacity: 1;
	transition: .2s;
}
/* FOOTER */

/* RULES */
.rules{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 80px;
}
.rules__header{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.rules__header-title{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.rules__header ul{
    width: 960px;
    height: 80px;
    margin: 16px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.rules__header ul > li{
    width: 33.3%;
    height: auto;
}
.rules__header ul > li > a{
    width: 100%;
    height: 80px;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgb(255 255 255 / 40%);
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	transition: .4s;
    position: relative;
}
.rules__header ul > li > a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 32px 0px rgba(5, 113, 178, 0.6);
    opacity: 0;
}
.rules__header ul > li:nth-child(1) > a{
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}
.rules__header ul > li:nth-child(3) > a{
    clip-path: polygon(0 0, 100% 0%, 88% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 88% 100%, 0 100%);
}
.rules__header ul > li > a:hover,
.rules__header ul > li > a.active{
	color: rgb(255, 255, 255, 1);
	transition: .4s;
}
.rules__header ul > li > a.active::before{
    opacity: 1;
    transition: .4s;
}
.rules__header ul > li:nth-child(1) > a{
    background-image: url("../images/vectory/rules-sec-1.svg");
}
.rules__header ul > li:nth-child(2) > a{
    background-image: url("../images/vectory/rules-sec-2.svg");
}
.rules__header ul > li:nth-child(3) > a{
    background-image: url("../images/vectory/rules-sec-3.svg");
}

.rules__header ul > li:nth-child(1) > a:hover{
    background-image: url("../images/vectory/rules-sec-1-hover.svg?update=1");
}
.rules__header ul > li:nth-child(2) > a:hover{
    background-image: url("../images/vectory/rules-sec-2-hover.svg?update=1");
}
.rules__header ul > li:nth-child(3) > a:hover{
    background-image: url("../images/vectory/rules-sec-3-hover.svg?update=1");
}

.rules__header ul > li:nth-child(1) > a.active{
    background-image: url("../images/vectory/rules-sec-1-active.svg");
    box-shadow: 0px 0px 32px 0px rgba(5, 113, 178, 0.6);
}
.rules__header ul > li:nth-child(2) > a.active{
    background-image: url("../images/vectory/rules-sec-2-active.svg");
    box-shadow: 0px 0px 32px 0px rgba(5, 113, 178, 0.6);
}
.rules__header ul > li:nth-child(3) > a.active{
    background-image: url("../images/vectory/rules-sec-3-active.svg");
    box-shadow: 0px 0px 32px 0px rgba(5, 113, 178, 0.6);
}
.rules__provisions{
    width: 100%;
    height: auto;
    float: left;
    padding: 44px 60px;
    margin: 0;
    display: none;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("../images/bg/provisions.png");
}
.rules__provisions[data-type="1"]{
    display: block;
}
.rules__provisions-title{
    width: 100%;
    height: auto;
    float: left;
    color: #0fa3fc;
    text-align: left;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}
.rules__provisions-description{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 24px 0 0 0;
}
.rules__row{
    width: 100%;
    height: auto;
    float: left;
    margin: 44px 0 0 0;
}
.rules__item{
    width: 100%;
    height: auto;
    float: left;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}
.rules__box{
    width: 100%;
    height: auto;
    float: left;
}
.rules__box-drop{
    width: 100%;
    height: 198px;
    float: left;
    background-color: unset;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border: unset;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: .4s;
}
.rules__box:nth-child(1) .rules__box-drop{
    background-image: url("../images/vectory/rules-1.png");
    transition: .4s;
}
.rules__box:nth-child(2) .rules__box-drop{
    background-image: url("../images/vectory/rules-2.png");
    transition: .4s;
}
.rules__box:nth-child(3) .rules__box-drop{
    background-image: url("../images/vectory/rules-3.png");
    transition: .4s;
}
.rules__box:nth-child(4) .rules__box-drop{
    background-image: url("../images/vectory/rules-4.png");
    transition: .4s;
}
.rules__box:nth-child(1) .rules__box-drop:hover{
    background-image: url("../images/vectory/rules-1-hover.png");
    transition: .4s;
}
.rules__box:nth-child(2) .rules__box-drop:hover{
    background-image: url("../images/vectory/rules-2-hover.png");
    transition: .4s;
}
.rules__box:nth-child(3) .rules__box-drop:hover{
    background-image: url("../images/vectory/rules-3-hover.png");
    transition: .4s;
}
.rules__box:nth-child(4) .rules__box-drop:hover{
    background-image: url("../images/vectory/rules-4-hover.png");
    transition: .4s;
}
.rules__box:nth-child(1) .rules__box-drop.active{
    background-image: url("../images/vectory/rules-1-active.png");
    transition: .4s;
}
.rules__box:nth-child(2) .rules__box-drop.active{
    background-image: url("../images/vectory/rules-2-active.png");
    transition: .4s;
}
.rules__box:nth-child(3) .rules__box-drop.active{
    background-image: url("../images/vectory/rules-3-active.png");
    transition: .4s;
}
.rules__box:nth-child(4) .rules__box-drop.active{
    background-image: url("../images/vectory/rules-4-active.png");
    transition: .4s;
}
.rules__box-drop b{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 84px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: left;
    font-size: 32px;
    font-weight: 900;
    z-index: 1;
    position: relative;
}
.rules__box-drop b::before{
	content: "";
	position: absolute;
	width: 72px;
	height: 63px;
	background-image: url("../images/icon/drop.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	right: 50px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
    transition: .4s;
}
.rules__box .rules__box-drop.active b::before{
    -webkit-transform: translate(0%, -50%) rotate(180deg);
	transform: translate(0%, -50%) rotate(180deg);
    transition: .4s;
}
.rules__list{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 44px 0;
    box-sizing: border-box;
    background: linear-gradient(
        180deg,
        rgba(219, 76, 7, 0.05) 0%,
        rgba(219, 76, 7, 0.05) 100%
    );
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / 10%);
    margin: 20px 0 0 0;
    display: none;
}
.rules__list__box{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 44px 0 44px;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    cursor: pointer;
}
.rules__list__box:last-child{
    border: unset;
}
.rules__list__block:nth-child(1){
    width: 65%;
}
.rules__list__block:nth-child(2){
    width: 35%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}
.rules__list__block-drop{
    width: 50px;
    height: 50px;
    float: right;
    background-image: url("../images/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0;
    border: unset;
    background-color: unset;
    opacity: 0.2;
    cursor: pointer;
    transition: .4s;
}
.rules__list__block video{
    width: 105%;
    min-width: 100%;
    height: 240px;
    float: left;
    margin: 0 -20% 0 0;
    display: none;
    /* Параллельные скосы как у шапки ("//") */
    -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    object-fit: cover;
    overflow: hidden;
}
.rules__list__block-drop.active{
    transform: rotate(180deg);
    transition: .4s;
}
.rules__list__box-title{
    width: 100%;
    height: auto;
    float: left;
    color: #0fa3fc;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}
.rules__list__box-title b{
    width: fit-content;
    height: auto;
    color: #ffffff;
    opacity: 0.4;
    margin: 0 12px 0 0;
}
.rules__list__box-description{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 0 0;
}
.rules__list__box-description span{
    color: rgba(255, 255, 255, 0.5);
}
.rules__list__box-text{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 0 0;
    display: none;
}
.rules__list__box-videoplay{
    width: fit-content;
    height: auto;
    float: right;
    color: rgba(255, 255, 255, 0.32);
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 20px 0 0;
    margin: 20px 0 0 0;
    position: relative;
    transition: .4;
    cursor: pointer;
    display: none;
}
.rules__list__box-videoplay::before{
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url("../images/icon/videoplay.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    right: 0%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    opacity: 0.3;
}
.rules__list__box-videoplay:hover{
    color: #0fa3fc;
    transition: .4s;
}
.rules__list__box-videoplay:hover::before{
    filter: invert(52%) sepia(100%) saturate(2963%) hue-rotate(178deg) brightness(102%) contrast(98%);
    opacity: 1;
}
.rules__list__box__date{
    width: 100%;
    height: auto;
    float: left;
    margin: 24px 0 0 0;
    display: none;
}
.rules__list__box__date p{
    width: 100%;
    height: auto;
    float: left;
    color: #0fa3fc;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}
.rules__list__box__date span{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 0 0;
}
.rules__start{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 80px 0 0 0;
}
.rules__start-play{
    width: 260px;
    height: 60px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.rules__start-play:hover{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
.rules__start span{
    width: 100%;
    height: auto;
    float: left;
    color: rgba(255, 255, 255, 0.44);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin: 24px 0 0 0;
}
/* RULES */

/* MODAL */
.modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 10006;
    background-color: rgb(8 9 10 / 40%);
}
.modal__row{
    width: 90%;
    max-width: 1307px;
    height: auto;
}
.modal__item{
    width: 100%;
    height: auto;
    float: left;
    padding: 121.5px 0;
    /* box-shadow: 0px 0px 120px 0px rgba(5, 49, 75, 0.4); */
    background-image: url("../images/bg/modal-1.png");
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.modal__item.type2{
    background-image: url("../images/bg/modal-2.png");
}
.modal__item h2{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}
.modal__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 24px 0 0 0;
}
.modal__buttons{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 44px 0 0 0;
}
.modal__buttons a{
    width: 260px;
    height: 60px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 4px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.modal__buttons a{
    background-image: url("../images/vectory/main_button_2.svg");
}
.modal__buttons a.active{
    background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.modal__buttons a.active{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
.type2 .modal__buttons a:nth-child(1){
	background-image: url("../images/vectory/main_button_2.svg");
	box-shadow: none;;
}
.type2 .modal__buttons a:nth-child(2){
	background-image: url("../images/vectory/main_button_1.svg");
	transition: .2s;
}
.type2 .modal__buttons a:nth-child(2):hover{
	box-shadow: 0px 0px 44px 0px rgba(25, 121, 178, 1);
}
.modal__item-close{
    width: 80px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/icon/close.svg");
    position: absolute;
    right: 20px;
    top: 20px;
    border: unset;
    background-color: unset;
    padding: 0;
    cursor: pointer;
    transition: .2s;
}
.modal__item-close::before{
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    background-image: url("../images/icon/close-icon.svg");
    opacity: 0.3;
    transition: .2s;
}
.modal__item-close:hover{
	box-shadow: 0px 0px 24px 0px rgba(25, 121, 178, 1);
	transition: .2s;
}
.modal__item-close:hover::before{
    opacity: 1;
    transition: .2s;
}
/* MODAL */