body {
  font-family: Helvetica; 
  font-weight: 400;
  background: #ecf0f1;
}

.comcom {
  font-size: 3.5em;
  font-weight: bold;
  text-align: center;
  margin: 1.2em 0;
  padding-top: 8px;
  color: white;
}




/*Carousel*/
.carrousellle {
  text-align: center;
  padding: 4em 0;
  padding-bottom: 12%;
  height: 7.5em;
  max-width: 750px;
  margin: auto;
  padding-bottom: 290px;
  position: relative;
  overflow: hidden;
}

.carrousellle .slides {
  width: 400%;
  left: 0;
  padding-left: 0;
  padding-top: 1em;
  overflow: hidden;
  list-style: none;
  position: relative;

  -webkit-transition: transform .5s;
  -moz-transition: transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
}
.carrousellle .slides li {
  width: 25%;
  position: relative;
  float: left;
}
.carrousellle li p{
  margin-top: 0;  
}
.carrousellle li q {
  max-width: 90%;
  margin: auto;
  color: white;
  font-size: 1.3em;
  font-weight: bold;
}
.carrousellle li img {
  width: 3em;
  height: 3em;
  object-fit: cover;
  border-radius: 50%;
  margin-left: -1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.carrousellle li span.author {
  margin-top:0.5em;
  font-size: 1.2em;
  color: white;
  display: block;
}
.carrousellle .slidesNavigation {
  display: block;
  list-style: none;
  text-align: center;
  bottom: 1em;
  /*--- Centering trick---*/
    /* Absolute positioning*/
    position: absolute; 
    /* Abosulte positioning*/
    width: 104px; /*This width  is the addition of the width of all the navigations dots - So in this case is   104 because the navigation dots are 26px (width:10px and 6px marginleft + 6 px marginright) and there are 4 dots so 4x26=104 */
    left: 50%; /*Centering de element*/
    margin-left: -52px; /*adjusting the centering by applying a negative margin of half of the width*/
}
.carrousellle input {
  display: none;
}
.carrousellle .slidesNavigation label {
  float: left;
  margin: 6px;
  display: block;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: solid 2px #2980b9;
  font-size: 0;
}
/* You have to repeat this with each slide
TODO: make it easier with SCSS
25% movement 100/slides-num
*/
#radio-1:checked ~ .slides {
  transform: translateX(0%);
}
#radio-2:checked ~ .slides {
  transform: translateX(-25%);
}
#radio-3:checked ~ .slides {
  transform: translateX(-50%);
}
#radio-4:checked ~ .slides {
  transform: translateX(-75%);
}


.carrousellle .slidesNavigation label:hover {
   cursor: pointer;
}
/* You have to repeat this with each slide/dot */
.carrousellle #radio-1:checked ~ .slidesNavigation label#dotForRadio-1,
.carrousellle #radio-2:checked ~ .slidesNavigation label#dotForRadio-2,
.carrousellle #radio-3:checked ~ .slidesNavigation label#dotForRadio-3,
.carrousellle #radio-4:checked ~ .slidesNavigation label#dotForRadio-4 {
  background: #2980b9;
}

@media  (max-width: 796px) {
  .carrousellle{
    height: 8.5em;
     padding-bottom: 38%;

  }


}







@media  (max-width: 480px) {
  .carrousellle
  {
     padding-bottom: 87%;
  }
  .carrousellle li p {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .carrousellle li q {
      font-size: 1em;
  }
  .carrousellle li img {
     width:2em;
     margin-left: -1em;
     margin-right: 0.25em;
  }
}