.pagination {
    padding: 40px 0 0 0;
    width: 100%;
}
.pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}
.pagination ul li {
    margin: 0;
}
.pagination ul li a, .pagination ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #111832;
    transition: all 0.3s ease;
}
.pagination ul li a {
    background: #ffffff;
    border: 1px solid #e8eef0;
}
.pagination ul li a:hover {
    background: #e8eef0;
    border-color: transparent;
    color: #ffffff;
}
.pagination ul li a:hover svg path {
    stroke: #ffffff;
}
.pagination ul li .current {
    background: #e8eef0;
    border: 1px solid transparent;
}
.pagination ul li.ellipsis span {
    border: none;
    background: transparent;
    cursor: default;
}
@media (max-width: 991.98px) {
    .pagination {
        padding: 32px 0 0;
    }
    .pagination ul {
        gap: 6px;
    }
}
@media (max-width: 767.98px) {
    .pagination {
        padding: 24px 0 0;
    }
    .pagination ul {
        gap: 4px;
    }
}

.breadcrumb {
    width: 100%;
    margin-bottom: 20px;
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 20px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.breadcrumb__list li:last-child {
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
@media (max-width: 767.98px) {
    .breadcrumb__list {
        flex-wrap: nowrap;
    }
    .breadcrumb__list li:last-child {
        width: fit-content;
        max-width: 535px;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}
.breadcrumb__item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #45464a;
    text-decoration: none;
    white-space: nowrap;
}
.breadcrumb__item--home {
    color: #45464a;
}
.breadcrumb__item--home:hover {
    color: #00529c;
}
.breadcrumb__item--current {
    color: #45464a;
    cursor: default;
}
.breadcrumb__item:not(.breadcrumb__item--current):not(.breadcrumb__item--home):hover {
    color: #00529c;
}
.breadcrumb a.breadcrumb__item {
    transition: color 0.2s ease;
}
.breadcrumb a.breadcrumb__item:hover {
    text-decoration: none;
}
.breadcrumb__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #45464a;
}
.breadcrumb__icon {
    width: 16px;
    height: 16px;
    color: #45464a;
    flex-shrink: 0;
}

.intro-banner {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.intro-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.intro-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.intro-banner__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0.4) 55%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}
.intro-banner .breadcrumb__list {
    gap: 8px;
}
.intro-banner .breadcrumb__item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}
.intro-banner .breadcrumb__item a {
    color: #ffffff;
}
.intro-banner .breadcrumb__separator {
    color: #ffffff;
}
.intro-banner__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1280px) {
    .intro-banner {
        height: 480px;
    }
    .intro-banner__content {
        height: 260px;
        padding: 50px 0px 36px;
    }
    .intro-banner__title {
        font-size: 40px;
    }
}
@media (max-width: 1024px) {
    .intro-banner {
        height: 420px;
    }
    .intro-banner__content {
        height: 240px;
        padding: 40px 0 32px;
    }
    .intro-banner__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .intro-banner {
        height: 578px;
    }
    .intro-banner__content {
        height: 200px;
        padding: 32px 0px 28px;
        gap: 6px;
    }
    .intro-banner .breadcrumb__item {
        font-size: 12px;
    }
    .intro-banner__title {
        font-size: 32px;
    }
}

.faq-section {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
}
.faq-section .container {
    max-width: 1312px;
    margin: 0 auto;
}
.faq-section__wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 72px;
    position: relative;
}
.faq-section__content {
    flex: 1;
    max-width: 832px;
}
.faq-section__header {
    margin-bottom: 40px;
}
.faq-section__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.265;
    color: #111832;
    margin-bottom: 0;
}
.faq-section__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-section__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: auto;
    pointer-events: none;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    z-index: -1;
    display: flex;
    justify-content: end;
}
.faq-section__image img {
    width: 100%;
    max-width: 570px;
    aspect-ratio: 570/854;
    height: auto;
    object-fit: cover;
}
.faq-section__form-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}
.faq-section__field-group.search-input {
    flex: 1;
    max-width: 522px;
}
.faq-section__field-group:not(.search-input) {
    flex: 1;
}
.faq-section__search-input {
    position: relative;
    width: 100%;
}
.faq-section__input {
    width: 100%;
    height: 48px;
    padding: 15px 16px 15px 48px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #111832;
    background-color: #ffffff;
    border: 2px solid #b6dcfd;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
}
.faq-section__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-section__dropdown {
    position: relative;
    height: 48px;
    max-width: 36.6%;
}
.faq-section__dropdown-select {
    width: 100%;
    height: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #b6dcfd;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.265;
    color: #111832;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.faq-section__dropdown-select:focus {
    outline: none;
    border-color: #1bb5ec;
}

.faq-item {
    position: relative;
    background-color: #ffffff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    overflow: visible;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.faq-item__header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 64px 20px 24px;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.faq-item__tag {
    display: inline-flex;
    background-color: #1bb5ec;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    padding: 2px 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.faq-item__question {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.faq-highlight {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-item__toggle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e8eef0;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    flex-shrink: 0;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 16px;
    top: 20px;
}
.faq-item__toggle-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.faq-item__toggle-icon svg {
    width: 20px;
    height: 20px;
    color: #111832;
    -ms-transition: transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
}
.faq-item__content {
    max-height: 0;
    overflow: hidden;
    -ms-transition: max-height 0.4s ease, opacity 0.2s ease;
    -o-transition: max-height 0.4s ease, opacity 0.2s ease;
    -moz-transition: max-height 0.4s ease, opacity 0.2s ease;
    -webkit-transition: max-height 0.4s ease, opacity 0.2s ease;
    transition: max-height 0.4s ease, opacity 0.2s ease;
    opacity: 0;
    padding: 0 24px;
}
.faq-item__answer {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #45464a;
    margin: 0 0 16px 0;
}
.faq-item__answer:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
}
.faq-item.active {
    position: relative;
}
.faq-item.active .faq-item__header {
    padding-bottom: 12px;
}
.faq-item.active .faq-item__question {
    color: #d2002e;
}
.faq-item.active .faq-item__toggle {
    background: #e8eef0;
}
.faq-item.active .faq-item__toggle:hover {
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
}
.faq-item.active .faq-item__toggle:hover svg {
    color: #ffffff;
}
.faq-item.active .icon-chevron {
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq-item.active .faq-item__content {
    max-height: 1000px;
    opacity: 1;
}
.faq-item:hover .faq-item__toggle {
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
}
.faq-item:hover .faq-item__toggle svg {
    color: #ffffff;
}

.faq-section__dropdown .select2-selection--single {
    height: 48px !important;
    padding: 15px 16px !important;
    border: 2px solid #b6dcfd !important;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.265 !important;
    color: #111832 !important;
}
.faq-section__dropdown .select2-selection--single .select2-selection__placeholder {
    color: #111832;
}
.faq-section__dropdown .select2-selection--single .select2-selection__rendered {
    line-height: 24px !important;
    padding: 0 !important;
    font-weight: 600 !important;
    color: #111832;
}
.faq-section__dropdown .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 16px !important;
    width: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.faq-section__dropdown .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}
.faq-section__dropdown .select2-selection--single .select2-selection__arrow::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 7.5L10 12.5L15 7.5" stroke="%23111832" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -ms-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}
.faq-section__dropdown.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select2-container--default .select2-results__option {
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111832 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #e8eef0 !important;
    color: #111832 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #e8eef0 !important;
    color: #1bb5ec !important;
    font-weight: 600 !important;
}

.select2-container--default .select2-results__option[aria-selected=true]:first-child {
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

.select2-container--default .select2-results__option[aria-selected=true]:last-child {
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.select2-dropdown {
    border: 2px solid #b6dcfd !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

span.select2-container {
    width: 100% !important;
}

@media (max-width: 1199.98px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-section .container {
        padding: 0 80px;
    }
    .faq-section__wrapper {
        gap: 60px;
    }
    .faq-section__title {
        font-size: 22px;
    }
    .faq-section__image {
        width: 480px;
    }
    .faq-item__question {
        font-size: 17px;
    }
    .faq-item__answer {
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    .faq-section {
        padding: 64px 0;
    }
    .faq-section .container {
        padding: 0 40px;
    }
    .faq-section__wrapper {
        flex-direction: column;
        gap: 48px;
    }
    .faq-section__content {
        max-width: 100%;
    }
    .faq-section__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .faq-section__header {
        margin-bottom: 32px;
    }
    .faq-section__form-search {
        flex-direction: column;
        gap: 12px;
    }
    .faq-section__field-group.search-input, .faq-section__field-group:not(.search-input) {
        max-width: 100%;
        width: 100%;
    }
    .faq-section__dropdown {
        width: 100%;
    }
    .faq-section__image {
        position: relative;
        right: 0;
        bottom: -72px;
        width: 100%;
        margin-top: -120px;
    }
    .faq-section__image img {
        aspect-ratio: 158/237;
        width: 100%;
        max-width: 158px;
    }
    .faq-item {
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
    }
    .faq-item__header {
        padding: 24px 52px 20px 24px;
    }
    .faq-item__question {
        font-size: 16px;
    }
    .faq-item__toggle {
        right: 12px;
        top: 20px;
    }
}
@media (max-width: 767.98px) {
    .faq-section {
        padding: 48px 0;
    }
    .faq-section .container {
        padding: 0 24px;
    }
    .faq-section__wrapper {
        gap: 40px;
    }
    .faq-section__title {
        font-size: 18px;
    }
    .faq-section__header {
        margin-bottom: 24px;
    }
    .faq-section__image {
        margin-top: -90px;
    }
    .faq-item__question {
        font-size: 15px;
    }
    .faq-item__toggle {
        width: 28px;
        height: 28px;
        right: 10px;
        top: 16px;
    }
    .faq-item__toggle-icon svg {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 575.98px) {
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .container {
        padding: 0 16px;
    }
    .faq-section__title {
        font-size: 16px;
    }
}
.pagination ul {
    justify-content: flex-start !important;
}
@media (max-width: 991.98px) {
    .pagination ul {
        justify-content: center !important;
    }
}
/*# sourceMappingURL=faq.css.map */
