

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 9rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #5472B3;
    font-size: 2rem;
    border-radius: 10px;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #5472B3;
}

.social-icons a:hover{
    color: #1b1b1f;
    transform: scale(1.3) translateY(-5px);
    background-color: #5472B3;
    box-shadow: 0  0 5px #5472B3;
}


.faq{
    display: inline-block;
    padding: 1rem 2.8rem;
    width: 100vw;
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.page-text{
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 3rem;
    font-family: arial black;
    background: -webkit-linear-gradient(#0a40b4, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#faq-u {
    padding: 0px 14% 0px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #fff;
    
    
}

#faq-u .faq {
    width: 50vw;
    margin-top: 15px;
    box-shadow: 0 6px 20px #202127;
    padding: 16px 18px;
    border-radius: 10px;
    background: #202127;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 0 0 1px 1px #5472b3ae;
}

@media only screen and (max-width: 726px) {
    #faq-u .faq {
        width: 80vw;}
}

#faq-u .faq:hover {
    border: 1px solid #24292e;
}

#faq-u .question {
    position: relative;
    display: flex;
    align-items: center;
}

#faq-u .question h2 {
    font-size: 22px;
    margin-left: 3px;
}


#faq-u .answer p {
    border-top: 1px solid #24292e;
    font-size: 17px;
    color: #dcdcdc;
    margin-top: 8px;
    padding-top: 8px;
    line-height: 1.4;
}

#faq-u .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#faq-u .faq.active {
    transform: scale(1.03);
    border: 1px solid #24292e;
}

#faq-u .faq.active .answer {
    max-height: 300px;
    transition: max-height 0.6s ease;
}

#faq-u .faq.active svg {
    transform: rotate(180deg);
}

#faq-u svg {
    position: absolute;
    right: 0px;
    transition: transform 0.3s ease;
}

