#benefits .title {
  color: var(--white-bis);
  font-family: "Gotham Bold", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.3px;
}

#benefits .content {
  position: relative;
}

#benefits .girl {
  position: absolute;
  bottom: 0;
  left: 185px;
}

#benefits .cards {
  flex-direction: column;
}

@keyframes animateBg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

#benefits .card {
  background: var(--white-ter);
  background-size: 100% 1100%;
  width: 220px;
}

#benefits .card .card-content {
  padding: 1rem;
}

#benefits .card svg {
  height: 46px;
  width: 46px;
}

#benefits .line {
  margin: 0.75rem 0;
}

#benefits .card .title {
  color: var(--black-bis);
  font-family: "Gotham Book Regular", sans-serif;
  font-size: 18px;
  font-weight: normal;
}

#benefits .card .text {
  color: var(--black-bis);
  font-family: "Gotham Book Regular", sans-serif;
  font-size: 14px;
}

@keyframes gradient {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}

@media only screen and (min-width: 400px) {
  #benefits .card .title {
    font-size: 20px;
  }

  #benefits .card svg {
    height: 60px;
    width: 60px;
  }

  #benefits .content {
    margin-left: 1.5rem;
  }

  #benefits .girl {
    left: 220px;
  }
}

@media only screen and (min-width: 768px) {
  #benefits .container {
    margin: 3rem auto;
    max-width: calc(260px * 3 + 32px * 2);
  }

  #benefits .title {
    font-size: 45px;
    margin-bottom: 3rem;
  }

  #benefits .card .title {
    font-size: 16px;
  }

  #benefits .girl {
    display: none;
  }

  #benefits .content {
    margin-left: 0;
  }

  #benefits .cards {
    flex-direction: row;
  }
}

@media only screen and (min-width: 900px) {
  #benefits .container {
    max-width: initial;
  }

  #benefits .title {
    font-size: 45px;
  }

  #benefits .card {
    flex: 1;
    height: 290px;
  }

  #benefits .card .card-content {
    height: 100%;
    padding: 2rem;
  }

  #benefits .card .title {
    font-size: 22px;
  }

  #benefits .card .text {
    font-size: 20px;
  }

  #benefits .line {
    margin: 2rem 0;
  }
}

@media only screen and (min-width: 1024px) {
  #benefits .card:hover {
    background: linear-gradient(180deg, #17f362 0%, #09e8f7 100%),
      linear-gradient(0deg, #adfb49, #adfb49);
  }
}

@media only screen and (min-width: 1280px) {
  #benefits .card .title {
    font-size: 26px;
  }
}
