/*------------------------------------*\
  #NORMALIZE
\*------------------------------------*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: inherit;
}

a {
    cursor: pointer;
    text-decoration: none;

    color: currentColor;
}

img {
    max-width: 100%;
    height: auto;

    object-fit: cover;
}

button,
input,
select {
    font-family: inherit;

    cursor: pointer;

    border: 0;
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.36;
}

/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/

/* Basic variables */

/* Root */

:root {
    /* Colors */
    --primary: #0084ff;
    --primary-rgb: 0, 132, 255;
    --accent: #4be99d;
    --accent-rgb: 75, 233, 157;
    --dark: #0d111c;
    --dark-rgb: 13, 17, 28;
    --dark-muted: #131929;
    --dark-muted-rgb: 19, 25, 41;
    --danger: #fe3030;
    --danger-rgb: 254, 48, 48;
    --light-gray: #f9f9f9;
    --light-gray-rgb: 249, 249, 249;
    --gray: #cdcdcd;
    --gray-rgb: 205, 205, 205;
    --light: #fff;
    --light-rgb: 255, 255, 255;
    --black: #000;
    --black-rgb: 0, 0, 0;
    /* Typography */
    --font-family: Inter, Tahoma, Helvetica, Arial, sans-serif;
    --line-height: 1.5;
    --title-size: 50px;
    --title-mid-size: 40px;
    --font-size: 16px;
    --small-font-size: 12px;
    /* Other */
    --bs-gutter-x: 20px;
    --gap: 10px;
    --offset: 20px;
    --offset-md: 40px;
    --offset-big: 60px;
    --container-width: 1460px;
    --container-width-big: 1840px;
    --container-width-mid: 1240px;
    --container-width-small: 740px;
    --radius-sm: 10px;
    --radius: 20px;
    --section-padding: 80px;
    --easing: all .2s cubic-bezier(.215, .61, .355, 1);
    --text-color-dark: rgba(0, 0, 0, .85);
}

/*------------------------------------*\
  #FONTS
\*------------------------------------*/

@font-face {
    font-family: 'Inter';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: local('Inter Regular'), local('Inter-Regular'), url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-weight: 500;
    font-style: normal;

    font-display: swap;
    src: local('Inter Medium'), local('Inter-Medium'), url('../fonts/Inter-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: local('Inter Bold'), local('Inter-Bold'), url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-weight: 600;
    font-style: normal;

    font-display: swap;
    src: local('Inter Light'), local('Inter-SemiBold'), url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff');
}

/* Text Alignment */

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

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

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

/* Text Transform */

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* Text Decoration */

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

.text-overline {
    text-decoration: overline;
}

.text-line-through {
    text-decoration: line-through;
}

.title {
    font-size: calc(40px + 20 * ((100vw - 576px) / 1344));
    font-weight: 700;
    line-height: 1.18;

    margin-bottom: var(--offset);

    text-transform: uppercase;
}

.title-sm {
    font-size: calc(18px + 22 * ((100vw - 576px) / 1344));
    font-weight: 700;
    line-height: 1.18;

    margin-bottom: var(--offset);

    text-align: left;
    text-transform: uppercase;
}

.main-content-block a {
    text-decoration: underline;
}

.main-content-block a:hover {
    text-decoration: none;
}

.main-content-block h1,
.main-content-block h2,
.main-content-block h3,
.main-content-block h4 {
    font-size: 40px;
    line-height: 1.2;

    display: inline-block;

    margin-bottom: var(--offset);

    background-image: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.title-inner-gradient {
    font-size: 40px;
    line-height: 1.2;

    display: inline-block;

    margin-bottom: var(--offset);

    background-image: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.title-inner {
    font-size: 40px;
    line-height: 1.2;

    margin-bottom: var(--offset);

    color: var(--light);
}

.text-gradient {
    display: inline-block;

    background-image: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.title-adaptive {
    font-size: calc(40px + 20 * ((100vw - 576px) / 1344));
    font-weight: 700;
    line-height: 1.2;

    margin-bottom: var(--offset);

    text-transform: uppercase;
}

/*------------------------------------*\
  #OTHER
\*------------------------------------*/

.is-hidden {
    display: none;
}

.w-100 {
    width: 100%;
}

.visually-hidden {
    position: absolute;

    overflow: hidden;
    clip: rect(0 0 0 0);

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    white-space: nowrap;

    border: 0;

    clip-path: inset(50%);
}

.link-underline {
    position: relative;
}

.link-underline::before {
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 100%;
    height: 2px;

    content: '';
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    transform: translate(-50%, 0) scaleX(0);
    transform-origin: center;

    background-color: var(--accent);
}

.link-underline:hover::before {
    transition-delay: .1s;
    transform: translate(-50%, 0) scaleX(1);
}

.fw-400 {
    font-weight: 400;
}

.fw-700 {
    font-weight: 700;
}

.list-unstyled {
    list-style: none;
}

.color-primary {
    color: var(--primary);
}

.color-accent {
    color: var(--accent);
}

.gradient-bg {
    background-image: linear-gradient(131deg, #06f, #06f 30%, #71aaff 64%, #00ff85);
}

html {
    height: 100%;
    min-height: 100%;

    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);

    position: relative;

    min-width: 320px;
    height: 100%;
    min-height: 568px;

    word-wrap: break-word;

    color: rgba(var(--light-rgb), .85);
    background-color: var(--dark);

    scroll-behavior: smooth;
    text-size-adjust: none;
    -webkit-text-size-adjust: 100%;
}

body.mobile-nav-visible {
    overflow: hidden;
}

.wrapper {
    position: relative;

    display: flex;
    overflow-x: hidden;
    flex-direction: column;

    height: 100%;
    min-height: 100%;

    justify-content: space-between;
    scroll-behavior: smooth;
}

.wrapper.nav-menu-opened {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--bs-gutter-x);
}

.container-wide {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--bs-gutter-x);
}

.container-small {
    max-width: var(--container-width-small);
}

.container-mid {
    width: 100%;
    max-width: var(--container-width-mid);
    margin: 0 auto;
    padding: 0 var(--bs-gutter-x);
}

main,
section {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: var(--section-padding) 0;

    justify-content: center;
}

a {
    font: inherit;

    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.error404 main .container {
    max-width: var(--container-width-small);
}

.error404 main .btn {
    min-width: 200px;
}

.error404 main {
    padding: 40px 0 70px;
}

.page-faq main>.container,
.careers-template-default main>.container,
.post-type-archive-careers main>.container {
    max-width: var(--container-width-mid);
}

.page-privacy-policy main .container,
.page-terms-conditions main .container,
.page-referall-program-tc main .container {
    max-width: var(--container-width-mid);
}

.page-inner main {
    padding: 120px 0;
}

.events-template-default main {
    padding-top: 20px;
}

.events-template-default main .container {
    max-width: 840px;
}

/* .events-template-default main .title-inner
{
    margin-bottom: var(--offset-md);
} */

.blog-template-default {
    position: relative;

    color: var(--dark);
    background-color: var(--light);

    justify-content: flex-start;
}

.blog-template-default .nav {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;

    background-color: transparent;
}

.blog-template-default main {
    padding-top: 0;
}

.blog-template-default main .container {
    max-width: 840px;
}

.post-type-archive-blog main {
    padding: 60px 0;
}

.post-type-archive-events main {
    padding: 60px 0;
}

/*------------------------------------*\
  #BLOCKS
\*------------------------------------*/

/*=============================================
=            Nav          =
=============================================*/

.nav {
    padding: var(--offset) 0;

    transition: padding .3s linear;

    color: var(--light);
    background-color: var(--dark);
}

.nav.sticky {
    position: sticky;
    z-index: 10;
    top: 0;

    padding: var(--offset) 0;

    transition: padding .3s linear;

    background-color: var(--dark);
}

.custom-logo-link,
.nav-logo {
    position: relative;
    z-index: 11;

    display: block;

    flex-shrink: 0;
}

.nav-logo img,
.custom-logo-link img {
    width: 170px;
    height: 40px;
}

.nav-inner {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.nav-block {
    display: flex;

    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    font-weight: 700;

    display: flex;

    width: 100%;

    justify-content: space-between;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu a {
    position: relative;

    display: inline-flex;
}

.nav-menu a::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;

    width: calc(100% - 2px);
    height: 2px;
    height: 1px;

    content: '';
    transition: opacity .5s;

    opacity: 0;
    color: currentColor;
    background-color: currentColor;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu-buttons {
    display: flex;

    align-items: center;
    gap: var(--offset);
}

.nav-menu-buttons .nav-menu-btn {
    min-width: 125px;
}

.nav-menu-buttons .nav-menu-btn::before {
    display: none;
}

.nav-menu-links {
    position: relative;
    z-index: 11;

    display: flex;
    flex-direction: row;

    margin: 0 auto;

    align-items: center;
    gap: var(--offset-big);
}

/* Mobile navigation */

.nav-mobile-button,
.nav-image {
    display: none;
}

.breadcrumbs {
    display: flex;

    margin-bottom: var(--offset-md);

    align-items: center;
}

.breadcrumbs-item {
    font-size: 20px;
    font-weight: 700;

    position: relative;

    display: inline-flex;

    text-transform: capitalize;

    color: var(--light);

    align-items: center;
}

.breadcrumbs-item.is-active {
    color: var(--primary);
}

.breadcrumbs-item.is-active:before {
    padding: 0 5px;

    content: '/';
}

.breadcrumbs-item a {
    display: inline-flex;

    text-decoration: none;

    color: inherit;

    align-items: center;
}

.breadcrumbs-item a:before {
    display: inline-block;

    margin-bottom: 1px;
    padding: 5px;

    content: '';
    transform: rotate(135deg);
    vertical-align: top;

    border: solid var(--light);
    border-width: 0 2px 2px 0;
}

.breadcrumbs-item a:hover {
    color: rgba(255, 255, 255, .75);
}

.breadcrumbs-item a span {
    padding-left: 24px;
}

.article-list {
    overflow-y: hidden;

    margin-bottom: var(--section-padding);

    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
}

.article-link {
    display: block;
    overflow: hidden;

    border-radius: var(--radius-sm);
    background-color: var(--dark);

    scroll-snap-align: center;
}

.article-link:hover img,
.article-top:hover img {
    transition: transform .3s ease;
    transform: scale(1.1);
}

.article-img {
    display: block;
    width: 100%;
    min-height: 150px;
    max-height: 215px;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
    transform: scale(1);

    border-radius: inherit;
}

.form-block-search {
    max-width: 1200px;
    margin: 0 auto var(--offset-md);
}

.form-block-search .form-input {
    position: relative;
}

.form-block-search .form-input:before {
    position: absolute;
    top: 50%;
    left: 20px;

    width: 24px;
    height: 24px;

    content: '';
    transform: translateY(-50%);

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5LjkgMjAuOTc1TDEzLjMyNSAxNC40QzEyLjgyNSAxNC44MzMzIDEyLjI0MiAxNS4xNzA4IDExLjU3NiAxNS40MTI1QzEwLjkxIDE1LjY1NDEgMTAuMjAxNCAxNS43NzUgOS40NSAxNS43NzVDNy42NDczIDE1Ljc3NSA2LjEyMTYzIDE1LjE1IDQuODcyOTggMTMuOUMzLjYyNDMzIDEyLjY1IDMgMTEuMTQxNiAzIDkuMzc0OThDMyA3LjYwODMxIDMuNjI1IDYuMDk5OTggNC44NzUgNC44NDk5OEM2LjEyNSAzLjU5OTk4IDcuNjM3NSAyLjk3NDk4IDkuNDEyNSAyLjk3NDk4QzExLjE4NzUgMi45NzQ5OCAxMi42OTU4IDMuNTk5OTggMTMuOTM3NSA0Ljg0OTk4QzE1LjE3OTIgNi4wOTk5OCAxNS44IDcuNjA5NTYgMTUuOCA5LjM3ODczQzE1LjggMTAuMDkyOSAxNS42ODMzIDEwLjc4MzMgMTUuNDUgMTEuNDVDMTUuMjE2NyAxMi4xMTY2IDE0Ljg2NjcgMTIuNzQxNiAxNC40IDEzLjMyNUwyMSAxOS44NzVMMTkuOSAyMC45NzVaTTkuNDI1IDE0LjI3NUMxMC43NzkyIDE0LjI3NSAxMS45MzAyIDEzLjc5NTggMTIuODc4MSAxMi44Mzc1QzEzLjgyNiAxMS44NzkxIDE0LjMgMTAuNzI1IDE0LjMgOS4zNzQ5OEMxNC4zIDguMDI0OTggMTMuODI2IDYuODcwODEgMTIuODc4MSA1LjkxMjQ4QzExLjkzMDIgNC45NTQxNCAxMC43NzkyIDQuNDc0OTggOS40MjUgNC40NzQ5OEM4LjA1Njk1IDQuNDc0OTggNi44OTQxIDQuOTU0MTQgNS45MzY0NSA1LjkxMjQ4QzQuOTc4ODIgNi44NzA4MSA0LjUgOC4wMjQ5OCA0LjUgOS4zNzQ5OEM0LjUgMTAuNzI1IDQuOTc4ODIgMTEuODc5MSA1LjkzNjQ1IDEyLjgzNzVDNi44OTQxIDEzLjc5NTggOC4wNTY5NSAxNC4yNzUgOS40MjUgMTQuMjc1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.form-block-search .screen-reader-text {
    display: none;
}

.form-block-search input[type="submit"] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    background: transparent;
    border: none;
    font-size: 0;
    cursor: pointer;
}

.form-block-search input {
    font-size: 26px;
    line-height: 1;

    display: inline-block;
    overflow: hidden;

    width: 100%;
    padding: 14px 20px 14px 55px;

    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;

    color: var(--light);
    border: none;
    border-radius: 250px;
    background: #181e28;

    -webkit-appearance: none;
    cursor: auto;
}

.form-block-search input:focus {
    outline: none;
}

.filter-buttons {
    display: flex;

    margin-bottom: var(--offset);

    justify-content: center;
    flex-wrap: wrap;
}

.article-items {
    margin-top: var(--offset);
}

.btn-outline.active span {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline.active:after {
    background: var(--primary);
}

.filter-buttons .btn {
    width: auto;
    min-width: auto;
    height: 60px;
    margin: 0 10px 20px;

    text-transform: capitalize;
}

.filter-buttons .btn span {
    padding: 0 30px;
}

.pagination {
    display: flex;

    margin-top: var(--offset-md);
    padding: 0;

    list-style: none;

    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination .nav-links {
    display: flex;

    margin-top: var(--offset-md);
    padding: 0;

    list-style: none;

    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination .nav-links>a,
.pagination .nav-links>span {
    margin-right: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: all .3s ease;
    text-decoration: none;
}

.pagination .nav-links>span {
    opacity: 0.7;
}

.pagination .nav-links a:hover {
    opacity: .7;
}

.pagination .nav-links a.prev,
.pagination .nav-links a.next {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 150px;
    max-width: 200px;
    height: 50px;
    padding: 6px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    color: var(--light);
    border: none;
    border-radius: 118px;
    outline: none;
    background-color: var(--primary);
    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: auto;
    height: 50px;
    margin-right: 0;
    padding: 0;
}

.pagination .nav-links a.prev {
    margin-right: 30px;
}

.pagination .nav-links a.prev:after,
.pagination .nav-links a.next:after {
    position: absolute;
    z-index: -1;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    content: '';
    transition: background .3s ease;
    border-radius: inherit;
    background: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
}

.pagination .nav-links a.prev span,
.pagination .nav-links a.next span {
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
    border-radius: inherit;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.pagination .nav-links a.prev:hover,
.pagination .nav-links a.next:hover {
    opacity: 1;
}

.pagination .nav-links a.prev:hover:after,
.pagination .nav-links a.next:hover:after {
    background: var(--primary);
}

.pagination .nav-links a.prev:hover span,
.pagination .nav-links a.next:hover span {
    background-color: var(--primary);
}

.pagination-item {
    margin-right: 30px;
    margin-bottom: 15px;
}

.pagination-item:last-child {
    margin-right: 0;
}

.pagination-link {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    transition: all .3s ease;
    text-decoration: none;
}

.pagination-link:hover {
    opacity: .7;
}

.pagination .btn {
    width: auto;
    min-width: auto;
    height: 50px;
}

.pagination .btn span {
    padding: 0 20px;
}

.page-404-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;

    margin-bottom: var(--offset);
}

.page-404-title span {
    font-size: 20px;
    font-weight: 700;
}

.error404 .main-img {
    max-width: 80%;
}

.line-text-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;

    --line-width: 2940px;
}

.line {
    width: calc(var(--line-width) * 2);
    height: 40px;

    animation: lineSlide 60s linear infinite alternate;

    background-image: url('../img/ribbon.svg');
    background-repeat: repeat-x;
    background-size: contain;
}

@keyframes lineSlide {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(calc(var(--line-width) * -1));
        /* The image width */
    }
}

.faq-title {
    margin-bottom: 22px;
}

.faq-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;

    max-width: 800px;
    margin-bottom: 70px;
}

.faq-block .faq-item {
    position: relative;
    z-index: 1;

    margin-bottom: 10px;
    padding: 0 20px 10px;

    color: var(--light);
    border-radius: var(--radius-sm);
    background-color: var(--dark-muted);
}

.faq-item img {
    display: block;
    margin-bottom: 10px;
}

.faq-block .faq-item.is-active:after {
    transition: background .3s ease;

    background: var(--dark-muted);
}

.faq-block .faq-item:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    content: '';

    border-radius: inherit;
    background: var(--dark-muted);
}

.faq-block .faq-item:last-child {
    margin-bottom: 0;
}

.faq-block .faq-title {
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;

    display: flex;

    width: 100%;
    margin: 0;
    padding: 20px 0 0;

    cursor: pointer;
    text-align: start;

    color: inherit;
    border: none;
    border-radius: inherit;
    background-color: var(--dark-muted);

    justify-content: space-between;
    align-items: center;
}

.faq-block .faq-title:after {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-left: 15px;

    content: '';
    transition: transform .3s ease;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE0MDhfMjM3MSkiPgo8cGF0aCBkPSJNMzAuNzI3OSA1LjI3MjA2QzI3LjMyODIgMS44NzIzNCAyMi44MDc5IDAgMTggMEMxMy4xOTIxIDAgOC42NzE3OCAxLjg3MjM0IDUuMjcyMDYgNS4yNzIwNkMxLjg3MjM0IDguNjcxNzggMCAxMy4xOTIxIDAgMThDMCAyMi44MDc5IDEuODcyMzQgMjcuMzI4MiA1LjI3MjA2IDMwLjcyNzlDOC42NzE3OCAzNC4xMjc3IDEzLjE5MjEgMzYgMTggMzZDMjIuODA3OSAzNiAyNy4zMjgyIDM0LjEyNzcgMzAuNzI3OSAzMC43Mjc5QzM0LjEyNzcgMjcuMzI4MiAzNiAyMi44MDc5IDM2IDE4QzM2IDEzLjE5MjEgMzQuMTI3NyA4LjY3MTc4IDMwLjcyNzkgNS4yNzIwNlpNMTggMzMuMTg3NUM5LjYyNTY3IDMzLjE4NzUgMi44MTI1IDI2LjM3NDMgMi44MTI1IDE4QzIuODEyNSA5LjYyNTY3IDkuNjI1NjcgMi44MTI1IDE4IDIuODEyNUMyNi4zNzQzIDIuODEyNSAzMy4xODc1IDkuNjI1NjcgMzMuMTg3NSAxOEMzMy4xODc1IDI2LjM3NDMgMjYuMzc0MyAzMy4xODc1IDE4IDMzLjE4NzVaTTE5LjQwNjIgMTYuNTkyNEgyNS43MzQ0VjE5LjQwNDlIMTkuNDA2MlYyNS43MzNIMTYuNTkzOFYxOS40MDQ5SDEwLjI2NTZWMTYuNTkyNEgxNi41OTM4VjEwLjI2NDNIMTkuNDA2MlYxNi41OTI0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzE0MDhfMjM3MSkiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzE0MDhfMjM3MSIgeDE9IjE4IiB5MT0iMCIgeDI9IjE4IiB5Mj0iMzYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzJBRjU5OCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDlFRkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xNDA4XzIzNzEiPgo8cmVjdCB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: contain;
}

.faq-block .faq-title--active::after {
    transition: transform .3s ease;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE0MDhfMjM1OSkiPgo8cGF0aCBkPSJNMzAuNzI3OSA1LjI3MjA2QzI3LjMyODIgMS44NzIzNCAyMi44MDc5IDAgMTggMEMxMy4xOTIxIDAgOC42NzE3OCAxLjg3MjM0IDUuMjcyMDYgNS4yNzIwNkMxLjg3MjM0IDguNjcxNzggMCAxMy4xOTIxIDAgMThDMCAyMi44MDc5IDEuODcyMzQgMjcuMzI4MiA1LjI3MjA2IDMwLjcyNzlDOC42NzE3OCAzNC4xMjc3IDEzLjE5MjEgMzYgMTggMzZDMjIuODA3OSAzNiAyNy4zMjgyIDM0LjEyNzcgMzAuNzI3OSAzMC43Mjc5QzM0LjEyNzcgMjcuMzI4MiAzNiAyMi44MDc5IDM2IDE4QzM2IDEzLjE5MjEgMzQuMTI3NyA4LjY3MTc4IDMwLjcyNzkgNS4yNzIwNlpNMTggMzMuMTg3NUM5LjYyNTY3IDMzLjE4NzUgMi44MTI1IDI2LjM3NDMgMi44MTI1IDE4QzIuODEyNSA5LjYyNTY3IDkuNjI1NjcgMi44MTI1IDE4IDIuODEyNUMyNi4zNzQzIDIuODEyNSAzMy4xODc1IDkuNjI1NjcgMzMuMTg3NSAxOEMzMy4xODc1IDI2LjM3NDMgMjYuMzc0MyAzMy4xODc1IDE4IDMzLjE4NzVaTTE5LjQwNjIgMTYuNTkyNEgyNS43MzQ0VjE5LjQwNDlIMTkuNDA2MkgxNi41OTM4SDEwLjI2NTZWMTYuNTkyNEgxNi41OTM4SDE5LjQwNjJaIiBmaWxsPSIjM0Y1MDdEIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTQwOF8yMzU5Ij4KPHJlY3Qgd2lkdGg9IjM2IiBoZWlnaHQ9IjM2IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
}

.faq-block .faq-description {
    font-size: 16px;

    overflow: hidden;

    max-height: 0;
    padding-top: 10px;

    transition: opacity .3s ease, max-height .3s ease;

    opacity: 0;
}

.faq-block .faq-description img {
    margin-top: 20px;
}

.faq-block .faq-description--visible {
    opacity: 1;
}

.content-box {
    margin-bottom: var(--offset-big);
}

.main-content-block>div {
    margin-bottom: var(--offset-big);
}

.content-box-md-gap {
    margin-bottom: var(--offset-md);
}

main ul {
    list-style-position: inside;
}

.content-box p {
    margin-bottom: 20px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.single-article {
    margin-bottom: var(--offset-md);

    text-align: center;
}

.single-article-header {
    position: relative;

    margin-bottom: 40px;

    text-align: center;

    border-radius: var(--radius-sm);
}

.single-article-header:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    content: '';

    border-radius: inherit;
    background: linear-gradient(120deg, rgba(1, 103, 255, .2) 20.45%, rgba(1, 255, 133, .2) 91.04%), linear-gradient(0deg, rgba(13, 17, 28, .7) 0%, rgba(13, 17, 28, .7) 100%);
}

.single-article-header .title {
    font-size: 22px;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    text-align: center;
}

.single-article-header .title strong {
    display: block;
}

.single-article-header img {
    display: block;

    border-radius: inherit;
}

.events-template-default .single-article-content {
    text-align: left;
}

.events-template-default .single-article-content a:hover {
    text-decoration: underline;
}

.single-article-info {
    font-size: 18px;
    line-height: 1.44;
    margin-bottom: 40px;
    text-align: left;
    margin-top: 40px;
}

.single-article-info a {
    display: inline-block;
    background-image: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-article-info strong {
    font-weight: 400;
    display: block;
}


.single-content li {
    list-style-position: inside;
}

.single-content img {
    display: block;
}

.single-content a {
    color: var(--primary);
    text-decoration: underline;
}

.single-content a:hover {
    text-decoration: none;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left;
    font-size: 20px;
    display: inline-block;
    margin: var(--offset) 0;
}

.single-content h1 strong,
.single-content h2 strong,
.single-content h3 strong,
.single-content h4 strong,
.single-content h5 strong,
.single-content h6 strong,
.single-content h1 b,
.single-content h2 b,
.single-content h3 b,
.single-content h4 b,
.single-content h5 b,
.single-content h6 b {
    font-weight: inherit;
}

.single-content p {
    margin-bottom: var(--offset);
}

.single-content .btn {
    margin: 50px auto 0;
    display: flex;
    color: var(--light);
    text-decoration: none;
}

.single-blog {
    margin-bottom: var(--offset-md);
}

.single-blog-header {
    position: relative;
    z-index: 1;

    margin-bottom: 40px;
    padding: 130px 0 20px;

    color: var(--light);
    background: #000 url('../img/blog-default-bg.jpg') top center/cover no-repeat;
}

.single-blog-header .title-inner {
    font-size: 16px;

    color: var(--light);
}

.single-blog-info img {
    max-width: 30px;

    border-radius: 50%;

    object-fit: cover;
}

.single-blog-inner {
    font-size: 12px;
    font-weight: 700;

    padding-left: 8px;

    text-align: left;
}

.single-blog-author {
    text-transform: capitalize;
}

.single-blog-date {
    color: rgba(255, 255, 255, .6);
}

.single-blog-content .title-inner {
    font-size: 20px;
    font-weight: 700;

    color: var(--dark);
}

.single-blog .content-box {
    padding-bottom: 40px;

    text-align: left;
}

.single-blog .content-box:last-child {
    padding-bottom: 0;
}

.single-blog .content-box p {
    font-size: 18px;

    margin-bottom: 20px;
}

.single-blog .content-box p:last-child {
    margin-bottom: 0;
}

.article-items {
    margin-bottom: var(--section-padding);
}

.article-items .article {
    display: flex;
    flex-direction: column;

    height: 100%;

    border-radius: 10px;
    background-color: #131929;
}

.article-top {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.article-top .article-img-title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    pointer-events: none;
    text-align: center;
}

.article-img-title strong {
    display: block;
}

.article-items .article-img {
    display: block;

    width: 100%;
    height: auto;
    max-height: 280px;

    border-radius: 10px 10px 0 0;

    object-fit: cover;
    object-position: top;
}

.article-items .article-content {
    display: flex;
    flex-direction: column;

    padding: 40px;

    flex-grow: 1;
}

.article-items .article-content a:hover {
    text-decoration: underline;
}

.article-items .article-title {
    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.article-items .article-text {
    font-size: 16px;

    margin-bottom: 50px;

    color: rgba(249, 249, 249, .6);
}

.article-items .article-bottom {
    font-size: 16px;
    font-weight: 700;

    display: flex;

    margin-top: auto;

    justify-content: space-between;
    align-items: center;
}

.article-items .article-date {
    color: rgba(249, 249, 249, .6);
}

.article-items .article-author {
    font-size: 14px;
}

.carrier-content>div {
    margin-bottom: var(--offset-big);
}

.carrier-content h1,
.carrier-content h2,
.carrier-content h3,
.carrier-content h4,
.carrier-content h5 {
    font-size: 40px;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: var(--offset);
    background-image: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-title {
    margin-bottom: var(--offset);
}

.careers-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;

    margin-bottom: var(--offset-md);
}

.careers-block {
    padding-bottom: var(--section-padding);
}

.careers-block .careers-card {
    margin-bottom: var(--offset-big);
}

.careers-cards {
    padding-bottom: var(--section-padding);
}

.careers-cards .careers-card {
    height: 100%;
}

.careers-card {
    display: flex;
    flex-direction: column;

    margin-bottom: var(--offset);
    padding: 20px;

    color: var(--light);
    border-radius: var(--radius-sm);
    background-color: var(--dark-muted);

    align-items: center;
    justify-content: space-between;
}

.careers-header {
    display: flex;

    width: 100%;

    justify-content: space-between;
}

.careers-caption {
    font-weight: 500;

    padding-right: var(--offset);

    text-transform: capitalize;

    color: var(--gray);
}

.careers-link {
    color: var(--primary);
}

.index-animation {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 1920px;
    min-height: 572px;
    margin: 0 auto;

    justify-content: space-between;
}

.index-video-wrapper {
    position: absolute;
    top: 0;
    left: 50%;

    width: 100%;
    max-width: 440px;
    height: 100%;

    transform: translateX(-50%);
    pointer-events: none;
}

.index-video-wrapper video {
    position: absolute;

    display: block;

    max-width: 100%;
    height: auto;

    object-fit: contain;
}

.index-video-wrapper .index-video-mob {
    aspect-ratio: 75/112;
}

.index-video-wrapper .index-video-web {
    aspect-ratio: 32/15;
}

.index-video-wrapper .index-video-notice {
    font-size: calc(14px + 6 * ((100vw - 576px) / 1344));
    line-height: 1.2;

    position: absolute;
    top: var(--section-padding);
    right: 20px;

    width: 100%;
    max-width: 160px;

    pointer-events: none;

    color: rgba(var(--light-rgb), .85);
}

.index-video-wrapper .index-video-notice br {
    display: none;
}

.slider-list {
    margin-top: var(--offset);
}

.slider-card {
    padding: 1px;

    cursor: pointer;
    user-select: none;
    transition: transform 1400ms ease;
    transform: scale(.9) translateY(5px) !important;

    border-radius: var(--radius);
}

.slider-card.swiper-slide-active {
    transform: scale(1) translateY(0) !important;
}

.slider-card-wrap {
    display: flex;
    flex-direction: column;

    padding: var(--offset);

    border-radius: var(--radius);
    background-color: var(--dark);

    gap: var(--offset);
}

.slider-content-top {
    display: flex;
    flex-direction: column;

    gap: var(--offset);
}

.slider-content-bottom {
    font-weight: 700;
}

.slider-author {
    font-size: 40px;
    font-weight: 500;
}

.partner-image-col {
    position: relative;

    width: 100%;
    max-width: 670px;

    a {
        display: block;
    }
}

.partner-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.partner-image {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: var(--offset);
}

.join-container {
    max-width: 1760px;
}

.join-box {
    position: relative;

    display: flex;
    flex-direction: column;

    border-radius: var(--radius);
    background-image: url('../img/join-image-mob.jpg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;

    aspect-ratio: 18/23;
    justify-content: center;
    align-items: center;
}

.join-text {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 690px;

    text-align: center;

    gap: var(--offset);
    justify-content: center;
    align-items: center;
}

.join-decor-box {
    display: none;
}

.events {
    background-image: url('../img/6559e116d628c3fb6492a307_events-decor-bg.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}

.events-slider {
    padding-bottom: 40px;
}

.events-list {
    /*display: flex;*/
    /*overflow-x: auto;*/

    /*margin: var(--offset-md) 0;*/
    padding-bottom: 20px;

    /*gap: var(--offset);*/
    /*scroll-snap-type: x mandatory;*/
    /*scroll-padding: 50%;*/
}

.events-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.events-list::-webkit-scrollbar-track {
    background-image: linear-gradient(131deg, #06f, #06f 30%, #71aaff 64%, #00ff85);
}

.events-list::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}

.events-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;

    width: 100%;
    min-width: 280px;
    max-width: 460px;
    padding: 2px;

    cursor: pointer;
    transition: transform .3s ease-in-out;

    border-radius: var(--radius-sm);

    flex-shrink: 0;
    scroll-snap-align: start;
}

.events-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-sm);
    background-color: var(--dark);
}

.events-wrap img {
    display: block;
    max-height: 280px;
    height: auto;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    user-select: none;
}

.events-text {
    font-weight: 700;
    color: var(--light);
    padding: 20px 40px 40px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background-color: var(--dark);
}

.events-title {
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 10px;

    text-transform: capitalize;
}

.events-line-text-section {
    margin-top: var(--section-padding);
}

.about-box {
    position: relative;

    display: flex;
    flex-direction: column;

    margin-bottom: var(--section-padding);

    background-image: url('../img/about-head-mob.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;

    justify-content: flex-end;
    align-items: center;
    aspect-ratio: 1/1;
}

.about-item {
    font-size: 24px;
    font-weight: 700;

    position: relative;

    display: flex;

    width: 100%;
    width: 100%;
    max-width: 556px;
    height: 75px;

    text-transform: uppercase;

    border: 4px solid #fff;
    border-radius: 100px;

    align-items: center;
    justify-content: center;
}

.about-item.about-item-middle {
    z-index: 1;

    transform: rotate(15deg);
}

.about-item.about-item-bottom {
    top: 10px;

    border-color: var(--primary);
    background-color: var(--primary);
}

.about-content {
    display: flex;
    flex-direction: column;

    gap: var(--offset);
}

.hero {
    margin-top: auto;
}

.hero-title {
    text-transform: uppercase;
}

.hero-img {
    margin-top: calc(var(--section-padding) * var(--divider));

    --divider: -1;
}

.hero-buttons {
    display: flex;

    max-width: 420px;

    justify-content: space-between;
    gap: var(--gap);
}

.hero-buttons .btn {
    flex-grow: 1;
}

.aff-section {
    color: var(--dark);
    background-color: var(--light);
}

.aff-box {
    margin-bottom: var(--offset-big);

    color: var(--dark);
    background-color: var(--light);
}

.aff-box:last-child {
    margin-bottom: 0;
}

.aff-list {
    width: 100%;
    max-width: 600px;
}

.aff-list li {
    margin-bottom: var(--offset);
}

.aff-list-title {
    font-size: 20px;
    font-weight: 700;

    display: block;
}

.contact {
    color: var(--text-color-dark);
    background-color: var(--light);
}

.contact-dark {
    color: var(--light);
    background-color: var(--dark);
}

.contact-heading {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: var(--offset-md);
}

.contact-heading .contact-title {
    margin-bottom: var(--offset);
}

.contact-notice {
    font-size: 12px;
    line-height: 1.35;

    margin-top: 10px;

    color: rgba(255, 255, 255, .5);
}

#forminator-module-53,
#forminator-module-52 {
    font: inherit;
    display: flex;
  flex-direction: column;
}

.forminator-edit-module {
    display: none;
}

.contact-form form {
    font: inherit;
}

#forminator-module-53 label,
#forminator-module-52 label,
.contact-form label {
    font-size: 12px!important;
    font-weight: normal!important;
    line-height: 1;

    display: block;

    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    -webkit-transform: initial!important;
    transform: initial!important;
    color: var(--text-color-muted);
}
/* .et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form[data-design=material] .forminator-error-message, .forminator-ui.forminator-custom-form[data-design=material] .forminator-error-message {
  margin-top: 4px!important;
}
.forminator-ui#forminator-module-53.forminator-design--material .forminator-input, .forminator-ui#forminator-module-53.forminator-design--material .forminator-input input {
  color: #fff!important;
}
#forminator-module-53.forminator-design--material .forminator-input--wrap:after {
  display: none!important;
}
.et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form[data-design=material] .forminator-error-message, .forminator-ui.forminator-custom-form[data-design=material] .forminator-error-message {
  line-height: initial!important;
}
.forminator-ui#forminator-module-53.forminator-design--material .forminator-input, .forminator-ui#forminator-module-53.forminator-design--material .forminator-input input {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form[data-design=material] .forminator-floating--input, .forminator-ui.forminator-custom-form[data-design=material] .forminator-floating--input {
  -webkit-transform: initial;
    transform: initial;
}
#forminator-module-53.forminator-design--material .forminator-label[class*="forminator-floating-"] {
      font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
} */
#forminator-module-53 .forminator-field,
#forminator-module-52 .forminator-field,
.contact-form .form-field {
    margin-bottom: 20px;
}

.forminator-error {
  display: none;
}
.forminator-success {
  order: 10;
  text-align: center;
  color: green;
  font-weight: 700;
  font-size: 24px;
}

#forminator-module-53 input,
#forminator-module-53 textarea,
#forminator-module-52 input,
#forminator-module-52 textarea,
.contact-form input,
.contact-form textarea {
    display: block;

    width: 100%;
    height: 44px;
    padding: 10px;

    transition: all .3s ease;

    color: var(--text-color-dark);
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: var(--radius);
}

#forminator-module-53 input:focus,
#forminator-module-53 textarea:focus,
#forminator-module-52 input:focus,
#forminator-module-52 textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid var(--dark);
}

#forminator-module-53 textarea,
#forminator-module-52 textarea,
.contact-form textarea {
    min-height: 64px;
    margin-bottom: 4px;

    resize: none;

    background-color: inherit;
}

.contact-form small {
    line-height: 1;

    display: block;
    
    margin-top: 20px;
    margin-bottom: 20px;

    color: var(--text-color-muted);
}

#forminator-module-53 .forminator-field,
#forminator-module-52 .forminator-field,
.contact-form .form-field {
    position: relative;
}

.forminator-error-message,
.contact-form .error {
    font-size: 12px;
    line-height: 1;

    position: absolute;
    top: 100%;
    left: 0;

    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 4px;

    color: var(--danger);
}

#forminator-module-53 .forminator-icon-warning:before {
  color: var(--danger);
  margin-right: 4px;
}

#forminator-module-53 button,
#forminator-module-52 button,
.contact-form button {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 150px;
    max-width: 200px;
    height: 50px;
    padding: 6px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    color: var(--light);
    border: none;
    border-radius: 118px;
    outline: none;
    background-color: var(--primary);
    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    background-color: var(--primary);
}

#forminator-module-53 button:hover,
#forminator-module-52 button:hover {
    opacity: .8;
}

#forminator-module-53 .forminator-multi-upload,
.contact-form .drop-area {
    position: relative;

    padding: 40px 10px;

    cursor: pointer;
    text-align: center;

    border: 1px dashed rgba(255, 255, 255, .26);
    border-radius: var(--radius);
}

#forminator-module-53 input[type=file],
.contact-form input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    height: 100%;

    opacity: 0;
}

#forminator-module-53 .drop-text,
.contact-form .drop-text {
    font-size: 16px;

    display: block;
}

#forminator-module-53 .drop-text span,
.contact-form .drop-text span {
    display: block;

    color: var(--primary);
}

#forminator-module-53 .forminator-uploaded-files,
.contact-form .file-list {
    padding: 0;

    list-style: none;
}

#forminator-module-53 .forminator-uploaded-files li,
.contact-form .file-list li {
    font-size: 12px;

    margin-bottom: 5px;
}

#forminator-module-53 label,
.contact-form-dark label {
    color: rgba(255, 255, 255, .5);
}

#forminator-module-53 input,
#forminator-module-53 textarea,
.contact-form-dark input,
.contact-form-dark textarea {
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .16);
}

#forminator-module-53 input:focus,
#forminator-module-53 textarea:focus,
.contact-form-dark input:focus,
.contact-form-dark textarea:focus {
    border: 1px solid var(--light);
}

.social {
    color: var(--text-color-dark);
    background-color: var(--light);
}

.social-container {
    max-width: var(--container-width-small);
}

.social-header {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;

    position: relative;

    display: inline-block;

    max-width: 200px;
    margin-bottom: var(--offset-md);

    text-transform: uppercase;
}

.social-header .social-headline {
    font: inherit;
}

.social-image {
    position: absolute;
    top: 0;
    left: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;

    gap: var(--offset);
}

.social-links a {
    width: 348px;
    height: 54px;
}

.social-links a img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left;
}

.footer {
    padding: var(--offset-big) 0;

    color: var(--light);
    background: var(--dark);
}

.footer-light {
    color: var(--dark);
    background: var(--light);
}

.footer a:hover {
    text-decoration: underline;
}

.footer-row {
    display: flex;
    flex-direction: column;

    gap: var(--offset-big);
}

.footer-link-box {
    display: flex;
    flex-direction: column;

    margin-bottom: var(--offset);

    gap: var(--gap);
}

.footer-link-box:last-child {
    margin: 0;
}

.footer-link-box a {
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    max-width: 568px;
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    width: 100%;
    list-style: none;
    padding: 5px;
}

.footer-dev {
    margin-top: 14px;
}

.footer-dev a {
    display: inline-flex;
    align-items: center;
    grid-gap: 4px;
}

.btn {
    font-size: 12px;
    font-weight: 700;

    position: relative;
    z-index: 1;

    display: inline-flex;

    min-width: 150px;
    max-width: 200px;
    height: 50px;
    padding: 6px;

    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;

    color: var(--light);
    border: none;
    border-radius: 118px;
    outline: none;
    background-color: var(--primary);

    justify-content: center;
    align-items: center;
}

.btn-outline {
    padding: 0;
}

.btn-outline span {
    z-index: 1;

    display: flex;

    width: 100%;
    height: 100%;

    transition: all .3s ease;

    border-radius: inherit;
    background: var(--dark);

    align-items: center;
    justify-content: center;
}

.btn-outline:after {
    position: absolute;
    z-index: -1;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;

    content: '';
    transition: background .3s ease;

    border-radius: inherit;
    background: linear-gradient(131deg, #06f, #06f 31%, #00ff85 64%, #00ff85);
}

.btn-outline:hover {
    opacity: 1 !important;
}

.btn-outline:hover span {
    background-color: var(--primary);
}

.btn-outline:hover::after {
    background: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary-outline {
    color: var(--primary);
    border: 1px solid currentColor;
    background-color: transparent;
}

.btn-accent {
    color: var(--dark);
    background-color: var(--accent);
}

.btn-accent-outline {
    color: var(--dark);
    border: 1px solid var(--accent);
    background-color: transparent;
}

.btn:hover {
    opacity: .8;
}

#cookie-law-info-again {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 224px;
    min-height: 36px;
    padding: 10px 20px;
    border-radius: 70px 70px 0 0;
    color: var(--dark) !important;
    background: var(--gray) !important;

    box-shadow: none;

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#cookie-law-info-bar .cli_settings_button {
    display: inline-block;
    text-decoration: underline;
}

#cookie-law-info-bar .cli_settings_button:hover {
    text-decoration: none;
}

#cookie-law-info-bar,
.cc-color-override--1033558147.cc-window,
.cookie {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 10px var(--offset);

    animation: fadeInUp 1s .5s ease forwards;
    text-align: center;

    opacity: 0;
    color: var(--dark) !important;
    border-radius: 0;
    background: rgba(var(--light-rgb), .8) !important;

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#cookie-law-info-bar a,
.cc-color-override--1033558147 .cc-link,
.cc-color-override--1033558147 .cc-link:active,
.cc-color-override--1033558147 .cc-link:visited,
.cc-color-override--1033558147.cc-window a,
.cookie a {
    color: var(--primary) !important;
}

#cookie-law-info-bar .wt-cli-reject-btn {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 150px;
    max-width: 200px;
    height: 50px;
    padding: 6px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    border: none;
    border-radius: 118px;
    outline: none;
    justify-content: center;
    align-items: center;
    color: var(--primary) !important;
    border: 1px solid currentColor !important;
    background-color: transparent !important;
}

#cookie-law-info-bar .wt-cli-reject-btn:hover {
    opacity: .8;
}

#cookie-law-info-bar .wt-cli-accept-btn,
.cc-color-override--1033558147.cc-window .cc-btn {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 150px;
    max-width: 200px;
    height: 50px;
    padding: 6px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    color: var(--light) !important;
    border: none;
    border-radius: 118px;
    outline: none;
    background-color: var(--primary) !important;
    justify-content: center;
    align-items: center;
}

#cookie-law-info-bar .wt-cli-accept-btn:hover,
.cc-color-override--1033558147 .cc-btn:hover,
.cc-color-override--1033558147 .cc-btn:focus {
    background-color: var(--primary) !important;
    color: var(--light) !important;
    opacity: .8;
}

.cookie-buttons {
    display: flex;

    margin-top: var(--offset);

    gap: var(--offset);
    justify-content: center;
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);

        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);

        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 100%, 0);

        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);

        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translate3d(-100%, 0, 0);

        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);

        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translate3d(100%, 0, 0);

        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);

        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {

    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .line {
        height: 80px;
    }

    .single-article-header .title {
        font-size: 50px;
    }

    .single-blog-header {
        display: flex;
        flex-direction: column;

        min-height: 810px;
        padding-bottom: 70px;

        justify-content: flex-end;
    }

    .single-blog-header .title-inner {
        font-size: 40px;

        margin-bottom: 175px;
    }

    .single-blog-info img {
        max-width: none;
    }

    .single-blog-inner {
        font-size: 14px;
    }

    .careers-card {
        padding: 40px;

        align-items: flex-start;
    }

    .careers-link {
        font-size: 22px;
    }

    .index-animation {
        min-height: 412px;

        justify-content: flex-start;
    }

    .index-video-wrapper {
        max-width: inherit;
    }

    .index-video-wrapper .index-video-notice {
        top: calc(var(--section-padding) * 1.25);

        max-width: 120px;
    }

    .hero {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .footer-links li {
        width: 33.3%;
    }

    .article-link {
        border-radius: var(--radius);
    }

    .filter-buttons {
        margin-bottom: 110px;
    }

    .article-items {
        margin-top: 110px;
    }

    .page-404-title {
        font-size: 20px;

        margin-bottom: var(--offset-big);
    }

    .page-404-title span {
        font-size: 40px;
        font-weight: 500;
        line-height: 1.4;
    }

    .error404 .main-img {
        max-width: 100%;
    }

    .faq-text {
        font-size: 30px;
    }

    .faq-block .faq-item {
        padding: 0 40px 20px;
    }

    .faq-block .faq-title {
        font-size: 30px;

        padding-top: 40px;
    }

    .faq-block .faq-title:after {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }

    .faq-block .faq-description {
        padding-top: 20px;
    }

    .content-box {
        margin-bottom: 80px;
    }

    .main-content-block>div {
        margin-bottom: 80px;
    }

    .content-box-md-gap {
        margin-bottom: var(--offset-big);
    }

    .single-article-header {
        border-radius: var(--radius);
    }

    .single-article-info {
        margin-bottom: 80px;
    }

    .careers-text {
        font-size: 20px;

        margin-bottom: var(--offset-big);
    }

    .careers-card {
        min-height: 306px;
    }

    .index-video-wrapper {
        max-width: inherit;
    }

    .index-video-wrapper .index-video-notice {
        top: calc(var(--section-padding) * 1.75);

        max-width: 172px;
    }

    .index-video-wrapper .index-video-notice br {
        display: block;
    }

    .partner-image {
        margin: calc(var(--section-padding) / -2) 0;
    }

    .partner-content {
        margin: 0 auto;
    }

    .join-box {
        background-image: url('../img/join-image-web.jpg');

        aspect-ratio: 3/1;
    }

    .join-decor-box {
        position: absolute;
        top: 0;
        left: 0;

        display: block;

        width: 100%;
        height: 100%;
    }

    .join-decor {
        position: absolute;
        top: 50%;

        width: 20%;

        transform: translate(0, -50%);

        background-image: url('../img/triangle-decor.svg');
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: contain;

        aspect-ratio: 1/1;
    }

    .join-decor-left {
        left: -17%;

        width: 35%;
    }

    .join-decor-right {
        top: 28%;
        right: -20%;
        bottom: auto;
        left: auto;

        width: 35%;
    }

    .about-box {
        max-width: 545px;
        margin-top: -80px;
        margin-bottom: 0;

        background-image: url('../img/about-head-web.jpg');
    }

    .about-content {
        max-width: 700px;
    }

    .hero {
        margin-top: 0;
    }

    .hero-img {
        margin-left: var(--section-padding);

        --divider: -2;
    }

    .social-header {
        font-size: 60px;

        max-width: none;
        margin-bottom: 0;
    }

    .social-image {
        right: calc(100% + 20px);
        left: auto;
    }

    .social-links {
        flex-direction: row;

        align-items: center;
        gap: var(--offset-md);
    }

    .footer {
        --offset-big: 80px;
    }

    .footer-row {
        flex-direction: row-reverse;

        justify-content: space-between;
    }

    .footer-link-box {
        margin: 0;
    }

    .footer-links {
        min-width: 568px;
        max-width: none;
    }

    #cookie-law-info-bar p {
        text-align: left;
    }

    .cookie-buttons {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .index-animation {
        min-height: 512px;
    }

    .events-list {
        overflow: visible;

        padding-bottom: 0;
    }

    .events-card {
        max-width: 32%;

        transition: transform 1400ms ease;
    }

    .events-card:hover {
        transform: translateY(-10px);
    }

    .about-item {
        font-size: 38px;

        height: 120px;
    }

    .hero-content {
        margin-top: calc(var(--section-padding) * -.75);
    }

    .hero-title {
        font-size: 70px;
        line-height: 1;
    }

    .contact {
        background-image: url('../img/65638e7edcbd1d3b7fee5e58_form-decor-r.png'), url('../img/65638e7e85e7da906c84b71b_form-decor-l.png');
        background-repeat: no-repeat, no-repeat;
        background-position: right -15% bottom, left -15% center;
        background-size: contain, contain;
    }

    .contact-without-decoration {
        background: none;
    }
}

@media (min-width: 1320px) {
    .page-404 {
        position: relative;
        z-index: 1;
    }

    .page-404:after {
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        content: '';

        background: url(../img/bg-404.jpg) top center/1920px auto no-repeat;
    }
}

@media (min-width: 1400px) {
    .title-adaptive {
        margin-bottom: var(--offset-md);
    }

    main,
    section {
        --section-padding: 160px;
    }

    .nav {
        padding: var(--offset-big) 0;
    }

    .custom-logo-link img,
    .nav-logo img {
        width: 250px;
        height: 61px;

        object-fit: contain;
    }

    .nav-menu-links {
        --offset-big: 80px;
    }

    .nav-menu-buttons .nav-menu-btn {
        font-size: 14px;

        max-width: 80px;
    }

    .index-animation {
        min-height: 712px;
    }

    .index-animation::before {
        position: absolute;
        z-index: 1;
        top: 60%;
        right: 100%;

        width: 500px;
        height: 500px;
        margin-right: -17%;

        content: '';
        transform: translateY(-60%);
        pointer-events: none;

        background: url(../img/index-decor-triangle.svg) no-repeat center/contain;

        aspect-ratio: 1/1;
    }

    .index-video-wrapper .index-video-notice {
        top: calc(var(--section-padding) * 2.25);
        right: 60px;
    }

    .events-text {
        padding: 30px 60px 40px 30px;
    }

    .hero-content {
        max-width: 670px;
    }

    .hero-title {
        font-size: 90px;

        margin-bottom: 60px;
    }

    .btn {
        width: 200px;
    }
}

@media (min-width: 1680px) {

    .page-privacy-policy main .container,
    .page-terms-conditions main .container,
    .page-referall-program-tc main .container {
        position: relative;
        z-index: 1;
    }

    .page-privacy-policy main .container:after,
    .page-terms-conditions main .container:after,
    .page-referall-program-tc main .container:after {
        position: absolute;
        z-index: -1;
        bottom: -30%;
        left: -25%;

        width: 985px;
        height: 1292px;

        content: '';

        background: url(../img/bg-terms.svg) top center/auto no-repeat;
    }

    .page-inner main {
        padding: 180px 0 80px;

        background: url(../img/bg-inner-left.svg) top 32px left -25px/auto no-repeat, url(../img/bg-inner-right.svg) top right/auto no-repeat;
    }

    .post-type-archive-blog main {
        padding: 50px 0 80px;

        background: url(../img/bg-blog-left.png) top 165px left/auto no-repeat, url(../img/bg-blog-right.png) top 165px right/auto no-repeat;
    }

    .post-type-archive-events main {
        padding: 50px 0 80px;

        background: url(../img/bg-events-page.jpg) top center/1920px auto no-repeat;
    }
}

@media screen and (min-width: 1920px) {
    .title {
        font-size: 60px;
    }

    .title-sm {
        font-size: 40px;
    }

    .title-adaptive {
        font-size: 60px;
    }

    .index-video-wrapper .index-video-notice {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .nav-block {
        justify-content: flex-end;
    }

    .nav-mobile-button {
        position: relative;
        z-index: 11;

        display: flex;

        width: 48px;
        height: 48px;

        color: inherit;
        border: 0;
        background-color: transparent;

        justify-content: flex-start;
        align-items: center;
    }

    .nav-mobile-button .nav-toggler {
        position: relative;

        transition: opacity .3s;
        pointer-events: none;

        flex-shrink: 0;
    }

    .nav-menu {
        font-size: 26px;
        line-height: 1;

        position: fixed;
        z-index: 11;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        overflow-y: auto;
        flex-direction: column;

        padding: var(--bs-gutter-x);
        padding-top: 130px;
        padding-left: 70px;

        transition: transform .3s ease-in-out;
        transform: translateX(100%);

        color: rgba(var(--light-rgb), .85);
        background: linear-gradient(to right, rgba(var(--dark-rgb), 0) 50px, var(--dark) 50px);

        justify-content: flex-start;
        align-items: flex-start;
        -webkit-overflow-scrolling: touch;
        gap: calc(var(--offset) + 10px);
    }

    .nav-menu-links {
        flex-direction: column;

        margin: 0;

        align-items: flex-start;
        gap: calc(var(--offset) + 10px);
    }

    .nav-menu-links a {
        text-transform: uppercase;
    }

    .nav-menu-buttons {
        flex-direction: column;

        width: 100%;

        align-items: flex-start;
    }

    .nav-menu-buttons li {
        display: flex;

        width: 100%;
        max-width: 230px;
    }

    .nav-menu-buttons .nav-menu-btn {
        min-width: 125px;
        max-width: 230px;

        flex-grow: 1;
    }

    /* Opened menu state  */

    .nav-menu-opened {
        color: var(--light) !important;
    }

    .nav-menu-opened .nav-menu {
        transform: translateX(0px);
    }

    .nav-menu-overlay {
        position: absolute;
        top: 0;
        left: 0;

        width: 50px;
        height: 100%;

        cursor: pointer;

        background: transparent;
        background: rgba(var(--dark-rgb), .3);
    }
}

@media (max-width: 767px) {
    .error404 .mt-md-n8 {
        margin-top: -8rem;
    }
}

@media screen and (max-width: 576px) {
    .title {
        font-size: 40px;
    }

    .title-sm {
        font-size: 18px;
    }

    .title-adaptive {
        font-size: 40px;
    }

    .index-video-wrapper .index-video-notice {
        font-size: 14px;
    }
}

/* Additional swiper styles */

.slider-swiper {
    padding-bottom: var(--offset-big);
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--light);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.captcha-block {
    margin-bottom: 20px;
}

.forminator-response-message.forminator-success {
    animation: fadeOut 0.5s 3s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1;}
    99% { opacity: 0.01;width: 100%; height: 100%;}
    100% { opacity: 0;width: 0; height: 0;}
}