<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* first blog cta */

.first_blog_cta {
    margin: 40px 0 50px 0;
    background-color: #EBF0F9;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    min-height: 305px;
}

.first_blog_cta_content {
    width: 75%;
}

.first_blog_cta_title {
    color: #231F20;
    font-size: 28px;
    line-height: 33px;
}

.first_blog_cta_sub_title {
    margin-top: 22px;
    color: #231F20;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
}

.first_blog_cta_image {
    width: 25%;
}

.first_blog_cta_image img {
    position: absolute;
    right: 0;
    bottom: -30px;
}

.first_blog_cta a.first_blog_cta_button {
    margin-top: 20px;
    background-color: #E94738;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 8px 50px;
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.first_blog_cta_button:hover {
    background-color: rgba(233, 71, 56, 0.8);
    transition: all 0.3s ease;
}

/* second blog cta */

.second_blog_cta {
    margin: 60px 0 80px 0;
    background-color: #EAF0F9;
    text-align: center;
    padding: 40px 40px 20px 40px;
    position: relative;
    min-height: 235px;
}

.single-case-study .second_blog_cta {
    margin-bottom: 0;
}

.second_blog_cta_title {
    color: #231F20;
    font-size: 28px;
    line-height: 33px;
}

.second_blog_cta_sub_title {
    margin-top: 22px;
    color: #231F20;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

img.second_blog_cta_image {
    margin: 0 auto;
    position: absolute;
    top: -38px;
    right: 0;
    left: 0;
}

.second_blog_cta_image img {
    position: absolute;
    right: 0;
    bottom: -30px;
}

a.second_blog_cta_button {
    margin-top: 20px;
    background-color: #E94738;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.second_blog_cta_button:hover {
    background-color: rgba(233, 71, 56, 0.8);
    transition: all 0.3s ease;
}

/* use case cta */

.single-usecase .second_blog_cta {
    flex-basis: 73%;
}


/* laptop */

@media (min-width: 1025px) and (max-width: 1900px) {


}

/* tablet portrait */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

    .first_blog_cta_title,
    .second_blog_cta_title {
        font-size: 25px;
    }

    .first_blog_cta_sub_title {
        font-size: 20px;
    }

    a.first_blog_cta_button {
        font-size: 18px;
    }

}

/* tablet landscape */

@media (min-width: 851px) and (max-width: 1024px) and (orientation: landscape) {

    .first_blog_cta_title,
    .second_blog_cta_title {
        font-size: 24px;
    }

    .first_blog_cta_sub_title {
        font-size: 18px;
    }

    a.first_blog_cta_button {
        font-size: 18px;
    }

}

/* mobile portrait */

@media (max-width: 767px) and (orientation: portrait) {

    .first_blog_cta {
        margin: 40px 0;
        display: block;
        padding: 20px;
    }

    .first_blog_cta_content {
        width: 100%;
    }

    .first_blog_cta_image {
        width: 100%;
    }

    .first_blog_cta_title {
        font-size: 20px;
        line-height: 25px;
    }

    .first_blog_cta_sub_title {
        margin-top: 15px;
        font-size: 16px;
        line-height: 20px;
    }

    a.first_blog_cta_button {
        font-size: 16px;
        padding: 8px 20px;
    }

    .first_blog_cta_image img {
        right: 5px;
        bottom: -15px;
        width: 40%;
    }

    .second_blog_cta {
        margin: 40px 0;
    }

    img.second_blog_cta_image {
        width: 18%;
        top: -30px;
    }

    .second_blog_cta_title {
        font-size: 20px;
        line-height: 25px;
    }

    .second_blog_cta_sub_title {
        margin-top: 15px;
        font-size: 16px;
        line-height: 20px;
    }

    a.second_blog_cta_button {
        margin-top: 10px;
        font-size: 16px;
        padding: 8px 20px;
    }

}
</pre></body></html>