.cover {
  background-color: var(--blue-primary-color);
  border-radius: 15px;
  color: rgb(255, 255, 255);
  display: flex;
  height: 200px;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.cover .title {
  font-size: 60px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 20px;
}
.cover .description {
  font-size: 18px;
  line-height: 130%;
  max-width: 450px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cover {
    height: 185px;
  }
  .cover .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cover {
    padding: 0 30px;
    height: 150px;
  }
  .cover .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .cover {
    height: 130px;
    margin-bottom: 20px;
  }
  .cover .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 12px;
  }
  .cover img {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .cover {
    height: 160px;
    padding: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
