.submain-color{
  /* color: #3774c7; */
  color: #5fa3ff;
}

.main-color{
  color: var(--main-color);
}

h2.titulos {
  color: var(--main-color) !important;
}

.p-color{
  color: #5f7c78;
}

.social-network a {
  font-size: 18px !important;
  display: inline-block;
  background: #58716d;
  color: #fff !important;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}


.social-network a i {
  font-size: 18px !important;
  color: #fff !important;
}

.social-network a:hover {
  background: var(--main-color);
  color: #fff !important;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  /* -webkit-filter: grayscale(100%); */
  /* filter: grayscale(100%); */
}

.clients .client-logo:hover img {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}