.explore-map-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/pictures/noise-texture-2.png);
  position: relative;
}

.explore-map-text > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  z-index: -1;
}

.explore-map-text > div {
  width: 100%;
  height: 100%;
  padding: 5rem 8.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  max-width: calc(1920px + 17.5rem);
}

.explore-map-text > div > div {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.explore-map-text > div > div {
  max-width: 55%;
}

.explore-map-text > div > div > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.explore-map-text > div > div > div > p:nth-child(2) {
  width: max-content;
}

.img-full-width {
  width: 100%;
}

.img-full-width > img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.row-2-img {
  background-image: url(../assets/icons/pattern-3.svg);
  background-size: cover;
  background-color: var(--purpure);
  padding: 8.75rem;
  color: var(--warm-silver-light);
}

.row-2-img-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: auto;
  max-width: 1920px;
}

.row-img {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
}

.row-img > div {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.row-img > div:nth-child(1) {
  border-radius: 0.625rem;
  overflow: hidden;
}

.row-img > div > img,
.row-img > div > video {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  aspect-ratio: 1/1;
}

.row-img > div > p {
  max-width: 70%;
}

.col-2-img {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 8.75rem;
  max-width: 1920px;
}

.col-2-img-title {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.col-2-img-title > h2 {
  max-width: 70%;
}

.col-2-img-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.75rem;
  height: 37.5rem;
}

.col-2-img-card {
  position: relative;
  flex-basis: 50%;
}

.col-2-img-card > div {
  height: 100%;
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

.col-2-img-card > div:nth-child(1) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-2-img-card > .card-layer-hidden {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--point);
  background-image: url(../assets/pictures/pattern5.png);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.col-2-img-card > .card-layer-visible {
  opacity: 1;
}

.card-layer-hidden > p {
  max-width: 70%;
  text-align: center;
  color: var(--warm-silver-light);
  opacity: 0;
  transition: opacity 1s;
}

.card-layer-hidden > p.switzer-light {
  color: var(--white-smoke);
}

.col-2-img-card > .card-layer-visible > p {
  opacity: 1;
}

@media (min-width: 2200px) {
  .col-2-img {
    padding: 8.75 0;
  }
}

@media (max-width: 1024px) {
  .explore-map-text > div {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 3.5rem;
    padding: 5rem 2.5rem;
  }

  .explore-map-text > div > div {
    max-width: none;
  }

  .explore-map-text > div > div:nth-child(2) {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .row-2-img {
    padding: 2.5rem;
  }

  .row-2-img-content {
    gap: 3.5rem;
  }

  .row-2-img-content > .row-img {
    flex-direction: column;
  }

  .row-2-img-content > .row-img > div:has(img) {
    width: 100%;
    order: -1;
  }

  .row-2-img-content > .row-img > div > p {
    max-width: none;
  }

  .col-2-img {
    height: 100vh;
    box-sizing: border-box;
    padding: 8.75rem 2.5rem;
  }

  .col-2-img-title > h2 {
    max-width: none;
  }

  .col-2-img-content {
    flex-direction: column;
    flex: 1;
  }

  .col-2-img-content > .col-2-img-card {
    overflow: hidden;
  }

  .card-layer-hidden > p:first-child {
    font-size: 2rem;
  }
}
