*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    box-sizing: border-box;
  
}

section{
    width: 100%;
    height: 100%;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    padding-bottom: 400px;
}

.container{
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accordion-item{
    background-color: #20518e;
    border-radius: .4rem;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow: .1rem 2px .1rem rgba(0,0,0,.1);
}

.accordion-link{
    font-size: 2.1rem;
    color: #ffffff;
    text-decoration: none;
    background-color: #20518e;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;   
}

.accordion-link i{
    color: #e7d5ff;
    padding: .5rem;

}

.accordion-link .ion-md-remove{
    display: none;

}

.answer{
    max-height: 0;
    overflow: hidden;
    position: relative;
    /* background-color: #212838;    */
    transition: max-height 650ms;
    background-color: #fff;
}

.answer::before{
    content: "";
    position: absolute;
    width: .6rem;
    height: 90%;
    background-color: #8fc460;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.answer p{
    color: #212838;
    font-size: 1.9rem; 
    padding: 2rem;
    height: auto;
}

.accordion-item:target .answer{
    max-height: fit-content;

}

.accordion-item:target .accordion-link .ion-md-add{
    display: none;
}

.accordion-item:target .accordion-link .ion-md-remove{
    display: block;
}

.header{
    padding-top: 100px;
    color: #212838;
    font-size: 3.4rem; 
    padding: 2rem;
    text-align: center;
}

.qtitle{
    padding-top: 10px;
    color: #212838;
    font-size: 3.4rem; 
    padding: 2rem;
    text-align: center;
}