html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#Content.p-30 {
    padding-top: 30px !important;
}

/* copied from River Bend */
:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient( 135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100% );
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient( 135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100% );
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient( 135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100% );
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient( 135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100% );
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient( 135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100% );
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient( 135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100% );
    --wp--preset--gradient--blush-light-purple: linear-gradient( 135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100% );
    --wp--preset--gradient--blush-bordeaux: linear-gradient( 135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100% );
    --wp--preset--gradient--luminous-dusk: linear-gradient( 135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100% );
    --wp--preset--gradient--pale-ocean: linear-gradient( 135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100% );
    --wp--preset--gradient--electric-grass: linear-gradient( 135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100% );
    --wp--preset--gradient--midnight: linear-gradient( 135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100% );
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

    .is-layout-flex > :is(*, div) {
        margin: 0;
    }

body .is-layout-grid {
    display: grid;
}

.is-layout-grid > :is(*, div) {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var( --wp--preset--color--luminous-vivid-orange ) !important;
}

.has-luminous-vivid-amber-color {
    color: var( --wp--preset--color--luminous-vivid-amber ) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var( --wp--preset--color--cyan-bluish-gray ) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var( --wp--preset--color--pale-pink ) !important;
}

.has-vivid-red-background-color {
    background-color: var( --wp--preset--color--vivid-red ) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var( --wp--preset--color--luminous-vivid-orange ) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var( --wp--preset--color--luminous-vivid-amber ) !important;
}

.has-light-green-cyan-background-color {
    background-color: var( --wp--preset--color--light-green-cyan ) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var( --wp--preset--color--vivid-green-cyan ) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var( --wp--preset--color--pale-cyan-blue ) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var( --wp--preset--color--vivid-cyan-blue ) !important;
}

.has-vivid-purple-background-color {
    background-color: var( --wp--preset--color--vivid-purple ) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var( --wp--preset--color--cyan-bluish-gray ) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var( --wp--preset--color--luminous-vivid-orange ) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var( --wp--preset--color--luminous-vivid-amber ) !important;
}

.has-light-green-cyan-border-color {
    border-color: var( --wp--preset--color--light-green-cyan ) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var( --wp--preset--color--vivid-green-cyan ) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var( --wp--preset--color--pale-cyan-blue ) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var( --wp--preset--color--vivid-cyan-blue ) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var( --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple ) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var( --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan ) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var( --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange ) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var( --wp--preset--gradient--luminous-vivid-orange-to-vivid-red ) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var( --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray ) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var( --wp--preset--gradient--cool-to-warm-spectrum ) !important;
}

.has-blush-light-purple-gradient-background {
    background: var( --wp--preset--gradient--blush-light-purple ) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var( --wp--preset--gradient--blush-bordeaux ) !important;
}

.has-luminous-dusk-gradient-background {
    background: var( --wp--preset--gradient--luminous-dusk ) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var( --wp--preset--gradient--electric-grass ) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:root :where(.wp-block-pullquote) {
    font-size: 1.5em;
    line-height: 1.6;
}

html {
    background-color: #ffffff;
}

#Wrapper,
#Content,
.mfn-popup .mfn-popup-content,
.mfn-off-canvas-sidebar .mfn-off-canvas-content-wrapper,
.mfn-cart-holder,
.mfn-header-login,
#Top_bar .search_wrapper,
#Top_bar .top_bar_right .mfn-live-search-box,
.column_livesearch .mfn-live-search-wrapper,
.column_livesearch .mfn-live-search-box {
    background-color: #ffffff;
}

body:not(.template-slider) #Header {
    min-height: 250px;
}

body.header-below:not(.template-slider) #Header {
    padding-top: 250px;
}

#Footer .widgets_wrapper {
    padding: 70px 0;
}

body,
button,
span.date_label,
.timeline_items li h3 span,
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="date"],
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
textarea,
select,
.offer_li .title h3,
.mfn-menu-item-megamenu {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#menu > ul > li > a,
a.action_button,
#overlay-menu ul li a {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#Subheader .title {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
.text-logo #logo {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h5,
h6 {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

blockquote {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.chart_box .chart .num,
.counter .desc_wrapper .number-wrapper,
.how_it_works .image .number,
.pricing-box .plan-header .price,
.quick_fact .number-wrapper,
.woocommerce .product div.entry-summary .price {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body,
.mfn-menu-item-megamenu {
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 0px;
}

.big {
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 0px;
}

#menu > ul > li > a,
a.action_button,
#overlay-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
}

#overlay-menu ul li a {
    line-height: 27px;
}

#Subheader .title {
    font-size: 40px;
    line-height: 52px;
    font-weight: 800;
    letter-spacing: 8px;
}

h1,
.text-logo #logo {
    font-size: 46px;
    line-height: 60px;
    font-weight: 800;
    letter-spacing: 10px;
}

h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    letter-spacing: 8px;
}

h3,
.woocommerce ul.products li.product h3,
.woocommerce #customer_login h2 {
    font-size: 30px;
    line-height: 42px;
    font-weight: 800;
    letter-spacing: 6px;
}

h4,
.woocommerce .woocommerce-order-details__title,
.woocommerce .wc-bacs-bank-details-heading,
.woocommerce .woocommerce-customer-details h2 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 6px;
}

h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0px;
}

h6 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0px;
}

#Intro .intro-title {
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    body,
    .mfn-menu-item-megamenu {
        font-size: 15px;
        line-height: 31px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    .big {
        font-size: 15px;
        line-height: 31px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    #menu > ul > li > a,
    a.action_button,
    #overlay-menu ul li a {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 3px;
    }

    #overlay-menu ul li a {
        line-height: 22.5px;
    }

    #Subheader .title {
        font-size: 34px;
        line-height: 44px;
        font-weight: 800;
        letter-spacing: 7px;
    }

    h1,
    .text-logo #logo {
        font-size: 39px;
        line-height: 51px;
        font-weight: 800;
        letter-spacing: 9px;
    }

    h2 {
        font-size: 34px;
        line-height: 43px;
        font-weight: 800;
        letter-spacing: 7px;
    }

    h3,
    .woocommerce ul.products li.product h3,
    .woocommerce #customer_login h2 {
        font-size: 26px;
        line-height: 36px;
        font-weight: 800;
        letter-spacing: 5px;
    }

    h4,
    .woocommerce .woocommerce-order-details__title,
    .woocommerce .wc-bacs-bank-details-heading,
    .woocommerce .woocommerce-customer-details h2 {
        font-size: 20px;
        line-height: 32px;
        font-weight: 500;
        letter-spacing: 5px;
    }

    h5 {
        font-size: 15px;
        line-height: 26px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    h6 {
        font-size: 13px;
        line-height: 22px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    #Intro .intro-title {
        font-size: 60px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: 0px;
    }

    blockquote {
        font-size: 15px;
    }

    .chart_box .chart .num {
        font-size: 45px;
        line-height: 45px;
    }

    .counter .desc_wrapper .number-wrapper {
        font-size: 45px;
        line-height: 45px;
    }

    .counter .desc_wrapper .title {
        font-size: 14px;
        line-height: 18px;
    }

    .faq .question .title {
        font-size: 14px;
    }

    .fancy_heading .title {
        font-size: 38px;
        line-height: 38px;
    }

    .offer .offer_li .desc_wrapper .title h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .pricing-box .plan-header h2 {
        font-size: 27px;
        line-height: 27px;
    }

    .pricing-box .plan-header .price > span {
        font-size: 40px;
        line-height: 40px;
    }

    .pricing-box .plan-header .price sup.currency {
        font-size: 18px;
        line-height: 18px;
    }

    .pricing-box .plan-header .price sup.period {
        font-size: 14px;
        line-height: 14px;
    }

    .quick_fact .number-wrapper {
        font-size: 80px;
        line-height: 80px;
    }

    .trailer_box .desc h2 {
        font-size: 27px;
        line-height: 27px;
    }

    .widget > h3 {
        font-size: 17px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    body,
    .mfn-menu-item-megamenu {
        font-size: 14px;
        line-height: 27px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    .big {
        font-size: 14px;
        line-height: 27px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    #menu > ul > li > a,
    a.action_button,
    #overlay-menu ul li a {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    #overlay-menu ul li a {
        line-height: 21px;
    }

    #Subheader .title {
        font-size: 30px;
        line-height: 39px;
        font-weight: 800;
        letter-spacing: 6px;
    }

    h1,
    .text-logo #logo {
        font-size: 35px;
        line-height: 45px;
        font-weight: 800;
        letter-spacing: 8px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
        font-weight: 800;
        letter-spacing: 6px;
    }

    h3,
    .woocommerce ul.products li.product h3,
    .woocommerce #customer_login h2 {
        font-size: 23px;
        line-height: 32px;
        font-weight: 800;
        letter-spacing: 5px;
    }

    h4,
    .woocommerce .woocommerce-order-details__title,
    .woocommerce .wc-bacs-bank-details-heading,
    .woocommerce .woocommerce-customer-details h2 {
        font-size: 18px;
        line-height: 29px;
        font-weight: 500;
        letter-spacing: 5px;
    }

    h5 {
        font-size: 14px;
        line-height: 23px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    h6 {
        font-size: 13px;
        line-height: 20px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    #Intro .intro-title {
        font-size: 53px;
        line-height: 53px;
        font-weight: 400;
        letter-spacing: 0px;
    }

    blockquote {
        font-size: 14px;
    }

    .chart_box .chart .num {
        font-size: 40px;
        line-height: 40px;
    }

    .counter .desc_wrapper .number-wrapper {
        font-size: 40px;
        line-height: 40px;
    }

    .counter .desc_wrapper .title {
        font-size: 13px;
        line-height: 16px;
    }

    .faq .question .title {
        font-size: 13px;
    }

    .fancy_heading .title {
        font-size: 34px;
        line-height: 34px;
    }

    .offer .offer_li .desc_wrapper .title h3 {
        font-size: 28px;
        line-height: 28px;
    }

    .offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {
        font-size: 28px;
        line-height: 28px;
    }

    .pricing-box .plan-header h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .pricing-box .plan-header .price > span {
        font-size: 34px;
        line-height: 34px;
    }

    .pricing-box .plan-header .price sup.currency {
        font-size: 16px;
        line-height: 16px;
    }

    .pricing-box .plan-header .price sup.period {
        font-size: 13px;
        line-height: 13px;
    }

    .quick_fact .number-wrapper {
        font-size: 70px;
        line-height: 70px;
    }

    .trailer_box .desc h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .widget > h3 {
        font-size: 16px;
        line-height: 19px;
    }
}

@media only screen and (max-width: 479px) {
    body,
    .mfn-menu-item-megamenu {
        font-size: 13px;
        line-height: 22px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    .big {
        font-size: 13px;
        line-height: 22px;
        font-weight: 300;
        letter-spacing: 0px;
    }

    #menu > ul > li > a,
    a.action_button,
    #overlay-menu ul li a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    #overlay-menu ul li a {
        line-height: 19.5px;
    }

    #Subheader .title {
        font-size: 24px;
        line-height: 31px;
        font-weight: 800;
        letter-spacing: 5px;
    }

    h1,
    .text-logo #logo {
        font-size: 28px;
        line-height: 36px;
        font-weight: 800;
        letter-spacing: 6px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 800;
        letter-spacing: 5px;
    }

    h3,
    .woocommerce ul.products li.product h3,
    .woocommerce #customer_login h2 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 800;
        letter-spacing: 4px;
    }

    h4,
    .woocommerce .woocommerce-order-details__title,
    .woocommerce .wc-bacs-bank-details-heading,
    .woocommerce .woocommerce-customer-details h2 {
        font-size: 14px;
        line-height: 23px;
        font-weight: 500;
        letter-spacing: 4px;
    }

    h5 {
        font-size: 13px;
        line-height: 19px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    h6 {
        font-size: 13px;
        line-height: 19px;
        font-weight: 500;
        letter-spacing: 0px;
    }

    #Intro .intro-title {
        font-size: 42px;
        line-height: 42px;
        font-weight: 400;
        letter-spacing: 0px;
    }

    blockquote {
        font-size: 13px;
    }

    .chart_box .chart .num {
        font-size: 35px;
        line-height: 35px;
    }

    .counter .desc_wrapper .number-wrapper {
        font-size: 35px;
        line-height: 35px;
    }

    .counter .desc_wrapper .title {
        font-size: 13px;
        line-height: 26px;
    }

    .faq .question .title {
        font-size: 13px;
    }

    .fancy_heading .title {
        font-size: 30px;
        line-height: 30px;
    }

    .offer .offer_li .desc_wrapper .title h3 {
        font-size: 26px;
        line-height: 26px;
    }

    .offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {
        font-size: 26px;
        line-height: 26px;
    }

    .pricing-box .plan-header h2 {
        font-size: 21px;
        line-height: 21px;
    }

    .pricing-box .plan-header .price > span {
        font-size: 32px;
        line-height: 32px;
    }

    .pricing-box .plan-header .price sup.currency {
        font-size: 14px;
        line-height: 14px;
    }

    .pricing-box .plan-header .price sup.period {
        font-size: 13px;
        line-height: 13px;
    }

    .quick_fact .number-wrapper {
        font-size: 60px;
        line-height: 60px;
    }

    .trailer_box .desc h2 {
        font-size: 21px;
        line-height: 21px;
    }

    .widget > h3 {
        font-size: 15px;
        line-height: 18px;
    }
}

.with_aside .sidebar.columns {
    width: 23%;
}

.with_aside .sections_group {
    width: 77%;
}

.aside_both .sidebar.columns {
    width: 18%;
}

.aside_both .sidebar.sidebar-1 {
    margin-left: -82%;
}

.aside_both .sections_group {
    width: 64%;
    margin-left: 18%;
}

@media only screen and (min-width: 1240px) {
    #Wrapper,
    .with_aside .content_wrapper {
        max-width: 1240px;
    }

    .section_wrapper,
    .container {
        max-width: 1220px;
    }

    .layout-boxed.header-boxed #Top_bar.is-sticky {
        max-width: 1240px;
    }
}

@media only screen and (max-width: 767px) {
    .section_wrapper,
    .container,
    .four.columns .widget-area {
        max-width: 550px !important;
    }
}

.button-default .button,
.button-flat .button,
.button-round .button {
    background-color: #f7f7f7;
    color: #747474;
}

.button-stroke .button {
    border-color: #f7f7f7;
    color: #747474;
}

    .button-stroke .button:hover {
        background-color: #f7f7f7;
        color: #fff;
    }

.button-default .button_theme,
.button-default button,
.button-default input[type="button"],
.button-default input[type="reset"],
.button-default input[type="submit"],
.button-flat .button_theme,
.button-flat button,
.button-flat input[type="button"],
.button-flat input[type="reset"],
.button-flat input[type="submit"],
.button-round .button_theme,
.button-round button,
.button-round input[type="button"],
.button-round input[type="reset"],
.button-round input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button:not(.default),
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: #ffffff;
}

    .button-default #respond input#submit.alt.disabled,
    .button-default #respond input#submit.alt.disabled:hover,
    .button-default #respond input#submit.alt:disabled,
    .button-default #respond input#submit.alt:disabled:hover,
    .button-default #respond input#submit.alt:disabled[disabled],
    .button-default #respond input#submit.alt:disabled[disabled]:hover,
    .button-default a.button.alt.disabled,
    .button-default a.button.alt.disabled:hover,
    .button-default a.button.alt:disabled,
    .button-default a.button.alt:disabled:hover,
    .button-default a.button.alt:disabled[disabled],
    .button-default a.button.alt:disabled[disabled]:hover,
    .button-default button.button.alt.disabled,
    .button-default button.button.alt.disabled:hover,
    .button-default button.button.alt:disabled,
    .button-default button.button.alt:disabled:hover,
    .button-default button.button.alt:disabled[disabled],
    .button-default button.button.alt:disabled[disabled]:hover,
    .button-default input.button.alt.disabled,
    .button-default input.button.alt.disabled:hover,
    .button-default input.button.alt:disabled,
    .button-default input.button.alt:disabled:hover,
    .button-default input.button.alt:disabled[disabled],
    .button-default input.button.alt:disabled[disabled]:hover,
    .button-default #respond input#submit.alt,
    .button-default a.button.alt,
    .button-default button.button.alt,
    .button-default input.button.alt,
    .button-default #respond input#submit.alt:hover,
    .button-default a.button.alt:hover,
    .button-default button.button.alt:hover,
    .button-default input.button.alt:hover,
    .button-flat #respond input#submit.alt.disabled,
    .button-flat #respond input#submit.alt.disabled:hover,
    .button-flat #respond input#submit.alt:disabled,
    .button-flat #respond input#submit.alt:disabled:hover,
    .button-flat #respond input#submit.alt:disabled[disabled],
    .button-flat #respond input#submit.alt:disabled[disabled]:hover,
    .button-flat a.button.alt.disabled,
    .button-flat a.button.alt.disabled:hover,
    .button-flat a.button.alt:disabled,
    .button-flat a.button.alt:disabled:hover,
    .button-flat a.button.alt:disabled[disabled],
    .button-flat a.button.alt:disabled[disabled]:hover,
    .button-flat button.button.alt.disabled,
    .button-flat button.button.alt.disabled:hover,
    .button-flat button.button.alt:disabled,
    .button-flat button.button.alt:disabled:hover,
    .button-flat button.button.alt:disabled[disabled],
    .button-flat button.button.alt:disabled[disabled]:hover,
    .button-flat input.button.alt.disabled,
    .button-flat input.button.alt.disabled:hover,
    .button-flat input.button.alt:disabled,
    .button-flat input.button.alt:disabled:hover,
    .button-flat input.button.alt:disabled[disabled],
    .button-flat input.button.alt:disabled[disabled]:hover,
    .button-flat #respond input#submit.alt,
    .button-flat a.button.alt,
    .button-flat button.button.alt,
    .button-flat input.button.alt,
    .button-flat #respond input#submit.alt:hover,
    .button-flat a.button.alt:hover,
    .button-flat button.button.alt:hover,
    .button-flat input.button.alt:hover,
    .button-round #respond input#submit.alt.disabled,
    .button-round #respond input#submit.alt.disabled:hover,
    .button-round #respond input#submit.alt:disabled,
    .button-round #respond input#submit.alt:disabled:hover,
    .button-round #respond input#submit.alt:disabled[disabled],
    .button-round #respond input#submit.alt:disabled[disabled]:hover,
    .button-round a.button.alt.disabled,
    .button-round a.button.alt.disabled:hover,
    .button-round a.button.alt:disabled,
    .button-round a.button.alt:disabled:hover,
    .button-round a.button.alt:disabled[disabled],
    .button-round a.button.alt:disabled[disabled]:hover,
    .button-round button.button.alt.disabled,
    .button-round button.button.alt.disabled:hover,
    .button-round button.button.alt:disabled,
    .button-round button.button.alt:disabled:hover,
    .button-round button.button.alt:disabled[disabled],
    .button-round button.button.alt:disabled[disabled]:hover,
    .button-round input.button.alt.disabled,
    .button-round input.button.alt.disabled:hover,
    .button-round input.button.alt:disabled,
    .button-round input.button.alt:disabled:hover,
    .button-round input.button.alt:disabled[disabled],
    .button-round input.button.alt:disabled[disabled]:hover,
    .button-round #respond input#submit.alt,
    .button-round a.button.alt,
    .button-round button.button.alt,
    .button-round input.button.alt,
    .button-round #respond input#submit.alt:hover,
    .button-round a.button.alt:hover,
    .button-round button.button.alt:hover,
    .button-round input.button.alt:hover {
        background-color: #0089f7;
        color: #ffffff;
    }

.button-stroke.woocommerce a.button:not(.default),
.button-stroke .woocommerce a.button:not(.default),
.button-stroke #respond input#submit.alt.disabled,
.button-stroke #respond input#submit.alt.disabled:hover,
.button-stroke #respond input#submit.alt:disabled,
.button-stroke #respond input#submit.alt:disabled:hover,
.button-stroke #respond input#submit.alt:disabled[disabled],
.button-stroke #respond input#submit.alt:disabled[disabled]:hover,
.button-stroke a.button.alt.disabled,
.button-stroke a.button.alt.disabled:hover,
.button-stroke a.button.alt:disabled,
.button-stroke a.button.alt:disabled:hover,
.button-stroke a.button.alt:disabled[disabled],
.button-stroke a.button.alt:disabled[disabled]:hover,
.button-stroke button.button.alt.disabled,
.button-stroke button.button.alt.disabled:hover,
.button-stroke button.button.alt:disabled,
.button-stroke button.button.alt:disabled:hover,
.button-stroke button.button.alt:disabled[disabled],
.button-stroke button.button.alt:disabled[disabled]:hover,
.button-stroke input.button.alt.disabled,
.button-stroke input.button.alt.disabled:hover,
.button-stroke input.button.alt:disabled,
.button-stroke input.button.alt:disabled:hover,
.button-stroke input.button.alt:disabled[disabled],
.button-stroke input.button.alt:disabled[disabled]:hover,
.button-stroke #respond input#submit.alt,
.button-stroke a.button.alt,
.button-stroke button.button.alt,
.button-stroke input.button.alt {
    border-color: #0089f7;
    background: none;
    color: #0089f7;
}

    .button-stroke.woocommerce a.button:not(.default):hover,
    .button-stroke .woocommerce a.button:not(.default):hover,
    .button-stroke #respond input#submit.alt:hover,
    .button-stroke a.button.alt:hover,
    .button-stroke button.button.alt:hover,
    .button-stroke input.button.alt:hover,
    .button-stroke a.action_button:hover {
        background-color: #0089f7;
        color: #ffffff;
    }

.action_button,
.action_button:hover {
    background-color: #0089f7;
    color: #ffffff;
}

.button-stroke a.action_button {
    border-color: #0089f7;
}

.footer_button {
    color: #ffffff !important;
    background-color: transparent;
    box-shadow: none !important;
}

    .footer_button:after {
        display: none !important;
    }

.button-custom.woocommerce .button,
.button-custom .button,
.button-custom .action_button,
.button-custom .footer_button,
.button-custom button,
.button-custom button.button,
.button-custom input[type="button"],
.button-custom input[type="reset"],
.button-custom input[type="submit"],
.button-custom .woocommerce #respond input#submit,
.button-custom .woocommerce a.button,
.button-custom .woocommerce button.button,
.button-custom .woocommerce input.button {
    font-family: Roboto;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    padding: 12px 20px 12px 20px;
    border-width: 0px;
    border-radius: 0px;
}

body.button-custom .button {
    color: #626262;
    background-color: #dbdddf;
    border-color: transparent;
}

    body.button-custom .button:hover {
        color: #626262;
        background-color: #d3d3d3;
        border-color: transparent;
    }

body .button-custom .button_theme,
body.button-custom .button_theme,
.button-custom button,
.button-custom input[type="button"],
.button-custom input[type="reset"],
.button-custom input[type="submit"],
.button-custom .woocommerce #respond input#submit,
body.button-custom.woocommerce a.button:not(.default),
.button-custom .woocommerce button.button,
.button-custom .woocommerce input.button,
.button-custom .woocommerce a.button_theme:not(.default) {
    color: #ffffff;
    background-color: #0095eb;
    border-color: transparent;
    box-shadow: unset;
}

    body .button-custom .button_theme:hover,
    body.button-custom .button_theme:hover,
    .button-custom button:hover,
    .button-custom input[type="button"]:hover,
    .button-custom input[type="reset"]:hover,
    .button-custom input[type="submit"]:hover,
    .button-custom .woocommerce #respond input#submit:hover,
    body.button-custom.woocommerce a.button:not(.default):hover,
    .button-custom .woocommerce button.button:hover,
    .button-custom .woocommerce input.button:hover,
    .button-custom .woocommerce a.button_theme:not(.default):hover {
        color: #ffffff;
        background-color: #007cc3;
        border-color: transparent;
    }

body.button-custom .action_button {
    color: #626262;
    background-color: #dbdddf;
    border-color: transparent;
    box-shadow: unset;
}

    body.button-custom .action_button:hover {
        color: #626262;
        background-color: #d3d3d3;
        border-color: transparent;
    }

.button-custom #respond input#submit.alt.disabled,
.button-custom #respond input#submit.alt.disabled:hover,
.button-custom #respond input#submit.alt:disabled,
.button-custom #respond input#submit.alt:disabled:hover,
.button-custom #respond input#submit.alt:disabled[disabled],
.button-custom #respond input#submit.alt:disabled[disabled]:hover,
.button-custom a.button.alt.disabled,
.button-custom a.button.alt.disabled:hover,
.button-custom a.button.alt:disabled,
.button-custom a.button.alt:disabled:hover,
.button-custom a.button.alt:disabled[disabled],
.button-custom a.button.alt:disabled[disabled]:hover,
.button-custom button.button.alt.disabled,
.button-custom button.button.alt.disabled:hover,
.button-custom button.button.alt:disabled,
.button-custom button.button.alt:disabled:hover,
.button-custom button.button.alt:disabled[disabled],
.button-custom button.button.alt:disabled[disabled]:hover,
.button-custom input.button.alt.disabled,
.button-custom input.button.alt.disabled:hover,
.button-custom input.button.alt:disabled,
.button-custom input.button.alt:disabled:hover,
.button-custom input.button.alt:disabled[disabled],
.button-custom input.button.alt:disabled[disabled]:hover,
.button-custom #respond input#submit.alt,
.button-custom a.button.alt,
.button-custom button.button.alt,
.button-custom input.button.alt {
    line-height: 14px;
    padding: 12px 20px 12px 20px;
    color: #ffffff;
    background-color: #0095eb;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    border-width: 0px;
    border-radius: 0px;
}

    .button-custom #respond input#submit.alt:hover,
    .button-custom a.button.alt:hover,
    .button-custom button.button.alt:hover,
    .button-custom input.button.alt:hover,
    .button-custom a.action_button:hover {
        color: #ffffff;
        background-color: #007cc3;
    }

#Top_bar #logo,
.header-fixed #Top_bar #logo,
.header-plain #Top_bar #logo,
.header-transparent #Top_bar #logo {
    height: 180px;
    line-height: 180px;
    padding: 16px 0;
}

.logo-overflow #Top_bar:not(.is-sticky) .logo {
    height: 212px;
}

#Top_bar .menu > li > a {
    padding: 76px 0;
}

.menu-highlight:not(.header-creative) #Top_bar .menu > li > a {
    margin: 81px 0;
}

.header-plain:not(.menu-highlight)
#Top_bar
.menu > li > a
span:not(.description) {
    line-height: 212px;
}

.header-fixed #Top_bar .menu > li > a {
    padding: 91px 0;
}

@media only screen and (max-width: 767px) {
    .mobile-header-mini #Top_bar #logo {
        height: 50px !important;
        line-height: 50px !important;
        margin: 5px 0;
    }
}

#Top_bar #logo img.svg {
    width: 100px;
}

.image_frame,
.wp-caption {
    border-width: 0px;
}

.alert {
    border-radius: 0px;
}

#Top_bar .top_bar_right .top-bar-right-input input {
    width: 200px;
}

.mfn-live-search-box .mfn-live-search-list {
    max-height: 300px;
}

#Side_slide {
    right: -250px;
    width: 250px;
}

    #Side_slide.left {
        left: -250px;
    }

.blog-teaser li .desc-wrapper .desc {
    background-position-y: -1px;
}

@media only screen and (max-width: 767px) {
}

@media only screen and (min-width: 1240px) {
    body:not(.header-simple) #Top_bar #menu {
        display: block !important;
    }

    .tr-menu #Top_bar #menu {
        background: none !important;
    }

    #Top_bar .menu > li > ul.mfn-megamenu > li {
        float: left;
    }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-1 {
            width: 100%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-2 {
            width: 50%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-3 {
            width: 33.33%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-4 {
            width: 25%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-5 {
            width: 20%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-6 {
            width: 16.66%;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li > ul {
            display: block !important;
            position: inherit;
            left: auto;
            top: auto;
            border-width: 0 1px 0 0;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li:last-child > ul {
            border: 0;
        }

        #Top_bar .menu > li > ul.mfn-megamenu > li > ul li {
            width: auto;
        }

    #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title {
        text-transform: uppercase;
        font-weight: 400;
        background: none;
    }

    #Top_bar .menu > li > ul.mfn-megamenu a .menu-arrow {
        display: none;
    }

    .menuo-right #Top_bar .menu > li > ul.mfn-megamenu {
        left: 0;
        width: 98% !important;
        margin: 0 1%;
        padding: 20px 0;
    }

    .menuo-right #Top_bar .menu > li > ul.mfn-megamenu-bg {
        box-sizing: border-box;
    }

    #Top_bar .menu > li > ul.mfn-megamenu-bg {
        padding: 20px 166px 20px 20px;
        background-repeat: no-repeat;
        background-position: right bottom;
    }

    .rtl #Top_bar .menu > li > ul.mfn-megamenu-bg {
        padding-left: 166px;
        padding-right: 20px;
        background-position: left bottom;
    }

    #Top_bar .menu > li > ul.mfn-megamenu-bg > li {
        background: none;
    }

        #Top_bar .menu > li > ul.mfn-megamenu-bg > li a {
            border: none;
        }

        #Top_bar .menu > li > ul.mfn-megamenu-bg > li > ul {
            background: none !important;
            -webkit-box-shadow: 0 0 0 0;
            -moz-box-shadow: 0 0 0 0;
            box-shadow: 0 0 0 0;
        }

    .mm-vertical #Top_bar .container {
        position: relative;
    }

    .mm-vertical #Top_bar .top_bar_left {
        position: static;
    }

    .mm-vertical #Top_bar .menu > li ul {
        box-shadow: 0 0 0 0 transparent !important;
        background-image: none;
    }

    .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu {
        padding: 20px 0;
    }

    .mm-vertical.header-plain
    #Top_bar
    .menu > li > ul.mfn-megamenu {
        width: 100% !important;
        margin: 0;
    }

    .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li {
        display: table-cell;
        float: none !important;
        width: 10%;
        padding: 0 15px;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

        .mm-vertical
        #Top_bar
        .menu > li > ul.mfn-megamenu > li:last-child {
            border-right-width: 0;
        }

        .mm-vertical
        #Top_bar
        .menu > li > ul.mfn-megamenu > li.hide-border {
            border-right-width: 0;
        }

        .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li a {
            border-bottom-width: 0;
            padding: 9px 15px;
            line-height: 120%;
        }

    .mm-vertical
    #Top_bar
    .menu > li > ul.mfn-megamenu
    a.mfn-megamenu-title {
        font-weight: 700;
    }

    .rtl
    .mm-vertical
    #Top_bar
    .menu > li > ul.mfn-megamenu > li:first-child {
        border-right-width: 0;
    }

    .rtl
    .mm-vertical
    #Top_bar
    .menu > li > ul.mfn-megamenu > li:last-child {
        border-right-width: 1px;
    }

    body.header-shop #Top_bar #menu {
        display: flex !important;
    }

    .header-shop #Top_bar.is-sticky .top_bar_row_second {
        display: none;
    }

    .header-plain:not(.menuo-right) #Header .top_bar_left {
        width: auto !important;
    }

    .header-stack.header-center #Top_bar #menu {
        display: inline-block !important;
    }

    .header-simple #Top_bar #menu {
        display: none;
        height: auto;
        width: 300px;
        bottom: auto;
        top: 100%;
        right: 1px;
        position: absolute;
        margin: 0;
    }

    .header-simple #Header a.responsive-menu-toggle {
        display: block;
        right: 10px;
    }

    .header-simple #Top_bar #menu > ul {
        width: 100%;
        float: left;
    }

    .header-simple #Top_bar #menu ul li {
        width: 100%;
        padding-bottom: 0;
        border-right: 0;
        position: relative;
    }

        .header-simple #Top_bar #menu ul li a {
            padding: 0 20px;
            margin: 0;
            display: block;
            height: auto;
            line-height: normal;
            border: none;
        }

            .header-simple #Top_bar #menu ul li a:not(.menu-toggle):after {
                display: none;
            }

            .header-simple #Top_bar #menu ul li a span {
                border: none;
                line-height: 44px;
                display: inline;
                padding: 0;
            }

        .header-simple #Top_bar #menu ul li.submenu .menu-toggle {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            width: 44px;
            height: 44px;
            line-height: 44px;
            font-size: 30px;
            font-weight: 300;
            text-align: center;
            cursor: pointer;
            color: #444;
            opacity: 0.33;
            transform: unset;
        }

            .header-simple #Top_bar #menu ul li.submenu .menu-toggle:after {
                content: "+";
                position: static;
            }

        .header-simple #Top_bar #menu ul li.hover > .menu-toggle:after {
            content: "-";
        }

        .header-simple #Top_bar #menu ul li.hover a {
            border-bottom: 0;
        }

    .header-simple #Top_bar #menu ul.mfn-megamenu li .menu-toggle {
        display: none;
    }

    .header-simple #Top_bar #menu ul li ul {
        position: relative !important;
        left: 0 !important;
        top: 0;
        padding: 0;
        margin: 0 !important;
        width: auto !important;
        background-image: none;
    }

        .header-simple #Top_bar #menu ul li ul li {
            width: 100% !important;
            display: block;
            padding: 0;
        }

            .header-simple #Top_bar #menu ul li ul li a {
                padding: 0 20px 0 30px;
            }

                .header-simple #Top_bar #menu ul li ul li a .menu-arrow {
                    display: none;
                }

                .header-simple #Top_bar #menu ul li ul li a span {
                    padding: 0;
                }

                    .header-simple #Top_bar #menu ul li ul li a span:after {
                        display: none !important;
                    }

    .header-simple
    #Top_bar
    .menu > li > ul.mfn-megamenu
    a.mfn-megamenu-title {
        text-transform: uppercase;
        font-weight: 400;
    }

    .header-simple #Top_bar .menu > li > ul.mfn-megamenu > li > ul {
        display: block !important;
        position: inherit;
        left: auto;
        top: auto;
    }

    .header-simple #Top_bar #menu ul li ul li ul {
        border-left: 0 !important;
        padding: 0;
        top: 0;
    }

        .header-simple #Top_bar #menu ul li ul li ul li a {
            padding: 0 20px 0 40px;
        }

    .rtl.header-simple #Top_bar #menu {
        left: 1px;
        right: auto;
    }

    .rtl.header-simple #Top_bar a.responsive-menu-toggle {
        left: 10px;
        right: auto;
    }

    .rtl.header-simple #Top_bar #menu ul li.submenu .menu-toggle {
        left: 0;
        right: auto;
    }

    .rtl.header-simple #Top_bar #menu ul li ul {
        left: auto !important;
        right: 0 !important;
    }

        .rtl.header-simple #Top_bar #menu ul li ul li a {
            padding: 0 30px 0 20px;
        }

        .rtl.header-simple #Top_bar #menu ul li ul li ul li a {
            padding: 0 40px 0 20px;
        }

    .menu-highlight #Top_bar .menu > li {
        margin: 0 2px;
    }

    .menu-highlight:not(.header-creative) #Top_bar .menu > li > a {
        padding: 0;
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

    .menu-highlight #Top_bar .menu > li > a:after {
        display: none;
    }

    .menu-highlight #Top_bar .menu > li > a span:not(.description) {
        line-height: 50px;
    }

    .menu-highlight #Top_bar .menu > li > a span.description {
        display: none;
    }

    .menu-highlight.header-stack #Top_bar .menu > li > a {
        margin: 10px 0 !important;
    }

        .menu-highlight.header-stack
        #Top_bar
        .menu > li > a
        span:not(.description) {
            line-height: 40px;
        }

    .menu-highlight.header-simple #Top_bar #menu ul li,
    .menu-highlight.header-creative #Top_bar #menu ul li {
        margin: 0;
    }

        .menu-highlight.header-simple #Top_bar #menu ul li > a,
        .menu-highlight.header-creative #Top_bar #menu ul li > a {
            -webkit-border-radius: 0;
            border-radius: 0;
        }

    .menu-highlight:not(.header-fixed):not(.header-simple)
    #Top_bar.is-sticky
    .menu > li > a {
        margin: 10px 0 !important;
        padding: 5px 0 !important;
    }

        .menu-highlight:not(.header-fixed):not(.header-simple)
        #Top_bar.is-sticky
        .menu > li > a
        span {
            line-height: 30px !important;
        }

    .header-modern.menu-highlight.menuo-right .menu_wrapper {
        margin-right: 20px;
    }

    .menu-line-below
    #Top_bar
    .menu > li > a:not(.menu-toggle):after {
        top: auto;
        bottom: -4px;
    }

    .menu-line-below
    #Top_bar.is-sticky
    .menu > li > a:not(.menu-toggle):after {
        top: auto;
        bottom: -4px;
    }

    .menu-line-below-80
    #Top_bar:not(.is-sticky)
    .menu > li > a:not(.menu-toggle):after {
        height: 4px;
        left: 10%;
        top: 50%;
        margin-top: 20px;
        width: 80%;
    }

    .menu-line-below-80-1
    #Top_bar:not(.is-sticky)
    .menu > li > a:not(.menu-toggle):after {
        height: 1px;
        left: 10%;
        top: 50%;
        margin-top: 20px;
        width: 80%;
    }

    .menu-link-color
    #Top_bar
    .menu > li > a:not(.menu-toggle):after {
        display: none !important;
    }

    .menu-arrow-top #Top_bar .menu > li > a:after {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
        border-color: #ccc transparent transparent;
        border-style: solid;
        border-width: 7px 7px 0;
        display: block;
        height: 0;
        left: 50%;
        margin-left: -7px;
        top: 0 !important;
        width: 0;
    }

    .menu-arrow-top #Top_bar.is-sticky .menu > li > a:after {
        top: 0 !important;
    }

    .menu-arrow-bottom #Top_bar .menu > li > a:after {
        background: none !important;
        border-color: transparent transparent #ccc;
        border-style: solid;
        border-width: 0 7px 7px;
        display: block;
        height: 0;
        left: 50%;
        margin-left: -7px;
        top: auto;
        bottom: 0;
        width: 0;
    }

    .menu-arrow-bottom #Top_bar.is-sticky .menu > li > a:after {
        top: auto;
        bottom: 0;
    }

    .menuo-no-borders #Top_bar .menu > li > a span {
        border-width: 0 !important;
    }

    .menuo-no-borders
    #Header_creative
    #Top_bar
    .menu > li > a
    span {
        border-bottom-width: 0;
    }

    .menuo-no-borders.header-plain #Top_bar a#header_cart,
    .menuo-no-borders.header-plain #Top_bar a#search_button,
    .menuo-no-borders.header-plain #Top_bar .wpml-languages,
    .menuo-no-borders.header-plain #Top_bar a.action_button {
        border-width: 0;
    }

    .menuo-right #Top_bar .menu_wrapper {
        float: right;
    }

    .menuo-right.header-stack:not(.header-center)
    #Top_bar
    .menu_wrapper {
        margin-right: 150px;
    }

    body.header-creative {
        padding-left: 50px;
    }

        body.header-creative.header-open {
            padding-left: 250px;
        }

    body.error404,
    body.under-construction,
    body.template-blank,
    body.under-construction.header-rtl.header-creative.header-open {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-creative.footer-fixed #Footer,
    .header-creative.footer-sliding #Footer,
    .header-creative.footer-stick #Footer.is-sticky {
        box-sizing: border-box;
        padding-left: 50px;
    }

    .header-open.footer-fixed #Footer,
    .header-open.footer-sliding #Footer,
    .header-creative.footer-stick #Footer.is-sticky {
        padding-left: 250px;
    }

    .header-rtl.header-creative.footer-fixed #Footer,
    .header-rtl.header-creative.footer-sliding #Footer,
    .header-rtl.header-creative.footer-stick #Footer.is-sticky {
        padding-left: 0;
        padding-right: 50px;
    }

    .header-rtl.header-open.footer-fixed #Footer,
    .header-rtl.header-open.footer-sliding #Footer,
    .header-rtl.header-creative.footer-stick #Footer.is-sticky {
        padding-right: 250px;
    }

    #Header_creative {
        background-color: #fff;
        position: fixed;
        width: 250px;
        height: 100%;
        left: -200px;
        top: 0;
        z-index: 9002;
        -webkit-box-shadow: 2px 0 4px 2px rgba(0, 0, 0, 0.15);
        box-shadow: 2px 0 4px 2px rgba(0, 0, 0, 0.15);
    }

        #Header_creative .container {
            width: 100%;
        }

        #Header_creative .creative-wrapper {
            opacity: 0;
            margin-right: 50px;
        }

        #Header_creative a.creative-menu-toggle {
            display: block;
            width: 34px;
            height: 34px;
            line-height: 34px;
            font-size: 22px;
            text-align: center;
            position: absolute;
            top: 10px;
            right: 8px;
            border-radius: 3px;
        }

    .admin-bar #Header_creative a.creative-menu-toggle {
        top: 42px;
    }

    #Header_creative #Top_bar {
        position: static;
        width: 100%;
    }

        #Header_creative #Top_bar .top_bar_left {
            width: 100% !important;
            float: none;
        }

        #Header_creative #Top_bar .logo {
            float: none;
            text-align: center;
            margin: 15px 0;
        }

        #Header_creative #Top_bar #menu {
            background-color: transparent;
        }

        #Header_creative #Top_bar .menu_wrapper {
            float: none;
            margin: 0 0 30px;
        }

        #Header_creative #Top_bar .menu > li {
            width: 100%;
            float: none;
            position: relative;
        }

            #Header_creative #Top_bar .menu > li > a {
                padding: 0;
                text-align: center;
            }

                #Header_creative #Top_bar .menu > li > a:after {
                    display: none;
                }

                #Header_creative #Top_bar .menu > li > a span {
                    border-right: 0;
                    border-bottom-width: 1px;
                    line-height: 38px;
                }

        #Header_creative #Top_bar .menu li ul {
            left: 100%;
            right: auto;
            top: 0;
            box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.03);
            -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.03);
        }

        #Header_creative #Top_bar .menu > li > ul.mfn-megamenu {
            margin: 0;
            width: 700px !important;
        }

            #Header_creative
            #Top_bar
            .menu > li > ul.mfn-megamenu > li > ul {
                left: 0;
            }

        #Header_creative #Top_bar .menu li ul li a {
            padding-top: 9px;
            padding-bottom: 8px;
        }

        #Header_creative #Top_bar .menu li ul li ul {
            top: 0;
        }

        #Header_creative #Top_bar .menu > li > a span.description {
            display: block;
            font-size: 13px;
            line-height: 28px !important;
            clear: both;
        }

    .menuo-arrows #Top_bar .menu > li.submenu > a > span:after {
        content: unset !important;
    }

    #Header_creative #Top_bar .top_bar_right {
        width: 100% !important;
        float: left;
        height: auto;
        margin-bottom: 35px;
        text-align: center;
        padding: 0 20px;
        top: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        #Header_creative #Top_bar .top_bar_right:before {
            content: none;
        }

        #Header_creative
        #Top_bar
        .top_bar_right
        .top_bar_right_wrapper {
            flex-wrap: wrap;
            justify-content: center;
        }

        #Header_creative #Top_bar .top_bar_right .top-bar-right-icon,
        #Header_creative #Top_bar .top_bar_right .wpml-languages,
        #Header_creative #Top_bar .top_bar_right .top-bar-right-button,
        #Header_creative #Top_bar .top_bar_right .top-bar-right-input {
            min-height: 30px;
            margin: 5px;
        }

    #Header_creative #Top_bar .search_wrapper {
        left: 100%;
        top: auto;
    }

    #Header_creative #Top_bar .banner_wrapper {
        display: block;
        text-align: center;
    }

        #Header_creative #Top_bar .banner_wrapper img {
            max-width: 100%;
            height: auto;
            display: inline-block;
        }

    #Header_creative #Action_bar {
        display: none;
        position: absolute;
        bottom: 0;
        top: auto;
        clear: both;
        padding: 0 20px;
        box-sizing: border-box;
    }

        #Header_creative #Action_bar .contact_details {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

            #Header_creative #Action_bar .contact_details li {
                padding: 0;
            }

        #Header_creative #Action_bar .social {
            float: none;
            text-align: center;
            padding: 5px 0 15px;
        }

            #Header_creative #Action_bar .social li {
                margin-bottom: 2px;
            }

        #Header_creative #Action_bar .social-menu {
            float: none;
            text-align: center;
        }

            #Header_creative #Action_bar .social-menu li {
                border-color: rgba(0, 0, 0, 0.1);
            }

    #Header_creative .social li a {
        color: rgba(0, 0, 0, 0.5);
    }

        #Header_creative .social li a:hover {
            color: #000;
        }

    #Header_creative .creative-social {
        position: absolute;
        bottom: 10px;
        right: 0;
        width: 50px;
    }

        #Header_creative .creative-social li {
            display: block;
            float: none;
            width: 100%;
            text-align: center;
            margin-bottom: 5px;
        }

    .header-creative .fixed-nav.fixed-nav-prev {
        margin-left: 50px;
    }

    .header-creative.header-open .fixed-nav.fixed-nav-prev {
        margin-left: 250px;
    }

    .menuo-last #Header_creative #Top_bar .menu li.last ul {
        top: auto;
        bottom: 0;
    }

    .header-open #Header_creative {
        left: 0;
    }

        .header-open #Header_creative .creative-wrapper {
            opacity: 1;
            margin: 0 !important;
        }

        .header-open #Header_creative .creative-menu-toggle,
        .header-open #Header_creative .creative-social {
            display: none;
        }

        .header-open #Header_creative #Action_bar {
            display: block;
        }

    body.header-rtl.header-creative {
        padding-left: 0;
        padding-right: 50px;
    }

    .header-rtl #Header_creative {
        left: auto;
        right: -200px;
    }

        .header-rtl #Header_creative .creative-wrapper {
            margin-left: 50px;
            margin-right: 0;
        }

        .header-rtl #Header_creative a.creative-menu-toggle {
            left: 8px;
            right: auto;
        }

        .header-rtl #Header_creative .creative-social {
            left: 0;
            right: auto;
        }

    .header-rtl #Footer #back_to_top.sticky {
        right: 125px;
    }

    .header-rtl #popup_contact {
        right: 70px;
    }

    .header-rtl #Header_creative #Top_bar .menu li ul {
        left: auto;
        right: 100%;
    }

    .header-rtl #Header_creative #Top_bar .search_wrapper {
        left: auto;
        right: 100%;
    }

    .header-rtl .fixed-nav.fixed-nav-prev {
        margin-left: 0 !important;
    }

    .header-rtl .fixed-nav.fixed-nav-next {
        margin-right: 50px;
    }

    body.header-rtl.header-creative.header-open {
        padding-left: 0;
        padding-right: 250px !important;
    }

    .header-rtl.header-open #Header_creative {
        left: auto;
        right: 0;
    }

    .header-rtl.header-open #Footer #back_to_top.sticky {
        right: 325px;
    }

    .header-rtl.header-open #popup_contact {
        right: 270px;
    }

    .header-rtl.header-open .fixed-nav.fixed-nav-next {
        margin-right: 250px;
    }

    #Header_creative.active {
        left: -1px;
    }

    .header-rtl #Header_creative.active {
        left: auto;
        right: -1px;
    }

    #Header_creative.active .creative-wrapper {
        opacity: 1;
        margin: 0;
    }

    .header-creative .vc_row[data-vc-full-width] {
        padding-left: 50px;
    }

    .header-creative.header-open .vc_row[data-vc-full-width] {
        padding-left: 250px;
    }

    .header-open .vc_parallax .vc_parallax-inner {
        left: auto;
        width: calc(100% - 250px);
    }

    .header-open.header-rtl .vc_parallax .vc_parallax-inner {
        left: 0;
        right: auto;
    }

    #Header_creative.scroll {
        height: 100%;
        overflow-y: auto;
    }

        #Header_creative.scroll:not(.dropdown) .menu li ul {
            display: none !important;
        }

        #Header_creative.scroll #Action_bar {
            position: static;
        }

    #Header_creative.dropdown {
        outline: none;
    }

        #Header_creative.dropdown #Top_bar .menu_wrapper {
            float: left;
            width: 100%;
        }

        #Header_creative.dropdown #Top_bar #menu ul li {
            position: relative;
            float: left;
        }

            #Header_creative.dropdown
            #Top_bar
            #menu
            ul
            li
            a:not(.menu-toggle):after {
                display: none;
            }

            #Header_creative.dropdown #Top_bar #menu ul li a span {
                line-height: 38px;
                padding: 0;
            }

            #Header_creative.dropdown
            #Top_bar
            #menu
            ul
            li.submenu
            .menu-toggle {
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                width: 38px;
                height: 38px;
                line-height: 38px;
                font-size: 26px;
                font-weight: 300;
                text-align: center;
                cursor: pointer;
                color: #444;
                opacity: 0.33;
                z-index: 203;
            }

                #Header_creative.dropdown
                #Top_bar
                #menu
                ul
                li.submenu
                .menu-toggle:after {
                    content: "+";
                    position: static;
                }

            #Header_creative.dropdown
            #Top_bar
            #menu
            ul
            li.hover > .menu-toggle:after {
                content: "-";
            }

        #Header_creative.dropdown
        #Top_bar
        #menu
        ul.sub-menu
        li:not(:last-of-type)
        a {
            border-bottom: 0;
        }

        #Header_creative.dropdown
        #Top_bar
        #menu
        ul.mfn-megamenu
        li
        .menu-toggle {
            display: none;
        }

        #Header_creative.dropdown #Top_bar #menu ul li ul {
            position: relative !important;
            left: 0 !important;
            top: 0;
            padding: 0;
            margin-left: 0 !important;
            width: auto !important;
            background-image: none;
        }

            #Header_creative.dropdown #Top_bar #menu ul li ul li {
                width: 100% !important;
            }

                #Header_creative.dropdown #Top_bar #menu ul li ul li a {
                    padding: 0 10px;
                    text-align: center;
                }

                    #Header_creative.dropdown
                    #Top_bar
                    #menu
                    ul
                    li
                    ul
                    li
                    a
                    .menu-arrow {
                        display: none;
                    }

                    #Header_creative.dropdown #Top_bar #menu ul li ul li a span {
                        padding: 0;
                    }

                        #Header_creative.dropdown
                        #Top_bar
                        #menu
                        ul
                        li
                        ul
                        li
                        a
                        span:after {
                            display: none !important;
                        }

        #Header_creative.dropdown
        #Top_bar
        .menu > li > ul.mfn-megamenu
        a.mfn-megamenu-title {
            text-transform: uppercase;
            font-weight: 400;
        }

        #Header_creative.dropdown
        #Top_bar
        .menu > li > ul.mfn-megamenu > li > ul {
            display: block !important;
            position: inherit;
            left: auto;
            top: auto;
        }

        #Header_creative.dropdown #Top_bar #menu ul li ul li ul {
            border-left: 0 !important;
            padding: 0;
            top: 0;
        }

    #Header_creative {
        transition: left 0.5s ease-in-out, right 0.5s ease-in-out;
    }

        #Header_creative .creative-wrapper {
            transition: opacity 0.5s ease-in-out, margin 0s ease-in-out 0.5s;
        }

        #Header_creative.active .creative-wrapper {
            transition: opacity 0.5s ease-in-out, margin 0s ease-in-out;
        }
}

@media only screen and (min-width: 1240px) {
    #Top_bar.is-sticky {
        position: fixed !important;
        width: 100%;
        left: 0;
        top: -60px;
        height: 60px;
        z-index: 701;
        background: #fff;
        opacity: 0.97;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    }

    .layout-boxed.header-boxed #Top_bar.is-sticky {
        max-width: 1240px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #Top_bar.is-sticky .top_bar_left,
    #Top_bar.is-sticky .top_bar_right,
    #Top_bar.is-sticky .top_bar_right:before {
        background: none;
        box-shadow: unset;
    }

    #Top_bar.is-sticky .logo {
        width: auto;
        margin: 0 30px 0 20px;
        padding: 0;
    }

    #Top_bar.is-sticky #logo,
    #Top_bar.is-sticky .custom-logo-link {
        padding: 5px 0 !important;
        height: 50px !important;
        line-height: 50px !important;
    }

    .logo-no-sticky-padding #Top_bar.is-sticky #logo {
        height: 60px !important;
        line-height: 60px !important;
    }

    #Top_bar.is-sticky #logo img.logo-main {
        display: none;
    }

    #Top_bar.is-sticky #logo img.logo-sticky {
        display: inline;
        max-height: 35px;
    }

    .logo-sticky-width-auto
    #Top_bar.is-sticky
    #logo
    img.logo-sticky {
        width: auto;
    }

    #Top_bar.is-sticky .menu_wrapper {
        clear: none;
    }

        #Top_bar.is-sticky .menu_wrapper .menu > li > a {
            padding: 15px 0;
        }

    #Top_bar.is-sticky .menu > li > a,
    #Top_bar.is-sticky .menu > li > a span {
        line-height: 30px;
    }

        #Top_bar.is-sticky .menu > li > a:after {
            top: auto;
            bottom: -4px;
        }

        #Top_bar.is-sticky .menu > li > a span.description {
            display: none;
        }

    #Top_bar.is-sticky .secondary_menu_wrapper,
    #Top_bar.is-sticky .banner_wrapper {
        display: none;
    }

    .header-overlay #Top_bar.is-sticky {
        display: none;
    }

    .sticky-dark #Top_bar.is-sticky,
    .sticky-dark #Top_bar.is-sticky #menu {
        background: rgba(0, 0, 0, 0.8);
    }

        .sticky-dark
        #Top_bar.is-sticky
        .menu > li:not(.current-menu-item) > a {
            color: #fff;
        }

        .sticky-dark
        #Top_bar.is-sticky
        .top_bar_right
        .top-bar-right-icon {
            color: rgba(255, 255, 255, 0.9);
        }

            .sticky-dark
            #Top_bar.is-sticky
            .top_bar_right
            .top-bar-right-icon
            svg
            .path {
                stroke: rgba(255, 255, 255, 0.9);
            }

        .sticky-dark #Top_bar.is-sticky .wpml-languages a.active,
        .sticky-dark
        #Top_bar.is-sticky
        .wpml-languages
        ul.wpml-lang-dropdown {
            background: rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.1);
        }

    .sticky-white #Top_bar.is-sticky,
    .sticky-white #Top_bar.is-sticky #menu {
        background: rgba(255, 255, 255, 0.8);
    }

        .sticky-white
        #Top_bar.is-sticky
        .menu > li:not(.current-menu-item) > a {
            color: #222;
        }

        .sticky-white
        #Top_bar.is-sticky
        .top_bar_right
        .top-bar-right-icon {
            color: rgba(0, 0, 0, 0.8);
        }

            .sticky-white
            #Top_bar.is-sticky
            .top_bar_right
            .top-bar-right-icon
            svg
            .path {
                stroke: rgba(0, 0, 0, 0.8);
            }

        .sticky-white #Top_bar.is-sticky .wpml-languages a.active,
        .sticky-white
        #Top_bar.is-sticky
        .wpml-languages
        ul.wpml-lang-dropdown {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 0, 0, 0.1);
        }
}

@media only screen and (min-width: 768px) and (max-width: 1240px) {
    .header_placeholder {
        height: 0 !important;
    }
}

@media only screen and (max-width: 1239px) {
    #Top_bar #menu {
        display: none;
        height: auto;
        width: 300px;
        bottom: auto;
        top: 100%;
        right: 1px;
        position: absolute;
        margin: 0;
    }

    #Top_bar a.responsive-menu-toggle {
        display: block;
    }

    #Top_bar #menu > ul {
        width: 100%;
        float: left;
    }

    #Top_bar #menu ul li {
        width: 100%;
        padding-bottom: 0;
        border-right: 0;
        position: relative;
    }

        #Top_bar #menu ul li a {
            padding: 0 25px;
            margin: 0;
            display: block;
            height: auto;
            line-height: normal;
            border: none;
        }

            #Top_bar #menu ul li a:not(.menu-toggle):after {
                display: none;
            }

            #Top_bar #menu ul li a span {
                border: none;
                line-height: 44px;
                display: inline;
                padding: 0;
            }

                #Top_bar #menu ul li a span.description {
                    margin: 0 0 0 5px;
                }

        #Top_bar #menu ul li.submenu .menu-toggle {
            display: block;
            position: absolute;
            right: 15px;
            top: 0;
            width: 44px;
            height: 44px;
            line-height: 44px;
            font-size: 30px;
            font-weight: 300;
            text-align: center;
            cursor: pointer;
            color: #444;
            opacity: 0.33;
            transform: unset;
        }

            #Top_bar #menu ul li.submenu .menu-toggle:after {
                content: "+";
                position: static;
            }

        #Top_bar #menu ul li.hover > .menu-toggle:after {
            content: "-";
        }

        #Top_bar #menu ul li.hover a {
            border-bottom: 0;
        }

        #Top_bar #menu ul li a span:after {
            display: none !important;
        }

    #Top_bar #menu ul.mfn-megamenu li .menu-toggle {
        display: none;
    }

    #Top_bar #menu ul li ul {
        position: relative !important;
        left: 0 !important;
        top: 0;
        padding: 0;
        margin-left: 0 !important;
        width: auto !important;
        background-image: none !important;
        box-shadow: 0 0 0 0 transparent !important;
        -webkit-box-shadow: 0 0 0 0 transparent !important;
    }

        #Top_bar #menu ul li ul li {
            width: 100% !important;
        }

            #Top_bar #menu ul li ul li a {
                padding: 0 20px 0 35px;
            }

                #Top_bar #menu ul li ul li a .menu-arrow {
                    display: none;
                }

                #Top_bar #menu ul li ul li a span {
                    padding: 0;
                }

                    #Top_bar #menu ul li ul li a span:after {
                        display: none !important;
                    }

    #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title {
        text-transform: uppercase;
        font-weight: 400;
    }

    #Top_bar .menu > li > ul.mfn-megamenu > li > ul {
        display: block !important;
        position: inherit;
        left: auto;
        top: auto;
    }

    #Top_bar #menu ul li ul li ul {
        border-left: 0 !important;
        padding: 0;
        top: 0;
    }

        #Top_bar #menu ul li ul li ul li a {
            padding: 0 20px 0 45px;
        }

    #Header #menu > ul > li.current-menu-item > a,
    #Header #menu > ul > li.current_page_item > a,
    #Header #menu > ul > li.current-menu-parent > a,
    #Header #menu > ul > li.current-page-parent > a,
    #Header #menu > ul > li.current-menu-ancestor > a,
    #Header #menu > ul > li.current_page_ancestor > a {
        background: rgba(0, 0, 0, 0.02);
    }

    .rtl #Top_bar #menu {
        left: 1px;
        right: auto;
    }

    .rtl #Top_bar a.responsive-menu-toggle {
        left: 20px;
        right: auto;
    }

    .rtl #Top_bar #menu ul li.submenu .menu-toggle {
        left: 15px;
        right: auto;
        border-left: none;
        border-right: 1px solid #eee;
        transform: unset;
    }

    .rtl #Top_bar #menu ul li ul {
        left: auto !important;
        right: 0 !important;
    }

        .rtl #Top_bar #menu ul li ul li a {
            padding: 0 30px 0 20px;
        }

        .rtl #Top_bar #menu ul li ul li ul li a {
            padding: 0 40px 0 20px;
        }

    .header-stack .menu_wrapper a.responsive-menu-toggle {
        position: static !important;
        margin: 11px 0 !important;
    }

    .header-stack .menu_wrapper #menu {
        left: 0;
        right: auto;
    }

    .rtl.header-stack #Top_bar #menu {
        left: auto;
        right: 0;
    }

    .admin-bar #Header_creative {
        top: 32px;
    }

    .header-creative.layout-boxed {
        padding-top: 85px;
    }

    .header-creative.layout-full-width #Wrapper {
        padding-top: 60px;
    }

    #Header_creative {
        position: fixed;
        width: 100%;
        left: 0 !important;
        top: 0;
        z-index: 1001;
    }

        #Header_creative .creative-wrapper {
            display: block !important;
            opacity: 1 !important;
        }

        #Header_creative .creative-menu-toggle,
        #Header_creative .creative-social {
            display: none !important;
            opacity: 1 !important;
        }

        #Header_creative #Top_bar {
            position: static;
            width: 100%;
        }

            #Header_creative #Top_bar .one {
                display: flex;
            }

            #Header_creative #Top_bar #logo,
            #Header_creative #Top_bar .custom-logo-link {
                height: 50px;
                line-height: 50px;
                padding: 5px 0;
            }

                #Header_creative #Top_bar #logo img.logo-sticky {
                    max-height: 40px !important;
                }

        #Header_creative #logo img.logo-main {
            display: none;
        }

        #Header_creative #logo img.logo-sticky {
            display: inline-block;
        }

    .logo-no-sticky-padding #Header_creative #Top_bar #logo {
        height: 60px;
        line-height: 60px;
        padding: 0;
    }

        .logo-no-sticky-padding
        #Header_creative
        #Top_bar
        #logo
        img.logo-sticky {
            max-height: 60px !important;
        }

    #Header_creative #Action_bar {
        display: none;
    }

    #Header_creative #Top_bar .top_bar_right:before {
        content: none;
    }

    #Header_creative.scroll {
        overflow: visible !important;
    }
}

body {
    --mfn-clients-tiles-hover: #0089f7;
    --mfn-icon-box-icon: #0089f7;
    --mfn-sliding-box-bg: #0089f7;
    --mfn-woo-body-color: #697074;
    --mfn-woo-heading-color: #697074;
    --mfn-woo-themecolor: #0089f7;
    --mfn-woo-bg-themecolor: #0089f7;
    --mfn-woo-border-themecolor: #0089f7;
}

#Header_wrapper,
#Intro {
    background-color: #1369ad;
}

#Subheader {
    background-color: rgba(19, 105, 173, 1);
}

.header-classic #Action_bar,
.header-fixed #Action_bar,
.header-plain #Action_bar,
.header-split #Action_bar,
.header-shop #Action_bar,
.header-shop-split #Action_bar,
.header-stack #Action_bar {
    background-color: #1369ad;
}

#Sliding-top {
    background-color: #545454;
}

    #Sliding-top a.sliding-top-control {
        border-right-color: #545454;
    }

    #Sliding-top.st-center a.sliding-top-control,
    #Sliding-top.st-left a.sliding-top-control {
        border-top-color: #545454;
    }

#Footer {
    background-color: #1369ad;
}

.grid .post-item,
.masonry:not(.tiles) .post-item,
.photo2 .post .post-desc-wrapper {
    background-color: transparent;
}

.portfolio_group .portfolio-item .desc {
    background-color: transparent;
}

.woocommerce ul.products li.product,
.shop_slider .shop_slider_ul li .item_wrapper .desc {
    background-color: transparent;
}

body,
ul.timeline_items,
.icon_box a .desc,
.icon_box a:hover .desc,
.feature_list ul li a,
.list_item a,
.list_item a:hover,
.widget_recent_entries ul li a,
.flat_box a,
.flat_box a:hover,
.story_box .desc,
.content_slider.carousel ul li a .title,
.content_slider.flat.description ul li .desc,
.content_slider.flat.description ul li a .desc,
.post-nav.minimal a i {
    color: #697074;
}

.post-nav.minimal a svg {
    fill: #697074;
}

.themecolor,
.opening_hours .opening_hours_wrapper li span,
.fancy_heading_icon .icon_top,
.fancy_heading_arrows .icon-right-dir,
.fancy_heading_arrows .icon-left-dir,
.fancy_heading_line .title,
.button-love a.mfn-love,
.format-link .post-title .icon-link,
.pager-single > span,
.pager-single a:hover,
.widget_meta ul,
.widget_pages ul,
.widget_rss ul,
.widget_mfn_recent_comments ul li:after,
.widget_archive ul,
.widget_recent_comments ul li:after,
.widget_nav_menu ul,
.woocommerce ul.products li.product .price,
.shop_slider .shop_slider_ul li .item_wrapper .price,
.woocommerce-page ul.products li.product .price,
.widget_price_filter .price_label .from,
.widget_price_filter .price_label .to,
.woocommerce ul.product_list_widget li .quantity .amount,
.woocommerce .product div.entry-summary .price,
.woocommerce .product .woocommerce-variation-price .price,
.woocommerce .star-rating span,
#Error_404 .error_pic i,
.style-simple #Filters .filters_wrapper ul li a:hover,
.style-simple #Filters .filters_wrapper ul li.current-cat a,
.style-simple .quick_fact .title,
.mfn-cart-holder
.mfn-ch-content
.mfn-ch-product
.woocommerce-Price-amount,
.woocommerce .comment-form-rating p.stars a:before,
.wishlist .wishlist-row .price,
.search-results .search-item .post-product-price,
.progress_icons.transparent .progress_icon.themebg {
    color: #0089f7;
}

.mfn-wish-button.loved:not(.link) .path {
    fill: #0089f7;
    stroke: #0089f7;
}

.themebg,
#comments .commentlist > li .reply a.comment-reply-link,
#Filters .filters_wrapper ul li a:hover,
#Filters .filters_wrapper ul li.current-cat a,
.fixed-nav .arrow,
.offer_thumb .slider_pagination a:before,
.offer_thumb .slider_pagination a.selected:after,
.pager .pages a:hover,
.pager .pages a.active,
.pager .pages span.page-numbers.current,
.pager-single span:after,
.portfolio_group.exposure .portfolio-item .desc-inner .line,
.Recent_posts ul li .desc:after,
.Recent_posts ul li .photo .c,
.slider_pagination a.selected,
.slider_pagination .slick-active a,
.slider_pagination a.selected:after,
.slider_pagination .slick-active a:after,
.testimonials_slider .slider_images,
.testimonials_slider .slider_images a:after,
.testimonials_slider .slider_images:before,
#Top_bar .header-cart-count,
#Top_bar .header-wishlist-count,
.mfn-footer-stickymenu ul li a .header-wishlist-count,
.mfn-footer-stickymenu ul li a .header-cart-count,
.widget_categories ul,
.widget_mfn_menu ul li a:hover,
.widget_mfn_menu
ul
li.current-menu-item:not(.current-menu-ancestor) > a,
.widget_mfn_menu
ul
li.current_page_item:not(.current_page_ancestor) > a,
.widget_product_categories ul,
.widget_recent_entries ul li:after,
.woocommerce-account table.my_account_orders .order-number a,
.woocommerce-MyAccount-navigation ul li.is-active a,
.style-simple .accordion .question:after,
.style-simple .faq .question:after,
.style-simple .icon_box .desc_wrapper .title:before,
.style-simple #Filters .filters_wrapper ul li a:after,
.style-simple .trailer_box:hover .desc,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.round .bullet.selected:after,
.tparrows.default,
.tp-bullets.tp-thumbs .bullet.selected:after {
    background-color: #0089f7;
}

.Latest_news ul li .photo,
.Recent_posts.blog_news ul li .photo,
.style-simple .opening_hours .opening_hours_wrapper li label,
.style-simple .timeline_items li:hover h3,
.style-simple .timeline_items li:nth-child(even):hover h3,
.style-simple .timeline_items li:hover .desc,
.style-simple .timeline_items li:nth-child(even):hover,
.style-simple .offer_thumb .slider_pagination a.selected {
    border-color: #0089f7;
}

a {
    color: #475249;
}

    a:hover {
        color: #81969c;
    }

*::-moz-selection {
    background-color: #0089f7;
    color: white;
}

*::selection {
    background-color: #0089f7;
    color: white;
}

.blockquote p.author span,
.counter .desc_wrapper .title,
.article_box .desc_wrapper p,
.team .desc_wrapper p.subtitle,
.pricing-box .plan-header p.subtitle,
.pricing-box .plan-header .price sup.period,
.chart_box p,
.fancy_heading .inside,
.fancy_heading_line .slogan,
.post-meta,
.post-meta a,
.post-footer,
.post-footer a span.label,
.pager .pages a,
.button-love a .label,
.pager-single a,
#comments .commentlist > li .comment-author .says,
.fixed-nav .desc .date,
.filters_buttons li.label,
.Recent_posts ul li a .desc .date,
.widget_recent_entries ul li .post-date,
.tp_recent_tweets .twitter_time,
.widget_price_filter .price_label,
.shop-filters .woocommerce-result-count,
.woocommerce ul.product_list_widget li .quantity,
.widget_shopping_cart ul.product_list_widget li dl,
.product_meta .posted_in,
.woocommerce .shop_table .product-name .variation > dd,
.shipping-calculator-button:after,
.shop_slider .shop_slider_ul li .item_wrapper .price del,
.woocommerce
.product
.entry-summary
.woocommerce-product-rating
.woocommerce-review-link,
.woocommerce
.product.style-default
.entry-summary
.product_meta
.tagged_as,
.woocommerce .tagged_as,
.wishlist .sku_wrapper,
.woocommerce .column_product_rating .woocommerce-review-link,
.woocommerce
#reviews
#comments
ol.commentlist
li
.comment-text
p.meta
.woocommerce-review__verified,
.woocommerce
#reviews
#comments
ol.commentlist
li
.comment-text
p.meta
.woocommerce-review__dash,
.woocommerce
#reviews
#comments
ol.commentlist
li
.comment-text
p.meta
.woocommerce-review__published-date,
.testimonials_slider .testimonials_slider_ul li .author span,
.testimonials_slider .testimonials_slider_ul li .author span a,
.Latest_news ul li .desc_footer,
.share-simple-wrapper .icons a {
    color: #697074;
}

h1,
h1 a,
h1 a:hover,
.text-logo #logo {
    color: #475249;
}

h2,
h2 a,
h2 a:hover {
    color: #475249;
}

h3,
h3 a,
h3 a:hover {
    color: #475249;
}

h4,
h4 a,
h4 a:hover,
.style-simple .sliding_box .desc_wrapper h4 {
    color: #475249;
}

h5,
h5 a,
h5 a:hover {
    color: #475249;
}

h6,
h6 a,
h6 a:hover,
a.content_link .title {
    color: #475249;
}

.woocommerce #customer_login h2 {
    color: #475249;
}

.woocommerce .woocommerce-order-details__title,
.woocommerce .wc-bacs-bank-details-heading,
.woocommerce .woocommerce-customer-details h2,
.woocommerce #respond .comment-reply-title,
.woocommerce
#reviews
#comments
ol.commentlist
li
.comment-text
p.meta
.woocommerce-review__author {
    color: #475249;
}

.dropcap,
.highlight:not(.highlight_image) {
    background-color: #0089f7;
}

.button-default .button_theme,
.button-default button,
.button-default input[type="button"],
.button-default input[type="reset"],
.button-default input[type="submit"],
.button-flat .button_theme,
.button-flat button,
.button-flat input[type="button"],
.button-flat input[type="reset"],
.button-flat input[type="submit"],
.button-round .button_theme,
.button-round button,
.button-round input[type="button"],
.button-round input[type="reset"],
.button-round input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button:not(.default),
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:not(.default):hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #0089f7;
}

.button-stroke .button_theme,
.button-stroke .button_theme .button_icon i,
.button-stroke button,
.button-stroke input[type="submit"],
.button-stroke input[type="reset"],
.button-stroke input[type="button"],
.button-stroke .woocommerce #respond input#submit,
.button-stroke .woocommerce a.button:not(.default),
.button-stroke .woocommerce button.button,
.button-stroke.woocommerce input.button {
    border-color: #0089f7;
    color: #0089f7;
}

    .button-stroke .button_theme:hover,
    .button-stroke button:hover,
    .button-stroke input[type="submit"]:hover,
    .button-stroke input[type="reset"]:hover,
    .button-stroke input[type="button"]:hover {
        background-color: #0089f7;
        color: white;
    }

.button-default .single_add_to_cart_button,
.button-flat .single_add_to_cart_button,
.button-round .single_add_to_cart_button,
.button-default .woocommerce .button:disabled,
.button-flat .woocommerce .button:disabled,
.button-round .woocommerce .button:disabled,
.button-default .woocommerce .button.alt,
.button-flat .woocommerce .button.alt,
.button-round .woocommerce .button.alt {
    background-color: #0089f7;
}

.button-stroke .single_add_to_cart_button:hover,
.button-stroke #place_order:hover {
    background-color: #0089f7;
}

a.mfn-link {
    color: #1369ad;
}

a.mfn-link-2 span,
a:hover.mfn-link-2 span:before,
a.hover.mfn-link-2 span:before,
a.mfn-link-5 span,
a.mfn-link-8:after,
a.mfn-link-8:before {
    background: #1369ad;
}

a:hover.mfn-link {
    color: #697074;
}

a.mfn-link-2 span:before,
a:hover.mfn-link-4:before,
a:hover.mfn-link-4:after,
a.hover.mfn-link-4:before,
a.hover.mfn-link-4:after,
a.mfn-link-5:before,
a.mfn-link-7:after,
a.mfn-link-7:before {
    background: #1369ad;
}

a.mfn-link-6:before {
    border-bottom-color: #1369ad;
}

a.mfn-link svg .path {
    stroke: #697074;
}

.column_column ul,
.column_column ol,
.the_content_wrapper:not(.is-elementor) ul,
.the_content_wrapper:not(.is-elementor) ol {
    color: #697074;
}

hr.hr_color,
.hr_color hr,
.hr_dots span {
    color: #0089f7;
    background: #0089f7;
}

.hr_zigzag i {
    color: #0089f7;
}

.highlight-left:after,
.highlight-right:after {
    background: #0089f7;
}

@media only screen and (max-width: 767px) {
    .highlight-left .wrap:first-child,
    .highlight-right .wrap:last-child {
        background: #0089f7;
    }
}

#Header .top_bar_left,
.header-classic #Top_bar,
.header-plain #Top_bar,
.header-stack #Top_bar,
.header-split #Top_bar,
.header-shop #Top_bar,
.header-shop-split #Top_bar,
.header-fixed #Top_bar,
.header-below #Top_bar,
#Header_creative,
#Top_bar #menu,
.sticky-tb-color #Top_bar.is-sticky {
    background-color: #204e63;
}

#Top_bar .wpml-languages a.active,
#Top_bar .wpml-languages ul.wpml-lang-dropdown {
    background-color: #204e63;
}

#Top_bar .top_bar_right:before {
    background-color: #e3e3e3;
}

#Header .top_bar_right {
    background-color: #f5f5f5;
}

#Top_bar .top_bar_right .top-bar-right-icon,
#Top_bar .top_bar_right .top-bar-right-icon svg .path {
    color: #333333;
    stroke: #333333;
}

#Top_bar .menu > li > a,
#Top_bar #menu ul li.submenu .menu-toggle {
    color: #475249;
}

#Top_bar .menu > li.current-menu-item > a,
#Top_bar .menu > li.current_page_item > a,
#Top_bar .menu > li.current-menu-parent > a,
#Top_bar .menu > li.current-page-parent > a,
#Top_bar .menu > li.current-menu-ancestor > a,
#Top_bar .menu > li.current-page-ancestor > a,
#Top_bar .menu > li.current_page_ancestor > a,
#Top_bar .menu > li.hover > a {
    color: #81969c;
}

#Top_bar .menu > li a:not(.menu-toggle):after {
    background: #81969c;
}

.menuo-arrows
#Top_bar
.menu > li.submenu > a > span:not(.description)::after {
    border-top-color: #475249;
}

#Top_bar
.menu > li.current-menu-item.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current_page_item.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current-menu-parent.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current-page-parent.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current-menu-ancestor.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current-page-ancestor.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.current_page_ancestor.submenu > a > span:not(.description)::after,
#Top_bar
.menu > li.hover.submenu > a > span:not(.description)::after {
    border-top-color: #81969c;
}

.menu-highlight #Top_bar #menu > ul > li.current-menu-item > a,
.menu-highlight #Top_bar #menu > ul > li.current_page_item > a,
.menu-highlight #Top_bar #menu > ul > li.current-menu-parent > a,
.menu-highlight #Top_bar #menu > ul > li.current-page-parent > a,
.menu-highlight #Top_bar #menu > ul > li.current-menu-ancestor > a,
.menu-highlight #Top_bar #menu > ul > li.current-page-ancestor > a,
.menu-highlight #Top_bar #menu > ul > li.current_page_ancestor > a,
.menu-highlight #Top_bar #menu > ul > li.hover > a {
    background: #475249;
}

.menu-arrow-bottom #Top_bar .menu > li > a:after {
    border-bottom-color: #81969c;
}

.menu-arrow-top #Top_bar .menu > li > a:after {
    border-top-color: #81969c;
}

.header-plain #Top_bar .menu > li.current-menu-item > a,
.header-plain #Top_bar .menu > li.current_page_item > a,
.header-plain #Top_bar .menu > li.current-menu-parent > a,
.header-plain #Top_bar .menu > li.current-page-parent > a,
.header-plain #Top_bar .menu > li.current-menu-ancestor > a,
.header-plain #Top_bar .menu > li.current-page-ancestor > a,
.header-plain #Top_bar .menu > li.current_page_ancestor > a,
.header-plain #Top_bar .menu > li.hover > a,
.header-plain #Top_bar .wpml-languages:hover,
.header-plain #Top_bar .wpml-languages ul.wpml-lang-dropdown {
    background: #475249;
    color: #81969c;
}

.header-plain #Top_bar .top_bar_right .top-bar-right-icon:hover {
    background: #475249;
}

.header-plain #Top_bar,
.header-plain #Top_bar .menu > li > a span:not(.description),
.header-plain #Top_bar .top_bar_right .top-bar-right-icon,
.header-plain #Top_bar .top_bar_right .top-bar-right-button,
.header-plain #Top_bar .top_bar_right .top-bar-right-input,
.header-plain #Top_bar .wpml-languages {
    border-color: #f2f2f2;
}

#Top_bar .menu > li ul {
    background-color: #ffffff;
}

    #Top_bar .menu > li ul li a {
        color: #475249;
    }

        #Top_bar .menu > li ul li a:hover,
        #Top_bar .menu > li ul li.hover > a {
            color: #81969c;
        }

.overlay-menu-toggle {
    color: #475249 !important;
    background: transparent;
}

#Overlay {
    background: rgba(0, 137, 247, 0.95);
}

#overlay-menu ul li a,
.header-overlay .overlay-menu-toggle.focus {
    color: #ffffff;
}

#overlay-menu ul li.current-menu-item > a,
#overlay-menu ul li.current_page_item > a,
#overlay-menu ul li.current-menu-parent > a,
#overlay-menu ul li.current-page-parent > a,
#overlay-menu ul li.current-menu-ancestor > a,
#overlay-menu ul li.current-page-ancestor > a,
#overlay-menu ul li.current_page_ancestor > a {
    color: #b1dcfb;
}

#Top_bar .responsive-menu-toggle,
#Header_creative .creative-menu-toggle,
#Header_creative .responsive-menu-toggle {
    color: #475249;
    background: transparent;
}

.mfn-footer-stickymenu {
    background-color: #204e63;
}

    .mfn-footer-stickymenu ul li a,
    .mfn-footer-stickymenu ul li a .path {
        color: #333333;
        stroke: #333333;
    }

#Side_slide {
    background-color: #ffffff;
    border-color: #ffffff;
}

    #Side_slide,
    #Side_slide #menu ul li.submenu .menu-toggle,
    #Side_slide .search-wrapper input.field,
    #Side_slide a:not(.action_button) {
        color: #475249;
    }

        #Side_slide .extras .extras-wrapper a svg .path {
            stroke: #475249;
        }

        #Side_slide #menu ul li.hover > .menu-toggle,
        #Side_slide a.active,
        #Side_slide a:not(.action_button):hover {
            color: #81969c;
        }

        #Side_slide .extras .extras-wrapper a:hover svg .path {
            stroke: #81969c;
        }

        #Side_slide #menu ul li.current-menu-item > a,
        #Side_slide #menu ul li.current_page_item > a,
        #Side_slide #menu ul li.current-menu-parent > a,
        #Side_slide #menu ul li.current-page-parent > a,
        #Side_slide #menu ul li.current-menu-ancestor > a,
        #Side_slide #menu ul li.current-page-ancestor > a,
        #Side_slide #menu ul li.current_page_ancestor > a,
        #Side_slide #menu ul li.hover > a,
        #Side_slide #menu ul li:hover > a {
            color: #81969c;
        }

#Action_bar .contact_details {
    color: #ffffff;
}

    #Action_bar .contact_details a {
        color: #ffffff;
    }

        #Action_bar .contact_details a:hover {
            color: #cccccc;
        }

#Action_bar .social li a,
#Header_creative .social li a,
#Action_bar:not(.creative) .social-menu a {
    color: #ffffff;
}

    #Action_bar .social li a:hover,
    #Header_creative .social li a:hover,
    #Action_bar:not(.creative) .social-menu a:hover {
        color: #cccccc;
    }

#Subheader .title {
    color: #ffffff;
}

#Subheader ul.breadcrumbs li,
#Subheader ul.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.6);
}

.mfn-footer,
.mfn-footer .widget_recent_entries ul li a {
    color: #ffffff;
}

    .mfn-footer a:not(.button, .icon_bar, .mfn-btn, .mfn-option-btn) {
        color: #ffffff;
    }

        .mfn-footer
        a:not(.button, .icon_bar, .mfn-btn, .mfn-option-btn):hover {
            color: #dddddd;
        }

    .mfn-footer h1,
    .mfn-footer h1 a,
    .mfn-footer h1 a:hover,
    .mfn-footer h2,
    .mfn-footer h2 a,
    .mfn-footer h2 a:hover,
    .mfn-footer h3,
    .mfn-footer h3 a,
    .mfn-footer h3 a:hover,
    .mfn-footer h4,
    .mfn-footer h4 a,
    .mfn-footer h4 a:hover,
    .mfn-footer h5,
    .mfn-footer h5 a,
    .mfn-footer h5 a:hover,
    .mfn-footer h6,
    .mfn-footer h6 a,
    .mfn-footer h6 a:hover {
        color: #ffffff;
    }

    .mfn-footer .themecolor,
    .mfn-footer .widget_meta ul,
    .mfn-footer .widget_pages ul,
    .mfn-footer .widget_rss ul,
    .mfn-footer .widget_mfn_recent_comments ul li:after,
    .mfn-footer .widget_archive ul,
    .mfn-footer .widget_recent_comments ul li:after,
    .mfn-footer .widget_nav_menu ul,
    .mfn-footer .widget_price_filter .price_label .from,
    .mfn-footer .widget_price_filter .price_label .to,
    .mfn-footer .star-rating span {
        color: #ffffff;
    }

    .mfn-footer .themebg,
    .mfn-footer .widget_categories ul,
    .mfn-footer .Recent_posts ul li .desc:after,
    .mfn-footer .Recent_posts ul li .photo .c,
    .mfn-footer .widget_recent_entries ul li:after,
    .mfn-footer .widget_mfn_menu ul li a:hover,
    .mfn-footer .widget_product_categories ul {
        background-color: #ffffff;
    }

    .mfn-footer .Recent_posts ul li a .desc .date,
    .mfn-footer .widget_recent_entries ul li .post-date,
    .mfn-footer .tp_recent_tweets .twitter_time,
    .mfn-footer .widget_price_filter .price_label,
    .mfn-footer .shop-filters .woocommerce-result-count,
    .mfn-footer ul.product_list_widget li .quantity,
    .mfn-footer .widget_shopping_cart ul.product_list_widget li dl {
        color: #ffffff;
    }

    .mfn-footer .footer_copy .social li a,
    .mfn-footer .footer_copy .social-menu a {
        color: #ffffff;
    }

        .mfn-footer .footer_copy .social li a:hover,
        .mfn-footer .footer_copy .social-menu a:hover {
            color: #dddddd;
        }

    .mfn-footer .footer_copy {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

#Sliding-top,
#Sliding-top .widget_recent_entries ul li a {
    color: #cccccc;
}

    #Sliding-top a {
        color: #006edf;
    }

        #Sliding-top a:hover {
            color: #0089f7;
        }

    #Sliding-top h1,
    #Sliding-top h1 a,
    #Sliding-top h1 a:hover,
    #Sliding-top h2,
    #Sliding-top h2 a,
    #Sliding-top h2 a:hover,
    #Sliding-top h3,
    #Sliding-top h3 a,
    #Sliding-top h3 a:hover,
    #Sliding-top h4,
    #Sliding-top h4 a,
    #Sliding-top h4 a:hover,
    #Sliding-top h5,
    #Sliding-top h5 a,
    #Sliding-top h5 a:hover,
    #Sliding-top h6,
    #Sliding-top h6 a,
    #Sliding-top h6 a:hover {
        color: #ffffff;
    }

    #Sliding-top .themecolor,
    #Sliding-top .widget_meta ul,
    #Sliding-top .widget_pages ul,
    #Sliding-top .widget_rss ul,
    #Sliding-top .widget_mfn_recent_comments ul li:after,
    #Sliding-top .widget_archive ul,
    #Sliding-top .widget_recent_comments ul li:after,
    #Sliding-top .widget_nav_menu ul,
    #Sliding-top .widget_price_filter .price_label .from,
    #Sliding-top .widget_price_filter .price_label .to,
    #Sliding-top .star-rating span {
        color: #0089f7;
    }

    #Sliding-top .themebg,
    #Sliding-top .widget_categories ul,
    #Sliding-top .Recent_posts ul li .desc:after,
    #Sliding-top .Recent_posts ul li .photo .c,
    #Sliding-top .widget_recent_entries ul li:after,
    #Sliding-top .widget_mfn_menu ul li a:hover,
    #Sliding-top .widget_product_categories ul {
        background-color: #0089f7;
    }

    #Sliding-top .Recent_posts ul li a .desc .date,
    #Sliding-top .widget_recent_entries ul li .post-date,
    #Sliding-top .tp_recent_tweets .twitter_time,
    #Sliding-top .widget_price_filter .price_label,
    #Sliding-top .shop-filters .woocommerce-result-count,
    #Sliding-top ul.product_list_widget li .quantity,
    #Sliding-top .widget_shopping_cart ul.product_list_widget li dl {
        color: #a8a8a8;
    }

blockquote,
blockquote a,
blockquote a:hover {
    color: #444444;
}

.portfolio_group.masonry-hover
.portfolio-item
.masonry-hover-wrapper
.hover-desc,
.masonry.tiles
.post-item
.post-desc-wrapper
.post-desc
.post-title:after,
.masonry.tiles .post-item.no-img,
.masonry.tiles .post-item.format-quote,
.blog-teaser li .desc-wrapper .desc .post-title:after,
.blog-teaser li.no-img,
.blog-teaser li.format-quote {
    background: #ffffff;
}

.image_frame .image_wrapper .image_links a {
    background: #ffffff;
    color: #161922;
    border-color: #ffffff;
}

    .image_frame .image_wrapper .image_links a.loading:after {
        border-color: #161922;
    }

    .image_frame .image_wrapper .image_links a .path {
        stroke: #161922;
    }

    .image_frame
    .image_wrapper
    .image_links
    a.mfn-wish-button.loved
    .path {
        fill: #161922;
        stroke: #161922;
    }

    .image_frame
    .image_wrapper
    .image_links
    a.mfn-wish-button.loved:hover
    .path {
        fill: #0089f7;
        stroke: #0089f7;
    }

    .image_frame .image_wrapper .image_links a:hover {
        background: #ffffff;
        color: #0089f7;
        border-color: #ffffff;
    }

        .image_frame .image_wrapper .image_links a:hover .path {
            stroke: #0089f7;
        }

.image_frame {
    border-color: #f8f8f8;
}

    .image_frame .image_wrapper .mask::after {
        background: rgba(0, 0, 0, 0.15);
    }

.counter .icon_wrapper i {
    color: #0089f7;
}

.quick_fact .number-wrapper .number {
    color: #0089f7;
}

.progress_bars .bars_list li .bar .progress {
    background-color: #0089f7;
}

a:hover.icon_bar {
    color: #0089f7 !important;
}

a.content_link,
a:hover.content_link {
    color: #0089f7;
}

    a.content_link:before {
        border-bottom-color: #0089f7;
    }

    a.content_link:after {
        border-color: #0089f7;
    }

.mcb-item-contact_box-inner,
.mcb-item-info_box-inner,
.column_column .get_in_touch,
.google-map-contact-wrapper {
    background-color: #0089f7;
}

    .google-map-contact-wrapper .get_in_touch:after {
        border-top-color: #0089f7;
    }

.timeline_items li h3:before,
.timeline_items:after,
.timeline .post-item:before {
    border-color: #0089f7;
}

.how_it_works .image_wrapper .number {
    background: #0089f7;
}

.trailer_box .desc .subtitle,
.trailer_box.plain .desc .line {
    background-color: #0089f7;
}

.trailer_box.plain .desc .subtitle {
    color: #0089f7;
}

.icon_box .icon_wrapper,
.icon_box a .icon_wrapper,
.style-simple .icon_box:hover .icon_wrapper {
    color: #0089f7;
}

.icon_box:hover .icon_wrapper:before,
.icon_box a:hover .icon_wrapper:before {
    background-color: #0089f7;
}

.list_item.lists_1 .list_left {
    background-color: #0089f7;
}

.list_item .list_left {
    color: #0089f7;
}

.feature_list ul li .icon i {
    color: #0089f7;
}

.feature_list ul li:hover,
.feature_list ul li:hover a {
    background: #0089f7;
}

.ui-tabs .ui-tabs-nav li a,
.accordion .question > .title,
.faq .question > .title,
table th,
.fake-tabs > ul li a {
    color: #444444;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a,
.accordion .question.active > .title > .acc-icon-plus,
.accordion .question.active > .title > .acc-icon-minus,
.accordion .question.active > .title,
.faq .question.active > .title > .acc-icon-plus,
.faq .question.active > .title,
.fake-tabs > ul li.active a {
    color: #0089f7;
}

    .ui-tabs .ui-tabs-nav li.ui-state-active a:after,
    .fake-tabs > ul li a:after,
    .fake-tabs > ul li a .number {
        background: #0089f7;
    }

body.table-hover:not(.woocommerce-page) table tr:hover td {
    background: #0089f7;
}

.pricing-box .plan-header .price sup.currency,
.pricing-box .plan-header .price > span {
    color: #0089f7;
}

.pricing-box .plan-inside ul li .yes {
    background: #0089f7;
}

.pricing-box-box.pricing-box-featured {
    background: #0089f7;
}

.alert_warning {
    background: #fef8ea;
}

    .alert_warning,
    .alert_warning a,
    .alert_warning a:hover,
    .alert_warning a.close .icon {
        color: #8a5b20;
    }

        .alert_warning .path {
            stroke: #8a5b20;
        }

.alert_error {
    background: #fae9e8;
}

    .alert_error,
    .alert_error a,
    .alert_error a:hover,
    .alert_error a.close .icon {
        color: #962317;
    }

        .alert_error .path {
            stroke: #962317;
        }

.alert_info {
    background: #efefef;
}

    .alert_info,
    .alert_info a,
    .alert_info a:hover,
    .alert_info a.close .icon {
        color: #57575b;
    }

        .alert_info .path {
            stroke: #57575b;
        }

.alert_success {
    background: #eaf8ef;
}

    .alert_success,
    .alert_success a,
    .alert_success a:hover,
    .alert_success a.close .icon {
        color: #3a8b5b;
    }

        .alert_success .path {
            stroke: #3a8b5b;
        }

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea,
.woocommerce .quantity input.qty,
.wp-block-search input[type="search"],
.dark input[type="email"],
.dark input[type="password"],
.dark input[type="tel"],
.dark input[type="text"],
.dark select,
.dark textarea {
    color: #626262;
    background-color: rgba(255, 255, 255, 1);
    border-color: #ebebeb;
}

.wc-block-price-filter__controls input {
    border-color: #ebebeb !important;
}

::-webkit-input-placeholder {
    color: #929292;
}

::-moz-placeholder {
    color: #929292;
}

:-ms-input-placeholder {
    color: #929292;
}

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="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    color: #0089f7;
    background-color: rgba(233, 245, 252, 1);
    border-color: #d5e5ee;
}

.wc-block-price-filter__controls input:focus {
    border-color: #d5e5ee !important;
}

select:focus {
    background-color: #e9f5fc !important;
}

:focus::-webkit-input-placeholder {
    color: #929292;
}

:focus::-moz-placeholder {
    color: #929292;
}

.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 1);
    border-color: #ebebeb;
}

.select2-dropdown {
    background-color: #ffffff;
    border-color: #ebebeb;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    color: #626262;
}

.select2-container--default.select2-container--open
.select2-selection--single {
    border-color: #ebebeb;
}

.select2-container--default
.select2-search--dropdown
.select2-search__field {
    color: #626262;
    background-color: rgba(255, 255, 255, 1);
    border-color: #ebebeb;
}

    .select2-container--default
    .select2-search--dropdown
    .select2-search__field:focus {
        color: #0089f7;
        background-color: rgba(233, 245, 252, 1) !important;
        border-color: #d5e5ee;
    }

.select2-container--default
.select2-results__option[data-selected="true"],
.select2-container--default
.select2-results__option--highlighted[data-selected] {
    background-color: #0089f7;
    color: white;
}

.woocommerce span.onsale,
.shop_slider .shop_slider_ul li .item_wrapper span.onsale {
    background-color: #0089f7;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    border-color: #0089f7 !important;
}

.woocommerce
div.product
div.images
.woocommerce-product-gallery__wrapper
.zoomImg {
    background-color: #ffffff;
}

.mfn-wish-button .path {
    stroke: rgba(0, 0, 0, 0.15);
}

.mfn-wish-button:hover .path {
    stroke: rgba(0, 0, 0, 0.3);
}

.mfn-wish-button.loved:not(.link) .path {
    stroke: rgba(0, 0, 0, 0.3);
    fill: rgba(0, 0, 0, 0.3);
}

.woocommerce
div.product
div.images
.woocommerce-product-gallery__trigger,
.woocommerce div.product div.images .mfn-wish-button,
.woocommerce
.mfn-product-gallery-grid
.woocommerce-product-gallery__trigger,
.woocommerce .mfn-product-gallery-grid .mfn-wish-button {
    background-color: #ffffff;
}

    .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__trigger:hover,
    .woocommerce div.product div.images .mfn-wish-button:hover,
    .woocommerce
    .mfn-product-gallery-grid
    .woocommerce-product-gallery__trigger:hover,
    .woocommerce .mfn-product-gallery-grid .mfn-wish-button:hover {
        background-color: #ffffff;
    }

    .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__trigger:before,
    .woocommerce
    .mfn-product-gallery-grid
    .woocommerce-product-gallery__trigger:before {
        border-color: #161922;
    }

    .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__trigger:after,
    .woocommerce
    .mfn-product-gallery-grid
    .woocommerce-product-gallery__trigger:after {
        background-color: #161922;
    }

    .woocommerce div.product div.images .mfn-wish-button path,
    .woocommerce .mfn-product-gallery-grid .mfn-wish-button path {
        stroke: #161922;
    }

    .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__trigger:hover:before,
    .woocommerce
    .mfn-product-gallery-grid
    .woocommerce-product-gallery__trigger:hover:before {
        border-color: #0089f7;
    }

    .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__trigger:hover:after,
    .woocommerce
    .mfn-product-gallery-grid
    .woocommerce-product-gallery__trigger:hover:after {
        background-color: #0089f7;
    }

    .woocommerce div.product div.images .mfn-wish-button:hover path,
    .woocommerce .mfn-product-gallery-grid .mfn-wish-button:hover path {
        stroke: #0089f7;
    }

    .woocommerce div.product div.images .mfn-wish-button.loved path,
    .woocommerce .mfn-product-gallery-grid .mfn-wish-button.loved path {
        stroke: #0089f7;
        fill: #0089f7;
    }

#mfn-gdpr {
    background-color: #eef2f5;
    border-radius: 5px;
    box-shadow: 0 15px 30px 0 rgba(1, 7, 39, 0.13);
}

    #mfn-gdpr .mfn-gdpr-content,
    #mfn-gdpr .mfn-gdpr-content h1,
    #mfn-gdpr .mfn-gdpr-content h2,
    #mfn-gdpr .mfn-gdpr-content h3,
    #mfn-gdpr .mfn-gdpr-content h4,
    #mfn-gdpr .mfn-gdpr-content h5,
    #mfn-gdpr .mfn-gdpr-content h6,
    #mfn-gdpr .mfn-gdpr-content ol,
    #mfn-gdpr .mfn-gdpr-content ul {
        color: #626262;
    }

        #mfn-gdpr .mfn-gdpr-content a,
        #mfn-gdpr a.mfn-gdpr-readmore {
            color: #161922;
        }

            #mfn-gdpr .mfn-gdpr-content a:hover,
            #mfn-gdpr a.mfn-gdpr-readmore:hover {
                color: #0089f7;
            }

    #mfn-gdpr .mfn-gdpr-button {
        background-color: #006edf;
        color: #ffffff;
        border-color: transparent;
    }

        #mfn-gdpr .mfn-gdpr-button:hover {
            background-color: #0089f7;
            color: #ffffff;
            border-color: transparent;
        }

@media only screen and (min-width: 768px) {
    .header-semi #Top_bar:not(.is-sticky) {
        background-color: rgba(32, 78, 99, 0.8);
    }
}

@media only screen and (max-width: 767px) {
    #Top_bar {
        background-color: #204e63 !important;
    }

    #Action_bar {
        background-color: #1369ad !important;
    }

        #Action_bar .contact_details {
            color: #ffffff;
        }

            #Action_bar .contact_details a {
                color: #ffffff;
            }

                #Action_bar .contact_details a:hover {
                    color: #cccccc;
                }

        #Action_bar .social li a,
        #Action_bar .social-menu a {
            color: #ffffff !important;
        }

            #Action_bar .social li a:hover,
            #Action_bar .social-menu a:hover {
                color: #cccccc !important;
            }
}

form input.display-none {
    display: none !important;
}

/*---------- GENERAL ----------*/
a {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-weight: bold;
}

a:hover {
    text-decoration: none !important;
}

.white {
    color: #fff;
}

.green {
    color: #1b5632;
}

.blue {
    color: #81969c;
}

/*---------- FONTS ----------*/

h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
}

span.thin {
    font-weight: 200;
}

h2.showcase {
    text-transform: uppercase;
    font-size: 340%;
}

@media only screen and (max-width: 1239px) {
    h2.showcase {
        font-size: 280%;
        line-height: 130%;
    }
}

@media only screen and (max-width: 767px) {
    h2.showcase {
        font-size: 220%;
        line-height: 130%;
    }
}

p.underline.white:after {
    content: "";
    width: 70px;
    height: 1px;
    display: block;
    background: #fff;
    position: initial;
    margin-top: 10px;
}

.green-border-left {
    border-left: 8px solid #19aa52;
    padding-left: 25px;
}

.gray-border-left {
    border-left: 8px solid #697074;
    padding-left: 25px;
}

.midblue-border-left {
    border-left: 8px solid #1369ad;
    padding-left: 25px;
}

.orange-border-left {
    border-left: 8px solid #f8b217;
    padding-left: 25px;
}

.perriwinkle-border-left {
    border-left: 8px solid #6595dd;
    padding-left: 25px;
}

.teal-border-left {
    border-left: 8px solid #1da5a8;
    padding-left: 25px;
}

/*---------- ACTION BAR ----------*/

#Action_bar {
    background: linear-gradient(180deg, #79712d 100%);
}

    #Action_bar .container {
        text-align: center;
        display: table;
    }

    #Action_bar .slogan {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 3px;
    }

@media only screen and (max-width: 767px) {
    #Action_bar .contact_details li.slogan {
        display: block !important;
    }
}

/*---------- HEADER ----------*/

body:not(.template-slider) #Header {
    min-height: 0px;
}

body.header-stack:not(.template-slider) #Header {
    min-height: 0px;
}

#Top_bar {
    background: linear-gradient( 135deg, #ffffff66 0%, #ffffff66 100% ), url(/images/menu-background.jpg);
    background-blend-mode: normal;
    background-position: cover;
    background-position: center;
}

/*---------- SUBHEADER ----------*/

#Subheader {
    background: url(/images/interlaced.png), linear-gradient(135deg, #81969c 0%, #81969c 100%);
    background-size: auto !important;
    background-repeat: repeat;
    background-blend-mode: multiply;
}

/*---------- CONTENT ----------*/

.mfn-builder-content {
    margin-bottom: -15px;
}

/*---------- MENU ----------*/

#Top_bar .menu > li > a span:not(.description) {
    padding: 0 30px;
    text-transform: uppercase;
}

/*---------- FOOTER ----------*/
#Footer {
    background: linear-gradient(180deg, #79712d 100%);
}

    #Footer .footer_copy {
        border: none !important;
    }

    #Footer .mcb-column-inner {
        margin: 0px;
    }

    #Footer .copyright {
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 14px;
        font-weight: 100;
    }

/*---------- BUTTONZ ----------*/

.buttonz {
    padding: 4px 12px;
    display: inline-block;
    margin-top: 16px;
    min-width: 300px;
    text-align: center;
    margin-right: 10px;
    border-radius: 3px;
}

    .buttonz p {
        letter-spacing: 3px;
        display: inline-block;
        margin: 0px;
        font-weight: 600 !important;
        text-transform: uppercase;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .buttonz.white-outline {
        background: #ffffff00;
        border: 2px solid #ffffff;
    }

        .buttonz.white-outline p {
            color: #ffffff;
        }

        .buttonz.white-outline:hover {
            background: #ffffffff;
            border-left-width: 2px;
        }

            .buttonz.white-outline:hover p {
                color: #475249;
            }

    .buttonz.green-outline {
        background: #47524900;
        border: 2px solid #475249;
    }

        .buttonz.green-outline p {
            color: #475249;
        }

        .buttonz.green-outline:hover {
            background: #475249ff;
            border-left-width: 2px;
        }

            .buttonz.green-outline:hover p {
                color: #ffffff;
            }

    .buttonz.blue-outline {
        background: #81969c00;
        border: 2px solid #81969c;
    }

        .buttonz.blue-outline p {
            color: #81969c;
        }

        .buttonz.blue-outline:hover {
            background: #81969cff;
            border-left-width: 2px;
        }

            .buttonz.blue-outline:hover p {
                color: #ffffff;
            }

/*---------- TESTIMONIALS ----------*/

/*---------- RESPONSIVE EMBED ----------*/

.embed-container {
    margin: 0px auto;
    max-width: 550px;
    width: 100%;
}

    .embed-container div {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.embed-map-container {
    margin: 0px auto;
    max-width: 550px;
    width: 100%;
}

    .embed-map-container div {
        position: relative;
        padding-bottom: 80%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }

    .embed-map-container iframe,
    .embed-map-container object,
    .embed-map-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*---------- HOMEPAGE ----------*/

.textbox {
    max-width: 960px;
    margin: 30px auto 20px;
    padding: 24px;
    border: 3px solid #1369adcc;
    background: #ffffffcc;
    color: #1369ad;
}

#home-section-one {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 1), transparent), linear-gradient( 135deg, rgba(0, 0, 0, 0), transparent), url(/images/employment-2.jpg) !important;
    background-size: cover !important;
    background-blend-mode: normal, color;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.big-subheader {
    letter-spacing: 12px;
    font-weight: 200;
    font-size: 30px;
}

#home-section-two {
    background: linear-gradient(0deg, #ffffffe2, #ffffffe2), url(/images/striped-background-scaled.jpg), linear-gradient(0deg, #ffffffff, #ffffffff) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center 60% !important;
    z-index: 0;
}

#home-section-four-mobile {
    background: linear-gradient(0deg, #475249cc, #475249cc), linear-gradient(0deg, #475249ff, #475249ff), url(/images/excavator-digging-ground-day-light-1.jpg) !important;
    background-blend-mode: normal, color;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
}

#home-section-five {
    background: linear-gradient(0deg, #ffffffcc, #ffffffcc), url(/images/menu-background.jpg), linear-gradient(0deg, #697074, #697074) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#operations-section {
    background: url(/images/striped-background-scaled.jpg);
    background-size: 50% 100%;
    background-position: right center;
}

@media only screen and (max-width: 1562px) {
    #operations-section {
        background-size: auto 100%;
    }
}

#opportunities-section {
    background: url(/images/striped-background-scaled.jpg);
    background-size: 50% 100%;
    background-position: right center;
}

@media only screen and (max-width: 1527px) {
    #opportunities-section {
        background-size: auto 100%;
        background-position: left center;
    }
}

#environment-section {
    background: url(/images/striped-background-scaled.jpg);
    background-size: 50% 100%;
    background-position: right center;
}

@media only screen and (max-width: 1911px) {
    #environment-section {
        background-size: auto 100%;
    }
}

#reclamation-section {
    background: url(/images/striped-background-scaled.jpg);
    background-size: 50% 100%;
    background-position: right center;
}

@media only screen and (max-width: 1630px) {
    #reclamation-section {
        background-size: auto 100%;
        background-position: left center;
    }
}

@media only screen and (max-width: 959px) {
    #operations-section,
    #opportunities-section,
    #environment-section,
    #reclamation-section {
        background-size: cover;
        background-position: center;
    }
}

#operations-section > .section_wrapper,
#opportunities-section > .section_wrapper,
#environment-section > .section_wrapper,
#reclamation-section > .section_wrapper {
    min-height: calc(29vw - 190px);
}

#operations-section-mobile,
#opportunities-section-mobile,
#environment-section-mobile,
#reclamation-section-mobile {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

    #operations-section-mobile > .section_wrapper,
    #opportunities-section-mobile > .section_wrapper,
    #environment-section-mobile > .section_wrapper,
    #reclamation-section-mobile > .section_wrapper {
        min-height: calc(58vw);
    }

/*---------- GRAVITY FORMS ----------*/

.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select,
.gform_wrapper input[type="submit"] {
    padding: 10px 12px !important;
    border-radius: 5px;
}

.gform_wrapper select {
    margin-top: 0px !important;
    line-height: 1.3em !important;
    margin-bottom: 20px !important;
}

.gform_wrapper
.field_sublabel_below
.ginput_complex.ginput_container
label,
.gform_wrapper
.field_sublabel_below
div[class*="gfield_time_"].ginput_container
label {
    margin: -15px 0 15px 1px !important;
}

.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select,
.gform_wrapper input[type="submit"] {
    padding: 16px 12px !important;
    border-radius: 0px;
    border: none;
    border: 2px solid #475249;
    border-radius: 3px;
}

    .gform_wrapper input::placeholder,
    .gform_wrapper textarea::placeholder,
    .gform_wrapper select::placeholder,
    .gform_wrapper select option {
        text-transform: uppercase;
        font-weight: 500;
        color: #475249;
        letter-spacing: 1px;
        font-size: 18px;
    }

#gform_submit_button_1 {
    letter-spacing: 3px;
    margin: 0px;
    font-weight: 600 !important;
    text-transform: uppercase;
    color: #475249;
    background: #ffffff;
    border: 2px solid #475249;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-shadow: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    #gform_submit_button_1:hover {
        border: 2px solid #475249;
        color: #ffffff;
        background: #475249;
        border-left-width: 2px;
    }

#gform_submit_button_2 {
    letter-spacing: 3px;
    margin: 0px;
    font-weight: 600 !important;
    text-transform: uppercase;
    color: #475249;
    background: #ffffff;
    border: 2px solid #475249;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-shadow: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    #gform_submit_button_2:hover {
        border: 2px solid #475249;
        color: #fff;
        background: #475249;
        border-left-width: 2px;
    }

.gform_confirmation_wrapper .gform_confirmation_message {
    background: #1369ad !important;
}

    .gform_confirmation_wrapper .gform_confirmation_message a {
        color: #fff !important;
        font-weight: bold !important;
    }

.gform_heading {
    display: none !important;
}

/*---------- LEFT/RIGHT RULES ----------*/

#home-section-four.highlight-left:after {
    background: linear-gradient(0deg, #475249cc, #475249cc), linear-gradient(0deg, #475249ff, #475249ff), url(/images/excavator-digging-ground-day-light-1.jpg) !important;
    background-blend-mode: normal, color;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
}

#operations-section.highlight-left:after {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 1), transparent), linear-gradient( 135deg, rgba(0, 0, 0, 0), transparent), url(/images/operations-v2.jpg) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#opportunities-section.highlight-right:after {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 1), transparent), linear-gradient( 135deg, rgba(0, 0, 0, 0), transparent), url(/images/opportunites-v2.jpg) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#environment-section.highlight-left:after {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 1), transparent), linear-gradient( 135deg, rgba(0, 0, 0, 0), transparent), url(/images/environment-v2.jpg) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#reclamation-section.highlight-right:after {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 1), transparent), linear-gradient( 135deg, rgba(0, 0, 0, 0), transparent), url(/images/reclamation-v2.jpg) !important;
    background-size: cover !important;
    background-blend-mode: normal, luminosity;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#home-section-nine.highlight-left:after {
    background: linear-gradient(0deg, #ffffff00, #ffffff00), linear-gradient(0deg, #ffffff00, #ffffff00), url(/images/map.png) !important;
    background-blend-mode: normal, color;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width:100%;
}

@media only screen and (max-width: 959px) {
    .highlight-left:after,
    .highlight-right:after {
        display: none !important;
    }

    .highlight-left .wrap.one-second,
    .highlight-right .wrap.one-second {
        width: 100%;
    }

    .reduce-mobile-padding {
        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }
}

@media only screen and (min-width: 1490px) {
    .highlight-left > .section_wrapper > .mcb-wrap:last-child
    .one.column {
        padding: 0px 60px;
    }

    .highlight-right > .section_wrapper > .mcb-wrap:first-child
    .one.column {
        padding: 0px 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1489px) {
    .highlight-left > .section_wrapper > .mcb-wrap:last-child
    .one.column {
        padding: 0px 40px;
    }

    .highlight-right > .section_wrapper > .mcb-wrap:first-child
    .one.column {
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .highlight-left .wrap:first-child,
    .highlight-right .wrap:last-child {
        background: none !important;
    }

    .highlight-left > .section_wrapper > .mcb-wrap:last-child
    .one.column {
        padding: 0px 33px;
    }

    .highlight-right > .section_wrapper > .mcb-wrap:first-child
    .one.column {
        padding: 0px 33px;
    }
}

@media only screen and (max-width: 959px) {
    .mobile-canvas-image {
        padding-top: 12.5%;
        padding-bottom: 12.5%;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-canvas-image {
        padding-top: 15%;
        padding-bottom: 15%;
    }
}

/*---------- FAQ ----------*/

.qa-container {
    background: #fff;
    padding: 40px 60px 0px !important;
    border-radius: 16px;
    box-shadow: 20px 20px 0px #00000022;
}

@media only screen and (max-width: 767px) {
    .qa-container {
        background: #fff;
        padding: 20px 30px 0px !important;
    }
}

.column-margin-10px .column.faq-area {
    margin-bottom: 40px !important;
}

.faq .question:before {
    content: "+";
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    border: none;
    background: #47524900;
    border: 2px solid #475249;
    font-size: 30px;
    line-height: 30px;
    color: #475249;
    top: 16px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.faq .question.active:before {
    background: #81969cff;
    border: 2px solid #81969c;
    color: #fff;
}

.faq .question {
    background: none;
}

    .faq .question .title {
        padding: 15px 0 15px 55px;
        font-size: 115%;
        font-weight: 400;
    }

    .faq .question:after {
        display: none;
    }

.faq .num {
    display: none;
}

.faq .question.active .title,
.accordion .question.active .title {
    color: #81969c;
}

.faq .question .answer {
    padding: 0 20px 20px 55px;
    font-size: 95%;
    font-weight: 400;
}

.faq .question .title > .acc-icon-plus {
    display: none;
}

.expand-all,
.collapse-all {
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.more-qa a {
    color: #475249;
    text-decoration: underline;
}

/*---------- MISC ----------*/

.contact-box {
    max-width: 100%;
    margin: 30px auto;
    background: #f7f7f7;
    box-shadow: 0px 0px 30px #00000022;
    padding: 40px 50px 25px;
    box-sizing: border-box;
}

@media only screen and (max-width: 959px) {
    .hide-mobile {
        display: none !important;
    }
}

#logo-hero-area {
    background: linear-gradient( 135deg, #ffffffbb 0%, #ffffffbb 100% ), url(/images/menu-background.jpg);
    background-blend-mode: normal;
    background-position: cover;
    background-position: center;
}

.text-border-box {
    border: 1px solid #47524944;
    padding: 30px 35px 15px;
    background: #ffffff66;
}

.blue-background {
    background: url(/images/interlaced.png), linear-gradient(135deg, #81969c 0%, #81969c 100%);
    background-size: auto !important;
    background-repeat: repeat;
    background-blend-mode: multiply;
}

.purple-background {
    background: url(/images/interlaced.png), linear-gradient(135deg, #6d677a 0%, #6d677a 100%);
    background-size: auto !important;
    background-repeat: repeat;
    background-blend-mode: multiply;
}

.green-background {
    background: url(/images/interlaced.png), linear-gradient(135deg, #1b5632 100%);
    background-size: auto !important;
    background-repeat: repeat;
    background-blend-mode: multiply;
}

.yellow-background {
    background: url(/images/interlaced.png), linear-gradient(135deg, #72684d 0%, #72684d 100%);
    background-size: auto !important;
    background-repeat: repeat;
    background-blend-mode: multiply;
}
