body, HTML {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: var(--primary_font);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: var(--gray-900);
}

h1 {
    z-index: 6;
    font-size: 25px;
    line-height: 45px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
    color: #072c53;
    word-wrap: break-word;
    font-family: var(--secondary_font);
}

h1.big {
    font-size: 30px !important;
    line-height: 35px !important;
    color: var(--primary_color);
}

h2  {
    color: var(--gray-700);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 17px;
    line-height: 30px;
}

h3 {
    margin-bottom: 0;
    font-family: var(--secondary_font);
    color: var(--primary_color);
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
}

.divider {
    text-align: center;
}

.divider p {
    text-align: left;
    color: var(--gray-500);
}

.divider h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px !important;
}

.divider h1::after {
    display: block;
    width: 100px;
    border-bottom: 2px solid var(--primary_color_hover);
    content: '';
    left: 50%;
    margin-left: -50px;
    position: absolute;
    padding: 15px 0;
}

.divider.left {
    text-align: left;
}

.divider.left h1 {
    text-align: left;
}

.divider.left h1::after {
    margin-left: 0;
    left: 0;
}

p, a, li {
    font-size: 17px;
    line-height: 33px;
    font-family: var(--primary_font);
    font-weight: 500;
}

a { text-decoration: none;}

@media(max-width: 768px) {
    .divider h1 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 24px !important;
        line-height: 32px;
    }

    .divider h1::after {
        padding-bottom: 4px !important;
    }

    .blog_card .content .body h2 {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-top: 0 !important;
    }

    h2 {
        font-size: 13px !important;
        line-height: 16px !important;
        font-weight: 700 !important;
        margin: 0;
    }

    p, a, li {
        font-size: 15px;
        line-height: 24px;
        font-weight: 400;
    }
}