/* MOD CIMADIGITAL EMPRESA */
.cd-empresa-banner {
  background-image: url("/cd-kit/img/empresa/img-cabecera-empresa.png");
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cd-empresa-banner h2 {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.cd-empresa {
  padding: 100px 5%;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cd-empresa__row {
  display: flex;
  gap: 50px;
}

.cd-empresa__col {
  flex: 1;
}

.cd-empresa__grid {
  display: grid;
}

.cd-empresa__desc {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 25px;
  column-gap: 50px;
  color: #263a7e;
}

.cd-empresa h3 {
  color: #a91f46;
}

.cd-empresa p {
  color: #263a7e;
}

.cd-empresa__imgs {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-top: 25px;
}
.cd-empresa img {
  width: 100%;
}

@media (max-width: 768px) {
  .cd-empresa__row {
    flex-direction: column;
    gap: 25px;
  }

  .cd-empresa__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*END MOD CIMADIGITAL EMPRESA */
