@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Hanson';
    src: url('../fonts/HansonBold.eot');
    src: url('../fonts/HansonBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HansonBold.woff2') format('woff2'),
    url('../fonts/HansonBold.woff') format('woff'),
    url('../fonts/HansonBold.ttf') format('truetype'),
    url('../fonts/HansonBold.svg#HansonBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Bold.eot');
    src: url('../fonts/Syne-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Syne-Bold.woff2') format('woff2'),
    url('../fonts/Syne-Bold.woff') format('woff'),
    url('../fonts/Syne-Bold.ttf') format('truetype'),
    url('../fonts/Syne-Bold.svg#Syne-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Regular.eot');
    src: url('../fonts/Syne-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Syne-Regular.woff2') format('woff2'),
    url('../fonts/Syne-Regular.woff') format('woff'),
    url('../fonts/Syne-Regular.ttf') format('truetype'),
    url('../fonts/Syne-Regular.svg#Syne-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: var(--green-color);
    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;
}

:root {
    --dark-color: #1F1F21;
    --white-color: #FFFFFF;
    --purple-color: #3D0E7B;
    --yellow-color: #FAFF00;
    --red-color: #FF0026;
    --green-color: #BDFF00;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

a,
.header ul a:hover, .footer ul li a:hover {
    color: var(--green-color);
}

.header-mobile {
    display: none;
}

.logo svg {
    fill: var(--white-color);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .title, .font {
    font-weight: bold;
    line-height: 90%;
    color: var(--dark-color);
    text-transform: uppercase;
    font-family: 'Hanson', "Arial Black", sans-serif;
}

h1, .h1 {
    font-size: 110px;
}

h2, .h2 {
    font-size: 96px;
}

h3, .h3 {
    font-size: 82px;
}

h4, .h4 {
    font-size: 64px;
}

h5, .h5 {
    font-size: 40px;
}

h6, .h6 {
    font-size: 27px;
}


body {
    overflow-x: hidden;
    color: var(--dark-color);
    font-size: 24px;
    line-height: 100%;
    font-weight: normal;
    position: relative;
    min-height: 100vh;
    font-family: 'Syne', Arial, sans-serif;
    /*background: #C5C5D6;*/
    background: #C5C5D6 url("../images/body-bg.png") repeat;
    /*-webkit-animation: noise .2s linear infinite;*/
    /*animation: noise .2s linear infinite;*/
}

/*body:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: url("../images/body-bg.png") repeat left top;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    z-index: -2;*/
/*    -webkit-animation: noise .2s linear infinite;*/
/*    animation: noise .1s linear infinite;*/
/*}*/

@-webkit-keyframes noise {
    50% {
        background-position: left top;
    }
    100% {
        background-position: left bottom;
    }
}

@keyframes noise {
    50% {
        background-position: left top;
    }
    100% {
        background-position: right bottom;
    }
}

.wrap {
    overflow: hidden;
}

h1 {
    font-size: 180px;
}

h2 {
    font-size: 128px;
}

h3 {
    font-size: 100px;
}

.partners .row-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partners .row-title > span {
    display: block;
}

.partners .row-title > svg,
.partners .row-title > img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 15px;
    /*-webkit-animation: noiseImg .1s linear infinite;*/
    /*animation: noiseImg .1s linear infinite;*/
}

@-webkit-keyframes noiseImg {
    50% {
        -webkit-transform: translate(2px, 2px) skew(0deg, 0.5deg);
        transform: translate(2px, 2px) skew(0deg, 0.5deg);
    }
}

@keyframes noiseImg {
    50% {
        -webkit-transform: translate(2px, 2px) skew(0deg, 0.5deg);
        transform: translate(2px, 2px) skew(0deg, 0.5deg);
    }
}

.unlock {
    padding-top: 50px;
    padding-left: 60px;
    padding-right: 60px;
}

.unlock-video {
    z-index: -1;
    top: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    height: 890px;
}

.unlock h3 {
    line-height: 84%;
    color: var(--white-color);
}

.unlock h3 > span {
    display: block;
}

.unlock p {
    font-size: 24px;
    line-height: 115%;
    max-width: 665px;
    margin-top: 20px;
    color: var(--white-color);
}

.unlock-img {
    width: 484px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    right: 50px;
    bottom: -170px;
}

.why {
    margin-top: 245px;
    position: relative;
    z-index: 4;
}

.why:before {
    content: "";
    background: url("../images/why-bg.svg") no-repeat center;
    height: 982px;
    width: 100%;
    background-size: contain;
    position: absolute;
    bottom: 60px;
    z-index: 2;
}

.top .row-title img {
    top: -5px;
    left: 10px;
}

.why .row-title img {
    left: 20px;
    top: 10px;
}

.why ul {
    height: 700px;
    margin-left: 50px;
}

.why li {
    font-size: 24px;
    padding: 42px;
    position: relative;
    max-width: 314px;
}

.why li:before {
    content: "";
    background: var(--white-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.why li:nth-child(1):before,
.why li:nth-child(3):before {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}

.why li:nth-child(2):before,
.why li:nth-child(4):before {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
}

.why li:nth-child(2) {
    margin-left: 20px;
    margin-right: 60px;
    align-self: center;
}

.why li:nth-child(1),
.why li:nth-child(3) {
    z-index: 3;
}

.why li:nth-child(4) {
    margin-top: auto;
    margin-left: -270px;
    z-index: 3;
}

.why li > div {
    z-index: 2;
    position: relative;
    line-height: 100%;
}

.why li .font {
    display: block;
    color: var(--purple-color);
    margin-bottom: 15px;
}

.top {
    height: 816px;
    background: url("../images/frame1.svg") no-repeat center top, url("../images/frame2.svg") no-repeat center top;
    padding-top: 195px;
}

.top-date {
    font-size: 24px;
    left: 350px;
    top: -120px;
}

.top-date span {
    font-weight: 700;
}

.top-date b {
    color: var(--purple-color);
    display: block;
    margin-top: 5px;
}

.top-date b sup {
    text-transform: lowercase;
}

.top-button {
    margin-bottom: 50px;
    right: 145px;
    position: relative;
}

.top h1 span {
    display: block;
    text-transform: uppercase;
}

.top-img {
    width: 902px;
    bottom: -130px;
    right: -90px;
    z-index: -1;
}

.btn, .union-block {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn b {
    transition: all 0.2s linear;
}

.btn:hover b {
    -webkit-transform: translateX(-35px);
    transform: translateX(-35px);
}

.btn {
    height: 55px;
    width: 385px;
    border-radius: 5px;
    background: linear-gradient(96.64deg, #FAFF00 2.18%, #3D0E7B 67.44%);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--white-color);
}

.btn:hover {
    -webkit-text-stroke: 1px var(--dark-color);
    -webkit-text-fill-color: transparent;
    background: linear-gradient(96.64deg, #3D0E7B 2.18%, #FAFF00 67.44%);
}

.btn.btn-grey {
    background: linear-gradient(90deg, #585858 0%, #000000 100%);
}

.btn.btn-grey:hover {
    background: linear-gradient(90deg, #000000 0%, #585858 100%);
    -webkit-text-stroke: 1px var(--white-color);
    -webkit-text-fill-color: transparent;
}

.top .btn-grey {
    margin-top: 15px;
}

.partners {
    margin-top: 150px;
}

.partners h2 {
    margin-bottom: 65px;
}

.events {
    background: url("../images/events-bg.svg") no-repeat center;
}

.events h3 {
    margin-bottom: 35px;
}

.top-union1 {
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
    left: 45%;
    top: 20%;
}

.top-union2 {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    left: 10%;
    bottom: 0;
}

.top-union3 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    left: 40%;
    bottom: -15%;
}

.top-union4 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    left: 0;
    top: 55%;
}

.why-union1 {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    bottom: -10px;
    left: 22%;
}

.why-union2 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    bottom: 0;
    left: 10%;
}

.why .union-block,
.top .union-block,
.highlights .union-block,
.events .union-block {
    position: absolute;
}

.events-union1 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    right: 20%;
    top: 20%;
}

.events-union2 {
    position: absolute;
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    right: 55%;
    top: 45%;
}

.highlights {
    height: 954px;
    position: relative;
    color: var(--white-color);
    padding-top: 90px;
    padding-bottom: 240px;
    z-index: 3;
}

.highlights:before {
    content: "";
    background: var(--purple-color) url("../images/highlights-bg.png") no-repeat 0 bottom;
    background-size: auto 673px;
    height: 100%;
    top: 0;
    left: -50px;
    right: -50px;
    position: absolute;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-animation: moveTown 10s linear infinite;
    animation: moveTown 10s linear infinite;
}

@-webkit-keyframes moveTown {
    50% {
        background-position: -100px bottom;
    }
}

@keyframes moveTown {
    50% {
        background-position: -100px bottom;
    }
}

.highlights .container {
    z-index: 2;
    position: relative;
}

.highlights h3 {
    margin-bottom: 45px;
    color: var(--white-color);
}

.highlights h3 > span,
.events h3 > span {
    display: block;
}

.highlights-list li:nth-child(2) {
    margin-left: 35px;
}

.highlights-list li:nth-child(1) {
    max-width: 436px;
    margin-left: unset;
}

.highlights-list li {
    margin-bottom: 45px;
    max-width: 566px;
    margin-left: 470px;
}

.highlights-list b {
    color: var(--yellow-color);
    display: block;
    margin-bottom: 13px;
}

.details .container {
    background: url("../images/details-bg.svg") no-repeat bottom center, url("../images/details-pic.png") no-repeat right 220px;
    background-size: cover, auto;
    margin-top: -40px;
    padding-top: 150px;
    padding-left: 120px;
}

.details-top {
    position: relative;
    z-index: 2;
}

.details-top > div {
    margin-left: 97px;
}

.details-top p {
    margin-bottom: 35px;
    max-width: 340px;
}

.details-top p:last-of-type {
    margin-bottom: unset;
}

.details-top p > span {
    text-transform: lowercase;
}

.details-top b {
    display: block;
    margin-top: 12px;
    color: var(--purple-color);
}

.details-bottom {
    margin-top: 16px;
    z-index: 2;
    position: relative;
}

.details-bottom p {
    max-width: 402px;
    margin-left: -360px;
    margin-top: 168px;
}

.details-bottom p span {
    display: block;
    margin-bottom: 25px;
    font-weight: bold;
}

.highlights .highlights-union1 {
    right: 25%;
    bottom: -15%;
}

.highlights .highlights-union1,
.events-union3 {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
}

.events-union3 {
    bottom: 45%;
    left: 27%;
}

.highlights .highlights-union2 {
    top: 10%;
    left: 25%;
}

.highlights .highlights-union2,
.events-union4 {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}

.events-union4 {
    right: 6%;
    bottom: 30%;
}

.events-list {
    max-width: 1260px;
    margin: 0 auto;
}

.events-list li {
    margin-right: 32px;
    margin-bottom: 32px;
}

.events-list li:nth-child(1),
.events-list li:nth-child(2),
.events-list li:nth-child(3) {
    width: calc(33.3% - 32px);
}

.events-list li:nth-child(4),
.events-list li:nth-child(5) {
    width: calc(50% - 32px);
}

.events-list li:nth-child(1) {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
}

.events-list li:nth-child(2),
.events-list li:nth-child(4) {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
}

.events-list li:nth-child(3) {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    margin-right: unset;
}

.events-list li:nth-child(5) {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}

/*.details .container:after,*/
/*.details .container:before,*/
/*.why .container:before,*/
/*.why .container:after,*/
/*.top .container:before,*/
/*.top .container:after{*/
/*!*.moreInfo:before*!*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 1505px;*/
/*    height: 320px;*/
/*    -webkit-filter: blur(170px);*/
/*    filter: blur(170px);*/
/*    -webkit-backface-visibility: hidden;*/
/*    -webkit-transform: translate3d(0, 0, 0);*/
/*    z-index: -2;*/
/*    border-radius: 100%;*/
/*}*/

/*.details .container:before {*/
/*    background: var(--purple-color);*/
/*    -webkit-transform: rotate(8deg);*/
/*    transform: rotate(8deg);*/
/*    top: 10%;*/
/*    left: -35%;*/
/*}*/

/*.details .container:after {*/
/*    background: var(--yellow-color);*/
/*    -webkit-transform: rotate(-8deg);*/
/*    transform: rotate(-8deg);*/
/*    bottom: 10%;*/
/*    right: 0;*/
/*    z-index: 0;*/
/*}*/

/*.why .container:before {*/
/*    width: 50%;*/
/*    background: var(--purple-color);*/
/*    -webkit-transform: rotate(-8deg);*/
/*    transform: rotate(-8deg);*/
/*    bottom: 20%;*/
/*    left: 10%;*/
/*}*/

/*.top .container:after {*/
/*    width: 50%;*/
/*    background: var(--purple-color);*/
/*    -webkit-transform: rotate(-8deg);*/
/*    transform: rotate(-8deg);*/
/*    bottom: 20%;*/
/*    right: 0;*/
/*    -webkit-filter: blur(100px);*/
/*    filter: blur(100px);*/
/*}*/
.top,.details{
    position: relative;
}
.top:before{
    top: 0;
}
.top:before,
.events:before{
position: absolute;
    content: "";
    background: url("../images/blink-events.svg") no-repeat center bottom;
    background-size: cover;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    z-index: -1;
}
.events:before {
    bottom: -10%;
}


/*.why .container:after {*/
/*    width: 50%;*/
/*    -webkit-transform: rotate(22deg);*/
/*    transform: rotate(22deg);*/
/*    background: var(--yellow-color);*/
/*    bottom: 20%;*/
/*    right: 0;*/
/*}*/

/*.top .container:before {*/
/*    width: 50%;*/
/*    -webkit-transform: rotate(22deg);*/
/*    transform: rotate(22deg);*/
/*    background: var(--yellow-color);*/
/*    bottom: 20%;*/
/*    left: 10%;*/
/*    -webkit-filter: blur(100px);*/
/*    filter: blur(100px);*/
/*}*/
.moreInfo:before{

    bottom: -100%;
    right: -20%;
}
.moreInfo:before,.details .container:before{
    background: url("../images/blink-footer.svg") no-repeat;
    content: "";
    position: absolute;
    width: 100%;
    height: 670px;
    z-index: -1;
}
.details .container:before{
    bottom: 20px;
    right: 0;
    left: 0;
    background-size: cover;
}
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 45px 0;
}

.logo {
    top: -140px;
}

.header.is--fixed {
    background: url("../images/frame1.svg") no-repeat center bottom, url("../images/frame2.svg") no-repeat center bottom, url("../images/body-bg.png") repeat;
    background-size: cover, cover, contain;
    padding: 20px 0;
}

/*.header ul {*/
/*    margin-left: 154px;*/
/*    text-transform: uppercase;*/
/*}*/

/*.header ul li {*/
/*    margin-right: 63px;*/
/*}*/

/*.header ul li:last-child {*/
/*    margin-right: 0;*/
/*}*/

/*.header ul a {*/
/*    color: var(--white-color);*/
/*}*/
.partners ul li {
    margin-right: 45px;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
}

.partners ul li:hover img {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.partners ul li img {
    max-width: 330px;
    max-height: 70px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.moreInfo, .footer, .events {
    margin-top: 125px;
}

.moreInfo h3 + p {
    margin: 25px 0;
}

.moreInfo-contact:last-of-type {
    margin-left: 52px;
}

.moreInfo-contact img {
    width: 120px;
}

.moreInfo-contact {
    padding-bottom: 20px;
}

.moreInfo-contact p {
    margin-left: 20px;
}

.moreInfo-contact p > b {
    margin-bottom: 5px;
    color: var(--purple-color);
    display: block;
}

.details-bottom h2 {
    font-size: 96px;
    -webkit-text-stroke: 1px var(--dark-color);
    -webkit-text-fill-color: transparent;
}

.details-bottom h2 > span,
.why h2 > span,
.moreInfo-contact p > span {
    display: block;
}

.moreInfo-contact strong {
    top: 100px;
    left: 80px;
}

.moreInfo-contact strong a:first-of-type {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.moreInfo-contact strong a:last-of-type {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    margin-left: -21px;
    top: 10px;
}

.footer-connect {
    margin-left: 65px;
}

.footer {
    padding: 50px 0;
    font-size: 24px;
    line-height: 100%;
}

.footer-connect p {
    margin-bottom: 10px;
}

.footer-connect p > span {
    display: block;
}

.footer-right {
    margin-left: auto;
}

.footer-right span {
    display: block;
    margin-top: auto;
}

.footer .union-block:hover, .moreInfo-contact strong a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.union-block {
    position: relative;
    background: var(--purple-color);
    height: 34px;
    font-size: 23px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white-color);
    margin-right: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    z-index: 2;
    font-style: normal;
    font-family: 'Hanson', "Arial Black", sans-serif;
}

.union-block.union--big {
    height: 72px;
    font-size: 30px;
}

.union-block:after {
    content: "";
    height: calc(100% - 4px);
    border-radius: 20px;
    position: absolute;
    display: block;
    top: 2px;
    background: var(--purple-color);
    z-index: -1;
    right: -10px;
    left: -10px;
}

.union-block.union--big:after {
    height: calc(100% - 16px);
    border-radius: 30px;
    top: 8px;
    right: -20px;
    left: -20px;
}

.union-block.union--white,
.union-block.union--yellow {
    color: var(--dark-color);
}

.union-block.union--white,
.union-block.union--white:after {
    background: var(--white-color);
}

.union-block.union--yellow,
.union-block.union--yellow:after {
    background: var(--yellow-color);
}

.union-block.union--black,
.union-block.union--black:after {
    background: var(--dark-color);
}

.union-block i {
    font-style: normal;
}

@media screen and (max-width: 1600px) {
    body {
        font-size: 21px;
    }

    .container {
        max-width: 1150px;
    }

    .logo {
        width: 180px;
        top: -95px;
    }

    h1 {
        font-size: 144px;
    }

    h2 {
        font-size: 102px;
    }

    h3 {
        font-size: 80px;
    }

    .top {
        background-size: contain, contain;
        padding-top: 145px;
        height: 653px;
    }

    .top-date {
        font-size: 20px;
        left: 260px;
        top: -80px;
        line-height: 90%;
    }

    .top-date b {
        margin-top: 0;
    }

    .top-img {
        width: 722px;
        bottom: -100px;
    }

    .btn {
        width: 308px;
        height: 45px;
        font-size: 21px;
    }

    .top-button {
        right: 120px;
        margin-bottom: 28px;
    }

    .union-block.union--big {
        height: 58px;
        font-size: 24px;
    }

    .unlock-img {
        width: 386px;
    }

    .unlock p {
        max-width: 50%;
    }

    .unlock-video {
        top: -85px;
        height: 800px;
        overflow: hidden;
    }

    .unlock-video video {
        height: 100%;
        width: auto;
    }

    .why {
        margin-top: 196px;
    }

    .why:before {
        background-position: center -80px;
        background-size: 1600px auto;
    }

    .why .row-title img {
        width: 888px;
    }

    .highlights:before {
        background-size: 1840px auto;
    }

    .details .container {
        padding-left: 96px;
    }

    .details-top > div {
        margin-left: 35px;
    }

    .details-top img {
        width: 546px;
    }

    .details-bottom h2 {
        font-size: 76px;
    }

    .details-bottom p {
        max-width: 320px;
        margin-left: -282px;
        margin-top: 130px;
    }

    .details .container {
        background-size: cover, 296px auto;
        background-position: bottom center, right 250px;
        padding-top: 120px;
    }

    .details .container:after, .details .container:before, .why .container:before, .why .container:after, .top .container:before, .top .container:after {
        width: 1204px;
        height: 256px;
        -webkit-filter: blur(136px);
        filter: blur(136px);
    }

    .partners {
        margin-top: 120px;
    }

    .partners .row-title > svg,
    .partners .row-title > img {
        width: 705px;
    }

    .moreInfo, .footer, .events {
        margin-top: 100px;
    }
}


@media screen and (max-width: 1279px) {
    body {
        font-size: 18px;
    }

    .container {
        max-width: 980px;
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 110px;
    }

    h2 {
        font-size: 82px;
    }

    h3 {
        font-size: 68px;
    }

    .logo {
        width: 150px;
        top: -85px;
    }

    .top-img {
        width: 552px;
        bottom: -10px;
        right: -20px;
    }

    .top {
        height: unset;
        padding-bottom: 80px;
        padding-top: 105px;
    }

    .top-date {
        font-size: 18px;
        left: 230px;
        top: -75px;
    }

    .top-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-button {
        right: unset;
        flex-direction: row;
    }

    .top .btn-grey {
        margin-top: unset;
        margin-left: 15px;
    }

    .top .container:before,
    .top .container:after {
        width: 100%;
        height: 50%;
        -webkit-filter: blur(96px);
        filter: blur(96px);
    }

    .top .container:before {
        bottom: -10%;
        left: -30%;
    }

    .top .container:after {
        right: -40%;
    }

    .top-union2 {
        bottom: 52%;
    }

    .unlock-img {
        width: 305px;
    }

    .unlock p {
        max-width: 460px;
    }

    .unlock-video {
        top: -95px;
        height: 750px;
    }

    .details-top img {
        width: 430px;
    }

    .details-bottom h2 {
        font-size: 58px;
    }

    .details-bottom p {
        max-width: 300px;
        margin-left: -222px;
        margin-top: 100px;
    }

    .details .container {
        background-size: cover, 254px auto;
        background-position: bottom center, right 240px;
    }

    .details .container:after {
        right: -50%;
    }

    .partners .row-title > svg,
    .partners .row-title > img {
        width: 565px;
    }

    .union-block {
        font-size: 16px;
        height: 28px;
    }

    .union-block.union--big {
        height: 40px;
        font-size: 20px;
    }

    .union-block.union--big:after {
        right: -10px;
        left: -10px;
    }


    .moreInfo h3 > img {
        width: 640px;
    }

    .highlights {
        height: unset;
    }

    .highlights:before {
        background-size: 1240px auto;
    }

    .highlights-list li {
        max-width: 50%;
        margin-left: 45%;
    }

    .highlights-list li:nth-child(2) {
        margin-left: 5%;
    }

    .highlights-list li:nth-child(1) {
        max-width: 40%;
        margin-left: unset;
    }

    .why {
        margin-top: 146px;
    }

    .why:before {
        background-position: center 150px;
        background-size: 1760px auto;
    }

    .why h2 {
        margin-bottom: -20px;
    }

    .why .row-title img {
        width: 706px;
    }

    .why-union1 {
        bottom: -20px;
        left: 50%;
        z-index: 4;
    }

    .why-union2 {
        bottom: -10px;
        left: 0;
        z-index: 4;
    }

    .why li:nth-child(2), .why li:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
    }

    .why li:nth-child(4) {
        margin-left: auto;
    }

    .footer-connect, .footer-right {
        margin-left: 40px;
    }
}


@media screen and (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 102px;
    }

    h2 {
        font-size: 68px;
    }

    h3 {
        font-size: 56px;
    }

    .top {
        background-position: left top, right top;
        background-size: cover, cover;
        padding-top: 135px;
        padding-bottom: 30px;
    }

    .top-date {
        font-size: 14px;
        left: 210px;
        top: -70px;
    }

    .top-img {
        width: 532px;
        right: -60px;
    }

    .top-button {
        margin-top: 30px;
    }

    .unlock-video {
        top: -30px;
        height: 620px;
    }

    .unlock-img {
        width: 235px;
    }

    .why h2 {
        margin-bottom: -10px;
    }

    .why .row-title img {
        width: 580px;
    }

    .why ul {
        margin-left: 15px;
    }

    .why-union1 {
        bottom: -20px;
        left: 45%;
    }

    .partners .row-title > svg,
    .partners .row-title > img {
        width: 475px;
    }

    .details .container:after, .details .container:before, .why .container:before, .why .container:after, .top .container:before, .top .container:after {
        width: 100%;
        height: 200px;
        -webkit-filter: blur(86px);
        filter: blur(86px);
    }

    .details .container {
        background-position: top right, right 200px;
        background-size: cover, 374px auto;
        padding-left: 60px;
    }

    .details .container:after {
        right: -50%;
        bottom: 20%;
    }

    .details-bottom {
        flex-direction: column;
        padding-bottom: 40px;
    }

    .details-bottom .btn {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .details-bottom h2 {
        font-size: 48px;
    }

    .details-bottom p {
        max-width: 280px;
        margin-left: unset;
        margin-top: 10px;
    }

    .details-top {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .details-top > div {
        margin-left: unset;
        margin-top: 25px;
    }

    .details-top p {
        margin-bottom: 15px;
    }

    .moreInfo h3 > img {
        width: 520px;
    }

    .footer .container {
        flex-wrap: wrap;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-connect {
    }

    .footer-right {
        width: 100%;
        margin-top: 20px;
        margin-left: unset;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-right br {
        display: none;
    }

    .partners ul li {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 80px;
    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 42px;
    }

    .top-img {
        width: 452px;
        right: -150px;
    }

    .top .btn {
        width: 250px;
    }

    .top .row-title img {
        left: 2px;
    }

    .details .container {
        padding-left: 30px;
    }

    .details-bottom h2 {
        font-size: 40px;
    }

    .unlock-video {
        height: calc(100% + 80px);
    }

    .unlock-img {
        width: 195px;
        right: -50px;
    }

    .unlock {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .why .row-title img {
        width: 438px;
        left: 5px;
        top: 2px;
    }

    .why ul {
        height: unset;
    }

    .why li {
        max-width: 46%;
        padding: 30px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .why li .font {
        margin-bottom: 10px;
    }

    .why li:nth-child(3),
    .why li:nth-child(4) {
        margin-bottom: -10px;
    }

    .why-union1 {
        bottom: -8%;
        left: 88%;
    }

    .partners .row-title > svg,
    .partners .row-title > img {
        width: 352px;
    }

    .partners h2 {
        margin-bottom: 25px;
    }

    .partners ul li {
        margin-bottom: 30px;
        margin-right: 30px;
    }

    .events-list li {
        margin-right: 18px;
        margin-bottom: 18px;
    }

    .events-list li:nth-child(1), .events-list li:nth-child(2), .events-list li:nth-child(3) {
        width: calc(33.3% - 18px);
    }

    .events-list li:nth-child(4), .events-list li:nth-child(5) {
        width: calc(50% - 18px);
    }

    .highlights {
        padding-bottom: 180px;
    }

    .highlights-list b {
        line-height: 100%;
    }

    .highlights:before {
        background-size: 940px auto;
    }
}

/*    .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: 4px;*/
/*        color: var(--white-color);*/
/*        background: var(--white-color);*/
/*        box-shadow: 15px 8px 0, 6px 16px 0;*/
/*        position: relative;*/
/*        top: -8px;*/
/*        -webkit-transition: all .5s;*/
/*        transition: all .5s;*/
/*    }*/

/*    .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 {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        right: 0;*/
/*        bottom: 0;*/
/*        z-index: 220;*/
/*        overflow-y: auto;*/
/*        overflow-x: hidden;*/
/*        background: var(--dark-color);*/
/*        justify-content: flex-start;*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        -webkit-transform: none;*/
/*        transform: none;*/
/*    }*/

/*    .header.is--active ul {*/
/*        display: block;*/
/*        width: 100%;*/
/*        margin-left: 51px;*/
/*        margin-top: 160px;*/
/*    }*/

/*    .header.is--active ul li {*/
/*        margin-bottom: 35px;*/
/*    }*/

/*    .header.is--active ul a {*/
/*        font-size: 32px;*/
/*        font-weight: 700;*/
/*    }*/

/*    .header.is--active .container {*/
/*        flex-wrap: wrap;*/
/*    }*/

/*    .header.is--active .header-mobile {*/
/*        justify-content: flex-start;*/
/*    }*/

/*    .header.is--active .header-mobile span {*/
/*        width: 0;*/
/*        height: 4px;*/
/*        background: var(--green-color);*/
/*    }*/

/*    !*.header.is--active ul:before {*!*/
/*    !*    content: "";*!*/
/*    !*    position: absolute;*!*/
/*    !*    width: 150px;*!*/
/*    !*    height: 150px;*!*/
/*    !*    -webkit-filter: blur(75px);*!*/
/*    !*    filter: blur(75px);*!*/
/*    !*    -webkit-backface-visibility: hidden;*!*/
/*    !*    -webkit-transform: translate3d(0, 0, 0);*!*/
/*    !*    z-index: -2;*!*/
/*    !*    background: #415A9F;*!*/
/*    !*    bottom: 20px;*!*/
/*    !*}*!*/

/*    .footer.footer.is--active:before {*/
/*        width: 80%;*/
/*        z-index: 999;*/
/*        position: fixed;*/
/*        bottom: 0;*/
/*    }*/

/*    .overflow {*/
/*        overflow: hidden;*/
/*        height: 100vh;*/
/*    }*/

/*    .footer.footer.is--active .footer-right {*/
/*        width: 80%;*/
/*        position: fixed;*/
/*        bottom: 80px;*/
/*        z-index: 999;*/
/*    }*/

/*    !*.about h2 span:after {*!*/
/*    !*    display: none;*!*/
/*    !*}*!*/

/*    .about h2 span b {*/
/*        display: table;*/
/*        position: relative;*/
/*    }*/

/*    !*.about h2 span b:after {*!*/
/*    !*    background: linear-gradient(var(--dark-color), var(--dark-color), var(--dark-color)) padding-box, linear-gradient(90.08deg, #FF00E6 -0.26%, var(--green-color) 100.15%) border-box;*!*/
/*    !*    border: 2px solid transparent;*!*/
/*    !*    -webkit-transform: rotate(1.3deg);*!*/
/*    !*    transform: rotate(1.3deg);*!*/
/*    !*    border-radius: 100%;*!*/
/*    !*    content: "";*!*/
/*    !*    display: block;*!*/
/*    !*    position: absolute;*!*/
/*    !*    width: calc(100% + 30px);*!*/
/*    !*    height: 95%;*!*/
/*    !*    z-index: -1;*!*/
/*    !*    right: -15px;*!*/
/*    !*    bottom: 0;*!*/
/*    !*    content: "";*!*/
/*    !*}*!*/

/*    .about {*/
/*        margin-top: 0;*/
/*    }*/

/*    .footer.footer.is--active .footer-right__social {*/
/*        margin-left: 30%;*/
/*    }*/

/*    .footer.footer.is--active .footer-right div {*/
/*        display: none;*/
/*    }*/

/*    !*.header.is--active span:after {*!*/
/*    !*    content: "";*!*/
/*    !*    position: absolute;*!*/
/*    !*    top: -5px;*!*/
/*    !*    right: -1px;*!*/
/*    !*    -webkit-transform: rotate(45deg);*!*/
/*    !*    transform: rotate(45deg);*!*/
/*    !*    border-radius: 10px;*!*/
/*    !*    background: linear-gradient(92.44deg, var(--green-color) 11.84%, #FF00E6 101.66%);*!*/
/*    !*    width: 15px;*!*/
/*    !*}*!*/

/*    !*.header.is--active .header-mobile span:before {*!*/
/*    !*    -webkit-transform: rotate(-45deg);*!*/
/*    !*    transform: rotate(-45deg);*!*/
/*    !*    right: 0;*!*/
/*    !*    border-radius: 10px;*!*/
/*    !*    bottom: -5px;*!*/
/*    !*    background: linear-gradient(92.44deg, var(--green-color) 11.84%, #FF00E6 101.66%);*!*/
/*    !*}*!*/

/*    .header.is--active .header-mobile span {*/
/*        width: 40px;*/
/*        box-shadow: unset;*/
/*        border-radius: 10px;*/
/*        align-self: flex-end;*/
/*    }*/
/*}*/

@media screen and (max-width: 640px) {
    .moreInfo h3 > img {
        max-width: 450px;
        width: 100%;
    }

    .moreInfo-contact {
        width: 49%;
        flex-shrink: 0;
    }

    .moreInfo-contact:last-of-type {
        margin-left: 2%;
    }

    .why li {
        padding: 20px;
        max-width: 48%;
        font-size: 16px;
    }

    .why-union1 {
        bottom: -10%;
        left: 78%;
    }

    .highlights {
        padding-bottom: 120px;
    }

    .highlights:before {
        background-size: 1250px auto;
        background-position: right bottom;
        -webkit-animation: moveTown 50s linear infinite;
        animation: moveTown 50s linear infinite;
    }

    .highlights-list {
        flex-direction: column;
    }

    .highlights-list li:nth-child(1), .highlights-list li {
        max-width: 460px;
    }

    .highlights-list li:nth-child(2), .highlights-list li {
        margin-left: unset;
    }

    .footer-logo {
        order: 2;
    }

    .footer-connect {
        margin-left: unset;
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .footer-right {
        flex-direction: column;
        order: 3;
        width: calc(100% - 125px);
        margin-left: 40px;
        margin-top: unset;
    }

    .footer-connect p {
        text-align: center;
    }

    .footer-connect p > span {
        display: unset;
    }

    .details .container {
        background-position: top right, right 420px;
        background-size: cover, 234px auto;
    }

    .why:before {
        background-position: center bottom;
        background-size: 100% auto;
    }

    h1 {
        font-size: 60px;
    }

    .top .btn {
        width: 100%;
    }

    .top-button {
        flex-direction: column;
        width: 100%;
        margin-top: 230px;
    }

    .top .btn-grey {
        margin-top: 15px;
        margin-left: unset;
    }

    .top-img {
        width: 442px;
    }

    .top-union4 {
        left: 190px;
        top: -35%;
    }

    .unlock h3 {
        font-size: 32px;
        line-height: 90%;
    }

    .unlock-img {
        width: 145px;
        bottom: -120px;
    }

    .details .container {
        padding-left: 15px;
    }

    .partners {
        margin-top: 60px;
    }

    .moreInfo, .footer, .events {
        margin-top: 80px;
    }
}

@media screen and (max-width: 500px) {
    h2, h3 {
        font-size: 36px;
    }

    .partners .row-title > svg,
    .partners .row-title > img {
        width: 252px;
    }

    .partners ul li img {
        max-width: 120px;
        max-height: 40px;
    }

    .union-block.union--big {
        height: 20px;
        font-size: 14px;
    }

    .union-block.union--big:after {
        right: -6px;
        left: -6px;
        height: calc(100% - 4px);
        top: 2px;
    }

    .why h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .why .row-title img {
        width: 262px;
    }

    .why ul {
        margin-left: unset;
    }

    .why li {
        max-width: 100%;
    }

    .why li:nth-child(4) {
        margin-top: 20px;
    }

    .why-union1 {
        bottom: -5%;
    }

    .events-union1 {
        right: 0;
    }

    .events-union2 {
        right: 70%;
        top: 35%;
    }

    .events-union4 {
        right: 0;
        bottom: 25%;
    }

    .events-list li {
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .events-list li:nth-child(1), .events-list li:nth-child(2), .events-list li:nth-child(3) {
        width: calc(33.3% - 5px);
    }

    .events-list li:nth-child(4), .events-list li:nth-child(5) {
        width: calc(50% - 5px);
    }

    .moreInfo-list {
        flex-direction: column;
        align-items: center;
    }

    .moreInfo-contact {
        width: 240px;
    }

    .moreInfo-contact:last-of-type {
        margin-left: unset;
        margin-top: 30px;
    }

    .moreInfo, .footer, .events {
        margin-top: 60px;
    }

    h1 {
        font-size: 40px;
    }

    .top-img {
        width: 492px;
        max-width: unset;
        bottom: -30px;
        right: -250px;
    }


    .top-union3 {
        left: 90px;
        bottom: 42%;
    }

    .unlock {
        padding-left: 0;
        padding-right: 0;
        padding-top: 15px;
    }

    .unlock-video {
        left: -15px;
        right: -30px;
    }

    .unlock h3 {
        font-size: 24px;
    }

    .details .container {
        background-position: top right, right 480px;
    }

    .details-bottom p {
        max-width: 190px;
    }

    .footer-connect span {
        flex-direction: column;
    }

    .footer-connect .union-block {
        height: 34px;
        font-size: 23px;
    }

    .footer-connect span a.union-block {
        margin-bottom: 10px;
    }

    .footer-connect .union-block {
        width: 100%;
        margin: 0;
    }

    .footer-right {
        margin-left: 20px;
    }
}

@media screen and (max-width: 390px) {
    .details .container {
        background-position: top right, 220px 480px;
    }
}