@charset "UTF-8";

.service > div {
    width: 350px;
    height: 400px;
    margin-right: 25px;
    margin-top: 20px;
    padding: 0.75em;
    background-color: rgba(128, 128, 128, 0.164);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s;
}

.service > div:hover {
    transform: translateY(-15px);
}

.service {
    text-align: center;
}

.service > div > p {
    margin-bottom: 5px;
    margin-top: 10px;

}


.service > div > h3 {
    margin-bottom: 10px;
}



.service-main > h1 {
    text-align: center;
    padding-bottom: 15px;
    padding-top: 0;
    color: #1CA666;
    font-size: 2em;
}

.service-main {
    padding-top: 35px;
}

.service > div > img {
    height: 60px;
    width: 60px;
    margin-bottom: 10px;

}

.service-box {
    display: table;
    margin-right: auto;
    margin-left: auto;
}

.service-box > hr {
    margin-top: 15px;
    margin-bottom: 10px;
}

#hr-titulo {
    align-items: center;
    justify-content: center;
    margin: 0px auto 35px auto;
    width: 100px;
    height: 5px;
    background-color: #F2B138;
    border: none;
    border-radius: 5px;
}

@media (max-width: 550px){

    .service > div{
        display: block;
    }

    .service > div > p{
        width: 90%;
        text-align: justify;
        margin: 1em auto;
    }

    .service {
        align-items: center;
    }

}