
html {
    line-height: 1.5;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

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

/* Sections
   ========================================================================== */
   
body {
    margin: 0;
    font-family:var(--base-font, 'Verdana');
    font-size: var(--base-font-size, 20px);
    font-weight: var(--base-font-w, normal);
    line-height: 1.5;
    color: var(--text);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

b,
strong {
    font-family:var(--base-font-strong, 'Verdana');
    font-weight:var(--base-font-strong-w, bold);
    font-weight:bold;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1, h2, h3, h4, h5, h6 {
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-family: var(--accent-font, 'Garamond');
    font-weight: var(--accent-font-w, normal);
    line-height: 1.2;
    color: inherit;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-family:var(--accent-font-strong, 'Garamond');
    font-weight:var(--accent-font-strong-w, bold);
}

h1 {
    font-size: 3.0rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 2.00rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.65rem;
}

h6 {
    font-size: 1.5rem;
}

p {
    margin-top: 0;
    margin-bottom: .9rem;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
    white-space: pre-wrap;
}

/**
 * Hides the site's header footer when viewing the header-footer post single
 */

body.single-cl_header_footer header,
body.single-cl_header_footer footer {display:none;}

/* Text-level semantics
   ========================================================================== */
a {
    background-color: transparent;
    text-decoration: none;
    color: var(--secondary);
}

a:hover, a:active {
    color: var(--primary);
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

footer a, footer a:hover {
    color:black;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

figcaption {
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print
   ========================================================================== */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        page-break-inside: avoid;
        border: 1px solid #cccccc;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
/* Forms
   ========================================================================== */
label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 1rem;
    /* 1 */
    line-height: 1.5;
    /* 1 */
    margin: 0;
    /* 2 */
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
select option,
textarea {
    width: 100%;
    border: solid 1px #666666;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

input[type="text"]::placeholder,
input[type="date"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
    color:var(--text, #333);
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border-color: #333333;
    outline: 0 none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    /*text-transform: none;*/
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

button,
[type="submit"],
[type="button"] {
    display: inline-block;
    color: var(--primary, #CC3366);
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid var(--primary, #CC3366);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

button:not(:disabled):hover, 
button:not(:disabled):focus,
[type="submit"]:not(:disabled):hover,
[type="submit"]:not(:disabled):focus,
[type="button"]:not(:disabled):hover,
[type="button"]:not(:disabled):focus {
    color: #ffffff;
    background-color: var(--primary, #CC3366);
    text-decoration: none;
}

button:disabled,
[type="submit"]:disabled,
[type="button"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

button:not(:disabled),
[type="submit"]:not(:disabled),
[type="button"]:not(:disabled) {
    cursor: pointer;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
    resize: vertical;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

select {
    display: block;
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
/* Table
   ========================================================================== */
table {
    background-color: transparent;
    width: 100%;
    margin-bottom: 15px;
    font-size: 0.9em;
    border-spacing: 0;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid #cccccc;
}

table th {
    font-weight: bold;
}

table thead th,
table tfoot th {
    font-size: 1em;
}

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 1px solid #cccccc;
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: #f7f7f7;
}

table tbody + tbody {
    border-top: 2px solid #cccccc;
}

@media (max-width: 767px) {
    table table {
        font-size: 0.8em;
    }

    table table th,
    table table td {
        padding: 7px;
        line-height: 1.3;
    }

    table table th {
        font-weight: 400;
    }
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
/* Lists
   ========================================================================== */

dl,
dt,
dd,
ol,
ul,
li {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.elementor-widget-text-editor ul,
body:not([class*="elementor-page-"]) main ul,
.elementor-widget-text-editor ol,
body:not([class*="elementor-page-"]) main ol {
    padding-left:25px;
    margin-bottom:1rem;
}

.elementor-widget-text-editor ul li,
body:not([class*="elementor-page-"]) main ul li {
    list-style: disc;
}

.elementor-widget-text-editor ol li,
body:not([class*="elementor-page-"]) main ol li {
    list-style:decimal;
}

/**
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 * Loading first in the style.scss & editor-style.scss
 */
/* Basic responsive layout
   ========================================================================== */

.site-header, body:not([class*="elementor-page-"]) .site-main {
    margin-right: auto;
    margin-left: auto;
}

body[class*="elementor-page-"] main .post-head,
body[class*="elementor-page-"] main .post-discussion {
    display:none;
}

@media (max-width: 575px) {
    .site-header, body:not([class*="elementor-page-"]) .site-main {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (min-width: 576px) {
    .site-header, body:not([class*="elementor-page-"]) .site-main {
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    .site-header, body:not([class*="elementor-page-"]) .site-main {
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    .site-header, body:not([class*="elementor-page-"]) .site-main {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .site-header, body:not([class*="elementor-page-"]) .site-main {
        max-width: 960px;
    }
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
/* General - https://codex.wordpress.org/CSS#WordPress_Generated_Classes
   ========================================================================== */

.post-thumbnail {
    width:100%;
    margin-bottom:1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

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

.alignwide {
    margin-left: -80px;
    margin-right: -80px;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

.alignfull img {
    width: 100vw;
}

.wp-caption {
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-caption {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
    padding: 0.75rem;
}

.pagination {
    margin: 20px auto;
}

.sticky {
    position: relative;
    display: block;
}

.bypostauthor {
    font-size: inherit;
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    word-wrap: normal!important;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #eeeeee;
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #333333;
    display: block;
    font-size: 1rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Header layout
   ========================================================================== */
.site-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-branding {
    max-width: 300px;
}

.site-branding .site-title,
.site-branding .site-description {
    margin: 0;
}

.custom-logo-link {
    display: block;
}

/* Main Menu
   ========================================================================== */

.site-navigation {
    grid-area: nav-menu;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.site-navigation ul.menu, .site-navigation ul.menu ul {
    list-style-type: none;
    padding: 0;
}

.site-navigation ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.site-navigation ul.menu li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-navigation ul.menu li a {
    display: block;
    padding: 8px 15px;
}

.site-navigation ul.menu li.menu-item-has-children {
    padding-right: 15px;
}

.site-navigation ul.menu li.menu-item-has-children:after {
    display: block;
    content: '\25BE';
    font-size: 1.5em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666666;
}

.site-navigation ul.menu li ul {
    background: #fff;
    display: none;
    min-width: 150px;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 100%;
    border: #eeeeee 1px solid;
}

.site-navigation ul.menu li ul li.menu-item-has-children a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.site-navigation ul.menu li ul li.menu-item-has-children:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.site-navigation ul.menu li ul ul {
    left: 100%;
    top: 0;
}

.site-navigation ul.menu li:hover > ul {
    display: block;
}

/* Post Item in Archive
   ========================================================================== */
.post .wp-post-image {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .post .wp-post-image {
        max-height: 400px;
    }
}

@media (max-width: 575px) {
    .post .wp-post-image {
        max-height: 300px;
    }
}

/*
DO NOT CHANGE THIS FILE
to override any of the settings in this section, add your styling code in the custom directory.
 */
/* Comments
   ========================================================================== */
#comments .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .9em;
}

#comments .comment,
#comments .pingback {
    position: relative;
}

#comments .comment .comment-body,
#comments .pingback .comment-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0 30px 60px;
    border-bottom: 1px solid #cccccc;
}

body.rtl #comments .comment .comment-body, body.rtl
#comments .pingback .comment-body {
    padding: 30px 60px 30px 0;
}

#comments .comment .avatar,
#comments .pingback .avatar {
    position: absolute;
    left: 0;
    border-radius: 50%;
    margin-right: 10px;
}

body.rtl #comments .comment .avatar, body.rtl
#comments .pingback .avatar {
    left: auto;
    right: 0;
    margin-right: 0;
    margin-left: 10px;
}

#comments .comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: .9rem;
}

#comments .reply,
#comments .comment-metadata {
    font-size: 11px;
    line-height: 1;
}

#comments .children {
    position: relative;
    list-style: none;
    margin: 0;
    padding-left: 30px;
}

body.rtl #comments .children {
    padding-left: 0;
    padding-right: 30px;
}

#comments .children li:last-child {
    padding-bottom: 0;
}

#comments ol.comment-list .children:before {
    display: inline-block;
    font-size: 1em;
    font-weight: normal;
    line-height: 100%;
    content: '\21AA';
    position: absolute;
    top: 45px;
    left: 0;
    width: auto;
}

body.rtl #comments ol.comment-list .children:before {
    content: '\21A9';
    left: auto;
    right: 0;
}

@media (min-width: 768px) {
    #comments .comment-author,
    #comments .comment-metadata {
        line-height: 1;
    }
}

@media (max-width: 767px) {
    #comments .comment .comment-body {
        padding: 30px 0;
    }

    #comments .children {
        padding-left: 20px;
    }

    #comments .comment .avatar {
        position: inherit;
        float: left;
    }

    body.rtl #comments .comment .avatar {
        float: right;
    }
}

/* Default Header/Footer Styles
   ========================================================================== */

footer .default-footer,
header .default-header {
    display:block;
    max-width:90%;
    margin:0 auto;
    color:black;
    padding:30px 0;
}

header .default-header {
    display:flex;
    justify-content: center;
    align-items: center;
}

header .default-header > div {
    width:50%;
}

footer .default-footer > div,
header .default-header > div {
    text-align:center;
}

header .default-header .nav {
    text-align:right;
    position: relative;
}

header .default-header .hamburger-blob {
    width:85px;
    height:85px;
    display:inline-block;
}

header .default-header .hamburger-blob #cl-hamburger {
    position:absolute;
    top:50%;
    right:30px;
    transform:translateY(50%);
}

footer .default-footer .social li {
    display:inline-block;
    margin:2px 5px;
}

footer .default-footer .social li a {
    font-size:25px;
    opacity:0.5;
    transition: var(--default-transition);
}

footer .default-footer .social li a:hover {
    opacity: 1;
}

@media (min-width:600px) {
    footer .default-footer {
        display:flex;
        justify-content: center;
        align-items: center;
    }
    
    footer .default-footer > div {
        width:50%;
    }
    
    footer .default-footer .copyright {
        text-align:left;
    }
    
    footer .default-footer .copyright p {
        margin:0;
    }
    
    footer .default-footer .social {
        text-align:right;
    }
}

/* Footer Menu
   ========================================================================== */

.footer-menu ul li:last-child:after {
    display: none;
}

.footer-menu ul li:after {
    content: '\2022';
    color: #fff;
    position: relative;
    display: inline-block;
    line-height: 1.2rem;
    vertical-align: middle;
    left: 10px;
}
.footer-menu ul a {
    color: #fff;
    font-family: 'Fira Sans', serif;
}
.footer-menu ul li:first-child {
    margin-left: 0;
}
.footer-menu ul li:last-child {
    margin-right: 0;
}
.footer-menu ul li {
    float: left;
    margin-right: 10px;
    margin-left: 10px;
}
.footer-menu ul {
    list-style: none;
    padding-left: 0;
    float: right;
}
@media(max-width: 767px) {
    .footer-menu ul li {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 5px;
    }
    .footer-menu ul li:after {
        display: none;
    }
    .footer-menu, .footer-menu ul {
        float: none;
        width: 100%;
        text-align: center;
    }
    .footer-menu ul li {
        width: 100%;
    }
}

/* Footer Copyright
   ========================================================================== */

.copyright-menu ul li:last-child {
    border-right: 0;
    margin-right: 0;
}
.copyright-menu ul li:first-child {
    border-left: 0;
    margin-left: 0;
}

.copyright-menu ul li {
    float:left;
    padding-right: 5px;
    padding-left: 5px;
    border-right: 1px solid #ccc;
}

.copyright-menu ul li a {
    font-family: 'Fira Sans', serif;
    color: #fff;
    font-size: 0.88rem;
}

.copyright-menu ul {
    list-style: none;
    padding-left: 0;
}

@media(max-width: 767px) {
    .copyright-menu ul li {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 5px;
    }
    .copyright-menu {
        float: none;
        width: 100%;
        text-align: center;
    }
    .copyright-menu ul li {
        width: 100%;
    }
}

/* 404
   ========================================================================== */

.four-oh-four {text-align:center;}
.four-oh-four:not(.elementor-content) section {padding:50px 0 150px;}
body .site-main.four-oh-four {
    max-width:100%;
}
   
/* Full Menu
    ========================================================================== */

#full-menu {
    display:none; 
    overflow-y:scroll; 
    background-color: rgba(0,0,0,0.8); 
    position:fixed; 
    width:100%; 
    top:0; 
    left:0; 
    right:0; 
    min-height:100vh; 
    height: 100%;
    z-index: 10001; 
    transition:all 0.5s;
}
#full-menu.open {display:block;}
.full-menu-container {margin:0 auto; max-width:600px; width: 90%; padding-top:100px;}

#full-menu ul ul {
    display:none;
}

#full-menu .logo {max-width:300px; padding:50px 0 100px 50px;}
@media (max-width:767px) {
    #full-menu .logo {
        max-width: 178px;
    }
} 
#full-menu .menu {
    text-align:center;
    width:100%;
}
#full-menu .menu li {
    margin:2px 0 5px;
    padding:4px 0 8px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 25px;
    position:relative;
}
#full-menu .menu li .sub-menu {
    display:none;
    padding-top:10px;
}
#full-menu .menu li .sub-menu li {
    padding: 0;
    background-color: transparent;
}
#full-menu .menu li a {
    z-index:100001;
    font-size:22px;
    font-weight:900;
    line-height:2;
    display:block;
    color: black;
    text-decoration: none;    
}

#full-menu.special_last .menu li:last-child a {
    display:inline-block;
    padding:0 5px;
    background-color:var(--secondary);
    color:var(--primary);
}

#full-menu .close {
    color: white;
    font-size: 30px;
    text-align: right;
    position:absolute;
    top:50px;
    right:50px;
    text-decoration: none ;
    z-index:100002;

}

#full-menu .plus span {
    background-color: black;
}

#full-menu .close-menu {}

@media (max-width:767px) {
    #full-menu .close {
        font-size: 22px;
        line-height: 19px; 
    }
}
/**
.mobile-menu {padding-top: 0; width: 80%; margin:0 auto; overflow-y: auto; position: relative; top: auto; left: auto; height: 80%;}
.mobile-menu ul {margin:0;}
.mobile-menu ul li { min-height:0 !important; position:relative; float:none; height:100%; width:100% !important; top:auto; left:auto;}
.mobile-menu ul li.over a,
.mobile-menu ul li.current_page_item a,
.mobile-menu ul li.current_page_ancestor a {background: none;}
.mobile-menu ul.menu li a {text-align:left; display:block; text-decoration: none; text-transform: uppercase; color:#fff; font-weight:bold; font-size:100%; width:100%; padding:10px 0 5px 0;}
.mobile-menu ul.menu > li > a:hover:before,
.mobile-menu ul.menu > li.current_page_item > a:before,
.mobile-menu ul.menu > li.current_page_ancestor > a:before {border-top:none;}

.mobile-menu ul ul {margin-left:30px; display:none;} 
   
   
/* Search
   ========================================================================== *

.search-icon {color:white; font-size:16px; cursor:pointer;}

.search-overlay {height: 100vh; width: 100%; display: none; position: fixed; z-index: 1000; top: 0; left: 0; background-color: rgb(0, 0, 0); background-color: rgba(0, 0, 0, 0.65);}
.search-overlay-content {position: relative;top: 46%;  width: 50%;  text-align: center;  margin: auto;}
.search-overlay .icon-cancel {position: absolute;top: 20px;right: 45px;font-size: 40px;cursor: pointer;color: white;}
.search-overlay .icon-cancel:hover {color: #ccc;}
.search-overlay input[type=text] {padding: 15px; font-size: 17px; border: none; float: left; width: 80%; background: white;}
.search-overlay input[type=text]:hover {background: #f1f1f1;}
.search-overlay button {float: left; width: 18%; margin-left:2%; padding:10px 15px ; background:var(--primary); font-size: 25px; border: none; cursor: pointer; color: #fff;}
.search-overlay button:hover {background: #007fc8;}

@media (max-width: 767px) {
    .search-overlay-content {width: 80%;}
    .search-overlay .icon-cancel {top: 15px;right: 15px;}
} */

/** Search form
========================================================================== */

.search-form input[type="search"] {
    background-color: #fafafa;
    padding: 8px;
    color: #333333;
    vertical-align: top;
    border: 0;
    height: 36px;
    margin: 0;
    border-radius: 0;
    float: left;
    font-size:14px;

}

.search-form input[type="search"]::placeholder {
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
}

.search-form button[type="submit"] {
    background-color: #f36f21;
    font-weight: bold;
    padding: 8px 15px;
    color: #333333;
    margin: 0;
    height: 36px;
    float: left;
    border: 0;
    border-radius: 0;
}

.search-form input[type="search"] {
    height: 17px !important;
}
.search-form button[type="submit"] {
    height:33px !important;
}

.search-form button[type="submit"]:hover {
    background-color: gray;
    color: #fafafa;
}

@media(max-width: 767px) {
    .search-form button[type=submit] {
        width: 20%;
    }
    .search-form input[type=search] {
        width: 80%;
    }
    .search-form {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media(min-width: 768px) {
    .search-form {
        float: right;
    }
    .search-form input[type="search"] {
        width: 220px;
    }
}

/*
Utils
 */
 .p-clear-margin {
    margin-bottom: 0 !important;
}

.p-clear-margin p {
    margin-bottom: 5px;
}

/**
Footer Copyright
 */
.copyright-menu ul li:last-child {
    border-right: 0;
    margin-right: 0;
}
.copyright-menu ul li:first-child {
    border-left: 0;
    margin-left: 0;
}

.copyright-menu ul li {
    float:left;
    padding-right: 5px;
    padding-left: 5px;
    border-right: 1px solid #ccc;
}

.copyright-menu ul li a {
    font-family: 'Fira Sans', serif;
    color: #fff;
    font-size: 0.88rem;
}

.copyright-menu ul {
    list-style: none;
    padding-left: 0;
}

@media(max-width: 767px) {
    .copyright-menu ul li {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 5px;
    }
    .copyright-menu {
        float: none;
        width: 100%;
        text-align: center;
    }
    .copyright-menu ul li {
        width: 100%;
    }
}

/**
Footer menu
 */
.footer-menu ul li:last-child:after {
    display: none;
}

.footer-menu ul li:after {
    content: '\2022';
    color: #fff;
    position: relative;
    display: inline-block;
    line-height: 1.2rem;
    vertical-align: middle;
    left: 10px;
}

.footer-menu ul a {
    color: #fff;
    font-family: 'Fira Sans', serif;
}

.footer-menu ul li:first-child {
    margin-left: 0;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li {
    float: left;
    margin-right: 10px;
    margin-left: 10px;
}

.footer-menu ul {
    list-style: none;
    padding-left: 0;
    float: right;
}

@media(max-width: 767px) {
    .footer-menu ul li {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 5px;
    }
    .footer-menu ul li:after {
        display: none;
    }
    .footer-menu, .footer-menu ul {
        float: none;
        width: 100%;
        text-align: center;
    }
    .footer-menu ul li {
        width: 100%;
    }
}

/**
 Homepage
 */
@media (min-width: 767px) {
    .header-negative {
        position: relative;
        bottom: -20%;
        z-index: 501;
    }
}

/**
Page title
 */
.page-current-title {
    margin:0;
}

/*
Intertek badge
 */
@media(min-width: 768px) {
    .badge-intertek {
        position: relative;
        top: 20px;
    }
}

/* Search
   ========================================================================== */

.cl-search-icon {cursor:pointer;}
.cl-search-icon svg {width:100%;}

.search-overlay {height: 100vh; width: 100%; display: none; position: fixed; z-index: 100000; top: 0; left: 0; background-color: rgba(51,51,51, 0.8);}
.search-overlay-content {position: relative;top: 46%;  width: 50%;  text-align: center;  margin: auto;}
.search-overlay .icon-cancel {position: absolute;top: 20px;right: 45px;font-size: 40px;cursor: pointer;color: #eee;}
.search-overlay .icon-cancel:hover {color: #ccc;}
.search-overlay input[type=text] {padding: 15px; font-size: 17px; border: none; float: left; width: 80%; background: #eee;}
.search-overlay input[type=text]:hover {background: #eee;}
.search-overlay button {float: left; width: 18%; margin-left:2%; padding:7px 15px 9px; transition: all 0.5s; font-size: 25px; border: none; cursor: pointer; color: var(--text, #333); background:var(--primary, white); border:solid thin var(--text, #333); }
.search-overlay button:hover {background: transparent; }

@media (max-width: 767px) {
    .search-overlay-content {width: 80%;}
    .search-overlay .icon-cancel {top: 15px;right: 15px;}
}

.search-result {
    border-bottom:solid thin rgba(55,55,55,0.5);
    padding-bottom:20px;
    margin-bottom:20px;
}

.search-result:last-child {
    border-bottom:none;
}

.search-result img {
    display:none;
}

/* Blog Default
   ========================================================================== */

body .site-main.blog-single {
    width:100%;
    max-width: 100% !important;
}

.blog-default {
    width: 100%;
    max-width:1400px;
    padding:30px 20px;
    margin:0 auto;
}

.blog-default time {
    background-color: #666666;
    display: inline-block;
    padding:5px 10px;
    color:white;
    font-size:65%;
}

.blog-default h1.page-title {
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.blog-default h2 {
    margin-top:40px;
    font-size: 120%;
    font-weight: bold;
    line-height: 1.5em;
}

.blog-default a {
    text-decoration: underline;
}

.blog-default .blog-default-sidebar .blog-recent {
    padding:20px;
    background-color: #333;
    color:white;
}

.blog-default .blog-default-sidebar h3 {
    text-transform: uppercase;
    color:white;
    font-size:20px;
    font-weight: bold;
}

.blog-default .blog-default-sidebar .blog-recent ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-default .blog-default-sidebar .blog-recent li {
    list-style: none;
    margin-bottom: 10px;
    line-height: 1.2em;
}

.blog-default .blog-default-sidebar a {
    color:white;
    font-size: 16px;
    text-decoration: none;
}

.blog-default .blog-default-sidebar a:hover {
    text-decoration: underline;
}

@media (min-width:769px) {
    .blog-default {
        display:flex;
        flex-direction: row;
        gap:20px;
    }

    .blog-default .blog-default-content {
        width:70%;
    }

    .blog-default .blog-default-content > .inner {
        padding: 50px;
        background-color: #eee;
    }

    .blog-default .blog-default-sidebar {
        width:28%;
    }
}

.linear-layout {
    max-width:1000px;
    margin:0 auto 75px;
}

.linear-layout .page-subhead {
    text-align: center;
}

.site-main.type-post .linear-layout .page-subhead p {
    font-size: 85%;
    opacity: 0.9;
}

.site-main.type-post .linear-layout .blog-title {
    margin-top:20px;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 400;
}
 
 @media (min-width:768px) {
    .linear-layout .page-subhead {
       display: flex;
       justify-content: center;
       align-items: center;
       padding-bottom:75px;
    }
 
    .linear-layout .page-subhead > p {
       flex:1;
    }
 
    .linear-layout .page-subhead p:first-child {
       text-align: left;
    }
 
    .linear-layout .page-subhead p:last-child {
       text-align: right;
    }
 
    .site-main.type-post .linear-layout .blog-title {
       margin-top: 50px;
       font-size: 4rem;
    }
}
 
.linear-layout h2,
.linear-layout h3,
.linear-layout h4,
.linear-layout h5 {
    font-weight: 700;
    font-family: var(--accent-font);
    text-transform: uppercase;
}

.linear-layout h2 {
    margin:50px 0 20px;
}

.linear-layout h3 {
    margin:40px 0 20px;
}

.linear-layout h4 {
    margin:30px 0 20px;
}

.linear-layout h5 {
    margin:20px 0; 
}

.linear-layout .comments-area {
    margin-top:100px;
}

/* Code
   ========================================================================== */

.page-content pre {
    background-color: #333;
    border-radius: 5px;
    padding: 10px;
    overflow-x: auto; /* This will add a horizontal scrollbar if the code is too wide */
    margin-bottom: 30px;
}

.page-content code {
    font-family: 'Courier New', monospace; /* You can use any monospace font you like */
    font-size: 14px;
    line-height: 1.6;
    border-radius: 5px;
    padding:5px;
    background-color: #333;
    color:white;
}

.page-content pre code {
    display: block;
    padding: 0;
    background-color: transparent;
}

.page-content code.language-bash {
    color: lightgreen; /* Different color for bash commands */
}