/************************************************************/
/****************   CSS  S L I D E R    *******************/

.container-slider {
  width: 90%;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  width: 600%;
  height: 450px;
  margin-left: -100%;
}

.sliderSection {
  position: relative;
  width: 100%;
}

.sliderImg {
  position: relative;
  border-style: none;
  width: 100%;
  height: 100%;
  
}

.sliderBtn {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

@media (hover: hover) {
  .sliderBtn:hover {
    background: #252525;
    color:white;
  }
}

.sliderBtnRight {
  right: 10px;
}

.sliderBtnLeft {
  left: 10px;
}

.containerPuntos {
  position: absolute;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 30px;
}

.puntos {
  display: flex;
  justify-content: center;
  list-style: none;
}

.punto {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.punto input {
  display: none;
}

.punto label {
  display: flex;
  margin-left: 10px;
  width: 40px;
  height: 5px;
  background: #2b3d4e;
  border-radius: 5%;
  border: 0.5px solid rgb(102, 97, 97);
  cursor: pointer;
}

.punto input[type="radio"]:checked + label {
  background: #0074c7;
}


/*********************************************************************/
.barraPromo {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 60px;
  background: linear-gradient(5deg, #2c3e50, #0074c7);
  display: flex;
  color: white;
  justify-content: space-between;
  align-items: center;
}

.textBarra {
  margin-top: 15px;
  padding: 30px;
  font-size: 18px;
  font-weight: 600;
}

.textBarra a {
  color: white;
  cursor: pointer;
}