.home {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 0 1rem;
    scroll-margin-top:10rem;
}

.home__info {
    display: flex;
    flex-direction: column;
}

.home__title {
    color: var(--color-1-dark);
    font-size: var(--fs-4);
    line-height: var(--lh-4);
    margin-bottom: 3rem;
}

.home__text {
    font-size: var(--fs-1);
    line-height: var(--lh-1);
    margin-bottom: 1.5rem;
}

.home__btn {
    background-color: var(--color-2);
    border-radius: 10px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: var(--fs-1);
    margin-bottom: 8rem;
    padding: 0.80rem 2rem;
    transition: background-color 250ms;
    max-width: 25rem;
    width: 100%;
}

.home__btn:hover {
    background-color: var(--color-2-dark);
}

.home__extra_info {
    align-items: center;
    display: flex;
    font-size: var(--fs-base);
}

.home__extra_info > img {
    background-color: var(--color-2);
    border-radius: 50%;
    padding: 0.25rem;
    margin-right: 5px;
    margin-bottom: 0.25rem;
    width: 30px;
    height: 30px;
}

.home__hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__hero-display {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.home__hero-img {
    position: relative;
    width: 85%;
    z-index: 1;
}

.home__hero-bg {
    left: 50%;
    position: absolute;
    top: -35%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.home__hero-description {
    background-color: var(--color-2);
    border-radius: 20px;
    color: white;
    display: inline-block;
    padding: 0.25rem 2rem;
    text-align: center;
    width: 80%;
}

@media only screen and (max-width: 800px) {
    .home {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home__info {
        grid-row: 2 / 3;
    }

    .home__hero {
        grid-row: 1 / 2;
    }

    .home__title {
        font-size: var(--fs-4);
        line-height: var(--lh-4);
        text-align: center;
    }
    
    .home__hero-display {
        width: 70%;
        margin-bottom: 3rem;
    }

    .home__text {
        text-align: center;
    }

    .home__btn {
        margin-bottom: 1rem;
        align-self: center;
    }

    .home__extras_info {
        margin: 0 auto;
    }

    @media only screen and (max-width: 600px) {

        .home__title {
            font-size: var(--fs-3);
            line-height: var(--lh-3);
        }

        .home__hero-display {
            width: 100%;
            margin-bottom: 3rem;
        }

        .home__text {
            font-size: var(--fs-1);
            line-height: var(--lh-1);
            margin-bottom: 1.5rem;
        }

        .home__extra_info {
            align-items: center;
            display: flex;
            font-size: var(--fs-base);
        }

    }    

}