<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.grid-container {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "text text"
    "image-one image-two";
}

/* Media Query para pantallas mÃ¡s pequeÃ±as */
@media only screen and (max-width: 992px) {
  .grid-container {
    display: flex;
    flex-direction: column;
  }
}

.image-one {
  grid-area: image-one;
  position: relative;
}

.image-two {
  grid-area: image-two;
  position: relative;
}

.image-one img,
.image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  color: white;
  grid-area: text;
  padding: 3.5%;
  padding-top: 0;
}

.text a,
.text a:visited {
  text-transform: uppercase;
  text-decoration: underline;
  color: white !important;
  font-weight: 800;
}

.image-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white !important;
}

.image-content a,
.image-content a:visited {
  text-transform: uppercase;
  text-decoration: underline;
  color: white !important;
  font-weight: 800;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

@media (max-width: 767px) {

  .text {
    margin: 0px 2.4px;
    height: auto;
    padding: 10px 20px 5px 15px;
  }

  .mobile {
    display: block !important;
  }

  .desktop {
    display: none !important;
  }
}
</pre></body></html>