@import url('https://fonts.googleapis.com/css?family=Hind:300,400');



.preguntas {
  margin: 0 auto;
  padding: 4rem;
  width: 100%;
}

h3 {
  font-size: 1.75rem;
  color: #373d51;
  padding: 1.3rem;
  margin: 0;
}





.accordion a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 3rem 3rem 3rem 3rem;
  color: #777;
  font-size: 1.9rem;
  font-weight: bold;
  font-family: 'roboto';
}

.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  color: #242424;
}

.accordion a:hover::after {

}

.accordion a.active {
  color: #777;
  border-bottom: 1px solid #777;
}

.accordion a::after {
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1.7rem;
  color: #242424;
  background-color: #00ffff;
  padding: 7px;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
}

.accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #242424;
 
}

.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}

.accordion .content p {
  font-size: 1.5rem;
  font-weight: 300;
}

.accordion .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}



@media screen and (max-width: 900px){
.accordion a::after {
    font-family: 'Ionicons';
    content: '\f218';
    position: relative !important;
    float: right;
    right: 1rem;
    font-size: 1.7rem;
    color: #242424;
   background-color: transparent !important; 
    padding: 14px 0px;
    width: 100% !important;
    height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;}

    }