/* RESET DEFAULT STYLING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}
body {
  background-color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.client {
  width: 100%;
  text-align: center;
  background: rgb(223, 217, 217);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.client h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 30px;
  color: #000;
  font-size: 24px;
}

.client-section {
  display: flex;
  flex-direction: row;
  margin: auto;
  margin-top: 24px;
  margin-bottom: 24px;
  gap: 40px;
  width: 80%;
  justify-content: center;
}

.client-section .client-data {
  width: 40%;
  padding: 20px 50px;
}

.client-section .client-data hr,
p {
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.client-section .client-data img {
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.client-section .rating {
  color: rgb(252, 208, 96);
}

.client-section img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .client-section {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 40px;
    width: 80%;
    justify-content: center;
  }

  .client-section .client-data {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .client-section .client-data hr,
  p {
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }
  .client-section .client-data img {
    margin-bottom: 16px;
    background-color: red;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .client-section .rating {
    color: rgb(252, 208, 96);
  }

  .client-section img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }

  .client-picture {
    width: 30px;
  }
}

@media (max-width: 600px) {
  .client-section {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 40px;
    width: 80%;
    justify-content: center;
  }

  .client-section .client-data {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .client-section .client-data hr,
  p,
  img {
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .client-section .rating {
    color: rgb(252, 208, 96);
  }

  .client-section img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
}

footer {
  background-color: rgb(56, 48, 48);
  text-align: left;
  color: #fff;
  padding: 16px 200px;
}
