/*-------------------------------------------------------------
[Master Stylesheet]

Project: Marketum Wordpress Theme

[Table of contents]

1.  General
2.  OWL Carousel
3.  Preloader
4.  Header
5.  Footer
6.  Page Title
7.  Sidebar Widgets
8.  Single Post
9.  Single Team
10. Single Portfolio
11. Single Career
12. 404 Error Page
13. Elementor Main Styles
14. Typography
15. Standard Listings
16. Responsive
--------------------------------------------------------------*/

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

html,
body {
    padding: 0;
    margin: 0;
}

html {
    height: auto;
    overflow-x: hidden;
    position: static;
}

body {
    overflow-x: hidden;
    opacity: 0;
    letter-spacing: 0;
    position: relative;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

body.body--static {
    height: 100%;
    overflow: hidden;
}

.clear {
    clear: both;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

a:hover {
    text-decoration: none;
}

b, strong {
    letter-spacing: 0;
}

/* -------------------- */
/* --- Links Type 1 --- */
/* -------------------- */
.marketum_page_content_container a,
.marketum_side_panel_info_item a,
.marketum_contacts_widget_email a,
.marketum_address_widget_item a,
.marketum_top_footer_socials li a,
.footer_widget a,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher {
    display: inline-block;
    position: relative;
}

.marketum_page_content_container a:before,
.marketum_page_content_container a:after,
.marketum_side_panel_info_item a:before,
.marketum_side_panel_info_item a:after,
.marketum_contacts_widget_email a:before,
.marketum_contacts_widget_email a:after,
.marketum_address_widget_item a:before,
.marketum_address_widget_item a:after,
.marketum_top_footer_socials li a:before,
.marketum_top_footer_socials li a:after,
.footer_widget a:before,
.footer_widget a:after,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:before,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    pointer-events: none;
}

.marketum_page_content_container a:before,
.marketum_side_panel_info_item a:before,
.marketum_contacts_widget_email a:before,
.marketum_address_widget_item a:before,
.marketum_top_footer_socials li a:before,
.footer_widget a:before,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:before {
    height: 10px;
    opacity: 0;
    margin-top: 2px;
    top: 100%;
}

.marketum_page_content_container a:after,
.marketum_side_panel_info_item a:after,
.marketum_contacts_widget_email a:after,
.marketum_address_widget_item a:after,
.marketum_top_footer_socials li a:after,
.footer_widget a:after,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:after {
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 0s;
}

.marketum_page_content_container a:hover:before,
.marketum_side_panel_info_item a:hover:before,
.marketum_contacts_widget_email a:hover:before,
.marketum_address_widget_item a:hover:before,
.marketum_top_footer_socials li a:hover:before,
.footer_widget a:hover:before,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:hover:before {
    opacity: 1;
    animation: lineUp 0.3s ease forwards;
}

.marketum_page_content_container a:hover:after,
.marketum_side_panel_info_item a:hover:after,
.marketum_contacts_widget_email a:hover:after,
.marketum_address_widget_item a:hover:after,
.marketum_top_footer_socials li a:hover:after,
.footer_widget a:hover:after,
.woocommerce .outer-form-wrapper .form-attention .tab-columns-switcher:hover:after {
    opacity: 1;
    transition-delay: 0.3s;
}

@keyframes lineUp {
    0% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.2, 1);
    }
}

/* -------------------- */
/* --- Links Type 2 --- */
/* -------------------- */
a.marketum_link_type_2,
.marketum_page_content_container .post-comment-buttons a,
.marketum_top_footer_socials li a {
    font-size: 14px;
    line-height: 2.3;
    font-weight: 500;
    position: relative;
}

a.marketum_link_type_2:before,
a.marketum_link_type_2:after,
.marketum_page_content_container .post-comment-buttons a:before,
.marketum_page_content_container .post-comment-buttons a:after,
.warketum_submit_button:before,
.warketum_submit_button:after,
.comment-respond .marketum_comment_button:before,
.comment-respond .marketum_comment_button:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

a.marketum_link_type_2:before,
.marketum_page_content_container .post-comment-buttons a:before,
.warketum_submit_button:before,
.comment-respond .marketum_comment_button:before {
    height: 100%;
    opacity: 0;
    top: 0;
}

a.marketum_link_type_2:after,
.marketum_page_content_container .post-comment-buttons a:after,
.warketum_submit_button:after,
.comment-respond .marketum_comment_button:after {
    height: 2px;
    opacity: 1;
    top: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    transition-delay: 0s;
}

a.marketum_link_type_2:hover:before,
.marketum_page_content_container .post-comment-buttons a:hover:before,
.warketum_submit_button:hover:before,
.comment-respond .marketum_comment_button:hover:before {
    opacity: 1;
    animation: coverUp .3s ease forwards;
}

a.marketum_link_type_2:hover:after,
.marketum_page_content_container .post-comment-buttons a:hover:after,
.warketum_submit_button:hover:after,
.comment-respond .marketum_comment_button:hover:after{
    opacity: 0;
    transition-delay: 0s;
}

@keyframes coverUp {
    0% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }
}

p {
    margin-bottom: 1.9rem;
}

p:last-of-type {
    margin-bottom: 0;
}

::selection {
    color: #ffffff;
}

.marketum_page-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block;
}

button,
button:active,
button:focus {
    outline: none;
}

main.marketum_main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.marketum_page_wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 100vh;
    width: 100%;
}

.marketum_align-container {
    display: table;
    width: 100%
}

.marketum_align-container__item {
    display: table-cell;
    vertical-align: middle
}

.marketum_img--bg,
.elementor img.marketum_img--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    font-family: "object-fit: cover; object-position: top center";
    z-index: -1
}

.marketum_img--contain,
.elementor img.marketum_img--contain {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: contain; object-position: center center";
    z-index: -1
}

.marketum_img--layout {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none
}

.marketum_button {
    display: inline-block;
    text-align: center;
    padding: 13px 40px 14px;
    border: solid 2px;
    border-radius: 0;
    letter-spacing: 0;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.marketum_page_content_container a.marketum_button:before {
    content: '';
    width: 140%;
    height: 140%;
    display: block;
    opacity: 1;
    -webkit-animation: none;
    animation: none;
    -webkit-clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    position: absolute;
    top: -2px;
    left: -3px;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
    -webkit-transition: transform .5s cubic-bezier(0,0,0.58,1);
    transition: transform .5s cubic-bezier(0,0,0.58,1);
    z-index: 1;
}

.marketum_page_content_container a.marketum_button:after {
    display: none;
}

.marketum_page_content_container a.marketum_button:hover:before {
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
}

.marketum_page_content_container a.marketum_button span {
    position: relative;
    z-index: 5;
}

.marketum_button--primary {
    border: 2px solid;
    background: transparent;
}

.marketum_button--squared {
    border-radius: 0;
    width: 260px;
    padding: 0 30px 0 30px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.marketum_button--squared:hover {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-box-shadow: none;
    box-shadow: none
}

.marketum_button--squared span {
    display: inline-block;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.marketum_button--squared:hover span {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

form input,
form textarea {
    -webkit-appearance: none
}

.form__field,
body #give_checkout_user_info p input,
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="text"],
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="email"],
.wp-block-search input[type="search"],
input[type="password"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"] {
    width: 100%;
    height: 54px;
    font-size: 14px;
    line-height: 54px;
    border: none;
    border-bottom: solid 1px;
    padding: 0;
    margin-bottom: 6px;
    box-shadow: none;
    border-radius: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    outline: 0
}

.form__field::placeholder,
body #give_checkout_user_info p input::placeholder,
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="text"]::placeholder,
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="email"]::placeholder,
.wp-block-search input[type="search"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder {
    color: #6d7173;
}

body #give_checkout_user_info p input,
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="text"],
body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p input[type="email"] {
    margin-bottom: 0;
}

textarea,
.form__message {
    width: 100%;
    height: 130px;
    font-size: 14px;
    padding: 9px 0;
    margin: 10px 0 32px;
    border: none;
    border-bottom: solid 1px;
    line-height: 30px;
}

.marketum_bg_color_alt textarea,
.marketum_bg_color_alt .form__message {
    border: none;
}

.marketum_member_form textarea {
    height: 150px;
}

input[type="submit"],
.wp-block-search button[type="submit"] {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wp-block-search button[type="submit"] {
    border-top: solid 2px;
}

.warketum_submit_button {
    display: inline-block;
    position: relative;
}

.comment-respond .marketum_comment_button {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}

input[type="submit"]:focus,
input[type="submit"]:active,
input[type="password"]:focus,
input[type="password"]:active,
textarea:focus,
textarea:active {
    outline: none;
}

input[type="password"]:focus,
input[type="password"]:active {
    background: transparent;
}

.elementor-widget-html input[type="text"],
.elementor-widget-html input[type="email"],
.elementor-widget-html input[type="tel"] {
    margin-bottom: 0;
}

.elementor-widget-html .marketum_home_request_quote input[type="text"],
.elementor-widget-html .marketum_home_request_quote input[type="email"],
.elementor-widget-html .marketum_home_request_quote input[type="tel"],
.elementor-widget-html .marketum_home_request_quote .marketum_truckload_type_select {
    margin-bottom: 20px;
}

.elementor-widget-html .marketum_home_request_quote .marketum_checkbox_block {
    margin-top: 4px;
}

.marketum_checkbox_label {
    cursor: pointer;
    padding-left: 30px;
    margin: 0 30px 20px 0;
    position: relative;
}

.marketum_checkbox_label .marketum_checkbox_text {
    font-size: 14px;
    font-weight: 500;
}

.marketum_checkbox_label input[type="checkbox"],
.marketum_checkbox_label input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 6px;
    left: 0;
    z-index: -1;
}

.marketum_checkbox_label .marketum_checkbox_mask {
    height: 20px;
    width: 20px;
    border: 2px solid #e2e2e2;
    position: absolute;
    top: 5px;
    left: 0;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.marketum_checkbox_label .marketum_checkbox_mask:after {
    content: '';
    width: 6px;
    height: 10px;
    display: block;
    border-top: solid 2px;
    border-left: solid 2px;
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 2px;
    left: 5px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    z-index: 5;
}

.marketum_checkbox_label input[type="checkbox"]:checked + .marketum_checkbox_mask {
    border-color: #00997d;
}

.marketum_checkbox_label input[type="checkbox"]:checked + .marketum_checkbox_mask:after {
    opacity: 1;
}

.marketum_checkbox_label .marketum_radio_mask {
    height: 20px;
    width: 20px;
    border: 2px solid #e2e2e2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.marketum_checkbox_label .marketum_radio_mask:after {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    background: #00997d;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(0);
    -ms-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    opacity: 0;
}

.marketum_checkbox_label input[type="radio"]:checked + .marketum_radio_mask {
    border: 2px solid #00997d;
}

.marketum_checkbox_label input[type="radio"]:checked + .marketum_radio_mask:after {
    -webkit-transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
}

.comment-form-cookies-consent label {
    display: inline-block;
}

#wp-comment-cookies-consent {
    display: inline-block;
    margin-right: 10px;
}

.comment-form-cookies-consent {
    overflow: hidden;
    margin: -10px 0 32px;
    position: relative;
}

.comment-form-cookies-consent input[type="checkbox"]:checked,
.comment-form-cookies-consent input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.comment-form-cookies-consent label {
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
}

.comment-form-cookies-consent input[type="checkbox"]:checked + label:before,
.comment-form-cookies-consent input[type="checkbox"]:not(:checked) + label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    border: solid 2px #e2e2e2;
    margin-top: 1px;
    margin-right: 13px;
    cursor: pointer;
    vertical-align: text-top;
    position: static;
}

.comment-form-cookies-consent input[type="checkbox"]:checked + label:before {
    content: '\f00c';
    font-family: FontAwesome, sans-serif;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.marketum_hidden_container {
    display: none;
}

.elementor-editor-active .elementor-section:hover,
.elementor-editor-active .elementor-column:hover {
    z-index: 30010;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

img.alignnone {
    margin: 29px 0 0 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    text-align: center;
    margin: 5px auto 5px auto;
    clear: both;
}

.alignfull,
div.alignfull,
.alignwide,
div.alignwide,
.aligncenter,
div.aligncenter {
    margin: 5px auto 2em auto;
}

.wp-block-image figcaption {
    margin-top: 1em;
}

.wp-block-cover, .wp-block-cover-image {
    margin-bottom: 15px;
}

p.has-drop-cap:not(:focus):first-letter {
    float:left;
    font-size: 3em;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 15px 0;
    text-transform:uppercase;
    font-style:normal;
}

.alignright {
    float: right;
    margin: 5px 0 32px 32px;
}

.alignleft {
    float: left;
    margin: 5px 32px 32px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 32px 32px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 32px 32px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.dn {
    display: none !important;
}

.wp-caption {
    max-width: 100% !important;
    text-align: center;
}

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

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

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

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 10px 4px;
}

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

mark {
    padding: 2px 3px 3px 1px;
    background: #99d6cb;
}

.list--reset {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blocks-gallery-item a:before,
.blocks-gallery-item a:after,
.wp-block-file__button:before,
.wp-block-file__button:after {
    display: none;
}

.wp-block-file__button:hover {
    opacity: 1;
}

.marketum_page_content_container .page-link {
    padding: 10px 0;
    color: inherit;
    border: none;
}

.marketum_page_content_container .page-link span,
.marketum_page_content_container .page-link a {
    margin: 0 5px;
}

.marketum_page_title_wrapper b {
    color: #ffffff;
}

.post-password-form input[type="password"] {
    width: 250px;
    height: 50px;
    margin-right: 30px;
}

.post-password-form button {
    height: 50px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 40px;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

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

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

.wp-block-button__link {
    padding: 14px 40px;
    margin-bottom: 25px;
    color: #ffffff;
}

.wp-block-button__link:before,
.wp-block-button__link:after {
    display: none;
}

body .wp-block-button__link:hover,
a:not([href]):not([tabindex]):hover {
    color: #ffffff;
}

.marketum_blog_content_wrapper ul.wp-block-gallery,
.marketum_blog_content_wrapper ul.wp-block-gallery li,
.marketum_page_content_wrapper ul.wp-block-gallery,
.marketum_page_content_wrapper ul.wp-block-gallery li {
    padding: 0;
}

.wp-block-gallery.alignleft {
    margin-right: 20px;
}

.wp-block-gallery.alignright {
    margin-left: 20px;
}

.wp-block-spacer {
    clear: both;
}

.marketum_blog_content_wrapper ul.wp-block-categories-list,
.marketum_blog_content_wrapper ul.wp-block-latest-posts,
.marketum_blog_content_wrapper ol.wp-block-latest-comments,
.marketum_page_content_wrapper ul.wp-block-categories-list,
.marketum_page_content_wrapper ul.wp-block-latest-posts,
.marketum_page_content_wrapper ol.wp-block-latest-comments {
    padding-left: 0;
}

.marketum_blog_content_wrapper ul.wp-block-categories-list li,
.marketum_blog_content_wrapper ul.wp-block-latest-posts li,
.marketum_page_content_wrapper ul.wp-block-categories-list li,
.marketum_page_content_wrapper ul.wp-block-latest-posts li {
    list-style: none;
}

body .marketum_blog_content_wrapper ul.wp-block-latest-posts li:not(:last-of-type) {
    margin-bottom: 23px;
}

.marketum_blog_content_wrapper ul.wp-block-latest-posts li a,
.marketum_page_content_wrapper ul.wp-block-latest-posts li a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .2px;
    font-weight: 500;
}

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #003d90;
    margin-top: 13px;
}

.wp-block-separator {
    width: 50%;
}

.wp-block-separator.is-style-wide,
.wp-block-separator.is-style-dots {
    width: 100%;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery .gallery-item {
    width: 100%;
    text-align: center;
}

.gallery.gallery-columns-1 .gallery-item {
    max-width: 100%;
    flex: 0 0 100%;
}

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

.gallery.gallery-columns-3 .gallery-item {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
}

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

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

.gallery.gallery-columns-6 .gallery-item {
    max-width: 16.666666%;
    flex: 0 0 16.666666%;
}

.gallery.gallery-columns-7 .gallery-item {
    max-width: 14.2857%;
    flex: 0 0 14.2857%;
}

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

.gallery.gallery-columns-9 .gallery-item {
    max-width: 11.111111%;
    flex: 0 0 11.111111%;
}

@media only screen and (max-width: 769px) {
    .gallery.gallery-columns-3 .gallery-item,
    .gallery.gallery-columns-4 .gallery-item,
    .gallery.gallery-columns-5 .gallery-item,
    .gallery.gallery-columns-6 .gallery-item,
    .gallery.gallery-columns-7 .gallery-item,
    .gallery.gallery-columns-8 .gallery-item,
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 415px) {
    .gallery.gallery-columns-2 .gallery-item,
    .gallery.gallery-columns-3 .gallery-item,
    .gallery.gallery-columns-4 .gallery-item,
    .gallery.gallery-columns-5 .gallery-item,
    .gallery.gallery-columns-6 .gallery-item,
    .gallery.gallery-columns-7 .gallery-item,
    .gallery.gallery-columns-8 .gallery-item,
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.gallery .gallery-item a:before,
.gallery .gallery-item a:after {
    display: none;
}

.gallery .gallery-item img {
    margin: 0 auto;
}

.marketum_sticky_post {
    position: relative;
}

.marketum_sticky_post:after {
    content: '\f08d';
    width: 50px;
    height: 50px;
    font-family: FontAwesome, sans-serif;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

.marketum_page_content_container table th,
.marketum_page_content_container table td,
.marketum_blog_content_container table th,
.marketum_blog_content_container table td {
    border: solid 1px;
    padding: 5px;
}

.marketum_page_content_container table td,
.marketum_blog_content_container table td {
    padding: 8px;
}

.marketum_page_content_container table td a {
    font-weight: 700;
}

.page-link:hover {
    background: none;
}

table {
    width: 100%;
    margin: 1.5rem 0;
}

.marketum_blog_content_wrapper figure iframe,
.marketum_page_content_container figure iframe {
    max-width: 100%;
}

figcaption {
    margin-bottom: 1rem;
}

.blocks-gallery-item figcaption {
    margin-bottom: 0;
}

.wp-block-quote,
blockquote {
    font-size: 20px;
    font-style: normal;
    padding-left: 70px !important;
    position: relative;
}

.wp-block-quote:before,
blockquote:before {
    content: '“';
    font-size: 100px;
    line-height: 80px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-size: 30px;
}

.wp-block-quote.has-text-align-right {
    padding: 0 70px 0 0 !important;
}

.wp-block-quote.has-text-align-right:before {
    left: auto;
    right: 0;
}

.wp-block-pullquote {
    position: relative;
    margin-top: 30px;
}

.wp-block-pullquote blockquote {
    padding: 0 !important;
}

.wp-block-pullquote blockquote:before {
    display: none;
}

.wp-block-pullquote:before {
    content: '“';
    font-size: 100px;
    line-height: 80px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.wp-block-pullquote.has-background {
    padding-top: 5em;
}

.wp-block-pullquote.has-background:before {
    top: 30px;
}

.wp-block-latest-posts.is-grid li {
    margin: 0 20px 10px 0;
}

.wp-block-latest-posts.is-grid.has-dates li {
    margin: 0 20px 20px 0;
}

.wp-block-group.has-background {
    padding: 30px;
    margin-bottom: 40px;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

body .wp-block-file .wp-block-file__button {
    border-radius: 0;
    position: relative;
    top: -2px;
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
    height: auto;
}

ol li ul,
ul li ol,
ul li ul,
ol li ol {
    margin-top: 10px;
}

.marketum_no_result_search_form {
    position: relative;
}

.marketum_no_result_search_form input {
    padding: 0 38px 0 0;
    margin-bottom: 0;
}

.marketum_no_result_search_form .marketum_icon_search {
    line-height: 1;
    cursor: pointer;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.nojq {
    position: fixed;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    padding-top: 0;
}

.gallery .gallery-item img,
.wp-block-image img,
p img {
    height: auto;
}

.wp-block-gallery ul.blocks-gallery-grid li.blocks-gallery-item {
    margin-bottom: 16px;
}

#gallery-1 .gallery-caption {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
}

code {
    display: block;
    white-space: pre;
    color: inherit;
    overflow: auto;
}

.marketum_z_index_10 {
    z-index: 10;
}

@media only screen and (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

.marketum_content_paging_wrapper {
    clear: both;
}

/* ----------------------------- */
/* --- Custom Motion Effects --- */
/* ----------------------------- */
@-webkit-keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none !important;
    }
}
.marketum_page_content_wrapper .fadeInUp {
    animation-name: fadeInUpCustom;
}

@-webkit-keyframes fadeInDownCustom {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDownCustom {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.marketum_page_content_wrapper .fadeInDown {
    animation-name: fadeInDownCustom;
}

@-webkit-keyframes fadeInLeftCustom {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeftCustom {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.marketum_page_content_wrapper .fadeInLeft {
    animation-name: fadeInLeftCustom;
}

@-webkit-keyframes fadeInRightCustom {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInRightCustom {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.marketum_page_content_wrapper .fadeInRight {
    animation-name: fadeInRightCustom;
}

/* --------------------------- */
/* ---------- Icons ---------- */
/* --------------------------- */
@font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon.eot?169u1y");
    src: url("../fonts/icomoon.eot?169u1y#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?169u1y") format("truetype"), url("../fonts/icomoon.woff?169u1y") format("woff"), url("../fonts/icomoon.svg?169u1y#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor
}

/* ---------------------------------- */
/* ---------- OWL Carousel ---------- */
/* ---------------------------------- */
.marketum_owlCarousel {
    opacity: 0;
    position: relative;
}

.marketum_owlCarousel.owl-theme .owl-nav {
    width: 100%;
    height: 19px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.marketum_owlCarousel.owl-theme .owl-nav [class*="owl-"] {
    width: 20px;
    height: 19px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_owlCarousel.owl-theme .owl-nav [class*="owl-"]:hover {
    opacity: .5;
}

.marketum_owlCarousel .owl-prev {
    background: url("../img/arrow_left.png") no-repeat center !important;
    background-size: 20px 19px !important;
    left: 40px;
}

.marketum_owlCarousel .owl-next {
    background: url("../img/arrow_right.png") no-repeat center !important;
    background-size: 20px 19px !important;
    right: 40px;
}

body .owl-carousel {
    display: block;
}

/* ------------------------------- */
/* ---------- Preloader ---------- */
/* ------------------------------- */
.marketum_preloader_container {
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 50000;
}

.marketum_preloader_container.invisible {
    opacity: 0;
}

.marketum_preloader_logo {
    animation: pulsation 1.5s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
}

body.admin-bar .marketum_preloader_logo {
    margin-top: 32px;
}

@keyframes pulsation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        animation-timing-function: ease-in-out;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        animation-timing-function: ease-in-out;
    }
}

/* ---------------------------- */
/* ---------- Header ---------- */
/* ---------------------------- */
header {
    position: relative;
    z-index: 30000;
}

header.marketum_sticky_header_container {
    width: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-transition: transform linear .5s;
    transition: transform linear .5s;
    transition-delay: .5s;
}

header.marketum_sticky_header_container.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0s;
}

body.admin-bar header.marketum_sticky_header_container {
    top: 32px;
}

header.marketum_sticky_header_container .marketum_sticky_header_inner_container {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all .3s;
    transition: all .3s;
    transition-delay: 0s;
}

header.marketum_sticky_header_container.active .marketum_sticky_header_inner_container {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition-delay: .6s;
}

.marketum_header_inner_container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 15px 38px rgba(0, 0, 0, .1);
}

header.marketum_transparent_header_on .marketum_header_inner_container {
    box-shadow: none;
}

header.marketum_transparent_header_on.color_bg_on .marketum_header_inner_container {
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, .04);
}

.marketum_header_bg_overlay {
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 1;
}

header.marketum_transparent_header_on .marketum_header_bg_overlay {
    opacity: 0;
}

header.marketum_transparent_header_on.color_bg_on .marketum_header_bg_overlay {
    opacity: 1;
}

.marketum_header_logo_container,
.marketum_header_menu_container,
.marketum_header_buttons_container {
    position: relative;
    z-index: 5;
}

.marketum_header_logo_container {
    display: flex;
}

.marketum_logo_box {
    padding: 33px 68px;
}

.marketum_logo {
    display: inline-block;
}

.marketum_header_logo_text {
    font-size: 40px;
    font-weight: 700;
    color: #222628;
}

.marketum_header_logo_text:hover {
    color: #222628;
    opacity: .6;
}

.marketum_transparent_header_with_color .marketum_header_logo_text {
    color: #ffffff;
}

.marketum_header_buttons_container {
    padding-right: 36px;
}

.marketum_header_type_2 .marketum_header_buttons_container {
    padding-right: 0;
}

.marketum_header_button {
    height: calc(100% + 21px);
    display: flex;
    align-items: center;
    letter-spacing: .3px;
    padding: 0 80px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.marketum_header_button:hover {
    height: 100%;
}

.marketum_alt_header_button {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 0 78px;
    margin-right: 32px;
    overflow: hidden;
    position: relative;
}

.marketum_alt_header_button:before {
    content: '';
    width: 140%;
    height: 140%;
    display: block;
    opacity: 1;
    background: #222628;
    -webkit-animation: none;
    animation: none;
    -webkit-clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    position: absolute;
    top: -2px;
    left: -3px;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
    -webkit-transition: transform .5s cubic-bezier(0,0,0.58,1);
    transition: transform .5s cubic-bezier(0,0,0.58,1);
    z-index: 1;
}

.marketum_alt_header_button:hover:before {
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
}

.marketum_alt_header_button span {
    position: relative;
    z-index: 5;
}

.marketum_header_buttons_container {
    display: flex;
}

/* ------------------- */
/* --- Header Menu --- */
/* ------------------- */
.marketum_menu_notify a {
    color: #222628;
    margin-left: 15px;
}

.marketum_header_menu_container {
    display: flex;
    align-items: center;
}

.marketum_main_menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.marketum_main_menu li {
    position: relative;
    float: left;
}

.marketum_main_menu > li {
    padding: 38px 0;
    margin: 0 25px;
    cursor: pointer;
}

.marketum_main_menu > li:first-of-type {
    margin-left: 0;
}

.marketum_main_menu > li:last-of-type {
    margin-right: 0;
}

.marketum_main_menu li > ul.sub-menu,
.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu {
    width: 255px;
    display: none;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    padding: 30px 0 12px;
    margin: 0;
    filter: alpha(opacity=0);
    box-shadow: 0 4px 4px 1px rgba(0, 0, 0, .2);
    position: absolute;
    top: 100%;
    left: inherit;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    z-index: 100;
}

@media only screen and (min-width: 768px) {
    .marketum_main_menu li > ul.sub-menu,
    .marketum_main_menu li > ul.sub-menu > li > ul.sub-menu {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }
}

.marketum_main_menu li:hover > ul.sub-menu,
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 99%;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.marketum_main_menu li > ul.sub-menu > li,
.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu > li {
    float: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all .2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all .2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
}

.marketum_main_menu li:hover > ul.sub-menu > li,
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+1),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+1) {
    transition-delay: .1s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+2),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+2) {
    transition-delay: .15s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+3),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+3) {
    transition-delay: .2s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+4),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+4) {
    transition-delay: .25s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+5),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+5) {
    transition-delay: .3s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+6),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+6) {
    transition-delay: .35s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+7),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+7) {
    transition-delay: .4s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+8),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+8) {
    transition-delay: .45s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+9),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+9) {
    transition-delay: .5s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+10),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+10) {
    transition-delay: .55s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+11),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+11) {
    transition-delay: .6s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+12),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+12) {
    transition-delay: .65s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+13),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+13) {
    transition-delay: .7s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+14),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+14) {
    transition-delay: .75s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+15),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+15) {
    transition-delay: .8s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+16),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+16) {
    transition-delay: .85s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+17),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+17) {
    transition-delay: .9s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+18),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+18) {
    transition-delay: .95s;
}

.marketum_main_menu li:hover > ul.sub-menu > li:nth-child(2n+19),
.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu > li:nth-child(2n+19) {
    transition-delay: 1s;
}

.marketum_main_menu li ul.sub-menu li a {
    position: relative;
}

.marketum_main_menu li > ul.sub-menu li > a {
    display: block;
    letter-spacing: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 0 30px 17px 32px;
}

.marketum_main_menu li > ul.sub-menu li:hover > a {
    padding-left: 72px;
}

.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu {
    top: 0;
    left: 100%;
}

.marketum_main_menu li > ul.sub-menu > li:hover > ul.sub-menu {
    top: -1%;
}

.marketum_main_menu > li.menu-item-has-children > a {
    position: relative;
}

.marketum_main_menu > li.menu-item-has-children > a:after {
    content: '';
    width: 3px;
    height: 3px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -9px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_main_menu li ul.sub-menu > li:hover > a,
.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu > li:hover > a,
.marketum_main_menu > li > ul.sub-menu > li.current-menu-item > a,
.marketum_main_menu > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-item > a,
.marketum_main_menu > li > ul.sub-menu > li.current-menu-ancestor > a {
    padding-left: 45px;
}

.marketum_main_menu li > ul.sub-menu > li > a:before,
.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu > li > a:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    bottom: 24px;
    left: 33px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_main_menu li ul.sub-menu > li:hover > a:before,
.marketum_main_menu li > ul.sub-menu > li > ul.sub-menu > li:hover > a:before,
.marketum_main_menu li ul.sub-menu > li.current-menu-item > a:before,
.marketum_main_menu > li > ul.sub-menu > li.current-menu-ancestor > a:before,
.marketum_main_menu > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-item > a:before {
    opacity: 1;
}

.marketum_main_menu > li > ul.sub-menu > li.menu-item-has-children > a:after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    right: 32px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

/* ---------------- */
/* --- Tag Line --- */
/* ---------------- */
.marketum_tagline_container {
    display: flex;
    justify-content: space-between;
    padding: 8px 32px 10px;
}

.marketum_tagline_socials {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.marketum_tagline_socials li {
    padding-right: 36px;
    position: relative;
}

.marketum_tagline_socials li:not(:last-of-type):after,
.marketum_tagline_info:not(:last-of-type):after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    right: 16px;
}

.marketum_tagline_info_container {
    display: flex;
}

.marketum_tagline_info {
    position: relative;
}

.marketum_tagline_info:not(:last-of-type) {
    padding-right: 43px;
}

.marketum_tagline_info:not(:last-of-type):after {
    right: 21px;
}

.marketum_tagline_info_title {
    margin-right: 18px;
}

.marketum_tagline_phone .marketum_tagline_link {
    letter-spacing: -.6px;
}

/* --------------------- */
/* --- Header Search --- */
/* --------------------- */
.marketum_header_search_button {
    display: flex;
    align-items: center;
    padding: 0 27px;
    cursor: pointer;
}

.marketum_header_type_2 .marketum_header_search_button {
    padding: 0 53px;
}

.marketum_header_search_button .icon {
    font-size: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_header_search_overlay {
    background: #000000;
    pointer-events: none;
    cursor: pointer;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 49999;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_header_search_overlay.visible {
    opacity: .5;
    pointer-events: auto;
}

.marketum_header_search_container {
    width: 100%;
    background: #e6e6e2;
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, .04);
    padding: 26px 50px 38px;
    position: fixed;
    top: -110px;
    left: 0;
    z-index: 50000;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.marketum_header_search_container.active {
    top: 0;
}

body.admin-bar .marketum_header_search_container.active {
    top: 32px;
}

.marketum_header_search_container .form__field {
    height: auto;
    padding: 6px 0;
    margin-bottom: 0;
    line-height: 1.6;
    border: none;
    border-bottom: solid 1px #c4c4c2;
    background: transparent;
}

.marketum_header_search_close_button {
    width: 12px;
    height: 12px;
    margin-top: -13px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 53px;
}

.marketum_header_search_close_button:before,
.marketum_header_search_close_button:after {
    content: '';
    width: 17px;
    height: 2px;
    background: #091222;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_header_search_close_button:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.marketum_header_search_close_button:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* -------------------- */
/* --- Header Phone --- */
/* -------------------- */
.marketum_header_phone_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
    padding: 0 26px;
}

.marketum_header_phone_title {
    margin-bottom: 8px;
}

/* ----------------- */
/* --- Side Menu --- */
/* ----------------- */
.marketum_side_panel_button {
    display: flex;
    align-items: center;
    padding: 0 33px 0 37px;
    border-right: solid 1px #ededed;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
}

header.marketum_transparent_header_on .marketum_side_panel_button {
    border-right-color: transparent;
}

header.marketum_transparent_header_on.color_bg_on .marketum_side_panel_button {
    border-right-color: #ededed;
}

.marketum_header_type_2 .marketum_side_panel_button {
    background: #222628;
    border-color: #222628;
}

.marketum_dropdown_trigger {
    width: 33px;
    height: 10px;
    overflow: hidden;
    position: relative;
}

.marketum_dropdown_trigger:before,
.marketum_dropdown_trigger:after {
    content: '';
    width: 33px;
    height: 2px;
    background: #222628;
    position: absolute;
    left: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.marketum_header_type_2 .marketum_dropdown_trigger:before {
    background: #ffffff;
}

.marketum_dropdown_trigger:before {
    top: 0;
}

.marketum_dropdown_trigger:after {
    bottom: 0;
}

.marketum_dropdown_trigger_hover {
    width: 25px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: -100px;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 5;
}

.marketum_side_panel_button:hover .marketum_dropdown_trigger:after {
    left: 100px;
}

.marketum_side_panel_button:hover .marketum_dropdown_trigger_hover {
    left: 0;
}

.marketum_aside_dropdown {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 40000;
}

body.admin-bar .marketum_aside_dropdown {
    height: calc(100% - 32px);
    top: 32px;
}

.marketum_aside_dropdown.active {
    visibility: visible;
}

.marketum_aside_dropdown_inner {
    width: 400px;
    min-height: 100%;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .3);
    padding: 124px 60px 80px;
    position: relative;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

.marketum_aside_dropdown.active .marketum_aside_dropdown_inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.marketum_aside_dropdown_close {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 22px;
}

.marketum_aside_dropdown_close:before,
.marketum_aside_dropdown_close:after {
    content: '';
    width: 21px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_aside_dropdown_close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.marketum_aside_dropdown_close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.marketum_side_panel_logo {
    display: block;
    margin: 0 auto 35px;
    -webkit-transform: scale(1.16);
    transform: scale(1.16);
}

.marketum_side_panel_promo {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 30px;
}

.marketum_side_panel_insta_container {
    margin-bottom: 28px;
}

.marketum_side_panel_insta_container #sbi_images {
    padding: 0 !important;
    margin-left: -10px;
    float: none;
}

.marketum_side_panel_insta_container #sb_instagram {
    padding: 0 !important;
}

.marketum_side_panel_insta_container #sb_instagram #sbi_images .sbi_item {
    width: 32.333333% !important;
    padding: 0 0 10px 10px !important;
    float: none;
}

.marketum_side_panel_info_container {
    line-height: 1.9;
    margin-bottom: 42px;
}

.marketum_side_panel_info_container h4,
.marketum_side_panel_socials_container h4 {
    letter-spacing: -.7px;
    color: inherit;
    margin-bottom: 16px;
}

.marketum_side_panel_email {
    margin: 6px 0 7px;
}

.marketum_side_panel_email a,
.marketum_side_panel_info_item.marketum_side_panel_phone_1 a,
.marketum_side_panel_info_item.marketum_side_panel_phone_2 a,
.marketum_contacts_widget_phones a,
.marketum_address_widget_phones_container a {
    line-height: 1;
}

.marketum_side_panel_map .icon {
    font-size: 26px;
    margin-right: 5px;
    position: relative;
    top: 3px;
    left: -3px;
}

.marketum_side_panel_socials_container {
    margin-bottom: 28px;
}

.marketum_side_panel_socials {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.marketum_side_panel_socials li {
    margin: 0 15px 15px 0;
}

.marketum_side_panel_header_button {
    display: inline-block;
    border: solid 2px;
    padding: 13px 48px;
    overflow: hidden;
    position: relative;
}

.marketum_side_panel_header_button span {
    position: relative;
    z-index: 5;
}

.marketum_side_panel_header_button:before {
    content: '';
    width: 140%;
    height: 140%;
    display: block;
    opacity: 1;
    -webkit-animation: none;
    animation: none;
    -webkit-clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    clip-path: polygon(0 0, 100% 20px, 100% 100%,0 100%, 0 0);
    position: absolute;
    top: -2px;
    left: -3px;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
    -webkit-transition: transform .5s cubic-bezier(0,0,0.58,1);
    transition: transform .5s cubic-bezier(0,0,0.58,1);
    z-index: 1;
}

.marketum_side_panel_header_button:hover:before {
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
}

.marketum_side_panel_info_item.marketum_side_panel_map a:before {
    height: 2px;
    opacity: 1;
    animation: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_side_panel_info_item.marketum_side_panel_map a:hover:before {
    opacity: 0;
}

/* ------------------- */
/* --- Mobile Menu --- */
/* ------------------- */
.marketum_hamburger_container {
    display: none;
    align-items: center;
}

.marketum_hamburger {
    width: 30px;
    height: 16px;
    display: inline-block;
    margin: 0 0 0 35px;
    cursor: pointer;
    position: relative;
    top: 2px;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.marketum_header_type_2 .marketum_hamburger {
    margin-right: 35px;
}

.marketum_hamburger_inner {
    width: 24px;
    display: block;
    top: 9px;
    margin-top: -2px;
}

.marketum_hamburger_inner:before {
    width: 30px;
    top: -6px
}

.marketum_hamburger_inner:after {
    width: 19px;
    bottom: -6px;
    right: -4px;
}

.marketum_hamburger_inner,
.marketum_hamburger_inner:before,
.marketum_hamburger_inner:after {
    height: 2px;
    background-color: #333;
    position: absolute;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.marketum_hamburger_inner:before,
.marketum_hamburger_inner:after {
    content: "";
    display: block
}

.marketum_hamburger.is-active .marketum_hamburger_inner {
    width: 30px
}

.marketum_hamburger.is-active .marketum_hamburger_inner:after {
    right: 0;
    width: 30px
}

.marketum_menu_mobile_container {
    width: 320px;
    height: 100%;
    min-height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .3);
    padding: 10px 0 75px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

body.admin-bar .marketum_menu_mobile_container {
    padding-top: 55px;
}

.marketum_menu_mobile_container.marketum_menu_mobile_active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.marketum_menu_mobile_buttons_container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
}

.marketum_menu_mobile_search {
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.marketum_menu_mobile_search .icon {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_menu_mobile_close {
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    margin-left: 22px;
    position: relative;
}

.marketum_menu_mobile_close:before,
.marketum_menu_mobile_close:after {
    content: '';
    width: 22px;
    height: 2px;
    background: #222628;
    position: absolute;
    top: 11px;
    left: -2px;
}

.marketum_menu_mobile_close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.marketum_menu_mobile_close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.marketum_menu_mobile_wrapper {
    margin-top: 42px;
}

.marketum_mobile_menu,
.marketum_mobile_menu li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.marketum_mobile_menu > li {
    border-bottom: solid 1px #c0c0b7;
}

.marketum_mobile_menu > li > a {
    padding: 16px 22px 18px;
}

.marketum_mobile_menu li a {
    display: block;
    color: #1f2531;
    position: relative;
}

.marketum_mobile_menu li.menu-item-has-children > a:after {
    content: '';
    width: 3px;
    height: 3px;
    background: #222628;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    right: 20px;
}

.marketum_mobile_menu li.current-menu-item > a {
    padding-left: 10px;
}

.marketum_mobile_menu li.current-menu-item > a:before {
    content: '';
    width: 3px;
    height: 3px;
    position: absolute;
    bottom: 10px;
    left: 1px;
}

.marketum_mobile_menu li ul {
    display: none;
    padding: 18px 0 5px 52px;
}

.marketum_mobile_menu > li > ul {
    border-top: solid 1px #c0c0b7;
}

.marketum_mobile_menu > li > ul li a {
    margin-bottom: 15px;
}

.marketum_mobile_menu > li > ul > li > ul {
    padding: 0 0 0 25px;
}

.marketum_menu_mobile_container .marketum_side_panel_info_container {
    color: #1f2531;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0;
    font-weight: 500;
    padding: 0 33px;
    margin-top: 36px;
}

.marketum_menu_mobile_container .marketum_side_panel_info_title {
    font-size: 20px;
}

.marketum_menu_mobile_container .marketum_side_panel_email {
    margin: 4px 0 6px;
}

.marketum_menu_mobile_container .marketum_side_panel_socials_container {
    color: #222628;
    padding: 0 32px;
}

.marketum_menu_mobile_container .marketum_side_panel_socials_title {
    font-size: 20px;
}

.marketum_menu_mobile_container .marketum_side_panel_socials_container a:hover {
    color: #222628;
}

.marketum_menu_mobile_container .marketum_side_panel_header_button_container {
    padding: 0 32px;
}

.marketum_menu_mobile_container .marketum_side_panel_header_button {
    letter-spacing: 0;
    color: #222628;
    padding: 14px 35px 15px;
}

/* ---------------------------- */
/* ---------- Footer ---------- */
/* ---------------------------- */
.marketum_back_to_top_button {
    width: 50px;
    height: 50px;
    border: solid 2px;
    cursor: pointer;
    position: fixed;
    bottom: -100px;
    right: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 9999;
}

.marketum_back_to_top_button.show {
    bottom: 50px;
}

.marketum_back_to_top_button:hover {
    background: transparent;
}

.marketum_back_to_top_button:before {
    content: '';
    width: 2px;
    height: 30px;
    background: #ffffff;
    margin: -15px 0 0 -1px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}

.marketum_back_to_top_button:after {
    content: '';
    width: 16px;
    height: 16px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    margin-left: -8px;
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 5;

}

.footer_widget a {
    line-height: 1;
}

/* ----------------------- */
/* --- Top Footer Part --- */
/* ----------------------- */
.marketum_top_footer_container {
    padding: 75px 0 0;
}

.marketum_footer_container.marketum_footer_off.marketum_prefooter_off .marketum_top_footer_container {
    padding-bottom: 90px;
}

.marketum_top_footer_logo {
    display: inline-block;
}

.marketum_top_footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #424546;
    padding-bottom: 28px;
}

.marketum_top_footer_socials {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 8px 0 0;
    list-style: none;
    font-size: 14px;
}

.marketum_top_footer_socials li:not(:first-of-type) {
    margin-left: 34px;
}

.marketum_top_footer_socials li a {
    line-height: 1;
    color: inherit;
}

/* ---------------------- */
/* --- Prefooter Part --- */
/* ---------------------- */
.marketum_prefooter_container {
    margin-bottom: -30px;
}

.marketum_footer_container.marketum_footer_off .marketum_prefooter_container {
    margin-bottom: 0;
}

.marketum_prefooter_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding: 47px 0 0;
    font-size: 0;
    line-height: 0;
}

.marketum_top_footer_part_off .marketum_prefooter_wrapper {
    padding-top: 135px;
}

.marketum_footer_off .marketum_prefooter_wrapper {
    padding-bottom: 55px;
}

.marketum_footer_widget_title {
    letter-spacing: -.7px;
    margin-bottom: 7px;
}

.marketum_prefooter_type_2 .marketum_footer_widget_title {
    margin-bottom: 18px;
}

.footer_widget {
    width: 100%;
    max-width: 25%;
    flex: 0 0 25%;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 50px;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.7;
}

.marketum_prefooter_type_2 .footer_widget {
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
}

.marketum_prefooter_type_3 .footer_widget {
    width: 100%;
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
}

/* -------------------- */
/* -- Socials Widget -- */
/* -------------------- */
.widget_marketum_socials_widget p {
    margin-bottom: 11px;
}

.widget_marketum_socials_widget .marketum_contacts_widget_phones span {
    display: block;
    margin-bottom: 3px;
}

.marketum_contacts_widget_email_title,
.marketum_contacts_widget_email_info {
    display: block;
}

body .marketum_contacts_widget_email_title {
    color: #ffffff;
    margin-bottom: .5rem;
}

.marketum_contacts_widget_email a {
    line-height: 1;
}

.widget_marketum_socials_widget .marketum_side_panel_socials_title {
    display: none;
}

.marketum_contacts_widget_footer_socials_title {
    margin: 40px 0 14px;
}

.marketum_socials_widget_logo {
    margin-bottom: 24px;
}

.marketum_socials_widget_logo a:before,
.marketum_socials_widget_logo a:after {
    display: none;
}

.widget_marketum_socials_widget .marketum_footer_socials {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    font-size: 14px;
}

.widget_marketum_socials_widget .marketum_footer_socials li:not(:last-of-type) {
    margin-right: 15px;
}

.marketum_contacts_info {
    font-size: 14px;
    line-height: 1.9;
    color: #b7b7b7;
}

/* ---------------------- */
/* -- Subscribe Widget -- */
/* ---------------------- */
.footer_widget .marketum_subscirbe {
    position: relative;
}

.footer_widget .marketum_subscirbe input[type="email"] {
    font-size: 16px;
    color: #ffffff;
    border-color: #ffffff;
    background: transparent;
}

.footer_widget .marketum_subscirbe input[type="email"]:-moz-placeholder {
    color: #787b7d;
}

.footer_widget .marketum_subscirbe input[type="email"]::-webkit-input-placeholder {
    color: #787b7d;
}



.footer_widget .marketum_subscirbe .warketum_submit_button {
    position: absolute;
    top: 16px;
    right: 0;
}

.footer_widget .marketum_subscirbe input[type="submit"]:hover {
    border-color: transparent;
}

.footer_widget .marketum_subscribe_copyright {
    font-size: 14px;
    color: #b7b7b7;
    margin-top: 76px;
}

/* --------------------- */
/* -- Nav Menu Widget -- */
/* --------------------- */
.footer_widget.widget_nav_menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer_widget.widget_nav_menu ul li {
    margin-bottom: 8px;
}

.marketum_prefooter_type_2 .footer_widget.widget_nav_menu ul {
    font-size: 0;
    line-height: 0;
}

.marketum_prefooter_type_2 .footer_widget.widget_nav_menu ul li {
    width: 33.3%;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 5px;
}

.footer_widget.widget_nav_menu ul a {
    color: inherit;
}

/* -------------------- */
/* -- Address Widget -- */
/* -------------------- */
.marketum_address_widget_item {
    margin-bottom: 42px;
}

.widget_marketum_address_widget p {
    margin-bottom: 0;
}

.marketum_address_widget_item a {
    line-height: 1;
}

/* ------------------- */
/* --- Footer Part --- */
/* ------------------- */
.marketum_footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-content: center;
    font-size: 14px;
    padding: 30px 0 60px;
}

.marketum_footer_container.marketum_top_footer_part_off.marketum_prefooter_off .marketum_footer_wrapper {
    padding-top: 65px;
}

.marketum_footer_wrapper a {
    color: inherit;
}

.marketum_footer_menu,
.marketum_footer_menu_2 {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 500;
    letter-spacing: -.1px;
}

.marketum_footer_menu li:not(:first-of-type) {
    padding-left: 26px;
    position: relative;
}

.marketum_footer_menu li:not(:first-of-type):before {
    content: '';
    width: 2px;
    height: 10px;
    background: #888989;
    position: absolute;
    top: 7px;
    left: 12px;
}

/* --------------------- */
/* --- Footer Type 2 --- */
/* --------------------- */
.footer_type_2 .marketum_footer_wrapper {
    border-top: solid 1px #424546;
    padding-top: 52px;
    margin-top: -12px;
}

.footer_type_2 .marketum_footer_menu_container {
    display: flex;
    align-items: center;
}

.marketum_footer_menu_2 li:not(:first-of-type) {
    padding-left: 36px;
    position: relative;
}

.marketum_footer_menu_2 a {
    font-size: 16px;
    color: #ffffff;
}

/* ------------------------------------------ */
/* ---------- Floating Placeholder ---------- */
/* ------------------------------------------ */
.input-floating-wrap {
    position: relative;
    display: block;
}

.input-floating-wrap input:focus ~ .floating-placeholder, .input-floating-wrap input:not(:placeholder-shown) ~ .floating-placeholder,
.input-floating-wrap textarea:focus ~ .floating-placeholder,
.input-floating-wrap textarea:not(:placeholder-shown) ~ .floating-placeholder {
    -webkit-transform: translateY(-1.3em);
    -ms-transform: translateY(-1.3em);
    transform: translateY(-1.3em);
}

.input-floating-wrap input::-webkit-input-placeholder,
.input-floating-wrap textarea::-webkit-input-placeholder {
    color: transparent !important;
}

.input-floating-wrap input:-moz-placeholder,
.input-floating-wrap textarea:-moz-placeholder {
    color: transparent !important;
}

.input-floating-wrap input::-moz-placeholder,
.input-floating-wrap textarea::-moz-placeholder {
    color: transparent !important;
}

.input-floating-wrap input:-ms-input-placeholder,
.input-floating-wrap textarea:-ms-input-placeholder {
    color: transparent !important;
}

.input-floating-wrap .floating-placeholder {
    font-size: 14px;
    color: #6d7173;
    position: absolute;
    top: 3px;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 8px 18px 8px 0;
    pointer-events: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: transform 0.3s, font-size 0.3s;
    transition: transform 0.3s, font-size 0.3s;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="range"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="range"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
input[type="month"]:-moz-placeholder,
input[type="week"]:-moz-placeholder,
input[type="time"]:-moz-placeholder,
input[type="datetime"]:-moz-placeholder,
input[type="datetime-local"]:-moz-placeholder,
input[type="color"]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="range"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="range"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}

/* -------------------------------- */
/* ---------- Page Title ---------- */
/* -------------------------------- */
.marketum_page_title_container {
    display: flex;
    align-items: stretch;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    z-index: 100;
}

.marketum_page_title_container:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .27);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.marketum_page_title_container.marketum_page_title_overlay_hide:after {
    display: none;
}

.marketum_page_title_container .container {
    width: 100%;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 5;
}

.marketum_page_title_container_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marketum_page_title_wrapper {
    width: 100%;
    margin-top: -60px;
    position: relative;
}

.marketum_page_title {
    letter-spacing: -.03em;
    margin-bottom: 14px;
    line-height: 1.1;
    word-wrap: break-word;
}

.marketum_page_promo_text {
    letter-spacing: 0;
}

.marketum_page_subtitle {
    line-height: 1;
    position: absolute;
    bottom: -57px;
    left: 19px;
}

.marketum_breadcrumbs_container {
    max-width: 500px;
    font-size: 15px;
    color: #ffffff;
    background: #222628;
    padding: 80px 73px 25px;
    position: absolute;
    bottom: 0;
    right: 15px;
    z-index: 10;
}

.marketum_breadcrumbs_container:after {
    content: '';
    width: 138px;
    height: 203px;
    background: url("../img/breadcrumbs_bg.png");
    margin-left: -47px;
    position: absolute;
    bottom: -70px;
    left: 100%;
}

.marketum_breadcrumbs_container .delimiter {
    width: 3px;
    height: 3px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 12px;
    position: relative;
    top: 1px;
}

.marketum_breadcrumbs_container a {
    color: inherit;
}

.marketum_breadcrumbs_container span.current {
    word-break: break-word;
}

/* ------------------------------------- */
/* ---------- Sidebar Widgets ---------- */
/* ------------------------------------- */
.marketum_sidebar_right .marketum_content_container {
    padding-right: 10px;
}

.marketum_sidebar_left .marketum_content_container {
    padding-left: 10px;
}

.marketum_page_content_container .row.marketum_sidebar_left {
    flex-direction: row-reverse;
}
.marketum_sidebar .widget:last-of-type {
    margin-bottom: 0;
}

/* -------------------- */
/* --- Title Widget --- */
/* -------------------- */
.marketum_sidebar_widget_title,
.marketum_widget_wrapper .widget_title {
    border-bottom: solid 2px;
    padding: 0 2px 6px;
    margin-bottom: 24px;
}

.marketum_sidebar_widget_title span {
    float: right;
}

/* --------------------- */
/* --- Search Widget --- */
/* --------------------- */
.marketum_sidebar .wp-block-search,
.elementor-widget-wp-widget-search .search-form,
.marketum_sidebar .widget_search .marketum_search_form {
    background: #e6e6e2;
    padding: 7px 20px 30px;
    position: relative;
}

.marketum_sidebar .wp-block-search .wp-block-search__inside-wrapper {
    display: block;
    position: relative;
}

.marketum_sidebar .wp-block-search .wp-block-search__label {
    display: none;
}

.marketum_sidebar .wp-block-search input[type="search"],
.elementor-widget-wp-widget-search .search-form .search-form-field {
    height: 54px;
    border: none;
    border-bottom: solid 1px #c4c4c2;
    background: transparent;
    padding: 0 38px 0 0;
    margin: 0;
}

.marketum_sidebar .wp-block-search button[type="submit"],
.elementor-widget-wp-widget-search .search-form .search-form-icon,
.marketum_sidebar .widget_search .marketum_icon_search {
    height: 54px;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0;
}

.marketum_sidebar .widget_search .marketum_icon_search {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 8px;
    right: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 5;
}

.marketum_sidebar .widget_search .form__field {
    background: transparent;
}

.elementor-widget-wp-widget-search .search-form .search-form-icon {
    font-size: 24px;
    right: -10px;
}

.marketum_sidebar .wp-block-search button[type="submit"] > svg {
    fill: currentColor;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.elementor-widget-wp-widget-search .search-form .search-form-icon {
    display: inline-block;
    font-size: 18px;
    color: #091222;
    cursor: pointer;
    top: 15px;
    right: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.elementor-widget-wp-widget-search .search-form .search-form-icon > svg {
    fill: currentColor;
}

/* ----------------------- */
/* --- Listing Widgets --- */
/* ----------------------- */
.marketum_sidebar .widget.widget_categories ul,
.marketum_sidebar .widget.widget_marketum_categories_widget ul,
.marketum_sidebar .widget.widget_recent_entries ul,
.marketum_sidebar .widget.widget_archive ul,
.marketum_sidebar .widget.widget_pages ul,
.marketum_sidebar .widget.widget_meta ul,
.marketum_sidebar .widget.widget_recent_comments ul,
.marketum_sidebar .widget.widget_rss ul,
.marketum_sidebar .widget.widget_nav_menu ul,
.marketum_sidebar .widget.widget_product_categories ul,
.marketum_sidebar .widget.widget_layered_nav ul,
.marketum_sidebar .widget.widget_rating_filter ul,
.footer_widget.widget_categories ul,
.footer_widget.widget_marketum_categories_widget ul,
.footer_widget.widget_recent_entries ul,
.footer_widget.widget_archive ul,
.footer_widget.widget_pages ul,
.footer_widget.widget_meta ul,
.footer_widget.widget_recent_comments ul,
.footer_widget.widget_rss ul,
.footer_widget.widget_nav_menu ul,
.footer_widget.widget_product_categories ul,
.footer_widget.widget_layered_nav ul,
.footer_widget.widget_rating_filter ul,
.wp-block-archives-list,
.wp-block-rss,
.elementor-widget-wp-widget-categories ul,
.elementor-widget-wp-widget-marketum_categories_widget ul,
.marketum_sidebar .wp-block-woocommerce-product-categories ul,
.marketum_sidebar .wp-block-page-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketum_sidebar .widget.widget_nav_menu ul li .sub-menu {
    padding-left: 25px;
}

.footer_widget.widget_nav_menu ul li .sub-menu {
    padding-left: 0;
}

.marketum_sidebar .widget.widget_categories,
.marketum_sidebar .widget.widget_marketum_categories_widget,
.marketum_sidebar .widget_pages,
.marketum_sidebar .widget_meta,
.marketum_sidebar .widget_recent_comments,
.marketum_sidebar .widget_recent_entries,
.marketum_sidebar .widget_rss,
.marketum_sidebar .wp-block-woocommerce-product-categories,
.marketum_sidebar .widget_nav_menu,
.marketum_sidebar .widget_block {
    margin-bottom: 51px;
}

.marketum_sidebar .widget_search {
    margin-bottom: 60px;
}

.marketum_sidebar .widget_text {
    margin-bottom: 30px;
}

.marketum_sidebar .widget.widget_archive {
    margin-bottom: 65px;
}

.marketum_sidebar .widget_pages a:before,
.marketum_sidebar .widget_pages a:after,
.marketum_sidebar .widget_meta a:before,
.marketum_sidebar .widget_meta a:after,
.marketum_sidebar .widget_recent_entries a:before,
.marketum_sidebar .widget_recent_entries a:after,
.marketum_sidebar .widget_rss a:before,
.marketum_sidebar .widget_rss a:after,
.elementor-widget-wp-widget-categories ul li a:before,
.elementor-widget-wp-widget-categories ul li a:after,
.elementor-widget-wp-widget-marketum_categories_widget ul li a:before,
.elementor-widget-wp-widget-marketum_categories_widget ul li a:after,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li a:before,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li a:after,
.marketum_sidebar .wp-block-page-list li a:before,
.marketum_sidebar .wp-block-page-list li a:after {
    display: none;
}

.marketum_sidebar .widget.widget_categories ul li,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li,
.marketum_sidebar .widget.widget_recent_entries ul li,
.marketum_sidebar .widget.widget_archive ul li,
.marketum_sidebar .widget.widget_pages ul li,
.marketum_sidebar .widget.widget_meta ul li,
.marketum_sidebar .widget.widget_recent_comments ul li,
.marketum_sidebar .widget.widget_product_categories ul li,
.marketum_sidebar .widget.widget_layered_nav ul li,
.marketum_sidebar .widget.widget_rating_filter ul li,
.footer_widget.widget_categories ul li,
.footer_widget.widget_marketum_categories_widget ul li,
.footer_widget.widget_recent_entries ul li,
.footer_widget.widget_archive ul li,
.footer_widget.widget_pages ul li,
.footer_widget.widget_meta ul li,
.footer_widget.widget_recent_comments ul li,
.footer_widget.widget_product_categories ul li,
.footer_widget.widget_layered_nav ul li,
.footer_widget.widget_rating_filter ul li,
.wp-block-archives-list li,
.wp-block-latest-posts li,
.wp-block-rss li,
.elementor-widget-wp-widget-categories ul li,
.elementor-widget-wp-widget-marketum_categories_widget ul li,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li,
.marketum_sidebar .wp-block-page-list li {
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 600;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.marketum_sidebar .widget.widget_categories ul li,
.marketum_sidebar .widget.widget_archive ul li,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li,
.marketum_sidebar .widget_layered_nav ul li,
.marketum_sidebar .widget.widget_rating_filter ul li,
.elementor-widget-wp-widget-categories ul li,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li,
.marketum_sidebar .wp-block-page-list li {
    position: relative;
}

.marketum_sidebar .widget.widget_rating_filter ul li a,
.elementor-widget-wp-widget-categories ul li a,
.marketum_sidebar .wp-block-page-list li a {
    display: block;
}

.marketum_sidebar .widget.widget_recent_comments ul li {
    position: relative;
    padding-left: 10px;
}

.marketum_sidebar .widget.widget_categories ul li a:before,
.marketum_sidebar .widget.widget_categories ul li a:after,
.marketum_sidebar .widget.widget_archive ul li a:before,
.marketum_sidebar .widget.widget_archive ul li a:after,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li a:before,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li a:after,
.marketum_sidebar .widget_layered_nav ul li a:before,
.marketum_sidebar .widget_layered_nav ul li a:after,
.marketum_sidebar .widget.widget_rating_filter ul li a:before,
.marketum_sidebar .widget.widget_rating_filter ul li a:after,
.marketum_sidebar .widget_recent_comments ul li a:before,
.marketum_sidebar .widget_recent_comments ul li a:after {
    display: none;
}

.marketum_sidebar .widget.widget_categories ul li,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li,
.marketum_sidebar .widget.widget_recent_entries ul li,
.marketum_sidebar .widget.widget_archive ul li,
.marketum_sidebar .widget.widget_pages ul li,
.marketum_sidebar .widget.widget_meta ul li,
.marketum_sidebar .widget.widget_recent_comments ul li,
.marketum_sidebar .widget.widget_product_categories ul li,
.marketum_sidebar .widget.widget_layered_nav ul li,
.marketum_sidebar .widget.widget_rating_filter ul li,
.wp-block-archives-list li,
.wp-block-latest-posts li,
.wp-block-rss li,
body .marketum_content_wrapper .elementor-widget-wp-widget-categories ul li:not(:last-of-type),
body .marketum_content_wrapper .elementor-widget-wp-widget-marketum_categories_widget ul li:not(:last-of-type),
.marketum_sidebar .wp-block-woocommerce-product-categories ul li:not(:last-of-type),
.marketum_sidebar .wp-block-page-list li:not(:last-of-type) {
    margin-bottom: 16px;
}

.marketum_sidebar .widget.widget_categories ul li:last-of-type,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li:last-of-type,
.marketum_sidebar .widget.widget_recent_entries ul li:last-of-type,
.marketum_sidebar .widget.widget_archive ul li:last-of-type,
.marketum_sidebar .widget.widget_pages ul li:last-of-type,
.marketum_sidebar .widget.widget_meta ul li:last-of-type,
.marketum_sidebar .widget.widget_recent_comments ul li:last-of-type,
.marketum_sidebar .widget.widget_product_categories ul li:last-of-type,
.marketum_sidebar .widget.widget_layered_nav ul li:last-of-type,
.marketum_sidebar .widget.widget_rating_filter ul li:last-of-type,
.wp-block-archives-list li:last-of-type,
.wp-block-latest-posts li:last-of-type,
.wp-block-rss li:last-of-type,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li:last-of-type {
    margin-bottom: 0;
}

.marketum_sidebar .widget.widget_categories ul li ul.children,
.marketum_sidebar .widget.widget_marketum_categories_widget ul li ul.children,
.marketum_sidebar .widget.widget_recent_entries ul li ul.children,
.marketum_sidebar .widget.widget_archive ul li ul.children,
.marketum_sidebar .widget.widget_pages ul li ul.children,
.marketum_sidebar .widget.widget_meta ul li ul.children,
.marketum_sidebar .widget.widget_recent_comments ul li ul.children,
.marketum_sidebar .widget.widget_product_categories ul li ul.children,
.marketum_sidebar .widget.widget_layered_nav ul li ul.children,
.marketum_sidebar .widget.widget_rating_filter ul li ul.children,
.wp-block-archives-list li ul.children,
.wp-block-latest-posts li ul.children,
.wp-block-rss li ul.children,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li.children {
    margin-top: 16px;
    margin-left: 5px;
}

.footer_widget.widget_categories ul li,
.footer_widget.widget_marketum_categories_widget ul li,
.footer_widget.widget_recent_entries ul li,
.footer_widget.widget_archive ul li,
.footer_widget.widget_pages ul li,
.footer_widget.widget_meta ul li,
.footer_widget.widget_recent_comments ul li,
.footer_widget.widget_product_categories ul li,
.footer_widget.widget_layered_nav ul li,
.footer_widget.widget_rating_filter ul li {
    margin-bottom: 8px;
}

.footer_widget.widget_categories ul li a,
.footer_widget.widget_marketum_categories_widget ul li a,
.footer_widget.widget_recent_entries ul li a,
.footer_widget.widget_archive ul li a,
.footer_widget.widget_pages ul li a,
.footer_widget.widget_meta ul li a,
.footer_widget.widget_recent_comments ul li a,
.footer_widget.widget_product_categories ul li a,
.footer_widget.widget_layered_nav ul li a,
.footer_widget.widget_rating_filter ul li a {
    color: #fff;
}

.footer_widget.widget_categories ul li ul.children,
.footer_widget.widget_marketum_categories_widget ul li ul.children,
.footer_widget.widget_recent_entries ul li ul.children,
.footer_widget.widget_archive ul li ul.children,
.footer_widget.widget_pages ul li ul.children,
.footer_widget.widget_meta ul li ul.children,
.footer_widget.widget_recent_comments ul li ul.children,
.footer_widget.widget_product_categories ul li ul.children,
.footer_widget.widget_layered_nav ul li ul.children,
.footer_widget.widget_rating_filter ul li ul.children {
    margin-top: 8px;
    margin-left: 10px;
}

.marketum_sidebar .widget.widget_rss ul li,
.wp-block-rss li a {
    margin-bottom: 30px;
}

.marketum_sidebar .widget.widget_rss ul li a,
.footer_widget.widget_rss ul li a {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.marketum_blog_content_container .wp-block-rss li a {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
}

.marketum_blog_content_container .wp-block-archives-list li span.post-count {
    display: inline-block;
    margin-left: 20px;
}

.marketum_sidebar .widget.widget_nav_menu ul li a,
.footer_widget.widget_nav_menu a {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
}

.footer_widget.widget_nav_menu a {
    margin-bottom: 0;
}

.widget_rss .rsswidget img {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.footer_widget.widget_rss .rsswidget img {
    top: 0;
}

.widget_rss .rss-date {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #999999;
    margin-bottom: 10px;
}

.widget_rss cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.footer_widget.widget_rss .rss-date,
.footer_widget.widget_rss cite {
    color: #ffffff;
}

.footer_widget.widget_rss ul li {
    margin-bottom: 17px;
}

.marketum_sidebar .widget.widget_categories ul li a:hover,
.marketum_sidebar .widget.widget_recent_entries ul li a:hover,
.marketum_sidebar .widget.widget_archive ul li a:hover,
.marketum_sidebar .widget.widget_pages ul li a:hover,
.marketum_sidebar .widget.widget_meta ul li a:hover,
.marketum_sidebar .widget.widget_recent_comments ul li a:hover,
.marketum_sidebar .widget.widget_rss .widget_title a:hover,
.marketum_sidebar .widget.widget_rss ul li a:hover,
.marketum_sidebar .widget.widget_nav_menu ul li a:hover,
.marketum_sidebar .widget.widget_layered_nav ul li a:hover,
.marketum_sidebar .widget.widget_rating_filter ul li a:hover,
.marketum_sidebar .widget_calendar table a:hover,
.wp-block-archives-list li a:hover,
.wp-block-latest-posts li a:hover,
.wp-block-rss li a:hover {

}

.marketum_widget_select_wrapper,
.wp-block-archives.wp-block-archives-dropdown,
.wp-block-archives-dropdown,
.wp-block-categories.wp-block-categories-dropdown {
    position: relative;
}

.marketum_sidebar .marketum_widget_select_wrapper,
.footer_widget .marketum_widget_select_wrapper {
    margin-top: 21px;
}

.marketum_widget_select_wrapper:after,
.wp-block-archives-dropdown:after,
.wp-block-archives.wp-block-archives-dropdown:after,
.wp-block-categories.wp-block-categories-dropdown:after {
    content: '\f107';
    font-family: FontAwesome, sans-serif;
    font-size: 14px;
    line-height: 60px;
    color: #999999;
    position: absolute;
    top: 0;
    right: 19px;
}

.marketum_sidebar .widget select,
.footer_widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
    width: 100%;
    height: 60px;
    border-radius: 0;
    color: #999999;
    border: solid 2px #e1e1e1;
    background: transparent;
    padding: 0 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.footer_widget select {
    color: #FFFFFF;
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
    background: transparent;
}

.marketum_sidebar .widget select:active,
.marketum_sidebar .widget select:focus,
.footer_widget select:active,
.footer_widget select:focus,
.wp-block-archives-dropdown select:focus,
.wp-block-archives-dropdown select:active,
.wp-block-categories-dropdown select:focus,
.wp-block-categories-dropdown select:active {
    outline: none;
}

.wp-block-archives-list,
.wp-block-archives-dropdown select,
.wp-block-calendar,
.wp-block-categories-dropdown,
.wp-block-latest-comments,
.wp-block-latest-posts,
.wp-block-search,
.wp-block-tag-cloud,
.wp-block-rss {
    margin-bottom: 30px;
}

.marketum_sidebar .widget_nav_menu ul li a {
    position: relative;
}

.marketum_sidebar .widget_nav_menu ul li.menu-item-has-children > a,
.footer_widget.widget_nav_menu:nth-of-type(n+4) ul li.menu-item-has-children > a {
    width: 100%;
    position: relative;
}

.marketum_sidebar .widget_nav_menu ul li > a:after,
.marketum_sidebar .widget_nav_menu ul li > a:before,
.footer_widget.widget_nav_menu:nth-of-type(n+5) ul li > a:before,
.footer_widget.widget_nav_menu:nth-of-type(n+5) ul li > a:after {
    display: none;
}

.marketum_sidebar .widget_nav_menu ul li.menu-item-has-children > a:after,
.footer_widget.widget_nav_menu:nth-of-type(n+4) ul li.menu-item-has-children > a:after {
    content: '\f107';
    width: auto;
    height: auto;
    display: block;
    font-family: FontAwesome, sans-serif;
    cursor: pointer;
    background: transparent;
    opacity: 1;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.marketum_sidebar .widget_nav_menu ul li.menu-item-has-children.open > a:after,
.footer_widget.widget_nav_menu:nth-of-type(n+4) ul li.menu-item-has-children.open > a:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.marketum_sidebar .widget_nav_menu ul li.menu-item-has-children ul.sub-menu,
.footer_widget.widget_nav_menu:nth-of-type(n+4) ul li.menu-item-has-children ul.sub-menu {
    display: none;
}

.marketum_sidebar .widget.widget_nav_menu ul li .sub-menu {
    padding-left: 15px;
}

.footer_widget.widget_nav_menu:nth-of-type(n+4) ul li .sub-menu {
    margin-top: 8px;
    margin-left: 10px;
}

.footer_widget.widget_search .form__field {
    background: transparent;
    color: #FFFFFF;
}

.footer_widget.widget_search .form__field::placeholder {
    background: transparent;
    color: #FFFFFF;
}

.footer_widget.widget_search .form__field:-moz-placeholder {
    background: transparent;
    color: #FFFFFF;
}

.footer_widget.widget_nav_menu:nth-of-type(n+4) ul.menu li {
    width: 100%;
}

.marketum_sidebar .widget.widget_categories ul li,
.marketum_sidebar .widget.widget_pages ul li,
.marketum_sidebar .widget.widget_meta ul li,
.marketum_sidebar .widget_product_categories ul li,
.marketum_sidebar .widget_archive ul li,
.marketum_sidebar .widget_recent_entries ul li,
.elementor-widget-wp-widget-categories ul li,
.elementor-widget-wp-widget-marketum_categories_widget ul li,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li,
.marketum_sidebar .wp-block-page-list li {
    padding-left: 10px;
    position: relative;
}

.marketum_sidebar .widget_archive ul li .post-count,
.footer_widget.widget_archive ul li .post-count {
    float: right;
}

.marketum_sidebar .widget.widget_categories ul li:before,
.marketum_sidebar .widget.widget_pages ul li:before,
.marketum_sidebar .widget.widget_meta ul li:before,
.marketum_sidebar .widget.widget_recent_comments ul li:before,
.marketum_sidebar .widget_product_categories ul li:before,
.marketum_sidebar .widget_archive ul li:before,
.marketum_sidebar .widget.widget_recent_comments ul li:before,
.marketum_sidebar .widget_recent_entries ul li:before,
.elementor-widget-wp-widget-categories ul li:before,
.elementor-widget-wp-widget-marketum_categories_widget ul li:before,
.marketum_sidebar .wp-block-woocommerce-product-categories ul li:before,
.marketum_sidebar .wp-block-page-list li:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-top: -9px;
    position: absolute;
    top: 24px;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

/* ------------------- */
/* --- Tags Widget --- */
/* ------------------- */
.marketum_sidebar .widget.widget_tag_cloud {
    margin-bottom: 48px;
}

.marketum_sidebar .widget.widget_tag_cloud .widget_title {
    margin-bottom: 35px;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud,
.footer_widget.widget_tag_cloud .tagcloud,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud,
.wp-block-tag-cloud {
    font-size: 0;
    line-height: 0;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud a,
.footer_widget.widget_tag_cloud .tagcloud a,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud a,
.wp-block-tag-cloud a,
.marketum_standard_blog_listing .marketum_blog_listing_categories a {
    display: inline-block;
    font-size: 14px !important;
    line-height: 1;
    letter-spacing: 0.1px;
    font-weight: 600;
    padding: 8px 14px;
    margin: 0 10px 10px 0;
    background: #e6e6e2;
    border-radius: 0;
    position: relative;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud a:before,
.footer_widget.widget_tag_cloud .tagcloud a:before,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud a:before,
.wp-block-tag-cloud a:before,
.marketum_standard_blog_listing .marketum_blog_listing_categories a:before {
    display: none;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud a:after,
.footer_widget.widget_tag_cloud .tagcloud a:after,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud a:after,
.wp-block-tag-cloud a:after,
.marketum_standard_blog_listing .marketum_blog_listing_categories a:after {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 1;
    top: auto;
    bottom: 10px;
    left: 8px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud a:hover:after,
.footer_widget.widget_tag_cloud .tagcloud a:hover:after,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud a:hover:after,
.wp-block-tag-cloud a:hover:after,
.marketum_standard_blog_listing .marketum_blog_listing_categories a:hover:after {
    opacity: 1;
    background-color: #ffffff;
}

.wp-block-tag-cloud a {
    text-decoration: none;
}

.marketum_sidebar .widget.widget_tag_cloud .tagcloud a:hover,
.footer_widget.widget_tag_cloud .tagcloud a:hover,
.marketum_sidebar .widget.widget_product_tag_cloud .tagcloud a:hover,
.wp-block-tag-cloud a:hover,
.marketum_standard_blog_listing .marketum_blog_listing_categories a:hover {
    color: #ffffff;
}

/* ----------------------------- */
/* --- Featured Posts Widget --- */
/* ----------------------------- */
.marketum_sidebar .widget.widget_marketum_featured_posts_widget,
.marketum_sidebar .widget.widget_recent_comments {
    margin-bottom: 65px;
}

.widget_marketum_featured_posts_widget .widget_title,
.marketum_sidebar .widget.widget_recent_comments .widget_title {
    margin-bottom: 25px;
}

.marketum_sidebar .recent-posts__item,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment {
    min-height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.marketum_sidebar .recent-posts__item:not(:last-of-type),
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment:not(:last-of-type) {
    margin-bottom: 29px;
}

.marketum_sidebar .recent-posts__item-img,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment img {
    width: 84px;
    height: 84px;
    position: relative;
    top: 9px;
}

.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment img {
    border-radius: 0;
    top: 0;
}

.marketum_sidebar .recent-posts__item-img img {
    z-index: 1
}

.marketum_sidebar .recent-posts__item-description,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment article {
    width: calc(100% - 110px);
    line-height: 20px
}

.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment footer,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
    margin-left: 0;
}

.marketum_sidebar .recent-posts__item-link,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment footer {
    line-height: 27px;
    letter-spacing: .2px;
    font-weight: 600;
    text-decoration: none;
}

.marketum_sidebar .recent-posts__item-link:before,
.marketum_sidebar .recent-posts__item-link:after,
.recent_posts_post_meta span:before,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment footer a:before,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment footer a:after,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
    display: none;
}

.recent_posts_post_meta {
    margin: 5px 0 6px;
}

.recent_posts_post_meta span,
.marketum_sidebar .widget.widget_recent_comments .wp-block-latest-comments__comment footer time {
    font-size: 14px;
    font-weight: 600;
}

.recent_posts_post_meta .recent-posts__item-value {
    float: left;
}

.recent_posts_post_meta .recent_posts_comments {
    float: right;
}

.recent_posts_post_meta .recent_posts_comments svg {
    font-size: 10px;
    margin: -3px 4px 0 0;
}

/* ------------------------ */
/* --- Instagram Widget --- */
/* ------------------------ */
.marketum_sidebar .widget_instagram-feed-widget {
    margin: 33px 0 65px;
}

.marketum_sidebar .widget_instagram-feed-widget .widget_title {
    margin-bottom: 33px;
    position: relative;
}

.marketum_sidebar .widget_instagram-feed-widget .widget_title:before {
    content: '\f16d';
    font-family: FontAwesome, sans-serif;
    font-size: 22px;
    position: absolute;
    top: -2px;
    right: 0;
}

.marketum_sidebar .widget_instagram-feed-widget #sb_instagram.sbi_fixed_height,
.marketum_sidebar .widget_instagram-feed-widget .sb_instagram.sbi_fixed_height {
    height: auto !important;
}

.marketum_sidebar .widget_instagram-feed-widget #sbi_images,
.marketum_sidebar .widget_instagram-feed-widget .sbi_images {
    padding: 0 !important;
    margin-left: -10px;
}

.marketum_sidebar .widget_instagram-feed-widget #sb_instagram #sbi_images .sbi_item {
    padding: 0 !important;
}

.sb_instagram.sbi_col_6 .sbi_images .sbi_item {
    width: 16.66%;
}

body .marketum_sidebar .widget_instagram-feed-widget .sbi_item,
.footer_widget.widget_instagram-feed-widget .sbi_item,
body .marketum_sidebar .widget_instagram-feed-widget .sb_instagram.sbi_col_6 .sbi_images .sbi_item,
.footer_widget.widget_instagram-feed-widget .sb_instagram.sbi_col_6 .sbi_images .sbi_item {
    width: 33.333333% !important;
}

.marketum_sidebar .widget_instagram-feed-widget .sbi_photo_wrap {
    padding: 0 0 10px 10px;
}

.marketum_sidebar .widget_instagram-feed-widget .sbi_photo_wrap a:before {
    display: none;
}

.marketum_sidebar .widget_instagram-feed-widget .sbi_photo_wrap a:after {
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}
.marketum_sidebar .widget_instagram-feed-widget .sbi_photo_wrap a:hover:after {
    opacity: .4;
}

.footer_widget.widget_instagram-feed-widget #sb_instagram.sbi_fixed_height,
.footer_widget.widget_instagram-feed-widget .sb_instagram.sbi_fixed_height {
    height: auto !important;
}

.footer_widget .sb_instagram {
    margin-left: -8px;
}

.sb_instagram {
    line-height: 0;
}

.sb_instagram .sbi_images,
.sb_instagram .sbi_item .sbi_photo_wrap a {
    height: 100% !important;
}

.sb_instagram .sbi_item {
    height: 100%;
}

.sb_instagram .sbi_item {
    display: inline-block;
}

.sb_instagram .sbi_item .sbi_photo_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.sb_instagram .sbi_item .sbi_photo_wrap a {
    display: block;
}

body .footer_widget .sb_instagram .sbi_images .sbi_item {
    padding: 0 0 8px 8px !important;
}

/* --------------------- */
/* --- Banner Widget --- */
/* --------------------- */
.widget_marketum_banner_widget {
    margin-bottom: 59px;
}

.widget_marketum_banner_widget .marketum_banner_wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 126px 0 141px 62px;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.widget_marketum_banner_widget .marketum_banner_wrapper .marketum_banner_content {
    position: relative;
    z-index: 5;
}

.widget_marketum_banner_widget .marketum_banner_wrapper .marketum_banner_content h4 {
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
}

/* ----------------------- */
/* --- Calendar Widget --- */
/* ----------------------- */
.marketum_sidebar .widget_calendar,
.wp-block-calendar {
    margin-bottom: 39px;
}

.marketum_sidebar .widget_calendar .widget_title {
    margin-bottom: 24px;
    padding: 0;
}

.calendar_wrap {
    padding: 20px;
    background: #222628;
    position: relative;
}

.wp-block-calendar table,
.marketum_sidebar .widget_calendar table,
.footer_widget.widget_calendar table {
    width: 100%;
}

.wp-block-calendar caption,
.marketum_sidebar .widget_calendar caption,
.footer_widget.widget_calendar caption {
    caption-side: top;
    font-family: Cambon, sans-serif;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    padding: 0 0 11px;
}

.footer_widget.widget_calendar caption {
    color: #ffffff;
}

.wp-block-calendar table,
.marketum_sidebar .widget_calendar table,
.footer_widget.widget_calendar table,
.wp-block-calendar table,
.marketum_sidebar .widget_calendar nav {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}


.marketum_sidebar .widget_calendar table th,
.footer_widget.widget_calendar table th,
.footer_widget.widget_calendar table td,
.wp-block-calendar table th,
.marketum_sidebar .widget_calendar table td,
.wp-block-calendar table td {
    border: none;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

.marketum_sidebar .widget_calendar table th,
.footer_widget.widget_calendar table th,
.wp-block-calendar table th {
    font-family: Cambon, sans-serif;
    font-size: 16px;
    color: #afafaf;
    font-weight: 500;
}

.wp-block-calendar table th {
    background: transparent;
    font-weight: 400;
}

.footer_widget.widget_calendar table td,
.marketum_sidebar .widget_calendar table td,
.wp-block-calendar table td {
    font-size: 14px;
    color: #666666;
    padding: 7px;
}

.footer_widget.widget_calendar table td,
.marketum_sidebar .widget_calendar table td,
.wp-block-calendar table td {

}

.marketum_sidebar .widget_calendar table td a,
.wp-block-calendar table td a,
.footer_widget.widget_calendar table td a {
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 5;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_sidebar .widget_calendar table td#today,
.wp-block-calendar table td#today,
.footer_widget.widget_calendar table td#today {
    color: #ffffff;
}


.marketum_sidebar .widget_calendar table td a:after,
.wp-block-calendar table td a:after,
.footer_widget.widget_calendar table td a:after {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 0;
    margin: -16px 0 0 -16px;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_sidebar .widget_calendar table td a:before,
.wp-block-calendar table td a:before,
.footer_widget.widget_calendar table td a:before {
    display: none;
}

.marketum_sidebar .widget_calendar table td a,
.wp-block-calendar table td a {
    font-weight: 700;
    color: #FFFFFF;
}

.marketum_sidebar .widget_calendar table td a:hover,
.wp-block-calendar table td a:hover {
    color: #000;
}

.wp-block-calendar .wp-calendar-nav a {
    color: #333333;
    font-weight: 700;
    text-decoration: none;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav,
.footer_widget.widget_calendar .wp-calendar-nav,
.wp-block-calendar .wp-calendar-nav {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    position: absolute;
    top: 25px;
    z-index: 5;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav span:not(.pad),
.wp-block-calendar .wp-calendar-nav span:not(.pad),
.footer_widget.widget_calendar .wp-calendar-nav span:not(.pad) {
    position: relative;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a,
.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-prev a,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-next a {
    width: 36px;
    height: 26px;
    display: inline-block;
    font-size: 0;
    vertical-align: top;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a:after,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a:after,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-next a:after {
    width: 35px;
    height: 100%;
    font-size: 14px;
    line-height: 30px;
    font-family: FontAwesome, sans-serif;
    color: #afafaf;
    background: transparent;
    opacity: 1;
    animation: none;
    position: absolute;
    top: -3px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-prev a:after,
.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:after,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:after {
    display: none;
}

.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-next a:after {
    width: 20px;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-prev a:before {
    content: '\f104';
    left: 10px;
}

.marketum_sidebar .widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a:after,
.footer_widget.widget_calendar .wp-calendar-nav span.wp-calendar-nav-next a:after,
.wp-block-calendar .wp-calendar-nav span.wp-calendar-nav-next a:after {
    content: '\f105';
    text-align: right;
    right: 10px;
}

.footer_widget.widget_calendar table {
    position: relative;
    z-index: 1;
}

.footer_widget.widget_calendar table td {
    line-height: 2;
}

.footer_widget.widget_calendar table td#today,
.footer_widget.widget_calendar table td a {
    color: #ffffff;
}

.footer_widget.widget_calendar table td a:hover {
    color: #000000;
}

/* --------------------------------- */
/* ---------- Single Post ---------- */
/* --------------------------------- */
.marketum_page_content_container {
    position: relative;
}

.marketum_page_content_wrapper {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) {
    .marketum_page_content_wrapper {
        padding: 120px 0;
    }
}

@media only screen and (min-width: 992px) {
    .marketum_page_content_wrapper {
        padding: 120px 0;
    }
}

@media only screen and (min-width: 1200px) {
    .marketum_page_content_wrapper {
        padding: 150px 0;
    }
}

.marketum_page_content_wrapper.marketum_page_without_top_padding {
    padding-top: 0;
}

.marketum_page_content_wrapper.marketum_page_without_bottom_padding {
    padding-bottom: 0;
}

.marketum_media_output_container {
    position: relative;
    margin-bottom: 43px;
}

.marketum_post_cat_cont {
    width: 100%;
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.marketum_media_output_empty .marketum_post_cat_cont {
    position: relative;
}

.marketum_post_format_quote .marketum_post_cat_cont {
    display: none;
}

.marketum_post_cat_cont a {
    display: inline-block;
    font-family: "Raph Lanok Future", sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    padding: 13px 24px 11px;
    margin: 0 8px 8px 0;
}

.marketum_post_cat_cont a:hover {
    color: #ffffff;
}

.marketum_post_cat_cont a:before,
.marketum_post_cat_cont a:after {
    display: none;
}

.marketum_post_meta_container {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #7d7d6f;
    margin-bottom: 30px;
}

.marketum_post_meta_container a {
    display: inline-block;
    color: #7d7d6f;
}

.marketum_post_meta_container a:before,
.marketum_post_meta_container a:after {
    display: none;
}

.marketum_post_author_container .divider {
    width: 3px;
    height: 3px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 12px;
}

.marketum_content_wrapper.marketum_empty_content_cont {
    margin-bottom: 0;
}

.marketum_post_details_container {
    border-top: solid 2px #222628;
    padding: 26px 0 0;
    margin: 30px 0 0;
    clear: both;
}

.marketum_post_tag_container ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketum_post_tag_container ul li {
    margin-right: 16px;
}

.marketum_post_tag_container ul a {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 600;
    padding-left: 7px;
}

.marketum_post_tag_container ul a:before {
    display: none;
    animation: none;
}

.marketum_post_tag_container ul a:after {
    width: 2px;
    height: 2px;
    opacity: 1;
    top: auto;
    bottom: 8px;
    left: 0;
}

.marketum_post_tag_container ul a:hover:after {
    opacity: 1;
}

.marketum_post_socials {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0 11px 0 0;
    margin: 0;
}

.marketum_post_socials a {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
    text-align: center;
    padding: 11px 11px 12px;
    margin-left: 2px;
}

.marketum_post_socials a:before,
.marketum_post_socials a:after {
    display: none;
}

.marketum_post_socials a i {
    width: 1em;
}

/* ---------------- */
/* --- Comments --- */
/* ---------------- */
.marketum_comments_container {
    margin-top: 85px;
}

.comment-reply-title,
.post-comments-title {
    font-size: 40px;
}

.post-comments-title {
    margin-bottom: 30px;
}

.post-comments-list {
    margin-bottom: 45px;
}

.post-comment-item {
    display: flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
    flex-wrap: wrap;
}

.post-comment-wrapper:not(:first-of-type) {
    margin-top: 85px;
}

.comment-respond {
    margin-top: 85px;
}

.post-comments-list > .comment:last-of-type .post-comment-item:last-of-type {
    margin-bottom: 0;
}

.post-comment-item .post-comment-avatar {
    width: 90px;
}

.bypostauthor .post-comment-item .post-comment-avatar {
    border: solid 2px;
}

.post-comment-item .post-comment-main {
    width: calc(100% - 123px);
}

.post-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -11px;
    margin-bottom: 13px;
}

.post-comment-author-container {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.post-comment-author-container .post-comment-author {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.post-comment-author-container .divider {
    width: 3px;
    height: 3px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 10px;
    position: relative;
    bottom: 6px;
}

.post-comment-author-container .post-comment-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.post-comment-buttons {
    position: relative;
    top: 9px;
}

.post-comment-buttons a {
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
}

.post-comment-content {
    letter-spacing: .1px;
}

.post-comments-list .comment .comment {
    padding-left: 20px;
}

@media only screen and (min-width: 576px) {
    .post-comments-list .comment .comment {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 992px) {
    .post-comments-list .comment .comment {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 1200px) {
    .post-comments-list .comment .comment {
        padding-left: 80px;
    }
}

.comment-reply-title {
    margin-bottom: 20px;
}

.comment-reply-title small {
    margin-left: 10px;
}

p.comment-notes {
    letter-spacing: 0;
    margin-bottom: 22px;
}

a.logged-in-as {
    color: #666666;
    margin-right: 8px;
}

a.logged-in-as:before,
a.logged-in-as:after {
    display: none;
}

a.logged-in-as + a,
a.logged-in-as + a + a {
    line-height: 1;
}

.marketum_blog_quote {
    background: #222628;
    font-family: "Cambon", sans-serif;
    line-height: 1.4;
    letter-spacing: .17px;
    color: #ffffff;
    padding: 30px 20px 40px;
}

@media only screen and (min-width: 768px) {
    .marketum_blog_quote {
        font-size: 25px;
        padding: 30px 40px 50px;
    }
}

@media only screen and (min-width: 992px) {
    .marketum_blog_quote {
        padding: 54px 100px 71px 67px;
    }
}

.marketum_blog_quote .marketum_blockquote_marker_container {
    padding-left: 5px;
    margin-bottom: 21px;
}

.marketum_blog_quote .marketum_blockquote_marker {
    width: 13px;
    height: 36px;
    -webkit-clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 100%, 0 0);
    position: absolute;
    top: 8px;
    left: 1px;
}

.marketum_blog_quote .marketum_blockquote_marker_1,
.marketum_blog_quote .marketum_blockquote_marker_2 {
    display: inline-block;
    position: static;
}

.marketum_blog_quote .marketum_blockquote_author {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 32px;
}

.marketum_blog_quote .marketum_blockquote_author span {
    display: inline-block;
    position: relative;
}

.marketum_blog_quote .marketum_blockquote_author span:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    bottom: -9px;
    left: 0;
}

/* --------------------------------- */
/* ---------- Single Team ---------- */
/* --------------------------------- */
.marketum_team .marketum_page_content_wrapper {
    padding-bottom: 0;
}

.marketum_team .marketum_content_wrapper {
    margin-bottom: 142px;
}

.marketum_team .marketum_content_wrapper.marketum_empty_content_cont {
    margin-bottom: 0;
}

.marketum_person_info_part {
    margin-bottom: 140px;
}

.marketum_single_team_text_before_name {
    display: inline-block;
    font-family: "Raph Lanok Future", sans-serif;
    font-size: 25px;
    letter-spacing: 0;
    margin-bottom: 7px;
    position: relative;
    top: -6px;
}

.marketum_single_team_person_name {
    line-height: 1;
}

p.marketum_single_team_person_position {
    font-size: 14px;
    color: #7b7b7b;
    margin-bottom: 27px;
}

.marketum_single_team_person_resume {
    margin-bottom: 37px;
}

.marketum_single_team_biography_title_part_wrapper {
    margin-bottom: 62px;
}

.marketum_single_team_biography_container {
    padding: 144px 0 142px;
    margin-bottom: 150px;
    position: relative;
}

.marketum_single_team_biography_container:before {
    content: '';
    width: 300%;
    height: 100%;
    background: #e6e6e2;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.marketum_single_team_biography_subtitle,
.marketum_education_and_experience_subtitle {
    display: inline-block;
    font-family: "Raph Lanok Future", sans-serif;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 23px;
}

.marketum_single_team_biography_title,
.marketum_education_and_experience_title {
    line-height: 1.2;
}

.marketum_single_team_biography {
    padding: 56px 0 0 100px;
}

.marketum_single_team_biography_cont_wrapper {
    position: relative;
}

.marketum_single_team_biography_cont_wrapper:before {
    content: '';
    width: 2px;
    height: calc(100% - 18px);
    background: #c4c4c2;
    position: absolute;
    top: 9px;
    left: -66px;
}

.marketum_personal_info_title {
    font-family: "Manrope", sans-serif;
    letter-spacing: .2px;
    font-weight: 600;
}

p.marketum_personal_address {
    margin-bottom: 8px;
}

.marketum_personal_phones {
    margin-bottom: 5px;
}

.marketum_personal_phones p {
    margin-bottom: 0;
}

.marketum_personal_email {
    line-height: 1;
    margin-bottom: 16px;
}

.marketum_personal_socials {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.marketum_personal_socials li {
    margin-right: 30px;
}

.marketum_personal_socials a:before,
.marketum_personal_socials a:after {
    display: none;
}

.marketum_education_and_experience_container {
    margin-bottom: 142px;
}

.marketum_education_and_experience_title {
    margin-bottom: 38px;
}

.marketum_education_and_experience_container .marketum_personal_info_title {
    margin-bottom: 15px;
}

.marketum_exp_list_item {
    padding-left: 40px;
    margin-bottom: 26px;
    position: relative;
}

.marketum_exp_list_item:last-of-type {
    margin-bottom: 0;
}

.marketum_exp_list_item:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 0;
}

.marketum_exp_list_item_title {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    letter-spacing: .1px;
    margin-bottom: 1px;
}

.marketum_exp_list_item_period {
    font-size: 14px;
    color: #7b7b7b;
    margin-bottom: 9px;
}

.marketum_single_team_contacts_container {
    position: relative;
}

.marketum_single_team_contacts_container:before {
    content: '';
    width: 300%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.marketum_single_team_contacts_container,
.marketum_single_team_contacts_container h2,
.marketum_single_team_contacts_container h5,
.marketum_single_team_contacts_container a,
.marketum_single_team_contacts_container a:hover,
.marketum_page_content_container .marketum_single_team_contacts_container a.marketum_link_type_2,
.marketum_page_content_container .marketum_single_team_contacts_container a:hover.marketum_link_type_2 {
    color: #ffffff;
}

.marketum_page_content_container .marketum_single_team_contacts_container a:after,
.marketum_page_content_container .marketum_single_team_contacts_container  a.marketum_link_type_2:after,
.marketum_page_content_container .marketum_single_team_contacts_container a:before,
.marketum_page_content_container .marketum_single_team_contacts_container a:hover:after,
.marketum_page_content_container .marketum_single_team_contacts_container a:hover:before {
    background: #ffffff;
}

body .marketum_page_content_container .marketum_single_team_contacts_container a.marketum_single_team_contacts_phone:before {
    height: 2px;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
    transition-delay: 0s;
}

body .marketum_page_content_container .marketum_single_team_contacts_container a.marketum_single_team_contacts_phone:hover:before {
    opacity: 0;
    -webkit-animation: none;
    animation: none;
}

.marketum_single_team_contacts_wrapper {
    padding: 118px 0 140px;
}

.marketum_single_team_contacts_container h2 {
    margin-bottom: 0;
}

.marketum_single_team_contacts_container p {
    margin-bottom: 25px;
}

.marketum_single_team_contacts_container .aligncenter {
    margin: 0;
}

.marketum_contacts_divider {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    border: solid 2px #f78e81;
}

.marketum_single_team_contacts_container .marketum_personal_info_title {
    font-weight: 400;
    margin-bottom: -12px;
}

.marketum_single_team_contacts_phone {
    font-family: "Cambon", sans-serif;
    font-size: 40px;
    letter-spacing: -1.2px;
    font-weight: 500;
}

.marketum_team_content_container .marketum_comments_container {
    margin-bottom: 144px;
}

/* -------------------------------------- */
/* ---------- Single Portfolio ---------- */
/* -------------------------------------- */
.marketum_portfolio_fimage_container,
.marketum_portfolio_gallery_container {
    padding-right: 50px;
}

.marketum_portfolio_fimage_container,
.marketum_portfolio_gallery_item {
    margin-bottom: 36px;
}

.marketum_portfolio_gallery_item:last-of-type {
    margin-bottom: 0;
}

.marketum_portfolio_title {
    line-height: 1.1;
    margin-top: -14px;
    margin-bottom: 42px;
}

.marketum_portfolio_divider {
    width: 100%;
    height: 2px;
    margin-bottom: 23px;
}

.marketum_portfolio_descripiton_container {
    margin-bottom: 30px;
}

.marketum_portfolio_meta_container {
    font-size: 14px;
    font-weight: 600;
}

.marketum_portfolio_meta_container > div {
    margin-bottom: 8px;
}

.marketum_portfolio_meta_container .marketum_port_cat {
    margin-right: 5px;
}

.marketum_portfolio_meta_container > div.marketum_port_socials_cont {
    margin-bottom: 35px;
}

.marketum_port_socials_cont span {
    display: block;
    margin-bottom: 27px;
}

.marketum_portfolio_socials {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketum_portfolio_socials a {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
    text-align: center;
    padding: 11px 11px 12px;
    margin-right: 2px;
}

.marketum_portfolio_socials a:before,
.marketum_portfolio_socials a:after {
    display: none;
}

.marketum_portfolio_socials a i {
    width: 1em;
}

.marketum_port_link_cont a {
    line-height: 2.8;
}

.marketum_port_navigation_header {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 2px #222628;
}

.marketum_port_navigation_header > div {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 14px;
    margin: 95px 0 0;
}

.marketum_port_navigation_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 32px 0 0;
    margin: 0;
}

.marketum_port_navigation_next_port {
    text-align: right;
}

.marketum_post_nav_image:before,
.marketum_post_nav_image:after,
.marketum_port_nav_text_wrapper a:before,
.marketum_port_nav_text_wrapper a:after,
.marketum_port_archive_dots a:before,
.marketum_port_archive_dots a:after {
    display: none;
}

.marketum_port_navigation_item {
    display: flex;
}

.marketum_post_nav_image {
    width: 84px;
    display: inline-block;
    margin: 8px 26px 0 0;
}

.marketum_port_navigation_next_port .marketum_post_nav_image {
    margin: 8px 0 0 26px;
}

.marketum_port_nav_text_wrapper {
    max-width: 170px;
    line-height: 1.7;
    margin-bottom: 7px;
}

.marketum_port_nav_text_wrapper a {
    letter-spacing: 0;
    font-weight: 600;
}

.marketum_port_nav_content .marketum_port_cat_cont {
    font-size: 0;
    line-height: 0;
}

.marketum_port_nav_content .marketum_port_cat_cont a,
.marketum_port_nav_content .marketum_port_cat_cont span {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.marketum_port_nav_content .marketum_port_cat_cont span:last-of-type {
    display: none;
}

.marketum_port_archive_dots a {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.marketum_port_archive_dots a .marketum_archive_point {
    width: 9px;
    height: 9px;
    border: solid 2px;
    border-radius: 3px;
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_port_archive_dots a .marketum_archive_point.point_1 {
    top: 0;
    left: 0;
}

.marketum_port_archive_dots a .marketum_archive_point.point_2 {
    top: 0;
    right: 0;
}

.marketum_port_archive_dots a .marketum_archive_point.point_3 {
    bottom: 0;
    left: 0;
}

.marketum_port_archive_dots a .marketum_archive_point.point_4 {
    bottom: 0;
    right: 0;
}

/* ----------------------------------- */
/* ---------- Single Career ---------- */
/* ----------------------------------- */
.marketum_career_occupation_content {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.marketum_career_occupation {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0;
    color: #ffffff;
    padding: 4px 17px 5px;
    margin-right: 27px;
}

.marketum_career_title {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.marketum_salary_container,
.marketum_careers_listing_salary_cont {
    font-family: "Cambon", sans-serif;
    font-size: 0;
    line-height: 0;
    margin-bottom: 67px;
}

.marketum_salary_container .marketum_salary_currency,
.marketum_salary_container .marketum_career_salary,
.marketum_salary_container .marketum_salary_period,
.marketum_careers_listing_item .marketum_salary_currency,
.marketum_careers_listing_item .marketum_career_salary,
.marketum_careers_listing_item .marketum_salary_period {
    display: inline-block;
}

.marketum_salary_container .marketum_salary_currency,
.marketum_careers_listing_item .marketum_salary_currency {
    font-size: 23px;
    line-height: 1;
}

.marketum_salary_container .marketum_career_salary,
.marketum_careers_listing_item .marketum_career_salary {
    font-size: 40px;
    line-height: 1;
}

.marketum_salary_container .marketum_salary_period,
.marketum_careers_listing_item .marketum_salary_period {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -.4px;
    margin-left: -3px;
    position: relative;
    bottom: 0;
}

.marketum_career_additional_links_container {
    margin-bottom: 70px;
}

.marketum_page_content_container a.marketum_career_additional_link {
    display: block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
    border: solid 2px;
    padding: 21px 36px;
    margin-bottom: 10px;
}

.marketum_page_content_container a.marketum_career_additional_link:before,
.marketum_page_content_container a.marketum_career_additional_link:after {
    display: none;
}

.marketum_career_promo_wrapper {
    color: #ffffff;
    background-color: #222628;
    background-size: cover;
    background-position: center;
    padding: 43px 50px 40px;
}

.marketum_career_promo_title {
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
}

.marketum_career_promo_text {
    font-size: 14px;
    margin-top: 7px;
}

.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button {
    margin-top: 23px;
}

.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button,
.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button:hover {
    color: #ffffff;
}

.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button:before,
.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button:after,
.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button:hover:before,
.marketum_page_content_container a.marketum_link_type_2.marketum_career_promo_button:hover:after {
    background: #ffffff;
}

.marketum_job_description_container,
.marketum_job_responsibilities_container {
    margin-bottom: 80px;
}

.marketum_career_content_title {
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
    font-weight: 600;
    margin-top: -7px;
}

.marketum_career_content ul {
    margin-top: 18px;
}

.marketum_job_qualifications_container {
    margin-bottom: 40px;
}

/* ------------------------------ */
/* --- Recent Careers Listing --- */
/* ------------------------------ */
.marketum_recent_career_container {
    margin-top: 123px;
}

.marketum_recent_career_subtitle {
    font-family: "Raph Lanok Future", sans-serif;
    font-size: 25px;
    letter-spacing: 0;
}

.marketum_recent_career_title {
    line-height: 1.3;
    margin: -5px 0 50px;
}

.marketum_careers_listing_item {
    border-top: solid 2px #222628;
}

.marketum_careers_listing_item:last-of-type {
    border-bottom: solid 2px #222628;
}

.marketum_careers_listing_title_cont {
    padding: 42px 0 42px 30px;
}

.marketum_careers_listing_title_cont h4 {
    margin: 0;
}

.marketum_careers_listing_salary_cont {
    margin-bottom: 0;
}

.marketum_careers_listing_link_cont {
    text-align: right;
    padding-right: 30px;
}

.marketum_careers_listing_link_cont a {
    margin-top: 10px;
}

/* ------------------------------------ */
/* ---------- 404 Error Page ---------- */
/* ------------------------------------ */
body.error404 {
    min-height: auto;
    justify-content: center;
    text-align: center;
}

.marketum_404_logo_container {
    padding: 34px 0;
    margin-bottom: 37px;
}

.marketum_404_image_container {
    margin-bottom: 70px;
}

.marketum_404_image_container img {
    margin: 0 auto;
}

.marketum_404_error_title {
    margin-bottom: 16px;
}

.marketum_404_text {
    max-width: 550px;
    margin: 0 auto 50px;
}

.marketum_404_button {
    display: inline-block;
    color: #222628;
    margin-bottom: 32px;
}

.marketum_404_button:before,
.marketum_404_button:after {
    background: #222628;
}

.marketum_404_container .marketum_side_panel_socials_title {
    display: none;
}

.marketum_404_container .marketum_404_socials {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    padding: 0;
    margin: 0 0 80px;
}

.marketum_404_container .marketum_404_socials li {
    margin: 0 5px;
}

.marketum_404_container .marketum_404_socials li a {
    display: inline-block;
    position: relative;
}

.marketum_404_container .marketum_404_socials li a:before,
.marketum_404_container .marketum_404_socials li a:after {
    content: '';
    width: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
}

.marketum_404_container .marketum_404_socials li a:before {
    height: 10px;
    opacity: 0;
    top: 100%;
}

.marketum_404_container .marketum_404_socials li a:after {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    transition-delay: 0s;
}

.marketum_404_container .marketum_404_socials li a:hover:before {
    opacity: 1;
    animation: lineUp 0.3s ease forwards;
}

.marketum_404_container .marketum_404_socials li a:after {
    opacity: 1;
    transition-delay: .3s;
}

/* ------------------------------------------- */
/* ---------- Elementor Main Styles ---------- */
/* ------------------------------------------- */
body .elementor-section:first-of-type {
    margin-top: -10px;
}

body .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1230px;
}

body .elementor-section.elementor-section-boxed.intro_demo_row > .elementor-container {
    max-width: 1630px;
}

body .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    margin-left: -5px;
    margin-right: -5px;
}

body .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default {
    margin-left: -10px;
    margin-right: -10px;
}

body .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    margin-left: -15px;
    margin-right: -15px;
}

body .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-wide {
    margin-left: -20px;
    margin-right: -20px;
}

body .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-wider {
    margin-left: -30px;
    margin-right: -30px;
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container.elementor-column-gap-narrow {
    width: calc(100% + 10px);
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container.elementor-column-gap-default {
    width: calc(100% + 20px);
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container.elementor-column-gap-extended {
    width: calc(100% + 30px);
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container.elementor-column-gap-wide {
    width: calc(100% + 40px);
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container.elementor-column-gap-wider {
    width: calc(100% + 60px);
}

body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no,
body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow,
body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default,
body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended,
body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide,
body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wider {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) {
    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 1170px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 1190px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 1180px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 1200px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 1210px;
    }
}

body .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container {
    width: 100%;
}

@media only screen and (min-width: 1600px) {
    body .elementor-section.elementor-section-boxed.elementor-section-stretched.marketum_container_wide > .elementor-container.elementor-column-gap-narrow {
        max-width: 1510px;
    }
}

.elementor-text-editor a {
    line-height: 1;
}

/* -------------------------------- */
/* ---------- Typography ---------- */
/* -------------------------------- */
h1, h2, h3, h4, h5, h6,
body .elementor-widget-heading .elementor-heading-title {
    letter-spacing: -.03em;
}

body .marketum_content_wrapper .elementor-widget-text-editor ul,
body .marketum_content_wrapper .elementor-widget-text-editor ol,
body .marketum_content_wrapper .elementor-tab-content ul,
body .marketum_content_wrapper .elementor-tab-content ol,
body .marketum_content_wrapper .marketum_location_item ul,
.marketum_personal_skills,
.marketum_personal_values,
.marketum_career_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body .marketum_content_wrapper .elementor-widget-text-editor ul li,
body .marketum_content_wrapper .marketum_location_item ul li,
body .marketum_content_wrapper .elementor-widget-text-editor ol li,
body .marketum_content_wrapper .elementor-tab-content ul li,
body .marketum_content_wrapper .elementor-tab-content ol li,
.marketum_personal_skills li,
.marketum_personal_values li ,
.marketum_career_content ul li {
    display: block;
    line-height: 32px;
    padding-left: 20px;
    position: relative;
}

body .marketum_content_wrapper .elementor-widget-text-editor ul li:not(:last-of-type),
body .marketum_content_wrapper .elementor-tab-content ul li:not(:last-of-type),
body .marketum_content_wrapper .marketum_location_item ul li:not(:last-of-type),
body .marketum_content_wrapper ol li:not(:last-of-type),
body .marketum_content_wrapper ul li:not(:last-of-type),
.marketum_personal_skills li:not(:last-of-type),
.marketum_personal_values li:not(:last-of-type),
.marketum_career_content ul li:not(:last-of-type) {
    margin-bottom: 8px;
}

body .marketum_content_wrapper .elementor-widget-text-editor ul li:before,
body .marketum_content_wrapper .elementor-tab-content ul li:before,
.marketum_personal_skills li:before,
.marketum_personal_values li:before,
.marketum_career_content ul li:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 2px;
}

body .marketum_content_wrapper .elementor-widget-text-editor ol,
body .marketum_content_wrapper .elementor-tab-content ol {
    counter-reset: item;
}

body .marketum_content_wrapper .elementor-widget-text-editor ol li,
body .marketum_content_wrapper .elementor-tab-content ol li {
    padding-left: 0;
}

body .marketum_content_wrapper .elementor-widget-text-editor ol li:before,
body .marketum_content_wrapper .elementor-tab-content ol li:before {
    content: counter(item) ".";
    counter-increment: item;
    padding-right: 4px;
}

body .elementor-widget-text-editor {
    letter-spacing: 0;
}

body .elementor-widget-image a:before,
body .elementor-widget-image a:after {
    display: none;
}

body .elementor-widget-image .widget-image-caption {
    font-family: "Cambon", sans-serif;
    font-size: 25px;
    letter-spacing: -1px;
    font-weight: 600;
    margin-top: 15px;
}

/* --------------------------------------- */
/* ---------- Standard Listings ---------- */
/* --------------------------------------- */
.marketum_pagination,
.woocommerce nav.woocommerce-pagination ul {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.marketum_pagination .pagination {
    justify-content: center;
    text-align: center;
}

.marketum_pagination .pagination .nav-links,
.woocommerce-pagination .page-numbers {
    width: 100%;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: none;
}

.woocommerce nav.woocommerce-pagination ul li span {
    color: #666666;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
    width: auto;
    min-width: auto;
    line-height: 1.9;
    font-weight: 500;
}

.marketum_pagination .pagination span,
.marketum_pagination .pagination a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
    display: inline-block;
    padding: 0 2px;
    margin: 0 16px 5px;
    position: relative;
}

.marketum_pagination .pagination a:hover:before,
.woocommerce nav.woocommerce-pagination ul li a:hover:before {
    animation: none;
}

.marketum_pagination .pagination span:after,
.marketum_pagination .pagination a:after,
.woocommerce nav.woocommerce-pagination ul li span:after,
.woocommerce nav.woocommerce-pagination ul li a:after {
    content: '';
    width: 3px;
    height: 3px;
    display: block;
    opacity: 1;
    border-radius: 50%;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    left: -18px;
}

.marketum_pagination .pagination span.dots:before,
.marketum_pagination .pagination span:first-child:after,
.marketum_pagination .pagination .next:after,
.marketum_pagination .pagination .prev:after,
.marketum_pagination .pagination .next:before,
.marketum_pagination .pagination .prev:before,
.marketum_pagination .pagination .prev + a:after {
    display: none;
}

.marketum_pagination .pagination span:before,
.marketum_pagination .pagination a:before,
.woocommerce nav.woocommerce-pagination ul li span:before,
.woocommerce nav.woocommerce-pagination ul li a:before {
    content: '';
    width: 100%;
    height: 2px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.marketum_pagination .pagination a:before,
.woocommerce nav.woocommerce-pagination ul li a:before {
    margin-top: 0;
}

.marketum_pagination .pagination span:before,
.marketum_pagination .pagination a:hover:before,
.woocommerce nav.woocommerce-pagination ul li span:before,
.woocommerce nav.woocommerce-pagination ul li a:hover:before {
    opacity: 1;
}

.marketum_pagination .pagination .next,
.marketum_pagination .pagination .prev {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 6px 0 0;
    border: solid 1px #3a3e40;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.marketum_pagination .pagination .next {
    float: right;
    border-left: none;
    border-bottom: none;
}

.marketum_pagination .pagination .prev {
    float: left;
    border-top: none;
    border-right: none;
}

/* -------------------- */
/* --- Blog Listing --- */
/* -------------------- */
.marketum_post_listing_container .marketum_blog_listing_item {
    margin-bottom: 92px;
}

.marketum_post_listing_container .marketum_blog_listing_image_container {
    position: relative;
    margin-bottom: 43px;
}

.marketum_post_listing_container .marketum_blog_listing_image_wrapper {
    overflow: hidden;
}

.marketum_post_listing_container .marketum_blog_listing_image_wrapper img {
    -webkit-transform: scale(1.05) translateX(0);
    transform: scale(1.05) translateX(0);
    -webkit-transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.marketum_post_listing_container .marketum_blog_listing_item_wrapper:hover .marketum_blog_listing_image_wrapper img {
    -webkit-transform: scale(1.05) translateX(7px);
    transform: scale(1.05) translateX(7px);
}

.marketum_post_listing_container .marketum_blog_listing_image_container.marketum_media_output_empty .marketum_post_cat_cont {
    position: relative;
}

.marketum_post_listing_container .marketum_blog_listing_meta {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #7d7d6f;
    margin-bottom: 8px;
}

.marketum_post_listing_container .marketum_blog_listing_meta .marketum_separator {
    width: 3px;
    height: 3px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin: -2px 15px 0;
}

.marketum_post_listing_container .marketum_blog_listing_title {
    line-height: 1.1;
    margin-bottom: 42px;
    word-wrap: break-word;
}

.marketum_post_listing_container .marketum_blog_listing_title a {
    display: block;
}

.marketum_post_listing_container .marketum_blog_listing_title a:before,
.marketum_post_listing_container .marketum_blog_listing_title a:after {
    display: none;
}

.marketum_post_listing_container .marketum_blog_listing_item_divider {
    width: 100%;
    height: 2px;
    margin-bottom: 23px;
    overflow: hidden;
    position: relative;
}

.marketum_post_listing_container .marketum_blog_listing_item_divider:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: all .3s cubic-bezier(.22, .61, .36, 1);
    transition: all .3s cubic-bezier(.22, .61, .36, 1);
    z-index: 1;
}

.marketum_post_listing_container .marketum_blog_listing_item_wrapper:hover .marketum_blog_listing_item_divider:before {
    left: 0;
}

.marketum_post_listing_container .marketum_blog_listing_excerpt {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
    margin-bottom: 34px;
}

/* --------------------- */
/* --- Cases Listing --- */
/* --------------------- */
.marketum_marketum_cases_listing_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_item {
    width: 100%;
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
    padding-left: 30px;
    margin-bottom: 30px;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_item_wrapper {
    position: relative;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_item_wrapper .marketum_overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}

.marketum_marketum_cases_listing_wrapper .item_1 .marketum_cases_list_item_wrapper:hover .marketum_overlay,
.marketum_marketum_cases_listing_wrapper .item_3 .marketum_cases_list_item_wrapper:hover .marketum_overlay,
.marketum_marketum_cases_listing_wrapper .item_5 .marketum_cases_list_item_wrapper:hover .marketum_overlay,
.marketum_marketum_cases_listing_wrapper .item_7 .marketum_cases_list_item_wrapper:hover .marketum_overlay,
.marketum_marketum_cases_listing_wrapper .item_9 .marketum_cases_list_item_wrapper:hover .marketum_overlay {
    opacity: .4;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_content_container {
    width: 100%;
    color: #ffffff;
    padding: 0 31px 44px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_content_container a {
    color: #ffffff;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_content_container a:before,
.marketum_marketum_cases_listing_wrapper .marketum_cases_list_content_container a:after {
    display: none;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_divider {
    width: 100%;
    height: 2px;
    margin-bottom: 23px;
    overflow: hidden;
    position: relative;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_categories {
    font-family: "Raph Lanok Future", sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_category {
    display: inline-block;
    padding: 13px 15px 11px;
    margin: 0 5px 5px 0;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_title {
    line-height: 1.4;
    margin-bottom: 22px;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_divider:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}

.marketum_marketum_cases_listing_wrapper .marketum_motion_effect_on .marketum_cases_list_divider:before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.marketum_marketum_cases_listing_wrapper .marketum_motion_effect_on.visible .marketum_cases_list_divider:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_item_wrapper:hover .marketum_cases_list_divider:before,
.marketum_marketum_cases_listing_wrapper .marketum_motion_effect_on.visible .marketum_cases_list_item_wrapper:hover .marketum_cases_list_divider:before {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_list_excerpt {
    letter-spacing: 0;
}

.marketum_marketum_cases_listing_wrapper .marketum_cases_widget .marketum_pagination {
    margin-top: 54px;
}

/* ------------------------- */
/* --- Galleries Listing --- */
/* ------------------------- */
.marketum_marketum_gallery_listing_wrapper .gallery-masonry__item {
    position: relative;
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__item .marketum_overlay {
    width: 100%;
    height: 100%;
    background: rgb(0,61,144);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 30%, rgba(0, 61, 144, .6) 100%);
    background: linear-gradient(top, transparent 0%, transparent 30%, rgba(0, 61, 144, .6) 100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 0;
}

.marketum_marketum_gallery_listing_wrapper .gallery_masonry_item_wrapper {
    margin: 5px;
    overflow: hidden;
    position: relative;
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__img {
    display: block;
    overflow: hidden;
    text-decoration: none;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__item:hover .gallery-masonry__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__description {
    max-width: 85%;
    padding: 29px 38px;
    background: #ffffff;
    opacity: 0;
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: opacity .3s, -webkit-clip-path .8s cubic-bezier(.07,.98,0,.96);
    transition: opacity .3s, clip-path .8s cubic-bezier(.07,.98,0,.96);
    transition: opacity .3s, clip-path .8s cubic-bezier(.07,.98,0,.96), -webkit-clip-path .8s cubic-bezier(.07,.98,0,.96);
    z-index: 5;
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__item:hover .gallery-masonry__description,
.marketum_marketum_gallery_listing_wrapper .marketum_gallery_slider_item:hover .gallery-masonry__description {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);

}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__description a {
    cursor: pointer;
}

.marketum_marketum_gallery_listing_wrapper .gallery-masonry__description a:before,
.marketum_marketum_gallery_listing_wrapper .gallery-masonry__description a:after {
    display: none;
}

.marketum_marketum_gallery_listing_wrapper .marketum_marketum_gallery_listing_wrapper .gallery-masonry__description a:before,
.marketum_marketum_gallery_listing_wrapper .gallery-masonry__description a:after {
    display: none;
}

body .marketum_marketum_gallery_listing_wrapper .gallery-masonry__item--height-1:before {
    content: "";
    display: block;
    padding-top: 85.71429%;
}

body .marketum_marketum_gallery_listing_wrapper .gallery-masonry__item--height-2:before {
    content: "";
    display: block;
    padding-top: 84.07777%;
}

body .marketum_marketum_gallery_listing_wrapper .gallery-masonry__item--height-3:before {
    content: "";
    display: block;
    padding-top: 42.03889%;
}

.marketum_marketum_gallery_listing_container .marketum_pagination {
    margin-top: 75px;
}

/* ------------------------ */
/* --- Projects Listing --- */
/* ------------------------ */
.marketum_marketum_portfolio_listing_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item {
    width: 100%;
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
    padding-left: 30px;
    margin-bottom: 50px;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item:nth-child(3n+2) {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_image_container {
    overflow: hidden;
    margin-bottom: 20px;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_image_container img {
    -webkit-transform: scale(1.05) translateX(0);
    transform: scale(1.05) translateX(0);
    -webkit-transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_wrapper:hover .marketum_portfolio_listing_item_image_container img {
    -webkit-transform: scale(1.05) translateX(10px);
    transform: scale(1.05) translateX(10px);
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_content_wrapper {
    display: inline-block;
    overflow: hidden;
    padding: 19px 0 7px;
    position: relative;
    -webkit-transition: padding .3s;
    transition: padding .3s;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_wrapper:hover .marketum_portfolio_listing_item_content_wrapper {
    padding: 19px 25px 7px;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_content_wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    z-index: 1;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_wrapper:hover .marketum_portfolio_listing_item_content_wrapper:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories,
.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_title {
    position: relative;
    z-index: 5;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories {
    margin-bottom: 12px;
    font-size: 0;
    line-height: 0;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories a,
.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories span {
    font-size: 14px;
    line-height: 1;
    color: #666666;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories span:last-of-type {
    display: none;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories a:before,
.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_categories a:after {
    background: #666666;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_title a {
    font-family: "Manrope", sans-serif;
    letter-spacing: -.4px;
    font-weight: 600;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_item_wrapper:hover .marketum_portfolio_listing_title a {
    color: #ffffff;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_title a:before,
.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_listing_title a:after {
    display: none;
}

.marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_widget .marketum_pagination {
    margin-top: 50px;
}

@media only screen and (min-width: 1367px) {
    .marketum_marketum_portfolio_listing_wrapper .marketum_portfolio_slider_widget .marketum_wide_mode_container {
        width: 1470px;
        margin-left: -150px;
    }
}

.marketum_marketum_portfolio_listing_container .marketum_pagination {
    margin-top: 50px;
}

/* ------------------------ */
/* --- Services Listing --- */
/* ------------------------ */
.marketum_marketum_services_listing_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -30px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_item {
    width: 100%;
    height: auto;
    max-width: 25%;
    flex: 0 0 25%;
    padding-left: 30px;
    margin-bottom: 30px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_item_wrapper {
    height: 100%;
    padding: 15px 32px 37px;
    position: relative;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border {
    overflow: hidden;
    position: absolute;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border_top,
.marketum_marketum_services_listing_wrapper .marketum_services_border_bottom {
    width: 100%;
    height: 2px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border_right,
.marketum_marketum_services_listing_wrapper .marketum_services_border_left {
    width: 2px;
    height: 100%;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border_top,
.marketum_marketum_services_listing_wrapper .marketum_services_border_left {
    top: 0;
    left: 0;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border_bottom,
.marketum_marketum_services_listing_wrapper .marketum_services_border_right {
    bottom: 0;
    right: 0;
}

.marketum_marketum_services_listing_wrapper .marketum_services_border:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #222628;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on .marketum_services_border_top:before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on .marketum_services_border_left:before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on .marketum_services_border_bottom:before {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on .marketum_services_border_right:before {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on.visible .marketum_services_border_top:before,
.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on.visible .marketum_services_border_bottom:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on.visible .marketum_services_border_left:before,
.marketum_marketum_services_listing_wrapper .marketum_motion_effect_on.visible .marketum_services_border_right:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_counter {
    font-family: "Cambon", sans-serif;
    font-size: 30px;
    margin-bottom: 28px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_title {
    font-family: "Manrope", sans-serif;
    letter-spacing: -.3px;
    font-weight: 600;
    margin-bottom: 13px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_title a:before,
.marketum_marketum_services_listing_wrapper .marketum_services_listing_title a:after {
    display: none;
}

.marketum_marketum_services_listing_wrapper p.marketum_services_listing_excerpt {
    margin-bottom: 33px;
}

.marketum_marketum_services_listing_wrapper .marketum_services_listing_item_wrapper img {
    display: inline-block;
}

.marketum_marketum_services_listing_container .marketum_pagination {
    margin-top: 60px;
}

/* -------------------- */
/* --- Team Listing --- */
/* -------------------- */
.marketum_marketum_team_listing_wrapper {
    display: flex;
    margin-left: -30px;
    flex-wrap: wrap;
}

.marketum_marketum_team_listing_wrapper .marketum_team_item {
    width: 100%;
    max-width: 25%;
    flex: 0 0 25%;
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}

.marketum_marketum_team_listing_wrapper .marketum_team_image_container {
    margin-bottom: 20px;
}

.marketum_marketum_team_listing_wrapper .marketum_team_image_container img {
    width: 100%;
}

.marketum_marketum_team_listing_wrapper .marketum_team_item_title {
    font-family: "Manrope", sans-serif;
    letter-spacing: -.2px;
    margin-bottom: 2px;
}

.marketum_marketum_team_listing_wrapper .marketum_team_item_title a:before,
.marketum_marketum_team_listing_wrapper .marketum_team_item_title a:after {
    display: none;
}

.marketum_marketum_team_listing_wrapper p.marketum_team_item_person_position {
    font-size: 14px;
    color: #7b7b7b;
    margin-bottom: 8px;
}

.marketum_marketum_team_listing_wrapper .marketum_team_item_socials {
    list-style: none;
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.marketum_marketum_team_listing_wrapper .marketum_team_item_socials li {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    margin-right: 13px;
}

.marketum_marketum_team_listing_container .marketum_pagination {
    margin-top: 40px;
}

/* ------------------------------------------- */
/* ---------- Custom Themes CLasses ---------- */
/* ------------------------------------------- */
body .elementor-widget-heading.marketum_slogan h2.elementor-heading-title {
    font-family: "Raph Lanok Future", sans-serif;
}

body .marketum_gradient_bg {
    background: -moz-linear-gradient(left, #ffffff 4%, #222628 4%, #222628 96%, #ffffff 96%, #ffffff 100%);
    background: -webkit-linear-gradient(left, #ffffff 4%, #222628 4%, #222628 96%, #ffffff 96%, #ffffff 100%);
    background: linear-gradient(to right, #ffffff 4%, #222628 4%, #222628 96%, #ffffff 96%, #ffffff 100%);
}

body .marketum_section_with_bg_offset {
    background-position: right 125px top !important;
}

.marketum_testimonials_row {
    overflow: hidden;
}

.marketum_mission .marketum_heading span {
    font-size: 80px;
    margin-right: 15px;
}

.marketum_section_visible_on_laptop {
    display: none;
}

.elementor-editor-active .marketum_section_visible_on_laptop {
    display: block;
}

/* --------------------------------------- */
/* ---------- Custom Animations ---------- */
/* --------------------------------------- */
@keyframes image_clip_right {
    from {
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

@keyframes image_clip_left {
    from {
        clip-path: inset(0 0 0 100%);
        -webkit-clip-path: inset(0 0 0 100%);
    }
    to {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

@keyframes image_clip_bottom {
    from {
        clip-path: inset(0 0 100% 0);
        -webkit-clip-path: inset(0 0 100% 0);
    }
    to {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

@keyframes image_clip_top {
    from {
        clip-path: inset(100% 0 0 0);
        -webkit-clip-path: inset(100% 0 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

.image_clip_right {
    animation-name: image_clip_right;
}

.image_clip_left {
    animation-name: image_clip_left;
}

.image_clip_bottom {
    animation-name: image_clip_bottom;
}

.image_clip_top {
    animation-name: image_clip_top;
}

.image_clip_right,
.image_clip_left,
.image_clip_bottom,
.image_clip_top {
    /*animation-duration: 1.25s;*/
}

/* ------------------------------------ */
/* ---------- Custom Cursors ---------- */
/* ------------------------------------ */
.custom_cursor_active .marketum_portfolio_carousel .marketum_portfolio_listing_item_image_container {
    cursor: none;
}

.cursor,
.cursor_drag {
    display: none;
    padding: 0;
    pointer-events: none;
    position: fixed;
    width: 10px;
    height: 10px;
    line-height: 1;
    font-size: 0;
    letter-spacing: 0.4em;
    text-indent: 5px;
    text-align: center;
    text-transform: uppercase;
    left: 50%;
    top: 50%;
    z-index: 2;
    -webkit-transition: width 0.3s, height 0.3s, padding 0.3s;
    transition: width 0.3s, height 0.3s, padding 0.3s;
}
.cursor .cursor-bg,
.cursor_drag .cursor-bg {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #222628;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}
.cursor span,
.cursor_drag span {
    color: #ffffff;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cursor.active,
.cursor_drag.active {
    line-height: 94px;
    font-size: 14px;
}
.cursor.active .cursor-bg,
.cursor_drag.active .cursor-bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
}

/* -------------------------------- */
/* ---------- Responsive ---------- */
/* -------------------------------- */
@media only screen and (max-width: 1367px) {
    .marketum_header_button {
        padding: 0 50px;
    }

    .marketum_logo_box {
        padding: 33px 20px;
    }

    .marketum_section_hide_on_laptop {
        display: none;
    }

    .marketum_section_visible_on_laptop {
        display: block;
    }
}

@media only screen and (max-width: 1281px) {
    .marketum_header_phone_container {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .marketum_header_menu_container,
    .marketum_header_search_button {
        display: none;
    }

    .marketum_hamburger_container {
        display: flex;
    }
}

@media only screen and (max-width: 1025px) {
    .marketum_alt_header_button {
        display: none;
    }

    .marketum_sidebar_right .marketum_content_container {
        padding-right: 0;
    }

    .marketum_sidebar_left .marketum_content_container {
        padding-left: 0;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 930px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 950px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 940px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 960px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 970px;
    }

    .marketum_logo_box {
        padding: 23px 20px 16px;
    }

    .marketum_header_buttons_container,
    .marketum_header_type_2 .marketum_header_buttons_container {
        padding-right: 20px;
    }

    .marketum_breadcrumbs_container:after {
        display: none;
    }

    header.marketum_sticky_header_container {
        display: none;
    }

    header.marketum_sticky_header_on {
        width: 100%;
        position: fixed;
        top: 0;
    }

    body.admin-bar header.marketum_sticky_header_on {
        top: 32px;
    }

    .widget_marketum_banner_widget .marketum_banner_wrapper {
        padding: 100px 0 100px 30px;
    }

    body .marketum_page_title_container {
        min-height: 550px;
    }

    body .marketum_page_title {
        font-size: 50px;
    }

    body .marketum_site_title_container {
        font-size: 150px;
    }

    body .quadmenu-navbar-nav .quadmenu-item-has-children.open .quadmenu-dropdown-menu {
        visibility: visible;
        opacity: 1;
    }

    .marketum_main-menu > li.menu-item-has-children > a:before,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children > a:before {
        right: -10px;
        -webkit-transform: rotate(45deg) translateY(-2px);
        transform: rotate(45deg) translateY(-2px);
    }

    .marketum_main-menu > li.menu-item-has-children > a:after,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children > a:after {
        right: -16px;
        -webkit-transform: rotate(-45deg) translateY(-2px);
        transform: rotate(-45deg) translateY(-2px);
    }

    .marketum_main-menu > li.menu-item-has-children.open > a:before,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children.open > a:before {
        right: -13px;
        -webkit-transform: rotate(-45deg) translateY(-2px);
        transform: rotate(-45deg) translateY(-2px);
    }

    .marketum_main-menu > li.menu-item-has-children.open > a:after,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children.open > a:after {
        right: -13px;
        -webkit-transform: rotate(45deg) translateY(-2px);
        transform: rotate(45deg) translateY(-2px);
    }

    .contacts-wrapper__map,
    .marketum_location_map {
        height: 450px;
    }

    body .give-form-title {
        font-size: 37px;
    }

    .terrarium-slider .marketum_causes_slider_title_cont {
        padding-left: 28px;
    }

    .terrarium-slider .marketum_causes_slider_navigation_container {
        padding-right: 28px;
    }

    .terrarium-slider .marketum_button {
        margin-left: 28px;
    }

    .footer_widget.widget_custom_html img:first-of-type {
        margin-bottom: 20px;
    }

    .marketum_header:before {
        display: none;
    }

    body .marketum_home_about_counters {
        position: static;
    }

    .marketum_page-header_4 .marketum_tagline_phones_container {
        display: none;
    }

    .marketum_title_overlay,
    .marketum_header_promo_block:after {
        background: linear-gradient(to right,rgba(0,61,144,.9) 0,rgba(0,153,125,.6) 50%,rgba(0,0,0,.15) 100%);
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_3,
    .marketum_prefooter_wrapper.marketum_prefooter_type_4 {
        padding: 86px 0 0;
    }

    .footer_type_2 {
        padding: 26px 0 46px;
    }

    .marketum_heading {
        font-size: 37px;
    }

    .marketum_item_type_2 .marketum_blog_listing_title {
        font-size: 26px;
    }

    .marketum_footer_menu_2 li:not(:last-of-type) {
        margin-right: 30px;
    }

    .marketum_404_logo_container {
        margin-bottom: 20px;
    }

    .marketum_404_image_container {
        margin-bottom: 40px;
    }

    .marketum_404_error_title {
        font-size: 90px;
    }

    .marketum_404_home_button.marketum_button.marketum_button--primary {
        margin-top: 45px;
    }

    .marketum_media_output_wrapper {
        margin-bottom: 22px;
    }

    .marketum_comments {
        margin: 28px 0 0;
    }

    .comment-form-cookies-consent label {
        line-height: 30px;
    }

    .comment-form-cookies-consent input[type="checkbox"]:checked + label:before,
    .comment-form-cookies-consent input[type="checkbox"]:not(:checked) + label:before {
        margin-top: 0;
    }

    .single-post .marketum_content_wrapper {
        margin-bottom: 30px;
    }

    .marketum_post_details_container {
        margin-top: 38px;
    }

    .marketum_main-menu > li.menu-item-has-children > a:before,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children > a:before,
    .marketum_main-menu > li.menu-item-has-children > a:after,
    body .quadmenu-navbar-nav > li.quadmenu-item-has-children > a:after {
        top: 11px;
    }

    .marketum_page-header_4 .marketum_button--filled {
        margin-right: -10px;
    }

    .marketum_comments__item-name,
    .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a,
    .wp-block-latest-comments .wp-block-latest-comments__comment a {
        font-weight: 700;
    }

    .marketum_post_meta_container a {
        margin-top: 0;
    }

    .marketum_alt_header_button,
    .marketum_header_view_type_6 .marketum_alt_header_button {
        width: 100%;
        height: 60px;
        padding: 0;
        line-height: 60px;
        position: static;
    }

    .marketum_header_view_type_1 .marketum_cart-trigger {
        margin-right: 45px;
    }

    .marketum_content_slider_wrapper.marketum_view_type_6 .marketum_additional_info_container {
        display: none;
    }

    .marketum_gallery_slider_wrapper .marketum_slider_arrows .slick-dots {
        justify-content: flex-start;
    }

    .marketum_page_title_wrapper {
        margin-top: 60px;
    }

    .marketum_breadcrumbs_container {
        display: none;
    }

    body .marketum_page_subtitle {
        font-size: 100px;
        bottom: -30px;
        left: auto;
        right: 0;
    }

    .post-comments-list {
        margin-bottom: 90px;
    }

    .marketum_portfolio_fimage_container,
    .marketum_portfolio_gallery_container {
        padding-right: 0;
    }

    .marketum_career_part_container .marketum_career_promo_wrapper {
        padding: 43px 20px 40px;
    }

    .marketum_career_occupation_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .marketum_career_occupation_content .marketum_career_location {
        margin-top: 15px;
    }

    .marketum_recent_career_container {
        margin-top: 93px;
    }

    .marketum_recent_career_title {
        font-size: 32px;
    }

    .marketum_header_button,
    .marketum_side_panel_button {
        display: none;
    }

    .marketum_hamburger,
    .marketum_header_type_2 .marketum_hamburger {
        margin: 0;
    }

    .footer_widget.widget_nav_menu a {
        font-weight: 400;
    }

    .marketum_tagline_container {
        display: none;
    }

    .marketum_single_team_contacts_container h2 {
        font-size: 42px;
    }

    .post-comment-item {
        margin-bottom: 65px;
    }
}

@media only screen and (max-width: 769px) {
    .widget_marketum_banner_widget .marketum_banner_wrapper {
        padding: 160px 20px;
    }

    .marketum_address_widget_item:last-of-type {
        margin-bottom: 0;
    }

    .marketum_portfolio_title {
        margin-top: 50px;
        font-size: 32px;
    }

    .marketum_careers_listing_item {
        text-align: center;
        padding: 30px 0;
    }

    .marketum_careers_listing_title_cont,
    .marketum_careers_listing_link_cont {
        padding: 0;
    }

    .marketum_careers_listing_title_cont h4,
    .marketum_careers_listing_location,
    .marketum_careers_listing_salary_cont {
        margin-bottom: 20px;
    }

    .marketum_careers_listing_link_cont {
        text-align: center;
    }

    .marketum_career_content {
        margin-top: 85px;
    }

    .marketum_job_description_container,
    .marketum_job_responsibilities_container {
        margin-bottom: 70px;
    }

    .marketum_career_content_title {
        margin-bottom: 18px;
    }

    .marketum_port_navigation_header > div {
        margin-top: 90px;
    }

    .marketum_top_footer_part_off .marketum_prefooter_wrapper {
        padding-top: 110px;
    }

    body .nojq.mobile {
        position: fixed !important;
    }

    body.admin-bar header.marketum_sticky_header_on {
        top: 46px;
    }

    .marketum_sidebar {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-left: 0;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 690px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 710px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 700px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 720px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 730px;
    }

    body .give-form-title {
        font-size: 32px;
    }

    #give-payment-mode-wrap {
        padding-left: 15px;
    }

    .give-submit-button-wrap {
        margin-top: 30px;
    }

    .marketum_header_view_type_3 .marketum_header__top .marketum_hamburger-inner,
    .marketum_header_view_type_3 .marketum_header__top .marketum_hamburger-inner::after,
    .marketum_header_view_type_3 .marketum_header__top .marketum_hamburger-inner::before {
        background-color: #FFFFFF;
    }

    .marketum_header_view_type_3 .marketum_header__top .marketum_hamburger.is-active .marketum_hamburger-inner {
        background-color: transparent;
    }

    .marketum_header_view_type_3 .marketum_header__top {
        padding: 5px 30px 5px 55px;
    }

    body.admin-bar header.marketum_header {
        top: 46px;
    }

    .marketum_dropdown-trigger.d-sm-block {
        display: block !important;
    }

    .marketum_header-logo {
        padding: 15px 0 5px;
    }

    body .elementor .sbi_fixed_height {
        height: 126px !important;
    }

    .footer_widget {
        width: 50%;
        margin-bottom: 40px;
    }

    .footer_widget #sb_instagram.sbi_fixed_height {
        height: auto !important;
    }

    .marketum_prefooter_type_1 .footer_widget,
    .marketum_prefooter_type_5 .footer_widget:first-of-type {
        width: 50%;
    }

    .marketum_prefooter_type_5 .footer_widget:nth-of-type(2) {
        width: 58.333333%;
    }

    .marketum_prefooter_type_5 .footer_widget:nth-of-type(3) {
        width: 100%;
    }

    .footer_widget.widget_custom_html .marketum_footer_menu {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 65px;
    }

    body .footer_widget #sb_instagram #sbi_images .sbi_item {
        width: 16.666666% !important;
    }

    body .marketum_page_title_container {
        min-height: 400px;
    }

    body .marketum_page_title {
        font-size: 42px;
    }

    body .marketum_site_title_container {
        font-size: 110px;
    }

    .marketum_post_details_container .marketum_post_details_author_cont,
    .marketum_post_details_container  .marketum_post_details_tag_cont,
    .marketum_post_details_container .marketum_post_details_tag_cont {
        max-width: 100%;
    }

    .marketum_post_details_container .marketum_post_details_author_cont {
        text-align: center;
        margin-bottom: 10px;
    }

    .marketum_post_details_container  .marketum_post_details_tag_cont {
        margin-bottom: 15px;
    }

    .marketum_post_details_container {
        margin-bottom: 45px;
    }

    .marketum_comments_cont .comment-form > .row {
        flex-direction: column;
    }

    .marketum_comments_cont .comment-form .row .col-6 {
        max-width: 100%;
    }

    .marketum_columns_3 .marketum_recent_post,
    .marketum_columns_4 .marketum_recent_post {
        width: 50%;
    }

    body .marketum_view_type_1 .elementor-alert,
    body .marketum_view_type_2 .elementor-alert {
        padding: 15px 60px;
    }

    body .marketum_view_type_1 .elementor-alert .elementor-alert-title,
    body .marketum_view_type_2 .elementor-alert .elementor-alert-title {
        font-size: 16px;
    }

    .marketum_volunteer_form .col-6 {
        width: 100%;
        max-width: 100%;
        flex: auto;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 .footer_widget:not(:first-of-type) .footer_widget_wrapper {
        padding-left: 0;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 .footer_widget {
        width: 50%;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_3 .footer_widget:nth-of-type(odd),
    .marketum_prefooter_wrapper.marketum_prefooter_type_3 .footer_widget:nth-of-type(even) {
        width: 50%;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_3 .footer_widget:nth-of-type(even) .footer_widget_wrapper {
        padding-top: 0;
    }

    body form[id*=give-form] #give-donation-level-radio-list li,
    body form[id*=give-form] .give-donation-levels-wrap li,
    body form[id*=give-form] #give-gateway-radio-list li,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset ul li {
        padding-left: 5px;
        margin-left: 0;
        margin-right: 40px;
        position: relative;
    }

    body form[id*=give-form] #give-donation-level-radio-list li input[type="radio"],
    body form[id*=give-form] .give-donation-levels-wrap li input[type="radio"],
    body form[id*=give-form] #give-gateway-radio-list li input[type="radio"],
    body form[id*=give-form] .give-donation-levels-wrap + fieldset ul li input[type="radio"] {
        position: absolute;
        left: -999px;
    }

    body form[id*=give-form] #give-donation-level-radio-list,
    body form[id*=give-form] .give-donation-levels-wrap,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset ul {
        margin-left: 20px;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 {
        padding: 70px 0 0;
    }

    .footer_type_2 .marketum_footer_menu {
        margin: 20px 0 15px;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 .footer_widget {
        margin-bottom: 50px;
    }

    .marketum_prefooter_type_2 .marketum_footer-socials {
        margin: 40px 0 36px;
    }

    .marketum_sidebar {
        margin-top: 100px;
    }

    .marketum_blog_content_container .row.marketum_sidebar_left,
    .marketum_page_content_wrapper .row.marketum_sidebar_left {
        flex-direction: row;
    }

    .marketum_member_form textarea {
        width: 100%;
        margin-bottom: 20px;
    }

    .single-marketum-tours .marketum_recent_post {
        margin-bottom: 30px;
    }

    .single-marketum-tours .marketum_recent_post:last-of-type {
        margin-bottom: 0;
    }

    .marketum_header_f2.marketum_header {
        box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
    }

    .marketum_socials_widget_wrapper.content_align_right .marketum_footer-socials,
    .marketum_socials_widget_wrapper.content_align_left .marketum_footer-socials {
        justify-content: center;
        margin-bottom: 0;
    }

    .marketum_prefooter_type_1 .marketum_socials_widget_wrapper.content_align_left,
    .marketum_prefooter_type_3 .marketum_socials_widget_wrapper.content_align_left {
        text-align: left;
    }

    .marketum_prefooter_type_1 .marketum_socials_widget_wrapper.content_align_right,
    .marketum_prefooter_type_3 .marketum_socials_widget_wrapper.content_align_right {
        text-align: right;
    }

    .marketum_prefooter_type_1 .marketum_socials_widget_wrapper.content_align_left .marketum_footer-socials,
    .marketum_prefooter_type_3 .marketum_socials_widget_wrapper.content_align_left .marketum_footer-socials {
        justify-content: flex-start;
    }

    .marketum_prefooter_type_1 .marketum_socials_widget_wrapper.content_align_right .marketum_footer-socials,
    .marketum_prefooter_type_3 .marketum_socials_widget_wrapper.content_align_right .marketum_footer-socials {
        justify-content: flex-end;
    }

    .marketum_footer_menu,
    .marketum_footer_menu ul,
    .marketum_footer_menu_2 {
        justify-content: center;
        margin-bottom: 20px;
    }

    .marketum_footer_menu_2 {
        margin-bottom: 30px;
    }

    .marketum_404_error_subtitle {
        line-height: 60px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 720px;
    }

    .footer_type_3 .marketum_footer_menu {
        justify-content: center;
        margin-bottom: 0;
    }

    .marketum_heading {
        font-size: 32px;
    }

    .marketum_404_error_title {
        font-size: 65px;
    }

    .marketum_promo_box_item.marketum_view_type_2 {
        padding: 55px 30px 58px;
    }

    .marketum_prefooter_type_2 .footer_widget.widget_nav_menu ul {
        display: flex;
        flex-wrap: wrap;
    }

    .marketum_prefooter_type_2 .footer_widget.widget_nav_menu ul li {
        width: 100%;
        max-width: 50%;
        flex: 0 0 50%;
    }

    .footer_widget,
    .marketum_prefooter_type_2 .footer_widget,
    .marketum_prefooter_type_3 .footer_widget {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .marketum_single_team_featured_image_container {
        margin-bottom: 50px;
    }

    .marketum_single_team_image {
        width: 100%;
    }

    .marketum_single_team_biography_title_part_wrapper {
        margin-bottom: 32px;
    }

    .marketum_single_team_biography {
        padding: 26px 0 0 68px;
    }

    .marketum_single_team_personal_info_container {
        margin-bottom: 30px;
    }

    .marketum_person_info_part {
        margin-bottom: 110px;
    }

    .marketum_single_team_biography_container {
        padding: 114px 0 112px;
        margin-bottom: 110px;
    }

    .marketum_education_and_experience_container .marketum_education_container {
        margin-bottom: 30px;
    }

    .marketum_education_and_experience_container {
        margin-bottom: 112px;
    }

    .marketum_single_team_contacts_wrapper {
        padding: 88px 0 125px;
    }

    .marketum_single_team_contacts_wrapper .col-lg-5 {
        text-align: center;
    }

    .marketum_single_team_contacts_wrapper .marketum_contacts_divider_container {
        margin: 25px 0;
    }
}

@media only screen and (max-width: 737px) {
    .marketum_post_details_container > .row {
        flex-direction: column;
    }

    .marketum_post_tag_container {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .marketum_post_tag_container ul {
        justify-content: flex-start;
    }

    .marketum_post_socials {
        justify-content: center;
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
        padding-right: 20px;
        padding-left: 20px;
    }

    .marketum_single_team_contacts_container h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .marketum_404_error_title {
        font-size: 45px;
    }

    .marketum_person_info_part {
        margin-bottom: 70px;
    }

    .marketum_single_team_biography_container {
        padding: 74px 0 42px;
        margin-bottom: 70px;
    }

    .marketum_single_team_biography {
        padding: 26px 0 0 28px;
    }

    .marketum_single_team_biography_cont_wrapper:before {
        left: -26px;
    }

    .marketum_single_team_biography_cont_wrapper,
    .marketum_single_team_skills_container {
        margin-bottom: 30px;
    }

    .marketum_single_team_biography_title_part_wrapper {
        margin-bottom: 0;
    }

    .marketum_education_and_experience_container {
        margin-bottom: 72px;
    }

    .marketum_single_team_contacts_wrapper {
        padding: 48px 0 85px;
    }

    .marketum_header_buttons_container {
        padding-right: 20px;
    }

    .footer_widget,
    .marketum_prefooter_type_2 .footer_widget ,
    .marketum_prefooter_type_3 .footer_widget {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .marketum_portfolio_title {
        margin-top: 59px;
        font-size: 32px;
    }

    .marketum_port_navigation_header > div {
        margin-top: 50px;
    }

    .marketum_port_navigation_list {
        flex-direction: column;
        padding-top: 74px;
    }

    .marketum_port_navigation_list .marketum_port_archive_dots {
        margin: 50px 0 40px;
    }

    .marketum_top_footer_part_off .marketum_prefooter_wrapper {
        padding-top: 70px;
    }

    .marketum_career_content {
        margin-top: 75px;
    }

    .marketum_job_description_container,
    .marketum_job_responsibilities_container {
        margin-bottom: 48px;
    }

    .marketum_career_content_title {
        margin-bottom: 18px;
    }

    .marketum_recent_career_container {
        margin-top: 53px;
    }

    .post-comments-list {
        margin-bottom: 50px;
    }

    .post-comment-item {
        margin-bottom: 45px;
        position: relative;
    }

    .post-comment-item .post-comment-avatar {
        width: 70px;
        position: absolute;
    }

    .post-comment-item .post-comment-avatar img {
        width: 70px;
        height: 70px;
    }

    .post-comment-item .post-comment-main {
        width: 100%;
    }

    .post-comment-meta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 0 0 0 90px;
    }

    .post-comment-author-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .post-comment-author-container .post-comment-author {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .post-comment-buttons {
        top: 0;
    }

    .post-comment-author-container .divider {
        display: none;
    }

    .marketum_page_content_container .post-comment-buttons a {
        margin: 0 15px 0 0;
        line-height: 1.7;
    }

    .marketum_top_footer_socials li:not(:first-of-type),
    .marketum_top_footer_socials li {
        margin: 0 26px 0 0;
    }

    .marketum_top_footer_socials li a {
        margin: 0;
    }

    .marketum_logo_box {
        padding: 20px 20px 13px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 500px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 520px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 510px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 530px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 540px;
    }

    .marketum_back_to_top_button,
    .marketum_side_panel_button,
    .marketum_header_button,
    .marketum_alt_header_button {
        display: none;
    }

    .marketum_page-header_2 {
        flex-direction: row;
        align-items: center;
    }

    .marketum_hamburger,
    .marketum_header.marketum_page-header_2 .marketum_hamburger,
    .marketum_header.marketum_page-header_3 .marketum_hamburger,
    .marketum_header.marketum_page-header_6 .marketum_hamburger {
        margin-right: 0;
    }

    .marketum_header_view_type_3 .marketum_header__top {
        padding: 10px 15px 5px;
    }

    .marketum_sidebar_left > .col-sm-8,
    .marketum_sidebar_right > .col-sm-8,
    .marketum_sidebar_left > .marketum_sidebar,
    .marketum_sidebar_right > .marketum_sidebar {
        max-width: 100%;
        flex: auto;
    }

    .marketum_sidebar_left > .marketum_sidebar,
    .marketum_sidebar_right > .marketum_sidebar {
        padding-top: 15px;
    }

    .marketum_main_donation_popup {
        z-index: 150005;
    }

    body form[id*=give-form] .give-donation-amount,
    body form[id*=give-form] #give-donation-level-radio-list {
        float: none;
    }

    .give-goal-progress {
        margin-bottom: 30px;
    }

    #give-payment-mode-select,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset {
        top: 35px;
    }

    #give_purchase_form_wrap {
        margin-top: 60px;
    }

    body form[id*=give-form] #give-donation-level-radio-list {
        margin: 0;
    }

    body form[id*=give-form] .give-donation-amount #give-amount-text {
        width: 100%;
    }

    body form[id*=give-form] #give-donation-level-radio-list li {
        margin: 0 20px 5px;
    }

    body #give_checkout_user_info p,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p {
        width: 100%;
        margin-bottom: 30px;
    }

    body #give_checkout_user_info p:first-of-type,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p:first-of-type,
    body #give_checkout_user_info p:nth-of-type(2),
    body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p:nth-of-type(2),
    body #give_checkout_user_info p:last-of-type,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset + div p:last-of-type {
        padding: 0;
    }

    .give-submit-button-wrap {
        margin-top: 0;
    }

    .marketum_columns_2 .marketum_recent_post,
    .marketum_columns_3 .marketum_recent_post,
    .marketum_columns_4 .marketum_recent_post {
        width: 100%;
    }

    .marketum_recent_post_wrapper .marketum_recent_post_image_cont img {
        width: 100%;
    }

    .marketum_aside-dropdown__item .marketum_button {
        font-size: 18px;
    }

    .marketum_prefooter_type_3 .footer_widget.widget_nav_menu ul.menu li {
        width: 33.333333%;
    }

    footer.marketum_footer.footer_type_2 .marketum_footer_wrapper {
        padding-top: 20px;
    }

    footer.marketum_footer.footer_type_2 .marketum_copyright_container {
        text-align: center;
        margin-bottom: 0;
    }

    .marketum_footer_form input[type="submit"] {
        margin-top: 15px;
    }

    .footer_widget {
        width: 100% !important;
    }

    .marketum_footer-socials {
        margin: 27px 0 10px;
    }

    .marketum_recent_posts_container_title {
        margin-bottom: 44px;
    }

    .single-post .marketum_content_wrapper {
        margin-bottom: 20px;
    }

    .marketum_post_details_container {
        margin-top: 40px;
    }

    .marketum_post_meta_container a {
        margin-top: 0;
    }

    .marketum_comments {
        margin-top: 18px;
    }

    .marketum_comments_cont {
        margin-top: 30px;
    }

    .comment-respond {
        margin-top: 46px;
    }

    .marketum_comments__item:not(:first-of-type),
    .wp-block-latest-comments__comment:not(:first-of-type) {
        margin-top: 22px;
    }

    .marketum_sidebar {
        margin-top: 67px;
    }

    body form[id*=give-form] #give-donation-level-radio-list li,
    body form[id*=give-form] .give-donation-levels-wrap li,
    body form[id*=give-form] #give-gateway-radio-list li,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset ul li {
        margin-bottom: 5px;
    }

    form.give-form .give-hidden,
    form[id*=give-form] .give-hidden {
        margin: 10px 0 6px;
    }

    #give-payment-mode-select .give-payment-mode-label,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset .give-payment-mode-label {
        margin-bottom: -4px;
    }

    #give_purchase_form_wrap #give_checkout_user_info > legend,
    body form[id*=give-form] .give-donation-levels-wrap + fieldset + div legend {
        margin-bottom: 12px;
    }

    body .marketum_home_about_counters {
        max-width: 100%;
    }

    .marketum_footer_menu_2 li a:after {
        bottom: 0;
    }

    body .marketum_footer_menu_2 li:not(:last-of-type),
    body .marketum_footer_menu_2 li:last-of-type {
        margin: 0 15px;
    }

    body .marketum_block_have_bg_image {
        background-image: none;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_3,
    .marketum_prefooter_wrapper.marketum_prefooter_type_4 {
        padding: 76px 0 19px;
    }

    .marketum_offices_list .marketum_footer_widget_title {
        margin: 50px 0 12px;
    }

    .marketum_404_error_inner {
        height: 650px;
    }

    .marketum_404_error_subtitle {
        line-height: 45px;
    }

    .marketum_media_output_wrapper {
        margin-bottom: 22px;
    }

    .comment-notes {
        line-height: 26px;
        margin-bottom: 26px;
    }

    body .elementor-18 .elementor-element.elementor-element-2a11c57 > .elementor-widget-container {
        margin: 0 -6px 0 -10px;
    }

    body .elementor-widget-accordion .elementor-accordion .elementor-tab-content,
    body .elementor-widget-toggle .elementor-toggle .elementor-tab-content {
        padding-right: 0;
    }

    body .marketum_content_wrapper .elementor-tab-content ul li {
        width: 100%;
    }

    .marketum_comments__item-name {
        font-weight: 700;
    }

    .marketum_color_bg_container {
        padding: 41px 30px 39px;
    }

    .marketum_address_widget_item:last-of-type {
        margin-bottom: 13px;
    }

    .marketum_page_title_wrapper {
        margin-top: 30px;
    }

    body .marketum_page_subtitle {
        font-size: 50px;
        bottom: -10px;
    }

    .marketum_top_footer_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    textarea, .form__message {
        margin-bottom: 0;
    }

    .comment-respond textarea {
        margin-bottom: 20px;
    }

    .marketum_single_team_person_name,
    .marketum_single_team_biography_title,
    .marketum_education_and_experience_title {
        font-size: 32px;
    }

    .marketum_education_and_experience_container .marketum_education_container {
        margin-bottom: 50px;
    }

    .marketum_port_navigation_container {
        display: none;
    }
}

@media only screen and (max-width: 569px) {
    .marketum_main_donation_popup {
        padding: 20px;
    }

    .marketum_dropdown-trigger.d-sm-block {
        display: none !important;
    }

    .marketum_dropdown-trigger.d-sm-none {
        display: block !important;
    }

    .give-goal-progress {
        flex-direction: column-reverse;
    }

    .give-goal-progress .raised,
    .give-progress-bar {
        width: 100%;
    }

    .marketum_copyright_container {
        text-align: center;
    }

    .marketum_copyright_container {
        margin-bottom: 20px;
    }

    .marketum_footer_menu,
    .marketum_footer_menu ul {
        justify-content: center;
        margin-bottom: 30px;
    }

    .marketum_single_post_donation_form_container {
        padding: 0;
    }

    body .sbi_fixed_height {
        height: 238px !important;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 .footer_widget:not(:last-of-type) {
        width: 100%;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_2 .footer_widget:not(:first-of-type) .footer_widget_wrapper {
        padding-top: 0;
    }

    .marketum_prefooter_type_3 .footer_widget.widget_nav_menu ul.menu li {
        width: 50%;
    }

    body .marketum_site_title_container {
        display: none;
    }
}

@media only screen and (max-width: 415px) {
    .marketum_mission .marketum_heading span {
        margin-right: 10px;
    }

    body .marketum_page_title_container {
        min-height: 300px;
    }

    .marketum_page_title_wrapper {
        margin-top: 80px;
    }

    .marketum_page_promo_text {
        display: none;
    }

    body .marketum_page_subtitle {
        left: auto;
        right: 0;
    }

    .marketum_single_product_page .product_meta span.tagged_as a {
        margin-bottom: 10px;
    }

    .marketum_footer_wrapper {
        flex-direction: column;
    }

    body .elementor .sbi_fixed_height {
        height: 348px !important;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 374px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 394px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 384px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 404px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 414px;
    }

    .marketum_footer_copyright {
        text-align: center;
    }

    .footer_widget:last-of-type {
        margin-bottom: 30px;
    }

    .marketum_prefooter_type_3 .footer_widget:last-of-type {
        margin-bottom: 0;
    }

    .marketum_prefooter_wrapper.marketum_prefooter_type_3,
    .marketum_prefooter_wrapper.marketum_prefooter_type_4 {
        padding-bottom: 0;
    }

    body .elementor-18 .elementor-element.elementor-element-2a11c57 > .elementor-widget-container {
        margin: 0 -7px 0 -10px;
    }
}

@media only screen and (max-width: 390px) {
    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 350px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 370px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 360px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 380px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 390px;
    }
}

@media only screen and (max-width: 376px) {
    body .elementor .sbi_fixed_height {
        height: 315px !important;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 335px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 355px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 345px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 365px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 375px;
    }

    body .elementor-18 .elementor-element.elementor-element-2a11c57 > .elementor-widget-container {
        margin: 0 -10px 0 -10px;
    }
}

@media only screen and (max-width: 321px) {
    body .elementor .sbi_fixed_height {
        height: 269px !important;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-no {
        max-width: 280px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-default {
        max-width: 300px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-narrow {
        max-width: 2900px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-extended {
        max-width: 310px;
    }

    body .elementor-section.elementor-section-boxed.elementor-section-stretched > .elementor-container.elementor-column-gap-wide {
        max-width: 320px;
    }
}
