.two-column-list-image-wrapper {
  padding: 60px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
}
.two-column-list-image-wrapper .colum-left {
  width: 40%;
  padding-right: 60px;
}
.two-column-list-image-wrapper .colum-left img {
  height: 100%;
  width: 100%;
  max-width: 410px;
  border-radius: 10px;
}
.two-column-list-image-wrapper .colum-right {
  width: 60%;
}
.two-column-list-image-wrapper .check-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
  column-gap: 60px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.check-list ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.check-list ul li:before {
  content: "";
  background-image: url(../../assets/images/check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 8px;
}
.check-list ol {
  list-style-type: auto;
  text-align: left;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.check-list ol li {
  list-style-type: auto;
}
.check-list ol li::marker {
  color: var(--blue);
}
.two-column-list-image-wrapper .colum-left .image-wrapper {
  display: flex;
}

@media (max-width: 1199px) {
  .two-column-list-image-wrapper {
    padding: 30px;
  }
  .two-column-list-image-wrapper .colum-left {
    padding-right: 30px;
  }
  .two-column-list-image-wrapper .check-list {
    column-gap: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .two-column-list-image-wrapper .colum-left .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    min-height: 250px;
  }
  .two-column-list-image-wrapper .colum-left .image-wrapper img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .two-column-list-image-wrapper .colum-left,
  .two-column-list-image-wrapper .colum-right {
    width: 100%;
  }
  .two-column-list-image-wrapper .colum-left {
    padding-right: 0px;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .two-column-list-image-wrapper .colum-left {
    text-align: left;
  }
  .two-column-list-image-wrapper .check-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  .two-column-list-image-wrapper .colum-left img {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .two-column-list-image-wrapper {
    padding: 15px;
  }
}
