.element {
  position: relative;
  overflow: hidden;
  background: var(--white, #fff);
  color: var(--black, #000);
  padding: 80px 0;
}
@media (max-width: 991px) {
  .element {
    padding: 50px 0;
  }
}
.element .element__title {
  max-width: 890px;
  text-align: center;
  margin: 0 auto 15px;
}
.element .element__subtitle {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .element .element__subtitle {
    margin-bottom: 32px;
  }
}
.element .element__content {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .element .element__content {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.element .element-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px 0 #00000026;
}
@media (max-width: 575px) {
  .element .element-card {
    border-radius: 16px;
  }
}
.element .element-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px;
}
@media (max-width: 575px) {
  .element .element-card__body {
    padding: 16px;
  }
}
.element .element-card__body ul {
  list-style: disc;
  padding-left: 25px;
  margin: 0;
}
.element .element-card__body a {
  font-weight: 800;
  text-decoration: underline;
}
.element .element-card__image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .element .element-card__image {
    height: 200px;
  }
  .element .element-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.element .element-card__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}
.element .element__btn {
  max-width: 590px;
  margin: auto;
}

/*# sourceMappingURL=element.css.map */
