.wysiwyg-content a {
    color: #235289;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*:only-child,
*:first-child {
    margin-top: 0;
}

*:last-child,
*:only-child {
    margin-bottom: 0;
}

body {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    color: #616161;

    /* Desktop/Par - Desktop */
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

b,
strong {
    font-weight: 700 !important;
}



i,
em {
    font-style: italic !important;
}

@media (max-width: 1279px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

h1 {
    font-size: 48px;
    line-height: 60px;
}

h2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}

h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

@media (max-width: 1279px) {
    h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    h4 {
        font-size: 20px;
        line-height: 28px;
    }

    h5 {
        font-size: 18px;
        line-height: 26px;
    }

    h6 {
        font-size: 16px;
        line-height: 24px;
    }
}

.btn {
    border-radius: 40px;
    background: #235289;
    border: 1px solid #235289;
    box-shadow: -2px 4px 34px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 18px 32px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    text-align: center;

    /* Text Button */
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #CA5B61;
    border-color: #CA5B61;
    color: #fff;
}

.btn:focus {
    background: #235289;
    border-color: #235289;
    color: #fff;
}

.btn-outlined {
    background: transparent;
    color: #235289;
}

.btn-outlined:hover {
    background: #CA5B61;
    border-color: #CA5B61;
    color: #fff;
}

.btn-outlined:focus {
    background: #CA5B61;
    border-color: #CA5B61;
    color: #fff;
}

.btn-outlined:hover svg path {
    fill: #fff;
}

.btn-outlined:focus svg path {
    fill: #fff;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        line-height: 16px;
    }
}

blockquote {
    padding: 16px 20px;
    border-radius: 2px;
    background: #F6F6F6;
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    margin: 0;
}

blockquote:before {
    content: '';
    width: 100%;
    max-width: 6px;
    background: #235289;
}

blockquote * {
    color: #235289;
}



/* ONLY FOR PAGE 404 */
.page-404-section {
    background-color: #fff;
    padding: 140px 20px;
}

.page-404-section .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.page-404-section .wrap h1 {
    color: #000000;
    margin-bottom: 0;
    font-family: Lora;
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}

.page-404-section .icon-wrap {
    display: flex;
    height: 60px;
    width: 138px;
}

.page-404-section .icon-wrap svg {
    width: 100%;
    height: 100%;
}

.page-404-section .wrap p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.page-404-section .wrap a {
    color: #000 !important;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .page-404-section {
        padding: 40px 20px;
    }

    .page-404-section .wrap h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .page-404-section .wrap p {
        font-size: 18px;
        line-height: 26px;
    }

    .page-404-section .wrap {
        gap: 24px;
    }

    .page-404-section .wrap a {
        display: block;
    }

    .page-404-section .icon-wrap {
        height: 40px;
    }
}

.blog-cta-section {
    background: #F0F3F6;
    display: flex;
    flex-flow: column-reverse nowrap;
    overflow: hidden;
    border-radius: 40px;
}

.blog-cta-section .blog-cta-overlay-image-wrap {
    display: none;
}

.blog-cta-section:not(:last-child) {
    margin-bottom: 1.3em;
}

.blog-cta-section .blog-cta-image-wrap {
    width: 100%;
    overflow: hidden;
}

.blog-cta-section .blog-cta-image-wrap img {
    width: 100%;
    display: block;
}

.blog-cta-section .blog-cta-image-wrap img.desktop-image {
    display: none;
}

.blog-cta-section .blog-cta-content {
    padding: 40px 32px;
    display: flex;
    flex-flow: column nowrap;
    gap: 32px;
}

.blog-cta-section .blog-cta-content {
    display: flex;
    flex-flow: column nowrap;
    gap: 32px;
    align-items: center;
}

.blog-cta-section .blog-cta-content .blog-cta-content-inner {
    display: flex;
    flex-flow: column nowrap;
    gap: 12px;
    align-items: center;
}

.blog-cta-section .blog-cta-content .label {
    color: #CA5B61;
    text-align: center;

    /* Mobile/Label - Mobile */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.blog-cta-section .blog-cta-content .blog-cta-content-inner-text {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 12px;
}

.blog-cta-section .blog-cta-content .blog-cta-content-inner-text h2 {
    margin: 0;
    text-align: center;
    color: #000;
    text-align: center;

    /* Mobile/H3 - Mobile */
    font-family: Lora;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    /* 130.769% */
    text-transform: capitalize;
}

.blog-cta-section .blog-cta-content .blog-cta-content-inner-text p {
    margin-top: 0;
    text-align: center;
    color: #3A3A3B;
    text-align: center;

    /* Mobile/Par - Mobile */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.blog-cta-section .blog-cta-content .btn {
    color: #fff !important;
    width: 100%;
}

@media (min-width: 768px) {
    .blog-cta-section {
        padding: 0;
        flex-flow: row nowrap;
        position: relative;
        overflow: hidden;
    }

    .blog-cta-section .blog-cta-content {
        max-width: 50%;
        position: inherit;
        z-index: 2;
    }

    .blog-cta-section .blog-cta-image-wrap img.mobile-image {
        display: none;
    }

    .blog-cta-section .blog-cta-image-wrap {
        display: none;
    }

    .blog-cta-section .blog-cta-overlay-image-wrap {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .blog-cta-section .blog-cta-overlay-image-wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: center;
        object-fit: center;
        -o-object-position: center right;
        object-position: center right;
    }

    .blog-cta-section .blog-cta-content,
    .blog-cta-section .blog-cta-content .blog-cta-content-inner {
        align-items: flex-start;
    }

    .blog-cta-section .blog-cta-content .label {
        font-size: 18px;
        line-height: 26px;
    }

    .blog-cta-section .blog-cta-content .blog-cta-content-inner-text h2 {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
    }

    .blog-cta-section .blog-cta-content .blog-cta-content-inner-text p {
        font-size: 18px;
        line-height: 26px;
        text-align: left;
    }

    .blog-cta-section .blog-cta-content .btn {
        width: auto;
    }
}

@media (min-width: 1280px) {

    .blog-cta-section .blog-cta-content {
        padding: 40px 60px;
    }
}

@media (max-width: 767px) {
    .blog-cta-section {
        border-radius: 12px;
        background: #F0F3F6;
    }

    .blog-cta-section .blog-cta-content .btn {
        font-size: 20px !important;
        line-height: 28px !important;
    }

}