:root{
    --faqTop:0vw;
}
.faq{
    background:linear-gradient(90deg, #FEE7E3 0%, #F9AEA3 73.96%, #F4594A 100%);
    background-size: cover;
    background-repeat: no-repeat;
    top:var(--faqTop);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center; 
    color:#2d2d2d;
    padding:3.125vw 0 9.125vw 0;
}
.faq::after{
    z-index: -1;
    position: absolute;
    content:' ';
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background:  url("../../../img/kindalbom/noise.png") repeat left top;
    opacity:0.5;
}
.faqsContainer{
    margin-top: 3.125vw;
}
.faqContainer{
    width:79vw;
    height:auto;
    margin-top: 1.25vw;
    background-color: #fff;
    padding:1.25vw 2.08vw;
    border-radius: 2vw;
    cursor:pointer;
}
.faqContainer:first-child{
    margin-top: 0;
}
.faqUpper{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}
.faqIcon{
    width: 1.875vw;
    margin-right: 0.7vw;
}
.faqOpenStatusIcon{
    margin-left: auto;
}
.faqContainer.opened{
    border-radius: 1vw;
}
.faqContainer.opened .faqOpenStatusIcon{
    transform:rotate(180deg);
}
.faqText{
    display: none;
    margin-top: 1.25vw;
    padding-left: 2.575vw;
}
.faqContainer.opened .faqText{
    display: block;
}
.watchMore{
    border-radius: 2vw;
    margin-top: 4.16vw;
    display: flex;
    justify-content: start;
    align-items: center;
    padding:0.8vw 2.4vw;
    color:white;
    transition:all 0.3s ease;
    background-color: #2d2d2d;
}
.watchMore:hover{
    background-color: #fff;
    color: #2d2d2d;
}
.watchMoreIcon{
    width: 1.875vw;
    margin-right: 0.8vw;
}