.cig-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 680px;
}

.cig-col {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  padding: 20px;
  color: white;
  font-weight: bold;
}

.cig-col.col-1 {
  width: 50%;
}

.cig-col.col-2,
.cig-col.col-3 {
  width: 25%;
}

.cig-text {
  font-size: 1.2rem;
  margin: 0;
}

@media (max-width: 768px) {
  .cig-grid {
    flex-direction: column;
    height: auto;
  }

  .cig-col {
    width: 100% !important;
    height: 400px;
  }
}
