/* :root {
    --navy-blue:            #0A3457;
    --navy-blue-70:         #40586B;
    --navy-blue-50:         #7A8FA0;
    --navy-blue-30:         #DCE2E7;
    --navy-blue-20:         #E7EBEE;
    --white:                #FFFFFF;
    
    --sand:                 #E8E0C9;
    --sand-dark:            #cec3a1;
    
    --blue:                 #055DA4;
    --mustard:              #F2BC09;
    
    --special-red:          #D22D3A;
    --special-blue:         #2D82D2;
    --special-green:        #73A11D;
    --special-orange:       #DB7629;

    --family-title:         'IBM Plex Sans', Helvetica, sans-serif;
    --family-body:          'IBM Plex Sans', Helvetica, sans-serif;

    --weight-semibold:      600;
    --weight-medium:        500;
    --weight-regular:       400;
} */
/* ===========================
    HERO  
=========================== */
/*
#hero_section {

}
*/
#hero_section.container-fluid {
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
}
#hero_section.default {
    padding: 70px 0;
}
.container-fluid.default #hero_content.container {
    padding-top: 50px;
}
.background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ===========================================
    HERO HEADER
=========================================== */
#no_hero {
  padding-top: 60px;
  padding-bottom: 60px;
}
#no_hero h1 {
  margin-bottom: 40px;
}
#hero_section .background {
    position: relative;
    display: flex;
    min-height: 440px;
    padding: 70px 0;
}
#hero_section .background::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--navy-blue);
    opacity: .3;
    z-index: 1;
}
#hero_section.content #hero_content .tag {
  opacity: 1;
}
#hero_section.content #hero_content h1,
#hero_section.content #hero_content h2,
#hero_section.content #hero_content p,
#hero_section.content #hero_content li,
#hero_section.content #hero_content a:not(.the_button) {
    color: var(--white);
}
#hero_section.content #hero_content p {
    font-weight: var(--weight-semibold);
    font-size: 21px;
}
#hero_section #hero_content h2,
#hero_section #hero_content .h2 {
    margin-bottom: 32px;
}
#hero_section #hero_content a {
    font-weight: var(--weight-semibold);
    transition: all .2s ease;
}
#hero_section.content #hero_content a:not(.the_button) {
    text-decoration: underline;
}
#hero_section.default #hero_content a:hover {
    color: var(--mustard);
}
#hero_section.default .text {
    margin-top: 40px;
}
#hero_section #hero_content a:not(.the_button):hover {
    opacity: .7;
}
#hero_section.content #hero_content * {
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.25);
}
#hero_section.content #hero_content a.the_button {
    text-shadow: none;
}
#hero_section.content #hero_content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
#hero_section #hero_content img,
#hero_section #hero_content video {
    display: none;
}
#hero_section #hero_content .row > div :last-child {
    margin-bottom: 0;
}
/* ===========================
    FORMS  
=========================== */
.two_columns_wrapper,
.two_columns_wrapper_last {
    float: left;
    width: calc(50% - 8px);
    padding-bottom: 12px;
}
.two_columns_wrapper {
    /* padding-right: 16px; */
    margin-right: 16px;
}
.two_columns_wrapper_last {
    padding-right: 0;
}
/* ===========================
    FLEXIBLE CONTENT
=========================== */
/* General */
.background-sand {
    background-color: var(--sand);
}
.background-white {
    background-color: var(--white);
}
#flexible_content {
    background-color: var(--white);
    z-index: 9;
    position: relative;
}
#no_flex {
    width: 100%;
    display: none;
}
.gallery #no_flex {
    display: none;
}
#the_content .text_sidebar blockquote,
.flex_generic_content blockquote {
    margin-top: 0;
}
.flex_section.background_gray {
    background-color: var(--cool-gray-50);
}
/* FLEX PADDINGS */
.flex_section.padding_all {
    padding: 70px 0;
}
.flex_section.padding_up {
    padding: 70px 0 16px;
}
.flex_section.padding_down {
    padding: 16px 0 70px;
}
.flex_section.padding_none {
    padding: 0;
} 
/* FLEX COLORS */
.flex_section.background_white {
    background-color: var(--white);
}
.flex_section.background_sand {
    background-color: var(--sand);
} 
.flex_section.background_navy-blue {
    background-color: var(--navy-blue);
}  
/* A. Generic Content */
.flex_generic_content {
    
}
/* B. Text and Image */
.flex_text_n_image .responsive_image,
.flex_text_n_video .embed-responsive {
    margin-bottom: 1rem;
}
.flex_text_n_image .responsive_image {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
}
.flex_text_n_image .responsive_image img {
    border-radius: 8px;
}
.flex_text_n_image h2 {
    margin-bottom: 32px;
}
/* C. Text and Video */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive::before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item, 
.embed-responsive embed, 
.embed-responsive iframe, 
.embed-responsive object, 
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
    cursor: pointer;
    -webkit-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
            transition: all 0.35s ease-in-out;
}
.embed-responsive .overlay.open {
    opacity: 0; 
}
.embed-responsive .overlay img {
    position: absolute;
    opacity: 0.8;
    width: 15%;
    width: 100px;
    height: auto;
    pointer-events: none;
    left: 50%;
    top: 50%;
    -webkit-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
            transition: all 0.35s ease-in-out;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
        -ms-transform: translateX(-50%) translateY(-50%) translateZ(0);
            transform: translateX(-50%) translateY(-50%) translateZ(0);
}
.embed-responsive .overlay:hover img {
    opacity: 1;
} 
/* D. Banner full width */
.flex_background_content {
    background-repeat: repeat;
    background-position: center;
    background-size: cover;  
    position: relative;
    padding: 0;
    margin: 0;
    padding: 140px 0;
    background-color: var(--white); 
    text-align: center;
}
.flex_background_content:not(.background_white) *:not(.the_button) {
    color: var(--white);
}
.flex_background_content.background_white *:not(.the_button),
.flex_background_content.background_image.text-blue *:not(.the_button) {
    color: var(--navy-blue);
}
.flex_background_content *:after {
    color: var(--white);
}
.flex_background_content p:not(.tag),
.flex_background_content li:not(.tag) {
    font-size: 40px;
    font-weight: var(--weight-semibold);
}
.flex_background_content.background {
    font-weight: var(--weight-semibold);   
    padding: 140px 0;  
}
.flex_background_content.background_navy-blue strong, 
.flex_background_content.background_navy-blue b,
.flex_background_content.background_image.text-white strong,
.flex_background_content.background_image.text-white b {
    color: var(--mustard)!important;
}
.flex_background_content.background_white strong, 
.flex_background_content.background_white b,
.flex_background_content.background_image.text-blue strong,
.flex_background_content.background_image.text-blue b {
    color: var(--blue)!important;
}
.flex_background_content.background_white.has_pattern {
    background-image: url(../img/others/pattern-light.png);
    background-size: 1920px;
}
.flex_background_content.background_navy-blue.has_pattern {
    background-image: url(../img/others/pattern-dark.png);
    background-size: 1920px;
}
.flex_background_content.background_image,
.flex_background_content.background_image .container {
    position: relative;
}
.flex_background_content.background_image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 52, 87, 0.25);
    z-index: 1;

}
.flex_background_content.background_image.text-blue:before {
    background-color: rgba(250, 250, 250, 0.30);
}
.flex_background_content.background_image.text-blue *:not(.the_button) {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.20);
}
.flex_background_content.background_image.text-white *:not(.the_button) {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.20);
}

.flex_background_content.background_image .container {
    z-index: 99;
}
.background_sand .the_button:not(.secondary):hover {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
/* D. Banner double screen */ 
.flex_double_screen {
    background-repeat: repeat;
    background-position: center;
    background-size: cover;  
    position: relative;
    padding: 0;
    margin: 0;
    padding: 140px 0;
    text-align: left;
    background-color: var(--navy-blue);
}
.flex_double_screen.has_pattern {
    background-image: url(../img/others/pattern-dark.png);
    background-size: 1920px;
}
.flex_double_screen *:not(.the_button) {
    color: var(--white);
}
.flex_double_screen .justify-content-start .flex_double_screen-wrapper {
    padding-right: 40px; 
}
.flex_double_screen .justify-content-end .flex_double_screen-wrapper {
    padding-left: 40px; 
}
.flex_double_screen-title {
    font-size: 42px;
    font-weight: var(--weight-semibold);
}
.flex_double_screen-title strong,
.flex_double_screen-title b {
    color: var(--mustard)!important;
}
.floated_image {
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute; 
    background-position: center;
    background-size: cover;
}
.floated_image img {
    display: none;
}
.floated_image.left {
    left: 0;
    right: initial;
}
.floated_image.right {
    right: 0;
    left: initial;
}
/* F. Special list */
.flex_special_ul {
    margin-top: 15px;
    margin-bottom: 15px;
}
.flex_special_ul .special_ul {
    padding: 0;
    margin: 0;
}
.flex_special_ul .special_ul > li {
    list-style: none;
    padding: 0;
    display: block;
}
.flex_special_ul .special_ul.two_columns > li,
.flex_special_ul .special_ul.random > li {
    float: none;
    padding-right: 15px;
    display: inline-block;
    vertical-align: bottom;
}
.flex_special_ul .special_ul.two_columns > li {
    width: calc(50% - 4px);
}
.flex_special_ul .special_ul.random > li {
    width: auto;
}
.flex_special_ul .special_ul > li > div {
    background-color: var(--white);
    border-left: 4px solid var(--blue);
    margin-bottom: 12px;
    padding: 6px 15px 6px 12px;
    display: table;
}
/* G. Toggle cards */
/*
.flex_toggle_card {

}
*/
.tab_ul {
    margin-top: 10px;
    margin-bottom: 10px;
}
.toggle_card {
    padding: 14px 0;
    margin: 0;
    border-bottom: 2px solid var(--navy-blue-30); 
}
.background_sand .toggle_card {
    border-bottom: 2px solid var(--sand-dark); 
}
.toggle_card:last-child {
    border-bottom: none; 
}
.toggle_card > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* margin-bottom: 12px; */
}
.toggle_content_lv1 {
    margin-top: 12px;
}
.toggle_content_lv1 :last-child {
    margin-bottom: 0;
}
.add_padding {
    padding: 1rem 1rem 0.90em;
    display: block;
}
.toggle_title_lv1, 
.toggle_title_lv2 {
    position: relative;
    /* padding-right: 50px; */
}
.toggle_title_lv1 h3,
.toggle_title_lv1 .title,
.toggle_title_lv1 span {
    font-size: 18px;
}
.toggle_title_lv2 h4,
.toggle_title_lv2 span {
    font-size: 16px; 
}
.toggle_title_lv1 .title,
.toggle_title_lv1 h3,
.toggle_title_lv2 h4 {
    margin: 0;
    font-weight: var(--weight-semibold);
}
.toggle_title_lv1 span, 
.toggle_title_lv2 span {
    /* position: absolute; */
    display: inline-block;
    font-size: 24px;
    color: var(--navy-blue);
    font-weight: var(--weight-medium);
}  
.toggle_title_lv2 span {
    margin-top: -0.7em; 
}
.toggle_content_lv1 a,
.toggle_content_lv2 a {
    font-weight: var(--weight-semibold);
}
.toggle_content_lv1 a:hover,
.toggle_content_lv2 a:hover {
    text-decoration: underline;
}
.toggle_content_lv1,
.toggle_content_lv2 {
    display: none;
}
.toggle_content_lv1 > .add_padding {
    background-color: var(--white);
    border-top: 2px solid var(--navy-blue-70);
    padding: 30px 20px 15px;
}
.toggle_card_lv1,
.toggle_card_lv2 {
    margin-bottom: 0;
}
.toggle_card_lv2 {
    border-top: 2px solid var(--navy-blue-70);
}
.toggle_card_lv2 .add_padding {
    padding: 20px 30px;
}
.toggle_content_lv2.add_padding {
    padding: 30px 30px 20px;
    border-top: 2px solid var(--navy-blue-70);
    background-color: var(--white);
}
.toggle_content_lv2 ul {
    padding-left: 30px;
}
.toggle_content_lv2 li {
    list-style: initial;
}
.sub_ul_toggle > li.toggle_card_lv2 {
    list-style: none;
}
.sub_ul_toggle {
    padding: 0;
    margin: 0;
}
.toggle_title_lv1.open .fa-angle-down:before,
.toggle_title_lv2.open .fa-angle-down:before {
    content: "\f106";
} 
.flex_toggle_card img {
    margin-bottom: 1rem;
}
/* H. Featured columns */
.flex_featured_columns {
    margin: 30px 0;
}
.flex_featured_columns .column_text {
    padding-left: 15px;
}
.flex_featured_columns .column_image {
    text-align: center;
    padding-right: 0;
}
.flex_featured_columns .column_image img {
    max-width: 60px;
    width: 100%;
}
.flex_featured_columns .featured_icon {
    width: 60px;
    height: auto;
    margin-bottom: 24px;
    display: block;
}
.flex_featured_columns.centered {
    text-align: center;
}
.flex_featured_columns.centered .featured_icon {
    margin: auto;
    margin-bottom: 10px;
}
/* G. Toggle card */
.flex_contact {
    margin-top: 30px;
    margin-bottom: 30px;
}
.flex_contact ul {
    padding: 0;
}
.flex_contact ul li {
    list-style: none;
    font-size: 15px; 
}
.flex_contact .form-control, 
.form-control {
    border-radius: 8px;
    color: var(--navy-blue);
    border: 1.5px solid var(--navy-blue-50);
    -webkit-box-shadow: none;
            box-shadow: none;
}
.form-control:focus,
.form-control:active {
    outline: 0;
    border-color: var(--navy-blue);
    outline-offset: -2px;
    text-decoration: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    /* border: 1px solid var(--blue); */
}
/*
.flex_contact .the_form h3 { 
    margin: 0;
}
*/
.nf-form-fields-required {
    margin-bottom: 4px;
}
div.form_icon {
    padding-right: 0;
}
.form_icon .material-icons {
    font-size: 2.2em;
    color: var(--blue);
}
.data_content a {
    color: var(--blue);
}
.data_content a:hover,
.form_icon a:hover .material-icons {
    color: var(--mustard);
}
.data_content .icon_text h4 {
    margin-bottom: 0;
}
.icon_list_item {
    margin-bottom: 1em;
}
.form_icon,
.icon_text {
    display: inline-block;
    vertical-align: middle;
}
.form_icon {
    width: 44px;
}
.icon_text {
    width: calc(100% - 50px);
}
.data_content .row {
    margin-bottom: 5px;
}
.the_form .nf-form-content {
    padding: 0;
}
.the_form .nf-before-form-content {
    margin-bottom: 1em;
}
.the_form form .form-control {
    border-radius: 8px;
    border: 2px solid var(--navy-blue-50);
    background-color: transparent!important;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-weight: var(--weight-medium);
    /* padding: 0; */
    /* padding-bottom: 0px; */
    font-size: 18px; 
    color: var(--navy-blue-50)!important;
}
.the_form form .form-control:focus,
.the_form form .form-control:active { 
    outline: 0;
    outline-offset: -2px;
    
    text-decoration: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    /* border: 0!important; */
} 
/* .the_form form .form-control:focus,
.the_form form .form-control:active {
    border-bottom: 2px solid var(--blue)!important; 
} */
.the_form form .nf-error.field-wrap .nf-field-element:after,
.the_form form .nf-pass.field-wrap .nf-field-element:after {
    display: none!important;
}
.the_form form textarea.form-control {
    height: 100px;
}
.the_form form input[type=button] {
    all: unset;
    font-family: var(--family-title);
    background-color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    border-radius: 0;
    display: inline-block;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: var(--weight-medium);
    color: var(--white); 
    text-shadow: none;
    font-size: 12px;
    line-height: 12px;
    margin: 8px 0;
    cursor: pointer;
}
.the_form form input[type=button]:hover,
.the_form form input[type=button]:focus {
    background-color: var(--sand);
    border: 2px solid var(--sand);
    color: var(--navy-blue);
}
.nf-field-container {
    margin-bottom: 0 !important;
}
.nf-field-label .nf-label-span, .nf-field-label label {
    font-size: 14px;
    font-weight: var(--weight-regular) !important;
}
.nf-field-label {
    margin-bottom: 6px !important;
}
.the_form form .checkbox-container.label-right label {
    font-size: 14px; 
    font-weight: var(--weight-regular);
    position: relative;
    z-index: 9;
}  
.the_form form .checkbox-container.label-right label {
    color: var(--navy-blue);
}
.the_form form .checkbox-container.label-right label a {
    font-weight: var(--weight-regular);
} 
.the_form form .checkbox-container.label-right label a:hover {
    text-decoration: underline;
} 
.the_form form .nf-error .nf-error-msg,
.the_form form .nf-error-msg {    
    font-size: 14px;
}
.the_form form .nf-error .nf-error-msg,
.the_form form .nf-error-msg {
    color: var(--mustard)!important;
}
.the_form form .nf-error .ninja-forms-field {
    border-color: var(--navy-blue)!important;
}
.the_form form .checkbox-wrap .nf-field-label label:before {
    font-size: 14px;
    left: -27px;
    top: -1px;
}
.the_form form .checkbox-wrap .nf-field-label label:after {
    background-color: transparent;
    border-color: var(--navy-blue);
}
.the_form form .checkbox-wrap .nf-field-label label:before {
    color: var(--navy-blue);
}
.the_form form .nf-field-container {
    margin-bottom: 24px;
}
.the_form form .nf-field-container.submit-container {
    margin-bottom: 0;
}
.the_form input::-webkit-input-placeholder {
    color: var(--navy-blue-20); 
}

.the_form input:-ms-input-placeholder {
    color: var(--navy-blue-20);
}

.the_form input::-moz-placeholder {
    color: var(--navy-blue-20);
}

.the_form input::-ms-input-placeholder {
    color: var(--navy-blue-20);
}

.the_form input::placeholder {
    color: var(--navy-blue-20);
}
.checkbox-wrap {
    margin: 0 0 24px;
}
.checkbox-wrap a:hover {
    text-decoration: underline;
}
.checkbox-wrap label {
    font-size: 16px;
}
.nf-field-element textarea {
    height: 90px !important;
}
.nf-error-msg {
    font-size: 14px;
}
.nf-after-form-content {
    margin-top: 16px;
}
.column_full {
    padding-bottom: 12px;
}
.nf-field-element p span,
.nf-field-element {
    font-size: 14px;
}
.label-right .field-wrap {
    align-items: center;
}
.label-right .field-wrap .nf-field-label {
    padding-left: 4px;
    margin-bottom: 2px !important;
}
/* J. Featured cards */
.flex_card {
    margin-bottom: 30px; 
    overflow: hidden;
}
.flex_featured_cards .card_content {
    padding: 24px 24px;
    border-top: 0;
    background: var(--white); 
}
.flex_featured_cards .card_content .the_button {
    margin-bottom: 0;
}
.no_image .card_content {
    padding: 30px 24px;
}
.flex_featured_cards .color {
    border: 0;
}
.flex_featured_cards .color *:not(a){
    color: var(--white);
}
.flex_featured_cards .color *:after {
    color: var(--white);
}
.flex_featured_cards .primary {
    background-color: var(--blue);
}
.flex_featured_cards .secondary {
    background-color: var(--mustard);
}
.flex_featured_cards .card.col-md-4.no_image .card_content {
    min-height: 270px;
}
.flex_featured_cards .card.col-md-6.no_image .card_content {
    min-height: 250px;
}
.flex_featured_cards .card.col-md-4.has_image .card_content {
    min-height: 290px;
}
.flex_featured_cards .card.col-md-6.has_image .card_content {
    min-height: 240px;
}
/* I. Last Blog Posts */
.flex_last_blog_posts {
  padding: 70px 0 10px;
}
.flex_last_blog_posts .title h2 {
  font-size: 32px;
  margin-bottom: 46px;
  margin-top: 0 !important;
}
/* L. Iframe */
.flex_iframe {
    overflow: hidden;
}
.flex_iframe .container-fluid {
    padding: 0;
}
.flex_iframe:before,
.flex_iframe:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--white);
    z-index: 99999;
    position: relative;
}
/* L. Product Grid */
.flex_recipes_grid .title,
.flex_product_grid .title {
  align-items: center;
}
.flex_recipes_grid .title h2,
.flex_product_grid .title h2 {
  font-size: 32px;
  margin-bottom: 36px;
  margin-top: 0 !important;
}
.flex_recipes_grid .title *,
.flex_product_grid .title * {
  width: fit-content;
}
.flex_recipes_grid .go-next,
.flex_product_grid .go-next {
  margin-bottom: 36px;
}
.flex_product_grid {
    padding: 70px 0 20px;
}
.flex_product_grid ul {
    padding-left: 0;
}
.flex_product_grid .not-product {
    padding-bottom: 16px;
}
.flex_product_grid .go-next.mobile {
    margin: 10px auto 50px;
}
#page_search .flex_product_grid.background-white {
    padding: 0px 0 20px;
}
/* M. Recipes Grid */
.flex_recipes_grid {
  padding-top: 70px;
  padding-bottom: 40px;
}
/* N. Products Banner */
.flex_products_module {
  position: relative;
  padding: 0;
}
.flex_products_module .main-content {
  position: relative;
  padding: 60px 0 70px;
  z-index: 2;
}
.flex_products_module .main-content .light-text h2,
.flex_products_module .main-content .light-text p {
  color: var(--white) !important;
}
.flex_products_module .main-content .title-content * {
  margin-bottom: 0;
}
.flex_products_module .main-content .title-content .tag {
  margin-bottom: 20px;
}
.flex_products_module .main-content .title-content .the_button {
  margin-top: 40px;
}
.flex_products_module .bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  min-height: 530px;
  top: 0;
  left: 0;
  height: 65%;
  width: 100%;
  z-index: 1;
}
.flex_products_module .bg-image::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(10, 52, 87, 0.2);
  z-index: 1;
}
.flex_products_module .bg-image .container {
  position: relative;
  z-index: 2;
}
.flex_products_module .bg-image.dark-text::after {
  background-color: rgba(255, 255, 255, 0.2);
}
.flex_products_module .products-wrapper {
  /* margin-top: 120px; */
  margin-top: 240px;
}
.flex_products_module .products-wrapper .swiper-wrapper {
  background-color: transparent !important;
  /* overflow: hidden; */
}
.flex_products_module .products-wrapper.slider_container {
  position: relative;
  margin-bottom: 0;
  flex-wrap: nowrap;
  padding-right: var(--bootstrap-padding) !important;
}
.flex_products_module .products-wrapper.slider_container::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 16px);
  top: -16px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  /* z-index: -1; */
  backdrop-filter: blur(10px);
  border-radius: 8px;
}
.flex_products_module .swiper-slide,
.flex_products_module .slider_container {
  padding: 0 !important;
}
.flex_products_module .slider_container {
  padding-left: 15px !important;
}
.flex_products_module .product_card_wrapper {
  width: 100% !important;
}
.flex_products_module .swiper-horizontal>.swiper-pagination-bullets, 
.flex_products_module .swiper-pagination-bullets.swiper-pagination-horizontal, 
.flex_products_module .swiper-pagination-custom, 
.flex_products_module .swiper-pagination-fraction {
  bottom: 0;
  width: 100%;
  color: var(--navy-blue);
  font-weight: var(--weight-semibold);
  font-size: 20px;
}
.flex_products_module .swiper-button-prev:after,
.flex_products_module .swiper-rtl .swiper-button-next,
.flex_products_module .swiper-button-next:after,
.flex_products_module .swiper-rtl .swiper-button-prev {
  font-size: 32px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-size: 44px;
  color: var(--navy-blue);
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "\e903";
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '\e908';
}
.swiper-pagination-fraction {
  position: relative;
}
.slider-nav-wrapper {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.flex_products_module .swiper-button-next, 
.flex_products_module .swiper-button-prev {
    position: relative;
    top: initial;
    bottom: initial;
    /* width: calc(var(--swiper-navigation-size) / 44 * 27); */
    /* height: var(--swiper-navigation-size); */
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
}
.flex_products_module .swiper-button-prev, .flex_products_module .swiper-rtl .swiper-button-next {
    left: initial;
    right: auto;
    top: initial;
    bottom: initial;
}
.flex_products_module .product_card_wrapper {
    margin-bottom: 0;
}
/* K. Category Grid */
.flex_category_grid {
  padding: 70px 0 40px;
}
.flex_category_grid h2 {
  margin-bottom: 46px;
}
.category-card {
  margin-bottom: 30px;
}
.category-card > div {
  background-color: var(--navy-blue);
  cursor: pointer;
  border-radius: 8px;
  padding: 32px 32px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-card img {
  filter: grayscale(1) invert(1);
  width: fit-content;
  height: 50px;
  margin-bottom: 24px;
}
.category-card h3 {
  font-weight: var(--weight-semibold);
  font-size: 24px;
}
.category-card h3,
.category-card p {
  color: var(--white) !important;
}
.category-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 66px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
/* Z. Rule */
.flex_rule {
    margin-top: 20px;
    margin-bottom: 20px;
}
.flex_rule hr {
    border-top: 1px solid var(--navy-blue-20);
    margin: 0;
}
/* Z. white space */
.flex_space {
    background-color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    height: 1px;
}
.flex_space.add_10px {
    padding-top: 3px;
    padding-bottom: 3px;
}
.flex_space.add_15px {
    padding-top: 8px;
    padding-bottom: 8px;
}
.flex_space.add_30px {
    padding-top: 15px;
    padding-bottom: 15px;
}
.flex_space.add_40px {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 1200px) { 
    /* FLEXIBLE CONTENT */
    
}
@media (max-width: 1024px) {
    /* FLEXIBLE CONTENT */
    .flex_posts_and_pages .overlayed_text.landscape-panoramic {
        padding-top: 30px;
    }
    .flex_posts_and_pages .card_content {
        min-height: 270px;
    }
    .flex_posts_and_pages .card_content h3 {
        min-height: inherit;
    }
    .flex_background_content .text-right,
    .flex_background_content .text-left,
    .flex_background_content .text-center {
        text-align: left;
    }
}
@media (max-width: 992px) {
  #no_hero {
      padding-top: 40px;
  }
    /* FLEXIBLE CONTENT */
    .inverse.order-first {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2!important;
    }
    .inverse.order-last {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1!important;
    }
    .flex_products_module {
      overflow: hidden;
    }
    .flex_products_module .products-wrapper.slider_container {
      position: static;
      padding-bottom: 30px !important;
    }
    .flex_products_module .product_card_wrapper {
        margin-bottom: 0;
    }
    .flex_products_module .products-wrapper.slider_container::after {
        width: 100%;
        height: 682px;
        border-radius: 0;
        bottom: 0;
        top: initial;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .flex_products_module .main-content {
        padding: 40px 0 50px;
    }
    .flex_products_module .bg-image {
        min-height: 440px;
        height: 51%;
    }
    .flex_products_module .products-wrapper {
        margin-top: 130px;
    }
    .slider-nav-wrapper {
      display: flex;
    }
    .swiper-pagination-lock {
        display: block;
    }
    .floated_image {
        position: relative;
        width: 100%;
        height: auto;
        top: initial;
        left: inherit;
        top: initial;
    }
    .floated_image img {
        display: block;
        width: 100%;
        height: auto;
    }
    .flex_double_screen {
        padding: 0;
    }
    .flex_double_screen.has_pattern {
        background-position: bottom;
    }
    .flex_double_screen .justify-content-start,
    .flex_double_screen .justify-content-end {
        justify-content: center !important;
    }
    .flex_double_screen .justify-content-start .flex_double_screen-wrapper,
    .flex_double_screen .justify-content-end .flex_double_screen-wrapper {
        padding: 0;
        padding: 50px 0 50px;
    }
    .flex_background_content p:not(.tag), 
    .flex_background_content li:not(.tag),
    .flex_double_screen-title {
        font-size: 32px; 
    }
    /* FOOTER */
    footer #prefooter .prefooter-item span {
        text-align: center;
    }
    footer #prefooter {
        padding-bottom: 6px;
    }
    footer #prefooter .prefooter-item {
        margin-bottom: 20px;
    }
    #footer #corp_menu {
        padding: 40px 0 50px;
    }
    #menu-footer-tienda > li > ul > li {
       min-width: 100%;
    }
    #menu-footer-tienda > li > ul > :nth-child(odd) {
       margin-right: 0;
    }
    #menu-footer-tienda > li:not(:first-child) {
       /* margin-top: 16px; */
    }
    #subfooter ul {
       text-align: left;
    }
    #subfooter ul :first-child {
        padding-left: 0;
    }
    #footer_legal {
        flex-direction: column-reverse;
    }
    #menu-footer-tienda > li > ul {
        column-count: 1;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    /* FLEX CONTENT */
    #parallax_slider .swiper-slide,
    #generic_slider .swiper-slide,
    #home_slider .swiper-slide {
        padding: 20px 50px;
    } 
    .flex_posts_and_pages .card_content {
        min-height: auto;
    }
    .flex_product_grid ul {
        margin-bottom: 0;
    }
    .flex_products_module .products-wrapper.slider_container::after {
        height: 604px;
    }
    .flex_products_module .product_card_wrapper {
        padding-right: 0 !important;
    }
    /* NINJA */
    .two_columns_wrapper, .two_columns_wrapper_last {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .container-fluid.default #hero_content.container {
        padding: 0;
        padding-top: 50px;
    }
}

@media (max-width: 450px) {
  .flex_products_module .products-wrapper.slider_container::after {
      max-height: 554px;
      opacity: 0;
  }
}

@media (max-width: 480px) {
    #hero_section .background {
        min-height: 470px;
    }
    #no_hero {
        padding-top: 60px;
    }
    /* FLEXIBLE CONTENT */ 
    .flex_section.padding_all {
    padding: 50px 0;
    }
    .flex_section.padding_up {
        padding: 50px 0 16px;
    }
    .flex_section.padding_down {
        padding: 16px 0 50px;
    }

}
