/* Define the custom font families */
@font-face {
  font-family: "Montserrat-Regular";
  src: url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat-BoldItalic";
  src: url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,700&display=swap");
  font-weight: 700;
  font-style: italic;
}

.client {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.client .group-wrapper {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  max-width: 664px;
  /* min-height: 616px; */
  padding: 20px;
  box-sizing: border-box;
}

.client .group {
  width: 100%;
  position: relative;
  /* min-height: 579px; */
}

.client .holder {
  width: 100%;
  position: relative;
  /* min-height: 579px; */
  display: flex;
  flex-direction: column;
}

.client .header-3 {
  position: relative;
  width: 100%;
  max-width: 425px;
  margin: 25px auto 0;
  margin-bottom: 16px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.client .span {
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0;
  line-height: 1.33;
}

.client .bold-1 {
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
}

.client .paragraph {
  width: 100%;
  margin: 16px 0 0 0;
  position: relative;
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0;
  line-height: 1.33;
}

.client .bold-italic-1 {
  font-family: "Montserrat-BoldItalic", Helvetica;
  font-weight: 700;
  font-style: italic;
}

.client .header-1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: var(--primary-header-color, #cf262c);
  font-size: clamp(20px, 5vw, 31.8px);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.client .header-2 {
  position: relative;
  width: 100%;
  margin: 12px auto 0;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: clamp(20px, 5vw, 31.8px);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .client {
    padding: 0 15px;
  }

  .client .group-wrapper {
    padding: 15px;
  }

  .client .header-3 {
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .client .paragraph {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .client {
    padding: 0 10px;
  }

  .client .group-wrapper {
    padding: 10px;
  }

  .client .header-3 {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .client .paragraph {
    margin-top: 15px;
  }
}

