/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
## Bootstrap Sameheight
## Miscellaneous
## Font Fix Screen
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
*:focus {
    outline: none !important;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

dl dd a, p a {
    color: var(--color_primary);
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
samp,
tt,
var {
    font-family: monospace, monospace;
    font-size: 1em;
    color: #0071dc;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em {
    font-style: italic;
}

cite {
    font-weight: 600;
}

blockquote {
    margin: 0 1.5em 20px;
    border-color: #14133b;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #fff;
    font-family: Menlo, Consolas, monaco, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: """";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1em 1em;
    padding-left: 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
    margin-bottom: 10px;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 15px 0;
    width: 100%;
}

table th,
table td {
    border: 1px solid #ebebeb;
    padding: 5px;
    text-align: center;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: #14133b;
    border: medium none;
    color: #fff;
    padding: 2px 15px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    background-color: #000;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.woocommerce .woocommerce-checkout .select2-container--default .select2-selection--single {
    color: #666;
    border: 1px solid #ccc;
}

select {
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

textarea {
    width: 100%;
}

form.post-password-form label>input {
    background: #f8f8f8;
    border: 1px solid #dcdcdc;
    padding: 10px 8px;
}

form.post-password-form input {
    padding: 11px 15px;
    font-weight: 700;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a:link,
a:visited {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.byline,
.updated:not(.published) {
    display: none;
}

/*--------------------------------------------------------------
## Bootstrap Sameheight
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .auto-clear>.col-lg-1:nth-child(12n + 1) {
        clear: left;
    }

    .auto-clear>.col-lg-2:nth-child(6n + 1) {
        clear: left;
    }

    .auto-clear>.col-lg-3:nth-child(4n + 1) {
        clear: left;
    }

    .auto-clear>.col-lg-4:nth-child(3n + 1) {
        clear: left;
    }

    .auto-clear>.col-lg-6:nth-child(odd) {
        clear: left;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .auto-clear>.col-md-1:nth-child(12n + 1) {
        clear: left;
    }

    .auto-clear>.col-md-2:nth-child(6n + 1) {
        clear: left;
    }

    .auto-clear>.col-md-3:nth-child(4n + 1) {
        clear: left;
    }

    .auto-clear>.col-md-4:nth-child(3n + 1) {
        clear: left;
    }

    .auto-clear>.col-md-6:nth-child(odd) {
        clear: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .auto-clear>.col-sm-1:nth-child(12n + 1) {
        clear: left;
    }

    .auto-clear>.col-sm-2:nth-child(6n + 1) {
        clear: left;
    }

    .auto-clear>.col-sm-3:nth-child(4n + 1) {
        clear: left;
    }

    .auto-clear>.col-sm-4:nth-child(3n + 1) {
        clear: left;
    }

    .auto-clear>.col-sm-6:nth-child(odd) {
        clear: left;
    }
}

@media (max-width: 767px) {
    .auto-clear>.col-1:nth-child(12n + 1) {
        clear: left;
    }

    .auto-clear>.col-2:nth-child(6n + 1) {
        clear: left;
    }

    .auto-clear>.col-3:nth-child(4n + 1) {
        clear: left;
    }

    .auto-clear>.col-4:nth-child(3n + 1) {
        clear: left;
    }

    .auto-clear>.col-6:nth-child(odd) {
        clear: left;
    }
}

/*--------------------------------------------------------------
## Miscellaneous
--------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
    .ipad-fix {
        width: 100%;
    }

    .ipad-fix-pad {
        width: 100%;
        padding-bottom: 30px;
    }

    .ipad-width-50,
    .width-50 {
        width: 50%;
    }

    .center-background {
        background: none;
    }
}

@media (max-width: 767px) {
    .ipad-fix-pad {
        width: 100%;
        padding-bottom: 30px;
    }
}

.padding-right-fix {
    padding-right: 50px;
}

@media (max-width: 767px) {
    .padding-right-fix {
        padding-right: 0px;
    }
}

.single-blog-wrap.post-1177 .blog-content-box .blog-tag, .postid-1788 .blog-content-box .blog-tag {
    border-top: 0px !important;
}

/*column */
.no-gutter>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*Unit test*/
.no-thumbnail .blog-box {
    margin-bottom: 30px;
}

.default-blog-style {
    margin-bottom: 60px;
}

.site-main .masonry-item.no-thumbnail:not(:first-child) .blog-box {
    margin-top: 75px;
}

.site-main .masonry-item.no-thumbnail:first-child .blog-box {
    margin-top: 45px;
}

p:last-child img.size-full.alignright {
    clear: both;
    padding-top: 0;
}

.has-thumbnail .blog-box {
    margin-bottom: 70px;
}

.widget.widget_rss li a {
    font-weight: 500;
}

.sidebar-widget-area .widget_calendar caption {
    caption-side: initial;
    text-align: center;
    font-weight: 500;
    background: var(--color_primary);
    color: #ffffff;
    padding: 10px 7px;
    margin-top: 0px;
}

.sidebar-widget-area .widget_calendar td a, .sidebar-widget-area .widget_calendar a:hover {
    color: var(--color_primary);
}

.sidebar-widget-area .widget ul li ul.children,
.sidebar-widget-area .widget ul li ul.sub-menu {
    padding-left: 17px;
    float: left;
    width: 100%;
}

.sidebar-widget-area .widget ul li ul {
    border-top: 1px solid #ebebeb;
    margin-top: 10px;
    padding-top: 10px;
}

.sidebar-widget-area .widget_categories ul li,
.sidebar-widget-area .widget_archive ul li {
    width: 100%;
    float: left;
    background: #ffffff;
    line-height: 1.6;
    text-align: right;
}

.sidebar-widget-area .widget_categories ul li a,
.sidebar-widget-area .widget_archive ul li a {
    float: left;
}

.sidebar-widget-area .widget ul li a {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 140ms ease-in-out;
}

.sidebar-widget-area .widget ul li ul.children li:last-child,
.sidebar-widget-area .widget ul li ul.sub-menu li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.sidebar-widget-area .widget_nav_menu ul ul.sub-menu li:last-child,
.sidebar-widget-area .widget_categories ul ul.children li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.sidebar-widget-area .widget.widget_pages ul li ul.children,
.sidebar-widget-area .widget.widget_nav_menu ul li ul.sub-menu {
    float: inherit;
    width: inherit;
}

.sidebar-widget-area .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_tag_cloud .tagcloud a {
    display: inline-flex;
    margin-right: 5px;
    margin-top: 5px;
    background: #edf6ff;
    font-size: 15px !important;
    font-weight: 500;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 8px 16px;
}

.widget_tag_cloud .tagcloud a:hover {
    background: var(--color_primary);
    color: white;
}

.widget ul,
.widget ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}

.sidebar-widget-area .widget_block h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.sidebar-widget-area .widget ul li {
    border-bottom: 1px solid #ebebeb;
    margin: 0 0 13px;
    padding: 0 0 13px;
    position: relative;
    -webkit-transition: all 140ms ease-in-out;
    transition: all 140ms ease-in-out;
}

.sidebar-widget-area .wp-block-latest-comments__comment {
    line-height: 1.6;
    list-style: none;
    margin-bottom: 1em;
}

.sticky .blog-box.style-1 .content-box {
    background-color: #d9e8f9;
}

.wp-block-image {
    margin-top: 23px;
    margin-bottom: 23px;
}

.wp-block-button .wp-block-button__link {
    position: relative;
    display: inline-block;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    background: #0071dc;
    color: #ffffff;
    padding: 15px 30px;
    z-index: 1;
    line-height: 1.6;
    letter-spacing: 1px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid #0071dc;
    color: #0071dc;
}

.wp-block-cover.has-background-dim .wp-block-cover-text a:hover {
    text-decoration: underline;
}

.wp-block-cover p:not(.has-text-color) {
    color: #ffffff;
}

.blocks-gallery-grid.blocks-gallery-grid {
    margin-top: 0;
}

.wp-block-cover {
    margin-bottom: 25px;
}

.wp-block-cover.alignleft {
    margin-top: 8px;
}

.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright, .wp-block-cover.alignleft, .wp-block-cover.alignright {
    margin-bottom: 20px;
    font-family: var(--font_family_heading);
    max-width: 320px;
}

.wp-block-gallery {
    margin-top: 0px;
    margin-bottom: 50px;
}

.wp-block-cover .has-large-font-size {
    line-height: 1.2;
}

.wp-block-cover a:hover, .wp-block-cover .wp-block-cover-text a:hover, .wp-block-cover .has-text-color a:hover, .wp-block-cover .has-text-align-center a:hover {
    text-decoration: underline;
}

.wp-block-image figcaption a {
    color: var(--color_primary);
}

:root .has-pale-pink-background-color {
    background-color: #000;
}

.blog-content-box .wp-block-cover {
    background-color: #000;
    margin-top: 0px;
    padding: 15px 50px;
}

.wp-block-cover {
    font-family: var(--font_family_heading);
}

.wp-block-cover a, .wp-block-cover .wp-block-cover-text a, .wp-block-cover .has-text-color a, .wp-block-cover .has-text-align-center a {
    color: #ffffff;
}


blockquote {
    background: transparent;
    border: 1px solid #e1e1e2;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-align: left;
    padding: 35px 40px 35px 40px;
    margin: 35px 0px 35px;
    color: #14133b;
}

blockquote p:before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-size: 48px;
    color: #999999;
    left: -80px;
    top: -4px;
    line-height: 1;
    font-weight: 600;
}

blockquote.wp-block-quote cite {
    display: block;
    font-size: 14px;
    color: #646464;
    font-weight: 500;
    font-style: normal;
    margin-top: 12px;
    padding-left: 80px;
    letter-spacing: 2px;
    z-index: 1;
}

.postid-1783.has-sidebar blockquote p:before {
    font-size: 28px;
}

.postid-1783.has-sidebar .blog-content-box blockquote p {
    margin-left: 25px;
    margin-bottom: 0px;
}

.postid-1783.has-sidebar blockquote p:before {
    left: -40px;
    top: 6px;
}

.postid-1783.has-sidebar blockquote.wp-block-quote cite {
    padding-left: 25px;
}

.postid-1783.has-sidebar blockquote {
    padding: 30px 20px 20px 35px;
}

blockquote p {
    position: relative;
    margin-bottom: 0;
    margin-left: 80px;
    z-index: 1;
    font-family: "Jost", sans-serif;
    line-height: 1.3;
}

.wp-block-quote {
    border-left: 1px solid #e1e1e2;
    padding-left: 40px;
    margin: 0 0 1.75em;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    border: 1px solid #e1e1e2;
    padding: 35px 40px 35px 40px;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
    text-align: left;
    font-size: 14px;
}

.wp-block-quote.has-text-align-right {
    border-left: 1px solid #e1e1e2;
    border-right: 1px solid #e1e1e2;
    text-align: right;
    padding: 35px 40px 35px 40px;
}

blockquote strong a, .wp-block-file a, .blog-content-box table tr th a {
    color: var(--color_primary);
}

.wp-block-pullquote {
    border-top: 2px solid var(--color_primary);
    border-bottom: 2px solid var(--color_primary);
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
}

:root .has-cyan-bluish-gray-background-color {
    background-color: transparent;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 25px;
}

.wp-block-pullquote p {
    font-size: 22px;
}

.wp-block-pullquote cite {
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    padding-left: 80px;
    z-index: 1;
}

.wp-block-categories,
.wp-block-archives {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.wp-block-categories li,
.wp-block-archives li {
    width: 100%;
    float: left;
    background: #ffffff;
    line-height: 1.6;
    text-align: right;
    border-bottom: 1px solid #ebebeb;
    margin: 0 0 13px;
    padding: 0 0 13px;
    position: relative;
    -webkit-transition: all 140ms ease-in-out;
    transition: all 140ms ease-in-out;
}

.wp-block-categories li a,
.wp-block-archives li a {
    float: left;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    color: #444444;
    display: inline;
    -webkit-transition: all 140ms ease-in-out;
    transition: all 140ms ease-in-out;
}

.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select {
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 14px 13px;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 12px;
    background-image: url(../img/select-arrow.png) !important;
    background-repeat: no-repeat;
    background-position: 98%;
}

.page-links {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    margin-bottom: 30px;
    align-items: center;
    clear: both;
    padding-top: 12px;
}

.page-links span.current,
.page-links a.post-page-numbers:hover {
    background-color: var(--color_primary);
    color: #ffffff;
    border-color: var(--color_primary);
}

.post-page-numbers {
    font-size: 20px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    color: var(--color_primary);
    border: 1px solid #dbdbdb;
    padding: 12px 22px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-links>.post-page-numbers:first-child {
    margin-left: 10px;
}

.comments-area ul.comment-list {
    list-style-type: none;
    padding: 0;
}

.comment-list .children {
    list-style-type: none;
}

.comments-area .main-comments .comments-body {
    display: flow-root;
    overflow-x: hidden;
}

.entry-content a {
    color: #0071dc;
}

kbd {
    background: rgba(0, 0, 0, .07);
    color: #646464;
}

.wp-caption-text a {
    color: #0071dc;
}

#cancel-comment-reply-link {
    padding-left: 10px;
    color: #0071dc;
}

#respond.comment-respond {
    margin-bottom: 50px;
}

#comments .comment-author-name span {
    font-weight: 500;
    color: black;
}

.has-edhub-primary-color {
    color: #0071dc;
}

.has-edhub-secondary-color {
    color: rgb(247, 188, 32);
}

.has-edhub-button-dark-gray-color {
    color: #6b6b6b;
}

.has-edhub-button-light-gray-color {
    color: #a5a5a5;
}

.has-edhub-button-white-color {
    color: #ffffff;
}

.has-edhub-primary-background-color {
    background-color: #0071dc !important;
}

.has-edhub-secondary-background-color {
    background-color: rgb(247, 188, 32) !important;
}

.has-edhub-button-dark-gray-background-color {
    background-color: #6b6b6b !important;
}

.has-edhub-button-light-gray-background-color {
    background-color: #a5a5a5;
}

.has-edhub-button-white-background-color {
    background-color: #ffffff !important;
}

.wp-block-button a.has-edhub-primary-color {
    color: #0071dc;
}

.wp-block-button a.has-edhub-secondary-color {
    color: rgb(247, 188, 32);
}

.wp-block-button a.has-edhub-button-dark-gray-color {
    color: #6b6b6b;
}

.wp-block-button a.has-edhub-button-light-gray-color {
    color: #a5a5a5;
}

.wp-block-button a.has-edhub-button-white-color {
    color: #ffffff;
}

.wp-block-button .has-edhub-primary-background-color {
    background-color: #0071dc;
}

.wp-block-button .has-edhub-secondary-background-color {
    background-color: rgb(247, 188, 32);
}

.wp-block-button .has-edhub-button-dark-gray-background-color {
    background-color: #6b6b6b;
}

.wp-block-button .has-edhub-button-light-gray-background-color {
    background-color: #a5a5a5;
}

.wp-block-button .has-edhub-button-white-background-color {
    background-color: #ffffff;
}