.hero {
    width: 100%;
    height: 100vh;
    font-family: var(--font-headline);

    position: relative;
    z-index: 1;
}

.hero .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: bottom center;
}

.hero .bg .deco {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}

.hero .bg .deco.left {
    width: 300px;
    left: 8%;
    top: 10%;
    object-fit: cover;
}

.hero .bg .deco.right {
    width: 300px;
    right: 8%;
    bottom: 10%;
    object-fit: cover;
}

.hero .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .content .brand {
    width: 100%;
    max-width: 180px;
    margin-bottom: 3rem;
}

.hero .content .brand .logo {
    width: 100%;
    height: auto;
}

.hero .content .welcome {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    padding: .3rem 1.5rem;
    border-radius: 3rem;
    background-color: var(--color-secondary);
    margin-bottom: 1rem;
}

.hero .content .title {
    font-weight: bold;
    font-size: 5.2rem;
    line-height: 5.6rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3rem;
}

.hero .content .title span {
    display: block;
    font-size: 8rem;
}

.hero .content .steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero .content .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    padding-bottom: 2rem;
    max-width: 150px;

    border: 1px solid #fff;
    border-radius: 10rem;

    position: relative;
}

.hero .content .steps .step .icon {
    width: 40px;
    height: 40px;
    padding: .3rem;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: .5rem;
}

.hero .content .steps .step .icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    color: #25A000;
}

.hero .content .steps .step .text {
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.hero .content .btn {
    display: inline-block;
    padding: .5rem 2rem;
    background-color: #ffffff;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero .content .btn:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
}

@media only screen and (max-width: 1441px) {
    .hero .bg .deco.left {
        width: 250px;
    }
    
    .hero .bg .deco.right {
        width: 250px;
    }

    .hero .content .welcome {
        font-size: 1.5rem;
    }
    
    .hero .content .title {
        font-size: 3.2rem;
        line-height: 4rem;
    }
    
    .hero .content .title span {
        font-size: 6rem;
    }

    .hero .content .steps .step .icon {
        width: 30px;
        height: 30px;
    }

    .hero .content .steps .step .text {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1024px) {
    .hero .bg .deco.left {
        width: 250px;
        left: -5%;
        top: auto;
        bottom: -5%;
        transform: rotate(40deg);
    }

    .hero .bg .deco.right {
        width: 250px;
        right: -5%;
        bottom: -5%;
        transform: rotate(-40deg);
    }
}

@media only screen and (max-width: 480px) {
    .hero .bg .deco.left {
        width: 180px;
        left: -15%;
        top: auto;
        bottom: -5%;
        transform: rotate(40deg);
    }

    .hero .bg .deco.right {
        width: 180px;
        right: -15%;
        bottom: -5%;
        transform: rotate(-40deg);
    }

    .hero .content .brand {
        max-width: 150px;
    }

    .hero .content .welcome {
        font-size: 1.5rem;
    }

    .hero .content .title {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 2rem;
    }

    .hero .content .title span {
        font-size: 3.5rem;
    }

    .hero .content .steps {
        flex-direction: column;
    }

    .hero .content .steps .step {
        max-width: none;
        flex-direction: row;
        align-items: center;
        gap: var(--gap-small);
        padding: .5rem 1rem;
        padding-bottom: .5rem;
    }

    .hero .content .steps .step .icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
    }

    .hero .content .steps .arrow {
        transform: rotate(90deg);
    }
}