@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@layer properties;
@layer theme, base, components, utilities;

@layer theme {

    :root,
    :host {
        --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        --color-black: #000;
        --color-white: #fff;
        --spacing: .25rem;
        --text-lg: 1.125rem;
        --text-lg--line-height: calc(1.75 / 1.125);
        --text-xl: 1.25rem;
        --text-xl--line-height: calc(1.75 / 1.25);
        --text-2xl: 1.5rem;
        --text-2xl--line-height: calc(2 / 1.5);
        --text-3xl: 1.875rem;
        --text-3xl--line-height: calc(2.25 / 1.875);
        --text-4xl: 2.25rem;
        --text-4xl--line-height: calc(2.5 / 2.25);
        --text-5xl: 3rem;
        --text-5xl--line-height: 1;
        --radius-xl: .75rem;
        --default-font-family: var(--font-sans);
        --default-mono-font-family: var(--font-mono);
        --font-jost: 'Jost', sans-serif
    }
}

@layer base {

    *,
    ::after,
    ::before,
    ::backdrop,
    ::file-selector-button {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        border: 0 solid
    }

    html,
    :host {
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        tab-size: 4;
        font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
        font-feature-settings: var(--default-font-feature-settings, normal);
        font-variation-settings: var(--default-font-variation-settings, normal);
        -webkit-tap-highlight-color: transparent
    }

    hr {
        height: 0;
        color: inherit;
        border-top-width: 1px
    }

    abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: inherit;
        font-weight: inherit
    }

    a {
        color: inherit;
        -webkit-text-decoration: inherit;
        text-decoration: inherit
    }

    b,
    strong {
        font-weight: bolder
    }

    code,
    kbd,
    samp,
    pre {
        font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
        font-feature-settings: var(--default-mono-font-feature-settings, normal);
        font-variation-settings: var(--default-mono-font-variation-settings, normal);
        font-size: 1em
    }

    small {
        font-size: 80%
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline
    }

    sub {
        bottom: -.25em
    }

    sup {
        top: -.5em
    }

    table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse
    }

    :-moz-focusring {
        outline: auto
    }

    progress {
        vertical-align: baseline
    }

    summary {
        display: list-item
    }

    ol,
    ul,
    menu {
        list-style: none
    }

    img,
    svg,
    video,
    canvas,
    audio,
    iframe,
    embed,
    object {
        display: block;
        vertical-align: middle
    }

    img,
    video {
        max-width: 100%;
        height: auto
    }

    button,
    input,
    select,
    optgroup,
    textarea,
    ::file-selector-button {
        font: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        letter-spacing: inherit;
        color: inherit;
        border-radius: 0;
        background-color: transparent;
        opacity: 1
    }

    :where(select:is([multiple], [size])) optgroup {
        font-weight: bolder
    }

    :where(select:is([multiple], [size])) optgroup option {
        padding-inline-start: 20px
    }

    ::file-selector-button {
        margin-inline-end: 4px
    }

    ::placeholder {
        opacity: 1
    }

    @supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px) {
        ::placeholder {
            color: currentcolor;

            @supports (color:color-mix(in lab, red, red)) {
                color: color-mix(in oklab, currentcolor 50%, transparent)
            }
        }
    }

    textarea {
        resize: vertical
    }

    ::-webkit-search-decoration {
        -webkit-appearance: none
    }

    ::-webkit-date-and-time-value {
        min-height: 1lh;
        text-align: inherit
    }

    ::-webkit-datetime-edit {
        display: inline-flex
    }

    ::-webkit-datetime-edit-fields-wrapper {
        padding: 0
    }

    ::-webkit-datetime-edit,
    ::-webkit-datetime-edit-year-field,
    ::-webkit-datetime-edit-month-field,
    ::-webkit-datetime-edit-day-field,
    ::-webkit-datetime-edit-hour-field,
    ::-webkit-datetime-edit-minute-field,
    ::-webkit-datetime-edit-second-field,
    ::-webkit-datetime-edit-millisecond-field,
    ::-webkit-datetime-edit-meridiem-field {
        padding-block: 0
    }

    ::-webkit-calendar-picker-indicator {
        line-height: 1
    }

    :-moz-ui-invalid {
        box-shadow: none
    }

    button,
    input:where([type="button"], [type="reset"], [type="submit"]),
    ::file-selector-button {
        appearance: button
    }

    ::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
        height: auto
    }

    [hidden]:where(:not([hidden="until-found"])) {
        display: none !important
    }
}

@layer utilities {
    .fixed {
        position: fixed
    }

    .relative {
        position: relative
    }

    .top-0 {
        top: calc(var(--spacing) * 0)
    }

    .left-0 {
        left: calc(var(--spacing) * 0)
    }

    .z-10 {
        z-index: 10
    }

    .z-50 {
        z-index: 50
    }

    .z-\[60\] {
        z-index: 60
    }

    .mx-auto {
        margin-inline: auto
    }

    .mt-5 {
        margin-top: calc(var(--spacing) * 5)
    }

    .mb-3 {
        margin-bottom: calc(var(--spacing) * 3)
    }

    .mb-4 {
        margin-bottom: calc(var(--spacing) * 4)
    }

    .mb-5 {
        margin-bottom: calc(var(--spacing) * 5)
    }

    .mb-6 {
        margin-bottom: calc(var(--spacing) * 6)
    }

    .mb-7 {
        margin-bottom: calc(var(--spacing) * 7)
    }

    .mb-8 {
        margin-bottom: calc(var(--spacing) * 8)
    }

    .mb-15 {
        margin-bottom: calc(var(--spacing) * 15)
    }

    .mb-20 {
        margin-bottom: calc(var(--spacing) * 20)
    }

    .mb-\[17px\] {
        margin-bottom: 17px
    }

    .mb-\[60px\] {
        margin-bottom: 60px
    }

    .mb-\[76px\] {
        margin-bottom: 76px
    }

    .block {
        display: block
    }

    .flex {
        display: flex
    }

    .grid {
        display: grid
    }

    .size-12 {
        width: calc(var(--spacing) * 12);
        height: calc(var(--spacing) * 12)
    }

    .size-20 {
        width: calc(var(--spacing) * 20);
        height: calc(var(--spacing) * 20)
    }

    .size-\[72px\] {
        width: 72px;
        height: 72px
    }

    .size-full {
        width: 100%;
        height: 100%
    }

    .h-4\.5 {
        height: calc(var(--spacing) * 4.5)
    }

    .h-12\.5 {
        height: calc(var(--spacing) * 12.5)
    }

    .h-27\.5 {
        height: calc(var(--spacing) * 27.5)
    }

    .h-35 {
        height: calc(var(--spacing) * 35)
    }

    .h-60 {
        height: calc(var(--spacing) * 60)
    }

    .h-\[72px\] {
        height: 72px
    }

    .h-\[87px\] {
        height: 87px
    }

    .min-h-270 {
        min-height: calc(var(--spacing) * 270)
    }

    .min-h-\[400px\] {
        min-height: 400px
    }

    .w-full {
        width: 100%
    }

    .max-w-125\.25 {
        max-width: calc(var(--spacing) * 125.25)
    }

    .max-w-160 {
        max-width: calc(var(--spacing) * 160)
    }

    .max-w-313\.75 {
        max-width: calc(var(--spacing) * 313.75)
    }

    .max-w-381\.75 {
        max-width: calc(var(--spacing) * 381.75)
    }

    .max-w-\[278px\] {
        max-width: 278px
    }

    .max-w-\[600px\] {
        max-width: 600px
    }

    .max-w-\[797px\] {
        max-width: 797px
    }

    .max-w-\[1100px\] {
        max-width: 1100px
    }

    .max-w-\[2300px\] {
        max-width: 2300px
    }

    .list-none {
        list-style-type: none
    }

    .flex-col {
        flex-direction: column
    }

    .flex-wrap {
        flex-wrap: wrap
    }

    .items-center {
        align-items: center
    }

    .justify-around {
        justify-content: space-around
    }

    .justify-between {
        justify-content: space-between
    }

    .justify-center {
        justify-content: center
    }

    .gap-1\.5 {
        gap: calc(var(--spacing) * 1.5)
    }

    .gap-4 {
        gap: calc(var(--spacing) * 4)
    }

    .gap-5 {
        gap: calc(var(--spacing) * 5)
    }

    .gap-8 {
        gap: calc(var(--spacing) * 8)
    }

    .gap-x-2 {
        column-gap: calc(var(--spacing) * 2)
    }

    .gap-y-5 {
        row-gap: calc(var(--spacing) * 5)
    }

    .rounded-\[7px\] {
        border-radius: 7px
    }

    .rounded-\[9px\] {
        border-radius: 9px
    }

    .rounded-\[30px\] {
        border-radius: 30px
    }

    .rounded-xl {
        border-radius: var(--radius-xl)
    }

    .bg-black\/50 {
        background-color: color-mix(in srgb, #000 50%, transparent);

        @supports (color:color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-black) 50%, transparent)
        }
    }

    .bg-black\/60 {
        background-color: color-mix(in srgb, #000 60%, transparent);

        @supports (color:color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-black) 60%, transparent)
        }
    }

    .bg-cover {
        background-size: cover
    }

    .bg-no-repeat {
        background-repeat: no-repeat
    }

    .p-2 {
        padding: calc(var(--spacing) * 2)
    }

    .p-4 {
        padding: calc(var(--spacing) * 4)
    }

    .p-5 {
        padding: calc(var(--spacing) * 5)
    }

    .px-3 {
        padding-inline: calc(var(--spacing) * 3)
    }

    .px-5 {
        padding-inline: calc(var(--spacing) * 5)
    }

    .py-5 {
        padding-block: calc(var(--spacing) * 5)
    }

    .py-14 {
        padding-block: calc(var(--spacing) * 14)
    }

    .py-25 {
        padding-block: calc(var(--spacing) * 25)
    }

    .pt-8 {
        padding-top: calc(var(--spacing) * 8)
    }

    .pb-8 {
        padding-bottom: calc(var(--spacing) * 8)
    }

    .text-center {
        text-align: center
    }

    .text-2xl {
        font-size: var(--text-2xl);
        line-height: var(--tw-leading, var(--text-2xl--line-height))
    }

    .text-\[28px\]\/\[112\%\] {
        font-size: 28px;
        line-height: 112%
    }

    .text-\[37px\]\/\[100\%\] {
        font-size: 37px;
        line-height: 100%
    }

    .text-lg {
        font-size: var(--text-lg);
        line-height: var(--tw-leading, var(--text-lg--line-height))
    }

    .text-xl {
        font-size: var(--text-xl);
        line-height: var(--tw-leading, var(--text-xl--line-height))
    }

    .text-\[32px\] {
        font-size: 32px
    }

    .leading-none {
        --tw-leading: 1;
        line-height: 1
    }

    .text-white {
        color: var(--color-white)
    }

    .uppercase {
        text-transform: uppercase
    }

    .drob-shadow-custom {
        box-shadow: 0 3.13px 3.13px 0 #00000040
    }

    .brightness-0 {
        --tw-brightness: brightness(0%);
        filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, )
    }

    .invert {
        --tw-invert: invert(100%);
        filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, )
    }

    .drob-shadow-strong {
        filter: drop-shadow(0 0 25px #3576FF)
    }

    .bg-gradient-main-2 {
        background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(26, 0, 141, .45) 100%);
        backdrop-filter: blur(25px)
    }

    .bg-gradient-radial {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(47, 0, 255, .25) 46.63%);
        backdrop-filter: blur(10px)
    }

    .bg-gradient-main>* {
        transition: .3s ease
    }

    .bg-gradient-main {
        position: relative;
        z-index: 1;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(47, 0, 255, .25) 46.63%)
    }

    .bg-gradient-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        transition: .3s ease;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(47, 0, 255, .4) 46.63%)
    }

    .bg-gradient-main:hover::before {
        opacity: 1
    }

    .bg-gradient-main:hover>* {
        filter: drop-shadow(0 2px 4px rgba(255, 255, 255, .8))
    }

    .text-blur-shadow {
        text-shadow: 0 0 35px 0 #FFFFFF
    }

    .max-md\:mx-auto {
        @media (width < 48rem) {
            margin-inline: auto
        }
    }

    .max-md\:flex-col {
        @media (width < 48rem) {
            flex-direction: column
        }
    }

    .max-md\:text-center {
        @media (width < 48rem) {
            text-align: center
        }
    }

    .min-\[1920px\]\:\!grid-cols-4 {
        @media (width>=1920px) {
            grid-template-columns: repeat(4, minmax(0, 1fr)) !important
        }
    }

    .min-\[1920px\]\:gap-\[85px\] {
        @media (width>=1920px) {
            gap: 85px
        }
    }

    .md\:mt-10 {
        @media (width>=48rem) {
            margin-top: calc(var(--spacing) * 10)
        }
    }

    .md\:mb-10 {
        @media (width>=48rem) {
            margin-bottom: calc(var(--spacing) * 10)
        }
    }

    .md\:mb-12 {
        @media (width>=48rem) {
            margin-bottom: calc(var(--spacing) * 12)
        }
    }

    .md\:mb-14 {
        @media (width>=48rem) {
            margin-bottom: calc(var(--spacing) * 14)
        }
    }

    .md\:size-15 {
        @media (width>=48rem) {
            width: calc(var(--spacing) * 15);
            height: calc(var(--spacing) * 15)
        }
    }

    .md\:size-16 {
        @media (width>=48rem) {
            width: calc(var(--spacing) * 16);
            height: calc(var(--spacing) * 16)
        }
    }

    .md\:h-45 {
        @media (width>=48rem) {
            height: calc(var(--spacing) * 45)
        }
    }

    .md\:h-\[70px\] {
        @media (width>=48rem) {
            height: 70px
        }
    }

    .md\:py-20 {
        @media (width>=48rem) {
            padding-block: calc(var(--spacing) * 20)
        }
    }

    .md\:pt-16 {
        @media (width>=48rem) {
            padding-top: calc(var(--spacing) * 16)
        }
    }

    .md\:text-2xl {
        @media (width>=48rem) {
            font-size: var(--text-2xl);
            line-height: var(--tw-leading, var(--text-2xl--line-height))
        }
    }

    .md\:text-3xl {
        @media (width>=48rem) {
            font-size: var(--text-3xl);
            line-height: var(--tw-leading, var(--text-3xl--line-height))
        }
    }

    .lg\:mt-15 {
        @media (width>=64rem) {
            margin-top: calc(var(--spacing) * 15)
        }
    }

    .lg\:mb-5 {
        @media (width>=64rem) {
            margin-bottom: calc(var(--spacing) * 5)
        }
    }

    .lg\:mb-7 {
        @media (width>=64rem) {
            margin-bottom: calc(var(--spacing) * 7)
        }
    }

    .lg\:mb-15 {
        @media (width>=64rem) {
            margin-bottom: calc(var(--spacing) * 15)
        }
    }

    .lg\:mb-18 {
        @media (width>=64rem) {
            margin-bottom: calc(var(--spacing) * 18)
        }
    }

    .lg\:mb-20 {
        @media (width>=64rem) {
            margin-bottom: calc(var(--spacing) * 20)
        }
    }

    .lg\:mb-\[58px\] {
        @media (width>=64rem) {
            margin-bottom: 58px
        }
    }

    .lg\:mb-\[60px\] {
        @media (width>=64rem) {
            margin-bottom: 60px
        }
    }

    .lg\:mb-\[76px\] {
        @media (width>=64rem) {
            margin-bottom: 76px
        }
    }

    .lg\:size-21 {
        @media (width>=64rem) {
            width: calc(var(--spacing) * 21);
            height: calc(var(--spacing) * 21)
        }
    }

    .lg\:size-25 {
        @media (width>=64rem) {
            width: calc(var(--spacing) * 25);
            height: calc(var(--spacing) * 25)
        }
    }

    .lg\:size-\[72px\] {
        @media (width>=64rem) {
            width: 72px;
            height: 72px
        }
    }

    .lg\:h-60 {
        @media (width>=64rem) {
            height: calc(var(--spacing) * 60)
        }
    }

    .lg\:h-\[22px\] {
        @media (width>=64rem) {
            height: 22px
        }
    }

    .lg\:h-\[87px\] {
        @media (width>=64rem) {
            height: 87px
        }
    }

    .min-lg\:grid-cols-2 {
        @media (width>=64rem) {
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }
    }

    .lg\:gap-12 {
        @media (width>=64rem) {
            gap: calc(var(--spacing) * 12)
        }
    }

    .lg\:p-4 {
        @media (width>=64rem) {
            padding: calc(var(--spacing) * 4)
        }
    }

    .lg\:p-8 {
        @media (width>=64rem) {
            padding: calc(var(--spacing) * 8)
        }
    }

    .lg\:py-25 {
        @media (width>=64rem) {
            padding-block: calc(var(--spacing) * 25)
        }
    }

    .lg\:pt-7 {
        @media (width>=64rem) {
            padding-top: calc(var(--spacing) * 7)
        }
    }

    .lg\:pt-\[87px\] {
        @media (width>=64rem) {
            padding-top: 87px
        }
    }

    .lg\:pb-10 {
        @media (width>=64rem) {
            padding-bottom: calc(var(--spacing) * 10)
        }
    }

    .lg\:pb-\[58px\] {
        @media (width>=64rem) {
            padding-bottom: 58px
        }
    }

    .lg\:text-2xl {
        @media (width>=64rem) {
            font-size: var(--text-2xl);
            line-height: var(--tw-leading, var(--text-2xl--line-height))
        }
    }

    .lg\:text-4xl {
        @media (width>=64rem) {
            font-size: var(--text-4xl);
            line-height: var(--tw-leading, var(--text-4xl--line-height))
        }
    }

    .lg\:text-5xl {
        @media (width>=64rem) {
            font-size: var(--text-5xl);
            line-height: var(--tw-leading, var(--text-5xl--line-height))
        }
    }

    .lg\:text-\[28px\]\/\[112\%\] {
        @media (width>=64rem) {
            font-size: 28px;
            line-height: 112%
        }
    }

    .lg\:text-\[37px\]\/\[100\%\] {
        @media (width>=64rem) {
            font-size: 37px;
            line-height: 100%
        }
    }

    .lg\:text-lg {
        @media (width>=64rem) {
            font-size: var(--text-lg);
            line-height: var(--tw-leading, var(--text-lg--line-height))
        }
    }

    .lg\:text-xl\/\[95\%\] {
        @media (width>=64rem) {
            font-size: var(--text-xl);
            line-height: 95%
        }
    }
}

@layer base {
    html {
        scroll-behavior: smooth
    }

    body {
        overflow-x: hidden;
        background-color: var(--color-black);
        font-family: var(--font-jost);
        color: var(--color-white)
    }

    button {
        cursor: pointer
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: calc(var(--spacing) * 0);
    z-index: 0;
    background-color: color-mix(in srgb, #000 35%, transparent);

    @supports (color:color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-black) 35%, transparent)
    }
}

.hero-section::before {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: calc(var(--spacing) * 0);
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, #000000 100%);
}

.text-border-black {
    -webkit-text-stroke: .78px rgba(0, 0, 0, .5);
}

.fade-in {
    animation: fadeIn .2s ease-in-out forwards, scaleIn .2s ease-in-out forwards;
}

.blur-2 {
    backdrop-filter: blur(10px);
}

@property --tw-leading {
    syntax: "*";
    inherits: false;
}

@property --tw-blur {
    syntax: "*";
    inherits: false;
}

@property --tw-brightness {
    syntax: "*";
    inherits: false;
}

@property --tw-contrast {
    syntax: "*";
    inherits: false;
}

@property --tw-grayscale {
    syntax: "*";
    inherits: false;
}

@property --tw-hue-rotate {
    syntax: "*";
    inherits: false;
}

@property --tw-invert {
    syntax: "*";
    inherits: false;
}

@property --tw-opacity {
    syntax: "*";
    inherits: false;
}

@property --tw-saturate {
    syntax: "*";
    inherits: false;
}

@property --tw-sepia {
    syntax: "*";
    inherits: false;
}

@property --tw-drop-shadow {
    syntax: "*";
    inherits: false;
}

@property --tw-drop-shadow-color {
    syntax: "*";
    inherits: false;
}

@property --tw-drop-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}

@property --tw-drop-shadow-size {
    syntax: "*";
    inherits: false;
}

@layer properties {
    @supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {

        *,
        ::before,
        ::after,
        ::backdrop {
            --tw-leading: initial;
            --tw-blur: initial;
            --tw-brightness: initial;
            --tw-contrast: initial;
            --tw-grayscale: initial;
            --tw-hue-rotate: initial;
            --tw-invert: initial;
            --tw-opacity: initial;
            --tw-saturate: initial;
            --tw-sepia: initial;
            --tw-drop-shadow: initial;
            --tw-drop-shadow-color: initial;
            --tw-drop-shadow-alpha: 100%;
            --tw-drop-shadow-size: initial
        }
    }
}

.soc img {
    filter: drop-shadow(0 3.13px 3.13px #00000040);
}

button,
a {
    transition: .3s ease;
}

a:hover,
button:hover {
    background-color: rgba(47, 0, 255, .25);
    text-shadow: 0 0 10px #fff;
}

body.overflow {
    overflow: hidden;
}

.vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -11;
    pointer-events: none;
}

.logoimg {
    background: none !important;
}

ul {
    padding-left: 35px;
    list-style: disc;
}

.modal .fade-in {
    padding: 50px 40px 40px;
    max-width: 800px;
}

@media screen and (max-width:600px) {
    .modal .fade-in {
        padding: 50px 20px 40px
    }
}

.modal {
    transition: .3s ease;
    visibility: hidden;
    opacity: 0;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.mbtn {
    border-radius: 10px;
    padding: 10px 30px;
}

.mbtn:hover {
    background-color: rgba(47, 0, 255, .7);
}