.company-mission__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.company-mission__item {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 40px 52px;
  border-radius: 10px;
  background-image: url("../img/blocks/company-mission/img_1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.company-mission__item:last-child {
  background-image: url("../img/blocks/company-mission/img_2.jpg");
}
.company-mission__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #37AD80 0%, #2EC68B 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  opacity: 0.85;
}
.company-mission__item:last-child::after {
  background: linear-gradient(90deg, #EF4343 0%, #FF6262 100%);
}
.company-mission__title-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.company-mission__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50px;
}
.company-mission__icon .icon {
  width: 30px;
  height: 30px;
}
.company-mission__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
.company-mission__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 576px) {
  .company-mission {
    margin-top: 16px !important;
  }
  .company-mission__wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ts-quotes-type1 {
    margin-top: 16px !important;
    gap: 16px;
  }
  .ts-quotes-type1__content {
    font-size: 12px;
    line-height: 160%;
  }
}
@media (max-width: 768px) {
  .company-mission__item {
    padding: 16px;
  }
  .company-mission__title-block {
    gap: 16px;
  }
  .company-mission__icon {
    width: 50px;
    height: 50px;
  }
  .company-mission__icon .icon {
    width: 21.429px;
    height: 21.429px;
  }
  .company-mission__title {
    font-size: 16px;
    line-height: 150%;
  }
  .company-mission__description {
    margin-top: 16px !important;
    font-size: 12px;
    line-height: 160%;
  }
  .ts-quotes-type1__content {
    font-size: 14px;
  }
}
