@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700&family=Unbounded:wght@200;300;400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Druk LCG';
    src: url('../fonts/DrukLCG-Heavy.eot');
    src: url('../fonts/DrukLCG-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DrukLCG-Heavy.woff2') format('woff2'),
    url('../fonts/DrukLCG-Heavy.woff') format('woff'),
    url('../fonts/DrukLCG-Heavy.ttf') format('truetype'),
    url('../fonts/DrukLCG-Heavy.svg#DrukLCG-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk LCG';
    src: url('../fonts/DrukLCG-Medium.eot');
    src: url('../fonts/DrukLCG-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DrukLCG-Medium.woff2') format('woff2'),
    url('../fonts/DrukLCG-Medium.woff') format('woff'),
    url('../fonts/DrukLCG-Medium.ttf') format('truetype'),
    url('../fonts/DrukLCG-Medium.svg#DrukLCG-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.eot');
    src: url('../fonts/Gilroy-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
    url('../fonts/Gilroy-Semibold.woff') format('woff'),
    url('../fonts/Gilroy-Semibold.ttf') format('truetype'),
    url('../fonts/Gilroy-Semibold.svg#Gilroy-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/Gilroy-Regular.woff') format('woff'),
    url('../fonts/Gilroy-Regular.ttf') format('truetype'),
    url('../fonts/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Judas';
    src: url('../fonts/Judas_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black-color: #000000;
    --red-color: #FF0000;
    --white-color: #FCFCFC;
    --purple-color: #6F00E4;
    --yellow-color: #FFC700;
    /*--middle-grey: #ADADAD;*/
    /*--medium-grey: #F9F9F9;*/
    /*--dark-grey: #999999;*/
    /*--green-color: #A7FF00;*/
    /*--dark-green: #67B900;*/
}

:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: #3663e0;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.center {
    margin: 0 auto;
    text-align: center;
}

.d-flex-normal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap {
    overflow-x: hidden;
}

.container {
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
}

a {
    color: var(--red-color);
}

.header {
    padding: 40px 0;
    margin-bottom: -100px;
}

.header-menu {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.header-menu li {
    margin-left: 34px;
}

.header-menu li:first-of-type {
    margin-left: unset;
}

.header-menu li a:hover {
    color: var(--yellow-color);
}

.top .social svg {
    fill: var(--white-color);
}

.top .social a:hover svg {
    fill: var(--yellow-color);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.header-menu li a, .header-lang {
    color: var(--white-color);
    font-weight: normal;
}

.header-mobile {
    display: none;
}


.header-invite b > img:first-of-type {
    margin-left: unset;

}

.header-invite b > img {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    margin-left: -10px;
}

.header-invite span {
    font-weight: normal;
    max-width: 335px;
    display: block;
    line-height: 115%;
    margin-top: 12px;
}

.header-lang {
    height: 36px;
    width: 36px;
    font-size: 14px;
    border-radius: 100%;
    border: 2px solid var(--white-color);
}

.header-lang:hover {
    border-color: var(--yellow-color);
    background: var(--yellow-color);
    color: var(--black-color);
}

.top {
    margin-top: 147px;
    box-shadow: 0 50px 50px var(--black-color);
}

.top-man {
    margin-left: 47px;
}

.top-man__text {
    margin-left: -48px;
    z-index: 23;
    margin-top: -90px;
}

.top-man__text span:first-of-type {
    margin-bottom: 12px;
}

.top-man__text > div > span {
    font-size: 49px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    line-height: 100%;
}

.top-man__text h1 {
    font-size: 171px;
    color: #e8fa12;
    font-weight: 500;
}

.top-man h1 + span {
    max-width: 630px;
    position: relative;
    margin-top: 45px;
    margin-bottom: 50px;
}

.top-man__img {
    /*background: url("../images/top-man.png") no-repeat;*/
    /*width: 450px;*/
    /*height: 600px;*/
    flex-shrink: 0;
    margin-left: -130px;
    /*background-size: contain;*/
    position: relative;
}

.top-man__img p {
    position: absolute;
    color: var(--white-color);
    width: 230px;
    height: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #DA0000;
    font-weight: 300;
    bottom: 80px;
    border-radius: 7px;
}

.top-man__img p > span {
    font-family: 'Gilroy', sans-serif;
    margin-top: 8px;
}

.top-man__img p > b {
    font-size: 53px;
    font-weight: 500;
}

.top-man__img img {
    width: 684px;
    z-index: -1;
}

.top-man__img:before {
    width: 705px;
    height: 705px;
    background: #1581FF;
    -webkit-filter: blur(100px);
    filter: blur(100px);
}

.bottom-smoke.top-smoke {
    top: unset;
    bottom: 0;
}

.top-smoke {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    z-index: -1;
}

.top-smoke:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, #000000 100%);
}

.bottom-smoke.top-smoke:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 60%, #000000 100%);
}

.top-smoke video {
    opacity: 0.3;
}

.top:before {
    content: "";
    background: url("../images/top-bg.png") repeat left top;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: 35%;
    height: 980px;
    opacity: 0.4;
}

.top h1 > span {
    display: block;
}

.top h4 {
    font-weight: 500;
    font-family: 'Gilroy', sans-serif;
    left: 400px;
    position: absolute;
    line-height: 85%;
    top: 20px;
}

.top h4 span {
    display: block;
}

.top-text {
    margin-left: 108px;
}

.top-btn {
    width: 242px;
    height: 242px;
    background: var(--red-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -62px;
    bottom: -29px;
    box-shadow: 15px 15px 20px #cf7b7a;
}

.top-btn:before {
    width: 178px;
    height: 178px;
    border: 2px solid var(--white-color);
    content: "";
    position: absolute;
    border-radius: 100%;
    display: block;
}

.top-text h1:before {
    content: "";
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    width: 15px;
    height: 24px;
    position: absolute;
    right: 234px;
    bottom: 76px;
    background: var(--red-color);
}

.top-text h1:after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: var(--red-color);
    border-radius: 100%;
    position: absolute;
    right: 200px;
    bottom: 80px;
    box-shadow: 30px 0 0 var(--red-color);
}

.top-btn img {
    width: 220px;
    max-width: unset;
    position: absolute;
    -webkit-animation: rotate360 50s linear infinite;
    animation: rotate360 50s linear infinite;
}


@-webkit-keyframes rotate360 {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateMinus360 {
    50% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateMinus360 {
    50% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.top-btn span {
    /*display: block;*/
    /*clip-path: polygon(23% 92%, 6% 94%, 0% 16%, 8% 7%, 84% 0, 85% 18%, 29% 22%, 100% 86%, 92% 100%, 18% 34%);*/
    /*background: var(--white-color);*/
    /*position: absolute;*/
    /*width: 49px;*/
    /*height: 46px;*/
    background: url("../images/top-btn-img.png") no-repeat;
    background-size: contain;
    width: 174px;
    height: 174px;
    -webkit-animation: rotateMinus360 150s linear infinite;
    animation: rotateMinus360 150s linear infinite;
}

.top-video {
    width: 800px;
    height: 800px;
    /*overflow-y: hidden;*/
    z-index: -2;
}

.top-video video {
    left: -90%;
    top: -50%;
    position: absolute;
}

.logo svg {
    fill: #1E1E1E;
}

.top .social {
    width: 30px;
}

.top .social a {
    margin-bottom: 49px;
}

.top .social a:last-of-type {
    margin-bottom: unset;
}

.top-hash {
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 7px;
    align-self: flex-end;
}

.top-bottom {
    margin-top: 20px;
}

.top-bottom .top-timer .font {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 2px;
}

.timer__items {
    margin-left: 31px;
    flex-shrink: 0;
    line-height: unset;
    font-weight: 700;
}

.top-arrows {
    margin-top: auto;
}

.top-arrows span {
    display: block;
    clip-path: polygon(0% 56%, 10% 46%, 43% 79%, 43% 0, 57% 0, 56% 80%, 90% 47%, 100% 56%, 55% 100%, 45% 100%);
    width: 22px;
    height: 22px;
    background: var(--white-color);
    margin-bottom: 30px;
}

.top-arrows span:last-of-type {
    margin-bottom: unset;
}

.top-arrows span:first-of-type {
    opacity: 0.1;
}

.top-arrows span:nth-child(2) {
    opacity: 0.2;
}

.timer__item {
    position: relative;
    line-height: 85%;
    margin: 0 8px 0 18px;
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 40px;
    width: 54px;
}

.timer__items b {
    opacity: 0.4;
    position: relative;
    top: -12px;
    font-size: 36px;
}

.timer__item:last-of-type {
    margin-right: 0;
}

.timer__item:after {
    content: attr(data-title);
    color: var(--white-color);
    line-height: 16px;
    font-size: 16px;
    text-transform: lowercase;
    font-family: 'Gilroy', sans-serif;
    font-weight: normal;
}

.timer-date, .timer-date:after {
    background: #9020E8;
    height: 78px;
}

.timer-date {
    padding: 0 35px;
    border-radius: 0 59px 59px 0;
    margin-left: -34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -12px
}

.timer-date:after {
    content: "";
    position: absolute;
    left: -500px;
    width: 500px;
    top: 0;
}

.timer-date span {
    display: block;
}

.top .btn {
    height: 45px;
    width: 275px;
    margin-right: 66px;
    margin-bottom: 20px;
}

.top .btn i {
    width: 18px;
    height: 18px;
    clip-path: polygon(0% 43%, 79% 43%, 46% 10%, 56% 0, 100% 45%, 100% 55%, 56% 100%, 46% 90%, 79% 57%, 0 57%);
    background: var(--white-color);
    display: block;
    margin-left: 10px;
}

.btn {
    background: linear-gradient(90deg, var(--purple-color) 0%, var(--red-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    position: relative;
    height: 60px;
    font-weight: 500;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn:hover {
    background: linear-gradient(90deg, var(--red-color) 0%, var(--purple-color) 100%);
    letter-spacing: 2px;
}

.btn:after {
    content: '';
    background: linear-gradient(90deg, #9747FF 0%, #FF0000 100%);
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    -webkit-filter: blur(15px);
    filter: blur(15px);
}

.font.btn {
    font-weight: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .title, .font {
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    line-height: 100%;
    font-weight: 900;
    letter-spacing: 1px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

h1, .h1 {
    font-size: 200px;
    line-height: 85%;
}

h2, .h2 {
    font-size: 96px;
    line-height: 100%;
    /*font-weight: 500;*/
    letter-spacing: 2px;
}

h3, .h3 {
    font-size: 64px;
}

h4, .h4 {
    font-size: 48px;
}

h5, .h5 {
    font-size: 36px;
}

h6, .h6 {
    font-size: 36px;
    font-weight: 500;
}


body {
    overflow-x: hidden;
    color: var(--white-color);
    font-size: 20px;
    font-family: 'Gilroy', sans-serif;
    font-weight: normal;
    position: relative;
    min-height: 100vh;
    background: var(--black-color);
}

main {
    overflow: hidden;
}

.about {
    margin-top: 310px;
}

.about .h1 {
    position: relative;
}

.tickets h4,
.tickets h3,
.about-num h2, .lineSlider-item h3 {
    font-weight: 500;
}

.footer-hash > span,
.tickets li p > span,
.block-list__item:hover h5,
.partners h3 > span,
.top-bottom .font > span,
.top-hash > span,
.top h1 > span,
.tickets-top h4 > span,
h2 > span,
.lineSlider-item:hover h3 > span,
.about .h1 > span, .about-num h2 > span {
    color: var(--red-color);
}

.about-list {
    grid-template-columns: repeat(3, 1fr);
    left: 270px;
    margin-top: -140px;
    max-width: calc(100% - 270px);
    grid-gap: 20px;
    gap: 20px;
}

.about-list li {
    display: flex;
}

.about-list li i {
    margin-right: 20px;
    width: 35px;
    height: 35px;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5), inset 0 4px 17px rgba(255, 255, 255, 0.05);
    background: linear-gradient(320deg, #FFFFFF -98%, rgba(255, 255, 255, 0) 25%),
    linear-gradient(72deg, rgba(255, 255, 255, 0.09) -15%, rgba(255, 255, 255, 0.04) 110%),
    linear-gradient(137deg, #9747FF -38%, rgba(151, 71, 255, 0.08) 33.05%, rgba(255, 255, 255, 0) 118%),
    radial-gradient(95% 95% at 90% 5%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-num, .about-bottom {
    margin-top: 75px;
}

.about-num li {
    margin-right: 45px;
}

.about-num li:last-of-type {
    margin-right: unset;
}

.about-bottom h3 {
    max-width: 455px;
}

.about-bottom__left h6 {
    margin-top: auto;
    max-width: 368px;
}

.about-vertical {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
    gap: 35px;
    margin-right: 105px;
}

.about-vertical li {
    width: 120px;
}

.about-vertical b:before {
    content: "";
    position: absolute;
    background: url("../images/about-bg.svg") no-repeat;
    width: 170px;
    height: 170px;
    top: -20px;
    left: -25px;
    z-index: -1;
}

.about-vertical b {
    width: 100%;
    height: 120px;
    display: flex;
    position: relative;
    margin-bottom: 20px;
    background-size: contain;
    justify-content: center;
    align-items: center;
}

.about-vertical span {
    text-align: center;
    display: block;
}

.tickets:after,
.about-num:after {
    width: 431px;
    height: 431px;
    background: var(--purple-color);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    left: 34%;
}

.speakers .block-list:after {
    width: 577px;
    height: 577px;
    background: var(--purple-color);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    left: 34%;
}

.about-num:after {
    top: -60px;
}

.invite-text:before,
.invite-text:after,
.top-man__img:before,
.hotels ul:before, .hotels ul:after,
.schedule ul:after,
.speakers .block-list:after,
.btn:after,
.partners-diamond:before,
.partners-gold:before,
.top-text:after,
.header .container:before,
.tickets:after,
.lineSlider:after,
.about-num:after,
.about .h1:after {
    z-index: -1;
    display: block;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    content: "";
}

.tickets:after {
    bottom: -230px;
    z-index: 2;
    height: 230px;
}

.schedule ul:after,
.header .container:before,
.lineSlider:after,
.about .h1:after {
    background: var(--red-color);
}


.schedule ul:after {
    width: 360px;
    height: 360px;
    -webkit-filter: blur(120px);
    filter: blur(220px);
    right: 250px;
    bottom: -50px;
}

.partners-unique li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.partners-unique i {
    display: flex;
    align-items: center;
    height: 100px;
}

.partners-unique a {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.partners-unique b {
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    height: 100px;
    border-radius: 27px;
    padding: 0 27px;
    margin-top: 20px;
    box-shadow: 1px 1px 23px 0 rgba(0, 0, 0, 0.5), 0 4px 15px 0 rgba(255, 255, 255, 0.5) inset;
    background: linear-gradient(137.28deg, #FF0000 -98%, rgba(255, 0, 0, 0.8) -3%, rgba(255, 255, 255, 0) -74%),
    radial-gradient(95.5% 95.5% at 90.5% 4.5%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(-60deg, #FF0000 -84.17%, rgba(255, 0, 0, 0.08) 18.32%, rgba(255, 255, 255, 0) 50%) padding-box,
    linear-gradient(323.17deg, #FFFFFF -98.02%, rgba(255, 255, 255, 0) 0%),
    linear-gradient(10deg, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.2) 90%) border-box;


}

.partners-diamond:before {
    width: 884px;
    height: 194px;
    -webkit-filter: blur(120px);
    filter: blur(220px);
    background: var(--yellow-color);
    left: -250px;
    top: -50px;
}


.hotels ul:before, .hotels ul:after {
    width: 577px;
    height: 577px;
    -webkit-filter: blur(450px);
    filter: blur(450px);
    background: var(--purple-color);
}

.hotels ul:before {
    left: 25%;
    top: -220px;
}

.hotels ul:after {
    left: 8%;
    bottom: -220px;
}

.partners-gold:before {
    width: 360px;
    height: 360px;
    -webkit-filter: blur(120px);
    filter: blur(220px);
    background: var(--purple-color);
    left: 8%;
    top: -220px;
}

.top-text:after {
    width: 424px;
    height: 424px;
    -webkit-filter: blur(120px);
    filter: blur(120px);
    background: var(--purple-color);
    right: 0;
    top: 0;
}

.header .container:before {
    width: 342px;
    height: 342px;
    -webkit-filter: blur(120px);
    filter: blur(120px);
    top: 0;
    right: 9%;
}

.invite-text:after,
.about .h1:after {
    width: 264px;
    height: 264px;
    -webkit-filter: blur(120px);
    filter: blur(120px);
}

.about .h1:after {

    top: -90px;
    left: 42%;
}

.lineSlider:after {
    width: 360px;
    height: 360px;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    left: 38%;
    top: -210px;
}

.lineSlider {
    margin-top: 95px;
    touch-action: auto;
    -ms-touch-action: auto;
}

.lineSlider-item {
    margin: 0 37px;
}

.hotels li:not(:last-child),
.hotels li > div:first-of-type b:after,
.top .social a svg,
.partners-list li,
.tickets li h4,
.tickets li h3,
.hotels li > div:first-of-type b,
.block-list__item b,
.block-list__item:after,
.block-list__item,
.block-list__item span img,
.lineSlider-item h3,
.lineSlider-item p {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.lineSlider-item h3 {
    opacity: 0.1;
}

.lineSlider-item p {
    opacity: 0.4;
}

.lineSlider-item:hover h3,
.lineSlider-item:hover p {
    opacity: 1;
}

.lineSlider .slick-track {
    display: flex;
}

.schedule, .hotels,
.area, .faq,
.partners, .footer,
.speakers, .subscribe,
.tickets, .map {
    margin-top: 145px;
}

.speakers .block-title p {
    max-width: 616px;
}

.speakers .block-title p, .hotels .block-title p {
    margin-left: 30px;
}

.tickets .block-title p {
    max-width: 666px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.speakers .btn {
    margin-top: 35px;
}

.speakers .btn,
.tickets .btn {
    width: 320px;
}

.tickets .btn {
    margin-top: 15px;
}

.tickets ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    gap: 30px;
    margin-top: 35px;
}

.tickets li {
    height: 470px;
    position: relative;
    padding: 30px;
    background: #010101;
    border-radius: 30px;
    overflow: hidden;
}

.tickets li:hover h4:first-of-type {
    /*transform: translateX(100%);*/
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.tickets li:hover h4:last-of-type {
    transform: translateX(200%);
    /*width: 0;*/
    opacity: 0;
}

.tickets li:hover h3 {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
}

.tickets li:hover p {
    /*transform: unset;*/
    animation: priceJump .5s linear forwards;
}

.tickets li p {
    font-size: 96px;
    position: absolute;
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    bottom: 0;
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
    left: 0;
    right: 0;
    text-align: center;
}

@keyframes priceJump {
    50% {
        transform: translateY(-20%);
    }
    to {
        transform: unset;
    }
}

.tickets li img {
    position: absolute;
    left: 0;
    top: 0;
}

.tickets-btn {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 86px;
    display: block;
    cursor: pointer;
}

.tickets li b {
    width: 250px;
    height: 223px;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tickets h4 {
    letter-spacing: 2px;
}

.tickets h3 {
    text-align: center;
    position: absolute;
    bottom: 30px;
    margin: 0 auto;
    left: 0;
    right: 0;
    letter-spacing: 2px;
}

.tickets li video {
    mix-blend-mode: hard-light;
    position: absolute;
    width: 620px;
    height: 345px;
    left: -175px;
    top: -50px;
}

.tickets-basic b {
    background: rgba(255, 255, 255, 0.6);
}

.tickets li i {
    font-style: normal;
    /*position: relative;*/
    /*width: calc(100% - 35px);*/
    /*margin: 60px auto 0;*/
    text-align: center;
    /*display: block;*/
    height: 100%;
    position: absolute;
    left: 35px;
    right: 35px;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*display: none;*/
}

.tickets li:hover i strong:nth-child(odd) {
    -webkit-animation: jumpLines 1s linear forwards;
    animation: jumpLines 1s linear forwards;
}

.tickets li:hover i strong:nth-child(even) {
    -webkit-animation: jumpLines2 1s linear forwards;
    animation: jumpLines2 1s linear forwards;
}

.tickets li i strong:nth-child(odd) {
    -webkit-transform: translateX(250%);
    transform: translateX(250%);
}

.tickets li i strong:nth-child(even) {
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%);
}

@-webkit-keyframes jumpLines {
    40% {
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
    60% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    to {
        -webkit-transform: unset;
        transform: unset;
    }
}

@keyframes jumpLines {
    40% {
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
    60% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    to {
        -webkit-transform: unset;
        transform: unset;
    }
}

@-webkit-keyframes jumpLines2 {
    40% {
        -webkit-transform: translateX(30%);
        transform: translateX(30%);
    }
    60% {
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
    to {
        -webkit-transform: unset;
        transform: unset;
    }
}

@keyframes jumpLines2 {
    40% {
        -webkit-transform: translateX(30%);
        transform: translateX(30%);
    }
    60% {
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
    to {
        -webkit-transform: unset;
        transform: unset;
    }
}

.tickets li:hover b {
    background: #010101;
}

.tickets li:hover video {
    opacity: 0;
}

/*.tickets li:hover i {*/
/*    display: block;*/
/*}*/

.tickets li i > strong:last-of-type {
    margin-bottom: unset;
}

.tickets li i > strong {
    display: block;
    margin-bottom: 15px;
}

.tickets-business i strong:nth-child(4),
.tickets-business i strong:nth-child(3),
.tickets-basic i strong:nth-child(2),
.tickets-basic i strong:nth-child(4),
.tickets-basic i strong:nth-child(3) {
    opacity: 0.3;
}

.tickets-business b {
    background: #ffc700;
}

.tickets-vip b {
    background: #a871f4;
}

.tickets-extra b {
    background: var(--red-color);
}

.map h2 {
    margin-bottom: 36px;
}

.map-text p i {
    font-style: normal;
    display: flex;
    flex-direction: column;
}

.map-text ul {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: auto;
}

.map-text ul span {
    width: 48px;
    height: 48px;
    background: var(--red-color);
    border-radius: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 900;
}

.map-text ul li:last-of-type {
    margin-bottom: unset;
}

.map-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.map-text ul li:nth-child(2) span {
    background: var(--yellow-color);
    color: var(--black-color);
}

.map-text ul li:nth-child(3) span {
    background: var(--purple-color);
}

.map-text ul li:nth-child(4) span {
    background: var(--white-color);
    color: var(--black-color);
}

.map-text p span {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 80%;
}

.map-text p b {
    font-size: 20px;
    opacity: 0.4;
    line-height: 115%;
    margin-bottom: 5px;
}

.map-main {
    width: 1134px;
    height: 673px;
    position: relative;
}

.map-main:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 36px;
    top: 0;
    background: url("../images/map-bg.svg?ver=1");
    background-size: contain;
    z-index: -2;
}

.map-item {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}

.map-stage:hover, .map-vip:hover,
.map-lounge:hover, .map-stream:hover,
.map-bar:hover, .map-media:hover, .map-speed:hover {
    background: linear-gradient(0deg, rgba(151, 71, 255, 0.2), rgba(151, 71, 255, 0.2)),
    linear-gradient(337.48deg, rgba(151, 71, 255, 0) 59.07%, #9747FF 124.17%);

}

.map-stage:before, .map-vip:before,
.map-lounge:before, .map-stream:before,
.map-bar:before, .map-media:before, .map-speed:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.map-about {
    text-align: left;
    right: 34px;
    top: 2px;
}

.map-about strong {
    font-weight: 500;
    font-size: 96px;
    line-height: 80%;
}

.map-about i {
    font-size: 20px;
    font-family: 'Gilroy', sans-serif;
    margin-left: 20px;
    line-height: 115%;
    font-style: normal;
    text-transform: initial;
    font-weight: normal;
    align-self: flex-start;
}

.map-stage, .map-vip {
    border-radius: 15px;
}

.map-stage, .map-vip,
.map-lounge, .map-stream,
.map-bar, .map-media, .map-speed {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    linear-gradient(338deg, rgba(151, 71, 255, 0) 59.07%, #9747FF 120%) padding-box,
    linear-gradient(320deg, #FFFFFF -98%, rgba(255, 255, 255, 0) 10%),
    linear-gradient(340deg, rgba(255, 255, 255, 0.03) 1.5%, rgba(255, 255, 255, 0.276) 99%) border-box;
}

.map-lounge,
.map-bar, .map-media, .map-speed {
    border-radius: 12px;
}

.map-purple__bottom,
.map-stage, .map-vip,
.map-grey__bottom,
.map-grey__left {
    bottom: 28px;
}

.map-stage {
    width: 454px;
    height: 310px;
    left: 66px;
    font-size: 128px;
}

.map-vip {
    width: 256px;
    height: 155px;
    left: 470px;
    top: 0;
    font-size: 48px
}

.map-lounge, .map-stream,
.map-bar, .map-media, .map-speed {
    font-size: 20px;
}

.map-lounge {
    width: 121px;
    height: 98px;
    left: 66px;
    top: 15px;
}

.map-bar {
    width: 104px;
    height: 50px;
    left: 197px;
    top: 15px;
}

.map-media {
    width: 97px;
    height: 50px;
    left: 312px;
    top: 15px;
}

.map-speed {
    width: 157px;
    height: 121px;
    left: 66px;
    top: 202px;
}

.map-stream {
    width: 88px;
    height: 118px;
    left: 907px;
    bottom: 257px;
    border-radius: 4px;
}

.map-rect .map-item,
.map-purple .map-item,
.map-yellow .map-item,
.map-red .map-item,
.map-grey .map-item,
.map-rega,
.map-wc {
    border: 1px solid;
}

.map-grey__bottom {
    left: 592px;
}

.map-yellow__top .map-item,
.map-grey__bottom .map-item,
.map-grey__top .map-item {
    margin-right: -1px;
}

.map-grey .map-item {
    width: 34px;
    height: 34px;
    border-color: var(--white-color);
    border-radius: 5px;
    font-size: 20px;
    background: rgba(252, 252, 252, 0.25);
    font-weight: 500;
}

.map-purple .map-item,
.map-yellow__right .map-item,
.map-red .map-item,
.map-grey__left .map-item,
.map-grey__right .map-item {
    margin-top: -1px;
}

.map-grey__left {
    left: 530px;
}

.map-grey__right {
    bottom: 166px;
    left: 1110px;
}

.map-grey__top, .map-purple__top {
    top: 202px;
}

.map-grey__top {
    left: 629px;
}

.map-grey__top .map-item:nth-child(4) {
    margin-left: 21px;
}

.map-grey__top .map-item:nth-child(8) {
    margin-left: 120px;
}

.map-grey .map-item:hover {
    background: rgba(252, 252, 252, 0.55);
}

.map-rega, .map-wc {
    border-radius: 5px;
    font-size: 14px;
    height: 28px;
    bottom: 21px;
    border-color: #FEBE98;
}

.map-rega {
    width: 97px;
    left: 995px;
    bottom: 20px;
    background: rgba(254, 190, 152, 0.3);
    margin-right: 1px;
}

.map-rega:hover {
    background: rgba(254, 190, 152, 0.5);
}

.map-wc {
    left: 1091px;
    width: 35px;
    height: 28px;
    background: rgba(255, 0, 0, 0.25);
}

.map-wc:hover {
    background: rgba(255, 0, 0, 0.5);
}

.map-red {
    left: 906px;
    bottom: 96px;
}

.map-red__right {
    top: 285px;
    left: 755px;
}

.map-red .map-item {
    width: 88px;
    height: 59px;
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--red-color);
    border-radius: 2px;
}

.map-red__right .map-item {
    width: 118px;
}

.map-red .map-item:hover {
    background: rgba(255, 0, 0, 0.5);
}

.map-yellow__right {
    bottom: 96px;
    left: 1028px;
}

.map-yellow .map-item {
    border-color: var(--yellow-color);
    background: rgba(255, 199, 0, 0.2);
    border-radius: 2px;
    width: 59px;
    height: 59px;
}

.map-yellow .map-item:hover {
    background: rgba(255, 199, 0, 0.5);
}

.map-yellow__right .map-item:nth-child(2) {
    margin-bottom: 46px;
}

.map-yellow__top {
    left: 592px;
    top: 285px;
}

/*.map-yellow__top .map-item:nth-child(3) {*/
/*    margin-left: 46px;*/
/*}*/

.map-purple .map-item,
.map-rect .map-item {
    border-color: var(--purple-color);
    background: rgba(151, 71, 255, 0.2);
    border-radius: 5px;
}

.map-purple .map-item:hover,
.map-rect .map-item:hover {
    background: rgba(151, 71, 255, 0.5);
}

.map-purple__right .map-item,
.map-purple__left .map-item {
    width: 34px;
    height: 46px;
}

.map-purple__top .map-item,
.map-purple__bottom .map-item {
    width: 46px;
    height: 34px;
}

.map-purple__right {
    left: 1110px;
    bottom: 76px;
}

.map-purple__left {
    left: 530px;
    bottom: 292px;
}

.map-purple__bottom {
    left: 857px;
}

.map-purple__top {
    left: 920px;
}

.map-rect {
    width: 118px;
}

.map-rect .map-item {
    width: 59px;
    height: 30px;
}

.map-rect__one,
.map-rect__two {
    bottom: 123px;
}

.map-rect__three,
.map-rect__four {
    bottom: 226px;
}

.map-rect__one,
.map-rect__four {
    left: 755px;
}

.map-rect__two,
.map-rect__three {
    left: 592px;
}

.map-wrapper .btn {
    width: calc(100% - 36px);
    font-size: 40px;
    margin-left: auto;
    margin-top: 25px;
}

/*.map-item.map-locked {*/
/*    background: url(images/map-locked.svg) no-repeat center;*/
/*    font-size: 0*/
/*}*/

/*.map-item.map-locked:hover {*/
/*    background-image: url(images/map-locked.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center*/
/*}*/

/*.map-stage.map-item.map-locked, .map-vip.map-item.map-locked {*/
/*    font-size: inherit;*/
/*    background-position: center 35%*/
/*}*/
.map-hover {
    font-size: 8px;
    position: absolute;
    background: rgba(60, 60, 60, .45);
    border: 1px solid #fff;
    font-weight: 500;
    width: 85px;
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    cursor: auto;
    margin-left: 110px;
    z-index: -1;
    margin-top: -20px;
}

.map-hover p img {
    max-height: 40px;
    display: block;
    margin: 0 auto;
}

.map-hover p {
    text-transform: capitalize;
    padding: 4px;
    display: block;
    text-align: center;
}

.map-hover b {
    height: 14px;
    display: block;
    position: relative;
    left: -1px;
    right: -1px;
    bottom: -1px;
    font-size: 10px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--red-color) 0%, var(--purple-color) 100%);
}

.map-hover:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 6px 5px 0;
    position: absolute;
    border-color: transparent var(--red-color) transparent transparent;
    left: -10px;
    bottom: 0;
}

.map-item:hover .map-hover {
    opacity: 1;
    z-index: 22;
}

.speakers-tabs {
    margin-bottom: 35px;
    margin-top: 25px;
}

.speakers-tabs p {
    width: 250px;
    margin-right: 25px;
    opacity: 0.7;
}

.speakers-tabs p.active--tab > a {
    opacity: 1
}

.speakers-tabs p.active--tab {
    opacity: 1;
}

.speakers-tabs p > a {
    height: 60px;
    width: 100%;
    display: flex;
    opacity: 0.4;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 40px;
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 6px 6px 25px 0px rgba(255, 0, 0, 0.45), 0px 4px 17px 0px rgba(255, 255, 255, 0.05) inset;

    background: linear-gradient(137.28deg, #FF0000 -0.6%, rgba(255, 0, 0, 0.08) 82.94%, rgba(255, 255, 255, 0) 117.54%),
    radial-gradient(95.5% 95.5% at 90.5% 4.5%, rgba(255, 255, 255, 0.172) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(323.17deg, #FFFFFF -98.02%, rgba(255, 255, 255, 0) 25.43%),
    linear-gradient(72.37deg, rgba(255, 255, 255, 0.092) -14.74%, rgba(255, 255, 255, 0.046) 110.17%);
    border-radius: 12px;
}

.speakers-tabs p > a + span {
    font-size: 16px;
    margin-top: 11px;
    opacity: 0.4;
    display: block;
}

.block-list {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    gap: 15px;
    margin-top: 35px;
}

.block-list__item {
    /*background: url("../images/sp-bg.png") no-repeat center;*/
    background: linear-gradient(#FF0000 -38.3%, rgba(255, 0, 0, 0.08) -33.46%, rgba(255, 255, 255, 0) -24.89%) padding-box,
    linear-gradient(323.17deg, #FFFFFF -98.02%, rgba(255, 255, 255, 0) 10.39%),
    linear-gradient(341.25deg, rgba(255, 255, 255, 0.03) 1.5%, rgba(255, 255, 255, 0.276) 97.65%) border-box;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 14px;
    height: 360px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.block-list__item.block-list--secret:hover h5 {
    opacity: 1;
    color: var(--white-color);
}

.block-list__item.block-list--secret h5 {
    opacity: 0.3;
}

.block-list__item.block-list--secret span {
    width: 100%;
    background: #28282e;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.block-list__item.block-list--secret span img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.block-list__item.block-list--secret:hover span img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.speakers.influencer .block-list__item:hover p,
.speakers.influencer .block-list__item:hover h5 {
    display: flex;
}

.influencer .block-list.is--full .block-list__item:nth-child(n+11) {
    display: flex;
}

.influencer .block-list .block-list__item:nth-child(n+11) {
    display: none;
}

.influencer .btn {
    width: unset;
    padding: 0 10px;
    max-width: 400px;
}

.block-list__item:hover b {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    margin-top: -30px;
}

.block-list__item:hover h5 {
    margin-top: unset;
}

.block-list__item:hover:after {
    opacity: 1;
}

.block-list__item:after,
.block-list__item span:before {
    content: "";
    width: 100%;
    height: calc(100% + 10px);
    position: absolute;
    opacity: 0;
    left: 0;
}

.block-list__item:after {
    background: linear-gradient(35deg, #FF0000 -5.27%, rgba(255, 0, 0, 0.08) 40%, rgba(255, 255, 255, 0) 118%),
    radial-gradient(95% 95% at 90% 4%, rgba(255, 255, 255, 0.172) 0%, rgba(255, 255, 255, 0) 100%);
    height: 117px;
    bottom: 0;
    border-radius: 0 0 30px 30px;
}

.block-list__item span:before {
    background: linear-gradient(137.17deg, #FF0000 -22.64%, rgba(255, 0, 0, 0) 40.38%);
    z-index: 2;
    top: -10px;
    border-radius: 30px;
}

.block-list__item:hover span {
    background: linear-gradient(137.17deg, #000000 -22.64%, rgba(0, 0, 0, 0.3) 40.38%);
}

.block-list__item:hover span img {
    transform: translateY(-10px);
}

.block-list__item:hover span:before {
    opacity: 1;
}

.block-list__item:hover {
    padding: 0;
    overflow: unset;
}

.block-list__item span img {
    position: relative;
    z-index: 3;
}

.block-list__item span svg {
    opacity: 0.2;
    fill: var(--black-color);
    width: 100%;
    top: -20px;
    z-index: 2;
    border-radius: 20px;
}

.block-list__item:hover span svg {
    fill: var(--white-color);
    top: -10px;
}

/*.block-list__item:before {*/
/*    content: "";*/
/*    background: url("../images/speakers-bg2.svg") no-repeat top center;*/
/*    background-size: contain;*/
/*    width: 182px;*/
/*    height: 245px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    border-radius: 20px;*/
/*    margin: 0 auto;*/
/*}*/

.block-list__item h5 {
    font-weight: 500;
    margin-top: auto;
    white-space: nowrap;
}

.block-list__small {
    font-size: 32px;
}

.block-list__item b {
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -25px;
    z-index: 4;
}

.block-list__item b img {
    max-height: 100%;
    max-width: 120px;
}

.block-list__item span {
    position: relative;
    display: block;
    height: 242px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(137.17deg, #FF0000 -22.64%, rgba(255, 0, 0, 0.3) 40.38%);
}

.block-list__item:hover span {
    overflow: unset;
}

.block-list__item span:after {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(360deg, #1B1717 8.17%, rgba(20, 20, 20, 0) 40.28%);
    position: absolute;
    bottom: -20px;
    border-radius: 0 0 20px 20px;
    left: 0;
    z-index: 4;
}

.block-list__item strong {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 18px;
    padding: 0 30px;
    display: none;
    /*-webkit-transition: all 0.2s linear;*/
    /*transition: all 0.2s linear;*/
}

.block-list__item:hover p,
.block-list__item:hover h5 {
    display: none;
}

.block-list__item:hover strong {
    display: flex;
}

.block-list__item p {
    font-size: 14px;
    opacity: 0.4;
    font-weight: normal;
}

.partners h2 {
    margin-bottom: 30px;
}

.partners h3,
.area h3 {
    font-size: 72px;
    font-weight: 500;
}

.partners h3 > i, .influencer h2 > span,
.partners h3 > i {
    color: var(--yellow-color);
}

.partners h3 > i {
    font-style: normal;
}

.partners h3 > b {
    font-weight: 500;
    color: var(--purple-color);
}

.partners h3 > strong {
    font-weight: 500;
    color: #C1C1C1;
}

.partners-special:after {
    content: "special";
    left: 20%;
}

.partners-exclusive:after {
    content: "exclusive";
    left: 10%;
}

.partners-diamond:after {
    content: "diamond";
    left: 31%;
}

.partners-silver:after {
    content: "silver";
    left: 39%;
}

.partners-gold:after {
    content: "gold";
    left: 41%;
}

.partners-list {
    margin-top: 36px;
    margin-bottom: 105px;
}

.partners-list li {
    margin-right: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-list li img {
    max-width: 270px;
    max-height: 90px;
    height: auto;
}

.partners-list li:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.partners-list:after {
    color: var(--white-color);
    opacity: 0.05;
    display: block;
    position: absolute;
    font-size: 250px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Druk LCG', "Arial Black", sans-serif;
    text-transform: uppercase;
    z-index: -1;
}

.partners-info {
    margin-top: 47px;
}

.area:before {
    content: "";
    position: absolute;
    background: url("../images/area-bg.png") no-repeat right center;
    width: 836px;
    height: 593px;
    right: -250px;
    top: -20px;
    z-index: -1;
}

.area h3 > span {
    display: block;
}

.area-title {
    margin-bottom: 15px;
}

.area .rect-btn {
    margin-left: auto;
}

.rect-btn {
    background: linear-gradient(var(--black-color) 0 0) padding-box, /*this is your grey background*/ linear-gradient(to right, #FF0000, #9747FF) border-box;
    color: var(--white-color);
    text-transform: uppercase;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 300px;
    font-size: 36px;
    font-weight: 500;
    position: relative;
}

.rect-btn span {
    z-index: 3;
}

.rect-btn:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #9747FF 0%, #FF0000 100%);
    width: 86%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 66%;
    bottom: -20px;
    filter: blur(25px);
    z-index: 2;
}

.rect-btn:hover {
    border: unset;
    background: linear-gradient(to right, #FF0000, #9747FF);
}

.area-img img:first-of-type {
    width: 66%;
}

.area-img img:last-of-type {
    width: 32%;
}

.area-bottom {
    margin-top: 29px;
}

.area-bottom span {
    max-width: 455px;
}

.area-bottom .btn {
    width: 800px;
}

.hotels ul {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    gap: 25px;
    margin-top: 53px;
    max-width: 1355px;
}

.hotels li:not(:last-child) {
    padding: 30px 25px 20px;
    height: 325px;
    position: relative;
    background: linear-gradient(#FF0000 -38.3%, rgba(255, 0, 0, 0.08) -33.46%, rgba(255, 255, 255, 0) -24.89%) padding-box,
    linear-gradient(323.17deg, #FFFFFF -98.02%, rgba(255, 255, 255, 0) 10.39%),
    linear-gradient(341.25deg, rgba(255, 255, 255, 0.03) 1.5%, rgba(255, 255, 255, 0.276) 97.65%) border-box;
    border-radius: 30px;
    /*background: url("../images/hotels-bg.png");*/
    /*background-size: cover;*/
}

.hotels ul > li:last-child {
    margin-top: auto;
    font-size: 20px;
    font-weight: normal;
    margin-left: 17px;
}

.hotels li:last-child ol {
    margin-left: 20px;
}

.hotels li:last-child ol li span {
    cursor: pointer;
}

.hotels li:last-child ol li {
    background: transparent;
    padding: 0;
    border: none;
    font-size: 20px;
    height: unset;
    line-height: 125%;
}

.hotels li:last-child b {
    display: block;
    margin-bottom: 20px;
}

.hotels li:last-child ol li:not(:last-child) {
    margin-bottom: 5px;
}

.hotels h4 {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--white-color);
}

.hotels h4 > span {
    display: block;
}

.hotels li:hover > div:first-of-type b:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hotels li:hover > div:first-of-type b {
    background: var(--red-color);
}

.hotels li:hover > div:first-of-type > p,
.hotels li:hover > div:first-of-type > a {
    display: none;
}

.hotels li > div:first-of-type {
    position: absolute;
    left: 25px;
    right: 25px;
    padding-right: 70px;
}

.hotels li .hotels-hidden p:not(:last-child) {
    margin-bottom: unset;
}

.hotels li:hover .hotels-hidden {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*top: 0;*/
    /*left: 0;*/
    height: 100%;
    top: 0;
    bottom: 0;
}

.hotels-hidden {
    display: none;
    position: absolute;
    transition: all 0.2s linear;
}

.hotels-hidden i {
    font-style: normal;
    cursor: pointer;
}

.hotels-hidden img {
    max-height: 150px;
    width: auto;
    margin-bottom: auto;
    max-width: 70%;
}

.hotels li:not(:last-child):hover {
    background: linear-gradient(var(--red-color) -38.3%, rgba(255, 0, 0, 0.08) -33.46%, rgba(255, 255, 255, 0) -24.89%) padding-box,
    linear-gradient(342.6deg, var(--red-color) -26.33%, rgba(255, 0, 0, 0.08) 63.89%, rgba(255, 255, 255, 0) 105.53%),
    radial-gradient(95.5% 95.5% at 90.5% 4.5%, rgba(255, 255, 255, 0.172) 0%, rgba(255, 255, 255, 0) 100%) border-box;
}

.hotels li:hover > div:first-of-type p + span i {
    background: var(--white-color);
}

.hotels li:hover > div:first-of-type {
    -webkit-transform: none;
    transform: none;
    z-index: 99;
    height: calc(100% - 48px);
}

.hotels li > div:first-of-type p {
    font-size: 20px;
}

.hotels p:not(:last-child) {
    margin-bottom: 12px;
}

.hotels li > div:first-of-type b:after {
    width: 12px;
    height: 12px;
    content: "";
    position: absolute;
    clip-path: polygon(1% 86%, 70% 18%, 12% 18%, 11% 1%, 90% 1%, 99% 10%, 100% 89%, 82% 88%, 81% 31%, 13% 100%);
    background: var(--white-color);
}

.hotels-link {
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
}

.hotels li > div:first-of-type b {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    border: 1px solid var(--white-color);
    top: 0;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotels li > div:first-of-type p > span {
    opacity: 0.4;
    font-size: 16px;
    display: block;
    font-weight: 700;
}

.hotels p > a {
    font-size: 20px;
    color: var(--white-color);
    display: block;
}

.hotels p + span {
    position: absolute;
    bottom: 25px;
    right: 15px;
}

.hotels p + span i:not(:last-child) {
    margin-bottom: 7px;
}

.hotels li > div:first-of-type p + span i.rate--none {
    opacity: 0.2;
}

.hotels li > div:first-of-type p + span i {
    -webkit-clip-path: polygon(50% 0%, 65% 30%, 98% 35%, 75% 60%, 79% 91%, 50% 75%, 21% 91%, 25% 60%, 2% 35%, 35% 30%);
    clip-path: polygon(50% 0%, 65% 30%, 98% 35%, 75% 60%, 79% 91%, 50% 75%, 21% 91%, 25% 60%, 2% 35%, 35% 30%);
    width: 22px;
    height: 22px;
    display: block;
    background: var(--red-color);
}

.inferno {
    height: 1095px;
    background: linear-gradient(180deg, #000000 4%, #6F00E4 52%);
}

.inferno-circle {
    position: absolute;
    left: -180px;
    top: 0;
    width: 1440px;
    height: 1441px;
    background: url(../images/inferno-circle2.svg) no-repeat;
    background-size: cover;
    -webkit-animation: rotate13 90s linear infinite;
    animation: rotate13 90s linear infinite;
}

@-webkit-keyframes rotate13 {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate13 {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.inferno-heroes:before {
    content: "";
    width: 343px;
    height: 343px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    background: #52ff00;
    filter: blur(75px);;
    position: absolute;
    bottom: 0;
    left: -30px;
}

.inferno-heroes img {
    position: relative;
    z-index: 2;
}

.inferno-background {
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg, #000000 4%, #6F00E4 52%);*/
}

.inferno-background.inferno-item.up {
    height: 600px;
    bottom: 320px;
    /*background: url(../images/title_background1.png) no-repeat right 0, url(../images/title_background2.png) left 0 no-repeat;*/
    /*background: url(../images/title_background.png) no-repeat right 0;*/
}

.inferno-background.inferno-item.up .container:after,
.inferno-background.inferno-item.up .container:before {
    content: "";
    position: absolute;
}

.inferno-background.inferno-item.up .container:after {
    background: url(../images/title_background1.png) no-repeat right 0;
    width: 900px;
    height: 402px;
    right: -430px;
    bottom: 30px;
    -webkit-animation: upDown 25s 1.5s linear infinite;
    animation: upDown 25s 1.5s linear infinite;
}

.inferno-background.inferno-item.up .container:before {
    background: url(../images/title_background2.png) no-repeat left 0;
    width: 305px;
    height: 566px;
    left: -190px;
    bottom: 0;
    -webkit-animation: upDown 15s linear infinite;
    animation: upDown 15s linear infinite;
}

@-webkit-keyframes upDown {
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

@keyframes upDown {
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

.inferno-background.inferno-item.up .container {
    height: 100%;
    position: relative;
}

.inferno-title {
    display: flex;
    position: absolute;
    bottom: 0;
}

.inferno-title-text {
    position: absolute;
    width: 1000px;
    z-index: 0;
    right: -889px;
    bottom: 140px;
}

.inferno-title-text:after {
    content: "";
    position: absolute;
    background: url("../images/inferno-bird.png") no-repeat;
    background-size: contain;
    width: 421px;
    height: 323px;
    right: -230px;
    top: -260px;
}

.inferno-background.inferno-item.down {
    width: 100%;
    height: 460px;
    bottom: -2px;
    background: url(../images/inferno_vector.png?ver=2);
    z-index: 2;
    background-size: cover;
}

.area {
    z-index: 2;
}

.info {
    display: flex;
    gap: 32px;
    padding-top: 160px;
    margin-bottom: 50px;
}

.info::before {
    content: '';
    right: -210px;
    top: 0;
    width: 577px;
    height: 611px;
    background: url("../images/inferno_icon3.png") no-repeat;
    background-size: contain;
    position: absolute;
}

.info-text {
    position: relative;
    max-width: calc(35px + 160px);
}

.info-text p {
    font-family: 'Druk LCG', sans-serif;
    font-size: 42px;
    font-weight: 500;
    padding-left: 39px;
}

.info-text p span.green {
    color: #52FF00;
    display: block;
}

/*.info-text.big p{*/
/*    font-size: 52px;*/
/*}*/

.info-text.big {
    max-width: calc(35px + 325px);
}

.info-text sup {
    text-transform: lowercase;
}

.info-text::before {
    content: '';
    position: absolute;
    width: 29px;
    height: 32px;
    background-image: url('../images/inferno_li.png');
    background-size: 100% 100%;
    top: 5px;
}

.info-item.last-child {
    margin-right: 50px;
}

.info-location {
    max-width: 290px;
}

.info-location p {
    font-size: 28px;
}

.info-location p span.green {
    color: #52FF00;
}

.info-down {
    max-width: 80%;
    margin-left: 14px;
}


.speakersSecond {
    margin-top: 153px;
    position: relative;
}

.speakersSecond:before {
    content: "";
    background: url("../images/speakers-line.png") no-repeat;
    width: 100%;
    height: 1685px;
    position: absolute;
    top: -246px;
    left: 0;
    z-index: -1;
}

.schedule li[style*='display: list-item'] {
    display: flex !important;
}

.schedule ul li {
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid var(--purple-color);
    display: flex;
    align-items: flex-start;
}

.schedule ul {
    margin-top: 45px;
}

.schedule ul li img {
    width: 59px;
    height: 59px;
    border-radius: 100%;
    margin-right: 11px;
}

.schedule ul .schedule--white b {
    opacity: 1;
}

.schedule ul .schedule--purple b {
    opacity: 1;
    color: var(--purple-color);
}

.schedule-tabs a:first-of-type {
    border-radius: 10px 0 0 10px;
}

.schedule-tabs a:last-of-type {
    border-radius: 0 10px 10px 0;
    margin-left: -5px;
}

.schedule-tabs a.active--tab {
    background: var(--purple-color);
    opacity: 1;
    color: var(--white-color);
    border: unset;
    z-index: 1;
    border-radius: 10px;
}

.schedule-tabs a {
    height: 60px;
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white-color);
    font-size: 25px;
    color: rgba(252, 252, 252, 0.22);
    text-transform: uppercase;
}

.schedule-name b,
.schedule ul li > span,
.schedule ul li > b {
    font-size: 50px;
    opacity: 0.2;
    text-transform: uppercase;
    font-weight: 500;
}

.schedule ul li > span {
    width: 136px;
    display: inline-block;
    flex-shrink: 0;
}

.schedule-name p, .schedule-big > p > strong {
    opacity: 0.4;
}

.schedule-name i,
.schedule-big p {
    font-weight: 500;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
}

.schedule-name i {
    font-style: normal;
    color: var(--white-color);
    background: #262626;
    padding: 1px 12px;
    margin-right: 8px;
}

.schedule-name div {
    display: flex;
    align-items: center;
}

.schedule-name i:first-of-type {
    margin-left: 15px;
}

.schedule-name i.tag-yellow {
    background: var(--yellow-color);
    color: #080808;
}

.schedule-name i.tag-red {
    background: var(--red-color);
}

.schedule-name i.tag-purple {
    background: var(--purple-color);
}

.schedule .btn {
    width: 320px;
    margin-top: 35px;
}

.schedule-big > p {
    margin-top: 4px;
}

.schedule-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.schedule-big p {
    margin-top: 5px;
}

.schedule ul li > p {
    font-size: 16px;
}

.faq h2 {
    margin-bottom: 36px;
}

.faq ul li {
    border-top: 2px solid var(--purple-color);
    padding: 20px 45px 20px 0;
    position: relative;
}

.faq ul li.is--active:after {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #9747FF 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.faq ul li strong {
    display: block;
    font-size: 24px;
    line-height: 116%;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.faq ul li p {
    font-size: 20px;
    line-height: 115%;
    margin-top: 12px;
    display: none;
}

.faq ul li.is--active strong, .faq ul li.is--active p {
    -webkit-transform: translateX(46px);
    transform: translateX(46px);
    margin-right: 46px;
}

.faq ul li.is--active strong + p {
    display: block;
}

.faq ul li:last-of-type {
    border-bottom: 2px solid var(--purple-color);
}

.subscribe h2 {
    margin-bottom: 10px;
}

.subscribe-block:first-child {
    flex-shrink: 0;
    margin-right: 30px;
}

.subscribe-title {
    margin-bottom: 17px;
    color: var(--red-color);
    margin-top: 35px;
    font-weight: 600;
}

.radio-input {
    display: flex;
    height: 30px;
    margin-bottom: 20px;
    line-height: 30px;
    margin-right: 34px;
}

.radio-input input[type=radio] {
    display: none;
}

.radio-input label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 41px;
    margin-right: 0;
    user-select: none;
}

.radio-input label:before, .radio-input label:after {
    content: "";
    display: inline-block;
    position: absolute;
    border-radius: 100%;
}

.radio-input label:before {
    width: 30px;
    height: 30px;
    left: 0;
    bottom: 1px;
    border: 1px solid rgb(66, 64, 64);
    background: linear-gradient(#FF0000 -38.3%, rgba(255, 0, 0, 0.08) -33.46%, rgba(255, 255, 255, 0) -24.89%) padding-box,
    linear-gradient(323.17deg, #FFFFFF -98.02%, rgba(255, 255, 255, 0) 10.39%),
    linear-gradient(341.25deg, rgba(255, 255, 255, 0.03) 1.5%, rgba(255, 255, 255, 0.276) 97.65%) border-box;
}

/* Checked */
.radio-input input[type=radio]:checked + label:after {
    background: linear-gradient(345.98deg, #FF0000 -85.68%, rgba(255, 0, 0, 0.08) 92.12%, rgba(255, 255, 255, 0) 243.43%),
    radial-gradient(95.5% 95.5% at 90.5% 4.5%, rgba(255, 255, 255, 0.172) 0%, rgba(255, 255, 255, 0) 100%);
    width: 14px;
    height: 14px;
    left: 8px;
    top: 7px;
}

/* Hover */
.radio-input label:hover:before {
    filter: brightness(120%);
}

.text-input {
    height: 65px;
    padding: 0 25px;
    border: 2px solid rgba(131, 125, 125, 0.4);
    background: linear-gradient(342.6deg, #FF0000 -84.17%, rgba(255, 0, 0, 0.08) 18.32%, rgba(255, 255, 255, 0) 105.53%),
    radial-gradient(95.5% 95.5% at 90.5% 4.5%, rgba(255, 255, 255, 0.172) 0%, rgba(255, 255, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border-radius: 10px;
    font-size: 20px;
    font-weight: normal;
    font-family: 'Gilroy', sans-serif;
}

.text-input::-webkit-input-placeholder {
    color: #F6F5F3;
}

.text-input:focus::placeholder {
    color: rgba(252, 252, 252, 0.4);
    font-size: 14px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.text-input:focus {
    border-color: var(--purple-color);
}

.subscribe .text-input {
    width: 402px;
    color: #fff;
}

.subscribe-form {
    margin-top: 15px;
}

.subscribe-form__input {
    gap: 20px 15px;
    width: 62%;
    flex-shrink: 0;
}

.subscribe-form .btn {
    font-size: 36px;
}

.subscribe-form__last {
    flex-direction: column;
    width: 28%;
}

.subscribe-form__last .rect-btn {
    height: 65px;
    width: 100%;
}

.subscribe-form__last .rect-btn:hover {
    letter-spacing: 3px;
}

.subscribe-form__last .rect-btn + span {
    max-width: 90%;
}

.footer {
    padding-bottom: 45px;
}

.footer-hash {
    flex-shrink: 0;
    max-width: 366px;
    margin: 0 50px;
    line-height: 95%;
}

.footer-hash > span {
    display: block;
}

.footer-links, .footer-right ul {
    margin-top: auto;
}

.footer-right h4 {
    opacity: 0.4;
}

.footer-links a {
    margin-bottom: 3px;
}

.footer-links a, .footer-links span {
    font-size: 14px;
    line-height: 115%;
    opacity: 0.4;
    color: var(--white-color);
    display: block;
}

.footer-links span {
    margin-top: 15px;
}

.footer h4 {
    font-weight: 500;
}

.footer-right ul li {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 10px;
}

.footer-right ul li:first-of-type {
    margin-right: 30px;
}

.footer-right ul b {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.4;
    margin-bottom: 10px;
    display: block;
}

.footer-right ul p {
    display: flex;
    align-items: center;
    line-height: 115%;
    margin-top: auto;
}

.footer-right ul p > span {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100px;
    margin-right: 15px;
}

.footer-right ul p > span img {
    height: 50px;
    overflow: hidden;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-right ul i {
    font-style: normal;
    font-size: 16px;
}

.footer-right ul i a {
    display: block;
    color: var(--red-color);
}

.button-up {
    top: -10px;
    right: -158px;
}

.button-up span:hover,
.button-up i:hover {
    background: linear-gradient(to right, #FF0000, #9747FF) border-box;
}

.button-up span {
    width: 100px;
    text-transform: uppercase;
}

.button-up i:after {
    content: "";
    -webkit-clip-path: polygon(0 100%, 0% 50%, 50% 0, 50% 0, 100% 50%, 100% 100%, 50% 50%);
    clip-path: polygon(0 100%, 0% 50%, 50% 0, 50% 0, 100% 50%, 100% 100%, 50% 50%);
    background: var(--white-color);
    width: 21px;
    height: 16px;
}

.button-up i {
    width: 50px;
    margin-left: 8px;
}

.button-up span,
.button-up i {
    background: linear-gradient(var(--black-color) 0 0) padding-box, /*this is your grey background*/ linear-gradient(to right, #FF0000, #9747FF) border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor: pointer;
}

.popup-background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.popup-background.is--opened {
    display: flex;
}

.popup.pay {
    /*min-width: 1145px;*/
    /*width: 1145px;*/
    height: 463px;
    width: 984px;
}

.popup.pay.with-iframe {
    height: 863px;
    width: 1184px;
}

.popup.pay.with-iframe .close-popup {
    right: -90px;
}

.popup.pay.with-iframe .popup-item,
.popup.pay.with-iframe .popup-item > div {
    height: 100%;
}

.popup.pay:before {
    content: "";
    background: url("../images/popup-bg.png");
    height: 980px;
    width: 1640px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.popup.pay h2 {
    font-weight: 500;
    color: var(--white-color);
    line-height: 85%;
}

.popup-left {
    margin-top: -35px;
}

.popup.pay p {
    color: #fff;
    font-size: 24px;
    margin-top: 24px;
}

.popup.pay p > span {
    color: var(--red-color);
    display: block;
}

.popup-item {
    width: calc(100% - 190px);
    flex-shrink: 0;
    margin-left: 32px;
}

.popup-buy_button {
    padding: 20px;
    border-radius: 5px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

}

.popup-buy_button h5 {
    font-size: 28px;
    color: var(--white-color);
}

.popup-buy_button img {
    margin-right: 28px;
}

.close-popup {
    position: absolute;
    right: -40px;
    top: 0;
    clip-path: polygon(0% 23%, 23% 0%, 50% 27%, 77% 0, 100% 23%, 73% 50%, 100% 77%, 78% 99%, 50% 73%, 23% 100%, 0 77%, 27% 50%);
    width: 43px;
    height: 43px;
    background: var(--white-color);
    cursor: pointer;
}

.popup.partner {
    position: relative;
    background: url(../images/partner_popup.png);
    background-size: 100% 100%;
    min-width: 828px;
    width: 828px;
    height: 367px;
    padding: 30px;
}

.popup.infopartner {
    position: relative;
    background: url(../images/infopartner_popup.png);
    background-size: 100% 100%;
    min-width: 992px;
    width: 992px;
    height: 341px;
    padding: 30px;
}

.popup_title {
    margin-bottom: 24px;
}

.popup_title h2 {
    color: #fff;
    font-family: 'Oswald';
    font-size: 82px;
    font-weight: 700;
    text-transform: uppercase;
}

.popup_title.kz h2 {
    font-size: 75px;
}

.popup_text p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.popup_text p span.red {
    font-weight: 700;
}

.popup_telegrams {
    width: 100%;
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    justify-content: flex-end;
}

.popup_telegrams-item {
    display: flex;
    gap: 10px;
}

.popup_telegrams-item-title {
    margin-bottom: 13px;
}

.popup_telegrams-item-title p {
    color: #FCFCFC;
    opacity: 0.3;
    font-size: 14px;
    text-wrap: nowrap;
}

.popup_telegrams-text p {
    color: #FCFCFC;
    font-size: 25px;
    font-weight: 700;
    text-wrap: nowrap;
    text-transform: uppercase;
}

.popup_telegrams-item-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup {
    position: relative;
}

.partners-info li img {
    max-width: 200px;
    max-height: 40px;
    height: auto;
}

.partners-info li img.partners-info__big {
    max-height: 60px;
}

.invite {
    margin-top: 210px;
}

.invite h2 {
    font-size: 92px;
    text-align: right;
    margin-right: 60px;
    margin-bottom: 20px;
}

.invite h2 > span {
    color: var(--white-color);
}

.invite-text {
    /*content: "";*/
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*z-index: -1;*/
    background: url("../images/invite-bg.png") no-repeat bottom;
    background-size: contain;
    width: 100%;
    height: 191px;
    max-width: 1390px;
    margin: 0 auto;
    padding-top: 15px;
}

.invite-text p {
    font-size: 22px;
    font-weight: 500;
    max-width: 670px;
    line-height: 130%;
    margin-left: 40px;
    margin-top: 20px;
}

.invite-text p > i {
    margin-top: 15px;
    display: block;
    font-weight: 300;
}

.invite-text:after {
    background: var(--purple-color);
    top: -100%;
    left: 70px;
}

.invite-text:before {
    background: var(--purple-color);
    top: -100%;
    right: 70px;
    width: 212px;
    height: 212px;
    -webkit-filter: blur(120px);
    filter: blur(120px);
}

.invite-text img {
    width: 305px;
    align-self: flex-end;
    margin-left: 50px;
}

.invite-bottom p span,
.invite-bottom .font > span {
    color: var(--red-color);
}

.invite-bottom p :first-of-type {
    margin-bottom: 15px;
}

.invite-bottom p i {
    font-style: normal;
    display: block;
}

.invite-bottom p {
    font-size: 26px;
    line-height: 115%;
    font-weight: 600;
    max-width: 590px;
    margin-left: auto;
    margin-right: 30px;
}

.invite-bottom .font {
    font-size: 45px;
    margin-top: 34px;
    text-transform: uppercase;
}

@media screen and (max-width: 1800px) {
    .inferno {
        height: 1020px;
    }

    .inferno-background.inferno-item.up {
        height: 480px;
        bottom: 336px;
    }

    .inferno-title-text {
        width: 720px;
        right: -630px;
        bottom: 140px;
    }

    .inferno-background.inferno-item.up .container:before {
        width: 244px;
        height: 453px;
        left: -152px;
        background-size: contain;
    }

    .inferno-background.inferno-item.up .container:after {
        width: 720px;
        height: 322px;
        right: -256px;
        background-size: contain;
    }

    .inferno-heroes img {
        width: 460px;
    }

    .inferno-heroes:before {
        width: 275px;
        height: 275px;
    }

    .inferno-circle {
        width: 1152px;
        height: 1153px;
        top: -30px;
        left: -290px;
    }

    .inferno-title-text:after {
        width: 337px;
        height: 258px;
        right: -184px;
        top: -208px;
    }

    .info-text p {
        font-size: 35px;
    }

    .info::before {
        right: -168px;
        top: 30px;
        width: 402px;
        height: 427px;
    }

    body, .text-input, .faq ul li p, .hotels li:last-child ol li,
    .hotels li > div:first-of-type p,
    .hotels p > a,
    .map-about i, .map-lounge, .map-stream,
    .map-bar, .map-media, .map-speed,
    .map-text p b {
        font-size: 16px;
    }

    .container {
        max-width: 1128px;
    }

    h1, .h1 {
        font-size: 160px;
    }

    h2, .h2, .tickets li p {
        font-size: 78px;
    }

    h3, .h3 {
        font-size: 52px;
    }

    h4, .h4, .schedule-name b, .schedule ul li > span,
    .schedule ul li > b,
    .map-text p span {
        font-size: 40px;
    }

    h4, .h4 {
        line-height: 88%;
    }

    h5, .h5, .top-hash, .timer__item, .speakers-tabs p > a {
        font-size: 32px;
    }

    .header-invite b > img {
        width: 38px;
        height: 38px;
    }

    .header-invite span {
        max-width: 200px;
    }

    .header .logo svg {
        width: 180px;
        height: auto;
    }

    .top-man__text h1 {
        font-size: 89px;
    }

    .top-man__text > div > span {
        font-size: 39px;
    }

    .top {
        margin-top: 118px;
    }

    .top:before {
        height: 874px;
        background-size: contain;
    }

    .top-video {
        width: 640px;
        height: 640px;
    }

    .top-video video {
        width: 1760px;
    }

    .top-btn {
        width: 195px;
        height: 195px;
    }

    .top-btn img {
        width: 176px;
    }

    .top-btn:before {
        width: 142px;
        height: 142px;
    }

    .top-btn span {
        width: 140px;
        height: 140px;
    }

    .top-text:after {
        width: 340px;
        height: 340px;
    }

    .top h4 {
        left: 330px;
    }

    .top-text h1:after {
        right: 154px;
        bottom: 65px;
        width: 12px;
        height: 12px;
    }

    .top-text h1:before {
        width: 12px;
        height: 20px;
        position: absolute;
        right: 184px;
        bottom: 62px;
    }

    .top-arrows span {
        width: 18px;
        height: 18px;
        margin-bottom: 24px;
    }

    .top-text {
        margin-left: unset;
    }


    .top-bottom .top-timer .font {
        font-size: 48px;
    }

    .btn {
        font-size: 30px;
    }

    .top .btn {
        width: 220px;
        margin-right: unset;
    }

    .timer__item {
        width: 44px;
    }

    .timer__item:after {
        font-size: 13px;
    }

    .about {
        margin-top: 220px;
    }

    .about-list {
        left: 216px;
        margin-top: -110px;
        max-width: calc(100% - 216px);
    }

    .about-list li i {
        margin-right: 16px;
        width: 28px;
        height: 28px;
    }

    .about-list li i svg {
        width: 17px;
        height: 11px;
    }

    .schedule, .hotels, .area, .faq, .partners, .footer, .speakers, .subscribe, .tickets, .map {
        margin-top: 116px;
    }

    .about-num li {
        margin-right: 36px;
    }

    .about-num, .about-bottom {
        margin-top: 60px;
    }

    .about-bottom h3 {
        max-width: 374px;
    }

    .about-vertical {
        grid-gap: 28px;
        gap: 28px;
        margin-right: 84px;
    }

    .about-vertical li {
        width: 96px;
    }

    .about-vertical b {
        height: 96px;
        margin-bottom: 16px;
    }

    .about-vertical b:before {
        width: 136px;
        height: 136px;
        background-size: contain;
        top: -15px;
        left: -16px;
    }

    .about-vertical b img {
        width: 80%;
    }

    .lineSlider {
        margin-top: 76px;
    }

    .lineSlider-item {
        margin: 0 30px;
    }

    .block-list__item b {
        height: 48px;
    }

    .block-list__item {
        height: 288px;
    }

    .block-list__item span {
        height: 173px;
    }

    .speakers-tabs p {
        width: 200px;
        margin-right: 20px;
        opacity: 0.7;
    }

    .speakers-tabs p > a {
        height: 48px;
    }

    .block-list__item:hover p {
        margin-bottom: 10px;
    }

    .tickets ul {
        grid-gap: 24px;
        gap: 24px;
        margin-top: 28px;
    }

    .tickets li {
        height: 376px;
        padding: 24px;
        border-radius: 24px;
    }

    .tickets li i {
        /*width: calc(100% - 28px);*/
        /*margin: 48px auto 0;*/
    }

    .tickets li b {
        width: 200px;
        height: 178px;
        top: 86px;
    }

    .tickets li video {
        width: 496px;
        height: 276px;
        left: -140px;
        top: -40px;
    }

    .text-input, .subscribe-form__last .rect-btn {
        height: 52px;
    }

    .map h2 {
        margin-bottom: 28px;
    }

    .map-text ul {
        font-size: 28px;
    }

    .map-text ul span {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .map-text p span {
        margin-bottom: 28px;
    }

    .map-main {
        width: 907px;
        height: 538px;
        background-size: contain;
    }

    .map-main:before {
        left: 26px;
    }

    .map-item {
        font-size: 18px;
    }

    .map-about {
        right: 21px;
    }

    .map-about strong {
        font-size: 78px;
    }

    .map-about i {
        margin-left: 16px;
    }

    .map-purple__bottom,
    .map-stage, .map-vip,
    .map-grey__bottom,
    .map-grey__left {
        bottom: 22px;
    }

    .map-stage {
        width: 363px;
        height: 248px;
        left: 53px;
        font-size: 102px;
    }

    .map-vip {
        width: 205px;
        height: 124px;
        left: 376px;
        font-size: 38px
    }

    .map-lounge, .map-bar, .map-media {
        top: 12px;
    }

    .map-lounge {
        width: 97px;
        height: 78px;
        left: 53px;
    }

    .map-bar {
        width: 83px;
        height: 40px;
        left: 158px;
    }

    .map-media {
        width: 78px;
        height: 40px;
        left: 250px;
    }

    .map-speed {
        width: 126px;
        height: 97px;
        left: 53px;
        top: 162px;
    }

    .map-stream {
        width: 70px;
        height: 94px;
        left: 726px;
        bottom: 206px;
    }

    .map-grey__bottom {
        left: 474px;
    }

    .map-grey .map-item {
        width: 27px;
        height: 27px;
        font-size: 16px;
    }

    .map-grey__left {
        left: 424px;
    }

    .map-grey__right {
        bottom: 133px;
        left: 888px;
    }

    .map-grey__top, .map-purple__top {
        top: 162px;
    }

    .map-grey__top {
        left: 503px;
    }

    .map-grey__top .map-item:nth-child(4) {
        margin-left: 17px;
    }

    .map-grey__top .map-item:nth-child(8) {
        margin-left: 96px;
    }

    .map-rega, .map-wc {
        font-size: 11px;
        height: 22px;
        bottom: 16px;
    }

    .map-rega {
        width: 78px;
        left: 796px;
    }

    .map-wc {
        left: 873px;
        width: 28px;
        height: 22px;
    }

    .map-red {
        left: 725px;
        bottom: 77px;
    }

    .map-red__right {
        top: 228px;
        left: 604px;
    }

    .map-red .map-item {
        width: 70px;
        height: 47px;
    }

    .map-red__right .map-item {
        width: 92px;
    }

    .map-yellow__right {
        bottom: 77px;
        left: 822px;
    }

    .map-yellow .map-item {
        width: 47px;
        height: 47px;
    }

    .map-yellow__right .map-item:nth-child(2) {
        margin-bottom: 37px;
    }

    .map-yellow__top {
        left: 474px;
        top: 228px;
    }

    /*.map-yellow__top .map-item:nth-child(3) {*/
    /*    margin-left: 37px;*/
    /*}*/
    .map-purple__right .map-item,
    .map-purple__left .map-item {
        width: 27px;
        height: 37px;
    }

    .map-purple__top .map-item,
    .map-purple__bottom .map-item {
        width: 37px;
        height: 27px;
    }

    .map-purple__right {
        left: 888px;
        bottom: 61px;
    }

    .map-purple__left {
        left: 424px;
        bottom: 234px;
    }

    .map-purple__bottom {
        left: 686px;
    }

    .map-purple__top {
        left: 736px;
    }

    .map-rect {
        width: 94px;
    }

    .map-rect .map-item {
        width: 47px;
        height: 24px;
    }

    .map-rect__one,
    .map-rect__two {
        bottom: 98px;
    }

    .map-rect__three,
    .map-rect__four {
        bottom: 181px;
    }

    .map-rect__one,
    .map-rect__four {
        left: 604px;
    }

    .map-rect__two,
    .map-rect__three {
        left: 474px;
    }

    .map-wrapper .btn {
        width: calc(100% - 28px);
        font-size: 32px;
        margin-top: 20px;
    }

    .schedule ul li > span {
        width: 108px;
    }

    .partners-list:after {
        font-size: 200px;
    }

    .partners-list {
        margin-top: 28px;
        margin-bottom: 84px;
    }

    .partners h3, .area h3 {
        font-size: 58px;
    }

    .hotels ul {
        grid-gap: 20px;
        gap: 20px;
        margin-top: 42px;
    }

    .hotels li:not(:last-child) {
        padding: 24px 20px 16px;
        height: 260px;
    }

    .hotels li:last-child b {
        margin-bottom: 16px;
    }

    .hotels p:not(:last-child) {
        margin-bottom: 8px;
    }

    .subscribe .text-input {
        width: 322px;
    }

    .faq ul li {
        padding: 16px 36px 16px 0;
    }

    .faq ul li strong {
        font-size: 19px;
    }

    .footer-hash {
        max-width: 293px;
    }

    .footer .logo svg {
        width: 196px;
        height: 39px;
    }

    .footer-right {
        margin-right: 20px;
    }

    h6, .h6 {
        font-size: 29px;
    }

    .button-up {
        right: -100px;
    }

    .button-up i {
        display: none;
    }

    .speakersSecond:before {
        background-size: contain;
        height: 1348px;
        top: -210px;
    }

    .top-smoke video {
        width: 1782px;
    }

    .popup.pay {
        height: 370px;
        width: 787px;
    }

    .close-popup {
        width: 34px;
        height: 34px;
    }

    .popup-left {
        margin-top: -25px;
    }

    .popup.pay p {
        font-size: 19px;
    }

    .popup-item {
        width: calc(100% - 210px);
    }

    .popup-buy_button {
        padding: 15px;
    }

    .partners-unique i, .partners-unique b {
        height: 80px;
    }

    .partners-unique b {
        font-size: 30px;
    }

    .invite {
        margin-top: 168px;
    }

    .invite h2 {
        font-size: 74px;
        margin-right: 48px;
    }

    .invite-text p {
        max-width: 660px;
        margin-left: 20px;
        margin-top: 2px;
    }

    .invite-text {
        max-width: 1112px;
        height: 153px;
        padding-top: 10px;
    }

    .invite-text img {
        width: 245px;
        margin-left: 40px;
    }

    .invite-bottom .font {
        font-size: 36px;
        margin-top: 27px;
    }

    .invite-bottom p {
        font-size: 21px;
        margin-right: 24px;
        max-width: 388px;
    }

    .top-man__img img {
        width: 547px;
    }
}

@media screen and (max-width: 1279px) {
    .block-list__item h5 {
        font-size: 24px;
    }

    .inferno {
        height: 868px;
    }

    .inferno-title-text:after {
        width: 235px;
        height: 178px;
        right: 46px;
        top: -168px;
    }

    .inferno-heroes img {
        width: 390px;
    }

    .inferno-background.inferno-item.up .container:before {
        width: 207px;
        height: 385px;
        left: -129px;
    }

    .inferno-background.inferno-item.up .container:after {
        width: 612px;
        height: 274px;
        right: -188px;
    }

    .info::before {
        right: -108px;
        top: 260px;
        width: 252px;
        height: 258px;
    }

    .inferno-background.inferno-item.down {
        height: 400px;
    }

    .inferno-background.inferno-item.up {
        bottom: 286px;
    }

    .inferno-circle {
        left: -245px;
        width: 979px;
        height: 980px;
    }

    .inferno-heroes {
        width: 435px;
    }

    .inferno-title-text {
        width: 600px;
        right: -500px;
    }

    .info-text p {
        font-size: 25px;
    }

    .info-location p {
        font-size: 20px;
    }

    body, .text-input, .faq ul li p, .hotels li:last-child ol li, .hotels li > div:first-of-type p, .hotels p > a, .map-about i, .map-lounge, .map-stream, .map-bar, .map-media, .map-speed, .map-text p b {
        font-size: 14px;
    }

    .container {
        max-width: 910px;
        padding-left: 25px;
        padding-right: 25px;
    }

    h1, .h1 {
        font-size: 136px;
    }

    h2, .h2, .tickets li p {
        font-size: 66px;
    }

    h3, .h3 {
        font-size: 44px;
    }

    h4, .h4, .schedule-name b, .schedule ul li > span,
    .schedule ul li > b,
    .map-text p span {
        font-size: 34px;
    }

    h5, .h5, .top-hash, .timer__item, .speakers-tabs p > a {
        font-size: 27px;
    }

    .header .logo svg {
        width: 153px;
    }

    .header-invite b > img {
        width: 32px;
        height: 32px;
    }

    .header-invite span {
        margin-top: 5px;
    }

    .header-menu li {
        margin-left: 25px;
    }

    .top .social a {
        margin-bottom: auto;
    }

    .top {
        margin-top: 100px;
    }

    .top:before {
        height: 743px;
        background-size: contain;
    }

    .top-video {
        width: 545px;
        height: 545px;
    }

    .top-video video {
        width: 1496px;
    }

    .top-btn img {
        width: 150px;
    }

    .top-btn:before {
        width: 121px;
        height: 121px;
    }

    .top-btn span {
        width: 120px;
        height: 120px;
    }

    .top-text:after {
        width: 289px;
        height: 289px;
    }

    .top h4 {
        left: 280px;
    }

    .top-text h1:after {
        right: 120px;
        bottom: 55px;
        width: 10px;
        height: 10px;
    }

    .top-text h1:before {
        width: 10px;
        height: 17px;
        right: 150px;
        bottom: 51px;
    }

    .top-arrows span {
        width: 15px;
        height: 15px;
        margin-bottom: 20px;
    }

    .top-bottom .top-timer .font {
        font-size: 26px;
        margin-left: auto;
    }

    .btn {
        font-size: 25px;
    }

    .top .btn {
        width: 187px;
    }

    .top-btn {
        width: 156px;
        height: 156px;
    }

    .timer__item {
        width: 37px;
    }

    .timer__item:after {
        font-size: 11px;
    }

    .timer__items {
        margin-left: 22px;
    }

    .block-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .influencer .block-list .block-list__item:nth-child(n+9) {
        display: none;
    }

    .about-list {
        left: 186px;
        margin-top: -90px;
        max-width: calc(100% - 186px);
    }

    h6, .h6 {
        font-size: 25px;
    }

    .about-vertical {
        margin-right: unset;
    }

    .about-bottom__left h6 {
        max-width: 308px;
    }

    .footer-hash {
        margin: 0 35px;
    }

    .footer-right {
        margin-right: unset;
    }

    .footer h4 {
        font-size: 28px;
        flex-shrink: unset;
    }

    .footer .logo svg {
        width: 127px;
        height: 26px;
    }

    .footer-links a, .footer-links span, .footer-right ul b {
        font-size: 12px;
    }

    .schedule, .hotels, .area, .faq, .partners, .footer, .speakers, .subscribe, .tickets, .map {
        margin-top: 98px;
    }

    .footer-right ul p > span img {
        height: 35px;
    }

    .footer-right ul i {
        font-size: 10px;
    }

    .footer-right ul p > span {
        width: 35px;
        height: 35px;
    }

    .subscribe .text-input {
        width: 48%;
    }

    .subscribe-point {
        flex-direction: column;
    }

    .subscribe-block:first-child {
        margin-right: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 25px;
    }

    .subscribe-block:first-child .radio-input {
        margin-bottom: unset;
    }

    .subscribe-block:first-child .subscribe-title {
        margin: 0 20px 15px 0;
    }

    .subscribe-form__input {
        width: 66%;
    }

    .subscribe-form__last {
        width: 33%;
        margin-left: auto;
    }

    .subscribe .block-title p {
        max-width: 450px;
    }

    .tickets ul {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .tickets li {
        width: 270px;
    }

    .speakersSecond .block-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .speakersSecond .block-title p {
        margin-left: unset;
        margin-top: 15px;
    }

    .partners h3, .area h3 {
        font-size: 48px;
    }

    .area-bottom .btn {
        width: 345px;
    }

    .area .rect-btn {
        margin-top: 10px;
    }

    .area:before {
        background-size: contain;
        width: 568px;
        height: 367px;
        top: -10px;
    }

    .map-bottom {
        flex-direction: column;
    }

    .map-wrapper {
        max-width: 640px;
    }

    .map-text ul, .map-text p {
        display: flex;
    }

    .map-text ul {
        margin-bottom: 21px;
    }

    .map-text ul li {
        margin-bottom: unset;
        margin-right: 22px;
    }

    .map-text p {
        flex-direction: row;
        align-items: flex-end;
        position: absolute;
        bottom: 0;
    }

    .map-bottom {
        position: relative;
        padding-bottom: 100px;
    }

    .map-text p i {
        display: flex;
        flex-direction: column;
        margin-right: 18px;
    }

    .map-text p i:first-of-type {
        max-width: 110px;
    }

    .map-text p i:nth-child(2) {
        max-width: 70px;
    }

    .map-text p b {
        margin-bottom: 5px;
    }

    .map-main:before {
        background-size: cover;
    }

    .map-main {
        width: 617px;
        height: 370px;
    }

    .map-purple__bottom, .map-stage, .map-vip, .map-grey__bottom, .map-grey__left {
        bottom: 14px;
    }

    .map-stage, .map-vip {
        border-radius: 8px;
    }

    .map-speed {
        width: 86px;
        height: 67px;
        left: 36px;
        top: 91px;
    }

    .map-lounge, .map-bar, .map-media, .map-speed {
        border-radius: 5px;
    }

    .map-about i, .map-item,
    .map-lounge, .map-stream, .map-bar, .map-media, .map-speed, .map-text p b {
        font-size: 11px;
    }

    .map-stage {
        width: 249px;
        height: 171px;
        left: 36px;
        font-size: 70px;
    }

    .map-lounge {
        width: 66px;
        height: 54px;
        left: 36px;
    }

    .map-lounge, .map-bar, .map-media {
        top: 7px;
    }

    .map-vip {
        width: 140px;
        height: 85px;
        left: 257px;
        font-size: 26px;
    }

    .map-bar {
        width: 57px;
        height: 28px;
        left: 108px;
    }

    .map-media {
        width: 53px;
        height: 28px;
        left: 170px;
    }

    .map-stream {
        width: 48px;
        height: 65px;
        left: 496px;
        bottom: 140px;
    }

    .map-grey .map-item {
        width: 19px;
        height: 19px;
        font-size: 11px;
        border-radius: 3px;
    }

    .map-grey__bottom {
        left: 325px;
    }

    .map-grey__left {
        left: 291px;
    }

    .map-grey__right {
        bottom: 91px;
        left: 608px;
    }

    .map-grey__top, .map-purple__top {
        top: 111px;
    }

    .map-grey__top {
        left: 309px;
    }

    .map-about strong {
        font-size: 38px;
    }

    .map-about {
        right: unset;
        left: 420px;
    }

    .map-yellow .map-item {
        width: 32px;
        height: 32px;
        border-radius: 3px;
    }

    .map-yellow__right .map-item:nth-child(2) {
        margin-bottom: 29px;
    }

    .map-yellow__right {
        bottom: 52px;
        left: 563px;
    }

    .map-yellow__top {
        left: 324px;
        top: 157px;
    }

    /*.map-yellow__top .map-item:nth-child(3) {*/
    /*    margin-left: 27px;*/
    /*}*/
    .map-purple__right .map-item, .map-purple__left .map-item {
        width: 19px;
        height: 25px;
    }

    .map-purple__right {
        left: 608px;
        bottom: 42px;
    }

    .map-purple__top .map-item, .map-purple__bottom .map-item {
        width: 25px;
        height: 19px;
    }

    .map-purple__top {
        left: 504px;
    }

    .map-purple__bottom {
        left: 470px;
    }

    .map-red .map-item {
        width: 48px;
        height: 32px;
    }

    .map-red__right .map-item {
        width: 62px;
    }

    .map-red {
        left: 496px;
        bottom: 53px;
    }

    .map-red__right {
        top: 157px;
        left: 413px;
    }

    .map-rect .map-item {
        width: 32px;
        height: 16px;
    }

    .map-rect__two, .map-rect__three {
        left: 324px;
    }

    .map-rect__three, .map-rect__four {
        bottom: 125px;
    }

    .map-rect__one, .map-rect__four {
        left: 413px;
    }

    .map-rect__one, .map-rect__two {
        bottom: 68px;
    }

    .map-purple__left {
        left: 290px;
        bottom: 163px;
    }

    .map-rega {
        width: 53px;
        left: 545px;
    }

    .map-wc {
        left: 598px;
        width: 19px;
    }

    .map-rega, .map-wc {
        bottom: 11px;
        height: 15px;
        font-size: 8px;
        border-radius: 3px;
    }

    .button-up {
        right: -25px;
    }

    .button-up span {
        display: none;
    }

    .button-up i {
        display: flex;
        margin-left: unset;
    }

    .partners-list li {
        margin-right: 36px;
    }

    .partners-list:after {
        font-size: 170px;
    }

    .partners-list li img {
        max-width: 154px;
        max-height: 60px;
        height: auto;
    }

    .partners-info li img {
        max-width: 114px;
        max-height: 30px;
    }

    .speakersSecond:before {
        height: 1146px;
        top: -193px;
    }

    .schedule-tabs a {
        height: 50px;
    }

    .schedule ul li > span {
        width: 92px;
    }

    .hotels li:not(:last-child) {
        padding: 20px 17px 14px;
    }

    .hotels li > div:first-of-type {
        padding-right: 20px;
    }

    .hotels li > div:first-of-type b {
        width: 26px;
        height: 26px;
        right: -15px;
    }

    .hotels li > div:first-of-type b:after {
        width: 8px;
        height: 8px;
    }

    .hotels p + span {
        right: -12px;
    }

    .top-smoke video {
        width: 1515px;
    }

    .top-man h1 + span {
        font-size: 24px;
    }

    .top-man__text h1 {
        font-size: 76px;
    }

    .top-man__text > div > span {
        font-size: 33px;
    }

    .top-man h1 + span {
        max-width: 420px;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .invite {
        margin-top: 142px;
    }

    .invite h2 {
        font-size: 60px;
        margin-right: 30px;
        margin-bottom: 10px;
    }

    .invite-bottom .font {
        font-size: 26px;
    }

    .invite-bottom p {
        font-size: 18px;
        margin-right: 20px;
        max-width: 330px;
    }

    .invite-text p {
        font-size: 16px;
        max-width: 470px;
    }

    .invite-text {
        max-width: 1112px;
        height: 122px;
    }

    .invite-text img {
        width: 168px;
        margin-left: 34px;
    }

    .top-man__img img {
        width: 465px;
    }

    .top-man__img:before {
        width: 450px;
        height: 450px;
    }

    .top-man__img p > b {
        font-size: 46px;
    }

    .top-man__img p {
        font-size: 14px;
        width: 210px;
        height: 98px;
    }
}

@media screen and (max-width: 1023px) {

    .hotels ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 96px;
    }

    h4, .h4, .schedule-name b, .map-text p span {
        font-size: 26px;
    }

    .header {
        padding-bottom: 160px;
    }

    .top h4 {
        left: 202px;
        top: 8px;
    }

    .top-btn {
        width: 116px;
        height: 116px;
        right: -22px;
        bottom: 15px;
        box-shadow: unset;
    }

    .top-btn:before {
        width: 85px;
        height: 85px;
    }

    .top-btn img {
        width: 104px;
    }

    .top-btn span {
        width: 80px;
        height: 80px;
    }

    .top-text h1:after, .top-arrows,
    .about-bottom h3 br {
        display: none;
    }

    .top-text h1:before {
        right: 110px;
        bottom: 70px;
    }

    .top-video {
        width: 375px;
        height: 325px;
    }

    .top-video video {
        width: 1047px;
    }

    .header-invite {
        position: absolute;
        top: 60px;
    }

    .top-bottom, .about-bottom {
        flex-direction: column;
    }

    .about-num, .about-bottom {
        margin-top: 20px;
    }

    .about-bottom__left {
        margin-bottom: 20px;
    }

    .about-bottom__left h6 {
        margin-top: 25px;
    }

    .about-bottom h3, .about-bottom h6 {
        max-width: unset;
    }

    .top-bottom .top-timer .font {
        margin-left: unset;
        font-size: 48px;
    }

    .btn {
        font-size: 36px;
    }

    .top .btn {
        order: 3;
        margin-top: 15px;
        width: 345px;
        height: 55px;
    }

    .top-timer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .timer__item:first-of-type {
        margin-left: unset;
    }

    .about {
        margin-top: 140px;
    }

    .about .h1 br {
        display: none;
    }

    .about-list {
        margin-top: 35px;
        left: unset;
        max-width: unset;
    }

    .about-num {
        flex-wrap: wrap;
    }

    .about-num h2 {
        font-size: 96px;
    }

    .about-num li {
        margin-bottom: 36px;
    }

    .footer {
        padding-bottom: 70px;
    }

    .footer .container {
        flex-wrap: wrap;
    }

    .footer h4 {
        font-size: 34px;
    }

    .footer-links {
        position: absolute;
        bottom: -40px;
        left: 25px;
        right: 25px;
        display: flex;
    }

    .footer-links a {
        margin-right: 20px;
    }

    .footer-links span {
        margin-top: unset;
        margin-left: auto;
    }

    .footer .logo svg {
        width: 196px;
        height: 39px;
    }

    .footer-hash {
        max-width: unset;
        margin-left: auto;
        margin-right: 60px;
        width: calc(100% - 320px);
    }

    .footer-hash > span {
        display: inline-block;
    }

    .footer-right {
        margin-top: 45px;
    }

    .footer-right h4 {
        margin-bottom: 15px;
    }

    .footer-right ul p > span img {
        height: 50px;
    }

    .footer-right ul i {
        font-size: 16px;
    }

    .footer-right ul p > span {
        width: 50px;
        height: 50px;
    }

    .block-list {
        max-width: 685px;
        margin-left: auto;
        margin-right: auto;
    }

    .block-list__item:hover h5 {
        margin-top: auto;
    }

    .block-list__item:hover b {
        margin-top: -12px;
    }

    .block-list__item {
        height: 220px;
        width: 160px;
        margin: 0 auto;
    }

    .block-list__item span {
        height: 122px;
    }

    .block-list__item p {
        font-size: 10px;
    }

    .block-list__item b img {
        height: auto;
        max-height: 100%;
    }

    .block-list__item b {
        height: 22px;
    }

    .block-list__item h5 {
        margin-bottom: 10px;
        margin-top: unset;
        font-size: 20px;
    }

    .block-list__item h5 {
        font-size: 18px;
    }

    .block-list__item strong {
        font-size: 12px;
        padding: 0 20px;
    }

    .speakers-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        gap: 20px;
    }

    .speakers-tabs p {
        margin-right: unset;
        width: 100%;
    }

    .hotels p + span {
        bottom: -15px;
    }

    .area-title div h3 {
        font-size: 40px;
    }

    .button-up {
        right: 25px;
    }

    .speakersSecond:before {
        left: -25px;
        right: -25px;
    }

    .footer-right ul li {
        flex-direction: column
    }

    .popup.pay {
        height: 314px;
        width: 668px;
    }

    .close-popup {
        width: 28px;
        height: 28px;
    }

    .popup-buy_button img {
        max-height: 20px;
    }

    .inferno {
        height: 748px;
    }

    .inferno-title-text {
        width: 390px;
        right: -340px;
    }

    .inferno-heroes {
        width: 325px;
    }

    .inferno-title-text:after {
        right: -124px;
    }

    .inferno-background.inferno-item.up {
        bottom: 286px;
    }

    .inferno-circle {
        left: -215px;
        width: 749px;
        height: 750px;
        top: 40px;
    }

    .inferno-heroes:before {
        width: 175px;
        height: 175px;
        filter: blur(45px);
    }

    .top-man__text {
        margin-left: -20px;
    }

    .top-man__img:before {
        width: 288px;
        height: 288px;
        /*background: var(--purple-color);*/
        -webkit-filter: blur(50px);
        filter: blur(50px);
        left: -40%;
    }

    .invite {
        margin-left: -25px;
        margin-right: -25px;
        margin-top: 90px;
    }

    .invite-text {
        height: 160px;
        background-size: auto 206px;
        background-position: left;
        border-radius: 25px;
        padding-top: 15px;
    }

    .invite-bottom {
        flex-direction: column;
        padding-left: 25px;
        padding-right: 25px;
    }

    .invite-bottom .font {
        order: 2;
        margin-top: 10px;
    }

    .invite-bottom .font br {
        display: none;
    }

    .invite-bottom p {
        margin-left: unset;
        margin-right: unset;
        max-width: unset;
        margin-top: 20px;
        order: 1;
    }

    .invite-text p {
        margin-top: 12px;
    }

    .invite h2 {
        font-size: 48px;
        margin-right: 10px;
        padding-right: 25px;
    }

    .top-man__img {
        margin-left: -90px;
    }

    .top-man__img img {
        width: 350px;
    }

    .top-man__text > div > span {
        font-size: 25px;
    }

    .top-man h1 + span {
        max-width: 330px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    body, .text-input, .faq ul li p, .hotels li:last-child ol li, .hotels li > div:first-of-type p,
    .hotels p > a, .map-lounge, .map-bar, .map-media, .map-speed, .map-text p b {
        font-size: 16px;
    }

    .partners-unique i, .partners-unique b {
        height: 50px;
    }

    .partners-unique b {
        font-size: 24px;
        border-radius: 17px;
    }

    .map-stream {
        font-size: 12px;
    }

    h4, .h4, .schedule-name b {
        font-size: 20px;
    }

    .about-list {
        flex-direction: column;
        display: flex;
        grid-gap: unset;
        gap: unset;
        font-size: 18px;
    }

    .about-list li {
        margin-bottom: 15px;
    }

    .about-list li:last-of-type {
        margin-bottom: unset;
    }

    .header-invite b > img {
        width: 47px;
        height: 47px;
    }

    .top-hash, .header-lang, .top:before, .top-text:after,
    .header .container:before,
    .top-text h1:before {
        display: none;
    }

    .partners-list:after {
        font-size: 120px;
    }

    .area:before {
        top: 60px;
    }

    .partners-list {
        margin-bottom: 20px;
    }

    .partners-list li {
        margin-right: 20px;
    }

    .top-main {
        margin-top: 200px;
    }

    .top-video {
        left: 480px;
        top: -110px;
    }

    .top-text {
        margin-right: auto;
        margin-left: auto;
    }

    .top-btn {
        bottom: -30px;
        right: -20px;
    }

    .header {
        padding-bottom: 70px;
        padding-top: 22px;
    }

    .header-mobile {
        width: 40px;
        height: 21px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        align-self: center;
    }

    .header-mobile span {
        display: block;
        width: 40px;
        height: 3px;
        color: var(--white-color);
        background: var(--white-color);
        box-shadow: 16px 8px 0 var(--red-color), 6px 16px 0;
        position: relative;
        top: -8px;
        -webkit-transition: all .5s;
        transition: all .5s;
    }


    .header.is--fixed {
        padding: 22px 0;
    }

    .header ul, .about-svg, .events-img, .header-follow {
        display: none;
    }

    .header .container {
        justify-content: space-between;
    }

    .logo svg {
        width: 106px;
    }

    .header.is--active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 220;
        overflow-y: auto;
        overflow-x: hidden;
        background: var(--black-color) url("../images/mobile-menu-bg.png") no-repeat right top;
        background-size: cover;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        -webkit-transform: none;
        transform: none;
    }

    .header.is--active .header-invite {
        display: none;
    }

    .header.is--active .header-lang {
        display: flex;
        position: absolute;
        top: 100px;
        left: 71px;
    }

    .header.is--active ul {
        display: block;
        width: 100%;
        margin-left: 51px;
        margin-top: 160px;
    }

    body.active--menu .top .social a {
        margin-bottom: unset;
    }

    body.active--menu .top .social {
        width: 100%;
        z-index: 999;
        flex-direction: row;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 25px;
        position: fixed;
        max-width: 240px;
        justify-content: space-between;
        display: flex;
    }

    .header.is--active ul li {
        margin-bottom: 30px;
        margin-left: 0;
    }

    .header.is--active ul a {
        font-size: 64px;
        font-weight: 500;
        font-family: 'Druk LCG', "Arial Black", sans-serif;
        text-transform: uppercase;
    }

    .header.is--active .container {
        flex-wrap: wrap;
    }

    .header.is--active .header-mobile {
        justify-content: flex-start;
    }


    .header.is--active .header-follow span {
        display: none;
    }

    .header-mobile span:after, .header-mobile span:before {
        content: "";
        position: absolute;
        /*height: 4px;*/
        /*width: 13px;*/
        /*display: block;*/
        -webkit-transition: all .5s;
        transition: all .5s;
    }

    .header.is--active .header-mobile span:before,
    .header.is--active span:after {
        border-radius: 10px;
        background: var(--white-color);
        width: 34px;
        height: 3px;
    }

    .header.is--active span:after {
        /*content: "";*/
        /*position: absolute;*/
        top: 9px;
        right: -3px;
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    .header.is--active .header-mobile span:before {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
        right: -3px;
        top: 9px;
    }

    .header.is--active .header-mobile span {
        box-shadow: unset;
        width: 31px;
        height: 20px;
        background: transparent;
        top: unset;
    }

    .timer__item:first-of-type {
        margin-left: unset;
    }

    .timer__items {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .top-timer {
        flex-direction: column;
        display: table;
    }

    .about {
        margin-top: 60px;
    }

    .footer-right ul i {
        font-size: 13px;
    }

    .footer-links {
        flex-wrap: wrap;
        bottom: -50px;
        justify-content: center;
        align-items: center;
    }

    .footer-links span {
        margin-left: unset;
        margin-top: 10px;
    }

    .block-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .speakers .block-title p, .hotels .block-title p {
        margin-left: unset;
        margin-top: 10px;
    }

    .text-input, .subscribe-form__last .rect-btn {
        height: 55px;
    }

    .subscribe-form__input, .subscribe-form__last {
        width: 100%;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form__last {
        margin-left: unset;
        margin-top: 15px;
    }

    .subscribe-form__input {
        grid-gap: 15px;
        gap: 15px;
    }

    .subscribe-block:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-block:first-child .radio-input {
        margin-bottom: 15px;
        margin-right: unset;
    }

    .subscribe-form__last .rect-btn + span {
        margin-top: 15px;
    }

    h2, .h2, .tickets li p {
        font-size: 58px;
    }

    .subscribe h2 span {
        display: block;
    }

    .subscribe h2 span br {
        display: none;
    }

    .radio-input {
        margin-right: 25px;
    }

    .area-title,
    .area-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .area-title div {
        margin-top: 15px;
    }

    .area-title div,
    .area .rect-btn, .area-bottom .btn {
        width: 100%;
    }

    .area-bottom .btn {
        margin-top: 15px;
    }

    .area-bottom {
        margin-top: 18px;
    }

    .block-list {
        grid-template-columns: repeat(3, 1fr);
        max-width: 515px;
    }

    .influencer .block-list .block-list__item:nth-child(n+7) {
        display: none;
    }

    .speakers .block-list:after {
        display: none;
    }

    .button-up {
        right: unset;
        left: 25px;
        top: 60px;
    }

    .button-up span {
        display: flex;
    }

    .button-up i {
        margin-left: 8px;
    }

    .footer-hash {
        width: 100%;
        margin-top: 45px;
    }

    .button-up {
        left: unset;
        right: 15px;
        top: 0;
    }

    .schedule-tabs {
        margin-top: 20px;
        width: 100%;
    }

    .schedule-tabs a {
        width: 50%;
    }

    .schedule-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .schedule ul li > span, .schedule ul li > b {
        font-size: 32px;
    }

    .schedule ul li > span {
        width: 73px;
    }

    .popup.pay {
        width: unset;
        flex-direction: column;
        height: auto;
    }

    .popup-item {
        width: 100%;
        margin-left: unset;
    }

    .popup.pay h2 br {
        display: none;
    }

    .close-popup {
        right: 0;
        top: -70px;
    }

    .popup-buy_button h5 {
        font-size: 16px;
    }

    .inferno-heroes {
        width: 265px;
    }

    .inferno-title-text {
        width: 360px;
        right: -290px;
    }

    .inferno-title-text:after {
        top: -148px;
    }

    .inferno-background.inferno-item.up .container:before {
        width: 167px;
        height: 315px;
        left: -89px;
    }

    .inferno-background.inferno-item.up .container:after {
        width: 352px;
        height: 159px;
        right: -8px;
    }

    .info {
        flex-wrap: wrap;
        padding-top: 110px;
    }

    .inferno {
        height: 708px;
    }

    .top-man__text h1 {
        font-size: 125px;
    }

    .top-man__text > div > span {
        font-size: 44px;
    }

    .top .social a {
        margin-bottom: 50px;
    }

    .invite h2 {
        margin-left: 170px;
        text-align: left;
        font-size: 27px;
    }

    .invite h2 > span {
        display: block;
    }

    .invite-text {
        border-radius: unset;
        margin-bottom: 120px;
    }

    .invite-text img {
        width: 185px;
    }

    .top-man {
        flex-direction: column;
        padding-bottom: 550px;
    }

    .top-man__img {
        margin-left: unset;
        width: 100%;
        order: 2;
        right: 0;
        position: absolute;
        bottom: 0;
    }

    .top-man__img:before {
        left: 20%;
        width: 388px;
        height: 388px;
        -webkit-filter: blur(120px);
        filter: blur(120px);
    }

    .top-bottom {
        position: absolute;
        bottom: 20px;
        margin: 0 auto;
        align-items: center;
    }

    .top-right {
        display: none;
    }

    .top-man__img img {
        width: 530px;
        max-width: unset;
    }

    .top-man__img p {
        bottom: unset;
        top: 230px;
        left: 15px;
        right: 15px;
        margin: 0 auto;
    }

    .invite-text p {
        margin-right: 20px;
    }

    .top-man__text {
        margin-left: unset;
        margin-top: unset;
        order: 1;
        max-width: 90%;
    }

    .top-man h1 + span {
        max-width: unset;
    }
}

@media screen and (max-width: 640px) {
    h1, .h1 {
        font-size: 76px;
    }

    .top h4 {
        left: 162px;
        font-size: 20px;
    }

    .top h1 > span {
        position: relative;
        z-index: 2;
    }

    .top-video {
        left: 380px;
    }

    .footer-right ul {
        flex-wrap: wrap;
    }

    .footer-right ul li {
        margin-bottom: 10px;
        flex-direction: column;
        width: 46%;
    }

    .footer .logo {
        background: url("../images/logo-small.svg") no-repeat;
        width: 80px;
        height: 50px;
    }

    .footer .logo svg {
        display: none;
    }

    .faq ul li.is--active strong, .faq ul li.is--active p {
        -webkit-transform: translateX(26px);
        transform: translateX(26px);
        margin-right: 26px;
    }

    h4, .h4, .schedule-name b, .schedule ul li > span, .schedule ul li > b, .map-text p span {
        font-size: 38px;
        line-height: 100%;
    }

    .hotels ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .subscribe .text-input {
        width: 100%;
    }

    .subscribe-form__last .rect-btn + span {
        max-width: 100%;
    }

    .schedule, .hotels, .area, .faq, .partners, .footer, .speakers, .subscribe, .tickets, .map {
        margin-top: 65px;
    }

    .area-img {
        flex-direction: column;
        overflow: hidden;
        border-radius: 15px;
    }

    .area-img img:first-of-type,
    .area-img img:last-of-type {
        width: 100%;
    }

    .area-img img:first-of-type {
        width: 970px;
        max-width: unset;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .map-main {
        overflow-x: scroll;
        width: 100%;
        position: relative;
        right: -25px;
    }

    .map-main::-webkit-scrollbar {
        border-radius: 15px;
    }

    .map-main::-webkit-scrollbar-track {
        background: #28282e;
        height: 12px;
        border-radius: 15px; /* цвет дорожки */
    }

    .map-main::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #9747FF 0%, #FF0000 100%);
        border-radius: 5px;
    }

    .tickets ul {
        grid-gap: 15px;
        gap: 15px;
        max-width: 347px;
    }

    .tickets li b {
        width: 120px;
        height: 114px;
        top: 56px;
    }

    .tickets li video {
        width: 386px;
        height: 156px;
        left: -130px;
        top: -24px;
    }

    .tickets h3 {
        font-size: 32px;
        bottom: 12px;
    }

    .tickets-top h4 {
        font-size: 24px;
    }

    .tickets li p {
        font-size: 42px;
    }

    .tickets li {
        width: 165px;
        height: 235px;
        padding: 12px;
        border-radius: 14px;
    }

    .map-text ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 13px;
        gap: 13px;
        max-width: 360px;
    }

    .tickets li i strong {
        margin-bottom: 10px;
    }

    .tickets li i {
        margin-top: 5px;
        font-size: 10px;
    }

    .map h2 > span {
        display: block;
    }

    .map-text p {
        flex-wrap: wrap;
        max-width: 340px;
    }

    .map-text p span {
        font-size: 28px;
        margin-bottom: unset;
    }

    .map-bottom {
        padding-bottom: 200px;
    }

    .map-text p i {
        margin-bottom: 18px;
    }

    .block-list {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 35px;
        grid-template-columns: repeat(2, 1fr);
    }

    .influencer .block-list .block-list__item:nth-child(n+3) {
        display: none;
    }

    .influencer .btn {
        font-size: 30px;
    }

    .speakersSecond:before {
        top: -160px;
    }

    .speakers-tabs p > a {
        height: 39px;
        font-size: 25px;
    }

    .speakers-tabs p > a + span {
        font-size: 12px;
    }

    .speakers-tabs {
        margin-bottom: unset;
    }

    .inferno-title-text {
        bottom: unset;
        top: -190px;
        right: 0;
        left: 0;
        background: url("../images/inferno-text-mobile.svg") no-repeat;
        width: 360px;
        height: 168px;
    }

    .inferno-title-text img {
        display: none;
    }

    .inferno-title-text:after {
        width: 217px;
        height: 157px;
        top: -78px;
        right: -144px;
    }

    .inferno-heroes {
        width: 365px;
    }

    .inferno {
        height: 948px;
    }

    .inferno-circle {
        left: -125px;
        width: 649px;
        height: 650px;
        top: 110px;
    }

    .inferno-background.inferno-item.down {
        height: 480px;
    }

    .inferno-background.inferno-item.up {
        bottom: 356px;
    }

    .inferno-background.inferno-item.up .container:before {
        height: 335px;
    }

}

@media screen and (max-width: 500px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .top .social {
        display: none;
    }

    .top-text {
        margin-left: 0;
    }

    .top-video {
        left: 260px;
    }

    .top-btn {
        bottom: -40px;
        right: -30px;
    }

    .about-vertical li {
        width: 70px;
    }

    .about-vertical b {
        height: 69px;
        margin-bottom: 8px;
    }

    .about-vertical b:before {
        width: 96px;
        height: 96px;
        top: -9px;
        left: -9px;
    }

    .about-vertical {
        font-size: 12px;
        grid-gap: 15px;
        gap: 15px;
    }

    .lineSlider h3 {
        font-size: 30px;
    }

    .lineSlider-item p {
        font-size: 12px;
    }

    .lineSlider {
        margin-top: 25px;
    }

    .map-about i {
        font-size: 10px;
        width: 400px;
    }

    .map-wrapper .btn {
        width: 100%;
        margin-left: unset;
    }

    .partners-list:after {
        font-size: 90px;
    }

    .partners-exclusive:after {
        left: 20%;
    }

    .speakers-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    /*.schedule ul li > span {*/
    /*    width: 50px;*/
    /*    margin-right: 25px;*/
    /*}*/
    .schedule-name i, .schedule-big p {
        font-size: 12px;
    }

    .schedule-name div {
        flex-wrap: wrap;
    }

    .schedule-name b {
        width: 100%;
    }

    .schedule-name i:first-of-type {
        margin-left: 0;
        margin-bottom: 3px;
    }

    .about-num li {
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .schedule ul li > span {
        width: 54px;
    }

    h4, .h4, .schedule-name b, .schedule ul li > span, .schedule ul li > b, .map-text p span {
        font-size: 24px;
    }

    .popup-left {
        text-align: center;
    }

    .popup-item {
        width: calc(100% - 5px);
    }

    .popup-buy_button img {
        max-height: 14px;
        margin-right: 10px;
    }

    .popup.pay p {
        font-size: 11px;
    }

    .inferno-title-text:after {
        width: 157px;
        height: 107px;
        right: -34px;
    }

    .info::before, .inferno-background.inferno-item.up .container:after {
        display: none;
    }

    .inferno-heroes:before {
        width: 135px;
        height: 135px;
        filter: blur(45px);
        bottom: 60px;
    }

    .inferno {
        height: 1018px;
    }

    .info {
        padding-top: 140px;
    }

    .inferno-background.inferno-item.down {
        height: 550px;
    }

    .inferno-background.inferno-item.up {
        bottom: 406px;
    }

    .footer-right ul p {
        margin-top: auto;
    }

    .top-man {
        margin-left: unset;
    }
}

@media screen and (max-width: 375px) {
    .header.is--active ul {
        margin-left: 0;
    }

    h1, .h1 {
        font-size: 64px;
    }

    h3, .h3 {
        font-size: 34px;
    }

    h4, .h4 {
        font-size: 16px;
    }

    .schedule-name b, .schedule ul li > span, .schedule ul li > b {
        font-size: 24px;
    }

    .hotels li > div:first-of-type p {
        font-size: 14px;
    }

    .footer h4 {
        font-size: 24px;
    }

    .hotels h4 {
        font-size: 28px;
    }

    .hotels li:not(:last-child) {
        padding: 18px 15px 12px;
    }

    .hotels p + span {
        right: -10px;
        bottom: 0;
    }

    .top h4 {
        left: 138px;
        top: 3px;
        line-height: 90%;
    }

    .timer__item {
        font-size: 32px;
    }

    .top-btn {
        width: 96px;
        height: 96px;
        bottom: -24px;
        right: -20px;
    }

    .timer__item {
        width: 20%;
        margin: 0;
    }

    .top-timer {
        display: block;
        margin: unset;
        width: 100%;
    }

    .top-bottom .top-timer .font {
        font-size: 42px;
    }

    .top .btn {
        width: 100%;
    }

    .top-btn:before {
        width: 75px;
        height: 75px;
    }

    .top-btn span {
        width: 70px;
        height: 70px;
    }

    .top-btn img {
        width: 90px;
    }

    .about .h1,
    .about-num h2 {
        font-size: 60px;
    }

    .about-num li b {
        max-width: 155px;
        display: block;
    }

    .about-num li {
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .about-vertical li {
        width: 55px;
    }

    .about-vertical b {
        height: 55px;
    }

    .about-vertical b:before {
        width: 76px;
        height: 76px;
    }

    .lineSlider h3 {
        font-size: 24px;
    }

    .lineSlider-item {
        margin: 0 15px;
    }

    .lineSlider {
        margin-top: 15px;
    }

    .footer .container, .footer-right ul {
        flex-direction: column;
    }

    .footer-right ul li {
        width: 100%;
    }

    .footer-links {
        justify-content: flex-start;
        bottom: -60px;
        left: 15px;
        right: 15px;
    }

    h2, .h2, .tickets li p {
        font-size: 38px;
    }

    .area-img img:first-of-type {
        width: unset;
        height: 187px;
    }

    .partners h3, .area h3 {
        font-size: 38px;
    }

    .area-title div h3 {
        font-size: 30px;
    }

    .map-text ul {
        font-size: 18px;
    }

    .map-text p span {
        font-size: 32px;
    }

    .map-text p {
        max-width: 220px;
    }

    .map-bottom {
        padding-bottom: 310px;
    }

    .block-list__item strong {
        font-size: 10px;
        padding: 0 10px;
        margin-bottom: 4px;
    }

    .block-list__item {
        height: 187px;
        width: 136px;
        margin: 0 auto;
        padding: 10px;
        border-radius: 20px;
    }

    .block-list__item span {
        height: 120px;
    }


    .block-list__item h5 {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .block-list__item h5 {
        font-size: 14px;
    }

    .tickets ul {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: scroll;
    }

    .tickets li i {
        margin-top: 33px;
    }

    .tickets li {
        flex-shrink: 0;
    }

    .inferno-title-text {
        background-size: contain;
        width: 300px;
        height: 140px;
    }

    .inferno-heroes img {
        width: 280px;
    }

    .inferno-background.inferno-item.up .container:before {
        height: 305px;
    }

    .inferno {
        height: 948px;
    }

    .top-man__text h1 {
        font-size: 46px;
    }

    .top-man h1 + span {
        font-size: 18px;
    }
}
