.tailor-made-solution {
  width: 100%;
}

.tailor-made-solution__content {
  display: flex;
  flex-direction: column;
  gap : 100px;
  padding: 100px 0 0 0;
}


.tailor-made-solution__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;

  text-transform: uppercase;

  padding: 0 32px;
}



.tailor-made-solution__solution {
  width: 100%;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.solution__one {
  background-color: var(--color-primary--1);
  color : var(--color-white);
}

.solution__one--image {
  grid-area: a;

  background-image: url(../../images/tailor-made-solution/image-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.solution__one--content {
  grid-area: b;

  background-image: url(../../images/tailor-made-solution/background-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution__two--image {
  grid-area: c;

  background-image: url(../../images/tailor-made-solution/image-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution__two--content {
  grid-area: d;

  background-image: url(../../images/tailor-made-solution/background-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution__three--image {
  grid-area: e;

  background-image: url(../../images/tailor-made-solution/image-3.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution__three--content {
  grid-area: f;

  background-image: url(../../images/tailor-made-solution/background-3.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.solution__two {
  background-color: var(--color-primary--4);
  color : var(--color-primary--1);
}

.solution__three {
  background-color: var(--color-secondary--1);
  color : var(--color-white);
}

.solution__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;

  padding: 16px;

  width: 100%;
  max-width: 416px;
}

.solution__title h3 {

  line-height: 140%; /* 44.8px */
  text-transform: uppercase;
}



.solution__description p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */

  margin: 0;
}

@media all and (min-width: 750px) {
  .tailor-made-solution__wrapper {
    display: grid;
    grid-template-areas: "a b"
                          "d c"
                          "e f";
  }

  .tailor-made-solution__solution {
    max-width: 640px;
    min-height: 350px;
  }
}

@media all and (min-width:900px) {
  .solution__title h3 {
    font-size: 32px;
  }
}


@media all and (min-width: 1200px) {
  .tailor-made-solution__wrapper {
    display: grid;
    grid-template-areas: "a d e"
                          "b c f";

    grid-template-columns: unset;
  }


}
