
.fractal-glass-header {
    display: grid;
    /* margin-top: var(--top-nav-height); */

    padding-top: var(--top-nav-height);

    position: relative;
    z-index: 10;

    min-height: 654px;
}

.fractal-glass-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fractal-glass-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fractal-glass-header__bg-mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    .fractal-glass-header__bg-mobile {
        display: block;
    }
    .fractal-glass-header__bg-desktop {
        display: none;
    }
}

.fractal-glass-header__content {
    position: relative;
    z-index: 50;

    margin: 0 auto;
    padding: 0 30px;
    max-width: 1200px;
    width: 100%;

    color: #fff;
    /* text-align: center; */
}

h1.fractal-glass-header__title,
h2.fractal-glass-header__title,
h3.fractal-glass-header__title {
    margin-top: 120px;

    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -1px;
}

.fractal-glass-header__subtitle {
    max-width: 550px;
    margin-top: 30px;

    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -1px;
}

.fractal-glass-header__subtitle,
.fractal-glass-header__subtitle p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.fractal-glass-header__button a {
    white-space: nowrap;
    padding: 12px 32px;
    border-radius: 4px;
    background-color: #fff;
    color: #101323;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 24px;

    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;

    transition: all 0.3s ease;
}

.fractal-glass-header__button a:hover {
    background-color: #4169e1;
    color: #fff;
}