.hero {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
    filter: blur(100px);
    min-width: 50%;
    height: 550px;
}

.hero-text {
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .hero-text {
        width: 50%;
        text-align: left;
    }
}

.hero-buttons {
    justify-content: center;
}

@media screen and (min-width: 600px) {
    .hero-buttons {
        justify-content: start;
    }
}

.hero-logo {
    margin: auto;
    display: none;
}

@media screen and (min-width: 600px) {
    .hero-logo {
        display: block;
    }
}

.text-gradient {
    background-image: linear-gradient(to left, var(--c-primary), var(--c-call-to-action));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.callouts {
    flex-direction: column;
}

@media screen and (min-width: 1080px) {
    .callouts {
        flex-direction: row;
    }
}

.text-block {
    width: 100%;
}

@media screen and (min-width: 600px) {
    .text-block {
        width: 85%;
    }
}

@media screen and (min-width: 1000px) {
    .text-block {
        width: 70%;
    }
}