.hero-landing,
.hero-landing > *,
.hero-landing * {
    font-family: "Geist", sans-serif;
}

.hero-landing .container.header {
    z-index: 6;
}

.hero-landing.light-box-active .container.header {
    z-index: 0;
}

.hero-landing .header .logo-link img {
    height: revert-layer;
}

.hero-landing .hero-wrapper {
    padding: 30px 0;
}

.hero-landing .hero {
    margin: 30px auto 50px;
}

.hero-landing .hero > .row {
    align-items: center;
}

.hero-landing .hero-title {
    margin: 24px 0 40px;

    color: #2A1C4A;
}

.hero-landing .hero-title,
.hero-landing .hero-text-content {
    max-width: 596px;
}

.hero-landing p {
    color: #2A1C4A;
    margin: 1rem 0;
}

.hero-landing .hero-form .moosend-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.hero-landing .hero-form input[type="email"] {
    border-radius: 2000px;
    padding: 16px 25px;
    border: 1px solid;
    font-size: 16px;
    max-width: 388px;
    width: 100%;

    border-color: #3B10A7;
    background-color: #fff;
    color: #2A1C4A;
    box-shadow: 4px 4px 4px rgba(67, 45, 208, 0.17);
}

.hero-landing .hero-form button[type="submit"] {
    padding: 16px 32px;
    border-radius: 2000px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;

    background-color: #3b10a7;
    color: #fff;
    box-shadow: 4px 4px 4px rgba(67, 45, 208, 0.17);
}

.hero-landing .hero-form button[type="submit"]:hover {
    background: #3c10a6 !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 10px #3c10a6 !important;
    border: 1px solid #ffffff !important;
}

.hero-landing .hero-form-subtext,
.hero-landing .hero-form-subtext > p {
    font-size: 16px;

    color: #2a1c4a;
}

.hero-landing .hero-form-subtext a {
    text-decoration: underline;
    font-size: 16px;

    color: #3C10A6;
}

.hero-landing .countdown-title {
    text-align: center;
    font-weight: 500;
    display: flex;
    justify-content: center;

    color: #262365;
}

.hero-landing .countdown-timer {
    max-width: 610px;
    width: 100%;
    margin: 30px auto -90px;
    text-align: center;
}

.hero-landing .simple-countdown__element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 8px;
    padding: 15px 30px;
    backdrop-filter: blur(9px);

    background-color: rgb(235 234 251 / 5%);
    border-color: transparent;
    /*box-shadow: 4px 4px 4px #000;*/
}

.hero-landing .simple-countdown__element:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: drop-shadow(4px 4px 4px #5F50BB);
    background: transparent;
    z-index: 0;
    border: 1px solid #B0A7EA;
    border-radius: 6px;
}

.hero-landing .simple-countdown__element span {
    font-size: 20px;
    line-height: 20px;
    margin: -6px 0 12px;

    color: #2A1C4A;
}

.hero-landing .simple-countdown__element span[data-id] {
    font-size: 61px;
    line-height: 68px;
    font-weight: bold;
    margin: 0;

    color: #2A1C4A;
}

.hero-landing .hero-side-image {
    cursor: pointer;
}

.hero-landing .video-wrapper {
    position: fixed;
    width: 100%;
    background: #00000080;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
}

.hero-landing .video-wrapper.active {
    display: flex;
    z-index: 9;
}

.hero-landing .video-embed-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.hero-landing .video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    height: 0;
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.hero-landing .video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-relative-wrapper {
    width: 100%;
}

button.video-wrapper-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 20px 9px;
    border-radius: 200px;
    border: 1px solid #dfbbbf;
    background-color: #e2011a17;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: drop-shadow(4px 4px 4px rgba(39, 35, 101, .38));
    position: absolute;
    z-index: 9;
    top: 60px;
    right: 60px;
}

button.video-wrapper-button span.line {
    width: 26px;
    height: 2px;
    display: flex;
    background: #fff;
}

button.video-wrapper-button span.line:first-child {
    transform: rotate(45deg) translate(0px, 1px);
}

button.video-wrapper-button span.line:last-child {
    transform: rotate(-45deg) translate(0px, -1px);
}

@media screen and (max-width: 992px) {
    .hero-landing .hero-text > * {
        max-width: 572px;
        width: 100%;
        margin-left: auto!important;
        margin-right: auto!important;
    }

    .hero-landing .container.header {
        margin-bottom: 60px;
    }

    .hero-landing .hero-side-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-landing .hide-on-mobile {
        display: none!important;
    }

    .hero-landing .full-on-mobile {
        flex: 1!important;
        max-width: 100%!important;
    }

    .hero-landing .countdown-timer .gap-30,
    .hero-landing .countdown-timer .gap-30-y {
        margin-top: -10px;
    }

    .hero-landing .countdown-timer .gap-30,
    .hero-landing .countdown-timer .gap-30-x {
        margin-left: -10px;
    }

    .hero-landing .countdown-timer .gap-30-y > *,
    .hero-landing .countdown-timer .gap-30 > * {
        padding-left: 10px;
    }

    .hero-landing .countdown-timer .gap-30-y > *,
    .hero-landing .countdown-timer .gap-30 > * {
        padding-top: 10px;
    }

    .hero-landing .simple-countdown__element span {
        font-size: clamp(12px, 2.1vw, 20px);
        line-height: clamp(12px, 2.1vw, 20px);
    }

    .hero-landing .simple-countdown__element span[data-id] {
        font-size: clamp(36px, 6.4vw, 61px);
        line-height: clamp(42px, 7.1vw, 68px);
    }

    .hero-landing .countdown-timer {
        max-width: clamp(300px, 62vw, 500px);
    }

    .hero-landing .countdown-title {
        font-size: clamp(18px, 3vw, 24px) !important;
        line-height: clamp(28px, 3vw, 24px) !important;
    }
}

@media screen and (max-width: 612px) {
    .hero-landing .hero-form input[type="email"] {
        max-width: 100%;
        width: 100%;
    }

    .hero-landing .hero-form button[type="submit"] {
        max-width: 100%;
        width: 100%;
    }

    .hero-landing .countdown-timer {
        margin: 16px auto -72px;
    }
}
