#sobre {
  background-color: #10203d;
  border-top: 0px;
  .sobre-cont {
    .pc-only {
      display: none;
    }
    .titulo-sobre {
      .sobre-titus {
        color: white;
        font-size: 5rem;
        font-weight: bolder;
      }
      p {
        color: #d8d8d8;
        font-size: 2rem;
      }
      img {
        width: 100%;
      }
    }
    .images-sobre-con {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      img {
        width: 47%;
      }
    }
  }
}

.pc {
  #sobre {
    padding: 3% 5%;
    background-color: #002339;
    display: flex;
    .sobre-cont {
      .pc-only {
        display: block;
      }
      .mobile {
        display: none;
      }
      .images-sobre-con {
        img {
          width: 22%;
        }
      }
    }
  }
}
