/* Code By Webdevtrick ( https://webdevtrick.com ) */
@import url('https://fonts.googleapis.com/css?family=Hind:300,400');

.accordion a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 1rem 1rem 1rem 0rem;
  color: #000000;
  font-size: 1.15rem;
  font-weight: 400;
  border-bottom: 1px solid #e5e5e5;
  background: rgba( 255, 255, 255, 0.45 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );

  border-radius: 3px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.322);
}
.accordion-item a{
    padding: 1rem 20px;
}
.accordion-item:hover{
    color: rgb(255, 255, 255);
}
.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  color: whitesmoke;
  font-weight: 400;
  background: linear-gradient(135deg,  lightblue,rgb(0, 70, 110));
}
.accordion a:hover::after {
    background:transparent;
    color: whitesmoke;
  
}
.accordion a.active {
  color: #1e6eb9;
  
}
.accordion a::after {
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1rem;
  color: #050505;
  padding: 5px;
  width: 30px;
  height: 30px;

  text-align: center;
}
.accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #0d5fbd;
  color: #000000;
  
}
.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  color: #000000;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
  background: rgba( 255, 255, 255, 0.45 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  font-weight: 800;
  border-radius: 3px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.322);
  background: linear-gradient(90deg, #fdff81 0%, rgb(253, 211, 21) 90%);
}
.accordion .content p {
  font-size: 1rem;
  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;
}