

.half_half_imagetext {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  flex: 1;
  /* background-color: #edf8fc; */
  max-width: 1400px;
  margin: 0 auto 40px auto;
}
@media (min-width: 991px) {
  .half_half_imagetext {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto 120px auto;
  }
}
@media screen and (min-width: 991px) {
  .half_half_imagetext .image img {
      object-fit: cover;
      object-position: center;
      height: 100%;
  }
}
.half_half_imagetext .image {
  height: 100%;
  min-width: 0;
  order: 1;
}

.half_half_imagetext .content {
  padding: 25px;
  order: 2;
}
@media (min-width: 768px) {
  .half_half_imagetext .content {
    padding: 45px;
  }
}

.half_half_imagetext figure {
  margin: 0;
  height: 100%;
  width: 100%;
}
.half_half_imagetext.content_left .image {
  order: 1;
}

.half_half_imagetext.content_left .content {
  order: 2;
}
@media (min-width: 991px) {
  .half_half_imagetext.content_left .image {
    order: 2;
  }

  .half_half_imagetext.content_left .content {
    order: 1;
  }
}
.half_half_imagetext .content h2 {
  margin: 30px;
}
.half_half_imagetext .content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 30px;
}

.half_half_imagetext .content h4 {
  color: #000928;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
      margin-top: 0;
    margin-bottom: 30px;
}

.half_half_imagetext ul {
  padding-left: 0;
}

.half_half_imagetext li {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  list-style: none;
  display: flex;
}

.half_half_imagetext li::before {
  content: "";
  background: #00C2CB;
  font-weight: 800;
  display: inline-block;
  min-width: 8px;
  height: 8px;
  margin-right: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  top: 13px;
}

.half_half_imagetext li + li {
  margin-top: 30px;
}