:root{
  --primaryColor:#212529;
  --middleColor:#bfb08c;
  --helperColor:#B29414;
  --lightHelper:#F0ECE3;
  --transparentColor:#af847494;
  --shadow:#f0ece39f;
  --black:#212529;

 /* --------------------------------- */
  --whatsappColor:#25D366;
  --white:#ffff;
  --blue: #1877F2;
  --green: #25D366;
  --gray:  #f8f8f8;
}
.clients-overview {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-top: 1px dotted var(--transparentColor);
}

.clients-overview-image {
  margin-top: 20px;
  height: 500px;
}

.clients-overview-details {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.clients-overview-details h1 {
  font-size: 2.5rem;
  color: var(--helperColor);
}

.clients-overview-details p {
  font-size: 1rem;
  color: var(--primaryColor);
}

.clients-overview-details ul {
color: var(--middleColor);
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media (max-width: 800px) {
  .clients-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .clients-overview-image {
    width: 80%;
    margin: auto;
    height: auto;
    /* box-shadow: 10px 10px 10px var(--shadow); */
  }
  .clients-overview-details {
    width: 95%;
    margin: auto;
  }

  .clients-overview-details h1{
    font-size: 1.6rem;
  }

}
