.swiper-container {
      width: 100%;
      height: 100%;
    }
.swiper-pagination-bullet{
width:15px;
height:15px;
}

.swiper-pagination-bullet {
    opacity: 0.8;
    background-color: #c2c2c2;
}
.swiper-pagination-bullet-active{
    background-color: blue;
}
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;

      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    .slide-portada{
        font-family: 'GigaSans-Bold';
        height: 600px;
    }
    .slide-portada .titulo{
        
    }
     .slide-portada .titulo h1{
        color:#fff;
        padding-left: 20px;
        font-size:50px; 
    }
    .slide-portada .cuerpo{
        background: #fff;
        opacity: 0.75;
        width: 80%;
        height: 400px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        margin-left: 5px;
        border-radius: 5px;
    }
     .slide-portada .cuerpo p{
        font-family: 'Arial,Helvetica,sans-serif;';
        font-size: 20px;
        color:#000;
    }
    .slide-portada .titulo h1:before {
     content: '';
    display: inline-block;
    height: 6px;
    width: 200px;
    background: #4fa34f;
    position: absolute;
    left: 20px;
    bottom: 640px;
}

@media screen and (max-width: 700px) {
 .slide-portada .cuerpo{
        width: 100%;
        height: 540px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        margin-left: 5px;
        border-radius: 5px;
    }
    .slide-portada .cuerpo p{
        font-size: 15px;
    }

}