.FAQ{
    color:white;
}
.FAQ h1{
    text-align: center;
    margin:3%;
}
.FAQ>div{
    display: flex;
    width:60%;
    margin:auto;
    justify-content: space-between;
}
.FAQ>div>div{
    width:80%;
}
.FAQ>div>div>h3{
    margin-top:1rem;
    font-weight: lighter;
    line-height: 25px;
    text-align: justify;
}
.FAQ hr{
    width:60%;
    margin:1% auto;
    background-color:rgb(82, 79, 79);
}
.FAQ button{
    font-size: 20px;
    height:25px;
    width: 25px;
    color:white;
    font-weight: bold;
    background-color: rgb(49, 45, 45);
    border:0px;
}
.FAQ>hr:last-child {
    background-color: rgb(49, 45, 45);
}

.support{
    color:white;
    display: flex;
    justify-content: space-between;
    padding:2% 2% 1% 2%;
}
.support>div:first-child{
    width:25%;
    font-size: 15px;
}
.support>div>ul{
    display: flex;
    justify-content: space-between;
    margin-top:1%;
    list-style: none;
}
.support>div>ul>li>a{
    display: inline-block;
    font-size:12px;
    color: white;
    text-decoration: none;
    
}

@media all and (min-width: 150px) and (max-width: 499px) {
    .support>div:first-child{
        width:90%;
        font-size: 10px;
    }




}


@media all and (min-width: 500px) and (max-width: 1000px) {

    .support>div:first-child{
        width:45%;
        font-size: 15px;
    }


}