html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    box-sizing: border-box;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --text-main: #fff;
    --text-higlight: #00F1F3;
    --font-styled: 'Zero hour', Arial, sans-serif;
    --font-text: 'Futura', Arial, sans-serif;
    --font-label: 'FuturaBookC', Arial, sans-serif;
    --font-sub-label: 'FuturaMediumC', Arial, sans-serif;
    --font-button: 'FuturaDemiC', Arial, sans-serif;
    --color-transition: color .7s ease;
    --bg-color: #000A22;
}

@media (max-width:1200px) {
    :root {
        --bg-color: #001124;
    }
}

:root[lang=uk],
:root[lang=ru] {
    --font-styled: 'EBENYA', 'Zero hour', Arial, sans-serif;
}

:root[lang=es] {
    --font-text: 'Futura', 'Josefin Sans', Arial, sans-serif;
    --font-label: 'FuturaBookC', 'Josefin Sans', Arial, sans-serif;
    --font-sub-label: 'FuturaMediumC', 'Josefin Sans', Arial, sans-serif;
    --font-button: 'FuturaDemiC', 'Josefin Sans', Arial, sans-serif;
}

.body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-text);
    overflow-x: hidden;
}

.container {
    width: 1280px;
    margin: auto;
    max-width: 100%;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 42px;
    padding: 0 10px;
}

.menu-item {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 153.4%;
    transition: var(--color-transition);
}

.menu-item:hover {
    color: var(--text-higlight)
}

.btn {
    cursor: pointer;
    position: relative;
    max-width: 100%;
    color: var(--text-main);
    padding: 16px 53px 12px;
    background-color: unset;
    outline: none;
    border: none;
    border-radius: 59px;
    font-family: var(--font-button);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    font-size: 22px;
    line-height: 153.4%;
    display: inline-block;
    min-width: 252px;
    text-align: center;
    overflow: hidden;
}

.btn::after {
    transition: opacity .4s ease;
    content: '';
    opacity: 0;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    inset: 0;
    background-image: radial-gradient(121.84% 36.97% at 50.19% 40.43%, rgba(0, 81, 79, 0.45) 0%, rgba(0, 63, 66, 0) 100%);
}

.btn:hover::after {
    content: '';
    opacity: 1;
    /* background:; */
    /* background-blend-mode: screen; */
}

.btn::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 59px;
    padding: 3px;
    background: linear-gradient(180deg, #00F1F3 -29.11%, #011E3D 40.79%, #011E4A 180.59%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-small {
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 153.4%;
    text-transform: lowercase;
    border-radius: 51px;
    padding: 8.5px 25.5px;
    text-decoration: none;
    min-width: 0;
    /* font-family: var(--font-label); */
}

.btn-small::before {
    padding: 2px;
}

.firstScreen-btnWrapper {
    display: flex;
    justify-content: center;
}

.langMenu {
    list-style: none;
    border: 1px solid #FFFFFF;
    border-radius: 61px;
    min-width: 84.11px;
}

.langMenu-item {
    position: relative;
    padding: 9px 0 6px;
    border-bottom: 1px solid #FFFFFF;
    text-transform: uppercase;
}

.langMenu-current {
    position: relative;
}

.langMenu-currentItem {
    border: 0;
    cursor: pointer;
}

.langMenu-currentItem .langMenu-text {
    min-height: 26px;
}

.langMenu-secondary {
    display: none;
    flex-direction: column;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 3;
    background: var(--bg-color);
    border-radius: 19px;
}

.langMenu-secondary.active {
    display: flex;
    order: -1;
}

.langMenu-text {
    padding: 0 12px 0 36px;
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
    color: #FFFFFF;
    text-transform: uppercase;
}

.langMenu-item.active::after {
    content: "";
    position: absolute;
    left: 19px;
    top: calc(50% - 6.5px);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border: solid white;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3.4px;
}

.langMenu-item a {
    text-decoration: none;
}

.langMenu-item:last-child {
    border: 0;
}

.titleH1 {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 70px;
    text-align: center;
    letter-spacing: 0.61em;
    margin-right: -0.61em;
    color: var(--text-main);
    text-transform: uppercase;
    font-family: var(--font-styled);
}

.text-highlight {
    color: var(--text-higlight);
}

.titleH1-subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 146.5%;
    /* or 50px */
    text-align: center;
    letter-spacing: 0.61em;
}

.text-label {
    font-family: var(--font-label);
}

.text-center {
    text-align: center;
}

/* 
HTML Model

.glowStroke?.glowStroke--skew 
->.glowStroke-wrapper
->->.glowStroke-stroke?glowStroke--safari
->->.glowStroke-glow

*/

.glowStroke {
    position: relative;
}

.glowStroke-wrapper {
    pointer-events: none;
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: -1;
}

.glowStroke-stroke {
    position: absolute;
    inset: 0;
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--text-higlight)
}

.glowStroke-glow {
    position: absolute;
    inset: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    filter: blur(2px);
}

.glowStroke-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #00F1F3 -29.11%, #011E3D 99.39%);
    z-index: 0;
    padding: 1px;
    border-radius: 20px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    box-shadow: -6px -6px 18px rgba(0, 253, 255, 0.08), 4px 4px 12px #000814;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@media not all and (min-resolution:.001dpcm) {
    .glowStroke--safari {
        display: none;
    }
}

.glowStroke--skew .glowStroke-glow::after,
.glowStroke--skew .glowStroke-stroke {
    transform: skewX(-37deg);
    border-radius: 4px 18px 4px 18px;
}

/* 
HTML Model

.skewSubstrate
->.skewSubstrate-wrapper
->->.skewSubstrate-content
->->.skewSubstrate-border
*/

.skewSubstrate {
    position: relative;
}

.skewSubstrate-wrapper {
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: -1;
}

.skewSubstrate-content {
    position: absolute;
    pointer-events: none;
    inset: 0;
    width: 100%;
    background: linear-gradient(150.96deg, #001124 13.06%, #002041 56.43%, #002143 85.47%);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: -6px -6px 18px rgba(0, 253, 255, 0.08), 5px 5px 11px 1px #000814;
    transform: skew(-37deg);
}

.advantages-slide {
    will-change: box-shadow, transform;
}

.skewSubstrate-border {
    position: absolute;
    inset: 0;
    background: linear-gradient(150.96deg, #001124 13.06%, #002041 56.43%, #002143 85.47%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: .6px;
    width: 100%;
    transform: skew(-37deg);
}

.strokeTitle {
    font-family: var(--font-styled);
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    -webkit-text-stroke: 1px var(--text-higlight);
    color: transparent;
}

.strokeTitle-shadow {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    filter: blur(2px);
    color: transparent;
    -webkit-text-stroke: 1px var(--text-higlight);
}

@media not all and (min-resolution:.001dpcm) {
    /* .strokeTitle-shadow{
         display: none;
    } */
}

.backgroundTitle {
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -1;
    /* pointer-events: none; */
    font-family: var(--font-styled);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    max-width: 100%;
    opacity: 0.3;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-higlight);
    text-stroke: 1px var(--text-higlight);
}

.backgroundTitle--big1 {
    font-size: 131px;
    letter-spacing: 0.61em;
}

.backgroundTitle--events {
    font-size: 131px;
    letter-spacing: 0.61em;
}

.backgroundTitle-1line {
    font-size: 131px;
    line-height: 157px;
    letter-spacing: 0.61em;
    width: 1177px;
    margin: auto;
    right: 0;
    left: 0;
}

.backgroundTitle-vertical {
    font-size: 98px;
    line-height: 118px;
    letter-spacing: 0.61em;
    top: 0px;
    text-align: center;
}

.backgroundTitle-vertical svg {}

.backgroundTitle-competition {
    font-size: 77px;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.61em;
    left: 0;
    right: 0;
    margin: auto;
}

.backgroundTitle-competition svg {}

.backgroundTitle-faq {
    width: 800px;
    margin: auto;
    font-size: 187px;
    line-height: 224px;
    letter-spacing: 0.61em;
    left: 0;
    right: 0;
    text-align: center;
}

.backgroundTitle-faq svg {}

.backgroundTitle-projects {
    font-size: 100px;
    line-height: 120px;
    letter-spacing: 0.61em;
    width: 1203px;
    margin: auto;
    text-align: center;
}

.backgroundTitle-projects svg {}

.titleH2 {
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: normal;
    letter-spacing: 0.355em;
    text-transform: uppercase;
    font-family: var(--font-styled);
}

.titleH3 {
    font-style: normal;
    font-weight: 400;
    font-size: 43px;
    line-height: 53px;
    letter-spacing: 0.355em;
    text-transform: uppercase;
    font-family: var(--font-styled);
}

.textBody {
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
}

/* Calendar */

.calendar {
    overflow: hidden;
}

.calendar .double-title {
    margin-bottom: 20px;
}

.calendar__title-mob {
    display: none;
}

.calendar__wrapper {
    position: relative;
    border-bottom: 3px solid #00F1F3;
    margin-bottom: 92px;
}

.calendar__inner {
    min-height: 326px !important;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1280px;
    margin: 0 auto;
    /* background-image: url("../images/main_page/calendar-bg.svg"); */
    background-repeat: no-repeat;
}

.calendar__mark {
    background: #FFFFFF;
    width: 1px;
    height: 5px;
}

.calendar__mark-month {
    width: 3px;
    height: 18px;
    border-radius: 2px;
}

.calendar__mark-month--centerLeft {
    transform: translate(-1.5px);
}

.calendar__mark-month--centerRight {
    transform: translate(1.5px);
}

.calendar__mark-middle {
    width: 3px;
    height: 9px;
    border-radius: 2px;
}

.calendar__month {
    position: absolute;
    bottom: -56px;
    font-weight: 700;
    text-transform: lowercase;
    color: #FFFFFF;
}

.calendar__month_wrapper {
    height: 326px !important;
    display: flex !important;
    position: relative;
    justify-content: space-between;
    align-items: flex-end;
    width: 33.3%;
    background-image: url("../images/calendar-bg-item.svg");
    background-position: bottom left;
    background-repeat: no-repeat;
}

.calendar__mark-hiden {
    background: transparent
}

.calendar__month-first {
    left: 0;
}

.calendar__month-second {
    left: 0%;
}

.calendar__month-third {
    left: 0%;
}

.calendar__day {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    position: absolute;
    bottom: 44px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-26px);
    color: #FFFFFF;
    transition: transform 1s;
    cursor: pointer;
    z-index: 2;
    width: 46px;
    height: 46px;
}

@keyframes scaleDown {
    0% {
        transform: translateX(-26px) scale(1.3);
    }
    100% {
        transform: translateX(-26px) scale(1);
    }
}

.calendar__day--off {
    transition: 0s;
    animation: scaleDown .4s linear;
}

.calendar__day-wrapper {
    position: absolute;
    width: calc(100% - 26px);
    left: 18px;
}

.calendar__day:not(.calendar__day-selected):hover {
    transform: translate(-26px, -25%);
    transition: transform 1s;
}

.calendar__day-first {
    left: 12%;
}

.calendar__day-second {
    left: 30%;
}

.calendar__day-third {
    left: 33%;
}

.calendar__day-fourth {
    left: 48%;
}

.calendar__day-fifth {
    left: 79%;
}

.calendar__day-text {
    position: relative;
}

.calendar__day::after {
    content: url("../images/calendar-day-bg.svg");
    position: absolute;
    top: 0px;
    right: 0;
}

.calendar__day-selected {
    width: 85px;
    height: 85px;
    bottom: 58px;
    transform: translateX(-52px);
    transition: none;
}

/* 
.calendar__day-selected:hover{
    transform:translate(-52px,-25%)
}
 */

.calendar__day-selected::after {
    content: url("../images/calendar-day-selected-bg.svg");
    position: absolute;
    top: 0;
    right: 0;
}

.calendar__warning {
    position: absolute;
    top: 0;
    left: 31px;
    display: flex;
    align-items: center;
}

.calendar__warning-icon {
    margin-right: 11px;
}

.calendar__event {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 80px;
}

.calendar__event-image {
    max-width: 100%;
    border-radius: 20px;
    margin-right: 30px;
}

.calendar__event-name {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 7px;
}

.calendar__event-date {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.calendar__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.calendar__buttons .ui-btn {
    justify-self: flex-start;
}

.calendar__buttons .ui-btn:first-child {
    padding: 20px 30px;
}

.calendar__buttons .ui-btn:last-child {
    padding: 20px 45px;
}

.swiper-container-calendar {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

/* Calendar end */

.textBigLabel1 {
    font-family: var(--font-text);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.textBigLabel2 {
    font-family: var(--font-text);
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 121.9%;
}

.calendarEvent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 42px;
    flex-direction: row;
}

.calendarEvent a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 42px;
    flex-direction: row;
    color: inherit;
    text-decoration: none;
}

.calendarEvent-img {
    margin-top: 7px;
    max-width: 37.4%;
    display: block;
    border-radius: 15px;
}

.calendarEvent-content {}

.calendarEvent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 45px;
}

.calendarEvent-title {}

.calendarEvent-date {
    padding-top: 18px;
}

.calendarEvent-msg {
    padding-top: 40px;
}

.calendarEvent-title--bold {
    font-weight: bold;
}

.calendar__controllWrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calendar__controlLabel {
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 120.4%;
    text-align: center;
    color: #00F1F3;
}

.calendar_controllBtn {
    width: 56px;
    height: 56px;
    background-image: url(/assets/images/highlight-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: #00f1f312;
}

.calendar_controllBtn:disabled {
    opacity: .5;
}

.calendar_controllBtn-right {
    transform: rotate(180deg);
}

.poligonWrapper {
    /* background: radial-gradient(121.84% 83.03% at 50.19% 90.8%, rgba(0, 81, 79, 0.45) 0%, rgba(0, 63, 66, 0) 100%); */
    background: radial-gradient(121.84% 36.97% at 50.19% 40.43%, #0E2D43 0%, #000C24 100%);
    padding: 40px 0 50px;
    position: relative;
    clip-path: polygon(3.6% 0%, 93.4% 0%, 100% 38px, 100% calc(100% - 29px), 94.85% 100%, 8.7% 100%, 0 calc(100% - 49px), 0% 21px);
    -webkit-clip-path: polygon(3.6% 0%, 93.4% 0%, 100% 38px, 100% calc(100% - 29px), 94.85% 100%, 8.7% 100%, 0 calc(100% - 49px), 0% 21px);
}

.poligonWrapper_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 40px;
}

.poligonWrapper_footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 50px;
}

.poligonWrapper-inner {
    border-left: 1px solid var(--text-higlight);
    border-right: 1px solid var(--text-higlight);
}

.form-fieldset--big {
    margin: 0 auto 25px;
    width: 450px;
    max-width: 100%;
}

.form-input {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%);
    border: 1px solid #00F1F3;
    border-radius: 37px;
    padding: 8px 22px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
    font-family: var(--font-label);
    color: var(--text-main);
    outline: none;
    text-overflow: ellipsis;
}

.form-input::placeholder {
    font-family: inherit;
    color: inherit;
    padding: 0;
}

.form-input--textarea {
    border-radius: 22px;
    resize: vertical;
    min-height: 100px;
    padding: 13px 19px;
}

.form-input--textarea::placeholder {
    /* padding: 0; */
    font-size: inherit;
}

.submitForm-btnWrapper.form-fieldset--registerBtn {
    padding-top: 13px;
    padding-bottom: 10px;
}

.submitForm-title.form-title {
    padding-top: 40px;
    padding-bottom: 31px;
}

.form-fieldsetDouble {
    display: flex;
    column-gap: 12px;
    row-gap: 18px;
}

.form-fieldsetDouble--aroud {
    justify-content: space-around;
}

.form-inners {
    width: 373px;
    padding: 0 10px;
    max-width: 100%;
    margin: auto;
}

.form-title {
    text-align: center;
    padding: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0.355em;
    font-family: var(--font-styled);
    color: var(--text-main);
}

.form-radioWrapper {
    padding-left: 28px;
    position: relative;
    overflow: hidden;
}

.form-radio::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 1px;
    background: linear-gradient(0deg, #1BCEEF 0%, #00D37E 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-sizing: border-box;
    display: block;
    margin: auto 0;
    cursor: pointer;
}

.form-radio::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 10px;
    left: 3px;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #1BCEEF 0%, #00D37E 100%);
    background-blend-mode: screen;
    display: block;
    border-radius: 50%;
    margin: auto 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form-radioWrapper input[type=radio]:not(:checked)~.form-radio::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.form-radioWrapper input[type=radio]:checked~.form-radio::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-radioWrapper input[type=radio] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
}

.checkbox {
    padding-left: 30px;
    position: relative;
    overflow: hidden;
}

.checkbox input[type=checkbox] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-width: 1px;
    border-style: solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(0deg, #1BCEEF 0%, #00D37E 100%);
    box-sizing: border-box;
    display: block;
    margin: auto 0;
    cursor: pointer;
}

.checkbox-label a {
    color: inherit;
    text-decoration: none;
}

.checkbox-label::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 12px;
    height: 12px;
    left: 3px;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #1BCEEF 0%, #00D37E 100%);
    background-blend-mode: screen;
    display: block;
    margin: auto 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.checkbox input[type=checkbox]:not(:checked)~.checkbox-label::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.checkbox input[type=checkbox]:checked~.checkbox-label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.register-fieldset--gap {
    padding-bottom: 18px;
}

.register-fieldset--radioGap {
    padding-bottom: 25px;
}

.register-title {
    padding-top: 40px;
    padding-bottom: 28px;
}

.register-fieldset--checkbox {
    padding: 10px 19px 28px;
}

.register-fieldset--registerBtn {
    padding-bottom: 24px;
}

.form-fieldset--registerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn--register {
    text-transform: capitalize;
    padding-left: 38px;
    padding-right: 38px;
}

.form-fieldset--password {
    position: relative;
}

.switchPassType {
    padding: 7px 0;
    position: absolute;
    z-index: 2;
    right: 18px;
    top: 0;
    bottom: 0;
    height: 29px;
    width: 29px;
    background: transparent;
    cursor: pointer;
    border: none;
    margin: auto;
}

.switchPassType--hide {}

.form-input--pasword {
    padding-right: 50px;
}

/* form select */

.select {
    position: relative;
    width: 100%;
}

.select-current {
    background: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%);
    border: 1px solid #00F1F3;
    border-radius: 37px;
    padding: 8px 56px 6px 18px;
    background-image: url(../images/open-select-mark.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 23px) center;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    height: 44px;
}

.select-current input {
    opacity: 0;
    position: absolute;
    left: -100000px;
    height: 1px;
    width: 1px;
}

.select-placeholder {
    background: linear-gradient(0deg, #1BCEEF 0%, #00D37E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-optionsList {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(150.96deg, #001124 13.06%, #002041 56.43%, #002143 85.47%);
    border: 1px solid #00F1F3;
    border-radius: 21px;
    padding: 6px 0 6px;
    z-index: 10;
}

.select-option {
    padding: 1px 20px;
    cursor: pointer;
    transition: background 1s ease;
}

.select-option:hover,
.select-option.selected {
    background-image: linear-gradient(0deg, rgb(27 206 239 / 4%) 0%, rgb(0 211 126 / 4%) 100%);
}

.select-option-default {
    background-image: url(../images/open-select-mark.svg);
    background-repeat: no-repeat;
    background-position: right center;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 36px;
}

.select-option-default {}

.is-error:not(.select-current) {
    background-image: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%), url(../images/error-icon.svg);
    background-repeat: no-repeat;
    background-position: top center, calc(100% - 11px) center;
    padding-right: 36px !important;
}

.is-error.form-input--pasword {
    background-position: top center, calc(100% - 52px) center;
    padding-right: 72px !important;
}

.is-error.select-current,
.is-valid.select-current {
    padding-right: 70px;
}

.is-error.select-current::after {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%), url(../images/error-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    pointer-events: none;
    right: 40px;
    top: 10px;
}

.is-valid:not(.select-current) {
    background-image: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%), url(../images/success-icon.svg);
    background-repeat: no-repeat;
    background-position: top center, calc(100% - 11px) center;
    padding-right: 36px !important;
}

.is-valid.form-input--pasword {
    background-position: top center, calc(100% - 52px) center;
    padding-right: 72px !important;
}

.is-valid.select-current::after {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%), url(../images/success-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    pointer-events: none;
    right: 40px;
    top: 10px;
}

/* ERROR */

.notificationBar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    width: fit-content;
    height: fit-content;
    max-width: 399px;
    left: 6px;
    bottom: 100px;
    z-index: 40;
    /* height: 0; */
    overflow: visible;
    pointer-events: none;
    max-height: calc(100% - 100px);
    overflow-y: auto;
}

.notificationBar::-webkit-scrollbar {
    width: 5px;
}

.notificationBar::-webkit-scrollbar-track {
    width: 0px;
}

.notificationBar::-webkit-scrollbar-thumb {
    background-color: transparent;
}

/* NOTIFICATION Default */

.notifcation-msg {
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
}

.notifcation-icon {
    display: block;
    margin-right: 24px;
}

.notifcation-inner {
    border-left-width: 1px;
    border-right-width: 1px;
    border-left-style: solid;
    border-right-style: solid;
    display: flex;
    padding: 13px 31px 0;
    justify-content: flex-start;
    align-items: center;
}

.notifcation-poligon {
    width: 100%;
    position: relative;
    padding: 30px 0 40px;
    clip-path: polygon(3.7% 0%, 93.1% 0%, 100% 27px, 100% calc(100% - 21px), 94.8% 100%, 8.7% 100%, 0 calc(103% - 39px), 0% 15px);
    -webkit-clip-path: polygon(3.7% 0%, 93.1% 0%, 100% 27px, 100% calc(100% - 21px), 94.8% 100%, 8.7% 100%, 0 calc(103% - 39px), 0% 15px);
    display: block !important;
}

.notifcation-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
}

.notifcation-footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 40px;
}

.notifcation-poligonWrapper {
    width: 399px;
    max-width: calc(100% - 20px);
    pointer-events: all;
    transform: translateX(-100%);
    transition: all .5s ease-in-out;
}

.notifcation-poligonWrapper.show {
    transform: translateX(0);
}

.error-poligon {
    background: radial-gradient(121.84% 36.58% at 50.19% 40.43%, #510000 0%, #510000 0.01%, #1F0000 100%);
}

.error-inner {
    border-left-color: #F30000;
    border-right-color: #F30000;
}

.error-msg {
    color: var(--text-main);
}

.form-passwordExumple {
    text-align: center;
    padding: 10px 0 0;
}

/* ERROR */

/* Warning */

.warning-poligon {
    background: radial-gradient(121.84% 46.18% at 50.19% 40.43%, #FFD600 0%, #815900 100%);
}

.warning-inner {
    border-left-color: #FFC700;
    border-right-color: #FFC700;
}

.warning-msg {
    color: black;
}

/* success notification */

.success-poligon {
    background: radial-gradient(121.84% 36.97% at 50.19% 40.43%, #0E2D43 0%, #000C24 100%);
}

.success-inner {
    border-left-color: var(--text-higlight);
    border-right-color: var(--text-higlight);
}

.success-msg {
    color: var(--text-main);
}

/* ALERT Default End  */

/* form select end */

/* Form end */

.defaultSliderMenu {
    /* background: linear-gradient(180deg, rgba(0, 241, 243, 0.06) -29.11%, rgba(1, 30, 61, 0.06) 99.39%); */
    background: linear-gradient(180deg, rgba(0, 241, 243, .06) 0%, rgba(1, 30, 61, .06) 80.21%);
    padding: 7px;
    height: 70px;
    border-radius: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.defaultSliderMenu-btnArrow {
    background: transparent;
    height: 55px;
    width: 55px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background-image: url(/assets/images/slider-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.defaultSliderMenu-btnArrow:disabled {
    opacity: .5;
    cursor: auto;
}

.defaultSliderMenu-btnArrow--right {
    transform: rotate(180deg);
}

/* footer */

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 31px 30px;
}

.footer-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;
}

.footer-title {
    font-family: var(--font-text);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 33px;
    color: var(--text-higlight);
    padding-bottom: 25px;
}

.footer-contactLine {
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-main);
    line-height: 200%;
    margin-bottom: 5px;
}

.footer-contactLine--underline {
    text-decoration: underline;
}

.footer-contactLine a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

.footer-infoLine {
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
    color: var(--text-main);
    margin-bottom: 5px;
}

.footer-infoLine a {
    color: inherit;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
    margin-bottom: 50px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-additionalLinks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 37px;
}

.footer-additional {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 153.4%;
    color: #FFFFFF;
    cursor: pointer;
}

/* PRELOADER */

.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: var(--text-higlight);
    animation: loading-anim 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loading div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.loading div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.loading div:nth-child(3) {
    left: 56px;
    animation-delay: 0s;
}

@keyframes loading-anim {
    0% {
        top: 8px;
        height: 64px;
    }
    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

.preloader {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: none;
    height: 100%;
    background: #00214199;
}

.pagePreloader {
    position: fixed;
    display: block;
    z-index: 999;
    background: rgba(0, 10, 34, .98);
    background-image: radial-gradient(49.36% 154.16% at 101.12% 2.19%, rgba(0, 110, 174, 0.2) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(44.96% 72.6% at -2.5% 103.98%, rgba(0, 117, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.preloader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.relativeForm {
    position: relative;
}

/* Perloader */

.backToMain {
    background-image: url(../images/back-btn-arrow.svg), linear-gradient(150.96deg, #001124 13.06%, #002041 56.43%, #002143 85.47%);
    background-position: 15px center, center center;
    background-repeat: no-repeat;
    border-radius: 55px;
    display: flex;
    padding: 4px 16px 1px 33px;
    max-width: 135px;
    text-decoration: none;
    position: absolute;
    color: var(--text-main);
    top: 162px;
    left: calc(50% - 600px);
    z-index: 9;
    justify-content: center;
    align-items: flex-start;
}

.backToMain--static {
    position: static;
}

.registerPopup {
    width: 565px;
    max-width: 100%;
    margin: auto;
}

.d-none {
    display: none;
}

.font-zero-hour {
    font-family: 'Zero hour', Arial, sans-serif;
}

.successReg {
    padding-top: 70px;
    padding-bottom: 70px;
}

.successReg-title {
    font-family: var(--font-styled);
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0.355em;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 35px;
}

.successReg-msg {
    text-align: center;
}

.capcha-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    min-height: 70px;
}

.refresh-btn {
    background: transparent;
    border: 1px solid #009ea8;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

@media (max-width:1200px) {
    .d-none-xl {
        display: none;
    }
    a.backToMain {
        left: 44px;
        top: 144px;
        padding: 9px 23px 7px 45px;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 153.4%;
        max-width: 155px;
        background-position: 21px center, center center;
    }
    .backgroundTitle-2line {
        margin: 0 20px;
        width: 82%;
    }
    .backgroundTitle-1line {
        width: calc(100% - 40px);
    }
    .titleH2 {
        font-size: 46px;
        line-height: 54px;
    }
    .backgroundTitle-vertical {
        width: 100%;
        margin: auto;
        right: 0;
        position: static;
        line-height: 65px;
        text-align: center;
        font-size: 68px;
        letter-spacing: .28em;
    }
    .backgroundTitle-projects {
        width: 100%;
        right: 0;
        font-size: 59px;
        text-align: center;
        line-height: normal;
    }
    .backgroundTitle-faq {
        top: -120px;
    }
    .titleH1 {
        font-size: 51px;
        line-height: normal;
        letter-spacing: 0.46em;
        margin-right: -0.46em;
    }
    .titleH1-subtitle {
        font-size: 29px;
        letter-spacing: 0.37em;
    }
    .backgroundTitle--big1 {
        font-size: 78px;
        text-align: center;
        margin-left: 0.2em;
    }
    .backgroundTitle--events {
        font-size: 91px;
        letter-spacing: .28em;
        text-align: center;
    }
    .textBody {
        font-size: 14px;
        line-height: normal;
        line-height: 159.9%;
    }
    .btn {
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        font-family: var(--font-text);
        padding: 19px 52px;
    }
    .btn-small {
        font-size: 17px;
        font-weight: 400;
        font-family: var(--font-label);
        padding: 10px 28px;
        text-transform: unset;
    }
    .backgroundTitle-faq {
        letter-spacing: 0.21em;
        text-align: center;
        width: auto;
        top: 0;
    }
    .footer-container {
        flex-direction: column-reverse;
        padding: 0 19px 56px;
    }
    .footer-right {
        flex-direction: row-reverse;
        align-items: flex-start;
        width: 100%;
    }
    .footer-socials {
        flex-wrap: wrap;
        gap: 12.3px 16px;
        margin-bottom: 0;
        z-index: 5;
        max-width: 500px;
    }
    .footer-link img {
        width: 58px;
        height: 58px;
    }
    .footer-additionalLinks {
        padding-top: 11px;
        gap: 33px;
    }
    .footer-left {
        gap: 41px;
        margin-top: -15px;
    }
    .footer-title {
        padding-bottom: 13px;
    }
    .footer-contactLine {
        font-size: 17px;
        line-height: 153.4%;
    }
    .backgroundTitle-competition {
        font-size: 45px;
        letter-spacing: 0.28em;
    }
    .select-placeholder,
    .select-option,
    .select-selectedLabel {
        font-size: 17px;
    }
    .defaultSliderMenu--ubtransparentAwards {
        background: linear-gradient(180deg, rgb(0 37 59) 0%, rgb(2 25 51) 80.21%);
    }
    .defaultSliderMenu--ubtransparentVerticals {
        background: linear-gradient(180deg, rgb(3 35 56) 0%, rgb(1 22 47) 80.21%);
    }
}

@media (max-width:900px) {
    .footer-left {
        margin-top: -33px;
    }
    .calendarEvent {
        flex-direction: column;
    }
    .calendarEvent-img {
        margin: auto;
        width: auto;
        max-width: 100%;
    }
    .footer-right {}
}

@media (max-width:767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .titleH1 {
        font-size: 28px;
        line-height: 112%;
        letter-spacing: 0.33em;
        margin-right: -0.33em;
    }
    .titleH1-subtitle {
        font-size: 15px;
        letter-spacing: 0.23em;
    }
    .btn {
        font-family: var(--font-button);
        font-size: 22px;
        min-width: 200px;
        padding: 18.5px 27px;
    }
    .btn::before {
        padding: 3px;
    }
    .btn-small {
        font-size: 17px;
        min-width: 0;
        padding: 12px 27px;
    }
    .btn-small::before {
        padding: 2px;
    }
    .advantages .strokeTitle,
    .advantages .strokeTitle-shadow {
        -webkit-text-stroke: 0.4px var(--text-higlight);
    }
    .backgroundTitle--big1 {
        font-size: 47px;
        letter-spacing: .28em;
        margin-left: .14em;
    }
    .backgroundTitle--events {
        font-size: 47px;
        letter-spacing: .28em;
        margin-left: .14em;
    }
    .backgroundTitle-vertical {
        font-size: 35px;
        letter-spacing: .28em;
    }
    .backgroundTitle-faq {
        letter-spacing: .09em;
        font-size: 124px;
        line-height: normal;
    }
    .backgroundTitle-projects {
        font-size: 37px;
        letter-spacing: 0.28em;
    }
    .backgroundTitle-competition {
        font-size: 29px;
    }
    .form-input {
        padding: 9px 22px;
        font-size: 14px;
        line-height: 159.9%;
    }
    .select-current {
        height: 42px;
    }
    .form-input--pasword {
        padding-right: 50px;
    }
    .select-current {
        padding-top: 9px;
    }
    .footer-right {
        flex-direction: column-reverse;
    }
    .footer-left {
        margin-top: 0;
    }
    .footer-container {
        padding: 0 13px 20px 16px;
    }
    .footer-socials {
        gap: 9px 29px;
        justify-content: center;
    }
    .footer-link img {
        width: 43px;
        height: 43px;
    }
    .footer-additionalLinks {
        padding-top: 0;
        padding-bottom: 41px;
    }
    .footer-additional {
        font-size: 14px;
        text-decoration: none;
    }
    .footer-additionalLinks {
        justify-content: center;
        width: 100%;
        gap: 27px;
    }
    .footer-left {
        padding-top: 29px;
        justify-content: center;
    }
    .footer-info {
        min-width: 112px;
    }
    .footer-infoLine,
    .footer-contactLine {
        font-size: 14px;
    }
    .footer-left {
        gap: 16px;
    }
    a.backToMain {
        padding: 4px 13px 1px 35px;
        left: 15px;
        top: 106px;
    }
    .footer-contacts {
        min-width: 122px;
    }
    .notificationBar {
        max-width: 100%;
    }
    .notificationBar>div {
        display: none;
    }
    .notificationBar>div:last-child {
        display: block;
    }
    .grecaptcha-badge {
        /* z-index: 8; */
        /* opacity: 0.4; */
        /* transform: scale(.5); */
        /* right: -157px !important; */
    }
}

@media (max-width:400px) {
    .poligonWrapper {
        padding: 25px 0 32px;
        clip-path: polygon(2.6% 0%, 93.4% 0%, 100% 23px, 100% calc(100% - 18px), 95.85% 100%, 8.5% 100%, 0 calc(100% - 30px), 0% 13px);
        -webkit-clip-path: polygon(2.6% 0%, 93.4% 0%, 100% 23px, 100% calc(100% - 18px), 95.85% 100%, 8.5% 100%, 0 calc(100% - 30px), 0% 13px);
    }
    .poligonWrapper_header {
        height: 25px;
    }
    .poligonWrapper_footer {
        height: 32px;
    }
}

@media (max-width:389px) {
    .backgroundTitle--big1 {
        font-size: 44px;
        letter-spacing: .2em;
    }
    .backgroundTitle-vertical {
        font-size: 33px;
        letter-spacing: .2em;
    }
    .backgroundTitle-competition {
        font-size: 27px;
        letter-spacing: 0.2em;
    }
    .backgroundTitle-faq {
        font-size: 102px;
    }
    .backgroundTitle-projects {
        font-size: 34px;
        letter-spacing: 0.22em;
    }
}

@media (max-width:370px) {
    .titleH2,
    .titleH {
        font-size: 20px;
        line-height: 28px;
    }
}

/*scrollbars*/

@media (min-width: 1030px) {
    *::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    *::-webkit-scrollbar-track {
        background: #000A22;
    }
    *::-webkit-scrollbar-thumb {
        background-color: #0ed1b7;
    }
    * {
        scrollbar-color: #0ed1b7 #000A22;
        scrollbar-width: thin;
    }
}

/*END scrollbars*/

.g-recaptcha {
    display: flex;
    justify-content: center;
}