:root {
  --color-primary: #1d1d1b;
  --color-secundary: #fceb4f;
  --color-three: #80c5fb;
  --color-four: #1d70b7;
}

.section-gallery {
  padding: 1em 0;
}

.section-gallery h2 {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}

.container-info-gallery {
  background-color: var(--color-secundary);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-info-gallery p {
  margin: 0;
  color: white;
  font-size: 20px;
}

.list-inline {
  margin: 30px 0;
  text-align: center;
  width: 100%;
}

.list-inline-item {
  padding: 10px;
  cursor: pointer;
  position: relative;
  width: 80%;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: white;
}

.list-inline-item .cont-new {
  background-color: rgb(251, 251, 158);
  font-size: 12px;
  position: absolute;
  top: -10px;
  left: -16px;
  padding: 2px 5px;
  border-radius: 5px;
  color: rgb(70, 70, 70);
}

.list-inline-item:not(:last-child) {
  margin: 0 0.5rem;
}

.row.no-gutters img {
  border: 4px solid var(--color-secundary);
  border-radius: 10px;
  object-fit: cover;
  width: 400px;
  height: 400px;
}

.row.no-gutters iframe {
  border: 4px solid var(--color-secundary);
  border-radius: 10px;
  object-fit: cover;
  width: 400px;
  height: 400px;
}

.container-read-more {
  background-color: var(--color-primary);
  width: 100%;
  height: 300px;
  border: 4px solid var(--color-secundary);
  border-radius: 10px;
}

.container-read-more a {
  text-decoration: none;
  color: none;
}

.container-read-more i,
.container-read-more h3 {
  color: white;
  font-size: calc(1rem + 1vw);
}

@media (min-width: 995px) {
  .section-gallery {
    padding: 5em 0;
  }

  .section-gallery h2 {
    text-align: center;
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 20px;
  }

  .container-info-gallery {
    background-color: var(--color-secundary);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container-info-gallery p {
    margin: 0;
    color: white;
    font-size: 25px;
  }

  .list-inline {
    margin: 30px 0;
    text-align: center;
  }

  .list-inline-item {
    background-color: var(--color-primary);
    padding: 10px;
    cursor: pointer;
    width: auto;
    border-radius: 10px;
    color: white;
  }

  .container-read-more {
    background-color: var(--color-primary);
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-secundary);
    border-radius: 10px;
  }

  .container-read-more a {
    text-decoration: none;
    color: none;
  }

  .container-read-more i,
  .container-read-more h3 {
    color: white;
    font-size: calc(1rem + 1vw);
  }
}