/* =================================================================== 

  Theme Name: StyleShout Theme 5.0.0
  Theme URI: https://www.styleshout.com
  Description: Site Theme for StyleShout v5.0.0
  Version: 5.0.0
  Author: Erwin Aligam
  Author URI: https://www.styleshout.com

* -------------------------------------------------------------------- 
*
* TOC:
* # SETTINGS
* # PrismJS
* # NORMALIZE
* # BASE SETUP
* # GRID
* # UTILITY CLASSES
* # TYPOGRAPHY
* # PRELOADER
* # FORM
* # BUTTONS
* # TABLE
* # PROJECT-WIDE SHARED STYLES 
* # PAGEWRAP
* # HEADER
* # SEARCH BLOCK
* # CONTENT
* # MID-AD
* # SITE FOOTER
*
* ==================================================================== */


/* ===================================================================
 *  # SETTINGS - (_settings.scss)
 *
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts - (_settings.scss)
 * ------------------------------------------------------------------- */

/* @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap"); */

:root {
    --font-1    : "Inter", Arial, sans-serif;
    --font-2    : "Manrope", Arial, sans-serif;

    /* monospace
    */
    --font-mono : Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors - (_settings.scss)
 * ------------------------------------------------------------------- */
:root {

    /* color-1(#2364AA)
     * color-2(#EE6352)
     * color-3(#FABC3C)
     */
    --color-1                      : hsla(211, 66%, 40%, 1);
    --color-2                      : hsla(7, 80%, 64%, 1);
    --color-3                      : hsla(40, 95%, 61%, 1);

    /* theme color variations
     */
    --color-1-lighter              : hsla(211, 66%, 60%, 1);
    --color-1-light                : hsla(211, 66%, 50%, 1);
    --color-1-dark                 : hsla(211, 66%, 30%, 1);
    --color-1-darker               : hsla(211, 66%, 20%, 1);

    --color-2-lighter              : hsla(7, 82%, 83%, 1);
    --color-2-light                : hsla(7, 82%, 73%, 1);
    --color-2-dark                 : hsla(7, 82%, 53%, 1);
    --color-2-darker               : hsla(7, 82%, 43%, 1);

    --color-3-lighter              : hsla(50, 100%, 91%, 1);
    --color-3-light                : hsla(50, 100%, 81%, 1);
    --color-3-dark                 : hsla(50, 100%, 61%, 1);
    --color-3-darker               : hsla(50, 100%, 51%, 1);

    /* feedback colors
     * color-error(#ffd1d2), color-success(#c8e675), 
     * color-info(#d7ecfb), color-notice(#fff099)
     */
    --color-error                  : hsla(359, 100%, 91%, 1);
    --color-success                : hsla(76, 69%, 68%, 1);
    --color-info                   : hsla(205, 82%, 91%, 1);
    --color-notice                 : hsla(51, 100%, 80%, 1);
    --color-error-content          : hsla(359, 50%, 50%, 1);
    --color-success-content        : hsla(76, 29%, 28%, 1);
    --color-info-content           : hsla(205, 32%, 31%, 1);
    --color-notice-content         : hsla(51, 30%, 30%, 1);

    /* grays, neutrals
     */
    --color-black                  : #000000;
    --color-gray-3                 : #cececf;
    --color-gray-2                 : #dededf;
    --color-gray-1                 : #efefef;
    --color-white                  : #ffffff;

    /* text
     */
    --color-text-dark              : #13161b;
    --color-text                   : #484a4c;
    --color-text-light             : #8c8d8f;
    --color-placeholder            : #8c8d8f;

    /* buttons
     */
    --color-btn                    : var(--color-gray-1);
    --color-btn-text               : var(--color-black);
    --color-btn-hover              : var(--color-gray-2);
    --color-btn-hover-text         : var(--color-black);
    --color-btn-primary            : var(--color-1);
    --color-btn-primary-text       : var(--color-white);
    --color-btn-primary-hover      : var(--color-1-dark);
    --color-btn-primary-hover-text : var(--color-white);
    --color-btn-stroke             : var(--color-black);
    --color-btn-stroke-text        : var(--color-black);
    --color-btn-stroke-hover       : var(--color-black);
    --color-btn-stroke-hover-text  : var(--color-white);

    /* preloader
     */
    --color-preloader-bg           : white;
    --color-loader                 : black;
    --color-loader-light           : rgba(255, 255, 255, 0.05);

    /* others
     */
    --color-body                   : white;
    --color-header                 : var(--color-text-dark);
    --color-border                 : rgba(0, 0, 0, .08);
    --border-radius                : 5px;
}

/* ------------------------------------------------------------------- 
 * ## spacing and typescale - (_settings.scss)
 * ------------------------------------------------------------------- */
:root {

    /* spacing
     * base font size: 18px 
     * vertical space unit : 30px
     */
    --base-size        : 62.5%;
    --multiplier       : 1;
    --base-font-size   : calc(1.8rem * var(--multiplier));
    --space            : calc(3rem * var(--multiplier));

    /* vertical spacing 
     */
    --vspace-0_125     : calc(0.125 * var(--space));
    --vspace-0_25      : calc(0.25 * var(--space));
    --vspace-0_375     : calc(0.375 * var(--space));
    --vspace-0_5       : calc(0.5 * var(--space));
    --vspace-0_625     : calc(0.625 * var(--space));
    --vspace-0_75      : calc(0.75 * var(--space));
    --vspace-0_875     : calc(0.875 * var(--space));
    --vspace-1         : calc(var(--space));
    --vspace-1_25      : calc(1.25 * var(--space));
    --vspace-1_5       : calc(1.5 * var(--space));
    --vspace-1_75      : calc(1.75 * var(--space));
    --vspace-2         : calc(2 * var(--space));
    --vspace-2_5       : calc(2.5 * var(--space));
    --vspace-3         : calc(3 * var(--space));
    --vspace-3_5       : calc(3.5 * var(--space));
    --vspace-4         : calc(4 * var(--space));
    --vspace-4_5       : calc(4.5 * var(--space));
    --vspace-5         : calc(5 * var(--space));

    /* type scale
     * ratio 1         :2 | base: 18px
     * -------------------------------------------------------
     *
     * --text-display-3 = (77.40px)
     * --text-display-2 = (64.50px)
     * --text-display-1 = (53.75px)
     * --text-xxxl      = (44.79px)
     * --text-xxl       = (37.32px)
     * --text-xl        = (31.10px)
     * --text-lg        = (25.92px)
     * --text-md        = (21.60px)
     * --text-size      = (18.00px) BASE
     * --text-sm        = (15.00px)
     * --text-xs        = (12.50px)
     *
     * ---------------------------------------------------------
     */
    --text-scale-ratio : 1.2;
    --text-size        : var(--base-font-size);
    --text-xs          : calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm          : calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md          : calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg          : calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl          : calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl         : calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl        : calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1   : calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2   : calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3   : calc(var(--text-display-2) * var(--text-scale-ratio));

    /* default button height
     */
    --vspace-btn       : var(--vspace-2);
}

/* on mobile devices below 600px, change the value of '--multiplier' 
 * to adjust the values of base font size and vertical space unit.
 * -----------------------------------------------------------------
 * 2.8rem = 3rem * .9333 (vertical spacing)
 * 1.680rem = 1.8rem * .9333 (base font size)
 * ----------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    :root {
        --multiplier : .9333;
    }
}

/* ------------------------------------------------------------------- 
 * ## grid variables - (_settings.scss)
 * ------------------------------------------------------------------- */
:root {

    /* widths for rows and containers
     */
    --width-full     : 100%;
    --width-max      : 1040px;
    --width-wide     : 1400px;
    --width-wider    : 1600px;
    --width-widest   : 1800px;
    --width-narrow   : 1000px;
    --width-narrower : 800px;
    --width-grid-max : var(--width-max);

    /* gutter
     */
    --gutter         : 2.4rem;
}

/* on medium screen devices
 */
@media screen and (max-width: 1200px) {
    :root {
        --gutter : 1.8rem;
    }
}

/* on mobile devices
 */
@media screen and (max-width: 600px) {
    :root {
        --gutter : 1rem;
    }
}

/* ===================================================================
 * # PrismJS 1.20.0
 *   https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+markup-templating+php
 *   
 *   prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 *   Based on https://github.com/chriskempson/tomorrow-theme
 *   @author Rose Pritchard
 * ------------------------------------------------------------------- */
code[class*="language-"],
pre[class*="language-"] {
    color           : #ccc;
    background      : none;
    font-family     : var(--font-mono);
    font-size       : calc(var(--text-size) * 0.9444);
    text-align      : left;
    white-space     : pre;
    word-spacing    : normal;
    word-break      : normal;
    word-wrap       : normal;
    line-height     : var(--vspace-1);
    -moz-tab-size   : 4;
    -o-tab-size     : 4;
    tab-size        : 4;
    -webkit-hyphens : none;
    -moz-hyphens    : none;
    -ms-hyphens     : none;
    hyphens         : none;
}

/* Code blocks */
pre[class*="language-"] {
    padding  : var(--vspace-1_5) var(--vspace-1);
    margin   : 0;
    overflow : auto;
}

:not(pre)>code[class*="language-"],
pre[class*="language-"] {
    background : #2d2d2d;
}

/* Inline code */
:not(pre)>code[class*="language-"] {
    padding     : .1em;
    white-space : normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color : #999;
}

.token.punctuation {
    color : #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
    color : #e2777a;
}

.token.function-name {
    color : #6196cc;
}

.token.boolean,
.token.number,
.token.function {
    color : #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
    color : #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
    color : #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
    color : #7ec699;
}

.token.operator,
.token.entity,
.token.url {
    color : #67cdcc;
}

.token.important,
.token.bold {
    font-weight : bold;
}

.token.italic {
    font-style : italic;
}

.token.entity {
    cursor : help;
}

.token.inserted {
    color : green;
}


/* ====================================================================
 * # NORMALIZE - (_normalize.scss)
 *
 *
 * --------------------------------------------------------------------
 * normalize.css v8.0.1 | MIT License |
 * github.com/necolas/normalize.css
 * -------------------------------------------------------------------- */
html {
    line-height              : 1.15;
    -webkit-text-size-adjust : 100%;
}

body {
    margin : 0;
}

main {
    display : block;
}

h1 {
    font-size : 2em;
    margin    : 0.67em 0;
}

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;
    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 : -0.25em;
}

sup {
    top : -0.5em;
}

img {
    border-style : none;
}

button,
input,
optgroup,
select,
textarea {
    font-family : inherit;
    font-size   : 100%;
    line-height : 1.15;
    margin      : 0;
}

button,
input {
    overflow : visible;
}

button,
select {
    text-transform : none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance : button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style : none;
    padding      : 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline : 1px dotted ButtonText;
}

fieldset {
    padding : 0.35em 0.75em 0.625em;
}

legend {
    box-sizing  : border-box;
    color       : inherit;
    display     : table;
    max-width   : 100%;
    padding     : 0;
    white-space : normal;
}

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;
}

::-webkit-file-upload-button {
    -webkit-appearance : button;
    font               : inherit;
}

details {
    display : block;
}

summary {
    display : list-item;
}

template {
    display : none;
}

[hidden] {
    display : none;
}


/* ===================================================================
 * # BASE SETUP - (_base.scss)
 *
 *
 * ------------------------------------------------------------------- */
html {
    font-size  : var(--base-size);
    box-sizing : border-box;
}

*,
*::before,
*::after {
    box-sizing : inherit;
}

html,
body {
    height : 100%;
}

body {
    background-color            : var(--color-body);
    -webkit-overflow-scrolling  : touch;
    -webkit-text-size-adjust    : 100%;
    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);
    -webkit-font-smoothing      : antialiased;
    -moz-osx-font-smoothing     : grayscale;
}

p {
    font-size      : inherit;
    text-rendering : optimizeLegibility;
}

a {
    text-decoration : none;
}

svg,
img,
video {
    max-width : 100%;
    height    : auto;
}

pre {
    overflow : auto;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin  : 0;
    padding : 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
}


/* ===================================================================
 * # GRID v4.0.0 - (_grid.scss)
 *
 *
 *   -----------------------------------------------------------------
 * - Grid breakpoints are based on MAXIMUM WIDTH media queries, 
 *   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
 * - Grid columns without a specified width will automatically layout 
 *   as equal width columns.
 *
 * - BLOCK GRID columns(columns inside BLOCK GRID containers) are 
 *   equally-sized columns define at parent/row level. 
 *   A BLOCK GRID container's class attribute value begins with "block-".
 *
 * ------------------------------------------------------------------- */

/* row 
 */
.row {
    width     : 92%;
    max-width : var(--width-grid-max);
    margin    : 0 auto;
    display   : flex;
    flex-flow : row wrap;
}

.row .row {
    width        : auto;
    max-width    : none;
    margin-left  : calc(var(--gutter) * -1);
    margin-right : calc(var(--gutter) * -1);
}

/* column
 */
.column {
    display : block;
    flex    : 1 1 0%;
    padding : 0 var(--gutter);
}

.collapse>.column,
.column.collapse {
    padding : 0;
}

/* row utility classes
 */
.row.row-wrap {
    flex-wrap : wrap;
}

.row.row-nowrap {
    flex-wrap : nowrap;
}

.row.row-y-top {
    align-items : flex-start;
}

.row.row-y-bottom {
    align-items : flex-end;
}

.row.row-y-center {
    align-items : center;
}

.row.row-stretch {
    align-items : stretch;
}

.row.row-baseline {
    align-items : baseline;
}

.row.row-x-left {
    justify-content : flex-start;
}

.row.row-x-right {
    justify-content : flex-end;
}

.row.row-x-center {
    justify-content : center;
}

/* --------------------------------------------------------------------
 * ## large screen devices 
 * -------------------------------------------------------------------- */
.lg-1 {
    flex  : none;
    width : 8.33333%;
}

.lg-2 {
    flex  : none;
    width : 16.66667%;
}

.lg-3 {
    flex  : none;
    width : 25%;
}

.lg-4 {
    flex  : none;
    width : 33.33333%;
}

.lg-5 {
    flex  : none;
    width : 41.66667%;
}

.lg-6 {
    flex  : none;
    width : 50%;
}

.lg-7 {
    flex  : none;
    width : 58.33333%;
}

.lg-8 {
    flex  : none;
    width : 66.66667%;
}

.lg-9 {
    flex  : none;
    width : 75%;
}

.lg-10 {
    flex  : none;
    width : 83.33333%;
}

.lg-11 {
    flex  : none;
    width : 91.66667%;
}

.lg-12 {
    flex  : none;
    width : 100%;
}

.block-lg-one-eight>.column {
    flex  : none;
    width : 12.5%;
}

.block-lg-one-sixth>.column {
    flex  : none;
    width : 16.66667%;
}

.block-lg-one-fifth>.column {
    flex  : none;
    width : 20%;
}

.block-lg-one-fourth>.column {
    flex  : none;
    width : 25%;
}

.block-lg-one-third>.column {
    flex  : none;
    width : 33.33333%;
}

.block-lg-one-half>.column {
    flex  : none;
    width : 50%;
}

.block-lg-whole>.column {
    flex  : none;
    width : 100%;
}

/* --------------------------------------------------------------------
 * ## medium screen devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .md-1 {
        flex  : none;
        width : 8.33333%;
    }

    .md-2 {
        flex  : none;
        width : 16.66667%;
    }

    .md-3 {
        flex  : none;
        width : 25%;
    }

    .md-4 {
        flex  : none;
        width : 33.33333%;
    }

    .md-5 {
        flex  : none;
        width : 41.66667%;
    }

    .md-6 {
        flex  : none;
        width : 50%;
    }

    .md-7 {
        flex  : none;
        width : 58.33333%;
    }

    .md-8 {
        flex  : none;
        width : 66.66667%;
    }

    .md-9 {
        flex  : none;
        width : 75%;
    }

    .md-10 {
        flex  : none;
        width : 83.33333%;
    }

    .md-11 {
        flex  : none;
        width : 91.66667%;
    }

    .md-12 {
        flex  : none;
        width : 100%;
    }

    .block-md-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-md-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-md-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-md-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-md-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-md-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-md-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-md {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## tablet devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .tab-1 {
        flex  : none;
        width : 8.33333%;
    }

    .tab-2 {
        flex  : none;
        width : 16.66667%;
    }

    .tab-3 {
        flex  : none;
        width : 25%;
    }

    .tab-4 {
        flex  : none;
        width : 33.33333%;
    }

    .tab-5 {
        flex  : none;
        width : 41.66667%;
    }

    .tab-6 {
        flex  : none;
        width : 50%;
    }

    .tab-7 {
        flex  : none;
        width : 58.33333%;
    }

    .tab-8 {
        flex  : none;
        width : 66.66667%;
    }

    .tab-9 {
        flex  : none;
        width : 75%;
    }

    .tab-10 {
        flex  : none;
        width : 83.33333%;
    }

    .tab-11 {
        flex  : none;
        width : 91.66667%;
    }

    .tab-12 {
        flex  : none;
        width : 100%;
    }

    .block-tab-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-tab-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-tab-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-tab-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-tab-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-tab-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-tab-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-tab {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## mobile devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width         : 100%;
        padding-left  : 6vw;
        padding-right : 6vw;
    }

    .row .row {
        padding-left  : 0;
        padding-right : 0;
    }

    .mob-1 {
        flex  : none;
        width : 8.33333%;
    }

    .mob-2 {
        flex  : none;
        width : 16.66667%;
    }

    .mob-3 {
        flex  : none;
        width : 25%;
    }

    .mob-4 {
        flex  : none;
        width : 33.33333%;
    }

    .mob-5 {
        flex  : none;
        width : 41.66667%;
    }

    .mob-6 {
        flex  : none;
        width : 50%;
    }

    .mob-7 {
        flex  : none;
        width : 58.33333%;
    }

    .mob-8 {
        flex  : none;
        width : 66.66667%;
    }

    .mob-9 {
        flex  : none;
        width : 75%;
    }

    .mob-10 {
        flex  : none;
        width : 83.33333%;
    }

    .mob-11 {
        flex  : none;
        width : 91.66667%;
    }

    .mob-12 {
        flex  : none;
        width : 100%;
    }

    .block-mob-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-mob-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-mob-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-mob-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-mob-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-mob-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-mob-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-mob {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## small screen devices 
 * --------------------------------------------------------------------*/

/* stack columns on small screen devices
 */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left  : 0;
        margin-right : 0;
    }

    .block-stack>.column,
    .column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
        padding      : 0;
    }

    .hide-on-sm {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## additional column stackpoints 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {

    .stack-on-1000,
    .block-stack-on-1000>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 680px) {

    .stack-on-680,
    .block-stack-on-680>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 550px) {

    .stack-on-550,
    .block-stack-on-550>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

/* ===================================================================
 * # UTILITY CLASSES - (_utils.scss)
 *
 *
 * ------------------------------------------------------------------- */

/* flex item alignment classes
 */
.u-flexitem-center {
    margin     : auto;
    align-self : center;
}

.u-flexitem-left {
    margin-right : auto;
    align-self   : center;
}

.u-flexitem-right {
    margin-left : auto;
    align-self  : center;
}

.u-flexitem-x-center {
    margin-right : auto;
    margin-left  : auto;
}

.u-flexitem-x-left {
    margin-right : auto;
}

.u-flexitem-x-right {
    margin-left : auto;
}

.u-flexitem-y-center {
    align-self : center;
}

.u-flexitem-y-top {
    align-self : flex-start;
}

.u-flexitem-y-bottom {
    align-self : flex-end;
}

/* misc helper classes
 */
.u-clearfix:after {
    content : "";
    display : table;
    clear   : both;
}

.u-hidden {
    display : none;
}

.u-invisible {
    visibility : hidden;
}

.u-antialiased {
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

.u-overflow-hidden {
    overflow : hidden;
}

.u-remove-top {
    margin-top : 0;
}

.u-remove-bottom {
    margin-bottom : 0;
}

.u-add-half-bottom {
    margin-bottom : var(--vspace-0_5);
}

.u-add-bottom {
    margin-bottom : var(--vspace-1);
}

.u-no-border {
    border : none;
}

.u-fullwidth {
    width : 100%;
}

.u-pull-left {
    float : left;
}

.u-pull-right {
    float : right;
}


/* ===================================================================
 * # TYPOGRAPHY - (_typography.scss)
 *
 *
 * ------------------------------------------------------------------- 
 * type scale - ratio 1:2 | base: 18px
 * -------------------------------------------------------------------
 *
 * --text-display-3 = (77.40px)
 * --text-display-2 = (64.50px)
 * --text-display-1 = (53.75px)
 * --text-xxxl      = (44.79px)
 * --text-xxl       = (37.32px)
 * --text-xl        = (31.10px)
 * --text-lg        = (25.92px)
 * --text-md        = (21.60px)
 * --text-size      = (18.00px) BASE
 * --text-sm        = (15.00px)
 * --text-xs        = (12.50px)
 *
 * -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## base type styles - (_typography.scss)
 * -------------------------------------------------------------------- */
body {
    font-family : var(--font-1);
    font-size   : var(--base-font-size);
    font-weight : 400;
    line-height : var(--vspace-1);
    color       : var(--color-text);
}

/* links
 */
a {
    color      : var(--color-1);
    transition : all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
    color : var(--color-2-dark);
}

a:hover,
a:active {
    outline : 0;
}

/* headings
 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family            : var(--font-2);
    font-weight            : 700;
    color                  : var(--color-text-dark);
    font-variant-ligatures : common-ligatures;
    text-rendering         : optimizeLegibility;
}

h1, .h1 {
    margin-top    : var(--vspace-2);
    margin-bottom : var(--vspace-0_875);
}

h2, .h2,
h3, .h3,
h4, .h4 {
    margin-top    : var(--vspace-1_5);
    margin-bottom : var(--vspace-0_5);
}

h5, .h5,
h6, .h6 {
    margin-top    : var(--vspace-1_25);
    margin-bottom : var(--vspace-0_5);
}

h1, .h1 {
    font-size      : var(--text-xxxl);
    line-height    : calc(1.625 * var(--space));
    letter-spacing : -.015em;
}

@media screen and (max-width: 500px) {

    h1, .h1 {
        font-size   : var(--text-xxl);
        line-height : var(--vspace-1_5);
    }
}

h2, .h2 {
    font-size      : var(--text-xl);
    line-height    : var(--vspace-1_25);
    letter-spacing : -.015em;
}

h3, .h3 {
    font-size   : var(--text-lg);
    line-height : calc(1.125 * var(--space));
}

h4, .h4 {
    font-size   : var(--text-md);
    line-height : var(--vspace-1);
}

h5, .h5 {
    font-size   : var(--text-size);
    line-height : var(--vspace-0_875);
}

h6, .h6 {
    font-size      : var(--text-sm);
    font-weight    : 700;
    line-height    : var(--vspace-0_75);
    text-transform : uppercase;
    letter-spacing : .2rem;
}

/* emphasis, italic,
 * strong, bold and small text
 */
em,
i,
strong,
b {
    font-size   : inherit;
    line-height : inherit;
}

em,
i {
    font-style : italic;
}

strong,
b {
    font-weight : 600;
    color       : var(--color-text-dark);
}

small {
    font-size   : 80%;
    font-weight : 400;
    line-height : var(--vspace-0_5);
}

/* blockquotes
 */
blockquote {
    margin      : 0 0 var(--vspace-1) 0;
    padding     : var(--vspace-1) var(--vspace-1_25);
    border-left : 2px solid var(--color-black);
    position    : relative;
}

@media screen and (max-width: 400px) {
    blockquote {
        padding : var(--vspace-0_75) var(--vspace-0_75);
    }
}

blockquote p {
    font-family : var(--font-1);
    font-weight : 500;
    font-size   : var(--text-md);
    line-height : var(--vspace-1_25);
    color       : var(--color-text-dark);
    padding     : 0;
}

blockquote cite {
    display     : block;
    font-family : var(--font-1);
    font-weight : 400;
    font-size   : var(--text-sm);
    line-height : var(--vspace-0_75);
    font-style  : normal;
}

blockquote cite:before {
    content : "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
    color  : var(--color-text-light);
    border : none;
}

/* figures
 */
figure img,
p img {
    margin         : 0;
    vertical-align : bottom;
}

figure {
    display      : block;
    margin-left  : 0;
    margin-right : 0;
}

figure img+figcaption {
    margin-top : var(--vspace-1);
}

figcaption {
    font-style    : italic;
    font-size     : var(--text-sm);
    text-align    : center;
    margin-bottom : 0;
}

/* preformatted, code
 */
var,
kbd,
samp,
code,
pre {
    font-family : var(--font-mono);
}

pre {
    padding    : var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
    background : var(--color-gray-9);
    overflow-x : auto;
}

code {
    font-size     : var(--text-sm);
    line-height   : 1.6rem;
    margin        : 0 .2rem;
    padding       : calc(((var(--vspace-1) - 1.6rem) / 2) - .1rem) calc(.8rem - .1rem);
    white-space   : nowrap;
    background    : var(--color-gray-1);
    border        : 1px solid var(--color-gray-2);
    color         : var(--color-text-dark);
    border-radius : 3px;
}

pre>code {
    display     : block;
    white-space : pre;
    line-height : var(--vspace-1);
    padding     : 0;
    margin      : 0;
    border      : none;
}

/* deleted text, abbreviation,
 * & mark text
 */
del {
    text-decoration : line-through;
}

abbr {
    font-family    : var(--font-1);
    font-weight    : 500;
    font-variant   : small-caps;
    text-transform : lowercase;
    letter-spacing : .1em;
}

abbr[title],
dfn[title] {
    border-bottom   : 1px dotted;
    cursor          : help;
    text-decoration : none;
}

mark {
    background : var(--color-3);
    color      : var(--color-black);
}

/* horizontal rule
 */
hr {
    border       : solid var(--color-border);
    border-width : .1rem 0 0;
    clear        : both;
    margin       : var(--vspace-2) 0 calc(var(--vspace-2) - 1px);
    height       : 0;
}

hr.fancy {
    border     : none;
    margin     : var(--vspace-2) 0;
    height     : var(--vspace-1);
    text-align : center;
}

hr.fancy::before {
    content        : "*****";
    letter-spacing : .3em;
}

/* --------------------------------------------------------------------
 * ## additional typography & helper classes - (_typography.scss)
 * -------------------------------------------------------------------- */
.lead,
.attention-getter {
    font-family : var(--font-1);
    font-weight : 300;
    font-size   : var(--text-md);
    line-height : calc(1.25 * var(--space));
    color       : var(--color-text-dark);
}

.pull-quote {
    position   : relative;
    padding    : 0;
    margin-top : 0;
    text-align : center;
}

.pull-quote blockquote {
    border      : none;
    margin      : 0 auto;
    max-width   : 62rem;
    padding-top : var(--vspace-2_5);
    position    : relative;
}

.pull-quote blockquote p {
    font-weight : 500;
    color       : var(--color-text-dark);
}

.pull-quote blockquote:before {
    content           : "";
    display           : block;
    height            : var(--vspace-1);
    width             : var(--vspace-1);
    background-repeat : no-repeat;
    background        : center center;
    background-size   : contain;
    background-image  : url(../images/icons/icon-quote.svg);
    transform         : translate(-50%, 0, 0);
    position          : absolute;
    top               : var(--vspace-1);
    left              : 50%;
}

.drop-cap:first-letter {
    float          : left;
    font-family    : var(--font-1);
    font-weight    : 700;
    font-size      : calc(3 * var(--space));
    line-height    : 1;
    padding        : 0 0.125em 0 0;
    text-transform : uppercase;
    background     : transparent;
    color          : var(--color-black);
}

.text-center {
    text-align : center;
}

.text-left {
    text-align : left;
}

.text-right {
    text-align : right;
}

/* --------------------------------------------------------------------
 * ## lists - (_typography.scss)
 * -------------------------------------------------------------------- */
ol {
    list-style : decimal;
}

ul {
    list-style : disc;
}

li {
    display : list-item;
}

ol,
ul {
    margin-left : 1.6rem;
}

ul li {
    padding-left : .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin : var(--vspace-0_5) 0 var(--vspace-0_5) 1.6rem;
}

ul.disc li {
    display    : list-item;
    list-style : none;
    padding    : 0 0 0 .8rem;
    position   : relative;
}

ul.disc li::before {
    content        : "";
    display        : inline-block;
    width          : 8px;
    height         : 8px;
    border-radius  : 50%;
    background     : var(--color-1);
    position       : absolute;
    left           : -.9em;
    top            : 11px;
    vertical-align : middle;
}

dt {
    margin : 0;
    color  : var(--color-1);
}

dd {
    margin : 0 0 0 2rem;
}

/* definition list line style 
 */
.lining dt,
.lining dd {
    display : inline;
    margin  : 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
    content     : "\A";
    white-space : pre;
}

.lining dd+dd:before {
    content : ", ";
}

.lining dd+dd:before {
    content : ", ";
}

.lining dd:before {
    content     : ": ";
    margin-left : -0.2em;
}

/* definition list dictionary style 
 */
.dictionary-style dt {
    display       : inline;
    counter-reset : definitions;
}

.dictionary-style dt+dt:before {
    content     : ", ";
    margin-left : -0.2em;
}

.dictionary-style dd {
    display           : block;
    counter-increment : definitions;
}

.dictionary-style dd:before {
    content : counter(definitions, decimal) ". ";
}

/* --------------------------------------------------------------------
 * ## spacing - (_typography.scss)
 * -------------------------------------------------------------------- */
fieldset,
button,
.btn {
    margin-bottom : var(--vspace-0_5);
}

input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
    margin-bottom : var(--vspace-1);
}


/* ===================================================================
 * # PRELOADER - (_preloader-dots.scss)
 * 
 * 
 * -------------------------------------------------------------------
 * - markup:
 *
 * <div id="preloader">
 *     <div id="loader" class="dots-fade">
 *         <div></div>
 *         <div></div>
 *         <div></div>
 *     </div>
 * </div>
 *
 * - loader class:
 * <dots-fade | dots-jump | dots-pulse>
 *
 * ------------------------------------------------------------------- */
#preloader {
    position        : fixed;
    display         : flex;
    flex-flow       : row wrap;
    justify-content : center;
    align-items     : center;
    background      : var(--color-preloader-bg);
    z-index         : 500;
    height          : 100vh;
    width           : 100%;
    opacity         : .95;
    overflow        : hidden;
}

.no-js #preloader {
    display : none;
}

#loader {
    position : relative;
    width    : 6px;
    height   : 6px;
    padding  : 0;
    display  : inline-block;
}

#loader>div {
    content       : "";
    background    : var(--color-loader);
    width         : 4px;
    height        : 4px;
    position      : absolute;
    top           : 0;
    left          : 0;
    border-radius : 50%;
}

#loader>div:nth-of-type(1) {
    left : 15px;
}

#loader>div:nth-of-type(3) {
    left : -15px;
}

/* dots jump */
.dots-jump>div {
    -webkit-animation : dots-jump 1.2s infinite ease;
    animation         : dots-jump 1.2s infinite ease;
    animation-delay   : 0.2s;
}

.dots-jump>div:nth-of-type(1) {
    animation-delay : 0.4s;
}

.dots-jump>div:nth-of-type(3) {
    animation-delay : 0s;
}

@-webkit-keyframes dots-jump {
    0% {
        top : 0;
    }

    40% {
        top : -6px;
    }

    80% {
        top : 0;
    }
}

@keyframes dots-jump {
    0% {
        top : 0;
    }

    40% {
        top : -6px;
    }

    80% {
        top : 0;
    }
}

/* dots fade */
.dots-fade>div {
    -webkit-animation : dots-fade 1.6s infinite ease;
    animation         : dots-fade 1.6s infinite ease;
    animation-delay   : 0.4s;
}

.dots-fade>div:nth-of-type(1) {
    animation-delay : 0.8s;
}

.dots-fade>div:nth-of-type(3) {
    animation-delay : 0s;
}

@-webkit-keyframes dots-fade {
    0% {
        opacity : 1;
    }

    40% {
        opacity : 0.2;
    }

    80% {
        opacity : 1;
    }
}

@keyframes dots-fade {
    0% {
        opacity : 1;
    }

    40% {
        opacity : 0.2;
    }

    80% {
        opacity : 1;
    }
}

/* dots pulse */
.dots-pulse>div {
    -webkit-animation : dots-pulse 1.2s infinite ease;
    animation         : dots-pulse 1.2s infinite ease;
    animation-delay   : 0.2s;
}

.dots-pulse>div:nth-of-type(1) {
    animation-delay : 0.4s;
}

.dots-pulse>div:nth-of-type(3) {
    animation-delay : 0s;
}

@-webkit-keyframes dots-pulse {
    0% {
        -webkit-transform : scale(1);
        transform         : scale(1);
    }

    40% {
        -webkit-transform : scale(1.1);
        transform         : scale(1.3);
    }

    80% {
        -webkit-transform : scale(1);
        transform         : scale(1);
    }
}

@keyframes dots-pulse {
    0% {
        transform : scale(1);
    }

    40% {
        transform : scale(1.3);
    }

    80% {
        transform : scale(1);
    }
}

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
    opacity                    : 0;
    visibility                 : hidden;
    transition-property        : opacity, visibility;
    transition-duration        : .9s;
    transition-delay           : .9s;
    transition-timing-function : ease-in-out;
}

.ss-loaded #preloader #loader {
    opacity    : 0;
    transition : opacity .9s ease-in-out;
}


/* ===================================================================
 * # FORM - (_form-01.scss)
 *
 *
 * ------------------------------------------------------------------- */
fieldset {
    border : none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    --input-height      : var(--vspace-2);
    --input-line-height : var(--vspace-1);
    --input-vpadding    : calc(((var(--input-height) - var(--input-line-height)) / 2) - 1px);
    display             : block;
    height              : var(--input-height);
    padding             : var(--input-vpadding) calc(2.4rem - 1px);
    border              : 0;
    outline             : 0;
    color               : var(--color-placeholder);
    font-family         : var(--font-1);
    font-size           : var(--text-sm);
    line-height         : var(--input-line-height);
    max-width           : 100%;
    background-color    : var(--color-gray-1);
    border              : 1px solid transparent;
    transition          : all .3s ease-in-out;
    border-radius       : var(--border-radius);
}

.ss-custom-select {
    position : relative;
    padding  : 0;
}

.ss-custom-select select {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
    text-indent        : 0.01px;
    text-overflow      : '';
    margin             : 0;
    vertical-align     : middle;
}

.ss-custom-select select option {
    padding-left  : 2rem;
    padding-right : 2rem;
}

.ss-custom-select select::-ms-expand {
    display : none;
}

.ss-custom-select::after {
    border-bottom    : 2px solid black;
    border-right     : 2px solid black;
    content          : '';
    display          : block;
    height           : 8px;
    width            : 8px;
    margin-top       : -7px;
    pointer-events   : none;
    position         : absolute;
    right            : 2.4rem;
    top              : 50%;
    transition       : all 0.15s ease-in-out;
    transform-origin : 66% 66%;
    transform        : rotate(45deg);
}

textarea {
    min-height : calc(8 * var(--space));
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color      : var(--color-black);
    box-shadow : 0 0 6px var(--color-1);
    border     : 1px solid var(--color-1);
}

label,
legend {
    font-family   : var(--font-1);
    font-weight   : 600;
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_5);
    margin-bottom : var(--vspace-0_5);
    color         : var(--color-text-dark);
    display       : block;
}

input[type="checkbox"],
input[type="radio"] {
    display : inline;
}

label>.label-text {
    display     : inline-block;
    margin-left : 1rem;
    font-family : var(--font-1);
    line-height : inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
    margin   : 0;
    position : relative;
    top      : 2px;
}

/* ------------------------------------------------------------------- 
 * ## style placeholder text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color : var(--color-placeholder);
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color   : var(--color-placeholder);
    opacity : 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color   : var(--color-placeholder);
    opacity : 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color : var(--color-placeholder);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color : var(--color-placeholder);
}

::placeholder {
    /* Most modern browsers support this now. */
    color : var(--color-placeholder);
}

/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color : var(--color-1);
    transition              : background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 * # BUTTONS - (_button.scss)
 *
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    --btn-height            : var(--vspace-btn);
    display                 : inline-block;
    font-family             : var(--font-1);
    font-weight             : 600;
    font-size               : var(--text-size);
    font-size               : calc(var(--text-size) * 0.8889);
    height                  : var(--btn-height);
    line-height             : calc(var(--btn-height) - 4px);
    padding                 : 0 3.6rem;
    margin                  : 0 0.4rem var(--vspace-0_5) 0;
    color                   : var(--color-btn-text);
    text-decoration         : none;
    text-align              : center;
    white-space             : nowrap;
    cursor                  : pointer;
    transition              : all .3s;
    border-radius           : var(--border-radius);
    background-color        : var(--color-btn);
    border                  : 2px solid var(--color-btn);
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color : var(--color-btn-hover);
    border-color     : var(--color-btn-hover);
    color            : var(--color-btn-hover-text);
    outline          : 0;
}

/* button primary
 */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background   : var(--color-btn-primary);
    border-color : var(--color-btn-primary);
    color        : var(--color-btn-primary-text);
}

.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus,
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover {
    background   : var(--color-btn-primary-hover);
    border-color : var(--color-btn-primary-hover);
    color        : var(--color-btn-primary-hover-text);
}

/* button modifiers
 */
.btn.u-fullwidth,
button.u-fullwidth {
    width        : 100%;
    margin-right : 0;
}

.btn--small,
button.btn--small {
    --btn-height : calc(var(--vspace-btn) - 1.6rem);
}

.btn--medium,
button.btn--medium {
    --btn-height : calc(var(--vspace-btn) + .8rem);
}

.btn--large,
button.btn--large {
    --btn-height : calc(var(--vspace-btn) + 1.6rem);
}

.btn--stroke,
button.btn--stroke {
    background : transparent;
    border     : 2px solid var(--color-btn-stroke);
    color      : var(--color-btn-stroke-text);
}

.btn--stroke:focus,
button.btn--stroke:focus,
.btn--stroke:hover,
button.btn--stroke:hover {
    background : var(--color-btn-stroke-hover);
    border     : 2px solid var(--color-btn-stroke-hover);
    color      : var(--color-btn-stroke-hover-text);
}

.btn--pill,
button.btn--pill {
    padding-left  : 3.2rem !important;
    padding-right : 3.2rem !important;
    border-radius : 1000px !important;
}


/* ===================================================================
 * # TABLE - (_table.scss)
 *
 *
 * ------------------------------------------------------------------- */
table {
    border-width    : 0;
    width           : 100%;
    max-width       : 100%;
    font-family     : var(--font-1);
    border-collapse : collapse;
}

th,
td {
    padding       : var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - 1px);
    text-align    : left;
    border-bottom : 1px solid var(--color-border);
}

th {
    padding     : var(--vspace-0_5) 3.2rem;
    color       : var(--color-black);
    font-family : var(--font-2);
    font-weight : 600;
}

th:first-child,
td:first-child {
    padding-left : 0;
}

th:last-child,
td:last-child {
    padding-right : 0;
}

.table-responsive {
    overflow-x                 : auto;
    -webkit-overflow-scrolling : touch;
}


/* ===================================================================
 * # PROJECT-WIDE SHARED STYLES - (_shared.scss)
 *
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width : var(--width-wide);
}

.wider {
    max-width : var(--width-wider);
}

.narrow {
    max-width : var(--width-narrow);
}

/* transparent background for
 * ins tag
 */
ins {
    background : transparent !important;
}

/* hide recaptcha v3 badge
 * Hide reCaptcha v3 visible seal
 */
.grecaptcha-badge {
    opacity : 0 !important;
}

.screen-reader-text {
    clip      : rect(1px, 1px, 1px, 1px);
    clip-path : inset(50%);
    height    : 1px;
    width     : 1px;
    margin    : -1px;
    overflow  : hidden;
    padding   : 0;
    border    : 0;
    position  : absolute;
    word-wrap : normal !important;
}

/* ------------------------------------------------------------------- 
 * ## media classes - (_shared.scss)
 * ------------------------------------------------------------------- */

/* floated image
 */
img.u-pull-right {
    margin : var(--vspace-0_5) 0 var(--vspace-0_5) var(--vspace-0_875);
}

img.u-pull-left {
    margin : var(--vspace-0_5) var(--vspace-0_875) var(--vspace-0_5) 0;
}

/* responsive video container
 */
.video-container {
    position       : relative;
    padding-bottom : 56.25%;
    height         : 0;
    overflow       : hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position : absolute;
    top      : 0;
    left     : 0;
    width    : 100%;
    height   : 100%;
}

/* ------------------------------------------------------------------- 
 * ## theme specific type - (_shared.scss)
 * ------------------------------------------------------------------- */
.heading-huge {
    --text-heading-huge : 6.4rem;
    --text-multiplier   : 1;
    font-size           : calc(var(--text-heading-huge) * var(--text-multiplier));
    font-weight         : 600;
    line-height         : 1.125;
    margin-top          : 0;
    margin-bottom       : var(--vspace-0_5);
}

.heading-display {
    --text-heading-display : 5.4rem;
    --text-multiplier      : 1;
    font-size              : calc(var(--text-heading-display) * var(--text-multiplier));
    font-weight            : 600;
    line-height            : 1.1111;
    margin-top             : 0;
    margin-bottom          : var(--vspace-0_5);
}

.page-desc {
    max-width      : 700px;
    font-family    : var(--font-1);
    font-size      : var(--text-size);
    font-weight    : 400;
    line-height    : var(--vspace-1);
    letter-spacing : normal;
    color          : var(--color-text-light);
    margin-top     : 0;
    margin-right   : auto;
    margin-left    : auto;
}

/* ------------------------------------------------------------------- 
 * ## breadcrumbs - (_shared.scss)
 * ------------------------------------------------------------------- */
#breadcrumbs {
    font-family   : var(--font-1);
    font-size     : var(--text-xs);
    line-height   : var(--vspace-0_75);
    font-weight   : 400;
    color         : var(--color-text);
    margin-top    : calc(var(--vspace-0_5) * -1);
    margin-bottom : var(--vspace-0_5);
}

#breadcrumbs a {
    color : var(--color-text-light);
}

#breadcrumbs a:hover,
#breadcrumbs a:focus,
#breadcrumbs a:active {
    color : black;
}

#breadcrumbs a,
#breadcrumbs .breadcrumb_last {
    margin : 0 .4rem;
}

#breadcrumbs .breadcrumb_last {
    color : black;
}

/* ------------------------------------------------------------------- 
 * ## page meta - (_shared.scss)
 * ------------------------------------------------------------------- */
.page-meta {
    list-style    : none;
    font-size     : calc(var(--text-size) * 1.1111);
    font-weight   : 400;
    line-height   : var(--vspace-0_75);
    color         : black;
    margin-top    : var(--vspace-0_75);
    margin-bottom : var(--vspace-0_5);
    margin-left   : 0;
}

.page-meta li {
    display       : inline-block;
    padding-left  : 3.4rem;
    margin-right  : 2.2rem;
    margin-bottom : var(--vspace-0_5);
    position      : relative;
}

.page-meta li:last-child {
    margin-right : 0;
}

.page-meta li::before {
    content             : "";
    display             : block;
    height              : 2rem;
    width               : 2rem;
    background-repeat   : no-repeat;
    background-position : center center;
    background-size     : contain;
    opacity             : .9;
    position            : absolute;
    left                : .2rem;
    top                 : .1em;
}

.page-meta li.cat a::after {
    content : ", ";
}

.page-meta li.cat a:last-child::after {
    display : none;
}

.page-meta .cat::before {
    background-image : url(images/icons/icon-category.svg);
}

.page-meta .license::before {
    background-image : url(images/icons/icon-license.svg);
}

.page-meta .faq::before {
    background-image : url(images/icons/icon-faq.svg);
}

.page-meta .date::before {
    background-image : url(images/icons/icon-time.svg);
}

.page-meta .customize::before {
    background-image : url(images/icons/icon-customize.svg);
}

.page-meta a {
    font-weight : 400;
    color       : var(--color-text-dark);
}

.page-meta a:focus,
.page-meta a:hover,
.page-meta a:active {
    color : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## entry - (_shared.scss)
 * ------------------------------------------------------------------- */
.entry {
    background-color : var(--color-gray-1);
    font-size        : calc(var(--text-size) * 0.8889);
    line-height      : var(--vspace-0_875);
    margin-bottom    : var(--vspace-2);
    color            : var(--color-text);
}

.entry img {
    margin-bottom  : 0;
    vertical-align : bottom;
    aspect-ratio   : 4/3;
    object-fit     : cover;
}

.entry__thumb {
    position : relative;
}

.entry__thumb-link::before {
    z-index    : 1;
    content    : "";
    display    : block;
    background : rgba(0, 0, 0, 0.5);
    opacity    : 0;
    visibility : hidden;
    position   : absolute;
    top        : 0;
    left       : 0;
    right      : 0;
    bottom     : 0;
    width      : 100%;
    height     : 100%;
    transition : all .3s;
}

.entry__thumb-link::after {
    z-index     : 1;
    content     : "...";
    display     : block;
    font-family : georgia, serif;
    font-size   : 2.7rem;
    height      : 90px;
    width       : 90px;
    line-height : 60px;
    margin-left : -45px;
    margin-top  : -45px;
    position    : absolute;
    left        : 50%;
    top         : 50%;
    text-align  : center;
    color       : white;
    opacity     : 0;
    visibility  : hidden;
    transform   : scale(0.5);
    transition  : all .3s;
}

.entry__thumb:hover .entry__thumb-link::before {
    opacity    : 1;
    visibility : visible;
}

.entry__thumb:hover .entry__thumb-link::after {
    opacity    : 1;
    visibility : visible;
    transform  : scale(1);
}

.entry__text {
    max-width : 460px;
    padding   : var(--vspace-1_25) var(--vspace-1) var(--vspace-1);
    margin    : 0 auto;
}

.entry__title {
    margin-top  : 0;
    font-size   : var(--text-md);
    line-height : var(--vspace-1);
}

.entry__title a {
    color : var(--color-text-dark);
}

.entry__title a:focus,
.entry__title a:hover {
    color : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## categories - (_shared.scss)
 * ------------------------------------------------------------------- */
.categories-wrap {
    margin-top     : var(--vspace-1_5);
    padding-top    : 0;
    padding-bottom : var(--vspace-1_25);
    border-top     : 1px solid var(--color-border);
    border-bottom  : 1px solid var(--color-border);
    text-align     : center;
}

.categories-wrap--big-top-margin {
    margin-top : var(--vspace-4);
}

.categories-wrap h5 {
    display          : inline-block;
    margin-top       : 0;
    padding          : .8rem 2rem;
    font-size        : var(--text-xs);
    border           : 1px solid var(--color-border);
    background-color : var(--color-body);
    border-radius    : var(--border-radius);
    text-align       : center;
    transform        : translateY(-50%);
}

.cat-list {
    list-style      : none;
    margin          : 0 0 0 -0.8rem;
    display         : flex;
    flex-flow       : row wrap;
    justify-content : center;
}

.cat-list li {
    display      : inline-block;
    padding-left : 0;
    margin       : 0 var(--vspace-0_25) var(--vspace-0_5);
}

.cat-list a {
    display          : inline-block;
    background-color : var(--color-btn);
    font-family      : var(--font-1);
    font-size        : var(--text-sm);
    font-weight      : 400;
    line-height      : 2.8rem;
    padding          : .8rem 1.6rem;
    border-radius    : var(--border-radius);
    color            : var(--text-color-light);
}

.cat-list a:hover,
.cat-list a:focus,
.cat-list a:active {
    background-color : var(--color-text-dark);
    color            : white;
}

.cat-list .premium-templates a {
    background-color : var(--color-1);
    color            : white;
    padding          : .8rem 2.8rem;
}

/* -------------------------------------------------------------------
 * ## likeus box - (_shared.scss)
 * ------------------------------------------------------------------- */
.likeus {
    background-color : var(--color-gray-1);
    padding          : var(--vspace-1) 2.8rem;
    margin-top       : var(--vspace-1_5);
    margin-bottom    : var(--vspace-1_5);
}

.likeus strong {
    display        : block;
    font-family    : var(--font-1);
    font-size      : calc(var(--text-size) * 0.8889);
    font-weight    : 500;
    line-height    : var(--vspace-0_875);
    color          : black;
    padding-bottom : 2rem;
}

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

.likeus .likeus-list li {
    display : inline-block;
    margin  : 0 4px 8px 0;
    padding : 0;
}

.likeus .likeus-list li:last-child {
    margin-right : 0;
}

.likeus .likeus-list li iframe {
    vertical-align : bottom;
}

/* -------------------------------------------------------------------
 * ## faq items - (_shared.scss)
 * ------------------------------------------------------------------- */
.faq-item {
    border-top : 1px solid var(--color-border);
    padding    : 0;
    position   : relative;
}

.faq-item h5 {
    margin-top    : 0;
    margin-bottom : 0;
    line-height   : var(--vspace-1);
}

.faq-item__question {
    padding  : var(--vspace-1) var(--vspace-1_5) var(--vspace-1) 0;
    cursor   : pointer;
    position : relative;
}

.faq-item__question::after {
    border-bottom            : 1px solid black;
    border-right             : 1px solid black;
    content                  : '';
    display                  : block;
    height                   : 6px;
    width                    : 6px;
    margin-top               : -4px;
    pointer-events           : none;
    position                 : absolute;
    right                    : 1.8rem;
    top                      : 4rem;
    -webkit-transform-origin : 66% 66%;
    -ms-transform-origin     : 66% 66%;
    transform-origin         : 66% 66%;
    transition               : all, .3s;
    transform                : rotate(45deg);
}

.is-active .faq-item__question::after {
    transform : rotate(225deg);
}

.faq-item__answer {
    width      : 100%;
    opacity    : 0;
    height     : auto;
    max-height : 0;
    overflow   : hidden;
    transition : all 0.2s ease-in-out;
}

.is-active .faq-item__answer {
    opacity    : 1;
    max-height : 1000px;
}

/* -------------------------------------------------------------------
 * ## legacy items - (_shared.scss)
 * ------------------------------------------------------------------- */
.legacy-items {
    margin-top : var(--vspace-1_5);
}

.legacy-item {
    display         : flex;
    align-items     : center;
    justify-content : space-between;
    border-top      : 1px solid var(--color-border);
    padding         : var(--vspace-1) 0;
}

.legacy-item:last-child {
    border-bottom : 1px solid var(--color-border);
}

.legacy-item h5 {
    margin-top    : 0;
    margin-right  : 2.4rem;
    margin-bottom : 0;
    line-height   : var(--vspace-1);
}

.legacy-item__actions {
    font-family    : var(--font-1);
    font-size      : var(--text-xs);
    font-weight    : 400;
    line-height    : var(--vspace-1);
    text-transform : uppercase;
    letter-spacing : 0.25em;
}

.legacy-item__actions a {
    margin-right : 1rem;
    color        : black;
}

.legacy-item__actions a:last-child {
    margin-right : 0;
}

.legacy-item__actions a:focus,
.legacy-item__actions a:hover,
.legacy-item__actions a:active {
    color : var(--color-1);
}

/* -------------------------------------------------------------------
 * ## contactform7 overrides - (_shared.scss)
 * ------------------------------------------------------------------- */
div.wpcf7-response-output {
    margin        : 0;
    padding       : 2rem 2.4rem;
    border-radius : 3px;
    font-family   : var(--font-1);
    font-size     : calc(var(--text-size) * 0.8889);
    line-height   : var(--vspace-0_75);
    border        : none;
}

div.wpcf7-mail-sent-ok {
    background-color : var(--color-success);
    color            : var(--color-success-content);
}

div.wpcf7-mail-sent-ng {
    background-color : var(--color-error);
    color            : var(--color-error-content);
}

div.wpcf7-spam-blocked {
    background-color : var(--color-2-lighter);
    color            : var(--color-2-darker);
}

div.wpcf7-validation-errors {
    background-color : var(--color-notice);
    color            : var(--color-notice-content);
}

span.wpcf7-not-valid-tip {
    color       : var(--color-2-darker);
    font-family : var(--font-1);
    font-size   : var(--text-sm);
    line-height : var(--vspace-0_75);
    font-weight : normal;
    display     : block;
    margin      : var(--vspace-0_375) 0;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    z-index    : 100;
    border     : 1px solid var(--color-2-darker);
    background : white;
    padding    : .4em .8em;
    position   : absolute;
    top        : 20%;
    left       : 20%;
}

/* ------------------------------------------------------------------- 
 * ## alert box - (_shared.scss)
 * ------------------------------------------------------------------- */
.alert-box {
    padding       : var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom : var(--vspace-1);
    border-radius : var(--border-radius);
    font-family   : var(--font-1);
    font-weight   : 500;
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_75);
    opacity       : 1;
    visibility    : visible;
    position      : relative;
}

.alert-box__close {
    position : absolute;
    display  : block;
    right    : 1.6rem;
    top      : 1.6rem;
    cursor   : pointer;
    width    : 12px;
    height   : 12px;
}

.alert-box__close::before,
.alert-box__close::after {
    content  : '';
    display  : inline-block;
    width    : 1px;
    height   : 12px;
    position : absolute;
    top      : 0;
    left     : 5px;
}

.alert-box__close::before {
    transform : rotate(45deg);
}

.alert-box__close::after {
    transform : rotate(-45deg);
}

.alert-box--error {
    background-color : var(--color-error);
    color            : var(--color-error-content);
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
    background-color : var(--color-error-content);
}

.alert-box--success {
    background-color : var(--color-success);
    color            : var(--color-success-content);
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
    background-color : var(--color-success-content);
}

.alert-box--info {
    background-color : var(--color-info);
    color            : var(--color-info-content);
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
    background-color : var(--color-info-content);
}

.alert-box--notice {
    background-color : var(--color-notice);
    color            : var(--color-notice-content);
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
    background-color : var(--color-notice-content);
}

.alert-box.hideit {
    opacity    : 0;
    visibility : hidden;
    transition : all .5s;
}

/* -------------------------------------------------------------------
 * ## pagination - (_shared.scss)
 * ------------------------------------------------------------------- */
.pgn {
    font-family   : var(--font-2);
    font-weight   : 600;
    font-size     : var(--text-size);
    line-height   : var(--vspace-1);
    text-align    : center;
    margin-top    : var(--vspace-1_75);
    margin-bottom : var(--vspace-1_5);
    color         : black;
}

.pgn a {
    display       : inline-block;
    height        : var(--vspace-1);
    line-height   : var(--vspace-1);
    min-width     : 3rem;
    padding       : 0 .6rem;
    margin-bottom : var(--vspace-0_25);
    color         : black;
}

.pgn a:hover,
.pgn a:focus {
    color : var(--color-1);
}

.pgn .pgn__prev,
.pgn .pgn__next {
    width : auto;
}

.pgn .pgn__prev {
    padding-right : 2rem;
    padding-left  : 0;
}

.pgn .pgn__next {
    padding-left  : 2rem;
    padding-right : 0;
}

.pgn a.active {
    color : rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------------- 
 * ## animations - (_shared.scss)
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
    from {
        opacity   : 0;
        transform : translate(0, 150%);
    }

    to {
        opacity   : 1;
        transform : translate(0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity   : 0;
        transform : translate(0, 150%);
    }

    to {
        opacity   : 1;
        transform : translate(0, 0);
    }
}

/* fade out */
@-webkit-keyframes fadeOut {
    from {
        opacity : 1;
    }

    to {
        opacity   : 0;
        transform : translate(0, -150%);
    }
}

@keyframes fadeOut {
    from {
        opacity : 1;
    }

    to {
        opacity   : 0;
        transform : translate(0, -150%);
    }
}

/* -------------------------------------------------------------------
 * responsive:
 * project wide shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1100px) {
    .heading-huge {
        --text-multiplier : .9688;
    }

    .heading-display {
        --text-multiplier : .9231;
    }
}

@media screen and (max-width: 800px) {
    .heading-huge {
        --text-multiplier : .8438;
    }

    .heading-display {
        --text-multiplier : .8889;
    }

    .page-meta {
        font-size : var(--text-size);
    }

    .page-meta li {
        padding-left : 3rem;
    }

    .page-meta li::before {
        height : 1.6rem;
        width  : 1.6rem;
        top    : .2em;
    }
}

@media screen and (max-width: 700px) {
    .heading-display {
        --text-multiplier : .8519;
    }
}

@media screen and (max-width: 600px) {
    .heading-huge {
        --text-multiplier : .7812;
    }

    .heading-display {
        --text-multiplier : .7778;
    }

    .page-meta {
        font-size : 1.5rem;
    }

    .page-meta li {
        padding-left : 0;
        margin-right : .8rem;
        margin-left  : .8rem;
    }

    .page-meta li::before {
        display : none;
    }

    .page-meta li.cat a {
        font-weight : 600;
    }

    .legacy-item {
        display : block;
        padding : var(--vspace-0_5) 0;
    }
}

@media screen and (max-width: 500px) {
    .heading-huge {
        --text-multiplier : .7188;
    }

    .heading-display {
        --text-multiplier : .7037;
    }
}

@media screen and (max-width: 400px) {
    .heading-huge {
        --text-multiplier : .6563;
    }

    .heading-display {
        --text-multiplier : .6296;
    }
}


/* ===================================================================
 * # PAGEWRAP - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.s-page {
    --header-height : 8rem;
    display         : flex;
    flex-direction  : column;
    padding-bottom  : var(--vspace-3);
}

/* -------------------------------------------------------------------
 * responsive:
 * pagewrap
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .s-page {
        --header-height : 6.8rem;
    }
}


/* ===================================================================
 * # HEADER - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.s-header {
    z-index          : 100;
    background-color : var(--color-header);
    width            : 100%;
    transition       : background-color .3s ease-in-out;
    position         : fixed;
    top              : 0;
    left             : 0;
}

.s-header__container {
    min-height      : var(--header-height);
    max-width       : 1240px;
    width           : 95%;
    align-items     : center;
    justify-content : space-between;
}

/* ------------------------------------------------------------------- 
 * ## site branding - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.header-branding {
    margin-left : var(--gutter);
}

.header-branding .site-logo {
    display     : flex;
    align-items : center;
}

.header-branding .logo {
    margin-right : 1rem;
    width        : 1.6rem;
}

.header-branding .logo-text {
    font-family    : var(--font-2);
    font-weight    : 700;
    font-size      : 2.5rem;
    line-height    : 1;
    letter-spacing : -.02em;
    color          : white;
}

/* ------------------------------------------------------------------- 
 * ## main navigation - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.header-content {
    margin-right : 12.5rem;
}

.header-content__title {
    display        : none;
    font-family    : var(--font-2);
    font-weight    : 700;
    font-size      : 12px;
    line-height    : 1.6667;
    text-transform : uppercase;
    letter-spacing : 0.25em;
    color          : var(--color-text-dark);
    margin-bottom  : auto;
}

.header-content__title span {
    position : relative;
}

.header-content__title span::before {
    content          : "";
    width            : 60px;
    height           : 1px;
    background-color : var(--color-1);
    position         : absolute;
    top              : 50%;
    left             : calc(100% + 20px);
}

.header-content__close {
    position    : fixed;
    display     : none;
    width       : 44px;
    height      : 44px;
    top         : 2.4rem;
    right       : 2.8rem;
    font        : 0/0 a;
    text-shadow : none;
    color       : transparent;
}

.header-content__close::before,
.header-content__close::after {
    content          : '';
    background-color : var(--color-text-dark);
    display          : inline-block;
    width            : 2px;
    height           : 20px;
    position         : absolute;
    top              : 12px;
    left             : 21px;
}

.header-content__close::before {
    transform : rotate(45deg);
}

.header-content__close::after {
    transform : rotate(-45deg);
}

.header-content__menu {
    list-style    : none;
    display       : flex;
    align-items   : center;
    font-family   : var(--font-2);
    font-weight   : 500;
    font-size     : 1.35rem;
    margin-bottom : 0;
}

.header-content__menu li {
    padding-left : 0;
    margin-right : 2.2rem;
}

.header-content__menu li:last-child {
    margin-right : 0;
}

.header-content__menu a {
    color   : rgba(255, 255, 255, 0.5);
    display : block;
}

.header-content__menu .current-menu-item a {
    color : rgba(255, 255, 255, 0.8);
}

.header-content__menu .ss-highlight a {
    background-color : rgba(255, 255, 255, 0.07);
    font-weight      : 600;
    padding          : 1rem 2.2rem 1rem 4.4rem;
    border-radius    : var(--border-radius);
    color            : var(--color-3);
    position         : relative;
}

.header-content__menu .ss-highlight a::before {
    display             : block;
    content             : "";
    width               : 1.8rem;
    height              : 1.8rem;
    background-position : center;
    background-repeat   : no-repeat;
    background-size     : contain;
    background-image    : url(images/icons/icon-crown.svg);
    transform           : translateY(calc(-50% - 1px));
    position            : absolute;
    left                : 1.8rem;
    top                 : 50%;
}

/* ------------------------------------------------------------------- 
 * ## header social icons - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.header-content__social {
    display    : none;
    list-style : none;
    padding    : 0;
    margin     : auto 0 0 0;
    border-top : 1px solid var(--color-border);
}

.header-content__social li {
    display      : inline-block;
    line-height  : 2.2rem;
    padding-left : 0;
    margin-right : 1.2rem;
}

.header-content__social li:last-child {
    margin-right : 0;
}

.header-content__social a {
    display             : block;
    height              : 2.2rem;
    width               : 2.2rem;
    background-position : center center;
    background-repeat   : no-repeat;
    background-size     : contain;
    opacity             : 1;
    font                : 0/0 a;
    text-shadow         : none;
    color               : transparent;
}

.header-content__social a:focus,
.header-content__social a:hover,
.header-content__social a:active {
    opacity : 1;
}

.header-content__social .ss-facebook a {
    background-image : url(images/icons/social/icon-facebook.svg);
}

.header-content__social .ss-twitter a {
    background-image : url(images/icons/social/icon-twitter.svg);
}

.header-content__social .ss-dribbble a {
    background-image : url(images/icons/social/icon-dribbble.svg);
}

.header-content__social .ss-behance a {
    background-image : url(images/icons/social/icon-behance.svg);
}

/* ------------------------------------------------------------------- 
 * ## toggles - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.header-toggle {
    display      : flex;
    align-items  : center;
    margin-right : var(--gutter);
}

/* search toggle
 */
.header-toggle__search {
    display     : flex;
    align-items : center;
}

.header-toggle__search svg {
    height    : 2.6rem;
    width     : 2.6rem;
    position  : relative;
    transform : translateY(1px);
}

.header-toggle__search svg path {
    fill : white;
}

/* menu toggle
 */
.header-toggle__menu {
    display        : none;
    height         : 4.2rem;
    width          : 4.2rem;
    line-height    : 4.2rem;
    font-family    : var(--font-2);
    font-size      : 1.4rem;
    text-transform : uppercase;
    letter-spacing : .3em;
    color          : rgba(255, 255, 255, 0.5);
    margin-left    : .2rem;
    position       : relative;
}

.header-toggle__menu:focus,
.header-toggle__menu:hover {
    color : white;
}

.header-toggle__menu span {
    display          : block;
    width            : 1.6rem;
    height           : 2px;
    margin-top       : -1px;
    background-color : white;
    font             : 0/0 a;
    text-shadow      : none;
    color            : transparent;
    position         : absolute;
    top              : 50%;
    left             : 9px;
    right            : auto;
    bottom           : auto;
}

.header-toggle__menu span::before,
.header-toggle__menu span::after {
    content          : '';
    width            : 2.4rem;
    height           : 100%;
    background-color : inherit;
    position         : absolute;
    left             : 0;
}

.header-toggle__menu span::before {
    top : -8px;
}

.header-toggle__menu span::after {
    bottom : -8px;
}

/* ------------------------------------------------------------------- 
 * ## transition animations - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.s-header,
.header-branding .logo-text,
.header-content__menu a,
.header-toggle__search svg,
.header-toggle__menu span {
    transition-duration        : .3s;
    transition-timing-function : ease-in-out;
}

.s-header,
.header-toggle__menu span {
    transition-property : background-color;
}

.header-branding .logo-text,
.header-content__menu a {
    transition-property : color;
}

.header-toggle__search svg {
    transition-property : all;
}

.s-header.ss-light {
    background-color : white;
}

.s-header.ss-light .s-header__container {
    min-height    : var(--header-height);
    border-bottom : 1px solid var(--color-border);
}

.s-header.ss-light .header-branding .logo-text {
    color : var(--color-text-dark);
}

.s-header.ss-light .header-content__menu a {
    color : rgba(0, 0, 0, 0.5);
}

.s-header.ss-light .header-content__menu .current-menu-item a {
    color : black;
}

.s-header.ss-light .header-content__menu .ss-highlight a {
    background-color : var(--color-text-dark);
    color            : white;
}

.s-header.ss-light .header-toggle__search svg path {
    fill : var(--color-text-dark);
}

.s-header.ss-light .header-toggle__menu span {
    background-color : var(--color-text-dark);
    height           : 2px;
}

/* -------------------------------------------------------------------
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-header__container {
        width   : 100%;
        padding : 0 .8rem;
    }

    .header-branding .logo {
        width : 1.5rem;
    }

    .header-branding .logo-text {
        font-size : 2.4rem;
    }
}

@media screen and (max-width: 1100px) {
    .header-content {
        margin-right : 4rem;
    }

    .header-content__menu {
        font-size : 1.3rem;
    }
}

@media screen and (max-width: 1000px) {
    .header-content {
        z-index          : 401;
        display          : flex;
        flex-flow        : column nowrap;
        background-color : white;
        opacity          : 0;
        visibility       : hidden;
        position         : fixed;
        top              : 0;
        left             : 0;
        right            : 0;
        bottom           : 0;
        width            : 100%;
        height           : 100%;
        padding-top      : var(--vspace-1_5);
        padding-right    : 4rem;
        padding-bottom   : 8rem;
        padding-left     : 7%;
    }

    .header-content__title,
    .header-content__close,
    .header-content__social {
        display : block;
    }

    .header-content__title {
        opacity          : 0;
        transform        : translate(-150px, 0);
        transition       : all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition-delay : .35s;
    }

    .header-content__menu {
        display        : block;
        margin-left    : 0;
        font-family    : var(--font-2);
        font-weight    : 600;
        font-size      : 3.8rem;
        line-height    : 1.5;
        letter-spacing : -.03em;
        margin-top     : 8rem;
        margin-bottom  : var(--vspace-2);
        overflow       : hidden;
        position       : relative;
    }

    .header-content__menu li {
        opacity : 0;
    }

    .s-header.ss-light .header-content__menu a,
    .header-content__menu .current-menu-item a,
    .header-content__menu a {
        color : var(--color-text-dark);
    }

    .s-header.ss-light .header-content__menu a:focus,
    .s-header.ss-light .header-content__menu a:hover,
    .header-content__menu .current-menu-item a:focus,
    .header-content__menu .current-menu-item a:hover,
    .header-content__menu a:focus,
    .header-content__menu a:hover {
        color : var(--color-1);
    }

    .s-header.ss-light .header-content__menu .ss-highlight a,
    .header-content__menu .ss-highlight a {
        background-color : transparent;
        color            : var(--color-text-dark);
        padding          : 0;
    }

    .s-header.ss-light .header-content__menu .ss-highlight a::before,
    .header-content__menu .ss-highlight a::before {
        display : none;
    }

    .s-header.ss-light .header-content__menu .ss-highlight a::after,
    .header-content__menu .ss-highlight a::after {
        display          : inline-block;
        content          : "";
        height           : 6px;
        width            : 6px;
        background-color : var(--color-2);
        border-radius    : 50%;
        margin-left      : var(--vspace-0_5);
        vertical-align   : middle;
    }

    .s-header.ss-light .header-content__menu .ss-highlight a:focus,
    .s-header.ss-light .header-content__menu .ss-highlight a:hover,
    .header-content__menu .ss-highlight a:focus,
    .header-content__menu .ss-highlight a:hover {
        color : var(--color-1);
    }

    .header-content__social a {
        opacity : 1;
    }

    .header-toggle__menu {
        display : block;
    }

    .menu-is-open .header-content {
        transition : all .3s;
        overflow-y : auto;
        opacity    : 1;
        visibility : visible;
    }

    .menu-is-open .header-content__title {
        opacity   : 1;
        transform : translate(0, 0);
    }

    .menu-is-open .header-content__menu li {
        -webkit-animation : fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
        animation         : fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
    }

    .menu-is-open .header-content__menu li:nth-of-type(2) {
        -webkit-animation-delay : .4s;
        animation-delay         : .4s;
    }

    .menu-is-open .header-content__menu li:nth-of-type(3) {
        -webkit-animation-delay : .45s;
        animation-delay         : .45s;
    }

    .menu-is-open .header-content__menu li:nth-of-type(4) {
        -webkit-animation-delay : .5s;
        animation-delay         : .5s;
    }

    .menu-is-open .header-content__menu li:nth-of-type(5) {
        -webkit-animation-delay : .55s;
        animation-delay         : .55s;
    }

    .menu-is-open .header-content__menu li:nth-of-type(6) {
        -webkit-animation-delay : .6s;
        animation-delay         : .6s;
    }

    .menu-is-open .header-content__menu li:nth-of-type(7) {
        -webkit-animation-delay : .65s;
        animation-delay         : .65s;
    }

    .menu-is-open .header-content__social {
        -webkit-animation : fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
        animation         : fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
    }

    .menu-is-open .header-toggle .header-toggle__search {
        display : none;
    }
}

@media screen and (max-width: 800px) {
    .s-header.ss-light .s-header__container {
        min-height : var(--header-height);
    }
}

@media screen and (max-width: 500px) {
    .header-content__menu {
        font-size : 3.4rem;
    }
}

@media screen and (max-width: 400px) {
    .header-branding .logo {
        width : 1.4rem;
    }

    .header-branding .logo-text {
        font-size : 2.3rem;
    }

    .header-content__title {
        font-size : 11px;
    }

    .header-content__close {
        right : 1.2rem;
    }

    .header-content__menu {
        font-size : 3.2rem;
    }
}

@media screen and (max-width: 350px) {
    .header-content__menu {
        font-size : 2.6rem;
    }
}


/* ===================================================================
 * # SEARCH BLOCK - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.s-search {
    --input-text-size       : 6rem;
    --input-text-multiplier : 1;
    z-index                 : 401;
    display                 : block;
    background              : white;
    opacity                 : 0;
    visibility              : hidden;
    position                : fixed;
    top                     : 0;
    left                    : 0;
    right                   : 0;
    bottom                  : 0;
    width                   : 100%;
    height                  : 100%;
    transition              : all .3s;
    text-align              : center;
}

.search__form {
    width     : 100%;
    position  : absolute;
    top       : 50%;
    transform : translateY(-50%);
}

.search__form::after {
    content        : "Press Enter to begin your search.";
    display        : block;
    font-family    : var(--font-1);
    font-size      : calc(var(--text-size) * 0.8889);
    letter-spacing : 0.6px;
    color          : var(--color-text-light);
    margin-top     : var(--vspace-1);
    text-align     : center;
}

.search input[type="search"] {
    background-color : transparent;
    color            : var(--color-text-dark);
    height           : auto;
    width            : 100%;
    max-width        : 640px;
    font-family      : var(--font-2);
    font-weight      : 600;
    font-size        : calc(var(--input-text-size) * var(--input-text-multiplier));
    line-height      : 1.6;
    padding-top      : .6rem !important;
    padding-bottom   : .6rem !important;
    margin           : 0 auto;
    border           : none;
    border-bottom    : 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow       : none;
    text-align       : center;
}

.search input[type="search"]::-webkit-search-decoration,
.search input[type="search"]::-webkit-search-cancel-button,
.search input[type="search"]::-webkit-search-results-button,
.search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance : none;
}

.search input[type="search"]::-webkit-input-placeholder {
    color      : var(--color-text-dark);
    text-align : center !important;
    opacity    : 1;
}

.search input[type="search"]:-moz-placeholder {
    color      : var(--color-text-dark);
    text-align : center !important;
    opacity    : 1;
}

.search input[type="search"]::-moz-placeholder {
    color      : var(--color-text-dark);
    text-align : center !important;
    opacity    : 1;
}

.search input[type="search"]:-ms-input-placeholder {
    color      : var(--color-text-dark);
    text-align : center !important;
    opacity    : 1;
}

.search input[type="search"].placeholder {
    color      : var(--color-text-dark);
    text-align : center !important;
    opacity    : 1;
}

.search input[type="search"]:focus {
    outline : none;
}

.search input[type="submit"] {
    display : none;
}

.search__close {
    position    : fixed;
    display     : block;
    width       : 44px;
    height      : 44px;
    margin-left : -22px;
    font        : 0/0 a;
    text-shadow : none;
    color       : transparent;
    top         : 2.4rem;
    left        : 50%;
}

.search__close::before,
.search__close::after {
    content          : '';
    position         : absolute;
    display          : inline-block;
    width            : 2px;
    height           : 20px;
    top              : 12px;
    left             : 22px;
    background-color : var(--color-text-dark);
}

.search__close::before {
    transform : rotate(45deg);
}

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

.search-is-visible .s-search {
    opacity    : 1;
    visibility : visible;
}

/* -------------------------------------------------------------------
 * responsive:
 * search
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-search {
        --input-text-multiplier : 0.7;
    }

    .search input[type="search"] {
        max-width : none;
        width     : 80%;
    }
}

@media screen and (max-width: 600px) {
    .s-search {
        --input-text-multiplier : 0.6;
    }
}

@media screen and (max-width: 500px) {
    .s-search {
        --input-text-multiplier : 0.533;
    }
}

@media screen and (max-width: 400px) {
    .s-search {
        --input-text-multiplier : 0.46;
    }
}


/* ===================================================================
 * # CONTENT - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.s-content {
    padding-top : var(--header-height);
}

.s-content--single-post {
    margin-bottom: var(--vspace-2);
}

.content-header {
    padding-top : var(--vspace-3);
    text-align  : center;
}

.content-header--home {
    padding-top : var(--vspace-2_5);
}

.content-intro {
    max-width    : 720px;
    margin-left  : auto;
    margin-right : auto;
}

.content-entries .content-main__ad-block {
    margin-bottom : var(--vspace-2);
}

.content-no-posts {
    text-align   : center;
    max-width    : 800px;
    margin-right : auto;
    margin-left  : auto;
}

/* ------------------------------------------------------------------- 
 * ## content entry - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-entry h1 a,
.content-entry h2 a,
.content-entry h3 a {
    color : var(--color-text-dark);
}

.content-entry h1 a:focus,
.content-entry h1 a:hover,
.content-entry h1 a:active,
.content-entry h2 a:focus,
.content-entry h2 a:hover,
.content-entry h2 a:active,
.content-entry h3 a:focus,
.content-entry h3 a:hover,
.content-entry h3 a:active {
    color : var(--color-1);
}

.content-entry.ss-blog-post h2 {
    font-size   : var(--text-lg);
    line-height : calc(1.125 * var(--space));
}

/* ------------------------------------------------------------------- 
 * ## content main - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main-wrap {
    margin-top    : var(--vspace-1_5);
    margin-bottom : var(--vspace-3);
}

.content-main-wrap--big-top-margin {
    margin-top : var(--vspace-3);
}

.content-main {
    display         : flex;
    flex-flow       : row nowrap;
    justify-content : space-between;
    position        : relative;
    /* wp gutenberg image block
     */
}

.content-main h1:first-child,
.content-main h2:first-child,
.content-main h3:first-child,
.content-main h4:first-child,
.content-main .wp-block-image:first-child {
    margin-top : 0;
}

.content-main a strong {
    color : var(--color-1);
}

.content-main a:focus strong,
.content-main a:hover strong {
    color : black;
}

.content-main .wp-block-image {
    margin : 0;
}

.content-main .wp-block-image img {
    object-fit : cover;
}

.content-main .btn {
    width        : 100%;
    margin-top   : var(--vspace-1);
    margin-right : 0;
}

.content-main .btn+.btn,
.content-main .likeus+.btn {
    margin-top : 0;
}

.content-main form {
    margin : var(--vspace-1_5) 0 var(--vspace-1_75);
}

.content-main form div,
.content-main form input[type="submit"] {
    margin-top    : 0;
    margin-bottom : var(--vspace-1);
}

.content-main form input[type="email"],
.content-main form input[type="number"],
.content-main form input[type="search"],
.content-main form input[type="text"],
.content-main form input[type="tel"],
.content-main form input[type="url"],
.content-main form input[type="password"],
.content-main form textarea,
.content-main form select {
    margin-bottom : 0;
}

.content-main__thumb {
    margin-bottom : var(--vspace-1_5);
    max-width     : 650px;
}

.content-main__thumb img {
    margin : 0;
}

.content-main__left {
    flex  : none;
    width : calc(100% - 300px - (var(--gutter) * 2.4));
}

.content-main__left .wp-block-image,
.content-main__left blockquote,
.content-main__left pre {
    margin-top    : var(--vspace-1_5);
    margin-bottom : var(--vspace-1_5);
}

.content-main__right {
    flex  : none;
    width : 300px;
}

/* ------------------------------------------------------------------- 
 * ## credits - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main__linklist {
    list-style  : none;
    margin-left : 0;
    padding     : 0;
}

.content-main__linklist li {
    padding-left : 0;
    display      : inline-block;
}

.content-main__linklist li::after {
    content       : "|";
    padding-left  : 8px;
    padding-right : 8px;
    color         : rgba(0, 0, 0, 0.15);
}

.content-main__linklist li:last-child::after {
    display : none;
}

.content-main__linklist a {
    display : inline-block;
    color   : var(--color-text);
}

.content-main__linklist a:hover,
.content-main__linklist a:focus {
    color : black;
}

/* ------------------------------------------------------------------- 
 * ## price block - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main__block-price {
    background-color : var(--color-gray-1);
    padding          : var(--vspace-2) var(--vspace-1_25) var(--vspace-1_25);
    margin-top       : var(--vspace-1_5);
    margin-bottom    : var(--vspace-1_5);
    text-align       : center;
}

.content-main__block-price--white {
    background-color : var(--color-bg);
    padding-top      : var(--vspace-1);
}

.content-main__block-price .price {
    display        : inline-block;
    font-family    : var(--font-2);
    font-size      : 15rem;
    font-weight    : 700;
    line-height    : 1;
    letter-spacing : -.03em;
    color          : var(--color-text-dark);
    position       : relative;
}

.content-main__block-price .price span {
    font-weight : 600;
    font-size   : 4.8rem;
    position    : absolute;
    top         : 2.4rem;
    left        : -3rem;
}

.content-main__block-price .info {
    max-width : 300px;
    margin    : var(--vspace-0_75) auto 0;
}

.content-main__block-price .info .desc {
    margin-bottom : 0;
    font-size     : calc(var(--text-size) * 0.9444);
    line-height   : var(--vspace-0_875);
}

.content-main__block-price h5 {
    margin-top : 0;
}

/* ------------------------------------------------------------------- 
 * ## post tags - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main__tags {
    margin-top  : var(--vspace-1_5);
    line-height : var(--vspace-1);
}

.content-main__tags span {
    font-weight   : 600;
    font-size     : var(--text-size);
    color         : var(--color-text-dark);
    padding-right : 5.6rem;
    margin-right  : 1.6rem;
    margin-top    : var(--vspace-0_375);
    position      : relative;
}

.content-main__tags span::after {
    display          : inline-block;
    content          : "";
    height           : 1px;
    width            : 40px;
    background-color : rgba(0, 0, 0, 0.15);
    position         : absolute;
    top              : 50%;
    right            : 0;
}

.content-main__tags .tag-list {
    display       : inline-block;
    padding-right : 0;
    margin-right  : 0;
}

.content-main__tags .tag-list::after {
    display : none;
}

.content-main__tags .tag-list a {
    display       : inline-block;
    font-size     : var(--text-sm);
    font-weight   : 400;
    color         : var(--color-text);
    border        : 1px solid rgba(0, 0, 0, 0.15);
    border-radius : 3px;
    margin-right  : 6px;
    margin-bottom : 8px;
    padding       : 0 10px;
}

.content-main__tags .tag-list a:hover,
.content-main__tags .tag-list a:focus {
    background-color : var(--color-text-dark);
    border-color     : var(--color-text-dark);
    color            : white;
}

.content-main__tags .tag-list a:last-child {
    margin-right : 0;
}

/* ------------------------------------------------------------------- 
 * ## jetpack sharing style overrides - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main .sharedaddy {
    margin-top : var(--vspace-1);
}

.content-main .sharedaddy h3.sd-title {
    font-weight : 600;
    font-size   : var(--text-size);
    color       : var(--color-text-dark);
}

.content-main .sharedaddy h3.sd-title::before {
    display : none;
}

/* ------------------------------------------------------------------- 
 * ## author box - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main__author {
    background-color : var(--color-gray-1);
    padding          : var(--vspace-1_25) var(--vspace-1) var(--vspace-1);
    margin-top       : var(--vspace-2);
    margin-bottom    : var(--vspace-1);
    font-size        : calc(var(--text-size) * 0.8889);
    line-height      : var(--vspace-0_875);
    position         : relative;
}

.content-main__author img {
    position      : absolute;
    top           : var(--vspace-1_25);
    left          : 3rem;
    height        : 7.2rem;
    width         : 7.2rem;
    border-radius : 50%;
}

.content-main__author-info {
    padding-left : 9.6rem;
}

.content-main__author-title {
    font-family   : var(--font-1);
    font-weight   : 600;
    margin-top    : 0;
    margin-bottom : var(--vspace-0_25);
}

/* ------------------------------------------------------------------- 
 * ## main content ad block - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-main__ad-block {
    background-color : var(--color-gray-1);
    max-width        : 640px;
    padding          : var(--vspace-1_5) 0;
    margin-top       : var(--vspace-1_5);
    margin-bottom    : var(--vspace-1_5);
    text-align       : center;
    overflow         : hidden;
}

.content-main__ad-block img {
    vertical-align : bottom;
    margin         : 0;
}

/* ------------------------------------------------------------------- 
 * ## nav wrap - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.nav-wrap {
    margin-bottom : var(--vspace-1);
}

.nav-wrap .column:first-child {
    margin-bottom : var(--vspace-0_5);
}

.nav-wrap .btn {
    margin : 0;
}

.nav-wrap .pgn p {
    margin-bottom : 0;
}

/* ------------------------------------------------------------------- 
 * ## sidebar - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.sidebar__box,
.sidebar__ad {
    margin-bottom : var(--vspace-1);
}

.sidebar__ad {
    background-color : var(--color-gray-1);
    text-align       : center;
    overflow         : hidden;
}

.sidebar__ad img {
    vertical-align : bottom;
    margin         : 0;
}

.sidebar__sticky .btn,
.sidebar__group .btn {
    margin : 0 0 var(--vspace-1);
}

.sidebar__sticky hr,
.sidebar__group hr {
    margin-bottom : var(--vspace-1);
}

/* sticky sidebar
 */
.sidebar__sticky {
    position : -webkit-sticky;
    position : sticky;
    top      : calc(var(--header-height) + 3.2rem);
    /*top      : var(--header-height);*/
}

/* sidebar text ad
 */
.sidebar__text-ad {
    padding       : 0 var(--vspace-0_75) var(--vspace-1);
    margin-bottom : var(--vspace-1);
}

.sidebar__text-ad .ad-text {
    display        : block;
    font-size      : var(--text-sm);
    line-height    : var(--vspace-0_875);
    padding-bottom : var(--vspace-0_5);
    color          : var(--color-text);
    margin-bottom  : 0;
}

.sidebar__text-ad .ad-text strong {
    display       : block;
    font-family   : var(--font-2);
    font-weight   : 700;
    font-size     : calc(var(--text-size) * 0.8889);
    margin-bottom : var(--vspace-0_25);
    color         : black;
}

.sidebar__text-ad .ad-text:focus,
.sidebar__text-ad .ad-text:hover {
    color : var(--color-black);
}

.sidebar__text-ad span {
    color : var(--color-1);
}

.sidebar__text-ad .btn {
    margin : 0;
}

/* ------------------------------------------------------------------- 
 * ## error 404 - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.error-404 {
    max-width    : 700px;
    margin-right : auto;
    margin-left  : auto;
}

.error-404 h1 {
    font-size   : 30rem;
    line-height : 1;
}

.error-404 h3 {
    margin-top    : calc(var(--vspace-1) * -1);
    margin-bottom : 6rem;
}

.error-404 h1,
.error-404 h3 {
    text-align : center;
}

/* ------------------------------------------------------------------- 
 * ## related items - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-related {
    margin      : 0 0 var(--vspace-1);
    padding-top : var(--vspace-1);
}

.content-related.with-top-border {
    border-top  : 1px solid var(--color-border);
    padding-top : var(--vspace-1_5);
}

.content-related h3,
.content-related h4,
.content-related h5,
.content-related h6 {
    margin-top : 0;
}

.content-related h3 a,
.content-related h4 a,
.content-related h5 a,
.content-related h6 a {
    color : var(--color-1);
}

.content-related .related {
    list-style  : none;
    margin-top  : var(--vspace-1);
    margin-left : calc((var(--gutter) * 2) * -1);
    display     : flex;
    flex-flow   : row wrap;
}

.content-related .related li {
    flex          : none;
    width         : 33.33333%;
    margin-bottom : var(--vspace-0_5);
    padding-left  : calc(var(--gutter) * 2);
}

.content-related .related a {
    display     : block;
    font-family : var(--font-1);
    font-weight : 600;
    font-size   : calc(var(--text-size) * 0.8889);
    line-height : var(--vspace-0_875);
    color       : var(--color-text-dark);
    position    : relative;
}

.content-related .related a .related__thumb {
    position : relative;
}

.content-related .related a .related__thumb::before {
    content          : "";
    display          : block;
    background-color : rgba(0, 0, 0, 0.3);
    position         : absolute;
    top              : 0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    width            : 100%;
    height           : 100%;
    opacity          : 0;
    visibility       : hidden;
    transition       : all .5s;
}

.content-related .related a span {
    display    : block;
    margin-top : 1.2rem;
}

.content-related .related a:focus,
.content-related .related a:hover {
    color : var(--color-1);
}

.content-related .related a:focus .related__thumb::before,
.content-related .related a:hover .related__thumb::before {
    opacity    : 1;
    visibility : visible;
}

.content-related .related img {
    margin         : 0 !important;
    vertical-align : bottom;
}

.content-related+.content-related {
    margin-top  : 0;
    padding-top : 0;
    border-top  : none;
}

/* ------------------------------------------------------------------- 
 * ## comments - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.content-comments {
    margin      : var(--vspace-2) 0;
    padding-top : 4rem;
}

.content-comments h3 {
    margin-top : 0;
}

.content-comments.with-top-border {
    border-top : 1px solid var(--color-border);
}

/* ------------------------------------------------------------------- 
 * ## content home blog - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.content-home-blog {
    margin-top     : var(--vspace-2);
    padding-top    : var(--vspace-1);
    padding-bottom : var(--vspace-1);
}

.content-home-blog .blog-listing {
    border-top : 1px solid var(--color-border);
    position   : relative;
}

.content-home-blog .blog-listing::before {
    display          : block;
    content          : "";
    width            : 1px;
    height           : 100%;
    background-color : var(--color-border);
    pointer-events   : none;
    position         : absolute;
    top              : 0;
    bottom           : 0;
    left             : 50%;
}

.content-home-blog article {
    padding-top    : var(--vspace-1_25);
    padding-bottom : var(--vspace-1_25);
    border-bottom  : 1px solid var(--color-border);
}

.content-home-blog article:nth-child(2n + 1) {
    padding-right : 4.4rem;
}

.content-home-blog article:nth-child(2n + 2) {
    padding-left : 4.4rem;
}

.content-home-blog p {
    margin-bottom : var(--vspace-0_75);
}

.content-home-blog h3 {
    margin-top    : 0;
    margin-bottom : var(--vspace-1_5);
    text-align    : center;
}

.content-home-blog h2 {
    margin-top : 0;
}

.content-home-blog h2 a {
    color : var(--color-text-dark);
}

.content-home-blog h2 a:focus,
.content-home-blog h2 a:hover {
    color : var(--color-1);
}

.content-home-blog .more-wrap a {
    font-family    : var(--font-2);
    font-weight    : 700;
    font-size      : calc(var(--text-size) * 0.65);
    text-transform : uppercase;
    letter-spacing : .2em;
    color          : var(--color-text-dark);
    display        : inline-block;
}

.content-home-blog .more-wrap a:focus,
.content-home-blog .more-wrap a:hover {
    color : var(--color-1);
}

/* -------------------------------------------------------------------
 * responsive:
 * content
 * ------------------------------------------------------------------- */
@media screen and (max-width: 960px) {
    .content-intro {
        max-width : 600px;
    }

    .content-main-wrap {
        max-width : 640px;
    }

    .content-main {
        display : block;
    }

    .content-main__left,
    .content-main__right {
        width : 100%;
    }

    .content-main__left {
        margin-bottom : var(--vspace-2);
    }

    .sidebar__sticky {
        position : static;
    }

    .sidebar__text-ad {
        background-color : var(--color-gray-1);
        margin-top       : var(--vspace-1_5);
        padding          : var(--vspace-1) var(--vspace-1);
    }
}

@media screen and (max-width: 800px) {
    .error-404 h1 {
        font-size : 26rem;
    }

    .content-related .related li {
        flex  : none;
        width : 50%;
    }

    .content-home-blog article:nth-child(2n + 1) {
        padding-right : 3.2rem;
    }

    .content-home-blog article:nth-child(2n + 2) {
        padding-left : 3.2rem;
    }
}

@media screen and (max-width: 680px) {
    .content-intro {
        width : 90%;
    }

    .content-intro br {
        display : none;
    }

    .content-home-blog .blog-listing::before {
        display : none;
    }

    .content-home-blog article:nth-child(2n + 1) {
        padding-right : var(--gutter);
    }

    .content-home-blog article:nth-child(2n + 2) {
        padding-left : var(--gutter);
    }
}

@media screen and (max-width: 600px) {
    .content-header {
        padding-top : var(--vspace-2_5);
    }

    .content-header--home {
        padding-top : var(--vspace-2);
    }

    .content-entries .content-main__ad-block,
    .content-entries .entry {
        margin-bottom : var(--vspace-1_5);
    }

    .content-main-wrap {
        margin-top : var(--vspace-1_25);
    }

    .content-main-wrap--big-top-margin {
        margin-top : var(--vspace-2);
    }

    .content-main__block-price .price {
        font-size : 12rem;
    }

    .content-main__block-price .price span {
        font-size : 3.2rem;
        top       : 2rem;
        left      : -2.2rem;
    }

    .error-404 h1 {
        font-size : 22rem;
    }

    .error-404 h3 {
        margin-top : -1.6rem;
    }
}

@media screen and (max-width: 500px) {
    .content-main__author {
        padding-top : var(--vspace-1_5);
        text-align  : center;
    }

    .content-main__author img {
        position      : static;
        display       : inline-block;
        height        : 6rem;
        width         : 6rem;
        margin-bottom : var(--vspace-0_25);
    }

    .content-main__author-info {
        padding-left : 0;
    }

    .error-404 h1 {
        font-size : 16rem;
    }
}

@media screen and (max-width: 420px) {

    .content-main__ad-block,
    .sidebar__ad {
        margin-right     : calc((6vw + var(--gutter)) * -1);
        margin-left      : calc((6vw + var(--gutter)) * -1);
        padding          : 0;
        background-color : transparent;
        overflow         : hidden;
    }

    .content-related .related li {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 400px) {

    .content-main__ad-block,
    .sidebar__ad {
        margin-right : -6vw;
        margin-left  : -6vw;
    }

    .error-404 h1 {
        font-size : 13.2rem;
    }

    .content-home-blog article:nth-child(2n + 1) {
        padding-right : 0;
    }

    .content-home-blog article:nth-child(2n + 2) {
        padding-left : 0;
    }
}


/* ===================================================================
 * # MID-AD - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.mid-ad {
    margin-top    : var(--vspace-1);
    margin-bottom : var(--vspace-2);
}

.mid-ad .column {
    padding  : 0 80px;
    position : relative;
}

.mid-ad__block {
    text-align : center;
    overflow   : hidden;
}

.mid-ad__block img {
    vertical-align : bottom;
    margin         : 0;
}

/* -------------------------------------------------------------------
 * responsive:
 * mid-ad
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1080px) {
    .mid-ad .column {
        padding : 0 var(--gutter);
    }
}

@media screen and (max-width: 420px) {
    .mid-ad__block {
        margin-right     : calc((6vw + var(--gutter)) * -1);
        margin-left      : calc((6vw + var(--gutter)) * -1);
        padding          : 0;
        background-color : transparent;
        overflow         : hidden;
    }
}

@media screen and (max-width: 400px) {
    .mid-ad__block {
        margin-right : -6vw;
        margin-left  : -6vw;
    }
}

/* ===================================================================
 * # SITE FOOTER - (_site-layout.scss)
 *
 *
 * ------------------------------------------------------------------- */
.s-footer {
    margin-top : auto;
}

.s-footer h4 {
    margin-top : 0;
}

.footer-top {
    padding-top : var(--vspace-1_5);
}

/* ------------------------------------------------------------------- 
 * ## footer top - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.footer-top .column {
    display   : flex;
    flex-flow : column wrap;
}

.footer-top .column .btn {
    margin : auto 0 0 0;
}

/* ------------------------------------------------------------------- 
 * ## footer menu - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.footer-menu {
    list-style      : none;
    display         : flex;
    justify-content : center;
    flex-flow       : row wrap;
    font-family     : var(--font-2);
    font-weight     : 600;
    text-align      : center;
    margin          : var(--vspace-3) 0 var(--vspace-1_25) 0;
}

.footer-menu li {
    margin : .4rem 1.4rem .4rem;
}

.footer-menu a {
    display : block;
    color   : var(--color-text-dark);
}

/* ------------------------------------------------------------------- 
 * ## copyright - (_site-layout.scss)
 * ------------------------------------------------------------------- */
.copyright span {
    display   : inline-block;
    font-size : var(--text-sm);
    color     : var(--color-text);
}

.copyright span::after {
    content : "|";
    display : inline-block;
    padding : 0 1rem 0 1.2rem;
    color   : rgba(0, 0, 0, 0.3);
}

.copyright span:last-child::after {
    display : none;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    z-index    : 2;
    opacity    : 0;
    visibility : hidden;
    transform  : translate(0, 200%);
    transition : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position   : fixed;
    bottom     : 6.4rem;
    right      : 4rem;
}

.ss-go-top a {
    display          : flex;
    align-items      : center;
    justify-content  : center;
    text-decoration  : none;
    border           : 0 none;
    height           : 6rem;
    width            : 6rem;
    border-radius    : 50%;
    background-color : var(--color-text-dark);
    transition       : all .3s;
    position         : relative;
}

.ss-go-top svg {
    height : 2.2rem;
    width  : 2.2rem;
}

.ss-go-top svg path {
    fill : white;
}

.ss-go-top.link-is-visible {
    opacity    : 1;
    visibility : visible;
    transform  : translate(0, 0);
}

/* -------------------------------------------------------------------
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .ss-go-top {
        bottom : 4.2rem;
        right  : 2rem;
    }

    .ss-go-top a {
        height : 5.6rem;
        width  : 5.6rem;
    }

    .ss-go-top svg {
        height : 2rem;
        width  : 2rem;
    }
}

@media screen and (max-width: 800px) {
    .footer-top .column {
        margin-bottom : var(--vspace-1_75);
    }

    .footer-top .column:last-child {
        margin-bottom : 0;
    }

    .ss-go-top {
        bottom : 4.8rem;
        right  : 2.4rem;
    }

    .ss-go-top a {
        height : 5.2rem;
        width  : 5.2rem;
    }
}

@media screen and (max-width: 600px) {
    .s-footer h4 {
        text-align : center;
    }

    .copyright span {
        display : block;
    }

    .copyright span::after {
        display : none;
    }

    .ss-go-top {
        bottom : 3.6rem;
        right  : 2rem;
    }

    .ss-go-top a {
        height : 4.8rem;
        width  : 4.8rem;
    }
}

@media screen and (max-width: 400px) {
    .ss-go-top {
        bottom : 3.2rem;
        right  : 1.6rem;
    }

    .ss-go-top a {
        height : 4.4rem;
        width  : 4.4rem;
    }

    .ss-go-top svg {
        height : 1.8rem;
        width  : 1.8rem;
    }
}