/** code by webdevtrick ( https://webdevtrick.com ) **/


.container {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
}

button.accordion {
  height:75px;
  width: 100%;
  background-color: whitesmoke;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 54px 15px 20px;
  
  text-transform: uppercase; 
  font-size: 21px;
  color: #bc1f54;
  cursor: pointer;
  transition: background-color 0.2s linear;
  
  background:url(sitio/flecha1.png) no-repeat white;
   background-position: center right 20px;
  
}

button.accordion:hover, button.accordion.is-open {
  background-color: #fff;
}

.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 20px;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}