/* Slogan */
.systematix-slogan {
    position: relative;
    color: var(--white);
    font-size: 16px;
    line-height: 130%;
    font-weight: bold;
    margin-top: 32px;
}

.systematix-slogan > span:first-child {
    color: #64A5EB;
}

.systematix-slogan > span:last-child {
    color: #82AF55;
}

.homepage--testimonials.insurrance-testimonials .section--title {
    font-size: 34px;
}

@media (max-width: 768px) {
    .page--banner.page--banner-insurrance .description {
        max-width: 95%;
    }

    .homepage--testimonials.insurrance-testimonials .section--title {
        font-size: 28px;
    }

    .flickity-prev-next-button {
        transform: translateY(-25%);
    }
}

/* Banner */
.page--banner .title, .page--banner.image--mask .title {
    font-size: 34px;
    line-height: 40px;
}

.page--banner .description * {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    color: white;
    max-width: 643px;
}

/* Industrial example */

.industry-example-title {
    color: #002060;
    font-size: 34px;
    margin-bottom: 24px;
}

.industry-example {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-example__item {
    word-break: break-word;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-example__item .content * {
    font-size: 20px;
    font-weight: normal;
    line-height: 24px;
    color: #002060;
    margin-block: 0 24px;
}

.industry-example__item .logo img {
    max-width: 90%;
    max-height: 52px;
    margin-inline: auto;
    display: block;
}

.btn-insurrance-example {
    align-items: center;
    background-color: var(--royal-blue);
    border: solid 4px var(--royal-blue);
    border-radius: 8px;
    color: white;
    display: flex;
    font-family: var(--font-primary-bold);
    font-size: 24px;
    /* height: 52px; */
    justify-content: center;
    line-height: 32px;
    padding: 3px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-out;
    width: fit-content;
    max-width: 208px;
    margin-inline: auto;
    margin-top: 43px;
}

.btn-insurrance-example:hover {
    border-color: var(--cute-blue);
}

.content--industry-example {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .industry-example {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industry-example-title {
        font-size: 28px;
    }

    .industry-example__item .content * {
        font-size: 18px;
        line-height: 24px;
        margin-block: 12px;
    }

    .btn-insurrance-example {
        font-size: 18px;
        line-height: 24px;
        padding: 5px 14px;
        margin-top: 43px;
    }
}

/* Did You Know */

.did-you-know-title {
    font-size: 34px;
    margin-bottom: 24px;
    color: #002060;
}

.did-you-know {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.did-you-know__item {
    word-break: break-word;
    height: 100%;
}

.did-you-know__item .title {
    font-family: var(--font-primary-bold);
    font-size: 24px;
    line-height: 30px;
    color: #002060;
    margin-bottom: 0;
}

.did-you-know__item .content * {
    font-size: 20px;
    font-weight: normal;
    line-height: 24px;
    color: #002060;
    margin-block: 0 24px;
}

.did-you-know__item .logo img {
    max-width: 90%;
    max-height: 52px;
    margin-inline: auto;
    display: block;
}

.content--did-you-know {
    margin-bottom: 32px;
}

.callout--module.--did-you-know {
    padding-block: 24px;
    background: #7CB04F;
}

@media (max-width: 768px) {
    .did-you-know {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .did-you-know-title {
        font-size: 28px;
    }

    .did-you-know__item .title {
        font-size: 20px;
        line-height: 24px;
    }

    .did-you-know__item .content * {
        font-size: 18px;
        line-height: 22px;
        margin-block: 0 12px;
    }
}