:root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
}


#FQA{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 30px;
}

.Title_FQA{
    color: var(--Secondary-Text-Color);
    font-size: 3rem;
    text-transform: uppercase;
    text-decoration: underline;
}

.Question{
    border-bottom: 1px solid var(--Secondary-Text-Color);
    width: 750px;
    padding-bottom: 10px;
    margin-top: 10px;
}

.Question h1{
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.Question p ,.Question p a{
    font-weight: 500;
    color: var(--Paragraph-Text-Color);
    font-size: 1.1rem;
}

.Question p a{
    color: var(--Secondary-Text-Color);
}

.material-symbols-outlined{
    font-weight:800;
    font-size: 2rem;
    transition: all 0.3s ease;
}

#FQA img{
    -webkit-mask-image: linear-gradient(to top, #8b6a6a00, #121212);
    width: 250px;
    margin-top: 30px;
}

.Answr{
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease;
}

.Answr.active{
    max-height: 200px;
}

.material-symbols-outlined.active{
    transform: rotate(180deg);
}

.Answr p{
    margin-top: 10px;
}

.Question.frist{
    padding-top: 10px;
    border-top: 1px solid var(--Secondary-Text-Color);
}

@media only screen and (max-width: 1200px) {
    #FQA img{
        width: 210px;
    }

    .Question h1{
        font-size: 1.2rem;
    }
    .Question {
        width: 560px;
    }
    .Question p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1100px) {
    .Title_FQA{
        font-size: 2.7rem;
    }
}


@media only screen and (max-width: 600px) {
    .Question h1{
        font-size: 1.2rem;
    }
    .Question {
        width: 400px;
    }

    #FQA img{
        width: 180px;
    }
    
}

@media only screen and (max-width: 450px) {
    .Question h1{
        font-size: 1rem;
    }
    .Question {
        width: 300px;
    }
    .Question p {
        font-size: 0.9rem;
    }
}