#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 250px 0 100px;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--color-purple);
    color: #fff;
    text-align: center;
}

#hero .hero-special {
    padding: 25px 0 0 0;
}

#hero .hero-special>div {
    flex: 0 1 auto;
    width: 100%;
}

#hero h1 {
    margin: 0 0 35px 0;
}

#hero p {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.top-hero img {
    text-align: center;
    margin: 150px 0 30px;
}

@media screen and (min-width:768px) {
    #hero .hero-special>div {
        width: 50%;
    }
}

@media screen and (min-width:992px) {
    #hero {
        justify-content: center;
        overflow: hidden;
    }
    #hero .container {
        background: transparent;
    }
}

@media screen and (max-width:991px) {
    #hero {
        padding: 200px 0 50px;
    }
    .top-hero img{
        margin: 30px 0;
    }
}
