.img-list {
  /* padding-inline: 80px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 50px;
  margin-bottom: 25px !important;
}
.img-list .img-item {
  width: calc((100% - 100px) / 3);
  text-align: center;
}
.img-list .img-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}

@media only screen and (max-width: 768px) {
  .img-list {
    padding-inline: 0;
    gap: 20px 0;
  }
  .img-list .img-item {
    width: 100%;
  }
  .img-list .img-item img {
    height: auto;
  }
}
._img-custom {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  ._img-custom {
    width: 80%;
  }
}

._img-custom-2 {
  width: 65%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  ._img-custom-2 {
    width: 80%;
  }
}




.content main .flex-wrap.custom-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content main .flex-wrap.custom-flex .flex-txt {
    width: 37%;
    max-width: 370px;
}

.content main .flex-wrap.custom-flex .flex-img-wrap {
    width: 58%;
    max-width: 580px;
    display: flex;
    justify-content: space-between;
}

.content main .flex-wrap.custom-flex .flex-img-wrap figure {
    width: 49%;
}

.content main .flex-wrap.custom-flex .flex-img-wrap figure img {
    height: 230px;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .content main .flex-wrap.custom-flex {
        display: block;
    }

    .content main .flex-wrap.custom-flex .flex-txt {
        width: 100%;
        max-width: unset;
    }

    .content main .flex-wrap.custom-flex .flex-img-wrap {
        width: 100%;
        display: block;
    }

    .content main .flex-wrap.custom-flex .flex-img-wrap figure {
        width: 100%;
    }

    .content main .flex-wrap.custom-flex .flex-img-wrap figure img {
        height: auto;
    }

}