#noticias3 {
  background: white;
  height: 380px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

#noticias3 #noticias3elemento {
  height: 370px;
  width: 310px;
  margin: 10px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}


#noticias3 #noticias3elemento h1 {
  text-align: center;
  z-index: 2;
  color: #fff;
}

.noticias3elementoparte2::-webkit-scrollbar {
  background-color: #ffffff00;
  width: 15px;
  padding-right: 50px;
}

/* background of the scrollbar except button or resizer */
.noticias3elementoparte2::-webkit-scrollbar-track {
  background-color: #ffffff00;
  
}

/* scrollbar itself */
.noticias3elementoparte2::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 18px;
  border: 4px solid rgb(76, 136, 188);
}

/* set button(top and bottom of the scrollbar) */
.noticias3elementoparte2::-webkit-scrollbar-button {
  display: none;
}

/*.noticias3elementoparte2::-webkit-scrollbar {
  width: 0;
}*/

@media (max-width: 768px) {

  #noticias3elemento img {
    height: 50%;
    width: auto;
  }

  #noticias3elemento {
    font-size: 15px;
  }

  #noticias3 {
    height: 100%;
    margin: auto;
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

}