.cards__flex {
    justify-content: center;
}


.card-item {
    margin-top: 32px;
}
.scroll-ui > div, 
.scroll-ui p {
    overflow: auto;
}
.scroll-ui > div::-webkit-scrollbar, 
.scroll-ui p::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }
.scroll-ui > div::-webkit-scrollbar-track, 
.scroll-ui p::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #E1ECF3;
}
.scroll-ui > div::-webkit-scrollbar-thumb, 
.scroll-ui p::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--theme-color3);
}

/* ------------------------------ Card Style1 ------------------------------ */
.card {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    transition: transform .2s linear;
}

.card__image {
    padding: 47px 0;
    border-bottom: 1px solid var(--theme-color2);
}

.card__image img {
    margin: 0 auto;
    display: block;
}

.card__details {
    padding: 32px 33px 26px;
}

.card__details p {
    font-weight: 400;
    color: #000000;
}

.card__details.scroll-ui div {
    max-height: 160px;
}

.card__bottom {
    background: var(--theme-color2);
    position: relative;
    font-size: 14px;
    line-height: 1em;
    color: #FFFFFF;
    font-weight: 400;
    padding: 12px 32px;
}

.card__bottom::after {
    content: '\e905';
    font-family: 'csg-icon';
    position: absolute;
    right: 0;
    top: 0;
    background: var(--theme-color1);
    width: 38px;
    height: 100%;
    color: var(--theme-color3);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-white .card {
    background: #F5F5F5;
}

.cards .card__image img {
    max-height: 45px;
    height: auto;
    max-width: 234px;
    object-fit: contain;
}

.cards--sml .card__image {
    padding: 35px 0;
}

.cards--sml .card__image img {
    width: 170px;
}

.content-rows .slick-arrow {
    position: absolute;
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0;
    font-size: 0;
    color: #BADAF3;
    background-color: var(--theme-color3);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1;
}

.content-rows .slick-arrow::before {
    font-family: 'csg-icon';
}

.content-rows .slick-prev::before {
    content: "\e904";
}

.content-rows .slick-next:before {
    content: "\e905";
}

.content-rows .slick-prev {
    margin-left: -22px;
}

.content-rows .slick-next {
    margin-left: 22px;
}

.content-rows .slick-arrow:hover, 
.content-rows .slick-arrow:focus {
    background-color: #BADAF3;
    color: var(--theme-color3);
}

.content-rows:not(.theme-blue) .slick-arrow:hover,
.content-rows:not(.theme-blue) .slick-arrow:focus {
    background-color: var(--theme-color2);
}

@media (min-width: 1200px) {
    .icons-columns__headlines {
        margin-bottom: 28px;
    }

    .card:hover {
        background: #E5F3FE;
        transform: translate3d(0,-10px,0);
    }
}


/* 04-03-25 */

@media (max-width: 1199px) {
    .js-cards-slider {
        display: block;
        padding-bottom: 80px;
        margin: 0 -16px;
    }
    
    .card-item,
    .image-card-item,
    .icons-card-item,
    .icons-column-item {
        padding: 0 16px;
    }

    .image-card__details {
        min-height: 178px;
    }

    body .bg-blue-gradient .image-cards__flex .slick-arrow,
    body .bg-blue-gradient .icons-cards__flex .slick-arrow {
        background: #fff;
        color: var(--theme-color3);
    }

    body .bg-blue-gradient .image-cards__flex .slick-arrow:hover,
    body .bg-blue-gradient .icons-cards__flex .slick-arrow:hover {
        background: var(--theme-color1);
        color: var(--theme-color3);
    }
}

@media (max-width: 767px) {
    .js-cards-slider {
        padding-bottom: 65px;
    }

    .image-card__details {
        min-height: 155px;
    }
}

@media (min-width: 1200px) {
    .cards__flex--two-rows {
        max-width: 832px;
        margin: 0 auto;
    }
}


/* ------------------------------ Card Style2 ------------------------------ */
.image-cards__flex {
    justify-content: center;
}


.image-card-item {
    margin-top: 32px;
}

.image-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    position: relative;
    z-index: 1;
    margin: 0 32px;
    padding-top: 192px;
    transition: transform .2s linear;
}

.bg-white .image-card {
    background: #F5F5F5;
}

.image-card__img {
    height: 230px;
    position: absolute;
    width: calc(100% + 64px);
    left: -32px;
    top: 0;
}

.image-card__details {
    padding: 32px 32px 0 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.image-card__details > div {
    max-height: 175px;
    padding-left: 32px;
    padding-right: 10px;
}

.bg-white .image-card__details {
    background: #F5F5F5;
}
.image-card__details h2,
.image-card__details h3,
.image-card__details h4,
.image-card__details h5,
.image-card__details h6 {
    color: var(--theme-color3);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.333em;
    margin-bottom: 8px;
    position: relative;
}

.image-card__details h2::before,
.image-card__details h3::before,
.image-card__details h4::before,
.image-card__details h5::before,
.image-card__details h6::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--theme-color3);
    left: -32px;
    top: 2px;
}

.image-card__details {
    font-weight: 400;
    color: #000000;
}

.image-card__bottom {
    padding: 8px 32px 32px;
}

.image-card__cta {
    display: inline-block;
    position: relative;
    color: var(--theme-color3);
    font-size: 14px;
    font-weight: normal;
    line-height: 1.714em;
    background: none;
    border: none;
    margin: 0;
    padding: 0 24px 0 0;
}

.image-card__cta::after {
    content: '\e905';
    font-family: 'csg-icon';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 16px;
    line-height: 1em;
    font-weight: normal;
}

@media (min-width: 1200px) {
    .image-cards__headlines {
        margin-bottom: 28px;
    }

    .image-cards__headlines h3 {
        margin-bottom: 20px;
    }
    
    .image-card:hover {
        background: #E5F3FE;
        transform: translate3d(0,-10px,0);
    }

    .image-card:hover .image-card__details {
        background: #E5F3FE;
    }
}

/* ------------------------------ Card Style3 ------------------------------ */
.icons-cards__flex {
    justify-content: center;
}

.icons-card-item {
    margin-top: 32px;
}

.icons-card {
    font-weight: normal;
    transition: transform .2s linear;
    display: block;
    text-decoration: none;
}

.icons-card__top {
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    padding: 0 13px;
    gap: 13px;
    background: var(--theme-color1);
    background: var(--theme-color2);
    color: #fff;
    height: 80px;
    box-shadow: 0 4px 10px rgba(15,28,107,0.15);
    position: relative;
    z-index: 1;
}

.icons-card__img img {
    max-width: 54px;
    height: auto;
}

.content-rows .icons-card__title{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-rows .icons-card__title{
    font-size: 18px;
}

.icons-card__details {
    background: #fff;
    width: calc(100% - 30px);
    margin-left: auto;
    padding: 74px 32px 36px;
    margin-top: -42px;
    min-height: 285px;
    box-shadow: 0 4px 10px rgba(15,28,107,0.15);
    box-shadow: none;
}

.bg-white .icons-card__details {
    background: #F5F5F5;
}

.icons-card__details p {
    color: #000;
    font-weight: 400;
    margin-bottom: 16px;
    min-height: 120px;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 10px;
}

.icons-card__details p::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }
  
.icons-card__details  p::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #E1ECF3;
}

.icons-card__details  p::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--theme-color3);
}


.icons-card__cta {
    color: #fff;
    width: 38px;
    height: 38px;
    background: var(--theme-color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color1);
    font-size: 16px;
    line-height: 1em;
}

@media (min-width: 1200px) {
    .icons-cards__headlines {
        margin-bottom: 28px;
    }

    .icons-cards__headlines h3 {
        font-size: 28px;
        line-height: 1.15em;
        margin-bottom: 20px;
    }

    .icons-card:hover {
        transform: translate3d(0,-10px,0);
    }
        .icons-card:hover .icons-card__details {
        background: #E5F3FE;
    }
    
}

/* ------------------------------ Card Style4 ------------------------------ */
.icons-buttons__headlines {
    max-width: 829px;
}

.icons-buttons__headlines.text-center {
    margin-left: auto;
    margin-right: auto;
}

.icons-buttons__flex .slick-dots {
    display: none !important;
}

.icons-buttons__flex.slick-dotted {
    padding-bottom: 54px;
}

.icons-buttons__headlines {
    margin-bottom: 44px;
}

.icons-buttons__flex  {
    margin: 0 -16px;
}

.icons-button-item {
    padding: 16px;
}

.icons-buttons__flex .slick-track {
    display: flex !important;
}

.icons-buttons__flex .slick-slide {
    height: inherit !important;
}

.icons-buttons__flex .slick-slide div {
    height: 100%;
}

.icons-buttons__flex .slick-slide .icons-button div {
    height: auto;
}

.icons-button__description {
    font-weight: 400;
}

body .bg-blue-gradient .slick-arrow {
    background: #fff;
    color: var(--theme-color3);
}

body .bg-blue-gradient .icons-buttons__flex .slick-arrow::before,
body .bg-blue-gradient .slick-arrow::before {
    color: var(--theme-color1);
    opacity: 1;
}

body .bg-blue-gradient .slick-arrow:hover, 
body .bg-blue-gradient .slick-arrow:focus {
    background-color: var(--theme-color1);
    color: var(--theme-color3);
}

.icons-button {
    background: #fff;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    position: relative;
    z-index: 1;
    font-weight: 400;
    box-shadow: 0 4px 10px rgba(15,28,107,0.15);
    box-shadow: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px 32px;
    transition: transform .2s linear;
}

.icons-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
    background: var(--theme-color3);
    z-index: -1;
}

body .bg-blue-gradient .icons-button::before {
    background: var(--theme-color1);
}

.icons-button__image {
    background: #fff;
    width: 40px;
    height: 40px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-button__image img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.content-rows .icons-button__title {
    margin: 8px 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--theme-color3) !important;
    text-align: unset;
}

.icons-button__description {
    color: #000;
}

.icons-button__description p {
    font-weight: 700;
}

.icons-button__bottom {
    margin-top: 15px;
}

.icons-button__cta {
    display: inline-block;
    position: relative;
    color: var(--theme-color3);
    font-size: 14px;
    font-weight: normal;
    line-height: 1.714em;
    background: none;
    border: none;
    margin: 0;
    padding: 0 24px 0 0;
}

.icons-button__cta::after {
    content: '\e905';
    font-family: 'csg-icon';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 16px;
    line-height: 1em;
    font-weight: normal;
}

@media (min-width: 1200px) {
    .content-rows .icons-button__title {
        font-size: 16px;
    }
    
    .icons-button:hover {
        background: #E5F3FE;
        transform: translate3d(0,-10px,0);
    }
}

/* ------------------------------ Card Style5 ------------------------------ */
.icons-columns__flex {
    justify-content: center;
}


.icons-column-item {
    margin-top: 32px;
}

.icons-column {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    padding: 35px 32px;
}

.bg-white .icons-column {
    background: #F5F5F5;
}

.icons-column__heading {
    position: relative;
    padding-left: 44px;
    margin-bottom: 8px;
}

.icons-column__heading img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 30px;
    max-height: 30px;
    height: auto;
}

.icons-column__title {
    color: var(--theme-color3);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.333em;
}

.icons-column__details {
    font-weight: normal;
    color: #000;
    padding-left: 44px;
}

.icons-column__bottom {
    padding-left: 44px;
    margin-top: 13px;
}

.icons-column__cta {
    display: inline-block;
    position: relative;
    color: var(--theme-color3);
    font-size: 14px;
    font-weight: normal;
    line-height: 1.714em;
    background: none;
    border: none;
    margin: 0;
    padding: 0 24px 0 0;
}

.icons-column__cta::after {
    content: '\e905';
    font-family: 'csg-icon';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 16px;
    line-height: 1em;
    font-weight: normal;
}

/* Layout Options 232 */
.col-lg-232, .col-lg-434 {
    width: 100%;
}

.cards__headlines :where(h2, h3, h4, h5, h6) {
    font-weight: 700;
}

.content-rows:not(.theme-blue).bg-blue-gradient :where(h2, h3, h4, h5, h6) {
    color: #f1f1f1;
}

@media (min-width: 768px) {
    .content-rows .row > .col-lg-232, .content-rows .row > .col-lg-323, .content-rows .row > .col-lg-434 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .cards__headlines {
        margin-bottom: 44px;
    }

    .cards__headlines h3 {
        font-size: 28px;
        line-height: 1.15em;
        margin-bottom: 20px;
    }

    .icons-column:hover {
        background: var(--theme-color1);
    }

    .content-rows .row > .col-lg-232:nth-child(5n+1),
    .content-rows .row > .col-lg-232:nth-child(5n+2) {
        width: calc(50% - 210px);
    }

    /* Items in rows of 3 (3-4-5, 8-9-10, etc.) */
    .content-rows .row > .col-lg-232:nth-child(5n+3),
    .content-rows .row > .col-lg-232:nth-child(5n+4),
    .content-rows .row > .col-lg-232:nth-child(5n+5) {
        width: calc(33.333% - 5px);
    }
    
    /* Layout Options 323 */
    .content-rows .row > .col-lg-323:nth-child(5n+1),
    .content-rows .row > .col-lg-323:nth-child(5n+2),
    .content-rows .row > .col-lg-323:nth-child(5n+3) {
        width: calc(33.333% - 5px);
    }

    .content-rows .row > .col-lg-323:nth-child(5n+4),
    .content-rows .row > .col-lg-323:nth-child(5n+5) {
        width: calc(50% - 210px);
    }

    /* Layout Options 4 */
    .content-rows .row > .col-lg-434:nth-child(7n+1),
    .content-rows .row > .col-lg-434:nth-child(7n+2),
    .content-rows .row > .col-lg-434:nth-child(7n+3),
    .content-rows .row > .col-lg-434:nth-child(7n+4) {
        width: calc(25% - 15px);
    }

    .content-rows .row > .col-lg-434:nth-child(7n+5),
    .content-rows .row > .col-lg-434:nth-child(7n+6),
    .content-rows .row > .col-lg-434:nth-child(7n+7) {
        width: calc(27% - 20px);
    }
}