.page-container {
width: 100%;
margin: auto;
}
.faq-section {
padding: 30px 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.faq-container h2 {
font-family: 'Barlow Condensed', sans-serif;
font-size: 52px;
font-weight: 600;
line-height: 1.2;
text-align: center;
margin: 30px 0 40px 0;
text-transform: capitalize;
}
.tab-list {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 20px;
}
.faq-list {
width: 100%;
}
.single-faq {
display: flex;
flex-direction: row;
align-items: center;
gap: 22px;
height: 61px;
background: #EA0A0B;
width: 100%;
}
.single-faq .question {
width: 100%;
background: #EA0A0B;
padding: 15px 17px 15px 17px;
font-family: 'Barlow Condensed', sans-serif;
font-size: 26px;
font-weight: 500;
line-height: 1.2;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
display: flex;
gap: 22px;
color: #FFFFFF;
align-items: center;
}
.single-faq .question h5{
font-size: inherit;
margin: 0;
color: inherit;
}
.elementor-toggle-icon svg {
width: 14px;
height: 18px;
fill: white;
}
.elementor-toggle-icon-opened {
display: none;
}
.faq-list.active .elementor-toggle-icon-opened {
display: block;
}
.faq-list.active .elementor-toggle-icon-closed {
display: none;
}
.answer {
display: none;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 1.45;
color: #615F5C;
padding-left: 30px;
padding-top: 20px;
font-family: "DM Sans", serif;
}
.faq-list.active .answer {
display: block;
}
@media only screen and (max-width:767px) {
.faq-container h2 {
font-size: 32px;
margin: 40px 0;
}
.faq-list .answer {
padding-left: 0;
padding-bottom: 10px;
}
.faq-section {
padding-bottom: 40px;
padding-top: 0;
gap: 40px;
}
.single-faq .question {
font-size: 19px;
}
.answer {
font-size: 14px;
}
}