@import url('href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet"');
/* Services */
.services{
  width: 100%;
  min-height: 50vh;
  background: url(../img/news/bg-news.png) no-repeat;
  display: flex;
  justify-content: center;
  background-size: cover;
  flex-direction:column;
  padding-bottom: 50px;
  font-family:"Open Sans", sans-serif;
}

.services h5{ 
  text-transform: none;
  text-align: center;
  color: #000;
  font-size:42px;
  margin:25px 0 0;
}

.services ul{
  max-width:60%;
  padding-inline-start:0;
  list-style:none;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.services ul li{
  list-style: none;
  max-width: 360px;
  min-height: 300px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 50%);
  margin-top: 30px;
  padding-bottom:10px;
  border-radius:5px;
}

.services ul li:hover{
  box-shadow: 0 0 10px rgb(240, 131, 0, 50%);
}

.description-services{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align:center;
}

.description-services a{
  margin-top: auto;
  display: inline-block;
  border: 2px solid #ffa132;
  border-radius: 15px;
  padding: 6px 14px;
  text-decoration: none;
  color: #ffa132;
  font-size: 14px;
}

.description-services a:hover{
  background: #ffa132;
  color: #fff;
}

.description-services .headline{
  font-size:24px;
  font-weight:600;
}

.img-advantages img{
  width:100%;
  max-width:360px;
  object-fit:cover;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
}
/* ADAPTIVE */

.social-icon-wrapper a + a{
 margin-left:20px;
}

@media(max-width:1240px){
  .services ul{
    max-width:80%;
  }
}

@media(max-width:940px){
  .services ul{
    justify-content:center;
  }
}