From 80554a8dab8e045a3964abac35f397a30c9fe071 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Wed, 25 Aug 2021 00:25:04 +0200 Subject: [PATCH 01/16] check for woocommerce class exist before call is product or is shop --- header.php | 4 ++-- inc/template-functions.php | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/header.php b/header.php index 75c8f92b..2cc01e67 100644 --- a/header.php +++ b/header.php @@ -30,8 +30,8 @@ modul_r_post_image('parallax', true); echo ''; } - } else if (( class_exists( 'WooCommerce' ) && !is_product_category()) && is_archive()) { - modul_r_archive_image('parallax', true); + } else if ( !( class_exists( 'WooCommerce' ) && is_product_category() ) && is_archive() ) { + modul_r_archive_image('parallax', true); }?>
diff --git a/inc/template-functions.php b/inc/template-functions.php index 27b338e5..2b0dbe08 100644 --- a/inc/template-functions.php +++ b/inc/template-functions.php @@ -60,7 +60,7 @@ function modul_r_archive_image( $class = null ) {
- ID ) && get_the_post_thumbnail($post->ID) ) { $classes[] = 'has-featured-image'; @@ -366,7 +367,7 @@ function modul_r_custom_body_class( $classes ) { // get theme option "sidebar enabled" $opt_sidebar = get_theme_mod('modul_r_sidebar_enabled'); - if ( $opt_sidebar === true && ( ( is_archive() && !empty( is_product_category()) ) || !empty(is_shop()) && get_theme_mod( 'modul_r_woo' ) || is_single() || (is_page() && !is_front_page()) ) ) { + if ( $opt_sidebar === true && ( ( is_archive() && ($woo_enabled && is_product_category()) ) || $woo_enabled && is_shop() || is_single() || (is_page() && !is_front_page()) ) ) { $classes[] = 'has-sidebar'; } From f4a81368ffeb85782bbc1313b227ea1f914dfc26 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:18:43 +0200 Subject: [PATCH 02/16] header title color option added --- inc/customizer.php | 8 ++++---- inc/enqueue-scripts.php | 28 ++++++++++++++++------------ 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/inc/customizer.php b/inc/customizer.php index bff7736a..cf76e421 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -78,14 +78,14 @@ public function render_content() { 'label' => esc_html__( 'Header Color', 'modul-r' ) ) ) ); - $wp_customize->add_setting( 'header-text-color', array( - 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header-text-color'] ] ), + $wp_customize->add_setting( 'header_titlecolor', array( + 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header_titlecolor'] ] ), 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', ) ); - $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header-text-color', array( + $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_titlecolor', array( 'section' => 'colors', - 'label' => esc_html__( 'Header text Color', 'modul-r' ) + 'label' => esc_html__( 'Header Title Color', 'modul-r' ) ) ) ); diff --git a/inc/enqueue-scripts.php b/inc/enqueue-scripts.php index 579e4f20..104b546d 100644 --- a/inc/enqueue-scripts.php +++ b/inc/enqueue-scripts.php @@ -7,10 +7,10 @@ function modul_r_atf_style() { // Main colors $colors = array(); - $colors['primary'] = !empty(get_theme_mod( 'primary-color' )) ? sanitize_hex_color(get_theme_mod( 'primary-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors']['primary']); + $colors['primary'] = get_theme_mod( 'primary-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'primary-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors']['primary']); $colors['primary-light'] = modul_r_adjustBrightness($colors['primary'], 0.4); $colors['primary-dark'] = modul_r_adjustBrightness($colors['primary'], -0.4); - $colors['secondary'] = !empty(get_theme_mod( 'secondary-color' )) ? sanitize_hex_color(get_theme_mod( 'secondary-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors']['secondary']); + $colors['secondary'] = get_theme_mod( 'secondary-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'secondary-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors']['secondary']); $colors['secondary-light'] = modul_r_adjustBrightness($colors['secondary'], 0.4); $colors['secondary-dark'] = modul_r_adjustBrightness($colors['secondary'], -0.4); // base colors @@ -22,15 +22,16 @@ function modul_r_atf_style() { $colors['black'] = sanitize_hex_color($GLOBALS['modul_r_defaults']['colors']['black']); // Typography colors - $title_color = !empty(get_theme_mod( 'title-color' )) ? sanitize_hex_color(get_theme_mod( 'title-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['title-color']]); - $text_color = !empty(get_theme_mod( 'text-color' )) ? sanitize_hex_color(get_theme_mod( 'text-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['text-color']]); + $title_color = get_theme_mod( 'title-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'title-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['title-color']]); + $text_color = get_theme_mod( 'text-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'text-color' )) : sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['text-color']]); // Colors - $header_color = !empty(get_theme_mod( 'header-color' )) ? sanitize_hex_color(get_theme_mod( 'header-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-color']]; - $header_text_color = !empty(get_theme_mod( 'header-text-color' )) ? sanitize_hex_color(get_theme_mod( 'header-text-color' )) : '#'.get_header_textcolor(); - $footer_color = !empty(get_theme_mod( 'footer-color' )) ? sanitize_hex_color(get_theme_mod( 'footer-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-color']]; - $footer_bottom_color = !empty(get_theme_mod( 'footer-bottom-color' )) ? sanitize_hex_color(get_theme_mod( 'footer-bottom-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-bottom-color']]; - $footer_text_color = !empty(get_theme_mod( 'footer-text-color' )) ? sanitize_hex_color(get_theme_mod( 'footer-text-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-text-color']]; + $header_color = get_theme_mod( 'header-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'header-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-color']]; + $header_titlecolor = get_theme_mod( 'header_titlecolor' ) !== false ? sanitize_hex_color(get_theme_mod( 'header_titlecolor' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_titlecolor']]; + $header_text_color = get_theme_mod( 'header_textcolor' ) !== false ? '#'.get_header_textcolor() : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_textcolor']]; + $footer_color = get_theme_mod( 'footer-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-color']]; + $footer_bottom_color = get_theme_mod( 'footer-bottom-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-bottom-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-bottom-color']]; + $footer_text_color = get_theme_mod( 'footer-text-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-text-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-text-color']]; // get the acf.css file and store into a variable ob_start(); @@ -61,9 +62,12 @@ function modul_r_atf_style() { $atf_css .= 'body ul.sub-menu ul.sub-menu {background-color: ' . modul_r_adjustBrightness($header_color, 0.2) . ';}'; $atf_css .= 'body ul.sub-menu li:hover {background-color: ' . modul_r_adjustBrightness($header_color, 0.3) . ';}'; - // Set header links color - $atf_css .= '.main-navigation li a, #masthead .header-wrapper .header-text .site-description, .has-header-text-color {color:' . $header_text_color. ';}'; - $atf_css .= '.has-header-text-background-color {background-color:' . $header_text_color. ';}'; + // Set header links color + $atf_css .= '.has-header-text h1 a {color:' . $header_titlecolor. ';}'; + + // Set header links color + $atf_css .= '.main-navigation li a, #masthead .header-wrapper .header-text .site-description, .has-header-text-color {color:' . $header_text_color. ';}'; + $atf_css .= '.has-header-text-background-color {background-color:' . $header_text_color. ';}'; $atf_css .= '.has-header-text-background-border-color {border-color:' . $header_text_color. '66 !important;}'; // the hamburger color From 6e429de6c6ca2392c829e5779e482a1699a1e068 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:19:52 +0200 Subject: [PATCH 03/16] hero height size null value fixed --- inc/enqueue-scripts.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/enqueue-scripts.php b/inc/enqueue-scripts.php index 104b546d..7ea905d7 100644 --- a/inc/enqueue-scripts.php +++ b/inc/enqueue-scripts.php @@ -120,10 +120,10 @@ function modul_r_atf_style() { $atf_css .= 'body::-webkit-scrollbar-thumb:horizontal,body::-webkit-scrollbar-thumb:vertical{background-color:'. modul_r_adjustBrightness($colors['primary'], -0.1).'}'; // HERO - $hero_opacity = get_theme_mod( 'modul_r_hero_opacity' ) !== null ? intval(get_theme_mod( 'modul_r_hero_opacity' )) : 100; - $hero_height_home = get_theme_mod( 'modul_r_hero_height_homepage' ) !== null ? intval(get_theme_mod( 'modul_r_hero_height_homepage' )) : 100; - $hero_height = get_theme_mod( 'modul_r_hero_height' ) !== null ? intval(get_theme_mod( 'modul_r_hero_height' )) : 60; - if ($hero_opacity != 100) $atf_css .= 'body.home .hero .entry-image img {opacity:'. ($hero_opacity/100) .'}'; + $hero_opacity = get_theme_mod( 'modul_r_hero_opacity' ) !== false ? intval(get_theme_mod( 'modul_r_hero_opacity' )) : 100; + $hero_height_home = get_theme_mod( 'modul_r_hero_height_homepage' ) !== false ? intval(get_theme_mod( 'modul_r_hero_height_homepage' )) : 70; + $hero_height = get_theme_mod( 'modul_r_hero_height' ) !== false ? intval(get_theme_mod( 'modul_r_hero_height' )) : 45; + if ($hero_opacity != 100) $atf_css .= 'body .hero img {opacity:'. ($hero_opacity/100) .'}'; if ($hero_height) $atf_css .= "html body .hero {max-height:{$hero_height}vh}"; if ($hero_height_home) $atf_css .= "html body.home .hero {max-height:{$hero_height_home}vh}"; From f319e8e849cad58576fc78e739547d089aeffff6 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:21:16 +0200 Subject: [PATCH 04/16] add typography-extras to editor style --- assets/dist/css/editor.css | 136 ++++++++++++++++++++++++++++++++++++ assets/src/scss/editor.scss | 1 + 2 files changed, 137 insertions(+) diff --git a/assets/dist/css/editor.css b/assets/dist/css/editor.css index 59a44219..876f2302 100644 --- a/assets/dist/css/editor.css +++ b/assets/dist/css/editor.css @@ -190,4 +190,140 @@ ul li, ul .editor-styles-wrapper li, .editor-styles-wrapper ul li, ul .editor-st line-height: 1.3; margin-bottom: 12px; } + +iframe { + width: 100%; + max-width: 100%; +} + +::-moz-selection { + background-color: rgba(22, 190, 187, 0.5); + color: white; +} + +::selection { + background-color: rgba(22, 190, 187, 0.5); + color: white; +} + +pre { + width: 100%; + padding: 32px 64px; + background: #f0f0f0; + border: 1px solid #e3e3e3; + white-space: pre-wrap; + box-sizing: border-box; +} + +blockquote { + min-height: 100px; + padding-top: 30px; + padding-bottom: 30px; + padding-left: 90px !important; + padding-right: 90px !important; + margin: 32px 0; + position: relative; + background: white; + border: 1px solid #e3e3e3; +} +blockquote p, blockquote .editor-styles-wrapper li, .editor-styles-wrapper blockquote li, blockquote .editor-styles-wrapper p, .editor-styles-wrapper blockquote p { + margin-bottom: 24px; +} +blockquote:before { + font-family: "Material Icons"; + content: "\e244"; + position: absolute; + top: -4px; + left: 16px; + font-size: 60px; + color: #16bebb; +} + +code { + background-color: #e3e3e3; + padding: 4px 6px; + font-weight: 600; +} + +@media (max-width : 940px) { + .site-main .entry-content table, +.site-main .entry-content pre, +.site-main .entry-content blockquote { + padding-left: 20px; + padding-right: 20px; + } + .site-main .entry-content table { + width: calc(100% - 40px); + } +} +.post-tags { + list-style: none; +} +.post-tags h3 { + display: inline; + vertical-align: middle; +} +.post-tags ul { + display: inline; + margin: 0; + padding-left: 20px; +} +.post-tags li.post-tag, .post-tags .editor-styles-wrapper p.post-tag, .editor-styles-wrapper .post-tags p.post-tag { + margin: 0 16px 10px 0; + padding: 0 10px 0 25px; +} + +.post-tag { + background: #6f4cad; + border-radius: 3px 0 0 3px; + display: inline-block; + height: 22px; + line-height: 18px; + position: relative; +} +.post-tag a { + font-size: 11px; + font-weight: 600; + letter-spacing: 1px; + text-transform: uppercase; + color: #fff; + text-decoration: none !important; +} +.post-tag, .post-tag::before, .post-tag::after, .post-tag a { + transition: 0.2s; +} +.post-tag::before { + background: #fff; + border-radius: 10px; + box-shadow: inset 0 1px rgba(252, 252, 252, 0.25); + content: ""; + height: 6px; + left: 10px; + position: absolute; + width: 6px; + top: 8px; +} +.post-tag::after { + background: transparent; + border-bottom: 11px solid transparent; + border-left: 10px solid #6f4cad; + border-top: 11px solid transparent; + content: ""; + position: absolute; + right: -10px; + top: 0; +} +.post-tag:hover { + background-color: #6f4cad; +} +.post-tag:hover a { + color: white; +} +.post-tag:hover::after { + border-left-color: #6f4cad; +} + +hr { + clear: both; +} /*# sourceMappingURL=editor.css.map */ diff --git a/assets/src/scss/editor.scss b/assets/src/scss/editor.scss index 633e7bee..aae7839c 100644 --- a/assets/src/scss/editor.scss +++ b/assets/src/scss/editor.scss @@ -5,6 +5,7 @@ @import "main/colors"; @import "main/fonts"; @import "main/typography"; +@import "main/typography-extras"; .wp-block.editor-post-title__block .editor-post-title__input{ @extend %headline_style; From 7cb9f94e97419127172f6b0a9418e55c7247e1da Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:22:32 +0200 Subject: [PATCH 05/16] some gutenberg css enhancements and fixes --- assets/src/scss/components/blocks.scss | 83 ++++++++------------- assets/src/scss/components/extras.scss | 4 +- assets/src/scss/components/header.scss | 19 ++++- assets/src/scss/main/images.scss | 7 ++ assets/src/scss/main/typography-extras.scss | 6 +- 5 files changed, 60 insertions(+), 59 deletions(-) diff --git a/assets/src/scss/components/blocks.scss b/assets/src/scss/components/blocks.scss index 6b0ca9df..9e0fdb73 100644 --- a/assets/src/scss/components/blocks.scss +++ b/assets/src/scss/components/blocks.scss @@ -500,11 +500,6 @@ //! Image .wp-block-image { - .image-border { - padding: 20px; - background: red; - } - .aligncenter { @media #{$mq__smaller-than-tablet} { @@ -550,7 +545,7 @@ @media #{$mq__smaller-than-tablet} { width: 100%; img { - width: 100%; + display: block; margin-left: auto; margin-right: auto; } @@ -560,75 +555,59 @@ } //! Media Text - .wp-block-media-text{ + .wp-block-media-text { &.alignwide {padding:0;} - + + &.alignfull {max-width: inherit;} + .wp-block-media-text__media { - margin-top: 0; - margin-bottom: 0; overflow: hidden; - display: flex; img { align-self: center; } } - - @media #{$mq__tablet-portrait} { - .is-stacked-on-mobile { - min-height: 30vh; - } - } - - &.padded-image { - - img { - max-height: 60vh; - object-fit: contain; - padding: $size__padding ($size__padding * 0.5) $size__padding $size__padding; - box-sizing: border-box; - } - - @media #{$mq__tablet-portrait} { - img {padding: $size__padding * 0.5;} - &.has-media-on-the-right img{ - padding: $size__padding $size__padding $size__padding ($size__padding * 0.5); - } - } - - } - - .wp-block-media-text__media img{ - object-position: right; - } - + &.has-media-on-the-right { .wp-block-media-text__media img{ object-position: left; } + .wp-block-media-text__content { + padding-right: $size__padding; + padding-left: $size__padding * .5; + margin-left: auto; + } } - + + @media #{$mq__tablet-portrait} { + .is-stacked-on-mobile .wp-block-media-text__media { + min-height: 30vh; + } + } + .wp-block-media-text__content { max-width: $size__site-width * .4; - padding-right: inherit; + padding-right: $size__padding * .5; padding-left: $size__padding; padding-top: $size__padding * .5; padding-bottom: $size__padding * .5; - + + > * { + &:first-child { + margin-top: 0; + } + + &:last-child { + margin-bottom: 0; + } + } + @media #{$mq__smaller-than-tablet} { padding-left: $size__padding-resp !important; padding-right: $size__padding-resp !important; } } - - &.has-media-on-the-right { - .wp-block-media-text__content { - float: right; - padding-left: inherit; - padding-right: $size__padding; - margin-left: auto; - } - } + } //! Cover Image diff --git a/assets/src/scss/components/extras.scss b/assets/src/scss/components/extras.scss index 41b9be50..2fb21d47 100644 --- a/assets/src/scss/components/extras.scss +++ b/assets/src/scss/components/extras.scss @@ -299,7 +299,7 @@ body .hero { padding: 10px 16px; } } - + } } @@ -316,6 +316,6 @@ body.archive { right: 0; width: 100%; height: 100%; - box-shadow: inset 0 ($size__padding * 1.75) ($size__padding) (-$size__padding) #{$color__black}cc; + box-shadow: inset 0 ($size__padding) ($size__nav-height) (-$size__nav-height) #{$color__black}cc; } } \ No newline at end of file diff --git a/assets/src/scss/components/header.scss b/assets/src/scss/components/header.scss index 79682acd..7177cf07 100644 --- a/assets/src/scss/components/header.scss +++ b/assets/src/scss/components/header.scss @@ -18,10 +18,15 @@ // UTILS && ANIMATIONS // if the page was scrolled shows a shadow under the header - .scrolled & { box-shadow: 0 3px 10px -5px transparentize($color__black, 0.3);} + .scrolled & { + box-shadow: 0 3px 10px -5px transparentize($color__black, 0.3); + @media #{$mq__responsive-size_brekpoint} { + transform: inherit !important; + } + } // hides the logo in portrait header when the page is scrolled - .scrolled &.header-portrait { transform: translateY(-#{$size__branding-height + $size__margin});} + .scrolled &.header-portrait {transform: translateY(-#{$size__branding-height});} // the background image .site-header-image { @@ -109,6 +114,7 @@ .site-branding { align-items: flex-start; + height: $size__branding-height; @media #{$mq__responsive-size_brekpoint} { text-align: left; @@ -163,7 +169,7 @@ // Site title & description (no custom logo) .header-text { - height: $size__logo-size; + height: 100%; display: flex; flex-direction: column; justify-content: center; @@ -199,13 +205,17 @@ .header-text { text-align: center; margin-right: auto; + padding-top: $size__margin; + padding-bottom: $size__margin; @media #{$mq__responsive-size_brekpoint} { text-align: left; + padding-top: 0; + padding-bottom: 0; } .site-title { - font-size: $size__branding-height * .50; + font-size: $size__branding-height * .40; line-height: 1; } @@ -254,6 +264,7 @@ padding-top: 0; box-sizing: border-box; width: 100%; + height: 100%; @media #{$mq__responsive_brekpoint} { padding-top: $size__margin * .5; padding-bottom: $size__margin * .5; diff --git a/assets/src/scss/main/images.scss b/assets/src/scss/main/images.scss index 0ab73099..39e43002 100644 --- a/assets/src/scss/main/images.scss +++ b/assets/src/scss/main/images.scss @@ -5,6 +5,13 @@ img { object-fit: cover; } +.image-border img { + padding: $size__margin; + background: $color__light-grey; + margin: $size__margin; + box-sizing: border-box; +} + p img { &.alignleft { padding-right: $size__padding-resp * .5; diff --git a/assets/src/scss/main/typography-extras.scss b/assets/src/scss/main/typography-extras.scss index 0fc5bdc0..b00d6f65 100644 --- a/assets/src/scss/main/typography-extras.scss +++ b/assets/src/scss/main/typography-extras.scss @@ -139,4 +139,8 @@ code { &:hover::after { border-left-color: $color__secondary; } -} \ No newline at end of file +} + +hr { + clear: both; +} From 433dd79482ef6b1243d31affd2bbd8340ed807ac Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:23:10 +0200 Subject: [PATCH 06/16] default color scheme update --- functions.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/functions.php b/functions.php index a9d431a3..27b303f0 100644 --- a/functions.php +++ b/functions.php @@ -21,10 +21,11 @@ 'title-color' => 'primary', 'text-color' => 'black', 'header-color' => 'gray-dark', - 'header-text-color' => 'white', - 'footer-color' => 'white', - 'footer-bottom-color' => 'white-smoke', - 'footer-text-color' => 'gray-dark', + 'header_titlecolor' => 'primary', + 'header_textcolor' => 'white', + 'footer-color' => 'gray-dark', + 'footer-bottom-color' => 'black', + 'footer-text-color' => 'white-smoke', ), 'social_media_enabled' => array( 'Facebook', 'Instagram', 'Twitter', 'Linkedin', 'YouTube', 'www' ) ); @@ -99,14 +100,14 @@ function modul_r_theme_setup() { 'uploads' => true, 'random-default' => false, 'header-text' => true, - 'default-text-color' => sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-text-color']]), + 'default-text-color' => str_replace('#', '', sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_textcolor']])), 'wp-head-callback' => '', 'admin-head-callback' => '', 'admin-preview-callback' => '', )); add_theme_support( 'custom-background', array( - 'default-color' => str_replace('#', '', $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['background']] ), + 'default-color' => str_replace('#', '', sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['background']])), 'default-image' => '', 'default-preset' => 'default', // 'default', 'fill', 'fit', 'repeat', 'custom' 'default-position-x' => 'left', // 'left', 'center', 'right' From 21dc4862f6a5b6d80aa675d0e4c7c5f6fe706157 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:25:21 +0200 Subject: [PATCH 07/16] fix header title color --- inc/template-functions.php | 2 +- template-parts/header/header.php | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/inc/template-functions.php b/inc/template-functions.php index 2b0dbe08..bd63a92a 100644 --- a/inc/template-functions.php +++ b/inc/template-functions.php @@ -358,7 +358,7 @@ function modul_r_custom_body_class( $classes ) { global $post; $woo_enabled = class_exists( 'WooCommerce' ); - if ( is_page() || ( is_single() && ($woo_enabled && !is_product()) ) || ( is_archive() && ($woo_enabled && !is_product_category())) || ( ($woo_enabled && is_shop()) && get_theme_mod( 'modul_r_woo' ) ) ) { + if ( is_page() || ( is_single() && !($woo_enabled && is_product()) ) || ( is_archive() && !($woo_enabled && is_product_category())) || ( ($woo_enabled && is_shop()) && get_theme_mod( 'modul_r_woo' ) ) ) { // add the class "has-featured-image" if page or article and it ha a post thumbnail set if ( isset ( $post->ID ) && get_the_post_thumbnail($post->ID) ) { $classes[] = 'has-featured-image'; diff --git a/template-parts/header/header.php b/template-parts/header/header.php index 56311e29..5d373c76 100644 --- a/template-parts/header/header.php +++ b/template-parts/header/header.php @@ -14,9 +14,7 @@ '; ?> @@ -24,7 +22,7 @@

- +

From a76c944d368ad6cdc97e371e4c66307fc6f5fd6a Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 03:42:10 +0200 Subject: [PATCH 08/16] a better way to set header title color --- inc/customizer.php | 10 ++++++++++ inc/enqueue-scripts.php | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/inc/customizer.php b/inc/customizer.php index cf76e421..830f122c 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -88,6 +88,16 @@ public function render_content() { 'label' => esc_html__( 'Header Title Color', 'modul-r' ) ) ) ); + $wp_customize->add_setting( 'header-text-color', array( + 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header_textcolor'] ] ), + 'transport' => 'refresh', + 'sanitize_callback' => 'sanitize_hex_color', + ) ); + $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header-text-color', array( + 'section' => 'colors', + 'label' => esc_html__( 'Header text Color', 'modul-r' ) + ) ) ); + // Footer colors $wp_customize->add_setting( 'footer-color', array( diff --git a/inc/enqueue-scripts.php b/inc/enqueue-scripts.php index 7ea905d7..8554f561 100644 --- a/inc/enqueue-scripts.php +++ b/inc/enqueue-scripts.php @@ -62,10 +62,10 @@ function modul_r_atf_style() { $atf_css .= 'body ul.sub-menu ul.sub-menu {background-color: ' . modul_r_adjustBrightness($header_color, 0.2) . ';}'; $atf_css .= 'body ul.sub-menu li:hover {background-color: ' . modul_r_adjustBrightness($header_color, 0.3) . ';}'; - // Set header links color + // Set header title color $atf_css .= '.has-header-text h1 a {color:' . $header_titlecolor. ';}'; - // Set header links color + // Set header text and links color $atf_css .= '.main-navigation li a, #masthead .header-wrapper .header-text .site-description, .has-header-text-color {color:' . $header_text_color. ';}'; $atf_css .= '.has-header-text-background-color {background-color:' . $header_text_color. ';}'; $atf_css .= '.has-header-text-background-border-color {border-color:' . $header_text_color. '66 !important;}'; From f5a72116f327fc1e49d33ea79a4494c0c0e497b0 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 04:33:57 +0200 Subject: [PATCH 09/16] header color names rationalized --- functions.php | 6 +- inc/customizer.php | 16 ++--- inc/enqueue-scripts.php | 6 +- languages/modul-r.pot | 152 ++++++++++++++++++++-------------------- 4 files changed, 86 insertions(+), 94 deletions(-) diff --git a/functions.php b/functions.php index 27b303f0..018cf38d 100644 --- a/functions.php +++ b/functions.php @@ -21,8 +21,8 @@ 'title-color' => 'primary', 'text-color' => 'black', 'header-color' => 'gray-dark', - 'header_titlecolor' => 'primary', - 'header_textcolor' => 'white', + 'header-title-color' => 'primary', + 'header-text-color' => 'white', 'footer-color' => 'gray-dark', 'footer-bottom-color' => 'black', 'footer-text-color' => 'white-smoke', @@ -100,7 +100,7 @@ function modul_r_theme_setup() { 'uploads' => true, 'random-default' => false, 'header-text' => true, - 'default-text-color' => str_replace('#', '', sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_textcolor']])), + 'default-text-color' => str_replace('#', '', sanitize_hex_color($GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-title-color']])), 'wp-head-callback' => '', 'admin-head-callback' => '', 'admin-preview-callback' => '', diff --git a/inc/customizer.php b/inc/customizer.php index 830f122c..bfb618ed 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -76,20 +76,12 @@ public function render_content() { $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header-color', array( 'section' => 'colors', 'label' => esc_html__( 'Header Color', 'modul-r' ) - ) ) ); + ) ) ); - $wp_customize->add_setting( 'header_titlecolor', array( - 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header_titlecolor'] ] ), - 'transport' => 'refresh', - 'sanitize_callback' => 'sanitize_hex_color', - ) ); - $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_titlecolor', array( - 'section' => 'colors', - 'label' => esc_html__( 'Header Title Color', 'modul-r' ) - ) ) ); + //the header title color was set via add_theme_support 'custom-header' -> "default color" $wp_customize->add_setting( 'header-text-color', array( - 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header_textcolor'] ] ), + 'default' => esc_attr( $GLOBALS['modul_r_defaults']['colors'][ $GLOBALS['modul_r_defaults']['style']['header-text-color'] ] ), 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', ) ); @@ -117,7 +109,7 @@ public function render_content() { ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer-bottom-color', array( 'section' => 'colors', - 'label' => esc_html__( 'Footer bottom color', 'modul-r' ) + 'label' => esc_html__( 'Footer bottom Color', 'modul-r' ) ) ) ); $wp_customize->add_setting( 'footer-text-color', array( diff --git a/inc/enqueue-scripts.php b/inc/enqueue-scripts.php index 8554f561..01d6ad05 100644 --- a/inc/enqueue-scripts.php +++ b/inc/enqueue-scripts.php @@ -27,8 +27,8 @@ function modul_r_atf_style() { // Colors $header_color = get_theme_mod( 'header-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'header-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-color']]; - $header_titlecolor = get_theme_mod( 'header_titlecolor' ) !== false ? sanitize_hex_color(get_theme_mod( 'header_titlecolor' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_titlecolor']]; - $header_text_color = get_theme_mod( 'header_textcolor' ) !== false ? '#'.get_header_textcolor() : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header_textcolor']]; + $header_title_color = get_theme_mod( 'header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ) ) ? '#'.get_header_textcolor() : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-title-color']]; + $header_text_color = get_theme_mod( 'header-text-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'header-text-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['header-text-color']]; $footer_color = get_theme_mod( 'footer-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-color']]; $footer_bottom_color = get_theme_mod( 'footer-bottom-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-bottom-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-bottom-color']]; $footer_text_color = get_theme_mod( 'footer-text-color' ) !== false ? sanitize_hex_color(get_theme_mod( 'footer-text-color' )) : $GLOBALS['modul_r_defaults']['colors'][$GLOBALS['modul_r_defaults']['style']['footer-text-color']]; @@ -63,7 +63,7 @@ function modul_r_atf_style() { $atf_css .= 'body ul.sub-menu li:hover {background-color: ' . modul_r_adjustBrightness($header_color, 0.3) . ';}'; // Set header title color - $atf_css .= '.has-header-text h1 a {color:' . $header_titlecolor. ';}'; + $atf_css .= '.has-header-text h1 a {color:' . $header_title_color. ';}'; // Set header text and links color $atf_css .= '.main-navigation li a, #masthead .header-wrapper .header-text .site-description, .has-header-text-color {color:' . $header_text_color. ';}'; diff --git a/languages/modul-r.pot b/languages/modul-r.pot index 78a572ae..a7695600 100644 --- a/languages/modul-r.pot +++ b/languages/modul-r.pot @@ -53,7 +53,7 @@ msgstr "" msgid "Comments" msgstr "" -#: functions.php:66 +#: functions.php:67 msgid "Primary" msgstr "" @@ -81,295 +81,295 @@ msgstr "" msgid "Header Color" msgstr "" -#: inc/customizer.php:88 +#: inc/customizer.php:90 msgid "Header text Color" msgstr "" -#: inc/customizer.php:100 +#: inc/customizer.php:102 msgid "Footer Color" msgstr "" -#: inc/customizer.php:110 -msgid "Footer bottom color" +#: inc/customizer.php:112 +msgid "Footer bottom Color" msgstr "" -#: inc/customizer.php:120 +#: inc/customizer.php:122 msgid "Footer text Color" msgstr "" -#: inc/customizer.php:127 +#: inc/customizer.php:129 msgid "Modul-R Options" msgstr "" -#: inc/customizer.php:134 +#: inc/customizer.php:136 msgid "Header" msgstr "" -#: inc/customizer.php:148 +#: inc/customizer.php:150 msgid "Header layout" msgstr "" -#: inc/customizer.php:149 +#: inc/customizer.php:151 msgid "The header layout can be landscape (logo and menu on the same line) or portrait (centered layout with the menu under the logo)" msgstr "" -#: inc/customizer.php:153 +#: inc/customizer.php:155 msgid "Portrait" msgstr "" -#: inc/customizer.php:154 +#: inc/customizer.php:156 msgid "Landscape" msgstr "" -#: inc/customizer.php:168 +#: inc/customizer.php:170 msgid "Header width" msgstr "" -#: inc/customizer.php:169 +#: inc/customizer.php:171 msgid "The header width can be wide (page content + page margins) or full (100% of the window width - page margins)" msgstr "" -#: inc/customizer.php:173, inc/customizer.php:219 +#: inc/customizer.php:175, inc/customizer.php:221 msgid "Standard" msgstr "" -#: inc/customizer.php:174, inc/customizer.php:220 +#: inc/customizer.php:176, inc/customizer.php:222 msgid "Wide" msgstr "" -#: inc/customizer.php:175, inc/customizer.php:221 +#: inc/customizer.php:177, inc/customizer.php:223 msgid "Full" msgstr "" -#: inc/customizer.php:190 +#: inc/customizer.php:192 msgid "Transparent Header" msgstr "" -#: inc/customizer.php:191 +#: inc/customizer.php:193 msgid "Select this option if you want to make the header transparent on hero image (only on page top)" msgstr "" -#: inc/customizer.php:200, inc/sidebar.php:22 +#: inc/customizer.php:202, inc/sidebar.php:22 msgid "Footer" msgstr "" -#: inc/customizer.php:214 +#: inc/customizer.php:216 msgid "Footer width" msgstr "" -#: inc/customizer.php:215 +#: inc/customizer.php:217 msgid "The footer width can be wide (page content + page margins) or full (100% of the window width - page margins)" msgstr "" -#: inc/customizer.php:236 +#: inc/customizer.php:238 msgid "Enable footer credits section" msgstr "" -#: inc/customizer.php:237 +#: inc/customizer.php:239 msgid "Shows website logo and the text you insert in the textarea below" msgstr "" -#: inc/customizer.php:249 +#: inc/customizer.php:251 msgid "Show logo" msgstr "" -#: inc/customizer.php:264 +#: inc/customizer.php:266 msgid "Upload a image here if you want to override the website logo" msgstr "" -#: inc/customizer.php:279 +#: inc/customizer.php:281 msgid "Credits" msgstr "" -#: inc/customizer.php:301 +#: inc/customizer.php:303 msgid "Show social media links" msgstr "" -#: inc/customizer.php:302 +#: inc/customizer.php:304 msgid "Shows the icon of social media (credits section need to be enabled)" msgstr "" -#: inc/customizer.php:316 +#: inc/customizer.php:318 msgid "Show Special thanks" msgstr "" -#: inc/customizer.php:329 +#: inc/customizer.php:331 msgid "Special Thanks Override" msgstr "" -#: inc/customizer.php:330 +#: inc/customizer.php:332 msgid "Leave empty to show the default special thanks (thanks to Wordpress and theme author)" msgstr "" -#: inc/customizer.php:343 +#: inc/customizer.php:345 msgid "special thanks link (leave empty if you want a normal text without links)" msgstr "" -#: inc/customizer.php:350 +#: inc/customizer.php:352 msgid "Sidebar" msgstr "" -#: inc/customizer.php:364 +#: inc/customizer.php:366 msgid "Show Sidebar" msgstr "" -#: inc/customizer.php:365 +#: inc/customizer.php:367 msgid "Show the sidebar into single articles and pages" msgstr "" -#: inc/customizer.php:377 +#: inc/customizer.php:379 msgid "Sidebar position" msgstr "" -#: inc/customizer.php:378 +#: inc/customizer.php:380 msgid "The sidebar can be showed at the left or at the right of the content. This customization also affect the WooCommerce sidebar." msgstr "" -#: inc/customizer.php:382 +#: inc/customizer.php:384 msgid "Left" msgstr "" -#: inc/customizer.php:383 +#: inc/customizer.php:385 msgid "Right" msgstr "" -#: inc/customizer.php:390, inc/customizer.php:426 +#: inc/customizer.php:392, inc/customizer.php:428 msgid "Homepage" msgstr "" -#: inc/customizer.php:406 +#: inc/customizer.php:408 msgid "Warning! Set a page as homepage to enable this section" msgstr "" -#: inc/customizer.php:409 +#: inc/customizer.php:411 msgid "To set a page as homepage you have to go to the customizer than select homepage settings and set a static page as homepage (and select a page)" msgstr "" -#: inc/customizer.php:425 +#: inc/customizer.php:427 msgid "Hero vertical height" msgstr "" -#: inc/customizer.php:441 +#: inc/customizer.php:443 msgid "default hero height" msgstr "" -#: inc/customizer.php:456 +#: inc/customizer.php:458 msgid "Hero Image opacity" msgstr "" -#: inc/customizer.php:457 +#: inc/customizer.php:459 msgid "insert a number beetween 1 and 100 (1 - 100% opacity)" msgstr "" -#: inc/customizer.php:473 +#: inc/customizer.php:475 msgid "Hero headline" msgstr "" -#: inc/customizer.php:474 +#: inc/customizer.php:476 msgid "Write a catchy phrase as homepage headline" msgstr "" -#: inc/customizer.php:487 +#: inc/customizer.php:489 msgid "Subtitle" msgstr "" -#: inc/customizer.php:500 +#: inc/customizer.php:502 msgid "Call to action" msgstr "" -#: inc/customizer.php:501 +#: inc/customizer.php:503 msgid "Choose an important page" msgstr "" -#: inc/customizer.php:527 +#: inc/customizer.php:529 msgid "Select an important category" msgstr "" -#: inc/customizer.php:533 +#: inc/customizer.php:535 msgid "Woo Options" msgstr "" -#: inc/customizer.php:550 +#: inc/customizer.php:552 msgid "Choose an image for the shop page wallpaper" msgstr "" -#: inc/customizer.php:559 +#: inc/customizer.php:561 msgid "Social Share Options" msgstr "" -#: inc/customizer.php:574 +#: inc/customizer.php:576 msgid "Show Social Share Icons" msgstr "" -#: inc/customizer.php:575 +#: inc/customizer.php:577 msgid "Show social media sharing icons on single posts and pages" msgstr "" -#: inc/customizer.php:588 +#: inc/customizer.php:590 msgid "Social Share Options Visibility" msgstr "" -#: inc/customizer.php:589 +#: inc/customizer.php:591 msgid "Set social sharing options to show for pages, single posts or both" msgstr "" -#: inc/customizer.php:593 +#: inc/customizer.php:595 msgid "Pages only" msgstr "" -#: inc/customizer.php:594 +#: inc/customizer.php:596 msgid "Single posts only" msgstr "" -#: inc/customizer.php:595 +#: inc/customizer.php:597 msgid "Pages and single Posts" msgstr "" -#: inc/customizer.php:674 +#: inc/customizer.php:676 msgid "Theme primary color" msgstr "" -#: inc/customizer.php:679 +#: inc/customizer.php:681 msgid "Theme primary color light" msgstr "" -#: inc/customizer.php:684 +#: inc/customizer.php:686 msgid "Theme primary color dark" msgstr "" -#: inc/customizer.php:689 +#: inc/customizer.php:691 msgid "Theme secondary color" msgstr "" -#: inc/customizer.php:694 +#: inc/customizer.php:696 msgid "Theme secondary color light" msgstr "" -#: inc/customizer.php:699 +#: inc/customizer.php:701 msgid "Theme secondary color dark" msgstr "" -#: inc/customizer.php:704 +#: inc/customizer.php:706 msgid "White" msgstr "" -#: inc/customizer.php:709 +#: inc/customizer.php:711 msgid "White Smoke" msgstr "" -#: inc/customizer.php:714 +#: inc/customizer.php:716 msgid "Light gray" msgstr "" -#: inc/customizer.php:719 +#: inc/customizer.php:721 msgid "Gray" msgstr "" -#: inc/customizer.php:724 +#: inc/customizer.php:726 msgid "Dark gray" msgstr "" -#: inc/customizer.php:729 +#: inc/customizer.php:731 msgid "Black" msgstr "" @@ -493,6 +493,6 @@ msgstr "" msgid "Print this page" msgstr "" -#: template-parts/header/header.php:41 +#: template-parts/header/header.php:39 msgid "menu" msgstr "" From 0580e0837c88278267b3597f63239e7e26c223a9 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 04:49:11 +0200 Subject: [PATCH 10/16] Release Build --- assets/dist/css/atf.css | 2 +- style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/dist/css/atf.css b/assets/dist/css/atf.css index 0aaf3cb6..00f25a36 100644 --- a/assets/dist/css/atf.css +++ b/assets/dist/css/atf.css @@ -1 +1 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css *//*! edited by Codekraft Studio | removed unused style */html{line-height:1.15}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}[hidden]{display:none}body,html{margin:0;padding:0}html{background-color:#fcfcfc;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased}body,html{max-width:100%}body{min-height:100%;box-sizing:border-box}#page,body{overflow-x:hidden}.has-black-background-color,.has-gray-dark-background-color,.has-primary-background-color,.has-primary-dark-background-color,.has-primary-light-background-color,.has-secondary-background-color,.has-secondary-dark-background-color,.has-secondary-light-background-color{color:#fcfcfc}.has-gray-light-background-color,.has-white-background-color,.has-white-smoke-background-color{color:#4a4d54}@media(max-width:1023px){body.woocommerce .site-content{padding-left:20px;padding-right:20px}}body.woocommerce.sidebar-left .site-content{padding-right:20px}body{font-family:Montserrat,sans-serif;color:#4a4d54;font-weight:400;font-size:17px;line-height:1.3;word-break:break-word}@media(max-width:500px){body{font-size:15px}}h1,h2,h3,h4,h5,h6{font-family:Montserrat,sans-serif;font-weight:600;margin:0 0 8px;padding:0}h1{font-size:56px}@media(max-width:1260px){h1{font-size:46px}}@media(max-width:500px){h1{font-size:36px}}h2{font-size:36px}@media(max-width:1260px){h2{font-size:28px}}@media(max-width:500px){h2{font-size:22px}}.woocommerce h2{font-size:28px}@media(max-width:1260px){.woocommerce h2{font-size:24px}}@media(max-width:500px){.woocommerce h2{font-size:18px}}h3{font-size:28px}@media(max-width:1260px){h3{font-size:22px}}@media(max-width:767px){h3{font-size:18px}}h4{font-size:22px}@media(max-width:1260px){h4{font-size:18px}}h5,h6{font-size:17px}@media(max-width:1260px){h5,h6{font-size:15px}}li,p{font-family:Montserrat,sans-serif;font-size:17px}@media(max-width:1260px){li,p{font-size:16px}}@media(max-width:500px){li,p{font-size:15px}}p{margin:0 0 8px}b,strong{font-weight:600}a{text-decoration:none}dl,ol,ul{margin-top:16px;margin-bottom:32px;padding:0 0 0 24px}dl dt,dl li,ol dt,ol li,ul dt,ul li{line-height:1.3;margin-bottom:12px}.header-color{background-color:rgba(50, 52, 57, .95)}#masthead{position:fixed;z-index:1000;top:0;width:100%;transition:.35s}@media(max-width:767px){#masthead{height:80px;transform:inherit !important;padding:0}}.scrolled #masthead{box-shadow:0 3px 10px -5px rgba(50, 52, 57, .7)}.scrolled #masthead.header-portrait{transform:translateY(-88px)}#masthead .site-header-image{position:absolute;width:100%;height:100%;left:0}#masthead .show-on-mobile{display:none}@media(max-width:960px){#masthead .show-on-mobile{display:block}}#masthead .menu-icons-container,#masthead .menu-resp{position:absolute;top:0;right:20px;height:100%}@media(max-width:960px){#masthead .menu-icons-container,#masthead .menu-resp{display:flex;justify-content:center;align-content:center}}#masthead .menu-resp{z-index:1030}#masthead .menu-icons-container{z-index:1010;right:90px}#masthead .menu-icons-container .button{min-width:20px;margin:auto 0 auto 10px;padding:10px;border-radius:32px;border:1.5px solid hsla(0, 0%, 89%, .5);opacity:.75;transition:.35s}#masthead .menu-icons-container .button.text{padding:10px 20px}#masthead .menu-icons-container .button:hover{opacity:1}#masthead .menu-icons-container .button span{display:block;font-size:13px;height:20px;line-height:22px}#masthead .menu-icons-container .button i{font-size:20px;line-height:20px;vertical-align:middle}#masthead .header-wrapper{display:flex;margin-top:0;margin-bottom:0}@media(max-width:767px){#masthead .header-wrapper{height:100%}}#masthead .header-wrapper .site-branding{align-items:flex-start}@media(max-width:767px){#masthead .header-wrapper .site-branding{text-align:left;padding-right:60px;justify-content:flex-start !important}}#masthead .header-wrapper .site-branding .custom-logo-link{display:flex;height:100%;align-items:center}#masthead .header-wrapper .site-branding .custom-logo-link .custom-logo{-o-object-fit:contain;object-fit:contain;height:80%;max-width:100%;width:auto}@media(max-width:767px){#masthead .header-wrapper .site-branding .custom-logo-link .custom-logo{max-height:64px;width:auto;margin:0}}#masthead .header-wrapper .site-branding.has-custom-logo .site-logo{height:80px}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo{display:flex;flex-direction:row;align-items:center}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .site-logo{margin-right:8px}@media(max-width:767px){#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .site-logo{width:auto}}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .custom-logo{-o-object-position:right;object-position:right}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .header-text{text-align:left;margin-left:8px}#masthead .header-wrapper .header-text{height:80%;display:flex;flex-direction:column;justify-content:center}#masthead .header-wrapper .header-text .site-description,#masthead .header-wrapper .header-text .site-title{margin:0;white-space:nowrap}#masthead .header-wrapper .header-text .site-description{display:inline-block;font-weight:300}#masthead.header-portrait .header-wrapper{flex-direction:column}@media(max-width:767px){#masthead.header-portrait .header-wrapper{justify-content:center}}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-branding{padding-top:0}}#masthead.header-portrait .header-wrapper .site-branding .header-text{text-align:center;margin-right:auto}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-branding .header-text{text-align:left}}#masthead.header-portrait .header-wrapper .site-branding .header-text .site-title{font-size:40px;line-height:1}#masthead.header-portrait .header-wrapper .site-branding .header-text .site-description{font-size:16px;line-height:1}#masthead.header-portrait .header-wrapper .site-branding.has-header-text.has-custom-logo{justify-content:center;margin-right:0}#masthead.header-portrait .header-wrapper .main-navigation ul{height:auto}#masthead.header-portrait .header-wrapper .site-logo{margin-left:auto}#masthead.header-portrait .header-wrapper .site-logo .custom-logo{margin-left:auto;margin-right:auto}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-logo .custom-logo{margin-right:0;margin-left:0}}#masthead.header-landscape .header-wrapper{flex-direction:row;height:60px}@media(max-width:960px){#masthead.header-landscape .header-wrapper{height:100%}}#masthead.header-landscape .header-wrapper .site-branding{padding-top:0;box-sizing:border-box;width:100%}@media(max-width:960px){#masthead.header-landscape .header-wrapper .site-branding{padding-top:4px;padding-bottom:4px}}#masthead.header-landscape .header-wrapper .site-branding .site-logo{margin-left:0;width:auto;height:100%}#masthead.header-landscape .header-wrapper .site-branding .custom-logo{-o-object-position:left;object-position:left;width:auto;height:80%;max-width:350px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .site-branding .custom-logo{max-width:100%}}#masthead.header-landscape .header-wrapper .site-branding .header-text .site-title{font-size:19.8px;line-height:1}#masthead.header-landscape .header-wrapper .site-branding .header-text .site-description{display:inline-block;font-weight:300;font-size:13.2px;line-height:1}#masthead.header-landscape .header-wrapper .main-navigation{align-self:flex-end;width:100%}#masthead.header-landscape .header-wrapper .main-navigation ul{justify-content:flex-end}#masthead.header-landscape .header-wrapper .main-navigation li a{line-height:60px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .main-navigation li a{line-height:3;height:auto}}#masthead.header-landscape .header-wrapper .main-menu{justify-content:flex-end;padding:0 0 0 20px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .main-menu{padding:0;justify-content:flex-start}}@media screen and (max-width:600px){body.logged-in>div:last-child{position:fixed !important}}.admin-bar #masthead{top:32px}@media screen and (max-width:782px){.admin-bar #masthead{top:46px}}@media(max-width:960px){.main-navigation{overflow-y:auto}}.main-navigation .main-menu{display:flex;height:100%;align-items:center;justify-content:center}@media(max-width:960px){.main-navigation .main-menu{align-items:flex-start;justify-content:flex-start}}.main-navigation ul{display:flex;justify-content:center;height:60px;margin:0;padding:0}@media(max-width:960px){.main-navigation ul{display:block;max-width:100%}}.main-navigation li{display:block;position:relative;margin:0;padding:0}.main-navigation li a{display:block;white-space:nowrap;height:60px;line-height:60px;padding:0 32px;box-sizing:border-box;font-weight:600;text-decoration:none !important;opacity:.8;transition:.35s}.main-navigation li a:hover{opacity:1}@media(max-width:1366px){.main-navigation li a{padding:0 24px}}@media(max-width:960px){.main-navigation li a{height:auto;line-height:3;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}}@media(max-width:960px){.main-navigation li li a{font-weight:400;opacity:.7;line-height:39.6px}}.main-navigation li.current-menu-ancestor a,.main-navigation li.current-menu-item a,.main-navigation li.current-menu-parent a{opacity:1}.main-navigation .menu>li:first-child a{padding-left:0}.main-navigation .menu>li:last-child a{padding-right:0}.main-navigation .menu>li li a{padding:0 32px !important}@media(max-width:960px){.main-navigation .menu>li li a{padding:0 !important}}.main-navigation .menu>li a{line-height:2.5;height:inherit}@media(max-width:960px){.main-navigation .menu>li a{padding:0}}@media(max-width:960px){.main-navigation .menu>li .sub-menu{padding-left:16px}}.main-navigation .menu-shadow{display:none}@media(max-width:960px){.main-navigation{background-color:rgba(38, 40, 43, .95);height:100vh;padding:60px 20px 30px;z-index:1020;width:90%;max-width:360px;box-sizing:border-box;transform:translateX(100%);right:0}.main-navigation,.main-navigation+.menu-shadow{position:absolute;top:0;bottom:0;transition:.35s;transition-delay:50ms}.main-navigation+.menu-shadow{display:block;height:100vh;width:100%;opacity:0;right:100%;background-color:rgba(50, 52, 57, .5);transition:opacity .2s;transform:translateX(0) !important}}@media(max-width:767px){.main-navigation{height:calc(100vh - 80px);padding:30px 20px}.main-navigation,.main-navigation+.menu-shadow{top:80px}}@media(max-width:960px){#masthead.active .main-navigation{transform:translateX(0)}#masthead.active .main-navigation+.menu-shadow{opacity:1;right:0}}body ul.sub-menu{position:absolute;z-index:1010;flex-direction:column;top:100%;left:0;opacity:0;clip:rect(0 0 0 0);width:auto;height:auto;padding:0;overflow:hidden;transition:.175s;transition-delay:0ms}@media(max-width:960px){body ul.sub-menu{position:inherit;opacity:1;background-color:transparent !important;padding-left:10px}}body ul.sub-menu ul.sub-menu{top:0;left:100%}@media(max-width:960px){body ul.sub-menu ul.sub-menu{position:inherit;left:inherit;background-color:transparent}}body ul.sub-menu.active,body ul.sub-menu:focus-within,li a:focus+body ul.sub-menu{transition:.35s ease-out;transition-delay:.1s;clip:inherit;overflow:visible;opacity:1}.main-width{width:900px;max-width:100%;box-sizing:border-box;padding-left:20px;padding-right:20px;margin:0 auto 48px}@media(max-width:1023px){.main-width{padding-left:20px;padding-right:20px}}.main-width.alignwide{width:1500px;max-width:100%}.has-sidebar .site-content .main-width.alignwide,.main-width.alignfull{width:100%}.entry-image img{width:100%;height:100%}.site-content{padding-top:32px}#masthead+.site-content{padding-top:92px}@media(max-width:960px){#masthead+.site-content{padding-top:112px}}#masthead.header-portrait+.site-content{padding-top:236px}@media(max-width:960px){#masthead.header-portrait+.site-content{padding-top:112px}}body.has-featured-image #masthead+.site-content{padding-top:48px}@media(max-width:960px){body.has-featured-image #masthead+.site-content{padding-top:0}}body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:row-reverse}@media(max-width:960px){body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:column}}body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:32px}@media(max-width:960px){body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:20px}}body.has-sidebar .site-content,body.woocommerce .site-content{display:flex;justify-content:center;width:1500px;max-width:100%;box-sizing:border-box;margin:0 auto}@media(max-width:960px){body.has-sidebar .site-content,body.woocommerce .site-content{width:100%;flex-direction:column}}body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:calc(100% - 508px)}@media(max-width:960px){body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:100%}}body.home .entry-content{overflow:visible}body.home .entry-content>.wp-block-columns:first-child{margin-top:-96px;margin-bottom:64px;display:flex;flex-wrap:wrap;position:relative}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child{flex-direction:column;text-align:left;margin-bottom:32px}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column{background:#fff;margin:0 32px;padding:0 20px 30px;box-shadow:0 4px 24px -12px rgba(74, 77, 84, .8);border-radius:4px;line-height:1.3;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center;flex:1 0 20%}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column{padding-bottom:0;align-items:flex-start;margin:0 20px 16px;height:160px}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image{justify-content:center;margin:0 -20px 20px;flex:auto}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image{margin:0 20px 0 -20px;width:30%;height:100%}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image img{height:100%;-o-object-fit:inherit;object-fit:inherit;padding-top:16px}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image img{width:70%;padding:15% 30%;height:70%}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image figure{display:block;width:100%;height:100%;margin:0}body.home .entry-content>.wp-block-columns:first-child .wp-block-column h2,body.home .entry-content>.wp-block-columns:first-child .wp-block-column h3,body.home .entry-content>.wp-block-columns:first-child .wp-block-column h4{margin-top:0;margin-bottom:0}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p{margin:0}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column p{font-size:14px;width:65%;padding:0;text-align:left}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p a{font-weight:400}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p b,body.home .entry-content>.wp-block-columns:first-child .wp-block-column p strong{color:#4a4d54}body.home .entry-content>.has-3-columns.animated .wp-block-column{overflow:hidden;transition:1.4s;transform:translateY(30%);opacity:0;transition-delay:.525s}body.home .entry-content>.has-3-columns.animated .wp-block-column:first-of-type{transition-delay:.875s}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(3){transition-delay:1.05s}@media(max-width:1023px){body.home .entry-content>.has-3-columns.animated .wp-block-column,body.home .entry-content>.has-3-columns.animated .wp-block-column:first-of-type{transition-delay:inherit}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(2){transition-delay:.175s}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(3){transition-delay:.35s}}body.home .entry-content>.has-3-columns.animated.already-see .wp-block-column{transform:translateY(0);opacity:1}body.blog .page-header{padding-top:64px;padding-bottom:48px}@media(max-width:1023px){body.blog .page-header{padding-top:32px;padding-bottom:16px}} \ No newline at end of file +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css *//*! edited by Codekraft Studio | removed unused style */html{line-height:1.15}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}[hidden]{display:none}body,html{margin:0;padding:0}html{background-color:#fcfcfc;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased}body,html{max-width:100%}body{min-height:100%;box-sizing:border-box}#page,body{overflow-x:hidden}.has-black-background-color,.has-gray-dark-background-color,.has-primary-background-color,.has-primary-dark-background-color,.has-primary-light-background-color,.has-secondary-background-color,.has-secondary-dark-background-color,.has-secondary-light-background-color{color:#fcfcfc}.has-gray-light-background-color,.has-white-background-color,.has-white-smoke-background-color{color:#4a4d54}@media(max-width:1023px){body.woocommerce .site-content{padding-left:20px;padding-right:20px}}body.woocommerce.sidebar-left .site-content{padding-right:20px}body{font-family:Montserrat,sans-serif;color:#4a4d54;font-weight:400;font-size:17px;line-height:1.3;word-break:break-word}@media(max-width:500px){body{font-size:15px}}h1,h2,h3,h4,h5,h6{font-family:Montserrat,sans-serif;font-weight:600;margin:0 0 8px;padding:0}h1{font-size:56px}@media(max-width:1260px){h1{font-size:46px}}@media(max-width:500px){h1{font-size:36px}}h2{font-size:36px}@media(max-width:1260px){h2{font-size:28px}}@media(max-width:500px){h2{font-size:22px}}.woocommerce h2{font-size:28px}@media(max-width:1260px){.woocommerce h2{font-size:24px}}@media(max-width:500px){.woocommerce h2{font-size:18px}}h3{font-size:28px}@media(max-width:1260px){h3{font-size:22px}}@media(max-width:767px){h3{font-size:18px}}h4{font-size:22px}@media(max-width:1260px){h4{font-size:18px}}h5,h6{font-size:17px}@media(max-width:1260px){h5,h6{font-size:15px}}li,p{font-family:Montserrat,sans-serif;font-size:17px}@media(max-width:1260px){li,p{font-size:16px}}@media(max-width:500px){li,p{font-size:15px}}p{margin:0 0 8px}b,strong{font-weight:600}a{text-decoration:none}dl,ol,ul{margin-top:16px;margin-bottom:32px;padding:0 0 0 24px}dl dt,dl li,ol dt,ol li,ul dt,ul li{line-height:1.3;margin-bottom:12px}.header-color{background-color:rgba(50, 52, 57, .95)}#masthead{position:fixed;z-index:1000;top:0;width:100%;transition:.35s}@media(max-width:767px){#masthead{height:80px;transform:inherit !important;padding:0}}.scrolled #masthead{box-shadow:0 3px 10px -5px rgba(50, 52, 57, .7)}@media(max-width:767px){.scrolled #masthead{transform:inherit !important}}.scrolled #masthead.header-portrait{transform:translateY(-80px)}#masthead .site-header-image{position:absolute;width:100%;height:100%;left:0}#masthead .show-on-mobile{display:none}@media(max-width:960px){#masthead .show-on-mobile{display:block}}#masthead .menu-icons-container,#masthead .menu-resp{position:absolute;top:0;right:20px;height:100%}@media(max-width:960px){#masthead .menu-icons-container,#masthead .menu-resp{display:flex;justify-content:center;align-content:center}}#masthead .menu-resp{z-index:1030}#masthead .menu-icons-container{z-index:1010;right:90px}#masthead .menu-icons-container .button{min-width:20px;margin:auto 0 auto 10px;padding:10px;border-radius:32px;border:1.5px solid hsla(0, 0%, 89%, .5);opacity:.75;transition:.35s}#masthead .menu-icons-container .button.text{padding:10px 20px}#masthead .menu-icons-container .button:hover{opacity:1}#masthead .menu-icons-container .button span{display:block;font-size:13px;height:20px;line-height:22px}#masthead .menu-icons-container .button i{font-size:20px;line-height:20px;vertical-align:middle}#masthead .header-wrapper{display:flex;margin-top:0;margin-bottom:0}@media(max-width:767px){#masthead .header-wrapper{height:100%}}#masthead .header-wrapper .site-branding{align-items:flex-start;height:80px}@media(max-width:767px){#masthead .header-wrapper .site-branding{text-align:left;padding-right:60px;justify-content:flex-start !important}}#masthead .header-wrapper .site-branding .custom-logo-link{display:flex;height:100%;align-items:center}#masthead .header-wrapper .site-branding .custom-logo-link .custom-logo{-o-object-fit:contain;object-fit:contain;height:80%;max-width:100%;width:auto}@media(max-width:767px){#masthead .header-wrapper .site-branding .custom-logo-link .custom-logo{max-height:64px;width:auto;margin:0}}#masthead .header-wrapper .site-branding.has-custom-logo .site-logo{height:80px}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo{display:flex;flex-direction:row;align-items:center}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .site-logo{margin-right:8px}@media(max-width:767px){#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .site-logo{width:auto}}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .custom-logo{-o-object-position:right;object-position:right}#masthead .header-wrapper .site-branding.has-header-text.has-custom-logo .header-text{text-align:left;margin-left:8px}#masthead .header-wrapper .header-text{height:100%;display:flex;flex-direction:column;justify-content:center}#masthead .header-wrapper .header-text .site-description,#masthead .header-wrapper .header-text .site-title{margin:0;white-space:nowrap}#masthead .header-wrapper .header-text .site-description{display:inline-block;font-weight:300}#masthead.header-portrait .header-wrapper{flex-direction:column}@media(max-width:767px){#masthead.header-portrait .header-wrapper{justify-content:center}}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-branding{padding-top:0}}#masthead.header-portrait .header-wrapper .site-branding .header-text{text-align:center;margin-right:auto;padding-top:8px;padding-bottom:8px}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-branding .header-text{text-align:left;padding-top:0;padding-bottom:0}}#masthead.header-portrait .header-wrapper .site-branding .header-text .site-title{font-size:32px;line-height:1}#masthead.header-portrait .header-wrapper .site-branding .header-text .site-description{font-size:16px;line-height:1}#masthead.header-portrait .header-wrapper .site-branding.has-header-text.has-custom-logo{justify-content:center;margin-right:0}#masthead.header-portrait .header-wrapper .main-navigation ul{height:auto}#masthead.header-portrait .header-wrapper .site-logo{margin-left:auto}#masthead.header-portrait .header-wrapper .site-logo .custom-logo{margin-left:auto;margin-right:auto}@media(max-width:767px){#masthead.header-portrait .header-wrapper .site-logo .custom-logo{margin-right:0;margin-left:0}}#masthead.header-landscape .header-wrapper{flex-direction:row;height:60px}@media(max-width:960px){#masthead.header-landscape .header-wrapper{height:100%}}#masthead.header-landscape .header-wrapper .site-branding{padding-top:0;box-sizing:border-box;width:100%;height:100%}@media(max-width:960px){#masthead.header-landscape .header-wrapper .site-branding{padding-top:4px;padding-bottom:4px}}#masthead.header-landscape .header-wrapper .site-branding .site-logo{margin-left:0;width:auto;height:100%}#masthead.header-landscape .header-wrapper .site-branding .custom-logo{-o-object-position:left;object-position:left;width:auto;height:80%;max-width:350px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .site-branding .custom-logo{max-width:100%}}#masthead.header-landscape .header-wrapper .site-branding .header-text .site-title{font-size:19.8px;line-height:1}#masthead.header-landscape .header-wrapper .site-branding .header-text .site-description{display:inline-block;font-weight:300;font-size:13.2px;line-height:1}#masthead.header-landscape .header-wrapper .main-navigation{align-self:flex-end;width:100%}#masthead.header-landscape .header-wrapper .main-navigation ul{justify-content:flex-end}#masthead.header-landscape .header-wrapper .main-navigation li a{line-height:60px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .main-navigation li a{line-height:3;height:auto}}#masthead.header-landscape .header-wrapper .main-menu{justify-content:flex-end;padding:0 0 0 20px}@media(max-width:960px){#masthead.header-landscape .header-wrapper .main-menu{padding:0;justify-content:flex-start}}@media screen and (max-width:600px){body.logged-in>div:last-child{position:fixed !important}}.admin-bar #masthead{top:32px}@media screen and (max-width:782px){.admin-bar #masthead{top:46px}}@media(max-width:960px){.main-navigation{overflow-y:auto}}.main-navigation .main-menu{display:flex;height:100%;align-items:center;justify-content:center}@media(max-width:960px){.main-navigation .main-menu{align-items:flex-start;justify-content:flex-start}}.main-navigation ul{display:flex;justify-content:center;height:60px;margin:0;padding:0}@media(max-width:960px){.main-navigation ul{display:block;max-width:100%}}.main-navigation li{display:block;position:relative;margin:0;padding:0}.main-navigation li a{display:block;white-space:nowrap;height:60px;line-height:60px;padding:0 32px;box-sizing:border-box;font-weight:600;text-decoration:none !important;opacity:.8;transition:.35s}.main-navigation li a:hover{opacity:1}@media(max-width:1366px){.main-navigation li a{padding:0 24px}}@media(max-width:960px){.main-navigation li a{height:auto;line-height:3;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}}@media(max-width:960px){.main-navigation li li a{font-weight:400;opacity:.7;line-height:39.6px}}.main-navigation li.current-menu-ancestor a,.main-navigation li.current-menu-item a,.main-navigation li.current-menu-parent a{opacity:1}.main-navigation .menu>li:first-child a{padding-left:0}.main-navigation .menu>li:last-child a{padding-right:0}.main-navigation .menu>li li a{padding:0 32px !important}@media(max-width:960px){.main-navigation .menu>li li a{padding:0 !important}}.main-navigation .menu>li a{line-height:2.5;height:inherit}@media(max-width:960px){.main-navigation .menu>li a{padding:0}}@media(max-width:960px){.main-navigation .menu>li .sub-menu{padding-left:16px}}.main-navigation .menu-shadow{display:none}@media(max-width:960px){.main-navigation{background-color:rgba(38, 40, 43, .95);height:100vh;padding:60px 20px 30px;z-index:1020;width:90%;max-width:360px;box-sizing:border-box;transform:translateX(100%);right:0}.main-navigation,.main-navigation+.menu-shadow{position:absolute;top:0;bottom:0;transition:.35s;transition-delay:50ms}.main-navigation+.menu-shadow{display:block;height:100vh;width:100%;opacity:0;right:100%;background-color:rgba(50, 52, 57, .5);transition:opacity .2s;transform:translateX(0) !important}}@media(max-width:767px){.main-navigation{height:calc(100vh - 80px);padding:30px 20px}.main-navigation,.main-navigation+.menu-shadow{top:80px}}@media(max-width:960px){#masthead.active .main-navigation{transform:translateX(0)}#masthead.active .main-navigation+.menu-shadow{opacity:1;right:0}}body ul.sub-menu{position:absolute;z-index:1010;flex-direction:column;top:100%;left:0;opacity:0;clip:rect(0 0 0 0);width:auto;height:auto;padding:0;overflow:hidden;transition:.175s;transition-delay:0ms}@media(max-width:960px){body ul.sub-menu{position:inherit;opacity:1;background-color:transparent !important;padding-left:10px}}body ul.sub-menu ul.sub-menu{top:0;left:100%}@media(max-width:960px){body ul.sub-menu ul.sub-menu{position:inherit;left:inherit;background-color:transparent}}body ul.sub-menu.active,body ul.sub-menu:focus-within,li a:focus+body ul.sub-menu{transition:.35s ease-out;transition-delay:.1s;clip:inherit;overflow:visible;opacity:1}.main-width{width:900px;max-width:100%;box-sizing:border-box;padding-left:20px;padding-right:20px;margin:0 auto 48px}@media(max-width:1023px){.main-width{padding-left:20px;padding-right:20px}}.main-width.alignwide{width:1500px;max-width:100%}.has-sidebar .site-content .main-width.alignwide,.main-width.alignfull{width:100%}.entry-image img{width:100%;height:100%}.site-content{padding-top:32px}#masthead+.site-content{padding-top:92px}@media(max-width:960px){#masthead+.site-content{padding-top:112px}}#masthead.header-portrait+.site-content{padding-top:236px}@media(max-width:960px){#masthead.header-portrait+.site-content{padding-top:112px}}body.has-featured-image #masthead+.site-content{padding-top:48px}@media(max-width:960px){body.has-featured-image #masthead+.site-content{padding-top:0}}body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:row-reverse}@media(max-width:960px){body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:column}}body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:32px}@media(max-width:960px){body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:20px}}body.has-sidebar .site-content,body.woocommerce .site-content{display:flex;justify-content:center;width:1500px;max-width:100%;box-sizing:border-box;margin:0 auto}@media(max-width:960px){body.has-sidebar .site-content,body.woocommerce .site-content{width:100%;flex-direction:column}}body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:calc(100% - 508px)}@media(max-width:960px){body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:100%}}body.home .entry-content{overflow:visible}body.home .entry-content>.wp-block-columns:first-child{margin-top:-96px;margin-bottom:64px;display:flex;flex-wrap:wrap;position:relative}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child{flex-direction:column;text-align:left;margin-bottom:32px}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column{background:#fff;margin:0 32px;padding:0 20px 30px;box-shadow:0 4px 24px -12px rgba(74, 77, 84, .8);border-radius:4px;line-height:1.3;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center;flex:1 0 20%}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column{padding-bottom:0;align-items:flex-start;margin:0 20px 16px;height:160px}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image{justify-content:center;margin:0 -20px 20px;flex:auto}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image{margin:0 20px 0 -20px;width:30%;height:100%}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image img{height:100%;-o-object-fit:inherit;object-fit:inherit;padding-top:16px}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image img{width:70%;padding:15% 30%;height:70%}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column .wp-block-image figure{display:block;width:100%;height:100%;margin:0}body.home .entry-content>.wp-block-columns:first-child .wp-block-column h2,body.home .entry-content>.wp-block-columns:first-child .wp-block-column h3,body.home .entry-content>.wp-block-columns:first-child .wp-block-column h4{margin-top:0;margin-bottom:0}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p{margin:0}@media(max-width:1023px){body.home .entry-content>.wp-block-columns:first-child .wp-block-column p{font-size:14px;width:65%;padding:0;text-align:left}}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p a{font-weight:400}body.home .entry-content>.wp-block-columns:first-child .wp-block-column p b,body.home .entry-content>.wp-block-columns:first-child .wp-block-column p strong{color:#4a4d54}body.home .entry-content>.has-3-columns.animated .wp-block-column{overflow:hidden;transition:1.4s;transform:translateY(30%);opacity:0;transition-delay:.525s}body.home .entry-content>.has-3-columns.animated .wp-block-column:first-of-type{transition-delay:.875s}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(3){transition-delay:1.05s}@media(max-width:1023px){body.home .entry-content>.has-3-columns.animated .wp-block-column,body.home .entry-content>.has-3-columns.animated .wp-block-column:first-of-type{transition-delay:inherit}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(2){transition-delay:.175s}body.home .entry-content>.has-3-columns.animated .wp-block-column:nth-of-type(3){transition-delay:.35s}}body.home .entry-content>.has-3-columns.animated.already-see .wp-block-column{transform:translateY(0);opacity:1}body.blog .page-header{padding-top:64px;padding-bottom:48px}@media(max-width:1023px){body.blog .page-header{padding-top:32px;padding-bottom:16px}} \ No newline at end of file diff --git a/style.css b/style.css index 6d3954d9..80d9474d 100644 --- a/style.css +++ b/style.css @@ -15,5 +15,5 @@ License URI: https://github.com/erikyo/modul-r/blob/master/LICENSE Text Domain: modul-r Tags: blog, e-commerce, portfolio, one-column, two-columns, grid-layout, custom-background, custom-header, custom-logo, custom-menu, custom-colors, editor-style, microformats, flexible-header, footer-widgets, featured-images, featured-image-header, full-width-template, block-styles, theme-options, wide-blocks, sticky-post, threaded-comments, translation-ready */ -.nowrap{white-space:nowrap}.hide{display:none}.unselectable::-moz-selection{background-color:transparent}.unselectable::selection{background-color:transparent}#secondary ul.product-categories li,#secondary ul.product_list_widget li .product-title,.ellipsis,.site-footer .footer-widgets li,body.woocommerce .woocommerce-breadcrumb{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.alignright{float:right}.alignleft{float:left}.aligncenter{display:block;margin-left:auto;margin-right:auto}.clearfix:after{content:"";clear:both;display:table}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.display-table{display:table}.elevation-01,.search-form{box-shadow:0 2px 10px -6px rgba(50, 52, 57, .8)}table{width:100%;max-width:100%}table tr{border-collapse:collapse}table tr td,table tr th{padding:12px}table tr th{background:#6f4cad;color:#fff}table tr td{border-bottom:1px solid #e3e3e3}input,select,textarea{box-sizing:border-box;padding:12px 8px;margin:0;background:#fff;outline:none !important;border:1px solid #e3e3e3;font-size:17px;transition:.35s}input{border:0 solid transparent}input[type=date],input[type=email],input[type=number],input[type=tel],input[type=text],input[type=url]{width:100%;padding-left:4px;box-shadow:0 1px 0 #e3e3e3}input[type=date]:hover,input[type=email]:hover,input[type=number]:hover,input[type=tel]:hover,input[type=text]:hover,input[type=url]:hover{box-shadow:0 1px 0 #6f4cad}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus{box-shadow:0 2px 0 #6f4cad}[type=checkbox],[type=radio]{margin:0;display:inline;vertical-align:middle}.input-label{font-size:8.5px}label input+span{font-size:15px;line-height:19px;opacity:.8}textarea{display:block;min-width:100%;max-width:100%;min-height:160px;overflow:hidden}fieldset{margin:8px 0}input,textarea{margin-bottom:8px}select,textarea{width:100%;border-radius:4px}img{height:auto;max-width:100%;position:relative;-o-object-fit:cover;object-fit:cover}p img.alignleft{padding-right:10px}p img.alignright{padding-left:10px}figure{margin-bottom:16px}figure img{max-width:100%;padding-left:0;padding-right:0}figure .gallery-caption,figure figcaption{overflow:hidden;line-height:1.2}.site-main .entry-content .wp-caption{margin-bottom:16px;padding-left:20px;padding-right:20px}.site-main .entry-content .wp-caption .wp-caption-text{color:#4a4d54;font-size:15px;font-style:italic}.site-main .entry-content .wp-caption.alignleft{padding-right:10px}.site-main .entry-content .wp-caption.alignright{padding-left:10px}.button,.entry-content .wp-block-button .wp-block-button__link,button,input[type=button],input[type=reset],input[type=submit]{display:inline-flex;justify-content:center;position:relative;transition:.175s;cursor:pointer;min-width:64px;margin:0;padding:9.6px 19.2px;border:none;border-radius:30px;outline:none;font-family:Montserrat,sans-serif;font-size:17px;font-weight:700;letter-spacing:2px;text-decoration:none !important;text-transform:uppercase;white-space:normal;overflow-wrap:break-word}.button:hover,.entry-content .wp-block-button .wp-block-button__link:hover,button:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{color:#fff;-webkit-filter:brightness(115%);filter:brightness(115%);cursor:pointer}.button:focus,.entry-content .wp-block-button .wp-block-button__link:focus,button:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus{color:#fff;-webkit-filter:brightness(120%);filter:brightness(120%)}.entry-content .wp-block-button .outline.wp-block-button__link,.outline.button,button.outline,input.outline[type=button],input.outline[type=reset],input.outline[type=submit]{background-color:transparent !important}.button:disabled,.entry-content .wp-block-button .wp-block-button__link:disabled,button:disabled,input[type=button]:disabled,input[type=reset]:disabled,input[type=submit]:disabled{-webkit-filter:saturate(0);filter:saturate(0)}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#6f4cad;color:#fff}.button+.button,.button+button,.button+input[type=button],.button+input[type=reset],.button+input[type=submit],button+.button,button+button,button+input[type=button],button+input[type=reset],button+input[type=submit],input[type=button]+.button,input[type=button]+button,input[type=button]+input[type=button],input[type=button]+input[type=reset],input[type=button]+input[type=submit],input[type=reset]+.button,input[type=reset]+button,input[type=reset]+input[type=button],input[type=reset]+input[type=reset],input[type=reset]+input[type=submit],input[type=submit]+.button,input[type=submit]+button,input[type=submit]+input[type=button],input[type=submit]+input[type=reset],input[type=submit]+input[type=submit]{margin-left:12px}.button{line-height:1}.button+.button{margin-right:8px}.menu-resp button.c-hamburger{display:block;position:relative;overflow:hidden;margin:auto;padding:0;width:30px;min-width:inherit;height:30px;text-indent:-9999px;box-shadow:none;border:none;border-radius:0;cursor:pointer;transition:background .3s;background-color:transparent}.menu-resp button.c-hamburger i{display:block;position:absolute;top:15px;background:#16bebb;left:0;right:0;height:3px;transition:background .15s .1s;transition-delay:.1s,0s}.menu-resp button.c-hamburger i:after,.menu-resp button.c-hamburger i:before{position:absolute;display:block;left:0;width:100%;height:3px;background:#16bebb;content:"";transition-duration:.3s,.3s;transition-delay:.3s,0s}.menu-resp button.c-hamburger i:before{top:9px;transition-property:top,transform}.menu-resp button.c-hamburger i:after{bottom:9px;transition-property:bottom,transform}.active .menu-resp button.c-hamburger i{background:0 0;transition-delay:.2s,0s}.active .menu-resp button.c-hamburger i:before{top:0;transform:rotate(45deg)}.active .menu-resp button.c-hamburger i:after{bottom:0;transform:rotate(-45deg)}.active .menu-resp button.c-hamburger i:after,.active .menu-resp button.c-hamburger i:before{transition-delay:0s,.3s}#secondary{min-width:444px;width:444px;padding:0 20px;box-sizing:border-box}#secondary .search-form{max-width:100%}@media(min-width:1024px){#secondary{padding:0}.sidebar-right #secondary{padding-left:64px}.sidebar-left #secondary{padding-right:64px}}@media(max-width:960px){#secondary{padding-top:40px;border-top:1px solid #eee;min-width:inherit;width:100%}}#secondary section{padding-bottom:48px}#secondary h3{margin:0 0 4px;font-size:20px;font-weight:600}#secondary a{font-weight:500;font-size:16px}.main-width,.site-main .entry-content>*{width:900px;max-width:100%;box-sizing:border-box;padding-left:20px;padding-right:20px;margin:0 auto 48px}@media(max-width:1023px){.main-width,.site-main .entry-content>*{padding-left:20px;padding-right:20px}}.main-width.alignwide{width:1500px;max-width:100%}.has-sidebar .site-content .main-width.alignwide,.main-width.alignfull{width:100%}.entry-image img{width:100%;height:100%}.site-content{padding-top:32px}#masthead+.site-content{padding-top:92px}@media(max-width:960px){#masthead+.site-content{padding-top:112px}}#masthead.header-portrait+.site-content{padding-top:236px}@media(max-width:960px){#masthead.header-portrait+.site-content{padding-top:112px}}body.has-featured-image #masthead+.site-content{padding-top:48px}@media(max-width:960px){body.has-featured-image #masthead+.site-content{padding-top:0}}body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:row-reverse}@media(max-width:960px){body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:column}}body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:32px}@media(max-width:960px){body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:20px}}body.has-sidebar .site-content,body.woocommerce .site-content{display:flex;justify-content:center;width:1500px;max-width:100%;box-sizing:border-box;margin:0 auto}@media(max-width:960px){body.has-sidebar .site-content,body.woocommerce .site-content{width:100%;flex-direction:column}}body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:calc(100% - 508px)}@media(max-width:960px){body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:100%}}.entry-header{text-align:center}.entry-header .meta-wrapper{float:inherit}.entry-title,.page-title{text-align:center;margin-left:auto;margin-right:auto;width:80%;margin-bottom:20px}@media(max-width:1023px){.entry-title,.page-title{width:100%}}.entry-header,.page-header,.woocommerce-products-header{display:block;width:100%;max-width:1500px;text-align:center;margin:0 auto 20px}@media(max-width:940px){.entry-header,.page-header,.woocommerce-products-header{max-width:100%;width:auto;padding-left:20px;padding-right:20px}}.entry-header p,.page-header p,.woocommerce-products-header p{margin:0 auto;max-width:750px;line-height:1.7}.entry-footer{clear:both}.entry-footer>div,.page-links{padding-top:64px}.page-links{clear:both}.post-meta .meta-wrapper{display:inline-flex}.post-meta .meta-wrapper p{color:#4a4d54;font-size:13px;font-weight:300;margin-bottom:0;margin-left:8px;margin-right:8px}@media(max-width:1023px){.post-meta .meta-wrapper p{font-size:11px}}.post-meta .meta-wrapper a{color:#4a4d54;font-weight:600;text-transform:uppercase}.breadcrumbs{font-size:11px;margin-bottom:8px;font-weight:600;letter-spacing:1.5px;color:#b0b3ba}.breadcrumbs a{color:#4a4d54;font-weight:600;text-transform:uppercase;margin-left:4px;margin-right:4px;transition:.35s;opacity:.5}.breadcrumbs a:last-of-type{opacity:.8}.breadcrumbs a:hover{opacity:1}.relateds ul.relateds-list{margin:0;padding:0}.relateds ul.relateds-list li{display:block;padding:0;margin:8px 0 48px;clear:both;font-weight:400}.relateds ul.relateds-list li p{margin:0;font-size:.9em;font-weight:400}.relateds ul.relateds-list li img{float:left;clear:both;width:150px;margin-right:20px;margin-bottom:20px;max-height:150px}@media(max-width:1023px){.relateds ul.relateds-list li img{width:75px;margin-right:10px;margin-bottom:10px}}.navigation{display:flex;flex-wrap:wrap}.navigation a{line-height:1.2;font-weight:500;display:inline-table;vertical-align:baseline;width:calc(100% - 30px)}@media(max-width:1023px){.navigation a{font-size:90%}}.navigation>*{flex-basis:50%;flex-shrink:0}.navigation .alignright{text-align:right}.nav-links{flex-basis:100%;text-align:center;margin-top:32px}.nav-links *{margin:0 8px}.nav-links .page-numbers{display:inline-block;padding:0 7.2px;width:36px;height:36px;vertical-align:middle;box-sizing:border-box;font-weight:600;line-height:36px;border-radius:18px;background-color:#e3e3e3;color:#b0b0b0;transition:.35s}.nav-links .page-numbers.current,.nav-links .page-numbers:hover{color:#4a4d54}.nav-links .page-numbers.next,.nav-links .page-numbers.prev{width:auto}.post-navigation .navigation{margin-top:16px}.post-navigation .navigation>div{height:60px}.post-navigation .navigation i{vertical-align:middle}.category-list-labels{padding-top:32px}.category-list-labels li,.category-list-labels ul{display:inline-block}.category-list-labels li{background:#fff;border-radius:15px;border:1px solid #e3e3e3;width:auto;height:30px;line-height:26px;position:relative;margin:0 10px 10px 0;padding:0 10px;box-sizing:border-box}.category-list-labels li a{font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:#4a4d54;text-decoration:none !important;transition:.2s}.category-list-labels li:hover a{-webkit-filter:brightness(115%);filter:brightness(115%)}.wp-block-separator,hr{border:none;border-bottom:1px solid rgba(111, 76, 173, .4)}.sticky{background-color:transparent}.sticky h1,.sticky h2{color:#16bebb}body .hero{width:100%;height:100vh;display:flex;flex-direction:column;justify-content:center;align-content:center;background-color:rgba(26, 27, 30, .95)}body .hero,body .hero>*{position:relative}body .hero .entry-image{position:absolute;top:0;width:100%;height:100%}@media(max-width:1023px){body .hero .entry-image{max-height:inherit}}body .hero .hero-title{padding-top:140px;padding-left:20px;padding-right:20px;margin:auto}body .hero .hero-title .page-title{max-width:1125px;width:100%}body .hero .hero-title h1,body .hero .hero-title p{text-shadow:0 2px 4px rgba(50, 52, 57, .7);color:#fff}body .hero .hero-title h1{font-size:64px;font-weight:700;margin:0 auto}@media(max-width:1023px){body .hero .hero-title h1{font-size:44px;width:100%}}@media(max-width:420px){body .hero .hero-title h1{font-size:36px}}@media(max-width:376px){body .hero .hero-title h1{font-size:30px}}body .hero .hero-title p{font-size:19px;font-style:italic}@media(max-width:1023px){body .hero .hero-title p{font-size:17px;line-height:1.3}}@media(max-width:376px){body .hero .hero-title p{font-size:15px}}body .hero .hero-title a{margin-top:32px}@media(max-width:1023px){body .hero .hero-title a{font-size:17px;padding:10px 16px}}body.archive .hero:after,body.page .hero:after,body.single .hero:after{content:" ";display:block;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;box-shadow:inset 0 112px 64px -64px rgba(50, 52, 57, .8)}.site-main .entry-content>*{margin-top:48px;margin-bottom:64px}.site-main .entry-content>:first-child{margin-top:0}.site-main .entry-content>:last-child{margin-bottom:0;clear:both}.site-main .entry-content>.alignclose{margin-top:0;margin-bottom:0}.site-main .entry-content>.alignclose.has-media-on-the-right.padded-image img{margin-right:64px;margin-left:0}.site-main .entry-content>.alignwide{width:100%;max-width:1500px;padding-left:8px;padding-right:8px;clear:both}.site-main .entry-content>.alignfull{position:relative;width:100%;padding-left:0;padding-right:0;clear:both}.site-main .entry-content>.alignleft{float:left}.site-main .entry-content>.alignleft,.site-main .entry-content>.alignright{width:auto;max-width:1650px;margin-top:0;margin-bottom:0;padding-left:8px;padding-right:8px}.site-main .entry-content>.alignright{float:right}.site-main .entry-content>.aligncenter{margin-left:auto;margin-right:auto;text-align:center}@media(max-width:1260px){.site-main .entry-content>.aligncenter{margin-left:auto;margin-right:auto}}.site-main .entry-content>.height-40{min-height:40vh}.site-main .entry-content>.height-100{min-height:100vh}.site-main .entry-content{line-height:1.7}.site-main .entry-content h1,.site-main .entry-content h2,.site-main .entry-content h3,.site-main .entry-content h4,.site-main .entry-content h5,.site-main .entry-content h6{margin-top:0;margin-bottom:16px;line-height:1.3}.site-main .entry-content p{margin-top:0;margin-bottom:16px}.site-main .entry-content p+h1,.site-main .entry-content p+h2{margin-top:64px}.site-main .entry-content p+h3,.site-main .entry-content p+h4,.site-main .entry-content p+h5,.site-main .entry-content p+h6{margin-top:32px}.site-main dl,.site-main ol,.site-main ul{padding:0 40px;margin-top:32px;margin-bottom:16px;list-style-position:inside;line-height:1.7}.site-main dl dt,.site-main dl li,.site-main ol dt,.site-main ol li,.site-main ul dt,.site-main ul li{padding-left:8px}.site-main dl ol,.site-main dl ul,.site-main ol ol,.site-main ol ul,.site-main ul ol,.site-main ul ul{padding-left:40px}.site-main .wp-block-gallery{padding-left:20px;padding-right:20px}.site-main .wp-block-gallery.alignfull{padding:0}.site-main .wp-block-gallery.alignfull .blocks-gallery-grid{margin:0;padding:0}.site-main .wp-block-media-text{margin-top:0;margin-bottom:0}.site-main .wp-block-media-text h1,.site-main .wp-block-media-text h2,.site-main .wp-block-media-text h3{margin-top:0}.site-main button{margin-top:32px}.entry .entry-content .entry,.entry .entry-content .entry-content,.entry .entry-content .entry-summary,.entry .entry-summary .entry,.entry .entry-summary .entry-content,.entry .entry-summary .entry-summary{margin:inherit;max-width:inherit;padding:inherit}@media(max-width:1023px){.entry .entry-content .entry,.entry .entry-content .entry-content,.entry .entry-content .entry-summary,.entry .entry-summary .entry,.entry .entry-summary .entry-content,.entry .entry-summary .entry-summary{margin:inherit;max-width:inherit;padding:inherit}}.entry-content .wp-block-subhead{font-style:inherit;opacity:1;color:#323439}.entry-content .wp-block-audio audio{width:100%}.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:495px}@media(max-width:1023px){.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:750px}}@media(max-width:1600px){.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:495px}}.entry-content .wp-block-audio.alignfull,.entry-content .wp-block-audio.alignwide{padding-left:20px;padding-right:20px}.entry-content .wp-block-video video{width:100%}.entry-content .wp-block-video.alignwide{padding-left:0;padding-right:0}.entry-content .wp-block-button.is-style-squared .wp-block-button__link{border-radius:0}.entry-content .wp-block-button.is-style-outline .wp-block-button__link,.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active,.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus{border:2px solid;background-color:transparent}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background){background:transparent}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color){color:#6f4cad;border-color:currentColor}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover{color:#6f4cad;background-color:#fff;border-color:#6f4cad;-webkit-filter:brightness(120%);filter:brightness(120%)}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover:not(.has-background){color:#6f4cad}.entry-content .wp-block-archives,.entry-content .wp-block-categories,.entry-content .wp-block-latest-posts{padding-top:0;padding-bottom:0;list-style:none}.entry-content .wp-block-archives li,.entry-content .wp-block-categories li,.entry-content .wp-block-latest-posts li{color:#4a4d54;font-weight:300}.entry-content .wp-block-archives li.menu-item-has-children,.entry-content .wp-block-archives li:last-child,.entry-content .wp-block-categories li.menu-item-has-children,.entry-content .wp-block-categories li:last-child,.entry-content .wp-block-latest-posts li.menu-item-has-children,.entry-content .wp-block-latest-posts li:last-child{padding-bottom:0}.entry-content .wp-block-archives li a,.entry-content .wp-block-categories li a,.entry-content .wp-block-latest-posts li a{text-decoration:none;font-weight:500}.entry-content .wp-block-archives .wp-block-latest-posts__post-date,.entry-content .wp-block-categories .wp-block-latest-posts__post-date,.entry-content .wp-block-latest-posts .wp-block-latest-posts__post-date{color:#323439;font-size:13px;font-weight:400;line-height:1;margin-bottom:32px}.entry-content .wp-block-archives,.entry-content .wp-block-categories{list-style-type:none}.entry-content .wp-block-archives li,.entry-content .wp-block-archives ul,.entry-content .wp-block-categories li,.entry-content .wp-block-categories ul{padding:0;margin:0 auto}.entry-content .wp-block-archives li a,.entry-content .wp-block-categories li a{margin-bottom:8px}.entry-content .wp-block-archives ul,.entry-content .wp-block-categories ul{list-style-type:none;padding-left:20px}.entry-content .wp-block-archives ul a,.entry-content .wp-block-categories ul a{color:#4a4d54;font-weight:400}.entry-content .wp-block-archives.aligncenter,.entry-content .wp-block-categories.aligncenter{text-align:center}.entry-content .wp-block-archives.aligncenter ul,.entry-content .wp-block-categories.aligncenter ul{padding:0 0 10px}.entry-content .wp-block-latest-posts.is-grid{display:flex;justify-content:space-between}.entry-content .wp-block-latest-posts.is-grid li{background-color:#fff;margin:0}.entry-content .wp-block-preformatted{line-height:1.95;padding:32px 64px}.entry-content .wp-block-verse{line-height:2;font-weight:300;font-style:italic}.entry-content .has-drop-cap{margin-bottom:32px}.entry-content .has-drop-cap:not(:focus):first-letter{font-family:Montserrat,sans-serif;line-height:1;font-weight:600;margin:0 16px 0 0}.entry-content .wp-block-pullquote{border-color:transparent;border-width:2px;padding:30px 120px}@media(max-width:1540px){.entry-content .wp-block-pullquote{padding:30px 40px}}.entry-content .wp-block-pullquote blockquote{color:#4a4d54;border:none}.entry-content .wp-block-pullquote p{font-style:italic;font-weight:300;line-height:1.3}.entry-content .wp-block-pullquote p em{font-style:normal}.entry-content .wp-block-pullquote cite{display:inline-block;font-family:Montserrat,sans-serif;line-height:1.6;text-transform:none;color:#4a4d54}.entry-content .wp-block-pullquote.alignleft,.entry-content .wp-block-pullquote.alignright{width:100%}.entry-content .wp-block-pullquote.alignleft blockquote,.entry-content .wp-block-pullquote.alignright blockquote{margin:8px 0;max-width:100%}.entry-content .wp-block-pullquote.alignleft blockquote p:first-child,.entry-content .wp-block-pullquote.alignright blockquote p:first-child{margin-top:0}.entry-content .wp-block-pullquote.is-style-solid-color{background-color:#6f4cad;padding-left:0;padding-right:0}.entry-content .wp-block-pullquote.is-style-solid-color p{line-height:1.3;margin-bottom:.5em;margin-top:.5em}.entry-content .wp-block-pullquote.is-style-solid-color cite{color:inherit}.entry-content .wp-block-pullquote.is-style-solid-color blockquote{max-width:100%;color:#fcfcfc;padding-left:0;margin-left:8px;margin-right:8px}.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color a,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color{color:inherit}.entry-content .wp-block-quote:not(.is-large),.entry-content .wp-block-quote:not(.is-style-large){border-left:2px solid #6f4cad;padding-left:120px;padding-top:30px;padding-bottom:30px}.entry-content .wp-block-quote p{font-size:1em;font-style:normal;line-height:1.8}.entry-content .wp-block-quote.is-large,.entry-content .wp-block-quote.is-style-large{border-left:0;border-right:0;max-width:100%}.entry-content .wp-block-quote.is-large p,.entry-content .wp-block-quote.is-style-large p{line-height:1.4;font-style:italic}.entry-content .wp-block-image .image-border{padding:20px;background:red}@media(max-width:1023px){.entry-content .wp-block-image .aligncenter,.entry-content .wp-block-image .aligncenter img{margin:0 auto}}@media(max-width:1600px){.entry-content .wp-block-image .aligncenter img{margin:0 auto}}.entry-content .wp-block-image.alignfull img{width:100%}@media(max-width:1023px){.entry-content .wp-block-image.alignfull img{margin-left:auto;margin-right:auto}}.entry-content .wp-block-image .alignleft{margin-right:32px}@media(max-width:1023px){.entry-content .wp-block-image .alignleft{margin-right:16px}}.entry-content .wp-block-image .alignright{margin-left:32px}@media(max-width:1023px){.entry-content .wp-block-image .alignright{margin-left:16px}}@media(max-width:1023px){.entry-content .wp-block-image .alignleft,.entry-content .wp-block-image .alignright{width:100%}.entry-content .wp-block-image .alignleft img,.entry-content .wp-block-image .alignright img{width:100%;margin-left:auto;margin-right:auto}}.entry-content .wp-block-media-text.alignwide{padding:0}.entry-content .wp-block-media-text .wp-block-media-text__media{margin-top:0;margin-bottom:0;overflow:hidden;display:flex}.entry-content .wp-block-media-text .wp-block-media-text__media img{align-self:center}@media(max-width:767px){.entry-content .wp-block-media-text .is-stacked-on-mobile{min-height:30vh}}.entry-content .wp-block-media-text.padded-image img{max-height:60vh;-o-object-fit:contain;object-fit:contain;padding:64px 32px 64px 64px;box-sizing:border-box}@media(max-width:767px){.entry-content .wp-block-media-text.padded-image img{padding:32px}.entry-content .wp-block-media-text.padded-image.has-media-on-the-right img{padding:64px 64px 64px 32px}}.entry-content .wp-block-media-text .wp-block-media-text__media img{-o-object-position:right;object-position:right}.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media img{-o-object-position:left;object-position:left}.entry-content .wp-block-media-text .wp-block-media-text__content{max-width:600px;padding-right:inherit;padding-left:64px;padding-top:32px;padding-bottom:32px}@media(max-width:1023px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding-left:20px !important;padding-right:20px !important}}.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{float:right;padding-left:inherit;padding-right:64px;margin-left:auto}.entry-content .wp-block-cover,.entry-content .wp-block-cover-image{position:relative;min-height:430px;padding:0;background-color:initial;background-size:cover;display:flex;justify-content:center;align-items:center;overflow:hidden}.entry-content .wp-block-cover-image .wp-block-cover__inner-container,.entry-content .wp-block-cover .wp-block-cover__inner-container{max-width:900px}.entry-content .wp-block-cover-image .wp-block-cover-image-text,.entry-content .wp-block-cover-image .wp-block-cover-text,.entry-content .wp-block-cover-image h2,.entry-content .wp-block-cover .wp-block-cover-image-text,.entry-content .wp-block-cover .wp-block-cover-text,.entry-content .wp-block-cover h2{font-family:Montserrat,sans-serif;font-weight:700;line-height:1.3;padding:0;margin:20px auto}@media(max-width:1023px){.entry-content .wp-block-cover-image .wp-block-cover-image-text,.entry-content .wp-block-cover-image .wp-block-cover-text,.entry-content .wp-block-cover-image h2,.entry-content .wp-block-cover .wp-block-cover-image-text,.entry-content .wp-block-cover .wp-block-cover-text,.entry-content .wp-block-cover h2{max-width:100%}}.entry-content .wp-block-cover-image.alignleft,.entry-content .wp-block-cover-image.alignright,.entry-content .wp-block-cover.alignleft,.entry-content .wp-block-cover.alignright{width:100%}@media(max-width:1023px){.entry-content .wp-block-cover-image.alignleft,.entry-content .wp-block-cover-image.alignright,.entry-content .wp-block-cover.alignleft,.entry-content .wp-block-cover.alignright{padding:8px 16px}}@media(max-width:1023px){.entry-content .wp-block-cover-image.alignfull .wp-block-cover-image-text,.entry-content .wp-block-cover-image.alignfull .wp-block-cover-text,.entry-content .wp-block-cover-image.alignfull h2,.entry-content .wp-block-cover.alignfull .wp-block-cover-image-text,.entry-content .wp-block-cover.alignfull .wp-block-cover-text,.entry-content .wp-block-cover.alignfull h2{padding:0}}.entry-content .wp-block-gallery{list-style-type:none}.entry-content .wp-block-gallery .blocks-gallery-item{padding:0}.entry-content .wp-block-gallery .blocks-gallery-image:last-child,.entry-content .wp-block-gallery .blocks-gallery-item:last-child{margin-bottom:16px}.entry-content .wp-block-gallery figure{margin:0 !important}.entry-content .wp-block-gallery.is-cropped figure img{height:100%;width:100%}.entry-content .wp-block-gallery .blocks-gallery-item figcaption{overflow:hidden}.entry-content .wp-block-gallery figcaption a{color:#fff}.entry-content .wp-block-audio figcaption,.entry-content .wp-block-gallery .blocks-gallery-image figcaption,.entry-content .wp-block-gallery .blocks-gallery-item figcaption,.entry-content .wp-block-image figcaption,.entry-content .wp-block-video figcaption{margin:0;padding:8px;text-align:center;box-sizing:border-box}.entry-content .wp-block-separator,.entry-content hr{height:2px;margin-top:64px;margin-bottom:32px;max-width:2.25em;text-align:left}.entry-content .wp-block-separator.is-style-wide,.entry-content hr.is-style-wide{margin-left:0;margin-right:0;width:100%;max-width:100%;border-bottom:1px solid rgba(50, 52, 57, .1)}.entry-content .wp-block-separator.is-style-dots,.entry-content hr.is-style-dots{max-width:100%;background-color:inherit;border:inherit;height:inherit;text-align:center}.entry-content .wp-block-separator.is-style-dots:before,.entry-content hr.is-style-dots:before{color:#6f4cad;font-size:64px;letter-spacing:24px;padding-left:24px}.entry-content .wp-block-separator+h1:before,.entry-content .wp-block-separator+h2:before,.entry-content hr+h1:before,.entry-content hr+h2:before{display:none}.entry-content .wp-block-embed-twitter{clear:both}.entry-content .wp-block-table{border-collapse:separate}.entry-content .wp-block-table tr{border-collapse:collapse}.entry-content .wp-block-table td,.entry-content .wp-block-table th{border-color:transparent;border-bottom:1px solid #e3e3e3}.entry-content .wp-block-table.alignwide{width:1500px}.entry-content .wp-block-table.alignfull{width:100%}.entry-content .wp-block-file{font-family:Montserrat,sans-serif}.entry-content .wp-block-file .wp-block-file__button{display:table;border:none;border-radius:5px;background:#6f4cad;font-size:17px;text-decoration:none;font-weight:700;color:#fff;margin-left:0;margin-top:6px}.entry-content .wp-block-file .wp-block-file__button:hover{-webkit-filter:brightness(120%);filter:brightness(120%);cursor:pointer}.entry-content .wp-block-file .wp-block-file__button:focus{-webkit-filter:brightness(120%);filter:brightness(120%);outline:thin dotted;outline-offset:-4px}.entry-content .wp-block-text-columns.alignwide{padding-left:20px;padding-right:20px}.entry-content .wp-block-code{border-radius:0}.entry-content .wp-block-code code{white-space:pre;overflow-x:auto}.entry-content .wp-block-columns.alignfull{padding-left:20px;padding-right:20px}@media(max-width:500px){.entry-content .wp-block-columns{flex-wrap:nowrap}}@media(max-width:1023px){.entry-content .wp-block-columns .wp-block-column>:first-child{margin-top:0}.entry-content .wp-block-columns .wp-block-column>:last-child{margin-bottom:0}.entry-content .wp-block-columns[class*=has-]>:last-child{margin-right:0}.entry-content .wp-block-columns.alignfull,.entry-content .wp-block-columns.alignfull .wp-block-column{padding-left:16px;padding-right:16px}}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta{font-family:Montserrat,sans-serif;font-weight:700}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date{font-weight:400}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p{font-size:inherit}.entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date{font-size:8.5px}.entry-content .has-small-font-size{font-size:11.9px}.entry-content .has-normal-font-size{font-size:17px}.entry-content .has-large-font-size{font-size:27.2px;line-height:1.2}.entry-content .has-huge-font-size{font-size:42.5px;line-height:1.2}.site-footer{margin-top:96px;clear:both}.site-footer h3{white-space:nowrap;padding-bottom:8px;margin-bottom:16px;font-weight:600;font-size:21px;border-bottom:1px solid rgba(50, 52, 57, .2)}@media(max-width:1023px){.site-footer h3{font-size:18px}}.site-footer .footer-widgets{padding-top:64px;padding-bottom:32px;display:flex}@media(max-width:1023px){.site-footer .footer-widgets{flex-direction:column-reverse;width:100%}}.site-footer .footer-widgets ul{padding:0;margin:0}.site-footer .footer-widgets ul ul{margin-left:10px}.site-footer .footer-widgets li{list-style-type:none;padding:0;margin:0;line-height:2.2}.site-footer .footer-widgets li a{font-weight:400}.site-footer .footer-widgets li .post-date{font-size:13px;margin-left:8px;opacity:.5}.site-footer .widget{flex:1 1 0;box-sizing:content-box;margin-right:96px;width:100%;max-width:375px}@media(max-width:767px){.site-footer .widget{margin-left:0 !important;margin-right:0 !important;padding-bottom:32px;max-width:100%}}.site-footer .widget:first-of-type{margin-left:0}.site-footer .widget:last-of-type{margin-right:0}.site-footer .widget.credits{flex-grow:2;margin-right:256px;width:inherit}@media(max-width:1023px){.site-footer .widget.credits{padding-top:32px;padding-bottom:0}}.site-footer .widget.credits img{width:280px;max-width:100%}.site-footer .footer-info{padding:8px 0}@media(min-width:1024px){.site-footer .footer-info{text-align:right}}.site-footer .footer-info p{margin-top:0;margin-bottom:0;font-size:12px}.interactive>*,.interactive img{transition-duration:.7s}.interactive.long-delay *{transition-delay:3s}.interactive.fade-in img{opacity:0}.interactive.fade-in.already-see img{opacity:1}.interactive.slide-left img{transform:translateX(-100px)}.interactive.slide-left.visible img{transform:translateX(0)}.interactive.enter-down img{transform:translateY(100%)}.interactive.enter-down.already-see img{transform:translateY(0)}.interactive.exit-right img{opacity:1;transform:translateX(0);transition-duration:1.05s}.interactive.exit-right.already-see img{opacity:0;transform:translateX(300%)}.interactive.parallax{overflow:hidden}.interactive.parallax *{transition:inherit}.parallax figure,figure.parallax{height:100%;overflow:hidden;max-height:70vh}.parallax figure img,figure.parallax img{height:calc(100% + 200px);margin-bottom:-100px !important}.parallax figure figcaption,figure.parallax figcaption{position:absolute;right:20px;left:20px}.screen-reader-text{border:0;clip:rect(1px, 1px, 1px, 1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important}.screen-reader-text.skip-link{display:block}.screen-reader-text:focus{background-color:#16bebb;border-radius:3px;box-shadow:0 0 2px 2px rgba(50, 52, 57, .75);clip:auto !important;-webkit-clip-path:none;clip-path:none;color:#fff;font-size:16px;font-weight:600;height:auto;display:block;right:8px;top:8px;z-index:100000;line-height:1;padding:12px 24px;text-decoration:none;width:auto}#main[tabindex="-1"]:focus{outline:0}abbr{cursor:help}.entry-comments{clear:both;margin-top:48px;padding-top:64px;border-top:1px solid #e3e3e3}.entry-comments>p{font-size:1.3em;margin-bottom:64px;font-weight:300}.entry-comments .navigation a{font-size:12px;font-weight:400;color:#4a4d54}.entry-comments p.comment-notes{font-size:13px;font-style:italic;color:#4a4d54}.entry-comments p.comments-closed,.entry-comments p.no-comments-yet{text-align:center;font-style:italic;font-weight:600}.entry-comments p.logged-in-as{font-weight:600;float:right;font-size:13px;line-height:20px;margin:-30px 0 0}@media(max-width:500px){.entry-comments p.logged-in-as{margin:0}}.site-main ol.commentlist{padding-left:0;padding-right:0}.site-main ol.commentlist ol,.site-main ol.commentlist ul{padding:0;margin-top:16px;margin-bottom:16px;list-style:none}.site-main ol.commentlist li{margin:0;display:block;padding:16px 0 32px}.site-main ol.commentlist li li{padding-left:32px}.site-main ol.commentlist .avatar{line-height:1;float:left;width:64px;height:64px;margin-right:16px;border-radius:50%;overflow:hidden}.site-main ol.commentlist .comment-author,.site-main ol.commentlist .fn{height:38.4px;line-height:42.24px}.site-main ol.commentlist .comment-author a,.site-main ol.commentlist .comment-author b,.site-main ol.commentlist .fn a,.site-main ol.commentlist .fn b{color:#6f4cad;font-weight:600;font-size:23px}.site-main ol.commentlist .comment-metadata{height:25.6px;line-height:1}.site-main ol.commentlist .comment-metadata a{font-size:12px;font-weight:400;color:#7a7e8a}.site-main ol.commentlist .comment-metadata .comment-edit-link{opacity:0;transition:.35s;background-color:#6f4cad;margin-left:16px;padding:4px 12px;border-radius:16px;color:#fff;font-weight:600}.site-main ol.commentlist article:hover .comment-metadata .comment-edit-link{opacity:1}.site-main ol.commentlist .comment-content{background:#fff;border:1px solid #f2f2f2;padding:16px;margin-left:80px;margin-top:8px;max-height:800px;overflow-y:auto}.site-main ol.commentlist .comment-content *{max-width:100%}.site-main ol.commentlist .reply{text-align:right}.site-main ol.commentlist .reply a{color:#e3e3e3;clear:both;padding:4px 12px;border-radius:16px;display:inline-block;line-height:1.2;margin-top:12px;font-size:14px;transition:.35s}.site-main ol.commentlist .reply a:hover{background-color:#6f4cad;color:#fff}#respond{position:relative}#respond>small{display:block;font-size:17px}#respond label{min-width:100px;display:inline-block}#respond form p{margin-bottom:16px}#respond input[type=email],#respond input[type=text],#respond input[type=url]{width:50%}#respond .comment-form-cookies-consent{display:flex;margin:16px 0}#respond .comment-form-cookies-consent label{font-size:14px;line-height:1;margin-left:8px}#respond .form-submit{margin-top:16px;text-align:right}#respond .form-submit input{font-size:16px;padding:10px 16px}.search-form{display:flex;max-width:444px;margin:0 auto;border-radius:4px;overflow:hidden;position:relative}.search-form input{height:48px}.search-form label{width:100%}.search-form [type=search]{width:100%;margin:0;padding:8px 16px;font-size:15px}.search-form [type=submit]{width:80px;margin:0;border-radius:0;font-size:0}.search-form:before{content:"";font-family:Material Icons;color:#fff;font-size:28px;display:block;width:24px;height:48px;line-height:48px;position:absolute;z-index:2;right:26px}#primary .search-form{margin:64px auto}body.error404 h1{font-size:110px}body.archive .site-main .article-container:nth-child(2n+2),body.search-results .site-main .article-container:nth-child(2n+2){position:relative}body.archive .site-main .article-container:nth-child(2n+2):before,body.search-results .site-main .article-container:nth-child(2n+2):before{display:block;position:absolute;z-index:1;transform:rotate(-1deg);top:0;bottom:0;left:-100px;right:-100px;content:"";background-color:rgba(50, 52, 57, .05)}@media(max-width:1023px){body.archive .site-main .article-container:first-of-type .entry-image,body.search-results .site-main .article-container:first-of-type .entry-image{display:none !important}}body.archive article,body.search-results article{display:flex;margin:0 auto;padding:64px 0;min-height:100px;position:relative;z-index:2}@media(max-width:1023px){body.archive article,body.search-results article{flex-direction:column;padding:48px 20px}}body.archive article .article-wrapper,body.search-results article .article-wrapper{max-width:100%}body.archive article .entry-image,body.search-results article .entry-image{min-width:280px;max-width:280px;margin-right:48px}@media(max-width:1023px){body.archive article .entry-image,body.search-results article .entry-image{width:calc(100% + 100px);min-width:inherit;max-width:calc(100% + 100px);margin:-48px -50px 20px}body.archive article .entry-image img,body.search-results article .entry-image img{transform:rotate(-1deg)}}body.archive article .entry-image+.article-wrapper,body.search-results article .entry-image+.article-wrapper{min-width:calc(100% - 328px)}@media(max-width:1023px){body.archive article .entry-image+.article-wrapper,body.search-results article .entry-image+.article-wrapper{width:100%}}body.archive article .entry-image img,body.search-results article .entry-image img{height:100%;max-height:420px;-o-object-fit:cover;object-fit:cover}body.archive article.product .entry-image img,body.search-results article.product .entry-image img{-o-object-fit:contain;object-fit:contain}body.archive article .entry-header,body.search-results article .entry-header{padding:0}body.archive article .entry-header .entry-title,body.search-results article .entry-header .entry-title{width:100%;font-size:28px;margin:0 0 8px;padding:0;text-align:left}@media(max-width:1023px){body.archive article .entry-header .entry-title,body.search-results article .entry-header .entry-title{font-size:24px}}body.archive article .entry-header .breadcrumbs,body.search-results article .entry-header .breadcrumbs{margin-top:0;text-align:left}body.archive article .entry-content,body.search-results article .entry-content{width:100%}body.archive article .entry-content p,body.search-results article .entry-content p{margin:0;padding:0}body.archive article .entry-footer .post-meta,body.search-results article .entry-footer .post-meta{padding:16px 0 0}body.archive article .entry-footer .meta-wrapper,body.search-results article .entry-footer .meta-wrapper{margin:0;padding:0}body.archive article .entry-footer .meta-wrapper p,body.search-results article .entry-footer .meta-wrapper p{font-size:12px;text-transform:uppercase;margin-left:8px}body.archive article .entry-footer .meta-wrapper p:first-of-type,body.search-results article .entry-footer .meta-wrapper p:first-of-type{margin-left:0}.bypostauthor{background-color:transparent}.article-author .avatar{float:left;max-width:64px;margin-right:32px}@media(max-width:1260px){.article-author .avatar{max-width:48px;margin-right:20px}}.article-author .avatar img{margin:0;border-radius:50%;overflow:hidden;vertical-align:middle}.article-author .author-details{display:table}.article-author .author-description p{font-size:13px;margin:8px 0;line-height:1.8}body.woocommerce .woocommerce-breadcrumb{margin:0;line-height:1;padding-bottom:32px}@media(max-width:1023px){body.woocommerce .woocommerce-breadcrumb{padding-bottom:16px}}body.woocommerce .woocommerce-result-count{line-height:48px}@media(max-width:1023px){body.woocommerce .woocommerce-ordering a,body.woocommerce .woocommerce-ordering option,body.woocommerce .woocommerce-ordering select,body.woocommerce .woocommerce-ordering span,body.woocommerce .woocommerce-result-count{font-size:13px}}body.woocommerce .product_meta{margin-top:16px}body.woocommerce .product_meta>span{display:block;font-weight:600;line-height:1.7}body.woocommerce .product_meta>span a,body.woocommerce .product_meta>span span{font-weight:400}body.woocommerce .pswp__button{background-color:transparent;min-width:inherit;padding:0;border-radius:0}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#026c7c}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#028295}.woocommerce button.button.alt.disabled{background-color:#62666f}.woocommerce button.button.alt.disabled:hover{background-color:#4a4d54}.select2-selection__rendered{line-height:48px !important}.select2-container .select2-selection--single,.select2-selection__arrow{height:48px !important}body.woocommerce ul.products{padding-top:16px}body.woocommerce ul.products li.product{padding-bottom:16px;background-color:#fff;display:flex;flex-direction:column}body.woocommerce ul.products li.product a img{width:100%;height:auto;max-height:220px;-o-object-fit:contain;object-fit:contain;margin:0 auto 24px;padding:0;box-sizing:border-box}body.woocommerce ul.products li.product .woocommerce-loop-product__title{font-weight:600;padding:0 0 6px;margin:0;font-size:17px;text-align:center}body.woocommerce ul.products li.product a.button{font-size:10px;border:1px solid #e3e3e3;background-color:#fff;align-content:center;margin:auto}body.woocommerce ul.products li.product .added_to_cart{position:absolute;bottom:15px;right:15px;height:30px;width:30px;display:block;text-align:center;background:#6f4cad;color:#fff;padding:0;margin:0;font-size:0;border-radius:50%}body.woocommerce ul.products li.product .added_to_cart:before{display:block;font-family:Material Icons;content:"";font-weight:500;font-size:24px;line-height:30px;opacity:.99}body.woocommerce ul.products li.product p.price,body.woocommerce ul.products li.product span.price{color:#4a4d54;line-height:2;font-size:12px;display:block;text-align:center}body.woocommerce div.product img.wp-post-image{max-height:50vh;margin:auto;-o-object-fit:contain;object-fit:contain}@media(max-width:1023px){body.woocommerce div.product .gallery__image{height:300px;margin:auto}body.woocommerce div.product .gallery__image img{-o-object-fit:contain;object-fit:contain;height:100%}}body.woocommerce div.product .summary.entry-summary{padding-left:16px;box-sizing:border-box}@media(max-width:1023px){body.woocommerce div.product .summary.entry-summary{padding-left:0}}body.woocommerce div.product .product_title.entry-title{margin:0;font-size:38px;text-align:left}@media(max-width:1023px){body.woocommerce div.product .product_title.entry-title{font-size:30px}}body.woocommerce div.product div.images .flex-control-thumbs li{padding:0}body.woocommerce div.product .woocommerce-variation.single_variation{margin-bottom:1em}body.woocommerce div.product form.cart{margin-top:16px}body.woocommerce div.product form.cart div.quantity{display:flex;margin:0}body.woocommerce div.product form.cart div.quantity input{margin:0;border:1px solid #e3e3e3;border-radius:4px 0 0 4px}body.woocommerce div.product form.cart div.quantity .qty{font-size:18px}body.woocommerce div.product form.cart div.quantity+button{border-radius:0;height:49px}body.woocommerce div.product p.price,body.woocommerce div.product span.price{color:#026c7c}body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper{margin-left:-20px;margin-right:-20px}body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a{font-size:16px}@media(max-width:1023px){body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a{font-size:14px}}body.woocommerce div.product .woocommerce-tabs .entry-content>*{width:100%}body.woocommerce div.product .woocommerce-tabs .entry-content table{width:calc(100% - 40px)}body.woocommerce div.product table.woocommerce-product-attributes{margin-left:20px;margin-right:20px}body.woocommerce div.product table.woocommerce-product-attributes td{padding-left:20px}body.woocommerce div.product table.woocommerce-product-attributes tr:nth-child(2n) th{background-color:#5d4091}body.woocommerce div.product .related.products{padding:32px 0 16px}body.woocommerce div.product .related.products ul.products li.product .woocommerce-loop-product__title{font-size:15px}@media(max-width:1023px){body.woocommerce div.product .related.products ul.products li.product .woocommerce-loop-product__title{font-size:14px}}#secondary ul.product-categories ul{margin:0;padding-left:32px}#secondary ul.product-categories li{line-height:42px;margin:0;border-top:1px solid rgba(50, 52, 57, .05)}#secondary ul.product-categories>li:first-child{border:0}#secondary ul.product-categories a{color:#4a4d54;font-weight:500}#secondary ul.product-categories .current-cat-parent>a,#secondary ul.product-categories .current-cat>a{font-weight:600}#secondary ul.product-categories .current-cat>a{-webkit-filter:brightness(115%);filter:brightness(115%)}#secondary ul.product-categories .toggle i{opacity:.5;transition:.35s;vertical-align:middle;margin-top:-2px;margin-right:8px}#secondary ul.product-categories .cat-parent.active>a i{opacity:1;transform:rotate(90deg);-webkit-filter:brightness(115%);filter:brightness(115%)}#secondary ul.product_list_widget a{display:block}#secondary ul.product_list_widget li{height:48px;border-top:1px solid rgba(50, 52, 57, .05);font-size:11px;line-height:1}#secondary ul.product_list_widget li:first-child{border:0}#secondary ul.product_list_widget li span{display:inline-block}#secondary ul.product_list_widget li span.woocommerce-Price-amount{color:#026c7c}#secondary ul.product_list_widget li .product-title{color:#4a4d54;font-weight:600;padding-top:8px;line-height:1.3;display:block}#secondary ul.product_list_widget li img{width:48px;height:48px;-o-object-fit:contain;object-fit:contain;margin-left:8px}body.compensate-for-scrollbar{overflow:hidden;margin:0 !important}.fancybox-toolbar .fancybox-button{background-color:transparent}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute !important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47, 0, .74, .71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22, .61, .36, 1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5, 0, .14, 1);animation-timing-function:cubic-bezier(.5, 0, .14, 1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30, 30, 30, .6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#4a4d54;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0}.fancybox-caption{background:linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:fancybox-rotate 1s linear infinite;animation:fancybox-rotate 1s linear infinite;background:transparent;border:4px solid;border-color:#888 #888 #fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@-webkit-keyframes fancybox-rotate{to{transform:rotate(1turn)}}@keyframes fancybox-rotate{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0, 0, .25, 1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%, 0, 0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%, 0, 0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19, 1, .22, 1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5, 1.5, 1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5, .5, .5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0, 0, 0) translate3d(-100%, 0, 0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0, 0, 0) translate3d(100%, 0, 0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%, 0, 0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%, 0, 0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0, 0, 0, .3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0, 0, 0, .1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25, .46, .45, .94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}.fancybox-counter{font-size:80%;opacity:.8}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translateZ(0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}@media(max-width:1023px){.site-main .wp-block-gallery{padding-left:0;padding-right:0}}.slider-multi,.slider-single{display:block}.slick-next,.slick-prev{position:absolute;display:block;height:20px;width:20px;line-height:0;font-size:0;cursor:pointer;background:transparent;color:transparent;top:50%;transform:translateY(-50%);padding:0;border:none;outline:none}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{outline:none}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-size:20px;line-height:1;color:#fff;opacity:.75}.slick-prev{left:-25px}.slick-prev:before{content:"<"}.slick-next{right:-25px}.slick-next:before{content:">"}.slick-slide{padding:4px}.slick-slide img{width:100%;height:auto}.slick-dots{display:flex;justify-content:center;flex-wrap:wrap;margin:0;padding:8px 0;list-style-type:none}.slick-dots li{margin:0 8px}.slick-dots button{display:block;width:8px;height:8px;margin:0;padding:0;min-width:inherit;outline:inherit !important;border:none;border-radius:100%;background-color:#e3e3e3;text-indent:-9999px}.slick-dots button:focus,.slick-dots button:hover{width:12px;height:12px;margin-top:-2px;background-color:#cacaca;-webkit-filter:inherit;filter:inherit}.slick-dots li.slick-active button{background-color:#6f4cad;width:16px;height:16px;margin-top:-4px}#masonry-wrapper{position:relative;transition-duration:.8s;transition-delay:.2s;padding:0}.masonry.navigation{text-align:center;position:absolute;bottom:0;width:100%}.masonry.navigation a{flex-basis:100%;color:#e3e3e3;font-weight:300;opacity:0}.grid__col-sizer,.grid__item{width:31.33333%}@media(max-width:1260px){.grid__col-sizer,.grid__item{width:48%}}@media(max-width:767px){.grid__col-sizer,.grid__item{width:100%}}.grid__gutter-sizer{width:3%}@media(max-width:1260px){.grid__gutter-sizer{width:4%}}@media(max-width:767px){.grid__gutter-sizer{width:0}}.grid__item.big-block,.grid__item.sticky{width:65.66667%}@media(max-width:1260px){.grid__item.big-block,.grid__item.sticky{width:100%}}.grid__item.full-block{width:100%}.masonry-container article.grid__item{max-width:100%;box-sizing:border-box;display:flex;flex-direction:column;border-radius:3px;background-color:#fff;box-shadow:0 2px 12px -6px rgba(50, 52, 57, .5);padding:0;margin:0 0 32px}@media(max-width:767px){.masonry-container article.grid__item{padding-right:0}}.masonry-container article.grid__item .article-wrapper{width:auto;margin-left:20px;margin-right:20px;padding-top:12px;padding-bottom:32px}.masonry-container article.grid__item .entry-image{display:flex;width:100%;min-width:inherit;max-width:inherit;margin:0}.masonry-container article.grid__item .entry-image img{max-height:600px;transform:inherit}.masonry-container article.grid__item .entry-header{padding-top:8px;padding-bottom:8px;margin:0}@media(max-width:940px){.masonry-container article.grid__item .entry-header{padding-left:0;padding-right:0}}.masonry-container article.grid__item .breadcrumbs{text-align:left}.masonry-container article.grid__item h2.entry-title{font-size:19px;padding:0;margin:0;text-align:left;font-weight:600}.masonry-container article.grid__item p{font-size:15px;line-height:1.6;margin:0;padding:0}.page-load-status{display:none;padding-top:32px;text-align:center}i.social-ico.email{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.print{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.facebook{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.twitter{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.youtube{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.linkedin{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.www{background-image:url('data:image/svg+xml;utf8,')}i.social-ico{display:inline-block;width:36px;height:36px;background:no-repeat 50%;background-size:36px;cursor:pointer;transition:.35s;padding:0;margin:8px 18px 8px 0}i.social-ico:before,i.social-ico:hover{-webkit-filter:brightness(1.2);filter:brightness(1.2)}i.social-ico:before{position:absolute}i.social-ico.small{width:24px;height:24px;background-size:24px;margin:8px 12px 8px 0}.share-buttons i{-webkit-filter:invert(.2);filter:invert(.2)}.arrow-next,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next{background-image:url('data:image/svg+xml;utf8, ')}.arrow-prev,.fancybox-navigation .fancybox-button--arrow_left,.slider button.slick-prev{background-image:url('data:image/svg+xml;utf8, ')}.arrow,.fancybox-navigation .fancybox-button--arrow_left,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next,.slider button.slick-prev{background-color:transparent;border-radius:50%;width:60px;height:60px;margin:0;padding:0;min-width:inherit;background-size:15px;background-repeat:no-repeat;background-position:50%;border:0}.arrow:hover,.fancybox-navigation .fancybox-button--arrow_left:hover,.fancybox-navigation .fancybox-button--arrow_right:hover,.slider button.slick-next:hover,.slider button.slick-prev:hover{background-color:rgba(74, 77, 84, .1);-webkit-filter:inherit;filter:inherit}@media(max-width:1023px){.arrow,.fancybox-navigation .fancybox-button--arrow_left,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next,.slider button.slick-prev{padding:6px;width:24px;height:24px;background-size:6px}}.arrow-next,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next{margin-right:30px}.arrow-prev,.fancybox-navigation .fancybox-button--arrow_left,.slider button.slick-prev{margin-left:30px}.slick-next:before,.slick-prev:before{display:none !important}.fancybox-navigation svg{display:none}.slider button.slick-prev{margin-left:-60px}@media(max-width:1023px){.slider button.slick-prev{margin-left:30px}}.slider button.slick-next{margin-right:-60px}@media(max-width:1023px){.slider button.slick-next{margin-right:30px}}.fancybox-navigation .fancybox-button--arrow_left:disabled,.fancybox-navigation .fancybox-button--arrow_right:disabled{opacity:.5}iframe{width:100%;max-width:100%}::-moz-selection{background-color:rgba(22, 190, 187, .5);color:#fff}::selection{background-color:rgba(22, 190, 187, .5);color:#fff}pre{width:100%;padding:32px 64px;background:#f0f0f0;white-space:pre-wrap;box-sizing:border-box}blockquote,pre{border:1px solid #e3e3e3}blockquote{min-height:100px;padding-top:30px;padding-bottom:30px;padding-left:90px !important;padding-right:90px !important;margin:32px 0;position:relative;background:#fff}blockquote p{margin-bottom:24px}blockquote:before{font-family:Material Icons;content:"";position:absolute;top:-4px;left:16px;font-size:60px;color:#16bebb}code{background-color:#e3e3e3;padding:4px 6px;font-weight:600}@media(max-width:940px){.site-main .entry-content blockquote,.site-main .entry-content pre,.site-main .entry-content table{padding-left:20px;padding-right:20px}.site-main .entry-content table{width:calc(100% - 40px)}}.post-tags{list-style:none}.post-tags h3{display:inline;vertical-align:middle}.post-tags ul{display:inline;margin:0;padding-left:20px}.post-tags li.post-tag{margin:0 16px 10px 0;padding:0 10px 0 25px}.post-tag{background:#6f4cad;border-radius:3px 0 0 3px;display:inline-block;height:22px;line-height:18px;position:relative}.post-tag a{font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:#fff;text-decoration:none !important}.post-tag,.post-tag:after,.post-tag:before,.post-tag a{transition:.2s}.post-tag:before{background:#fff;border-radius:10px;box-shadow:inset 0 1px hsla(0, 0%, 98.8%, .25);content:"";height:6px;left:10px;position:absolute;width:6px;top:8px}.post-tag:after{background:transparent;border-bottom:11px solid transparent;border-left:10px solid #6f4cad;border-top:11px solid transparent;content:"";position:absolute;right:-10px;top:0}.post-tag:hover{background-color:#6f4cad}.post-tag:hover a{color:#fff}.post-tag:hover:after{border-left-color:#6f4cad}::-webkit-scrollbar{position:relative;z-index:100000;width:12px;height:12px}@media(max-width:767px){::-webkit-scrollbar{width:6px}}::-webkit-scrollbar-track{border-radius:0}::-webkit-scrollbar-track,::-webkit-scrollbar-track-piece{background-color:#e3e3e3;-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, .1)}::-webkit-scrollbar-thumb,::-webkit-scrollbar-thumb:horizontal,::-webkit-scrollbar-thumb:vertical{background-color:#16bebb;border-radius:1px;-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, .15)}::-webkit-scrollbar-button:end:increment,::-webkit-scrollbar-button:start:decrement{height:0;width:0;display:block;background-color:#e3e3e3}::-webkit-scrollbar-button{width:0;height:0}::-webkit-scrollbar-corner{background-color:#fdfdfd}@media print{@page{margin:1.8cm 1.4cm 2.7cm}#content,#main,body{background:#fff;color:#000}#masthead{display:none}a,a:link,a:visited{color:#000;text-decoration:none}#directorynav,#globalfooter,#globalheader,#tabs,.hide,.noprint{display:none}.site-footer .footer-widgets{-moz-column-break-inside:avoid;break-inside:avoid}.site-footer .footer-widgets>*{display:none}.site-footer .footer-widgets>:first-of-type{display:block}.interactive *{transition-duration:0ms !important;transition-delay:0ms !important}.interactive.parallax img{height:100% !important;margin:0 !important}} +.nowrap{white-space:nowrap}.hide{display:none}.unselectable::-moz-selection{background-color:transparent}.unselectable::selection{background-color:transparent}#secondary ul.product-categories li,#secondary ul.product_list_widget li .product-title,.ellipsis,.site-footer .footer-widgets li,body.woocommerce .woocommerce-breadcrumb{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.alignright{float:right}.alignleft{float:left}.aligncenter{display:block;margin-left:auto;margin-right:auto}.clearfix:after{content:"";clear:both;display:table}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.display-table{display:table}.elevation-01,.search-form{box-shadow:0 2px 10px -6px rgba(50, 52, 57, .8)}table{width:100%;max-width:100%}table tr{border-collapse:collapse}table tr td,table tr th{padding:12px}table tr th{background:#6f4cad;color:#fff}table tr td{border-bottom:1px solid #e3e3e3}input,select,textarea{box-sizing:border-box;padding:12px 8px;margin:0;background:#fff;outline:none !important;border:1px solid #e3e3e3;font-size:17px;transition:.35s}input{border:0 solid transparent}input[type=date],input[type=email],input[type=number],input[type=tel],input[type=text],input[type=url]{width:100%;padding-left:4px;box-shadow:0 1px 0 #e3e3e3}input[type=date]:hover,input[type=email]:hover,input[type=number]:hover,input[type=tel]:hover,input[type=text]:hover,input[type=url]:hover{box-shadow:0 1px 0 #6f4cad}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus{box-shadow:0 2px 0 #6f4cad}[type=checkbox],[type=radio]{margin:0;display:inline;vertical-align:middle}.input-label{font-size:8.5px}label input+span{font-size:15px;line-height:19px;opacity:.8}textarea{display:block;min-width:100%;max-width:100%;min-height:160px;overflow:hidden}fieldset{margin:8px 0}input,textarea{margin-bottom:8px}select,textarea{width:100%;border-radius:4px}img{height:auto;max-width:100%;position:relative;-o-object-fit:cover;object-fit:cover}.image-border img{padding:8px;background:#e3e3e3;margin:8px;box-sizing:border-box}p img.alignleft{padding-right:10px}p img.alignright{padding-left:10px}figure{margin-bottom:16px}figure img{max-width:100%;padding-left:0;padding-right:0}figure .gallery-caption,figure figcaption{overflow:hidden;line-height:1.2}.site-main .entry-content .wp-caption{margin-bottom:16px;padding-left:20px;padding-right:20px}.site-main .entry-content .wp-caption .wp-caption-text{color:#4a4d54;font-size:15px;font-style:italic}.site-main .entry-content .wp-caption.alignleft{padding-right:10px}.site-main .entry-content .wp-caption.alignright{padding-left:10px}.button,.entry-content .wp-block-button .wp-block-button__link,button,input[type=button],input[type=reset],input[type=submit]{display:inline-flex;justify-content:center;position:relative;transition:.175s;cursor:pointer;min-width:64px;margin:0;padding:9.6px 19.2px;border:none;border-radius:30px;outline:none;font-family:Montserrat,sans-serif;font-size:17px;font-weight:700;letter-spacing:2px;text-decoration:none !important;text-transform:uppercase;white-space:normal;overflow-wrap:break-word}.button:hover,.entry-content .wp-block-button .wp-block-button__link:hover,button:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{color:#fff;-webkit-filter:brightness(115%);filter:brightness(115%);cursor:pointer}.button:focus,.entry-content .wp-block-button .wp-block-button__link:focus,button:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus{color:#fff;-webkit-filter:brightness(120%);filter:brightness(120%)}.entry-content .wp-block-button .outline.wp-block-button__link,.outline.button,button.outline,input.outline[type=button],input.outline[type=reset],input.outline[type=submit]{background-color:transparent !important}.button:disabled,.entry-content .wp-block-button .wp-block-button__link:disabled,button:disabled,input[type=button]:disabled,input[type=reset]:disabled,input[type=submit]:disabled{-webkit-filter:saturate(0);filter:saturate(0)}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#6f4cad;color:#fff}.button+.button,.button+button,.button+input[type=button],.button+input[type=reset],.button+input[type=submit],button+.button,button+button,button+input[type=button],button+input[type=reset],button+input[type=submit],input[type=button]+.button,input[type=button]+button,input[type=button]+input[type=button],input[type=button]+input[type=reset],input[type=button]+input[type=submit],input[type=reset]+.button,input[type=reset]+button,input[type=reset]+input[type=button],input[type=reset]+input[type=reset],input[type=reset]+input[type=submit],input[type=submit]+.button,input[type=submit]+button,input[type=submit]+input[type=button],input[type=submit]+input[type=reset],input[type=submit]+input[type=submit]{margin-left:12px}.button{line-height:1}.button+.button{margin-right:8px}.menu-resp button.c-hamburger{display:block;position:relative;overflow:hidden;margin:auto;padding:0;width:30px;min-width:inherit;height:30px;text-indent:-9999px;box-shadow:none;border:none;border-radius:0;cursor:pointer;transition:background .3s;background-color:transparent}.menu-resp button.c-hamburger i{display:block;position:absolute;top:15px;background:#16bebb;left:0;right:0;height:3px;transition:background .15s .1s;transition-delay:.1s,0s}.menu-resp button.c-hamburger i:after,.menu-resp button.c-hamburger i:before{position:absolute;display:block;left:0;width:100%;height:3px;background:#16bebb;content:"";transition-duration:.3s,.3s;transition-delay:.3s,0s}.menu-resp button.c-hamburger i:before{top:9px;transition-property:top,transform}.menu-resp button.c-hamburger i:after{bottom:9px;transition-property:bottom,transform}.active .menu-resp button.c-hamburger i{background:0 0;transition-delay:.2s,0s}.active .menu-resp button.c-hamburger i:before{top:0;transform:rotate(45deg)}.active .menu-resp button.c-hamburger i:after{bottom:0;transform:rotate(-45deg)}.active .menu-resp button.c-hamburger i:after,.active .menu-resp button.c-hamburger i:before{transition-delay:0s,.3s}#secondary{min-width:444px;width:444px;padding:0 20px;box-sizing:border-box}#secondary .search-form{max-width:100%}@media(min-width:1024px){#secondary{padding:0}.sidebar-right #secondary{padding-left:64px}.sidebar-left #secondary{padding-right:64px}}@media(max-width:960px){#secondary{padding-top:40px;border-top:1px solid #eee;min-width:inherit;width:100%}}#secondary section{padding-bottom:48px}#secondary h3{margin:0 0 4px;font-size:20px;font-weight:600}#secondary a{font-weight:500;font-size:16px}.main-width,.site-main .entry-content>*{width:900px;max-width:100%;box-sizing:border-box;padding-left:20px;padding-right:20px;margin:0 auto 48px}@media(max-width:1023px){.main-width,.site-main .entry-content>*{padding-left:20px;padding-right:20px}}.main-width.alignwide{width:1500px;max-width:100%}.has-sidebar .site-content .main-width.alignwide,.main-width.alignfull{width:100%}.entry-image img{width:100%;height:100%}.site-content{padding-top:32px}#masthead+.site-content{padding-top:92px}@media(max-width:960px){#masthead+.site-content{padding-top:112px}}#masthead.header-portrait+.site-content{padding-top:236px}@media(max-width:960px){#masthead.header-portrait+.site-content{padding-top:112px}}body.has-featured-image #masthead+.site-content{padding-top:48px}@media(max-width:960px){body.has-featured-image #masthead+.site-content{padding-top:0}}body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:row-reverse}@media(max-width:960px){body.has-sidebar.sidebar-left .site-content,body.woocommerce.sidebar-left .site-content{flex-direction:column}}body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:32px}@media(max-width:960px){body.has-sidebar.has-featured-image .site-content,body.woocommerce.has-featured-image .site-content{padding-top:20px}}body.has-sidebar .site-content,body.woocommerce .site-content{display:flex;justify-content:center;width:1500px;max-width:100%;box-sizing:border-box;margin:0 auto}@media(max-width:960px){body.has-sidebar .site-content,body.woocommerce .site-content{width:100%;flex-direction:column}}body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:calc(100% - 508px)}@media(max-width:960px){body.has-sidebar .site-content .content-area,body.woocommerce .site-content .content-area{width:100%}}.entry-header{text-align:center}.entry-header .meta-wrapper{float:inherit}.entry-title,.page-title{text-align:center;margin-left:auto;margin-right:auto;width:80%;margin-bottom:20px}@media(max-width:1023px){.entry-title,.page-title{width:100%}}.entry-header,.page-header,.woocommerce-products-header{display:block;width:100%;max-width:1500px;text-align:center;margin:0 auto 20px}@media(max-width:940px){.entry-header,.page-header,.woocommerce-products-header{max-width:100%;width:auto;padding-left:20px;padding-right:20px}}.entry-header p,.page-header p,.woocommerce-products-header p{margin:0 auto;max-width:750px;line-height:1.7}.entry-footer{clear:both}.entry-footer>div,.page-links{padding-top:64px}.page-links{clear:both}.post-meta .meta-wrapper{display:inline-flex}.post-meta .meta-wrapper p{color:#4a4d54;font-size:13px;font-weight:300;margin-bottom:0;margin-left:8px;margin-right:8px}@media(max-width:1023px){.post-meta .meta-wrapper p{font-size:11px}}.post-meta .meta-wrapper a{color:#4a4d54;font-weight:600;text-transform:uppercase}.breadcrumbs{font-size:11px;margin-bottom:8px;font-weight:600;letter-spacing:1.5px;color:#b0b3ba}.breadcrumbs a{color:#4a4d54;font-weight:600;text-transform:uppercase;margin-left:4px;margin-right:4px;transition:.35s;opacity:.5}.breadcrumbs a:last-of-type{opacity:.8}.breadcrumbs a:hover{opacity:1}.relateds ul.relateds-list{margin:0;padding:0}.relateds ul.relateds-list li{display:block;padding:0;margin:8px 0 48px;clear:both;font-weight:400}.relateds ul.relateds-list li p{margin:0;font-size:.9em;font-weight:400}.relateds ul.relateds-list li img{float:left;clear:both;width:150px;margin-right:20px;margin-bottom:20px;max-height:150px}@media(max-width:1023px){.relateds ul.relateds-list li img{width:75px;margin-right:10px;margin-bottom:10px}}.navigation{display:flex;flex-wrap:wrap}.navigation a{line-height:1.2;font-weight:500;display:inline-table;vertical-align:baseline;width:calc(100% - 30px)}@media(max-width:1023px){.navigation a{font-size:90%}}.navigation>*{flex-basis:50%;flex-shrink:0}.navigation .alignright{text-align:right}.nav-links{flex-basis:100%;text-align:center;margin-top:32px}.nav-links *{margin:0 8px}.nav-links .page-numbers{display:inline-block;padding:0 7.2px;width:36px;height:36px;vertical-align:middle;box-sizing:border-box;font-weight:600;line-height:36px;border-radius:18px;background-color:#e3e3e3;color:#b0b0b0;transition:.35s}.nav-links .page-numbers.current,.nav-links .page-numbers:hover{color:#4a4d54}.nav-links .page-numbers.next,.nav-links .page-numbers.prev{width:auto}.post-navigation .navigation{margin-top:16px}.post-navigation .navigation>div{height:60px}.post-navigation .navigation i{vertical-align:middle}.category-list-labels{padding-top:32px}.category-list-labels li,.category-list-labels ul{display:inline-block}.category-list-labels li{background:#fff;border-radius:15px;border:1px solid #e3e3e3;width:auto;height:30px;line-height:26px;position:relative;margin:0 10px 10px 0;padding:0 10px;box-sizing:border-box}.category-list-labels li a{font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:#4a4d54;text-decoration:none !important;transition:.2s}.category-list-labels li:hover a{-webkit-filter:brightness(115%);filter:brightness(115%)}.wp-block-separator,hr{border:none;border-bottom:1px solid rgba(111, 76, 173, .4)}.sticky{background-color:transparent}.sticky h1,.sticky h2{color:#16bebb}body .hero{width:100%;height:100vh;display:flex;flex-direction:column;justify-content:center;align-content:center;background-color:rgba(26, 27, 30, .95)}body .hero,body .hero>*{position:relative}body .hero .entry-image{position:absolute;top:0;width:100%;height:100%}@media(max-width:1023px){body .hero .entry-image{max-height:inherit}}body .hero .hero-title{padding-top:140px;padding-left:20px;padding-right:20px;margin:auto}body .hero .hero-title .page-title{max-width:1125px;width:100%}body .hero .hero-title h1,body .hero .hero-title p{text-shadow:0 2px 4px rgba(50, 52, 57, .7);color:#fff}body .hero .hero-title h1{font-size:64px;font-weight:700;margin:0 auto}@media(max-width:1023px){body .hero .hero-title h1{font-size:44px;width:100%}}@media(max-width:420px){body .hero .hero-title h1{font-size:36px}}@media(max-width:376px){body .hero .hero-title h1{font-size:30px}}body .hero .hero-title p{font-size:19px;font-style:italic}@media(max-width:1023px){body .hero .hero-title p{font-size:17px;line-height:1.3}}@media(max-width:376px){body .hero .hero-title p{font-size:15px}}body .hero .hero-title a{margin-top:32px}@media(max-width:1023px){body .hero .hero-title a{font-size:17px;padding:10px 16px}}body.archive .hero:after,body.page .hero:after,body.single .hero:after{content:" ";display:block;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;box-shadow:inset 0 64px 60px -60px rgba(50, 52, 57, .8)}.site-main .entry-content>*{margin-top:48px;margin-bottom:64px}.site-main .entry-content>:first-child{margin-top:0}.site-main .entry-content>:last-child{margin-bottom:0;clear:both}.site-main .entry-content>.alignclose{margin-top:0;margin-bottom:0}.site-main .entry-content>.alignclose.has-media-on-the-right.padded-image img{margin-right:64px;margin-left:0}.site-main .entry-content>.alignwide{width:100%;max-width:1500px;padding-left:8px;padding-right:8px;clear:both}.site-main .entry-content>.alignfull{position:relative;width:100%;padding-left:0;padding-right:0;clear:both}.site-main .entry-content>.alignleft{float:left}.site-main .entry-content>.alignleft,.site-main .entry-content>.alignright{width:auto;max-width:1650px;margin-top:0;margin-bottom:0;padding-left:8px;padding-right:8px}.site-main .entry-content>.alignright{float:right}.site-main .entry-content>.aligncenter{margin-left:auto;margin-right:auto;text-align:center}@media(max-width:1260px){.site-main .entry-content>.aligncenter{margin-left:auto;margin-right:auto}}.site-main .entry-content>.height-40{min-height:40vh}.site-main .entry-content>.height-100{min-height:100vh}.site-main .entry-content{line-height:1.7}.site-main .entry-content h1,.site-main .entry-content h2,.site-main .entry-content h3,.site-main .entry-content h4,.site-main .entry-content h5,.site-main .entry-content h6{margin-top:0;margin-bottom:16px;line-height:1.3}.site-main .entry-content p{margin-top:0;margin-bottom:16px}.site-main .entry-content p+h1,.site-main .entry-content p+h2{margin-top:64px}.site-main .entry-content p+h3,.site-main .entry-content p+h4,.site-main .entry-content p+h5,.site-main .entry-content p+h6{margin-top:32px}.site-main dl,.site-main ol,.site-main ul{padding:0 40px;margin-top:32px;margin-bottom:16px;list-style-position:inside;line-height:1.7}.site-main dl dt,.site-main dl li,.site-main ol dt,.site-main ol li,.site-main ul dt,.site-main ul li{padding-left:8px}.site-main dl ol,.site-main dl ul,.site-main ol ol,.site-main ol ul,.site-main ul ol,.site-main ul ul{padding-left:40px}.site-main .wp-block-gallery{padding-left:20px;padding-right:20px}.site-main .wp-block-gallery.alignfull{padding:0}.site-main .wp-block-gallery.alignfull .blocks-gallery-grid{margin:0;padding:0}.site-main .wp-block-media-text{margin-top:0;margin-bottom:0}.site-main .wp-block-media-text h1,.site-main .wp-block-media-text h2,.site-main .wp-block-media-text h3{margin-top:0}.site-main button{margin-top:32px}.entry .entry-content .entry,.entry .entry-content .entry-content,.entry .entry-content .entry-summary,.entry .entry-summary .entry,.entry .entry-summary .entry-content,.entry .entry-summary .entry-summary{margin:inherit;max-width:inherit;padding:inherit}@media(max-width:1023px){.entry .entry-content .entry,.entry .entry-content .entry-content,.entry .entry-content .entry-summary,.entry .entry-summary .entry,.entry .entry-summary .entry-content,.entry .entry-summary .entry-summary{margin:inherit;max-width:inherit;padding:inherit}}.entry-content .wp-block-subhead{font-style:inherit;opacity:1;color:#323439}.entry-content .wp-block-audio audio{width:100%}.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:495px}@media(max-width:1023px){.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:750px}}@media(max-width:1600px){.entry-content .wp-block-audio.alignleft audio,.entry-content .wp-block-audio.alignright audio{max-width:495px}}.entry-content .wp-block-audio.alignfull,.entry-content .wp-block-audio.alignwide{padding-left:20px;padding-right:20px}.entry-content .wp-block-video video{width:100%}.entry-content .wp-block-video.alignwide{padding-left:0;padding-right:0}.entry-content .wp-block-button.is-style-squared .wp-block-button__link{border-radius:0}.entry-content .wp-block-button.is-style-outline .wp-block-button__link,.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active,.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus{border:2px solid;background-color:transparent}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background){background:transparent}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),.entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color){color:#6f4cad;border-color:currentColor}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover{color:#6f4cad;background-color:#fff;border-color:#6f4cad;-webkit-filter:brightness(120%);filter:brightness(120%)}.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover:not(.has-background){color:#6f4cad}.entry-content .wp-block-archives,.entry-content .wp-block-categories,.entry-content .wp-block-latest-posts{padding-top:0;padding-bottom:0;list-style:none}.entry-content .wp-block-archives li,.entry-content .wp-block-categories li,.entry-content .wp-block-latest-posts li{color:#4a4d54;font-weight:300}.entry-content .wp-block-archives li.menu-item-has-children,.entry-content .wp-block-archives li:last-child,.entry-content .wp-block-categories li.menu-item-has-children,.entry-content .wp-block-categories li:last-child,.entry-content .wp-block-latest-posts li.menu-item-has-children,.entry-content .wp-block-latest-posts li:last-child{padding-bottom:0}.entry-content .wp-block-archives li a,.entry-content .wp-block-categories li a,.entry-content .wp-block-latest-posts li a{text-decoration:none;font-weight:500}.entry-content .wp-block-archives .wp-block-latest-posts__post-date,.entry-content .wp-block-categories .wp-block-latest-posts__post-date,.entry-content .wp-block-latest-posts .wp-block-latest-posts__post-date{color:#323439;font-size:13px;font-weight:400;line-height:1;margin-bottom:32px}.entry-content .wp-block-archives,.entry-content .wp-block-categories{list-style-type:none}.entry-content .wp-block-archives li,.entry-content .wp-block-archives ul,.entry-content .wp-block-categories li,.entry-content .wp-block-categories ul{padding:0;margin:0 auto}.entry-content .wp-block-archives li a,.entry-content .wp-block-categories li a{margin-bottom:8px}.entry-content .wp-block-archives ul,.entry-content .wp-block-categories ul{list-style-type:none;padding-left:20px}.entry-content .wp-block-archives ul a,.entry-content .wp-block-categories ul a{color:#4a4d54;font-weight:400}.entry-content .wp-block-archives.aligncenter,.entry-content .wp-block-categories.aligncenter{text-align:center}.entry-content .wp-block-archives.aligncenter ul,.entry-content .wp-block-categories.aligncenter ul{padding:0 0 10px}.entry-content .wp-block-latest-posts.is-grid{display:flex;justify-content:space-between}.entry-content .wp-block-latest-posts.is-grid li{background-color:#fff;margin:0}.entry-content .wp-block-preformatted{line-height:1.95;padding:32px 64px}.entry-content .wp-block-verse{line-height:2;font-weight:300;font-style:italic}.entry-content .has-drop-cap{margin-bottom:32px}.entry-content .has-drop-cap:not(:focus):first-letter{font-family:Montserrat,sans-serif;line-height:1;font-weight:600;margin:0 16px 0 0}.entry-content .wp-block-pullquote{border-color:transparent;border-width:2px;padding:30px 120px}@media(max-width:1540px){.entry-content .wp-block-pullquote{padding:30px 40px}}.entry-content .wp-block-pullquote blockquote{color:#4a4d54;border:none}.entry-content .wp-block-pullquote p{font-style:italic;font-weight:300;line-height:1.3}.entry-content .wp-block-pullquote p em{font-style:normal}.entry-content .wp-block-pullquote cite{display:inline-block;font-family:Montserrat,sans-serif;line-height:1.6;text-transform:none;color:#4a4d54}.entry-content .wp-block-pullquote.alignleft,.entry-content .wp-block-pullquote.alignright{width:100%}.entry-content .wp-block-pullquote.alignleft blockquote,.entry-content .wp-block-pullquote.alignright blockquote{margin:8px 0;max-width:100%}.entry-content .wp-block-pullquote.alignleft blockquote p:first-child,.entry-content .wp-block-pullquote.alignright blockquote p:first-child{margin-top:0}.entry-content .wp-block-pullquote.is-style-solid-color{background-color:#6f4cad;padding-left:0;padding-right:0}.entry-content .wp-block-pullquote.is-style-solid-color p{line-height:1.3;margin-bottom:.5em;margin-top:.5em}.entry-content .wp-block-pullquote.is-style-solid-color cite{color:inherit}.entry-content .wp-block-pullquote.is-style-solid-color blockquote{max-width:100%;color:#fcfcfc;padding-left:0;margin-left:8px;margin-right:8px}.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color a,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,.entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color{color:inherit}.entry-content .wp-block-quote:not(.is-large),.entry-content .wp-block-quote:not(.is-style-large){border-left:2px solid #6f4cad;padding-left:120px;padding-top:30px;padding-bottom:30px}.entry-content .wp-block-quote p{font-size:1em;font-style:normal;line-height:1.8}.entry-content .wp-block-quote.is-large,.entry-content .wp-block-quote.is-style-large{border-left:0;border-right:0;max-width:100%}.entry-content .wp-block-quote.is-large p,.entry-content .wp-block-quote.is-style-large p{line-height:1.4;font-style:italic}@media(max-width:1023px){.entry-content .wp-block-image .aligncenter,.entry-content .wp-block-image .aligncenter img{margin:0 auto}}@media(max-width:1600px){.entry-content .wp-block-image .aligncenter img{margin:0 auto}}.entry-content .wp-block-image.alignfull img{width:100%}@media(max-width:1023px){.entry-content .wp-block-image.alignfull img{margin-left:auto;margin-right:auto}}.entry-content .wp-block-image .alignleft{margin-right:32px}@media(max-width:1023px){.entry-content .wp-block-image .alignleft{margin-right:16px}}.entry-content .wp-block-image .alignright{margin-left:32px}@media(max-width:1023px){.entry-content .wp-block-image .alignright{margin-left:16px}}@media(max-width:1023px){.entry-content .wp-block-image .alignleft,.entry-content .wp-block-image .alignright{width:100%}.entry-content .wp-block-image .alignleft img,.entry-content .wp-block-image .alignright img{display:block;margin-left:auto;margin-right:auto}}.entry-content .wp-block-media-text.alignwide{padding:0}.entry-content .wp-block-media-text.alignfull{max-width:inherit}.entry-content .wp-block-media-text .wp-block-media-text__media{overflow:hidden}.entry-content .wp-block-media-text .wp-block-media-text__media img{align-self:center}.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media img{-o-object-position:left;object-position:left}.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{padding-right:64px;padding-left:32px;margin-left:auto}@media(max-width:767px){.entry-content .wp-block-media-text .is-stacked-on-mobile .wp-block-media-text__media{min-height:30vh}}.entry-content .wp-block-media-text .wp-block-media-text__content{max-width:600px;padding:32px 32px 32px 64px}.entry-content .wp-block-media-text .wp-block-media-text__content>:first-child{margin-top:0}.entry-content .wp-block-media-text .wp-block-media-text__content>:last-child{margin-bottom:0}@media(max-width:1023px){.entry-content .wp-block-media-text .wp-block-media-text__content{padding-left:20px !important;padding-right:20px !important}}.entry-content .wp-block-cover,.entry-content .wp-block-cover-image{position:relative;min-height:430px;padding:0;background-color:initial;background-size:cover;display:flex;justify-content:center;align-items:center;overflow:hidden}.entry-content .wp-block-cover-image .wp-block-cover__inner-container,.entry-content .wp-block-cover .wp-block-cover__inner-container{max-width:900px}.entry-content .wp-block-cover-image .wp-block-cover-image-text,.entry-content .wp-block-cover-image .wp-block-cover-text,.entry-content .wp-block-cover-image h2,.entry-content .wp-block-cover .wp-block-cover-image-text,.entry-content .wp-block-cover .wp-block-cover-text,.entry-content .wp-block-cover h2{font-family:Montserrat,sans-serif;font-weight:700;line-height:1.3;padding:0;margin:20px auto}@media(max-width:1023px){.entry-content .wp-block-cover-image .wp-block-cover-image-text,.entry-content .wp-block-cover-image .wp-block-cover-text,.entry-content .wp-block-cover-image h2,.entry-content .wp-block-cover .wp-block-cover-image-text,.entry-content .wp-block-cover .wp-block-cover-text,.entry-content .wp-block-cover h2{max-width:100%}}.entry-content .wp-block-cover-image.alignleft,.entry-content .wp-block-cover-image.alignright,.entry-content .wp-block-cover.alignleft,.entry-content .wp-block-cover.alignright{width:100%}@media(max-width:1023px){.entry-content .wp-block-cover-image.alignleft,.entry-content .wp-block-cover-image.alignright,.entry-content .wp-block-cover.alignleft,.entry-content .wp-block-cover.alignright{padding:8px 16px}}@media(max-width:1023px){.entry-content .wp-block-cover-image.alignfull .wp-block-cover-image-text,.entry-content .wp-block-cover-image.alignfull .wp-block-cover-text,.entry-content .wp-block-cover-image.alignfull h2,.entry-content .wp-block-cover.alignfull .wp-block-cover-image-text,.entry-content .wp-block-cover.alignfull .wp-block-cover-text,.entry-content .wp-block-cover.alignfull h2{padding:0}}.entry-content .wp-block-gallery{list-style-type:none}.entry-content .wp-block-gallery .blocks-gallery-item{padding:0}.entry-content .wp-block-gallery .blocks-gallery-image:last-child,.entry-content .wp-block-gallery .blocks-gallery-item:last-child{margin-bottom:16px}.entry-content .wp-block-gallery figure{margin:0 !important}.entry-content .wp-block-gallery.is-cropped figure img{height:100%;width:100%}.entry-content .wp-block-gallery .blocks-gallery-item figcaption{overflow:hidden}.entry-content .wp-block-gallery figcaption a{color:#fff}.entry-content .wp-block-audio figcaption,.entry-content .wp-block-gallery .blocks-gallery-image figcaption,.entry-content .wp-block-gallery .blocks-gallery-item figcaption,.entry-content .wp-block-image figcaption,.entry-content .wp-block-video figcaption{margin:0;padding:8px;text-align:center;box-sizing:border-box}.entry-content .wp-block-separator,.entry-content hr{height:2px;margin-top:64px;margin-bottom:32px;max-width:2.25em;text-align:left}.entry-content .wp-block-separator.is-style-wide,.entry-content hr.is-style-wide{margin-left:0;margin-right:0;width:100%;max-width:100%;border-bottom:1px solid rgba(50, 52, 57, .1)}.entry-content .wp-block-separator.is-style-dots,.entry-content hr.is-style-dots{max-width:100%;background-color:inherit;border:inherit;height:inherit;text-align:center}.entry-content .wp-block-separator.is-style-dots:before,.entry-content hr.is-style-dots:before{color:#6f4cad;font-size:64px;letter-spacing:24px;padding-left:24px}.entry-content .wp-block-separator+h1:before,.entry-content .wp-block-separator+h2:before,.entry-content hr+h1:before,.entry-content hr+h2:before{display:none}.entry-content .wp-block-embed-twitter{clear:both}.entry-content .wp-block-table{border-collapse:separate}.entry-content .wp-block-table tr{border-collapse:collapse}.entry-content .wp-block-table td,.entry-content .wp-block-table th{border-color:transparent;border-bottom:1px solid #e3e3e3}.entry-content .wp-block-table.alignwide{width:1500px}.entry-content .wp-block-table.alignfull{width:100%}.entry-content .wp-block-file{font-family:Montserrat,sans-serif}.entry-content .wp-block-file .wp-block-file__button{display:table;border:none;border-radius:5px;background:#6f4cad;font-size:17px;text-decoration:none;font-weight:700;color:#fff;margin-left:0;margin-top:6px}.entry-content .wp-block-file .wp-block-file__button:hover{-webkit-filter:brightness(120%);filter:brightness(120%);cursor:pointer}.entry-content .wp-block-file .wp-block-file__button:focus{-webkit-filter:brightness(120%);filter:brightness(120%);outline:thin dotted;outline-offset:-4px}.entry-content .wp-block-text-columns.alignwide{padding-left:20px;padding-right:20px}.entry-content .wp-block-code{border-radius:0}.entry-content .wp-block-code code{white-space:pre;overflow-x:auto}.entry-content .wp-block-columns.alignfull{padding-left:20px;padding-right:20px}@media(max-width:500px){.entry-content .wp-block-columns{flex-wrap:nowrap}}@media(max-width:1023px){.entry-content .wp-block-columns .wp-block-column>:first-child{margin-top:0}.entry-content .wp-block-columns .wp-block-column>:last-child{margin-bottom:0}.entry-content .wp-block-columns[class*=has-]>:last-child{margin-right:0}.entry-content .wp-block-columns.alignfull,.entry-content .wp-block-columns.alignfull .wp-block-column{padding-left:16px;padding-right:16px}}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta{font-family:Montserrat,sans-serif;font-weight:700}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date{font-weight:400}.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,.entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p{font-size:inherit}.entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date{font-size:8.5px}.entry-content .has-small-font-size{font-size:11.9px}.entry-content .has-normal-font-size{font-size:17px}.entry-content .has-large-font-size{font-size:27.2px;line-height:1.2}.entry-content .has-huge-font-size{font-size:42.5px;line-height:1.2}.site-footer{margin-top:96px;clear:both}.site-footer h3{white-space:nowrap;padding-bottom:8px;margin-bottom:16px;font-weight:600;font-size:21px;border-bottom:1px solid rgba(50, 52, 57, .2)}@media(max-width:1023px){.site-footer h3{font-size:18px}}.site-footer .footer-widgets{padding-top:64px;padding-bottom:32px;display:flex}@media(max-width:1023px){.site-footer .footer-widgets{flex-direction:column-reverse;width:100%}}.site-footer .footer-widgets ul{padding:0;margin:0}.site-footer .footer-widgets ul ul{margin-left:10px}.site-footer .footer-widgets li{list-style-type:none;padding:0;margin:0;line-height:2.2}.site-footer .footer-widgets li a{font-weight:400}.site-footer .footer-widgets li .post-date{font-size:13px;margin-left:8px;opacity:.5}.site-footer .widget{flex:1 1 0;box-sizing:content-box;margin-right:96px;width:100%;max-width:375px}@media(max-width:767px){.site-footer .widget{margin-left:0 !important;margin-right:0 !important;padding-bottom:32px;max-width:100%}}.site-footer .widget:first-of-type{margin-left:0}.site-footer .widget:last-of-type{margin-right:0}.site-footer .widget.credits{flex-grow:2;margin-right:256px;width:inherit}@media(max-width:1023px){.site-footer .widget.credits{padding-top:32px;padding-bottom:0}}.site-footer .widget.credits img{width:280px;max-width:100%}.site-footer .footer-info{padding:8px 0}@media(min-width:1024px){.site-footer .footer-info{text-align:right}}.site-footer .footer-info p{margin-top:0;margin-bottom:0;font-size:12px}.interactive>*,.interactive img{transition-duration:.7s}.interactive.long-delay *{transition-delay:3s}.interactive.fade-in img{opacity:0}.interactive.fade-in.already-see img{opacity:1}.interactive.slide-left img{transform:translateX(-100px)}.interactive.slide-left.visible img{transform:translateX(0)}.interactive.enter-down img{transform:translateY(100%)}.interactive.enter-down.already-see img{transform:translateY(0)}.interactive.exit-right img{opacity:1;transform:translateX(0);transition-duration:1.05s}.interactive.exit-right.already-see img{opacity:0;transform:translateX(300%)}.interactive.parallax{overflow:hidden}.interactive.parallax *{transition:inherit}.parallax figure,figure.parallax{height:100%;overflow:hidden;max-height:70vh}.parallax figure img,figure.parallax img{height:calc(100% + 200px);margin-bottom:-100px !important}.parallax figure figcaption,figure.parallax figcaption{position:absolute;right:20px;left:20px}.screen-reader-text{border:0;clip:rect(1px, 1px, 1px, 1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important}.screen-reader-text.skip-link{display:block}.screen-reader-text:focus{background-color:#16bebb;border-radius:3px;box-shadow:0 0 2px 2px rgba(50, 52, 57, .75);clip:auto !important;-webkit-clip-path:none;clip-path:none;color:#fff;font-size:16px;font-weight:600;height:auto;display:block;right:8px;top:8px;z-index:100000;line-height:1;padding:12px 24px;text-decoration:none;width:auto}#main[tabindex="-1"]:focus{outline:0}abbr{cursor:help}.entry-comments{clear:both;margin-top:48px;padding-top:64px;border-top:1px solid #e3e3e3}.entry-comments>p{font-size:1.3em;margin-bottom:64px;font-weight:300}.entry-comments .navigation a{font-size:12px;font-weight:400;color:#4a4d54}.entry-comments p.comment-notes{font-size:13px;font-style:italic;color:#4a4d54}.entry-comments p.comments-closed,.entry-comments p.no-comments-yet{text-align:center;font-style:italic;font-weight:600}.entry-comments p.logged-in-as{font-weight:600;float:right;font-size:13px;line-height:20px;margin:-30px 0 0}@media(max-width:500px){.entry-comments p.logged-in-as{margin:0}}.site-main ol.commentlist{padding-left:0;padding-right:0}.site-main ol.commentlist ol,.site-main ol.commentlist ul{padding:0;margin-top:16px;margin-bottom:16px;list-style:none}.site-main ol.commentlist li{margin:0;display:block;padding:16px 0 32px}.site-main ol.commentlist li li{padding-left:32px}.site-main ol.commentlist .avatar{line-height:1;float:left;width:64px;height:64px;margin-right:16px;border-radius:50%;overflow:hidden}.site-main ol.commentlist .comment-author,.site-main ol.commentlist .fn{height:38.4px;line-height:42.24px}.site-main ol.commentlist .comment-author a,.site-main ol.commentlist .comment-author b,.site-main ol.commentlist .fn a,.site-main ol.commentlist .fn b{color:#6f4cad;font-weight:600;font-size:23px}.site-main ol.commentlist .comment-metadata{height:25.6px;line-height:1}.site-main ol.commentlist .comment-metadata a{font-size:12px;font-weight:400;color:#7a7e8a}.site-main ol.commentlist .comment-metadata .comment-edit-link{opacity:0;transition:.35s;background-color:#6f4cad;margin-left:16px;padding:4px 12px;border-radius:16px;color:#fff;font-weight:600}.site-main ol.commentlist article:hover .comment-metadata .comment-edit-link{opacity:1}.site-main ol.commentlist .comment-content{background:#fff;border:1px solid #f2f2f2;padding:16px;margin-left:80px;margin-top:8px;max-height:800px;overflow-y:auto}.site-main ol.commentlist .comment-content *{max-width:100%}.site-main ol.commentlist .reply{text-align:right}.site-main ol.commentlist .reply a{color:#e3e3e3;clear:both;padding:4px 12px;border-radius:16px;display:inline-block;line-height:1.2;margin-top:12px;font-size:14px;transition:.35s}.site-main ol.commentlist .reply a:hover{background-color:#6f4cad;color:#fff}#respond{position:relative}#respond>small{display:block;font-size:17px}#respond label{min-width:100px;display:inline-block}#respond form p{margin-bottom:16px}#respond input[type=email],#respond input[type=text],#respond input[type=url]{width:50%}#respond .comment-form-cookies-consent{display:flex;margin:16px 0}#respond .comment-form-cookies-consent label{font-size:14px;line-height:1;margin-left:8px}#respond .form-submit{margin-top:16px;text-align:right}#respond .form-submit input{font-size:16px;padding:10px 16px}.search-form{display:flex;max-width:444px;margin:0 auto;border-radius:4px;overflow:hidden;position:relative}.search-form input{height:48px}.search-form label{width:100%}.search-form [type=search]{width:100%;margin:0;padding:8px 16px;font-size:15px}.search-form [type=submit]{width:80px;margin:0;border-radius:0;font-size:0}.search-form:before{content:"";font-family:Material Icons;color:#fff;font-size:28px;display:block;width:24px;height:48px;line-height:48px;position:absolute;z-index:2;right:26px}#primary .search-form{margin:64px auto}body.error404 h1{font-size:110px}body.archive .site-main .article-container:nth-child(2n+2),body.search-results .site-main .article-container:nth-child(2n+2){position:relative}body.archive .site-main .article-container:nth-child(2n+2):before,body.search-results .site-main .article-container:nth-child(2n+2):before{display:block;position:absolute;z-index:1;transform:rotate(-1deg);top:0;bottom:0;left:-100px;right:-100px;content:"";background-color:rgba(50, 52, 57, .05)}@media(max-width:1023px){body.archive .site-main .article-container:first-of-type .entry-image,body.search-results .site-main .article-container:first-of-type .entry-image{display:none !important}}body.archive article,body.search-results article{display:flex;margin:0 auto;padding:64px 0;min-height:100px;position:relative;z-index:2}@media(max-width:1023px){body.archive article,body.search-results article{flex-direction:column;padding:48px 20px}}body.archive article .article-wrapper,body.search-results article .article-wrapper{max-width:100%}body.archive article .entry-image,body.search-results article .entry-image{min-width:280px;max-width:280px;margin-right:48px}@media(max-width:1023px){body.archive article .entry-image,body.search-results article .entry-image{width:calc(100% + 100px);min-width:inherit;max-width:calc(100% + 100px);margin:-48px -50px 20px}body.archive article .entry-image img,body.search-results article .entry-image img{transform:rotate(-1deg)}}body.archive article .entry-image+.article-wrapper,body.search-results article .entry-image+.article-wrapper{min-width:calc(100% - 328px)}@media(max-width:1023px){body.archive article .entry-image+.article-wrapper,body.search-results article .entry-image+.article-wrapper{width:100%}}body.archive article .entry-image img,body.search-results article .entry-image img{height:100%;max-height:420px;-o-object-fit:cover;object-fit:cover}body.archive article.product .entry-image img,body.search-results article.product .entry-image img{-o-object-fit:contain;object-fit:contain}body.archive article .entry-header,body.search-results article .entry-header{padding:0}body.archive article .entry-header .entry-title,body.search-results article .entry-header .entry-title{width:100%;font-size:28px;margin:0 0 8px;padding:0;text-align:left}@media(max-width:1023px){body.archive article .entry-header .entry-title,body.search-results article .entry-header .entry-title{font-size:24px}}body.archive article .entry-header .breadcrumbs,body.search-results article .entry-header .breadcrumbs{margin-top:0;text-align:left}body.archive article .entry-content,body.search-results article .entry-content{width:100%}body.archive article .entry-content p,body.search-results article .entry-content p{margin:0;padding:0}body.archive article .entry-footer .post-meta,body.search-results article .entry-footer .post-meta{padding:16px 0 0}body.archive article .entry-footer .meta-wrapper,body.search-results article .entry-footer .meta-wrapper{margin:0;padding:0}body.archive article .entry-footer .meta-wrapper p,body.search-results article .entry-footer .meta-wrapper p{font-size:12px;text-transform:uppercase;margin-left:8px}body.archive article .entry-footer .meta-wrapper p:first-of-type,body.search-results article .entry-footer .meta-wrapper p:first-of-type{margin-left:0}.bypostauthor{background-color:transparent}.article-author .avatar{float:left;max-width:64px;margin-right:32px}@media(max-width:1260px){.article-author .avatar{max-width:48px;margin-right:20px}}.article-author .avatar img{margin:0;border-radius:50%;overflow:hidden;vertical-align:middle}.article-author .author-details{display:table}.article-author .author-description p{font-size:13px;margin:8px 0;line-height:1.8}body.woocommerce .woocommerce-breadcrumb{margin:0;line-height:1;padding-bottom:32px}@media(max-width:1023px){body.woocommerce .woocommerce-breadcrumb{padding-bottom:16px}}body.woocommerce .woocommerce-result-count{line-height:48px}@media(max-width:1023px){body.woocommerce .woocommerce-ordering a,body.woocommerce .woocommerce-ordering option,body.woocommerce .woocommerce-ordering select,body.woocommerce .woocommerce-ordering span,body.woocommerce .woocommerce-result-count{font-size:13px}}body.woocommerce .product_meta{margin-top:16px}body.woocommerce .product_meta>span{display:block;font-weight:600;line-height:1.7}body.woocommerce .product_meta>span a,body.woocommerce .product_meta>span span{font-weight:400}body.woocommerce .pswp__button{background-color:transparent;min-width:inherit;padding:0;border-radius:0}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#026c7c}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#028295}.woocommerce button.button.alt.disabled{background-color:#62666f}.woocommerce button.button.alt.disabled:hover{background-color:#4a4d54}.select2-selection__rendered{line-height:48px !important}.select2-container .select2-selection--single,.select2-selection__arrow{height:48px !important}body.woocommerce ul.products{padding-top:16px}body.woocommerce ul.products li.product{padding-bottom:16px;background-color:#fff;display:flex;flex-direction:column}body.woocommerce ul.products li.product a img{width:100%;height:auto;max-height:220px;-o-object-fit:contain;object-fit:contain;margin:0 auto 24px;padding:0;box-sizing:border-box}body.woocommerce ul.products li.product .woocommerce-loop-product__title{font-weight:600;padding:0 0 6px;margin:0;font-size:17px;text-align:center}body.woocommerce ul.products li.product a.button{font-size:10px;border:1px solid #e3e3e3;background-color:#fff;align-content:center;margin:auto}body.woocommerce ul.products li.product .added_to_cart{position:absolute;bottom:15px;right:15px;height:30px;width:30px;display:block;text-align:center;background:#6f4cad;color:#fff;padding:0;margin:0;font-size:0;border-radius:50%}body.woocommerce ul.products li.product .added_to_cart:before{display:block;font-family:Material Icons;content:"";font-weight:500;font-size:24px;line-height:30px;opacity:.99}body.woocommerce ul.products li.product p.price,body.woocommerce ul.products li.product span.price{color:#4a4d54;line-height:2;font-size:12px;display:block;text-align:center}body.woocommerce div.product img.wp-post-image{max-height:50vh;margin:auto;-o-object-fit:contain;object-fit:contain}@media(max-width:1023px){body.woocommerce div.product .gallery__image{height:300px;margin:auto}body.woocommerce div.product .gallery__image img{-o-object-fit:contain;object-fit:contain;height:100%}}body.woocommerce div.product .summary.entry-summary{padding-left:16px;box-sizing:border-box}@media(max-width:1023px){body.woocommerce div.product .summary.entry-summary{padding-left:0}}body.woocommerce div.product .product_title.entry-title{margin:0;font-size:38px;text-align:left}@media(max-width:1023px){body.woocommerce div.product .product_title.entry-title{font-size:30px}}body.woocommerce div.product div.images .flex-control-thumbs li{padding:0}body.woocommerce div.product .woocommerce-variation.single_variation{margin-bottom:1em}body.woocommerce div.product form.cart{margin-top:16px}body.woocommerce div.product form.cart div.quantity{display:flex;margin:0}body.woocommerce div.product form.cart div.quantity input{margin:0;border:1px solid #e3e3e3;border-radius:4px 0 0 4px}body.woocommerce div.product form.cart div.quantity .qty{font-size:18px}body.woocommerce div.product form.cart div.quantity+button{border-radius:0;height:49px}body.woocommerce div.product p.price,body.woocommerce div.product span.price{color:#026c7c}body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper{margin-left:-20px;margin-right:-20px}body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a{font-size:16px}@media(max-width:1023px){body.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a{font-size:14px}}body.woocommerce div.product .woocommerce-tabs .entry-content>*{width:100%}body.woocommerce div.product .woocommerce-tabs .entry-content table{width:calc(100% - 40px)}body.woocommerce div.product table.woocommerce-product-attributes{margin-left:20px;margin-right:20px}body.woocommerce div.product table.woocommerce-product-attributes td{padding-left:20px}body.woocommerce div.product table.woocommerce-product-attributes tr:nth-child(2n) th{background-color:#5d4091}body.woocommerce div.product .related.products{padding:32px 0 16px}body.woocommerce div.product .related.products ul.products li.product .woocommerce-loop-product__title{font-size:15px}@media(max-width:1023px){body.woocommerce div.product .related.products ul.products li.product .woocommerce-loop-product__title{font-size:14px}}#secondary ul.product-categories ul{margin:0;padding-left:32px}#secondary ul.product-categories li{line-height:42px;margin:0;border-top:1px solid rgba(50, 52, 57, .05)}#secondary ul.product-categories>li:first-child{border:0}#secondary ul.product-categories a{color:#4a4d54;font-weight:500}#secondary ul.product-categories .current-cat-parent>a,#secondary ul.product-categories .current-cat>a{font-weight:600}#secondary ul.product-categories .current-cat>a{-webkit-filter:brightness(115%);filter:brightness(115%)}#secondary ul.product-categories .toggle i{opacity:.5;transition:.35s;vertical-align:middle;margin-top:-2px;margin-right:8px}#secondary ul.product-categories .cat-parent.active>a i{opacity:1;transform:rotate(90deg);-webkit-filter:brightness(115%);filter:brightness(115%)}#secondary ul.product_list_widget a{display:block}#secondary ul.product_list_widget li{height:48px;border-top:1px solid rgba(50, 52, 57, .05);font-size:11px;line-height:1}#secondary ul.product_list_widget li:first-child{border:0}#secondary ul.product_list_widget li span{display:inline-block}#secondary ul.product_list_widget li span.woocommerce-Price-amount{color:#026c7c}#secondary ul.product_list_widget li .product-title{color:#4a4d54;font-weight:600;padding-top:8px;line-height:1.3;display:block}#secondary ul.product_list_widget li img{width:48px;height:48px;-o-object-fit:contain;object-fit:contain;margin-left:8px}body.compensate-for-scrollbar{overflow:hidden;margin:0 !important}.fancybox-toolbar .fancybox-button{background-color:transparent}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute !important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47, 0, .74, .71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22, .61, .36, 1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5, 0, .14, 1);animation-timing-function:cubic-bezier(.5, 0, .14, 1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30, 30, 30, .6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#4a4d54;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0}.fancybox-caption{background:linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:fancybox-rotate 1s linear infinite;animation:fancybox-rotate 1s linear infinite;background:transparent;border:4px solid;border-color:#888 #888 #fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@-webkit-keyframes fancybox-rotate{to{transform:rotate(1turn)}}@keyframes fancybox-rotate{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0, 0, .25, 1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%, 0, 0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%, 0, 0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19, 1, .22, 1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5, 1.5, 1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5, .5, .5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0, 0, 0) translate3d(-100%, 0, 0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0, 0, 0) translate3d(100%, 0, 0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%, 0, 0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%, 0, 0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0, 0, 0, .3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0, 0, 0, .1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25, .46, .45, .94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}.fancybox-counter{font-size:80%;opacity:.8}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translateZ(0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}@media(max-width:1023px){.site-main .wp-block-gallery{padding-left:0;padding-right:0}}.slider-multi,.slider-single{display:block}.slick-next,.slick-prev{position:absolute;display:block;height:20px;width:20px;line-height:0;font-size:0;cursor:pointer;background:transparent;color:transparent;top:50%;transform:translateY(-50%);padding:0;border:none;outline:none}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{outline:none}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-size:20px;line-height:1;color:#fff;opacity:.75}.slick-prev{left:-25px}.slick-prev:before{content:"<"}.slick-next{right:-25px}.slick-next:before{content:">"}.slick-slide{padding:4px}.slick-slide img{width:100%;height:auto}.slick-dots{display:flex;justify-content:center;flex-wrap:wrap;margin:0;padding:8px 0;list-style-type:none}.slick-dots li{margin:0 8px}.slick-dots button{display:block;width:8px;height:8px;margin:0;padding:0;min-width:inherit;outline:inherit !important;border:none;border-radius:100%;background-color:#e3e3e3;text-indent:-9999px}.slick-dots button:focus,.slick-dots button:hover{width:12px;height:12px;margin-top:-2px;background-color:#cacaca;-webkit-filter:inherit;filter:inherit}.slick-dots li.slick-active button{background-color:#6f4cad;width:16px;height:16px;margin-top:-4px}#masonry-wrapper{position:relative;transition-duration:.8s;transition-delay:.2s;padding:0}.masonry.navigation{text-align:center;position:absolute;bottom:0;width:100%}.masonry.navigation a{flex-basis:100%;color:#e3e3e3;font-weight:300;opacity:0}.grid__col-sizer,.grid__item{width:31.33333%}@media(max-width:1260px){.grid__col-sizer,.grid__item{width:48%}}@media(max-width:767px){.grid__col-sizer,.grid__item{width:100%}}.grid__gutter-sizer{width:3%}@media(max-width:1260px){.grid__gutter-sizer{width:4%}}@media(max-width:767px){.grid__gutter-sizer{width:0}}.grid__item.big-block,.grid__item.sticky{width:65.66667%}@media(max-width:1260px){.grid__item.big-block,.grid__item.sticky{width:100%}}.grid__item.full-block{width:100%}.masonry-container article.grid__item{max-width:100%;box-sizing:border-box;display:flex;flex-direction:column;border-radius:3px;background-color:#fff;box-shadow:0 2px 12px -6px rgba(50, 52, 57, .5);padding:0;margin:0 0 32px}@media(max-width:767px){.masonry-container article.grid__item{padding-right:0}}.masonry-container article.grid__item .article-wrapper{width:auto;margin-left:20px;margin-right:20px;padding-top:12px;padding-bottom:32px}.masonry-container article.grid__item .entry-image{display:flex;width:100%;min-width:inherit;max-width:inherit;margin:0}.masonry-container article.grid__item .entry-image img{max-height:600px;transform:inherit}.masonry-container article.grid__item .entry-header{padding-top:8px;padding-bottom:8px;margin:0}@media(max-width:940px){.masonry-container article.grid__item .entry-header{padding-left:0;padding-right:0}}.masonry-container article.grid__item .breadcrumbs{text-align:left}.masonry-container article.grid__item h2.entry-title{font-size:19px;padding:0;margin:0;text-align:left;font-weight:600}.masonry-container article.grid__item p{font-size:15px;line-height:1.6;margin:0;padding:0}.page-load-status{display:none;padding-top:32px;text-align:center}i.social-ico.email{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.print{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.facebook{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.twitter{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.youtube{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.linkedin{background-image:url('data:image/svg+xml;utf8,')}i.social-ico.www{background-image:url('data:image/svg+xml;utf8,')}i.social-ico{display:inline-block;width:36px;height:36px;background:no-repeat 50%;background-size:36px;cursor:pointer;transition:.35s;padding:0;margin:8px 18px 8px 0}i.social-ico:before,i.social-ico:hover{-webkit-filter:brightness(1.2);filter:brightness(1.2)}i.social-ico:before{position:absolute}i.social-ico.small{width:24px;height:24px;background-size:24px;margin:8px 12px 8px 0}.share-buttons i{-webkit-filter:invert(.2);filter:invert(.2)}.arrow-next,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next{background-image:url('data:image/svg+xml;utf8, ')}.arrow-prev,.fancybox-navigation .fancybox-button--arrow_left,.slider button.slick-prev{background-image:url('data:image/svg+xml;utf8, ')}.arrow,.fancybox-navigation .fancybox-button--arrow_left,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next,.slider button.slick-prev{background-color:transparent;border-radius:50%;width:60px;height:60px;margin:0;padding:0;min-width:inherit;background-size:15px;background-repeat:no-repeat;background-position:50%;border:0}.arrow:hover,.fancybox-navigation .fancybox-button--arrow_left:hover,.fancybox-navigation .fancybox-button--arrow_right:hover,.slider button.slick-next:hover,.slider button.slick-prev:hover{background-color:rgba(74, 77, 84, .1);-webkit-filter:inherit;filter:inherit}@media(max-width:1023px){.arrow,.fancybox-navigation .fancybox-button--arrow_left,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next,.slider button.slick-prev{padding:6px;width:24px;height:24px;background-size:6px}}.arrow-next,.fancybox-navigation .fancybox-button--arrow_right,.slider button.slick-next{margin-right:30px}.arrow-prev,.fancybox-navigation .fancybox-button--arrow_left,.slider button.slick-prev{margin-left:30px}.slick-next:before,.slick-prev:before{display:none !important}.fancybox-navigation svg{display:none}.slider button.slick-prev{margin-left:-60px}@media(max-width:1023px){.slider button.slick-prev{margin-left:30px}}.slider button.slick-next{margin-right:-60px}@media(max-width:1023px){.slider button.slick-next{margin-right:30px}}.fancybox-navigation .fancybox-button--arrow_left:disabled,.fancybox-navigation .fancybox-button--arrow_right:disabled{opacity:.5}iframe{width:100%;max-width:100%}::-moz-selection{background-color:rgba(22, 190, 187, .5);color:#fff}::selection{background-color:rgba(22, 190, 187, .5);color:#fff}pre{width:100%;padding:32px 64px;background:#f0f0f0;white-space:pre-wrap;box-sizing:border-box}blockquote,pre{border:1px solid #e3e3e3}blockquote{min-height:100px;padding-top:30px;padding-bottom:30px;padding-left:90px !important;padding-right:90px !important;margin:32px 0;position:relative;background:#fff}blockquote p{margin-bottom:24px}blockquote:before{font-family:Material Icons;content:"";position:absolute;top:-4px;left:16px;font-size:60px;color:#16bebb}code{background-color:#e3e3e3;padding:4px 6px;font-weight:600}@media(max-width:940px){.site-main .entry-content blockquote,.site-main .entry-content pre,.site-main .entry-content table{padding-left:20px;padding-right:20px}.site-main .entry-content table{width:calc(100% - 40px)}}.post-tags{list-style:none}.post-tags h3{display:inline;vertical-align:middle}.post-tags ul{display:inline;margin:0;padding-left:20px}.post-tags li.post-tag{margin:0 16px 10px 0;padding:0 10px 0 25px}.post-tag{background:#6f4cad;border-radius:3px 0 0 3px;display:inline-block;height:22px;line-height:18px;position:relative}.post-tag a{font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:#fff;text-decoration:none !important}.post-tag,.post-tag:after,.post-tag:before,.post-tag a{transition:.2s}.post-tag:before{background:#fff;border-radius:10px;box-shadow:inset 0 1px hsla(0, 0%, 98.8%, .25);content:"";height:6px;left:10px;position:absolute;width:6px;top:8px}.post-tag:after{background:transparent;border-bottom:11px solid transparent;border-left:10px solid #6f4cad;border-top:11px solid transparent;content:"";position:absolute;right:-10px;top:0}.post-tag:hover{background-color:#6f4cad}.post-tag:hover a{color:#fff}.post-tag:hover:after{border-left-color:#6f4cad}hr{clear:both}::-webkit-scrollbar{position:relative;z-index:100000;width:12px;height:12px}@media(max-width:767px){::-webkit-scrollbar{width:6px}}::-webkit-scrollbar-track{border-radius:0}::-webkit-scrollbar-track,::-webkit-scrollbar-track-piece{background-color:#e3e3e3;-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, .1)}::-webkit-scrollbar-thumb,::-webkit-scrollbar-thumb:horizontal,::-webkit-scrollbar-thumb:vertical{background-color:#16bebb;border-radius:1px;-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, .15)}::-webkit-scrollbar-button:end:increment,::-webkit-scrollbar-button:start:decrement{height:0;width:0;display:block;background-color:#e3e3e3}::-webkit-scrollbar-button{width:0;height:0}::-webkit-scrollbar-corner{background-color:#fdfdfd}@media print{@page{margin:1.8cm 1.4cm 2.7cm}#content,#main,body{background:#fff;color:#000}#masthead{display:none}a,a:link,a:visited{color:#000;text-decoration:none}#directorynav,#globalfooter,#globalheader,#tabs,.hide,.noprint{display:none}.site-footer .footer-widgets{-moz-column-break-inside:avoid;break-inside:avoid}.site-footer .footer-widgets>*{display:none}.site-footer .footer-widgets>:first-of-type{display:block}.interactive *{transition-duration:0ms !important;transition-delay:0ms !important}.interactive.parallax img{height:100% !important;margin:0 !important}} /*# sourceMappingURL=style.css.map */ From a22740174b8e2abf154126b2bb0a50b50ced4b71 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Thu, 26 Aug 2021 05:11:48 +0200 Subject: [PATCH 11/16] fix for unclickable hero buttons --- assets/src/scss/components/extras.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/src/scss/components/extras.scss b/assets/src/scss/components/extras.scss index 2fb21d47..07c9030e 100644 --- a/assets/src/scss/components/extras.scss +++ b/assets/src/scss/components/extras.scss @@ -258,6 +258,7 @@ body .hero { padding-left: $size__padding-resp; padding-right: $size__padding-resp; margin: auto; + z-index: 2; .page-title { max-width: $size__site-width * .75; From 098f74f13a667f22ea5adf7f4c3ff11528dac473 Mon Sep 17 00:00:00 2001 From: Erik Yo Date: Mon, 30 Aug 2021 10:48:43 +0200 Subject: [PATCH 12/16] switch to custom properties --- 404.php | 2 +- archive.php | 2 +- assets/dist/css/atf.css | 2 +- assets/dist/css/editor.css | 239 +++++--- assets/dist/js/scripts.js | 247 +++++++- assets/src/js/user/menu.js | 1 + assets/src/scss/components/accessibility.scss | 15 +- assets/src/scss/components/animations.scss | 4 +- assets/src/scss/components/blocks.scss | 482 ++++------------ assets/src/scss/components/comments.scss | 114 ++-- .../src/scss/components/content-header.scss | 51 +- assets/src/scss/components/content.scss | 130 ++++- assets/src/scss/components/extras.scss | 136 ++--- assets/src/scss/components/footer.scss | 82 ++- assets/src/scss/components/hamburger.scss | 58 +- assets/src/scss/components/header.scss | 197 +++---- assets/src/scss/components/navigation.scss | 149 +++-- assets/src/scss/components/search-form.scss | 15 +- assets/src/scss/components/sidebar.scss | 30 +- assets/src/scss/editor.scss | 21 +- assets/src/scss/main/base.scss | 5 +- assets/src/scss/main/buttons.scss | 91 +-- assets/src/scss/main/colors.scss | 5 +- assets/src/scss/main/fonts.scss | 2 +- assets/src/scss/main/helpers.scss | 2 +- assets/src/scss/main/images.scss | 26 +- assets/src/scss/main/inputs.scss | 82 ++- assets/src/scss/main/scrollbar.scss | 59 +- assets/src/scss/main/table.scss | 6 +- assets/src/scss/main/typography-extras.scss | 155 +++-- assets/src/scss/main/typography.scss | 72 ++- assets/src/scss/pages/archive.scss | 35 +- assets/src/scss/pages/author.scss | 14 +- assets/src/scss/pages/homepage.scss | 44 +- assets/src/scss/utils/icons.scss | 93 +-- assets/src/scss/utils/media-queries.scss | 5 +- assets/src/scss/utils/vars.scss | 60 +- assets/src/scss/vendor/fancybox.scss | 2 +- assets/src/scss/vendor/masonry.scss | 36 +- assets/src/scss/vendor/slick.scss | 23 +- assets/src/scss/woo/woo-base.scss | 6 +- assets/src/scss/woo/woo-common.scss | 29 +- assets/src/scss/woo/woo-pages.scss | 49 +- assets/src/scss/woo/woo-sidebar.scss | 30 +- category.php | 2 +- functions.php | 44 +- inc/customizer.php | 541 +++++++++++++++--- inc/enqueue-scripts.php | 181 ++---- inc/template-functions.php | 8 +- style.css | 2 +- template-parts/content/content-none.php | 4 +- template-parts/content/content-page.php | 2 +- template-parts/content/content-single.php | 2 +- template-parts/content/content.php | 2 +- template-parts/footer/footer.php | 4 +- theme.json | 37 ++ 56 files changed, 2132 insertions(+), 1605 deletions(-) create mode 100644 theme.json diff --git a/404.php b/404.php index ea041d28..7126d510 100644 --- a/404.php +++ b/404.php @@ -11,7 +11,7 @@
-
+

diff --git a/archive.php b/archive.php index ef68852f..abc3c1b6 100644 --- a/archive.php +++ b/archive.php @@ -12,7 +12,7 @@ -