/* Feat IMG */
.cig--feat-aboutus {
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 220px;
  width: auto;
}

.cig--about-flex-col-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cig--about-flex-row-wrapper,
.cig--about-flex-row-reverse-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}
.cig--about-flex-row-wrapper{
	  flex-direction: row;
}
.cig--about-flex-row-reverse-wrapper{
	    flex-direction: row-reverse;
}
.cig--about-flex-row-item {
  flex: 1;
}
img.cig--about-fixed-img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 600px) {
  .cig--about-flex-row-wrapper {
    flex-direction: column;
  }
  .cig--about-flex-row-reverse-wrapper {
    flex-direction: column-reverse;
  }
}