body
{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;

}


#welcome
{
    position: relative;
    width: 100%;
    min-height: 350px;
    background-image: url("/img/faq/world.png");
    background-repeat: no-repeat;
    background-size: cover;
}

#welcome h1
{
    position: relative;
    text-align: center;
    top:170px;
    font: normal normal 600 104px/0px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    z-index: 1;
}

#faq
{
    position: relative;
    width: 100%;
    min-height: 1080px;

}

#faq .container
{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1600px;
    margin: auto;
    margin-bottom: 90px;
}

#faq .container #title
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#faq .container #title-card h1
{
    text-align: center;
    margin-bottom: 80px;
    font: normal normal 600 80px/90px Poppins;
    letter-spacing: 0px;
    color: #000000;
}



#faq .container #title-card #rectangle0
{
    position: relative;
    margin: auto;
    width: 155px;
    height: 20px;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: #0AB47A 0% 0% no-repeat padding-box;
    border-radius: 16px;
    opacity: 1;

}
#faq .container #faq-content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: auto;
}

#faq .container .faq-card
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    box-shadow: 0px 3px 26px #00000029;
    border-radius: 77px;
    padding: 60px;
}

#faq .container .faq-card button
{
    border: none;
    text-decoration: none;
    background: transparent;
    text-align: center;
    font: normal normal 600 40px/60px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    display: flex;
    justify-content: space-between;
}

#faq .container .faq-card button:hover
{
    cursor: pointer;
}

#faq .container .faq-card .content
{
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.collapsible:after {
    content: '+';
    font-size: 70px;
    color: #0AB47A;
    float: right;
    opacity: 1;
    margin-bottom: auto;
    margin-top: auto;
}

.active:after {
    content: "-";
}

#faq .container .faq-card h2
{
    text-align: left;
    font: normal normal 600 40px/60px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

#faq .container .faq-card p
{
    text-align: center;
    font: normal normal 300 24px/35px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    margin-top: 20px;
}

#faq .container .faq-card p span
{
    font: normal normal 600 24px/35px Poppins;
    letter-spacing: 0px;
    color: #0AB47A;
    opacity: 1;

}

#faq .container .faq-card span a {
    font: normal normal 600 24px/35px Poppins;
    letter-spacing: 0px;
    color: #0AB47A;
    transition: color 0.3s ease-in-out;
}

#faq .container .faq-card span a:hover {
    color: #4e9b7c;
}

/* responsive */
@media (max-width: 1600px)
{
    #faq .container
    {
        width: 100%;
    }
    #faq .container #title-card
    {
        width: 100%;
    }
    #faq .container .faq-card
    {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}