/* BREAKPOINTS */
.c-home {
  flex: 1 0 auto;
  display: flex;
}
.c-home__hero {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: minmax(100px, 100%);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-home__hero {
    padding: 4rem 0;
    grid-template-columns: minmax(100px, 45%) minmax(100px, 55%);
  }
}
.c-home__hero-text-wrapper {
  display: grid;
  gap: 1rem;
}
.c-home__hero-title {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: #090909;
}
@media screen and (min-width: 768px) {
  .c-home__hero-title {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .c-home__hero-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
}
.c-home__hero-description {
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #090909;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-home__hero-description {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .c-home__hero-description {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
.c-home__hero-button-wrapper {
  display: flex;
}
.c-home__hero-button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 4rem 0.5rem 1rem;
  background-color: #00838F;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.2rem;
  border-radius: 0 100px 100px 0;
  transition: 0.3s all ease-in-out;
}
.c-home__hero-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #FFFFFF;
}
.c-home__hero-button:hover {
  background-color: #090909;
  border-radius: 100px 0 0 100px;
  padding: 0.5rem 1rem 0.5rem 4rem;
}
.c-home__hero-illustration {
  display: grid;
}
.c-home__hero-illustration svg {
  width: 100%;
  height: auto;
}
.c-home__blogs {
  display: grid;
  grid-template-columns: minmax(30px, 100%);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-home__blogs {
    grid-template-columns: minmax(30px, 50%) minmax(30px, 50%);
  }
}
@media screen and (min-width: 992px) {
  .c-home__blogs {
    grid-template-columns: minmax(30px, 30%) minmax(30px, 30%) minmax(40px, 40%);
  }
}