#hero{
    width: 100%;
    background-color: #efeded;
    text-align: center;
    padding: 50px 0;
}

#hero > div{
    width: 60%;
    margin: 0 auto;
}

#hero-badge{
    width: fit-content;
    margin: 0 auto;
    background-color: #e5bff5;
    border-radius: 20px;
    padding: 5px 30px;
    color: #8e44ad;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#hero-badge > .hero-icon{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#hero-title{
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'MontserratBold', sans-serif;
    padding: 20px 0;
}

#hero-subtitle{
    font-size: 20px;
    color: #716d6d;
}

#hero-buttons{
    padding: 20px 0;
}

.hero-btn-solid{
    background-color: #8e44ad;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
    margin-right: 20px;
}

.hero-icon-white{
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.hero-btn-outline{
    border: 2px solid #716d6d;
    color: #000;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
}

.trust-item{
    display: inline-flex;
    margin: 20px 40px;
    text-align: center;
    color: #716d6d;
    align-items: center;
}

.trust-item > .hero-icon{
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

@media only screen and (max-width: 599px) {
    #hero > div{
        width: 80%;
    }

    #hero-badge > .hero-icon {
        width: 50px;
        height: 50px;
    }

    #hero-title{
        font-size: 30px;
    }

    .hero-btn-solid, .hero-btn-outline{
        padding: 15px 12px;
        display: block;
        width: calc(100% - 24px);
    }

    .hero-icon-white {
        margin-left: 5px;
        position: relative;
        top: 3px;
    }

    .trust-item > .hero-icon {
        width: 50px;
        height: 50px;
        margin-right: 0px;
    }
}
