.title-and-search {
    padding: 40px 0;
}
.title-and-search .ca-main-title {
    margin-bottom: 53px;
}
.title-and-search .ca-search-bar {
    max-width: 642px;
    margin: 0 auto;
}
.title-and-search .ca-search-bar:after {
    display: none;
}
.title-and-search .ca-search-bar .search-input {
    padding-left: 20px;
}

.main-content-wrapper {
    padding: 50px 0;
}
.main-content-wrapper .main-content-title {
    text-align: left;
    margin-bottom: 40px;
}

.accordion .category-section {
    margin-bottom: 30px;
    background: var(--opacity-blue);
    border-radius: 20px;
}
.accordion-header {
    cursor: pointer;
    position: relative;
    padding: 33px 43px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.accordion-header .accordion-icon {
    width: 21px;
    height: 16px;
    position: relative;
    background: url('../img/ca-arrow-right.svg') no-repeat center center/100% auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.category-section.active .accordion-header .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    position: relative;
    padding: 0 43px;
    transition: height 0.3s linear, padding 0.3s linear;
}
.accordion-content:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 43px;
    right: 43px;
    height: 1px;
    background: #c0e4f4;
}
.accordion .category-section.active .accordion-content {
    height: auto;
    padding: 20px 43px;
}
.accordion .category-section .accordion-content .page-link {
    display: block;
    padding: 10px 0;
    font-weight: 700;
    color: var(--blue);
}
.accordion .category-section.active .accordion-content .page-link {
    margin: 4px 0;
}
.accordion .category-section.active .accordion-content .page-link:hover {
    text-decoration: underline;
}

.categories-wrapper.loading {
    opacity: 0.5;
    pointer-events: none;
}

.no-results {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: #666;
}
.results-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
}

@media (max-width: 1023px) {
    #pre-footer {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .title-and-search {
        padding-bottom: 0;
    }
    .title-and-search .ca-main-title {
        margin-bottom: 36px;
    }
    .main-content-wrapper .main-content-title {
        max-width: 290px;
        margin: 0 auto 40px;
        text-align: center;
    }
    .accordion .category-section {
        margin-bottom: 14px;
    }
    .accordion-header {
        padding: 24px 34px;
        font-size: 16px;
    }
    .accordion-content {
        padding: 0 34px;
    }
    .accordion-content:before {
        left: 34px;
        right: 34px;
    }
    .accordion .category-section.active .accordion-content {
        padding: 24px 34px;
    }
    .ca-img-banner.alt.medium-img .left-img-wrapper {
        max-width: 146px;
    }
    #pre-footer {
        margin-top: 60px;
    }
}
