:root {
  --primaryColor: #082a99;
  --middleColor: #325c9b;
  --helperColor: #66d2ce;
  --lightHelper: #ebf4f6;
  --transparentColor: #66d2cf88;
  --shadow: rgba(189, 188, 188, 0.514);
  /* --------------------------------- */
  --whatsappColor: #25d366;
  --white: #ffff;
  --blue: #1877f2;
  --green: #25d366;
  --gray: #f8f8f8;
}

.clients-overview {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.clients-overview-image {
  width: 40%;
  border-radius: 50px 0px;
  box-shadow: 10px 10px 10px var(--shadow);
}

.clients-overview-details {
  width: 40%;
}

.clients-overview-details h1 {
  font-size: 2.5rem;
  color: var(--primaryColor);
}

.clients-overview-details p {
  font-size: 1.5rem;
  color: var(--middleColor);
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media (max-width: 800px) {
  .clients-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .clients-overview-image {
    width: 98%;
    margin: auto;
  }
  .clients-overview-details {
    width: 98%;
    margin: auto;
  }

  .clients-overview-details h1{
    font-size: 1.6rem;
  }

  .clients-overview-details p{
    font-size: 1.2rem;
  }
}
