.faqs-section {
    padding: 130px 0 20px 0;
}

.faqs-title {
    margin-bottom: 80px;
}
.faq-item.active .faq-question-text {
	color: var(--color-brand-blue);
}
.faq-item.active .faq-icon path {
	fill: var(--color-brand-blue);
}
.faq-question {
    background-color: transparent;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    padding: 26px 40px 21px 0;
    border-top: 2px solid rgba(0, 126, 169, 0.16);
    transition: 0.5s;
    text-transform: uppercase;
    font-weight: var(--fw-700);
    font-family: var(--font-family-heading) !important;
}

.faq-question:hover {
    color: var(--color-brand-blue);
}

.faq-question:hover .arrow-icon path {
    fill: var(--color-brand-blue);
}

.faq-answer {
    display: none;
    padding: 20px 0 60px 72px;
    max-width: 1270px;
}

.faq-item.active .faq-icon {
    transform: rotate(-180deg);
}

.faq-question-text {
    width: calc(100% - 188px);
}

.faq-icon {
    transition: 0.5s;
}

.faq-item:last-child {
    border-bottom: 2px solid rgba(0, 126, 169, 0.16);
}

@media screen and (max-width:1600px) {
    .faqs-section {
        padding: 120px 0 20px 0;
    }

    .faqs-title {
        margin-bottom: 60px;
    }
}

@media screen and (max-width:1440px) {
    .faqs-section {
        padding: 110px 0 20px 0;
    }

    .faqs-title {
        margin-bottom: 45px;
    }

    .faq-answer {
        padding: 20px 0 55px 55px;
    }
}

@media screen and (max-width:1200px) {
    .faqs-section {
        padding: 100px 0 20px 0;
    }

    .faq-question {
        padding: 24px 30px 19px 0;
    }

.faq-question-text {
	width: calc(100% - 111px);
	line-height: 1.2;
}

    .faq-question-text br {
        display: none;
    }
}
@media screen and (max-width:992px) {
    .faqs-section {
	padding: 80px 0 20px 0;
}

.faq-question {
	padding: 20px 5px 15px 0;
}
.faq-answer {
	padding: 20px 0 45px 40px;
}

.faq-question-text {
	width: calc(100% - 50px);
}
}
@media screen and (max-width:640px) {
    .faqs-section {
	padding: 50px 0 20px 0;
}
.faqs-title {
	margin-bottom: 28px;
}
.faq-question {
	font-size: 18px;
}
.faq-answer {
	padding: 10px 0 35px 20px;
}
}