#services-list{
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-flow: wrap;
}
#services-list .service{
    width: 150px;
    display: grid;
    grid-template-columns: 1fr; 
    text-decoration: none; 
}
#services-list .service .img-box-service{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services-list .service .img-box-service img{
    max-width: 80%!important;
    max-height: 90%!important;
}
#services-list .service span{
    font-size: 11px;
    font-weight: bold;
    text-align: center;  
    margin-top: 5px;       
}
#services-list .service:hover img{
    -webkit-filter: drop-shadow(5px 5px 5px #0478c2);
    filter: drop-shadow(5px 5px 5px #0478c2);
}

/* CONTACT */

.return{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    background-color: rgba(222, 78, 78, 0.68);
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: none;
  }

  .return.fail{
    display: flex;
    color: white;
    font-weight: bold;
  }

  .return.success{
    display: flex;
    background-color: rgba(129, 196, 138, 0.68);
  }

  #contact-form{
    display: flex;
    flex-direction: column;
  }

  #contact-form label{
    color: #14396a;
    font-style: italic;
    font-size: 13px;
    margin-bottom: 3px;
  }

  #contact-form input, textarea{
    padding: 10px;
    border: none;
    border-radius: 5px;
  }

  #contact-form .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #send {
    box-shadow:inset 0px 1px 0px 0px #bee2f9;
    background:linear-gradient(to bottom, #63b8ee 5%, #468ccf 100%);
    background-color:#63b8ee;
    border-radius:6px;
    border:1px solid #3866a3;
    display:inline-block;
    cursor:pointer;
    color:#14396a;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #7cacde;
  }
  #send:hover {
    background:linear-gradient(to bottom, #468ccf 5%, #63b8ee 100%);
    background-color:#468ccf;
  }
  #send:active {
    position:relative;
    top:1px;
  }