/* =================================================================== 
 * Calvin Main Stylesheet
 * Template Ver. 1.0.0
 * 10-07-2020
 * ------------------------------------------------------------------
 *
 * TOC:
 * # settings and variables
 *      ## fonts
 *      ## colors
 *      ## vertical spacing and typescale
 *      ## grid variables
 *  # normalize
 *  # basic/base setup styles
 *      ## media
 *      ## typography resets
 *      ## links
 *      ## inputs
 *  # Grid v3.0.0
 *      ## medium screen devices
 *      ## tablets
 *      ## mobile devices
 *      ## small mobile devices <= 400px
 *  # block grids
 *      ## block grids - medium screen devices
 *      ## block grids - tablets
 *      ## block grids - mobile devices 
 *      ## block grids - small mobile devices <= 400px
 *  # MISC
 *  # custom grid, block grid STACK breakpoints
 *  # base style overrides
 *      ## links
 *  # typography & general theme styles
 *      ## lists
 *      ## responsive video container
 *      ## floated image
 *      ## tables
 *      ## spacing
 *  # preloader
 *      ## page loaded
 *  # forms
 *      ## style placeholder text
 *      ## change autocomplete styles in Chrome 
 *  # buttons
 *  # additional components
 *      ## additional typo styles
 *      ## skillbars
 *      ## alert box
 *      ## pagination
 *  # common and reusable styles
 *      ## animation stuff
 *      ## close button for search & mobile nav
 *      ## bricks masonry
 *      ## masonry entries
 *  # site header
 *      ## header logo
 *      ## main navigation
 *      ## header-toggle
 *      ## header-search
 *      ## search triggers
 *  # hero
 *      ## hero slider
 *      ## hero social
 *      ## hero slider nav arrows
 *  # content wrap
 *      ## pageheader
 *      ## content media
 *      ## content entry header
 *      ## content primary
 *  # footer
 *      ## footer main
 *      ## footer bottom
 *      ## go top
 *  # blog styles and blog components
 *      ## blog comments 
 *
 * ------------------------------------------------------------------ */


/* ===================================================================
 * # settings and variables
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:300,400,700");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");


@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600&display=swap");


:root {
    --font-1: "Inter", sans-serif;
    --font-2: "Great Vibes", cursive;
    --font-3: "DM Serif Display", Serif;
    /*--font-3: "Lora", serif;*/
    /* monospace
     */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {

    /* color-1(#0A369D)
     * color-2(#C1292E)
     */
    --color-1: #5453a3;
    --color-2: #5453a3;
    --color-3: #ffffff;
    --color-4: #3d73d3;
    --color-5: #d4abf9;

    /* theme color variations
     */
    --color-1-lighter: hsla(222, 88%, 53%, 1);
    --color-1-light  : hsla(222, 88%, 43%, 1);
    --color-1-dark   : hsla(222, 88%, 23%, 1);
    --color-1-darker : hsla(222, 88%, 13%, 1);
    --color-2-lighter: hsla(358, 65%, 66%, 1);
    --color-2-light  : hsla(358, 65%, 56%, 1);
    --color-2-dark   : #3c3b8d;
    --color-2-darker : #2c2c75;
    --color-5-dark   : #9d61d3;

    /* 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);

    /* shades 
     * generated using 
     * Tint & Shade Generator 
     * (https://maketintsandshades.com/)
     */
    --color-black  : #000000;
    --color-gray-19: #0a0a0a;
    --color-gray-18: #141414;
    --color-gray-17: #1e1e1e;
    --color-gray-16: #282828;
    --color-gray-15: #323333;
    --color-gray-14: #3b3d3d;
    --color-gray-13: #454747;
    --color-gray-12: #4f5151;
    --color-gray-11: #595b5b;
    --color-gray-10: #636565;
    --color-gray-9 : #737474;
    --color-gray-8 : #828484;
    --color-gray-7 : #929393;
    --color-gray-6 : #a1a3a3;
    --color-gray-5 : #b1b2b2;
    --color-gray-4 : #c1c1c1;
    --color-gray-3 : #d0d1d1;
    --color-gray-2 : #e0e0e0;
    --color-gray-1 : #eff0f0;
    --color-white  : #ffffff;

    /* text
     */
    --color-text: var(--color-gray-16);
    --color-text-dark: var(--color-black);
    --color-text-light: var(--color-gray-7);
    --color-placeholder: var(--color-gray-7);

    /* buttons
     */
    --color-btn: var(--color-gray-3);
    --color-btn-text: var(--color-black);
    --color-btn-hover: var(--color-black);
    --color-btn-hover-text: var(--color-white);
    --color-btn-primary: var(--color-5);
    --color-btn-primary-text: var(--color-black);
    --color-btn-primary-hover: var(--color-5-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);
    --color-btn-secondary: var(--color-2);
    --color-btn-secondary-text: var(--color-white);
    --color-btn-secondary-hover: var(--color-2-dark);
    --color-btn-secondary-hover-text: var(--color-white);

    /* others
     */
    --color-bg: var(--color-gray-1);
    --color-border: #eeeeee;
    --color-border-1: rgba(255,255,255,0.4);
}

/* ------------------------------------------------------------------- 
 * ## vertical spacing and typescale
 * ------------------------------------------------------------------- */
:root {

    /* spacing
     * base font size: 18px 
     * vertical space unit : 32px
     */
    --base-size: 62.5%;
    --base-font-size: 1.8rem;
    --space: 3.2rem;

    /* vertical spacing 
     */
    --vspace-0_125: calc(0.125 * var(--space));
    --vspace-0_25 : calc(0.25 * var(--space));
	--vspace-0_4 : calc(0.4 * var(--space));
    --vspace-0_5  : calc(0.5 * 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));
    --vspace-5_5  : calc(5.5 * var(--space));
    --vspace-6    : calc(6 * var(--space));
    --vspace-6_5  : calc(6.5 * var(--space));
     --vspace-7  : calc(7 * var(--space));
      --vspace-7_5  : calc(7.5 * var(--space));
       --vspace-8  : calc(8 * var(--space));
      --vspace-8_5  : calc(8.5 * var(--space));
           --vspace-9  : calc(9 * var(--space));
      --vspace-9_5  : calc(9.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-1_5);
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --base-font-size: 1.4rem;
        --space: 2.2rem;
    }
}

/* ------------------------------------------------------------------- 
 * ## grid variables
 * ------------------------------------------------------------------- */
:root {

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

    /* gutters
     */
    --gutter-lg : 2.4rem;
    --gutter-md : 2rem;
    --gutter-mob: 1rem;
}


/* ==========================================================================
 * # normalize
 * normalize.css v8.0.1 | MIT License |
 * github.com/necolas/normalize.css
 *
 * -------------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## document
 * ------------------------------------------------------------------- */

/* 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.*/

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## sections
 * ------------------------------------------------------------------- */

/* Remove the margin in all browsers. */

body {
    margin: 0;
}

/* Render the `main` element consistently in IE. */

main {
    display: block;
}

/* Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari. */

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

/* ------------------------------------------------------------------- 
 * ## grouping
 * ------------------------------------------------------------------- */

/* 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## text-level semantics
 * ------------------------------------------------------------------- */

/* Remove the gray background on active links in IE 10. */

a {
    background-color: transparent;
}

/* 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/* Add the correct font weight in Chrome, Edge, and Safari. */

b, strong {
    font-weight: bolder;
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

code, kbd, samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Add the correct font size in all browsers. */

small {
    font-size: 80%;
}

/* Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers. */

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* ------------------------------------------------------------------- 
 * ## embedded content
 * ------------------------------------------------------------------- */

/* Remove the border on images inside links in IE 10. */

img {
    border-style: none;
}

/* ------------------------------------------------------------------- 
 * ## forms
 * ------------------------------------------------------------------- */

/* 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari. */

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

/* Show the overflow in IE.
 * 1. Show the overflow in Edge. */

button, input {
    /* 1 */
    overflow: visible;
}

/* Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */

button, select {
    /* 1 */
    text-transform: none;
}

/* Correct the inability to style clickable types in iOS and Safari. */

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

/* Remove the inner border and padding in Firefox. */

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

/* Restore the focus styles unset by the previous rule. */

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

/* Correct the padding in Firefox. */

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

/* 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers. */

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera. */

progress {
    vertical-align: baseline;
}

/* Remove the default vertical scrollbar in IE 10+. */

textarea {
    overflow: auto;
}

/* 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10. */

[type="checkbox"], [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/* Correct the cursor style of increment and decrement buttons in Chrome. */

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/* 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/* Remove the inner padding in Chrome and Safari on macOS. */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## interactive
 * ------------------------------------------------------------------- */

/* Add the correct display in Edge, IE 10+, and Firefox. */

details {
    display: block;
}

/* Add the correct display in all browsers. */

summary {
    display: list-item;
}

/* ------------------------------------------------------------------- 
 * ## misc
 * ------------------------------------------------------------------- */

/* Add the correct display in IE 10+. */

template {
    display: none;
}

/* Add the correct display in IE 10. */

[hidden] {
    display: none;
}


/* ===================================================================
 * # basic/base setup styles
 *
 * ------------------------------------------------------------------- */
html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

body {
    font-weight: normal;
    line-height: 1;
    word-wrap: break-word;
    -moz-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
}

/* ------------------------------------------------------------------- 
 * ## media
 * ------------------------------------------------------------------- */
svg, img, video embed, iframe, object {
    max-width: 100%;
    height: auto;
}

iframe {margin-bottom: 25px; display: block}

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

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

em, i {
    font-style: italic;
    line-height: inherit;
}

strong, b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 60%;
    line-height: inherit;
}

ol, ul {
    list-style: none;
}

li {
    display: block;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
    text-decoration: none;
    line-height: inherit;
}

a img {
    border: none;
}

/* ------------------------------------------------------------------- 
 * ## inputs
 * ------------------------------------------------------------------- */
fieldset {
    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 v3.0.0
 *
 *   -----------------------------------------------------------------
 * - 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.
 * ------------------------------------------------------------------- */

/* rows
 * ------------------------------------- */
.row {
    width: 92%;
    max-width: var(--width-grid-max);
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

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

/* columns
 * -------------------------------------- */
.column {
    -ms-flex: 1 1 0%;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding: 0 var(--gutter-lg);
}

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

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

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

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

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

.row.row-y-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.row.row-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.row.row-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
}

.row.row-x-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.row.row-x-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.row.row-x-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

/* flex item utility alignment classes
 */
.align-center {
    margin: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-left {
    margin-right: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-right {
    margin-left: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

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

.align-x-left {
    margin-right: auto;
}

.align-x-right {
    margin-left: auto;
}

.align-y-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-y-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-y-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

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

/* large screen column widths 
 */
.large-1 {
    -ms-flex: 0 0 8.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.large-2 {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.large-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.large-4 {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.large-5 {
    -ms-flex: 0 0 41.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.large-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.large-7 {
    -ms-flex: 0 0 58.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.large-8 {
    -ms-flex: 0 0 66.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.large-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}

.large-10 {
    -ms-flex: 0 0 83.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.large-11 {
    -ms-flex: 0 0 91.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.large-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .row .row {
        margin-left: calc(var(--gutter-md) * -1);
        margin-right: calc(var(--gutter-md) * -1);
    }
    .column {
        padding: 0 var(--gutter-md);
    }
    .medium-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .medium-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .medium-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .medium-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .medium-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .medium-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .medium-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .medium-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .medium-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .medium-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .medium-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .medium-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .row {
        width: 90%;
    }
    .tab-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .tab-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .tab-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .tab-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .tab-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .tab-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tab-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .tab-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .tab-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .tab-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .tab-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .tab-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-tablet {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
 * ## mobile devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .row .row {
        margin-left: calc(var(--gutter-mob) * -1);
        margin-right: calc(var(--gutter-mob) * -1);
        padding-left: 0;
        padding-right: 0;
    }
    .column {
        padding: 0 var(--gutter-mob);
    }
    .mob-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .mob-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .mob-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mob-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .mob-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .mob-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .mob-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .mob-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .mob-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .mob-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .mob-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .mob-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-mobile {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
 * ## small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left: 0;
        margin-right: 0;
    }
    .column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .hide-on-mobile-small {
        display: none;
    }
}


/* ===================================================================
 * # block grids
 *
 * -------------------------------------------------------------------
 * Equally-sized columns define at parent/row level.
 * ------------------------------------------------------------------- */
.block-large-1-8>.column {
    -ms-flex: 0 0 12.5%;
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.block-large-1-6>.column {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.block-large-1-5>.column {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
}

.block-large-1-4>.column {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.block-large-1-3>.column {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.block-large-1-2>.column {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.block-large-full>.column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## block grids - medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .block-medium-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-medium-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-medium-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-medium-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-medium-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-medium-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-medium-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .block-tab-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-tab-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-tab-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-tab-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-tab-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-tab-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-tab-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - mobile devices 
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .block-mob-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-mob-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-mob-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-mob-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-mob-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-mob-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-mob-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}


/* ===================================================================
 * # MISC
 *
 * ------------------------------------------------------------------- */
.h-group:after {
    content: "";
    display: table;
    clear: both;
}

/* misc helper classes
 */
.is-hidden {
    display: none;
}

.is-invisible {
    visibility: hidden;
}

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

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

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

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

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

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

.h-add-bottom {
    margin-bottom: var(--vspace-1) !important;
}

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

.h-full-width {
    width: 100%;
}

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

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

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

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

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

.is-style-space-top-none {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.is-style-space-bottom-none {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.is-style-space-none {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===================================================================
 * # custom grid, block grid STACK breakpoints
 *
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .w-1000-stack, .block-1000-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .w-700-stack, .block-700-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .w-500-stack, .block-500-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
    font-size: var(--base-size);
}

html, body {
    height: 100%;
}

body {
    background: var(--color-bg);
    font-family: var(--font-1);
    font-size: var(--text-size);
    font-style: normal;
    font-weight: normal;
    line-height: var(--vspace-1);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

body.inner {
    background: white;
}

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

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

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

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */

/* 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)
 * -------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
    font-style: normal;
    color: var(--color-text-dark);
    -webkit-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 400;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: var(--font-3);
}

h6, .h6 {
    font-family: var(--font-1);
}

h1, .h1 {
    margin-top: 0;
    margin-bottom: var(--vspace-0_75);
    font-family: var(--font-3);
}

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

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

h1, .h1 {
    font-size: var(--text-display-1);
    line-height: calc(var(--vspace-1_75) + var(--vspace-0_125));
}

@media screen and (max-width: 1200px) {
    h1, .h1 {
        font-size: var(--text-xxxl);
        line-height: var(--vspace-1_75);
    }
}

h2, .h2 {
    font-size: var(--text-xxl);
    line-height: calc(var(--vspace-1_25) + var(--vspace-0_125));
}

h3, .h3 {
    font-size: var(--text-xl);
    line-height: var(--vspace-1_25);
}

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

h5, .h5 {
    font-size: var(--text-md);
    line-height: calc(0.875 * var(--space));
}

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

.lead, .attention-getter {
    font-weight: 300;
    font-size: var(--text-md);
    line-height: calc(1.125 * var(--space));
    color: var(--color-text-dark);
}

.lead-main, .is-style-lead-main {
font-family: var(--font-3);
    font-size: var(--text-xxl);
    line-height: 1.1;
	text-align: center;
	margin-top:0;
	margin-bottom: var(--vspace-1_5);
	padding-bottom: var(--vspace-1);
    position: relative;
    text-align:center;
}

.lead-main::before, .is-style-lead-main:before {
    content: "";
    display: block;
    width: 18%;
    height: 1px;
    background-color: var(--color-5);
    position: absolute;
    bottom: 0;
    left: calc(50% - 18% / 2);
}

@media screen and (max-width: 400px) {
    .lead, .attention-getter {
        font-size: calc(var(--text-size) * 1.0556);
    }
}

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

em, i, strong, b {
    font-size: inherit;
    line-height: inherit;
}

em, i {
    font-family: var(--font-1);
    font-style: italic;
}

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

small {
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: var(--vspace-0_5);
}

blockquote {
    margin: 0 0 var(--vspace-1) 0;
    padding: var(--vspace-1) var(--vspace-1_5);
    border-left: 4px solid 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-size: var(--text-lg);
    font-weight: 400;
    font-style: normal;
    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;
}

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

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

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

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-1);
    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-3);
    color: var(--color-text);
    border-radius: 3px;
}

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

del {
    text-decoration: line-through;
}

abbr {
    font-family: var(--font-1);
    font-weight: 400;
    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-notice);
    color: var(--color-black);
}

hr {
    clear: both;
    margin: var(--vspace-1) 0 calc(var(--vspace-1) - .2rem);
    height: 0;
    border-top: 1px solid var(--color-gray-4)!Important;
}

hr.fancy {
    border: none!Important;
    text-align: center;
}

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

@media screen and (max-width: 600px) {
hr {
    margin: var(--vspace-0_75) 0 calc(var(--vspace-0_75) - .2rem);
}
}

/* ------------------------------------------------------------------- 
 * ## lists
 * ------------------------------------------------------------------- */
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: 1.6rem 0 1.6rem 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: var(--vspace-0_25);
    height: var(--vspace-0_25);
    border-radius: 50%;
    background: var(--color-1-dark);
    position: absolute;
    left: -.9em;
    top: .65em;
    vertical-align: middle;
}

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

dd {
    margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## 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%;
}

/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */
img.h-pull-right {
    margin: var(--vspace-0_5) 0 var(--vspace-0_5) 2.8rem;
}

img.h-pull-left {
    margin: var(--vspace-0_5) 2.8rem var(--vspace-0_5) 0;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */

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) - .1rem);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    padding: var(--vspace-0_5) 3.2rem;
    color: var(--color-text-dark);
    font-family: var(--font-1);
    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;
}

/* ------------------------------------------------------------------- 
 * ## spacing
 * ------------------------------------------------------------------- */
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-0_5);
}

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


/* =================================================================== 
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    background: black;
    z-index: 500;
    height: 100vh;
    width: 100%;
    opacity: 1;
}

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

#loader {
    width: var(--vspace-1_5);
    height: var(--vspace-1_5);
    padding: 0;
    opacity: 1;
}

#loader:before {
    content: "";
    border-top: 4px solid rgba(255, 255, 255, 0.15);
    border-right: 4px solid rgba(255, 255, 255, 0.15);
    border-bottom: 4px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid white;
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
    display: block;
    border-radius: 50%;
    width: var(--vspace-1_5);
    height: var(--vspace-1_5);
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .6s .9s ease-in-out;
    transition: all .6s .9s ease-in-out;
}

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


/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
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-1_5);
    --input-line-height: var(--vspace-1);
    --input-vpadding: calc((var(--input-height) - var(--input-line-height)) / 2);
    display: block;
    height: var(--input-height);
    padding: var(--input-vpadding) 12px calc(var(--input-vpadding) - .1rem);
    border: 0;
    outline: none;
    color: var(--color-text);
    font-family: var(--font-1);
    font-size: calc(var(--text-size) * 0.9778);
    line-height: var(--input-line-height);
    max-width: 100%;
    background: white;
    border: 1px solid var(--color-gray-4);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.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;
    line-height: 3rem;
    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 var(--color-black);
    border-right: 2px solid var(--color-black);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

textarea {
    min-height: 25.6rem;
}

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);
    border-bottom: 2px solid var(--color-black);
}

label, legend, .nf-field-label .nf-label-span, .nf-field-label label {
    font-family: var(--font-1);
    font-weight: 700;
    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: .2rem;
}

/* NINJA FORMS */

.nf-form-fields-required {font-size:12px}

.nf-form-cont {
	background: rgba(0, 0, 0, 0.02);
	border: solid 1px var(--color-gray-2);
	padding: 20px 30px;
}

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

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

.placeholder {
    color: var(--color-placeholder) !important;
}

/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus input:-webkit-autofill, 
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);
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn, 
button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"] {
    --btn-height: var(--vspace-btn);
    display: inline-block;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
	text-transform: uppercase;
    font-size: var(--text-s);
    height: var(--btn-height);
    line-height: calc(var(--btn-height) - .4rem);
    padding: 0 3.2rem;
    margin: 0 .4rem 1.6rem 0;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 0.2rem solid var(--color-btn-primary);
    border-radius: 5px;
    
    background: var(--color-btn-primary);
    color: var(--color-btn-primary-text);

}

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

/* 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:hover, 
button.btn--primary:hover, 
input[type="submit"].btn--primary:hover, 
input[type="reset"].btn--primary:hover, 
input[type="button"].btn--primary:hover, 
.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 {
    background: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover);
    color: var(--color-btn-primary-hover-text);
}

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

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

/* button modifiers
 * ------------------------------------------------- */
.btn.h-full-width, button.h-full-width {
    width: 100%;
    margin-right: 20px;
}

.btn.h-half-width, button.h-half-width {
    width: calc(50% - 0px);
    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 !important;
    border: 0.2rem solid var(--color-btn-stroke);
    color: var(--color-btn-stroke-text);
}

.btn--stroke:hover, button.btn--stroke:hover {
    background: var(--color-btn-stroke-hover) !important;
    border: 0.2rem 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;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* block button 
 * ------------------------------------------------- */
 
.wp-block-button__link {
    background: var(--color-btn-primary)!Important;
    border-color: var(--color-btn-primary)!Important;
    color: var(--color-btn-primary-text)!Important;
    height: auto!Important;
    text-decoration: none!Important;
    text-align: center!Important;
    white-space: nowrap!Important;
    cursor: pointer!Important;
    -webkit-transition: all .3s!Important;
    transition: all .3s!Important;
    -webkit-font-smoothing: antialiased!Important;
    -moz-osx-font-smoothing: grayscale!Important;
    border-radius: 5px!Important;
    --btn-height: var(--vspace-btn)!Important;
    display: inline-block!Important;
    font-family: 'Fira Sans', sans-serif!Important;
    font-weight: 400!Important;
	text-transform: uppercase!Important;
    font-size: var(--text-s)!Important;
    line-height: normal;
    padding: 14px 3.2rem!Important;
    margin: 0 .4rem 1.6rem 0!Important;
    white-space: wrap!Important;
    
}
.wp-block-button__link:hover {
    background: var(--color-btn-primary-hover)!Important;
    border-color: var(--color-btn-primary-hover)!Important;
    color: var(--color-btn-primary-hover-text)!Important;
    outline: 0
}


@media screen and (max-width: 600px) {
.btn, 
button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"],
.wp-block-button__link {
    padding: 8px 1.2rem;
    margin: 0 0 1.2rem 0;
    white-space: wrap;
    height: auto;
    line-height: normal
}
}

/* =================================================================== 
 * # additional components
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## additional typo styles
 * ------------------------------------------------------------------- */
.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-text-dark);
}

/* line definition 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;
}

/* dictionary definition 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) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <figure class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 * </figure>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
    position: relative;
    padding: 0;
    margin-top: 0;
    text-align: center;
    background-color: var(--color-gray-1);
}

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

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

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

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.stats-tabs {
    padding: 0;
    margin: var(--vspace-1) 0;
}

.stats-tabs li {
    display: inline-block;
    margin: 0 1.6rem var(--vspace-0_5) 0;
    padding: 0 1.5rem 0 0;
    border-right: 1px solid var(--color-border);
}

.stats-tabs li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.stats-tabs li a {
    display: inline-block;
    font-size: var(--text-lg);
    font-family: var(--font-1);
    font-weight: 700;
    line-height: var(--vspace-1_5);
    border: none;
    color: var(--color-black);
}

.stats-tabs li a:hover {
    color: var(--color-1);
}

.stats-tabs li a em {
    display: block;
    margin: 0;
    font-family: var(--font-1);
    font-size: var(--text-sm);
    line-height: var(--vspace-0_5);
    font-weight: normal;
    font-style: normal;
    color: var(--color-text-light);
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
    list-style: none;
    margin: var(--vspace-2) 0 var(--vspace-1);
}

.skill-bars li {
    height: .4rem;
    background: var(--color-gray-3);
    width: 100%;
    margin-bottom: calc(var(--vspace-2) - .4rem);
    padding: 0;
    position: relative;
}

.skill-bars li strong {
    position: absolute;
    left: 0;
    top: calc((var(--vspace-1) * 1.25) * -1);
    font-family: var(--font-1);
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: calc(var(--text-size) * 0.7778);
    line-height: calc(0.75 * var(--space));
}

.skill-bars li .progress {
    background: var(--color-black);
    position: relative;
    height: 100%;
}

.skill-bars li .progress span {
    position: absolute;
    right: 0;
    top: calc((var(--vspace-1) + .8rem)* -1);
    display: block;
    font-family: var(--font-1);
    color: white;
    font-size: 1rem;
    line-height: 1;
    background: var(--color-black);
    padding: calc(0.25 * var(--space)) calc(0.25 * var(--space));
    border-radius: 4px;
}

.skill-bars li .progress span::after {
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -5px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: var(--color-black, var(--color-black));
    content: "";
}

.skill-bars li .percent5 {
    width: 5%;
}
.skill-bars li .percent10 {
    width: 10%;
}
.skill-bars li .percent15 {
    width: 15%;
}
.skill-bars li .percent20 {
    width: 20%;
}
.skill-bars li .percent25 {
    width: 25%;
}
.skill-bars li .percent30 {
    width: 30%;
}
.skill-bars li .percent35 {
    width: 35%;
}
.skill-bars li .percent40 {
    width: 40%;
}
.skill-bars li .percent45 {
    width: 45%;
}
.skill-bars li .percent50 {
    width: 50%;
}
.skill-bars li .percent55 {
    width: 55%;
}
.skill-bars li .percent60 {
    width: 60%;
}
.skill-bars li .percent65 {
    width: 65%;
}
.skill-bars li .percent70 {
    width: 70%;
}
.skill-bars li .percent75 {
    width: 75%;
}
.skill-bars li .percent80 {
    width: 80%;
}
.skill-bars li .percent85 {
    width: 85%;
}
.skill-bars li .percent90 {
    width: 90%;
}
.skill-bars li .percent95 {
    width: 95%;
}
.skill-bars li .percent100 {
    width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## alert box
 * ------------------------------------------------------------------- */
.alert-box {
    padding: var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom: var(--vspace-1);
    border-radius: 4px;
    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: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

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

.alert-box__close::after {
    -webkit-transform: rotate(-45deg);
    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;
    -webkit-transition: all .5s;
    transition: all .5s;
}

/* -------------------------------------------------------------------
 * ## pagination
 * ------------------------------------------------------------------- */
.pgn {
    --pgn-num-height: calc(var(--vspace-1) + .4rem);
    margin: var(--vspace-1_5) auto var(--vspace-2);
    text-align: center;
}

.pgn ul {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    list-style: none;
    margin-left: 0;
    padding: 0 8.8rem;
    text-align: center;
    position: relative;
}

.pgn ul li {
    margin: 0;
    padding: 0;
}

.pgn__num, .pgn__prev, .pgn__next {
    position: relative;
}

.pgn__num::after, .pgn__prev::after, .pgn__next::after {
    content: "";
    display: block;
    background-color: black;
    height: 2px;
    width: 0;
    -webkit-transition: width, .3s, ease-in-out;
    transition: width, .3s, ease-in-out;
    position: absolute;
    left: 0;
    bottom: 0;
}

.pgn__num {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-size);
    line-height: var(--vspace-1);
    display: inline-block;
    padding: .2rem 1.2rem;
    height: var(--pgn-num-height);
    margin: .2rem .4rem;
    color: var(--color-text-dark);
    -webkit-transition: all, .3s, ease-in-out;
    transition: all, .3s, ease-in-out;
}

.pgn__num:not(.dots):hover {
    color: black;
}

.pgn__num:not(.dots):hover::after {
    width: 100%;
}

.pgn .current {
    background-color: var(--color-gray-18);
    color: var(--color-white);
}

.pgn .current::after {
    display: none;
}

.pgn .current:hover {
    color: white;
}

.pgn .disabled, 
.pgn .inactive, 
.pgn .inactive:hover {
    opacity: 0.4;
    cursor: default;
}

.pgn .disabled::after, 
.pgn .inactive::after, 
.pgn .inactive:hover::after {
    display: none;
}

.pgn__prev, .pgn__next {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-size);
    color: black;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: var(--pgn-num-height);
    line-height: var(--vspace-1);
    padding: 0;
    margin: 0;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all, .3s, ease-in-out;
    transition: all, .3s, ease-in-out;
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.pgn__prev:hover, .pgn__next:hover {
    color: black;
}

.pgn__prev:hover::after, 
.pgn__next:hover::after {
    width: 100%;
}

.pgn__prev svg, .pgn__next svg {
    height: 2.4rem;
    width: 2.4rem;
    -webkit-transition: all, .3s, ease-in-out;
    transition: all, .3s, ease-in-out;
}

.pgn__prev svg path, 
.pgn__next svg path {
    fill: var(--color-text-dark);
}

.pgn__prev:hover svg path, 
.pgn__prev:focus svg path, 
.pgn__next:hover svg path, 
.pgn__next:focus svg path {
    fill: white;
}

.pgn__prev {
    left: 0;
}

.pgn__next {
    right: 0;
}

.pgn__prev.inactive, 
.pgn__next.inactive {
    opacity: 0.4;
    cursor: default;
}

.pgn__prev.inactive:hover, 
.pgn__next.inactive:hover {
    background-color: transparent;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * pagination
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .pgn ul {
        padding: 0 6.4rem;
    }
    .pgn__num {
        margin: .2rem .2rem;
    }
}


/* ===================================================================
 * # common and reusable styles
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width: var(--width-wide);
}

.narrow {
    max-width: 800px;
}

.sticky-block {
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
}

/* ------------------------------------------------------------------- 
 * ## animation stuff
 * ------------------------------------------------------------------- */
.animate-this {
    opacity: 0;
    visibility: hidden;
}

.no-js .animate-this, 
.no-cssanimations .animate-this {
    opacity: 1;
    visibility: visible;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
    animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}

/* fade in up */

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ------------------------------------------------------------------- 
 * ## close button for search & mobile nav
 * ------------------------------------------------------------------- */
.s-header__overlay-close {
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    display: block;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    position: absolute;
    top: 20px;
    right:45px;
}

.s-header__overlay-close:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.s-header__overlay-close::before, 
.s-header__overlay-close::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 24px;
    top: 13px;
    left: 24px;
    background-color: white;
    position: absolute;
}

.s-header__overlay-close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.s-header__overlay-close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- 
 * ## bricks masonry
 * ------------------------------------------------------------------- */
.s-bricks {
    --brick-padding: 4rem;
    padding-top: var(--vspace-4);
    padding-bottom: var(--vspace-2_25);
    background-color: white;
}

.s-bricks--half-top-padding {
    padding-top: var(--vspace-2);
}

.s-bricks .masonry {
    max-width: 1520px;
    width: 94%;
    margin: 0 auto var(--vspace-2);
    overflow: hidden;
}

.s-bricks .pagination {
    margin-top: 6rem;
}

.bricks-wrapper {
    position: relative;
    margin-top: calc(var(--brick-padding) * -1);
}

.bricks-wrapper .lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bricks-wrapper .lines span {
    height: 100%;
    width: 1px;
    background-color: var(--color-border);
    position: absolute;
    top: 0;
    bottom: 0;
}

.bricks-wrapper .lines span:nth-child(1) {
    /*left: 25%;*/
	left: 33.33%;
}

.bricks-wrapper .lines span:nth-child(2) {
    /*left: 50%;*/
	left: 66.66%;
}

.bricks-wrapper .lines span:nth-child(3) {
    left: 100%;
}

.bricks-wrapper .grid-sizer, .bricks-wrapper .brick {
    /*width: 25%;*/
	width: 33.3333%;
}

.bricks-wrapper .brick {
    float: left;
    padding: var(--brick-padding) var(--brick-padding) 0;
    border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------------- 
 * ## masonry entries 
 * ------------------------------------------------------------------- */
.bricks-wrapper .entry__thumb {
    overflow: hidden;
    position: relative;
}

.bricks-wrapper .entry__thumb img {
    vertical-align: bottom;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.bricks-wrapper .entry__thumb .thumb-link::before {
    z-index: 1;
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.bricks-wrapper .entry__thumb .thumb-link::after {
    z-index: 1;
    display: block;
    content: "...";
    font-family: georgia, serif;
    font-size: 3.2rem;
    height: 90px;
    width: 90px;
    letter-spacing: .2rem;
    line-height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    text-align: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 50%;
    top: 50%;
}

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

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

.bricks-wrapper .entry__thumb:hover .thumb-link img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.bricks-wrapper .entry__text {
    padding: 2.8rem 0 3.6rem;
}

.bricks-wrapper .entry__title {
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: calc(var(--vspace-1) + var(--vspace-0_125));
    margin-top: 0;
    margin-bottom: calc(0.375 * var(--space));
}

.bricks-wrapper .entry__title a, 
.bricks-wrapper .entry__title a:visited {
    color: black;
}

.bricks-wrapper .entry__title a:hover, 
.bricks-wrapper .entry__title a:focus {
    color: rgba(0, 0, 0, 0.8);
}

.bricks-wrapper .entry__meta {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: calc(var(--text-size) * 0.7778);
    line-height: 1.5;
    margin-bottom: var(--vspace-0_75);
}

.bricks-wrapper .entry__meta a {
    color: var(--color-text-light);
}

.bricks-wrapper .entry__meta a:focus, 
.bricks-wrapper .entry__meta a:hover {
    color: black;
}

.bricks-wrapper .entry__meta .byline, 
.bricks-wrapper .entry__meta .cat-links {
    display: inline-block;
}

.bricks-wrapper .entry__meta .byline {
    margin-right: .8rem;
}

.bricks-wrapper .entry__meta .cat-links a::after {
    content: ", ";
}

.bricks-wrapper .entry__meta .cat-links a:last-child::after {
    display: none;
}

.bricks-wrapper .entry__excerpt {
    font-size: 1.5rem;
    line-height: 1.733;
}

.bricks-wrapper .entry__excerpt p {
    margin-bottom: var(--vspace-0_75);
}

.bricks-wrapper .entry__more-link {
    display: inline-block;
    font-size: calc(var(--text-size) * 0.8111);
    text-transform: uppercase;
    letter-spacing: .15em;
    color: black;
    border-bottom: 1px solid transparent;
}

.bricks-wrapper .entry__more-link:hover, 
.bricks-wrapper .entry__more-link:focus {
    border-bottom: 1px solid black;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1500px) {
    .s-bricks {
        --brick-padding: 3.4rem;
    }
}

@media screen and (max-width: 1400px) {
    .s-bricks {
        --brick-padding: 4rem;
    }
    .bricks-wrapper .lines span:nth-child(1) {
        left: 33.3333%;
    }
    .bricks-wrapper .lines span:nth-child(2) {
        left: 66.6666%;
    }
    .bricks-wrapper .lines span:nth-child(3) {
        display: none;
    }
    .bricks-wrapper .grid-sizer, .bricks-wrapper .brick {
        width: 33.3333%;
    }
}

@media screen and (max-width: 1200px) {
    .s-bricks {
        --brick-padding: 3.2rem;
    }
}

@media screen and (max-width: 1040px) {
    .s-bricks {
        --brick-padding: 4rem;
    }
    .bricks-wrapper .lines span:nth-child(1) {
        left: 50%;
    }
    .bricks-wrapper .lines span:nth-child(2) {
        display: none;
    }
    .bricks-wrapper .grid-sizer, .bricks-wrapper .brick {
        width: 50%;
    }
}

@media screen and (max-width: 800px) {
    .s-bricks {
        --brick-padding: 3.2rem;
    }
}

@media screen and (max-width: 640px) {
    .s-bricks {
        --brick-padding: 4rem;
    }
    .s-bricks .masonry {
        max-width: 500px;
    }
    .bricks-wrapper .lines {
        display: none;
    }
    .bricks-wrapper .grid-sizer, .bricks-wrapper .brick {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .s-bricks .masonry {
        width: 100%;
    }
    .bricks-wrapper .brick {
        padding-right: 8vw;
        padding-left: 8vw;
    }
    .bricks-wrapper .entry__title {
        font-size: calc(var(--text-size) * 1.648);
    }
}


/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
    --header-height: 9.8rem;
    --logo-width: 340px;
    --logo-height: 54px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.s-header:hover {
    /*background-color: rgba(0, 0, 0, 0.6);*/
	background-color: rgba(255, 255, 255, 0.85);
}

.s-header--opaque {
   /* background-color: #404e56;*/
}

.s-header--solid {
background: white;
position: relative;
}

.inner .s-header {
   background-color: #404e56;
}

.inner .s-header:hover {
	background-color: #303f48
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.s-header__logo {
    z-index: 101;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% - 3px);
    left: 4rem;
}

@media screen and (max-width: 1000px) {
.s-header__logo {
    left: 2rem;
}
}

.s-header__logo a {
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.s-header__logo img {
    width: var(--logo-width);
    height: var(--logo-height);
    margin: 0;
    vertical-align: bottom;
}

/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.s-header__navigation {
    max-width: var(--width-wide);
    height: auto;
    padding: var(--gutter-lg);
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.s-header__nav-wrap {
    margin-right: auto;
	/*margin: 0 auto;*/
}

.s-header__nav-wrap .s-header__nav-heading {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: calc(var(--text-size) * 0.7778);
    letter-spacing: .4em;
    margin-top: var(--vspace-3);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.s-header__nav-wrap .s-header__nav-heading, 
.s-header__nav-wrap .close-mobile-menu {
    display: none;
}

.s-header--opaque .s-header__nav-wrap, .s-header--center {
    margin: 0 auto;
}

/*@media screen and (max-width: 1360px) {
.s-header--opaque .s-header__nav-wrap, .s-header--center {
    margin-left: 130px;
}
}*/

@media screen and (max-width: 1200px) {
.s-header {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
}

}

@media screen and (max-width: 1000px) {
.s-header--opaque .s-header__nav-wrap, .s-header--center {
    margin-left: 0px;
}
}

.s-header__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 1.5rem;
	font-family: 'Fira Sans', sans-serif;
	text-transform: uppercase;
}

.s-header__nav li {
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.s-header__nav li.menu-item-has-children {
    padding-right: 2rem;
}

.s-header__nav li a {
    display: block;
    color: black;
    line-height: var(--header-height);
    position: relative;
    font-weight: 600;
}

.s-header__nav li.current-menu-item a {
    color: #9d61d3;
    text-decoration: underline;
    text-underline-offset: 4px; 
}

.s-header__nav li li.current-menu-item a {
    color: #fff;
}

.s-header__nav li.menu-item-has-children>a::after {
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    content: '';
    display: block;
    height: 5px;
    width: 5px;
    margin-top: -6px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    right: -1.2rem;
    top: calc(50% + 2px);
}

.s-header__nav li:hover>a, .s-header__nav li:focus>a {
    color: var(--color-btn-primary);
}

.s-header__nav li:hover li, .s-header__nav li:focus li {
    background: transparent;
}

.s-header__nav li.current>a {
    color: black;
    font-weight: 600;
}

.s-header__nav li.current>a:hover {
    color: #9d61d3;
}

.s-header__nav li ul {
    z-index: 200;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 0;
    padding: 1.8rem 0;
    background: rgba(60, 59, 141, 1);
    border-radius: 0 0 4px 4px;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    top: calc(100%);
    left: 0;
}

.s-header__nav li ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    left: calc(100% + 1px);
    border-radius: 0 0 4px 4px;
    padding-top: 1.2rem;
}

.s-header__nav li ul li {
    display: block;
    text-align: left;
    padding: 0;
    margin: 0;
    min-height: 3.2rem;
    width: 100%;
}

.s-header__nav li ul li a {
    display: block;
    white-space: nowrap;
    padding: .7rem 3rem .7rem 2rem;
    font-family: var(--font-1);
    line-height: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.s-header__nav li ul li a:hover, .s-header__nav li ul li a:focus {
    color:var(--color-btn-primary);
}

.s-header__nav li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 900px) {
	.s-header__nav li.nav-space {display:none!important}
}

/* ------------------------------------------------------------------- 
 * ## header-toggle
 * ------------------------------------------------------------------- */
.s-header__toggle-menu {
    display: none;
    width: 48px;
    height: 48px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: 2rem;
    top: 50%;
}

.s-header__toggle-menu span {
    display: block;
    background-color: black;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    width: 28px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    right: 10px;
    top: 50%;
    bottom: auto;
    left: auto;
}

.s-header__toggle-menu span::before, 
.s-header__toggle-menu span::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: inherit;
    left: 0;
}

.s-header__toggle-menu span::before {
    top: -10px;
}

.s-header__toggle-menu span::after {
    bottom: -10px;
}

/* ------------------------------------------------------------------- 
 * ## header-search
 * ------------------------------------------------------------------- */
.s-header__search {
    z-index: 300;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s .5s;
    transition: all .3s .5s;
}

.s-header__search .s-header__overlay-close {
    margin-top: -23px;
    top: 50%;
    right: 4rem;
    left: auto;
}

.s-header__search-inner {
    background-color: black;
    height: var(--header-height);
    width: 100%;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 0.5s 0.3s cubic-bezier(0, 0.55, 0.45, 1);
    transition: -webkit-transform 0.5s 0.3s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform 0.5s 0.3s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform 0.5s 0.3s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.5s 0.3s cubic-bezier(0, 0.55, 0.45, 1);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
}

.s-header__search-form {
    width: 100%;
    padding: 0 var(--gutter-lg);
    margin: 0;
}

.s-header__search-form label {
    margin: 0;
}

.s-header__search-form input[type="search"] {
    --input-height: var(--header-height);
    background-color: transparent;
    color: white;
    height: auto;
    width: 100%;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-md);
    line-height: 1;
    border: transparent;
    margin: 0;
}

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

.s-header__search-form input[type="search"]::-webkit-input-placeholder {
    color: white;
    opacity: 1;
}

.s-header__search-form input[type="search"]:-moz-placeholder {
    color: white;
    opacity: 1;
}

.s-header__search-form input[type="search"]::-moz-placeholder {
    color: white;
    opacity: 1;
}

.s-header__search-form input[type="search"]:-ms-input-placeholder {
    color: white;
    opacity: 1;
}

.s-header__search-form input[type="search"].placeholder {
    color: white;
    opacity: 1;
}

.s-header__search-form input[type="search"]:focus {
    outline: none;
    color: white;
}

.s-header__search-form input[type="submit"] {
    display: none;
}

body.search-is-visible {
    overflow: hidden;
}

.search-is-visible .s-header__search {
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    visibility: visible;
}

.search-is-visible .s-header__search-inner {
    -webkit-transform: none;
    transform: none;
}

/* -------------------------------------------------------------------
 * ## search triggers
 * ------------------------------------------------------------------- */
.s-header__search-trigger, .s-header__telephone, .s-header__email {
    width: 4rem;
    height: 4rem;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 4.4rem;
}

.s-header__donate.btn--secondary, .s-header__contact.btn--primary {
    width: auto;
    height: auto;
    right: 4.4rem;
    position: absolute;
    margin: 0;
    line-height: normal;
    padding: 0.9rem 3rem;
    --btn-height: auto;
    font-size: 1.5rem;
}

.s-header__contact.btn--primary {
    right: 18.3rem;
}

.s-header__donate.btn--secondary {
    background: var(--color-btn-secondary);
    border-color: var(--color-btn-secondary);
    color: var(--color-btn-secondary-text);
}

.s-header__telephone {
	width: 19rem;
	color: black;
}

@media screen and (max-width: 1228px) {
.s-header__telephone {
    width: 6rem;
    color: black;
}
}

@media screen and (max-width: 1090px) {
.s-header__telephone, .s-header__email {
    display:none
}
}

.s-header__email {
	color: black;
}

.s-header__telephone:hover, .s-header__email:hover {
	color: #00b5c0
}


.s-header__telephone:after, .s-header__email:after {
   content: '0333 023 7450';
	margin-left: 12px;
	font-size: 1.8rem;
}

.s-header__email:after {
   content: 'hello@silverlining.com';
}

@media screen and (max-width: 1228px) {
.s-header__telephone:after, .s-header__email:after {
   display:none
}
}

.s-header__search-trigger svg, .s-header__telephone svg {
    height: 2.2rem;
    width: 2.2rem;
}

.s-header__email svg {
    height: 3.2rem;
    width: 2.2rem;
}

.s-header__search-trigger svg path, .s-header__telephone svg path,  .s-header__email svg path {
    fill: black;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
 
 
@media screen and (max-width: 1700px) {
    .s-header:not(.s-header--opaque) .s-header__navigation {
        margin-left: calc(var(--logo-width) + 5.2rem);
    }
}

@media screen and (max-width: 1500px) {
.s-header__logo img {
    width: 280px;
    height:auto;
}

.s-header__logo {
    left: 3rem;
}
.s-header__donate.btn--secondary, .s-header__contact.btn--primary {
    right: 3.4rem;
    padding: 0.9rem 2rem;
}
.s-header__contact.btn--primary {
    right: 15.3rem;
}
}

@media screen and (max-width: 1400px) {
    .s-header__search-form {
        padding: 0 calc(var(--gutter-lg) + 3rem) 0 var(--gutter-lg);
    }
}

@media screen and (max-width: 1300px) {
    .s-header__logo {
    left: 2rem;
}
.s-header__donate.btn--secondary, .s-header__contact.btn--primary {
    right: 2.4rem;
    padding: 0.9rem 2rem;
}
.s-header__contact.btn--primary {
    right: 14rem;
}
.s-header__logo img {
    width: 240px;
    height:auto;
}
}

@media screen and (max-width: 1280px) {
.s-header__donate.btn--secondary, .s-header__contact.btn--primary {
    display:none
}
}

@media screen and (min-width: 1251px) {
    .s-header__nav li.menu-item-has-children:hover>a::after, 
    .s-header__nav li.menu-item-has-children:focus>a::after {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    .s-header__nav li ul {
        display: block !important;
    }
    
.hide-dt {display:none!Important}
}

@media screen and (max-width: 1250px) {
.s-header__logo img {
    width:300px;
    height:auto;
}
    .s-header__logo {
        left: 2rem;
    }
    .s-header__nav-wrap {
        --color-border: var(--color-gray-1);
        z-index: 300;
        background-color: black;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border: none;
        overflow-y: auto;
    }
    .s-header__nav-wrap .s-header__nav-heading, 
    .s-header__nav-wrap .close-mobile-menu {
        display: block;
    }
    .s-header__nav-wrap .s-header__nav-heading {
        display: none;
    }
  
    .s-header__nav {
        counter-reset: ctr;
        font-family: var(--font-1);
        font-weight: 600;
        font-size: var(--text-md);
        margin: var(--vspace-2_5) 6rem var(--vspace-1);
        border-bottom: 1px dotted rgba(255, 255, 255, 0.05);
    }
    .s-header__nav>li::before {
        content: counter(ctr, decimal-leading-zero);
        counter-increment: ctr;
        display: inline;
        font-family: var(--font-1);
        font-weight: 300;
        font-size: var(--text-xs);
        color: rgba(255, 255, 255, 0.25);
        position: absolute;
        left: 0;
        top: 1.9em;
    }
    .s-header__nav li {
        display: block;
        padding: 0;
        text-align: left;
        position: relative;
    }
    .s-header__nav li ul {
        display: none;
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0 0 2rem 0;
        -webkit-transition: none !important;
        transition: none !important;
    }
    
    .s-header__nav li.menu-item-has-children>a::after {
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    height: 9px;
    width: 9px;
    margin-top: -6px;
    }
    
    .s-header__nav li.menu-item-has-children>a::after {
        top: var(--vspace-1_25);
    }
    .s-header__nav li.menu-item-has-children>a.sub-menu-is-open::after {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    .s-header__nav li ul li a {
        padding: .8rem 1.6rem .8rem 2.8rem;
    }
    .s-header__nav li.current a {
        font-weight: 600;
    }
    .s-header__nav>li {
        border-top: 1px dotted rgba(255, 255, 255, 0.3);
    }
    .s-header__nav>li a, .s-header__nav li.current>a  {
        line-height: var(--vspace-2_5);
        padding-left: 2.6rem;
        color:white!Important
    }
    .s-header__nav>li a:hover, .s-header__nav li.current>a:hover  {
        color:var(--color-5)!Important
    }
    .s-header__toggle-menu {
        display: block;
    }
    .s-header__search-trigger, .s-header__telephone {
        top: calc(50% + 1px);
        right: calc(4rem + 5rem);
    }
    .s-header__search-trigger svg, .s-header__telephone svg {
        height: 2.5rem;
        width: 2.5rem;
    }
    body.nav-wrap-is-visible {
        overflow: hidden;
    }
    .nav-wrap-is-visible .s-header__nav-wrap {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 600px) {
    .s-header__logo {
        left: 2rem;
    }
    .s-header__search-trigger, .s-header__telephone {
        right: calc(2.8rem + 5rem);
    }
    .s-header__nav {
        margin: var(--vspace-3) 3rem var(--vspace-1);
    }
.s-header__overlay-close {
    top: 10px;
    right: 20px;
}
}

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

    .s-header__logo img {
    width:270px;
    height:auto;
}
.s-header {
    height: 80px;
}
}

@media screen and (max-width: 400px) {
    .s-header__logo img {
        width: 230px;
        height: auto;
    }
    .s-header__nav-wrap .s-header__nav-heading {
        font-size: calc(var(--text-size) * 0.7778);
    }
    .s-header__nav>li::before {
        top: 1.4em;
    }
    .s-header__nav li.menu-item-has-children>a::after {
        top: var(--vspace-1);
    }
    .s-header__nav>li a {
        line-height: calc(var(--vspace-2) + var(--vspace-0_125));
    }
    .s-header__toggle-menu {
        right: 2rem;
    }
    .s-header__search .s-header__overlay-close {
        right: 3rem;
    }
    .s-header__search-trigger, .s-header__telephone {
        right: calc(2rem + 5rem);
    }
}

@media screen and (max-width: 360px) {
    .s-header__nav {
        margin: var(--vspace-2_5) 2.8rem var(--vspace-1);
    }
.s-header__overlay-close {
    top: 5px;
    right: 15px;
}
}


/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
    width: 100%;
    height: 70vh;
    min-height: calc(25.5 * var(--space));
    background-color: #151515;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 400px) {
.s-hero {
    height: 65vh;
    min-height: calc(25 * var(--space));
}
}

/* -------------------------------------------------------------------
 * ## hero slider
 * ------------------------------------------------------------------- */
.s-hero__slider {
    position: relative;
}

.s-hero__dots {
	z-index: 2;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: absolute;
    left: 30px;
    bottom: 30px;
    width:50%
}

.s-hero__dots .slick-dots {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.s-hero__dots .slick-dots li {
    display: inline;
    padding-left: 0;
    margin-right: .8rem;
}

.s-hero__dots .slick-dots li::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: width 0.3s cubic-bezier(0.21, 0.97, 0.75, 0.85);
    transition: width 0.3s cubic-bezier(0.21, 0.97, 0.75, 0.85);
}

.s-hero__dots .slick-dots li button {
    display: inline-block;
    background: transparent;
    border: none;
    margin: 0;
    padding: .4rem;
    line-height: var(--vspace-1);
    height: auto;
    color: white;
    position: relative;
}

.s-hero__dots .slick-dots li button::before {
    content: "0";
}

.s-hero__dots .slick-dots li:nth-child(n+10) button::before {
    content: none;
}

.s-hero__dots .slick-dots li.slick-active::after {
    width: 32px;
    margin: 0 10px 0 4px;
}

.s-hero__dots .slick-dots li button {
    display: inline-block;
    background: var(--color-5);
    padding: 0 .8rem;
    height: auto;
    color: black;
    position: relative;
	border-radius: 50%;
	font-size: 14px;
}

.s-hero__dots .slick-dots li.slick-active button {
	background: white;
}

.s-hero__dots .slick-dots li button:hover {
    background: var(--color-5-dark);
    color: white;
}



.s-hero__slider .s-hero__slide {
    height: 70vh;
    min-height: calc(25.5 * var(--space));
    position: relative;
}


.s-hero__slide-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.s-hero__slide-bg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.s-hero__slide-bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.78)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0.2;
}

.s-hero__slide-content {
    height: 80%;
    max-width: calc(92% - 0px);
    padding-top: calc(13 * var(--space));
    padding-bottom: 9vh;
    position: relative;
}

.s-hero__slide-content>.column {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -ms-flex: 0 0 55%;
    -webkit-box-flex: 0;
    flex: 0 0 55%;
    max-width: 55%;
}

.s-hero__slide-meta {
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_75);
    color: white;
    margin-bottom: var(--vspace-0_5);
}

.s-hero__slide-meta .cat-links, .s-hero__slide-meta .byline {
    display: inline-block;
    margin: 0 .8rem;
}

.s-hero__slide-meta .cat-links a::after {
    content: ", ";
}

.s-hero__slide-meta .cat-links a:last-child::after {
    display: none;
}

.s-hero__slide-meta a, .s-hero__slide-meta .author {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.s-hero__slide-text {
    font-family: var(--font-3);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.091;
    letter-spacing: -.01em;
    color: black;
    margin-top: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
	padding: 30px 30px 40px;
	background: white;
	margin-bottom: 0;
}

.s-hero__slide-text a {
    color: black;
}

/*.s-hero__slide-text:after {
content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/logo-mark.svg);
    background-position: right -25px top 0px;
    background-repeat: no-repeat;
    opacity: 0.2;
}*/
}

.s-hero__slide-content .sub-line {
	display:block!important; 
	font-size: 3.5rem!important; 
	margin-top: 16px!important; 
	font-family: var(--font-1)!important;
}

.s-hero__slide-content .btn.btn--primary {
	border-radius: 0
}

/* ------------------------------------------------------------------- 
 * ## hero social
 * ------------------------------------------------------------------- */
.s-hero__social {
    font-size: var(--text-xs);
    font-weight: 400;
    color: white;
    text-align: right;
    position: absolute;
    right: 4rem;
    bottom: 15vh;
}

.s-hero__social p {
    line-height: 1;
    margin: 0;
    position: relative;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.s-hero__social span {
    display: block;
    width: 1px;
    height: 3.6rem;
    background-color: white;
    margin: 3.6rem auto 4.8rem;
}

.s-hero__social-icons {
    list-style: none;
    margin-left: 0;
    font-size: 2.4rem;
}

.s-hero__social-icons li {
    padding-left: 0;
    margin-bottom: var(--vspace-0_75);
    text-align: center;
}

.s-hero__social-icons a {
    color: white;
}

.s-hero__social-icons a svg {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.s-hero__social-icons a:hover svg, .s-hero__social-icons a:focus svg {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ------------------------------------------------------------------- 
 * ## hero slider nav arrows
 * ------------------------------------------------------------------- */
.s-hero__nav-arrows {
    z-index: 2;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
	background: white;
}

.s-hero__nav-arrows button {
    height: var(--vspace-1_75);
    width: var(--vspace-2);
	/*background-color: var(--color-1);
	background-color: rgba(0,182,193,0.24);*/
	background-color: var(--color-bg);
    /*border-color: var(--color-1);*/
	border-color: rgba(0,182,193,0);
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 0;
}

.s-hero__nav-arrows button svg {
    height: 1.5rem;
    width: 1.5rem;
}

.s-hero__nav-arrows button svg path {
    fill: black;
}

button {
    color: black;
}

.s-hero__nav-arrows button:hover, 
.s-hero__nav-arrows button:focus {
    background-color: var(--color-btn-primary);
    border-color: var(--color-5);
}

.s-hero__nav-arrows button:hover svg path, 
.s-hero__nav-arrows button:focus svg path {
    fill: white;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
    .s-hero__slide-content>.column {
        -ms-flex: 0 0 50vw;
        -webkit-box-flex: 0;
        flex: 0 0 50vw;
        max-width: 50vw;
    }
    .s-hero__slide-text {
        font-size: 4rem;
    }
}

@media screen and (max-width: 1500px) {
.s-hero__slide-content {
    height: 100%;
    max-width: calc(100%);
    width: 100%;
    padding-top: calc(13 * var(--space));
    padding-bottom: 9vh;
    position: relative;
}
    .s-hero__slide-content>.column {
        -ms-flex: 0 0 70vw;
        -webkit-box-flex: 0;
        flex: 0 0 70vw;
        max-width: 70vw;
    }
}


@media screen and (max-width: 1400px) {
    .s-hero__slide-text {
        font-size: 3.8rem;
    }
    
    .s-hero__slide-content .btn.btn--primary {
    width: auto;
}

}

@media screen and (max-width: 1300px) {
    .s-hero__slide-text {
        font-size: 3.2rem;
    }


.s-hero__slide-content {
height: 70vh;
    padding-top: calc(12 * var(--space));
    padding-bottom: 0;
    position: relative;
}

}

@media screen and (max-width: 1300px) {
.s-hero__slide-content {
height: auto;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    bottom: 80px
}
}

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

    .s-hero__slide-text {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1100px) {
    .s-hero__slide-content>.column {
        -ms-flex: 0 0 90vw;
        -webkit-box-flex: 0;
        flex: 0 0 90vw;
        max-width: 90vw;
    }
    .s-hero__slide-text {
        font-size: 3.8rem;
    }
	
    .s-hero__slide-text span {
        font-size: 20px!important;
    }
	
    .s-hero__social-icons li {
        margin-bottom: var(--vspace-0_5);
    }
}

@media screen and (max-width: 1000px) {
    .s-hero__slide-content>.column {
        -ms-flex: 0 0 100vw;
        -webkit-box-flex: 0;
        flex: 0 0 100vw;
        max-width: 100vw;
    }
    .s-hero__slide-text {
        font-size: 3.4rem;
    }
}

@media screen and (max-width: 710px) {
.s-hero__slide-content .btn.h-half-width, .s-hero__slide-content button.h-half-width {
    width: calc(100% - 0px);
}
}

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

    .s-hero__slide-text {
        font-size: 2.6rem;
    }
	
    .s-hero__slide-text span {
        font-size: 18px!important;
    }
    
    .s-hero__slider .row {
    padding-left: 0px;
        padding-right: 0px;
}
    .s-hero__slide-content {
        bottom: 35px;
    }
.s-hero__slide-text {
    padding: 20px 20px 25px;
}
.s-hero__dots {
    left: 10px;
    bottom: 15px;
    width: 70%;
}

.s-hero__dots .slick-dots li button {
    font-size: 12px;
    padding: 0 .6rem;
}
}

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

    .s-hero__slide-meta {
        font-size: var(--text-sm);
    }
    .s-hero__slide-text {
        font-size: 2rem;
    }

}

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

.s-hero__dots {
    display:none
}

}


/* ===================================================================
 * # content wrap
 *
 * ------------------------------------------------------------------- */
.s-content {
    --row-max-width: 1400px;
    background-color: white;
    padding-top: calc(3.5 * var(--space));
    padding-bottom: calc(3.5 * var(--space));
}

.s-content--no-top-padding {
    padding-top: 0;
}

.s-content--margin-bottom-padding {
    padding-bottom: var(--vspace-3);
}

.s-content .row {
    max-width: var(--row-max-width);
}

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

.s-content__form {
    margin-top: var(--vspace-2);
}


/* ------------------------------------------------------------------- 
 * ## content media
 * ------------------------------------------------------------------- */
.s-content__media {
    max-width: 1080px;
    margin: 0 auto var(--vspace-2_5);
    position: relative;
}

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


/* ===================================================================
 * # PAGEHEADER 
 * ------------------------------------------------------------------- */
.s-pageheader {
    --title-line-width : 15rem;
    padding-top        : var(--vspace-9_5);
    padding-bottom     : var(--vspace-6);
    background         : rgba(60, 59, 141, 1);
    background-repeat  : no-repeat;
    background-position: top center;
    background-size    : cover;
    text-align         : center;
    position           : relative;
}

.s-pageheader__content {
    z-index: 2;
}

.s-pageheader .page-title {
    font-size    : clamp(var(--text-xxxl), 10vw, var(--text-display-3));
    line-height  : 1.0387;
    color        : var(--color-white);
    margin-top   : 0;
    margin-bottom: 0;
    padding-bottom  : var(--vspace-1);
    position     : relative;
}

.s-pageheader .page-title::before {
    content         : "";
    display         : block;
    width           : var(--title-line-width);
    height          : 1px;
    background-color: var(--color-5);
    position        : absolute;
    bottom             : 0;
    left            : calc(50% - var(--title-line-width) / 2);
}

.s-pageheader::before {
    display         : block;
    content         : "";
    position        : absolute;
    top             : 0;
    left            : 0;
    right           : 0;
    bottom          : 0;
    width           : 100%;
    height          : 100%;
    background-color: var(--color-gray-19);
    pointer-events  : none;
    opacity         : 0.2;
}

.page-id-16 .s-pageheader::before {
    opacity         : 0.1;
}

.s-pageheader::after {
    display       : block;
    content       : "";
    position      : absolute;
    top           : 0;
    left          : 0;
    right         : 0;
    bottom        : 0;
    width         : 100%;
    height        : 100%;
    background    : linear-gradient(180deg, rgba(60, 59, 141, 1) 0%, rgba(84, 83, 163, 1) 79%);
    pointer-events: none;
    opacity       : 0.5;
}

.s-pageheader::before,
.s-pageheader::after {
    mix-blend-mode: multiply;
}

.single .s-pageheader {
    background-image: none!Important;
    padding-top        : var(--vspace-5_5);
    padding-bottom     : var(--vspace-2);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * pageheader
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-pageheader {
        --title-line-width: 14vw;
        padding-top       : var(--vspace-4);
        padding-bottom    : var(--vspace-4);
        background-position: top right;
    }
    .s-pageheader .page-title {
        font-size: var(--text-display-2);
    }

}

@media screen and (max-width: 900px) {
    .s-pageheader {
        --title-line-width: 14vw;
        padding-top       : var(--vspace-3);
        padding-bottom    : var(--vspace-3);
    }
    .s-pageheader .page-title {
        font-size: var(--text-xxxl);
        padding-bottom: var(--vspace-0_5);
    }
}


/* ------------------------------------------------------------------- 
 * ## content primary
 * ------------------------------------------------------------------- */
.s-content__primary {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.s-content__primary img {
    margin: 0 0 var(--vspace-1);
}

.s-content__entry-content {
    -ms-flex: 1 1 0%;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding: 0 4.8rem;
    border-right: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.s-content__page-content {
    max-width: 1000px;
}

.s-content__entry-meta, .s-content__pagenav {
    -ms-flex: 0 0 210px;
    -webkit-box-flex: 0;
    flex: 0 0 210px;
    max-width: 210px;
    position: -webkit-sticky;
    position: sticky;
    top: 4rem;
}


/* --------------------------------------------------------------------
 * ## content block
 * -------------------------------------------------------------------- */
.content-block {
    margin-bottom: var(--vspace-2);
}

.content-block:last-child {
    margin-bottom: 0;
}

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

.content-block .column:first-child>*:first-child {
    margin-top: 0;
}

.content-block--grey {
    background-color: var(--color-gray-3);
    padding         : var(--vspace-2_5) var(--vspace-1_25) var(--vspace-1_5);
}

.content-block[class*=content-block--media] {
    align-items    : center;
    justify-content: space-between;
}

.content-block--media-left .content-block__media {
    order: -1;
}

.content-block--media-left .content-block__text * {
    padding-left: 2vw;
}

.content-block--media-right .content-block__text * {
    padding-right: 2vw;
}

.content-block .list-items {
    margin-top: var(--vspace-1_5);
}

.content-block .list-items__item {
    margin-bottom: var(--vspace-0_5);
}

.content-block .list-items__item-small-title {
    margin-top: 0;
}

.content-block h2, .content-block h3 {
    font-family: var(--font-3);
    font-size: var(--text-xxxl);
    line-height: 1.1
}

/* ------------------------------------------------------------------- 
 * responsive:
 * page styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .content-block--media-left .content-block__text * {
        padding-left: 0;
    }

    .content-block--media-right .content-block__text * {
        padding-right: 0;
        margin-bottom: var(--vspace-0_5);
    }
.content-block {
    margin-bottom: var(--vspace-0_5);
}
}

@media screen and (max-width: 800px) {
    .content-block .column {
        flex        : none;
        width       : 100%;
        margin-left : 0;
        margin-right: 0;
    }
    .content-block--media-left .content-block__media {
        order: 0;
    }
}


/* entry meta
 * ------------------------------------------------ */
.s-content__entry-meta {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
    font-size: calc(var(--text-size) * 0.7778);
    font-weight: 300;
    line-height: calc(0.625 * var(--space));
    padding-right: 2.8rem;
}

.s-content__entry-meta a {
    color: var(--color-text);
}

.s-content__entry-meta a:focus, 
.s-content__entry-meta a:hover {
    color: black;
}

.s-content__entry-meta .byline span, 
.s-content__entry-meta .meta-blk span {
    font-size: calc(var(--text-size) * 0.6111);
    font-weight: 600;
    line-height: calc(0.375 * var(--space));
    text-transform: uppercase;
    letter-spacing: .05em;
    color: black;
}

.s-content__entry-meta .bytext, 
.s-content__entry-meta .tagtext {
    display: block;
}

.s-content__entry-meta .entry-author {
    margin-bottom: var(--vspace-0_5);
}

.s-content__entry-meta .avatar {
    max-width: var(--vspace-5);
    margin: var(--vspace-0_25) 0 var(--vspace-0_25) 0;
}

.s-content__entry-meta .entry-cat-links {
    margin-bottom: var(--vspace-0_75);
}

.s-content__entry-meta .cat-links a::after {
    content: ", ";
}

.s-content__entry-meta .cat-links a:last-child::after {
    display: none;
}

.s-content__entry-meta .entry-tags a {
    margin-right: .4rem;
}

/* page nav
 * ------------------------------------------------ */
.s-content__pagenav {
    font-size: var(--text-md);
    font-weight: 300;
    line-height: var(--vspace-1);
    padding-left: 3.2rem;
}

.s-content__pagenav>div {
    margin-bottom: var(--vspace-1_5);
}

.s-content__pagenav a {
    color: var(--color-text-light);
}

.s-content__pagenav a:hover, 
.s-content__pagenav a:focus {
    color: black;
}

.s-content__pagenav span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: var(--vspace-0_5);
    text-transform: uppercase;
    letter-spacing: .2em;
    color: black;
    margin-bottom: var(--vspace-0_5);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * content
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-content__entry-content {
        padding: 0 2rem;
        border: none;
    }
    .s-content__entry-meta, .s-content__pagenav {
        -ms-flex: 0 0 200px;
        -webkit-box-flex: 0;
        flex: 0 0 200px;
        max-width: 200px;
    }
    .s-content__entry-meta .avatar {
        max-width: 155px;
    }
    .s-content__pagenav {
        font-size: calc(var(--text-size) * 1.0556);
    }
}

@media screen and (max-width: 1300px) {
    .s-content__entry-content {
        padding: 0;
    }
    .s-content__entry-meta, .s-content__pagenav {
        -ms-flex: 0 0 190px;
        -webkit-box-flex: 0;
        flex: 0 0 190px;
        max-width: 190px;
    }
    .s-content__entry-meta .avatar {
        max-width: 145px;
    }
}

@media screen and (max-width: 1200px) {
    .s-content:not(.s-content--no-top-padding) {
        padding-top: calc(5 * var(--space));
        padding-bottom: calc(5 * var(--space));
    }
    .s-content--margin-bottom-padding {
    padding-bottom: var(--vspace-2_5);
}
    .s-content__primary {
        display: block;
        padding: 0 5vw;
    }
    .s-content__entry-content {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: var(--vspace-1_5);
    }
    .s-content__entry-meta, .s-content__pagenav {
        position: static;
        top: auto;
    }
    .s-content__entry-meta {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        max-width: none;
        padding-right: 0;
    }
    .s-content__entry-meta .entry-author {
        -ms-flex: 0 0 160px;
        -webkit-box-flex: 0;
        flex: 0 0 160px;
        max-width: 160px;
        padding-right: 4rem;
    }
    .s-content__entry-meta .avatar {
        max-width: calc(3.125 * var(--space));
    }
    .s-content__entry-meta .meta-bottom {
        margin-top: var(--vspace-0_25);
    }
    .s-content__pagenav {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        font-size: var(--text-md);
        padding-top: var(--vspace-1);
        padding-left: 0;
        margin-top: var(--vspace-1_5);
        border-top: 1px solid var(--color-border);
        max-width: none;
    }
    .s-content__pagenav>div {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 3.2rem;
        margin-bottom: 0;
    }
    .s-content:not(.s-content--no-top-padding) {
        padding-top: var(--vspace-3);
        padding-bottom: var(--vspace-3);
    }
    .s-content--margin-bottom-padding {
    padding-bottom: calc(--vspace-3));
}
}

@media screen and (max-width: 1000px) {
    .s-content__entry-header {
        margin-top: var(--vspace-2);
        margin-bottom: var(--vspace-2);
    }
    .s-content__primary {
        padding: 0;
    }
    .s-content:not(.s-content--no-top-padding) {
        padding-top: var(--vspace-2);
        padding-bottom: var(--vspace-2);
    }
    .s-content--margin-bottom-padding {
    padding-bottom: var(--vspace-2);
}
}

@media screen and (max-width: 550px) {
    .s-content__pagenav {
        display: block;
    }
    .s-content__pagenav>div {
        max-width: none;
    }
    .s-content__pagenav>div:first-child {
        margin-bottom: var(--vspace-1);
    }
.s-content--margin-bottom-padding {
    padding-bottom: var(--vspace-1_5);
}
}

@media screen and (max-width: 400px) {
    .s-content:not(.s-content--no-top-padding) {
        padding-top: var(--vspace-2);
        padding-bottom: var(--vspace-2);
    }
    .s-content__media {
        margin-bottom: var(--vspace-1_5);
    }
    .s-content__entry-header {
        margin-top: var(--vspace-1_5);
        margin-bottom: var(--vspace-1_5);
    }
}

/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
    padding-top: var(--vspace-4);
    padding-bottom: var(--vspace-2);
    font-size: var(--text-sm);
    line-height: calc(0.6125 * var(--space));
    color: var(--color-gray-2);
	background: linear-gradient(180deg,rgba(60, 59, 141, 1) 0%, rgba(84, 83, 163, 1) 79%);
	padding-top: var(--vspace-3);
}

.s-footer .row {
    max-width: 1400px;
}

.s-footer a {
    color: white;
}

.s-footer h3 {
    font-family: var(--font-3);
    font-size: var(--text-xxl);
    font-weight: 400;
    margin-bottom: 12px;
    margin-top: 0;
	color: white;
}

.s-footer .footer-contact {font-size: 22px; line-height: 28px}

.s-footer img {
    width: 340px;
    height: 54px;
    margin: 0 0 20px;
    vertical-align: bottom;
}

.s-footer ul {
    margin-left: 0;
}

.s-footer li {
    padding-left: 0;
}

.s-footer p {
    margin-bottom: 20px;
}

.s-footer i {
    color: var(--color-btn-primary);
}

.s-footer .s-m i {
    font-size: 24px; 
    margin-right: 12px;
    vertical-align: middle;
}

/* ------------------------------------------------------------------- 
 * ## footer main
 * ------------------------------------------------------------------- */
.s-footer__main {
    padding-bottom: var(--vspace-0_5);
}

.s-footer__main ul li {
    list-style: none;
}

.s-footer__main ul a {
    color: white;
}

.s-footer__main ul a:hover, .s-footer__main ul a:focus {
    color: black;
}

/* footer subscribe
 * -------------------------------------- */
.s-footer__subscribe {
    margin-left: auto;
}

.s-footer__subscribe p {
    margin-bottom: var(--vspace-0_5);
}

.s-footer__subscribe .subscribe-form {
    --color-btn: black;
    --color-btn-hover: var(--color-gray-16);
}

.s-footer__subscribe .subscribe-form #mc-form {
    padding: 0;
    margin-bottom:0
}

.s-footer__subscribe .nf-form-fields-required {
	display:none
}

.s-footer__subscribe .nf-field-container {
    margin-bottom: 0px;
}

.s-footer__subscribe .form-legal {
    font-size: 12px;
    line-height: normal;
}

.s-footer__subscribe .nf-error-msg, .s-footer__subscribe .ninja-forms-req-symbol {
    color: var(--color-btn-primary);
}

.s-footer__subscribe .nf-input-limit {
    margin-top: 0px;
}

.s-footer__subscribe .subscribe-form input[type="email"] {
    --input-height: vspace(1.75);
    background-color: white;
    border: 1px solid var(--color-white);
    padding: .8rem 2rem;
    width: 100%;
    text-align: center;
    margin-bottom: var(--vspace-0_5);
}

.s-footer__subscribe .subscribe-form input[type="submit"] {
    --btn-height: var(--vspace-btn);
    margin-right: 0;
    width: 100%;
    color: black;
}

.s-footer__subscribe .subscribe-form .subscribe-message {
    font-family: var(--font-1);
    font-size: var(--text-sm);
    color: black;
}

.s-footer__subscribe .subscribe-form .subscribe-message i {
    color: black;
    margin-right: .4rem;
}

.s-footer__subscribe .form-legal {
	font-size: 12px;
	line-height: normal
}

.s-footer__subscribe .nf-form-cont {
	background: none;
	padding: 0px;
	border: none
}

/* ------------------------------------------------------------------- 
 * ## footer bottom
 * ------------------------------------------------------------------- */

/* copyright
 * -------------------------------------- */
.ss-copyright {
    color: var(--color-gray-2);
}

.ss-copyright span {
    display: inline-block;
    font-size: calc(var(--text-size) * 0.7222);
    line-height: var(--vspace-0_75);
}

.ss-copyright p {
	margin-bottom: 2px
}

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

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

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

.ss-go-top a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    height: 6.4rem;
    width: 6.4rem;
    border-radius: 50%;
    background-color: var(--color-gray-2);
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
}

.ss-go-top a:hover, .ss-go-top a:focus {
    background-color: black;
}

.ss-go-top a:hover svg path, .ss-go-top a:focus svg path {
    fill: white;
}

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

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

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

/* responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-footer__subscribe {
        margin-left: 0;
    }
    .s-footer .footer-contact {font-size: 18px; line-height: normal}
    
    .s-footer img {
    width: 300px;
    height: auto;
    margin: 0 0 15px;
}
}

@media screen and (max-width: 800px) {
    .s-footer {
        padding-bottom: 0;
        padding-top: var(--vspace-1_5);
    }
    .ss-go-top {
        bottom: 3.6rem;
    }
    .ss-go-top a {
        height: 5.6rem;
        width: 5.6rem;
    }
    .s-footer h3 {
    font-size: 30px;
    margin-top: 15px;
    margin-bottom:4px
}
}

@media screen and (max-width: 600px) {
    .s-footer__bottom {
        padding-bottom: .8rem;
    }
    .ss-copyright span {
        display: block;
        font-size:12px
    }
    .ss-copyright span::after {
        display: none;
    }
    .ss-go-top {
        display:none
    }
    .s-footer .footer-contact {font-size: 16px; line-height: normal}
}


/* ===================================================================
 * # blog styles and blog components
 *
 * ------------------------------------------------------------------- */

/* -------------------------------------------------------------------
 * ## blog comments 
 * ------------------------------------------------------------------- */
.comments-wrap {
    padding-bottom: var(--vspace-4);
    background-color: white;
}

.comments-wrap h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
}

.comments-wrap h1 span {
    display: block;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: calc(var(--text-size) * 1.2);
    line-height: var(--vspace-0_75);
    margin-top: calc(0.125 * var(--space));
}

/* comments
 * -------------------------------------------------- */
#comments {
    padding-top: var(--vspace-0_5);
    padding-bottom: var(--vspace-0_5);
    max-width: 980px;
}

#comments ol, #comments ul {
    list-style: none;
}

.commentlist {
    margin: var(--vspace-2) 0 var(--vspace-1_5);
    padding: 0;
}

.commentlist>.comment {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 2rem 0 0 0;
    padding-left: 14%;
}

.comment__avatar {
    position: absolute;
    left: 0;
    display: block;
}

.comment__avatar img {
    height: var(--vspace-2);
    width: var(--vspace-2);
    border-radius: 100%;
    vertical-align: bottom;
}

.comment__info {
    position: relative;
}

.comment__info .comment__author {
    font-weight: 600;
    font-size: var(--text-size);
    line-height: var(--vspace-1);
    font-style: normal;
    color: black;
}

.comment__meta {
    font-style: normal;
    line-height: var(--vspace-0_75);
    display: block;
    color: var(--color-text-light);
    text-align: right;
    width: 150px;
    position: absolute;
    top: 0;
    right: 0;
}

.comment__meta .comment__time {
    font-size: calc(var(--text-size) * 0.7778);
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: var(--color-text-light);
}

.comment__meta .comment__reply a {
    font-size: var(--text-xs);
    font-family: var(--font-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: black;
}

.comment__text {
    clear: both;
    margin: var(--vspace-0_5) 0 0 0;
    padding: 0 175px 0 0;
}

.comment ul.children {
    margin: 0;
    padding: 0;
}

.comment ul.children li {
    padding-left: 5%;
    margin-top: calc(var(--vspace-1) + 2rem);
    border-left: 1px solid var(--color-border);
}

/* comments form
 * ---------------------------- */
.comments-wrap .comment-respond {
    max-width: 900px;
    margin-top: var(--vspace-2);
}

.comment-respond form {
    padding-top: var(--vspace-1_75);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * comments
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    #comments, .comments-wrap .comment-respond {
        max-width: none;
        padding-right: 5vw;
        padding-left: 5vw;
    }
}

@media screen and (max-width: 1000px) {
    #comments, .comments-wrap .comment-respond {
        padding-right: 0;
        padding-left: 0;
    }
    .comment__avatar img {
        height: var(--vspace-1_75);
        width: var(--vspace-1_75);
    }
    .comment__meta {
        text-align: left;
        width: auto;
        position: static;
    }
    .comment__meta .comment__time, .comment__meta .comment__reply {
        display: inline-block;
    }
    .comment__meta .comment__time {
        margin-right: 12px;
    }
    .comment__text {
        padding: 0;
    }
    .comments-wrap .comment-respond {
        margin-top: var(--vspace-1_5);
    }
}

@media screen and (max-width: 800px) {
    .comments-wrap {
        padding-bottom: var(--vspace-3);
    }
    .comment__avatar img {
        margin-top: 0;
        height: var(--vspace-1_5);
        width: var(--vspace-1_5);
    }
}

@media screen and (max-width: 600px) {
    #comments, .comments-wrap .comment-respond {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .commentlist>.comment {
        padding-top: 0;
        padding-left: 0;
    }
    .comment__avatar {
        display: none;
    }
    .comment ul.children li {
        margin-top: calc(var(--vspace-1) + 0rem);
    }
}

@media screen and (max-width: 500px) {
    .comment ul.children li {
        border-left: none;
    }
}

@media screen and (max-width: 400px) {
    .comment-respond form {
        padding-top: var(--vspace-1);
    }
}


/** HOME PAGE - INTRO **/


.intro-home {
    padding-top: var(--vspace-3);
    padding-bottom: var(--vspace-1);
    font-size: var(--text-m);
    line-height: calc(0.9125 * var(--space));
    /*color: var(--color-white);*/
	/*background: var(--color-1);*/
	/*background: rgba(0,182,193,0.24)*/
}

.intro-home h2, .intro-home h2 {
    margin-top: 10px;
    margin-bottom: var(--vspace-0_5);
	text-align: center;
	font-family: var(--font-3);
	/*font-size: var(--text-xxxl); */
}

.intro-home p.lead {
    margin-top: 0;
    margin-bottom: var(--vspace-2_5);
	text-align: center;
}

.intro-home .badge img {
	display:block;
	width: 80px;
	height: 87px;
	margin: auto;
	margin-bottom: var(--vspace-1);
}

.intro-home  .bottom-part h1, .intro-home .bottom-part h1 {
    margin-bottom: var(--vspace-0_5);
}

.intro-home .row {
    max-width: 1440px;
}

.intro-home .row h2, .intro-home .row .h2 {
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
}

.intro-home td {
    padding: var(--vspace-0_5) .2rem calc(var(--vspace-0_5) - .1rem);
	padding-left: 34px;
	/*border-bottom: 1px solid var(--color-border-1);*/
	border-bottom: 1px solid rgba(0,0,0,0.10);
}

.intro-home .lead {
    /*color: white;*/
}

.intro-home p {
    margin-bottom: var(--vspace-0_5);
}
.intro-home table {
    margin-bottom: var(--vspace-2);
}

.intro-home table td {
    background-image: url(../images/icon-tick.svg);
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position:  left center;
}

@media screen and (max-width: 1000px) {
.intro-home .badge img {
	display:block;
	width: 60px;
	height: auto;
	margin: auto;
	margin-bottom: var(--vspace-0_75);
}
}

@media screen and (max-width: 800px) {
    .intro-home  {
        padding-bottom: var(--vspace-1_5);
    }
.intro-home .badge img {
	display:block;
	width: 50px;
	height: auto;
	margin: auto;
	margin-bottom: var(--vspace-0_5);
}

.intro-home p.lead {
    margin-top: 0;
    margin-bottom: var(--vspace-1_5);
	text-align: center;
}

}

.image-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: var(--vspace-3);
}

.image-container img {
   
}

.image-container .image {
    margin: 1%;
    vertical-align: top;
}

.image_0 {
    width: 60%
}

.image_1 {
    padding-right: 11%;
    width: 34%
}

.image_2 {
    align-self: flex-start;
    width: 25.5%
}

.image_3 {
    width: 55%
}

/** HOME PAGE - PROCESS **/

.intro-process {
    padding-top: var(--vspace-2);
    padding-bottom: 0;
    font-size: var(--text-m);
    line-height: calc(0.9125 * var(--space));
    color: var(--color-black);
	padding-bottom: var(--vspace-3);
}

.intro-process .row {
    max-width: 1400px;
}

.intro-process .row .column .content {
	padding: 30px 20px 0 20px;
}

@media screen and (max-width: 800px) {
    .intro-process  {
        padding-bottom: var(--vspace-1_5);
    }
}

@media screen and (max-width: 600px) {
    .intro-process  {
        padding-bottom: var(--vspace-0);
        padding-top: var(--vspace-1);
    }
}

.intro-process h2 {
    margin-bottom: var(--vspace-2);
}

.intro-process h3 {
    margin-top: 0px;
}

.intro-process .btn {
    margin-top: 20px;
	margin-bottom: 0;
}

.intro-process img {
	margin-bottom: 0;
}

.intro-process figure {
margin-bottom: 0;
}

.intro-process .price-block {
	background-color: #FFFFFF;
	border-radius: 1px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border-bottom: solid 8px rgba(88, 104, 123, 0.7);
}

.intro-process .price-block .top-part {
	background: #fff;
	color: #FFFFFF;
	padding: 0;
	position: relative;
}
.intro-process .price-block .bottom-part {
	padding: 1.4rem 2rem;
}
.intro-process .price-block p, .intro-process p {
	font-size: 1.7rem;
	line-height: normal;
	margin-bottom: .6rem;
	color: rgba(0, 0, 0, 0.6);
}

.intro-process .price-block h3 {
	font-family: var(--font-3);
	font-size: var(--text-lg);
	line-height: normal;
	margin-bottom: 6px
}

.intro-process .price-block h3 a {
color: black;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.intro-process .price-block h3 a:hover {
    color: var(--color-1);
}

.intro-process .price-block .plan-price {
	font-size: 3rem;
	line-height: 1;
	margin-bottom: .6rem;
	font-family: var(--font-2);
}
.intro-process .price-block .button {
	color: #353F49;
	padding: 0 5rem;
	margin-left: auto;
	margin-right: auto;
}
.intro-process .price-block .button:hover,
.intro-process .price-block .button:focus {
	background: #58687b;
	color: #FFFFFF;
}
.intro-process .price-block .features {
	list-style: none;
	font-family: "raleway-bold", sans-serif;
	font-size: 1.5rem;
	color: rgba(0, 0, 0, 0.4);
	margin: .6rem 0 1.8rem 0;
}
.intro-process .price-block .features li {
	padding: .6rem 0;
	border-bottom: 1px solid #EAEAED;
}
.intro-process .price-block .features li strong {
	color: #353F49;
	font-family: "raleway-bold", serif;
	margin-right: 5px;
}
.intro-process .price-block .features li:last-child {
	border: none;
}
.intro-process .primary .top-part {
	background: var(--color-btn-primary);
}
.intro-process .secondary .top-part {
	background: #684bb7;
}

@media screen and (max-width: 900px) {
.intro-process .price-block p, .intro-process p {
	font-size: 1.5rem;
}
}

@media screen and (max-width: 800px) {
.intro-process .price-block:first-of-type {
	margin-bottom: 25px
}
}


@media screen and (max-width: 500px) {
.intro-process .price-block p, .intro-process p {
	font-size: 14pxm;
}
}

/** HOME PAGE - HOW IT WORKS **/

.how-it-works {
	background-color: rgba(100, 149, 237, 0.3);
	
}

.how-it-works .price-block {
	margin-top: var(--vspace-1);
}

.how-it-works .price-block i {
	font-size: 4em;
	line-height: 1.3;
}


/** HOME PAGE - ACCREDITATIONS **/

.accreditations {
    padding-bottom: var(--vspace-3);
}

.accreditations .row {
    max-width: 2000px;
}

.accreditations .fa-logo, .page-template-page-sponsors .fa-logo, .page-template-page-partners-sponsors .fa-logo {max-width: 50%; margin: 0 auto 0; display:block}

.accreditations img, .page-template-page-sponsors .inner-news img, .page-template-page-trustees .inner-news img,
.page-template-page-partners .inner-news img, .page-template-page-partners-sponsors .fa-logo, .page-template-page-partners-sponsors .inner-news img  {margin: 0 auto 0; display:block}

.page-template-page-partners-sponsors .inner-news img  {padding-bottom: 20px}

.accreditations h1 {
    margin-top: 0;
}

.acf-logo-slider,
.acf-logo-slider .slick-list,
.acf-logo-slider .slick-track {
    width: 100%;
}

.acf-logo-slider .slick-track {
    display: flex !important;
    align-items: center;
}

.acf-logo-slider .slick-slide {
    height: auto;
}

.acf-logo-slider .slick-slide > div {
    height: 100%;
}

.acf-logo-slider__slide {
   margin-left: 30px;
   margin-right: 30px
}

.acf-logo-slider__slide a {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.acf-logo-slider__slide img {
    display: block;
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.acf-logo-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/** COURSES **/

a.block-link  {
	background: rgba(0, 182, 193, 0.2);
	padding: 4px 6px;
	color: black;
	border-bottom: solid 1px black;
}

a.block-link:hover  {
	background: black;
	color: white
}

.inner .top-part {
    background: #FFFFFF;
    padding-bottom: 2.4rem;
    position: relative;
}

.inner .top-part::before {
    content: attr(data-info);
    display: block;
    min-height: 48px;
    line-height: 48px;
    width: 55%;
    text-align: center;
    color: #fff;
    background: #684bb7;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .15rem;
    position: absolute;
    top: -26px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 500;
    border-radius: 0px;
}

.entry__meta i {
	color: var(--color-1);
}

.inner .availability {
    display: block;
    min-height: 48px;
    line-height: 48px;
	padding: 0 15px;
    text-align: center;
    color: #fff;
    background: rgba(211,0,3,1.00);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .15rem;
    position: absolute;
    top: 50px;
    left: 28px;
    z-index: 500;
    border-radius: 0px;
}

.inner .availability1, .inner .availability2 {
    display: block;
    line-height: 1;
	padding: 15px;
    text-align: center;
    color: #fff;
    background: rgba(211,0,3,1.00);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
}

.inner .availability2 {
    background: #684bb7;
	margin-top: 15px;
}

@media screen and (max-width: 1200px) {
.inner .availability2 {
	margin-top: 0px;
}	
}

/* Accordion styles */

.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs {
  border-radius: 0px;
  overflow: hidden;
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1em 1em 0.9em;
  background: #58687b;
color: white;
	font-family: var(--font-2);
	line-height: 1.1;
	font-size: 22px;
	letter-spacing: normal;
  font-weight: normal;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #1a252f;
}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab-content {
  height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}

input:checked + .tab-label {
  background: #1a252f;
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  min-height: auto;
	height: auto;
  padding: 0 1em;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

/**
 * responsive
 * -
 */

/** NEWS & PAGINATION **/

.inner-news {

}

.inner-news .row {
	margin-bottom: 40px
}

.inner-news .row:last-of-type {
	margin-bottom: 0px
}

.inner-news p {
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 20px
}

.page-template-page-trustees .inner-news h3, .page-template-page-team .inner-news h3 {
	margin-bottom: 0;
}

.inner-news span {
	margin-bottom: 12px;
	display:block;
}

.nav-links {
	width: 100%;
	display:block;
	margin-top: 60px;
	padding-top: 25px;
	border-top: 1px solid var(--color-gray-3);
}

.nav-previous {
	width: 50%;
	float:left
}

.nav-next {
	width: 50%;
	float:right;
	text-align:right
}

@media screen and (min-width: 801px) {
.inner-news .btn.h-full-width {
    width: auto;
    margin-right: 0px;
}	
}

@media screen and (max-width: 1000px) {
.nav-links {
	font-size:14px;
	margin-top: 30px;
	padding-top: 20px;
	margin-bottom:30px
}
}

@media screen and (max-width: 800px) {
.inner-news .btn.h-full-width {
    margin-right: 0px;
}	
.inner-news .row {
	margin-bottom:20px
}

.inner-news img {
    margin: 0 0 var(--vspace-0_5);
}
}

@media screen and (max-width: 600px) {
.inner-news p {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 20px
}
}


/** BLOCK EDITOR **/

.wp-block-media-text > .wp-block-media-text__content {
  padding: 0!Important
}

.wp-block-media-text > .wp-block-media-text__content h3.wp-block-heading {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: var(--font-3)!Important;
  line-height:normal
}

.wp-block-media-text > .wp-block-media-text__content p {
  padding: 0!Important;
  line-height: normal;
    font-size: 16px
}

.wp-block-media-text > .wp-block-media-text__content p:last-of-type {
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
.wp-block-media-text > .wp-block-media-text__content p {
  font-size: 14px
}
}

/** DONATION BLOCK **/

.dontate-wrp {

}

.dontate-wrp img, .dontate-wrp figure, .cont-wrp img, .cont-wrp figure {
	margin-bottom: 0;
	margin-top: 0
}

.dontate-wrp p {
	line-height: 1.4;
	color: white
}

.dontate-wrp a {
	color: #fdce12!Important;
	font-weight: bold;
	text-decoration: underline
}

.dontate-wrp a:hover {
	color: white!Important;
}

@media screen and (max-width: 767px) {
.dontate-wrp img, .dontate-wrp figure {
	margin-bottom: 8px;
}
}

@media screen and (max-width: 600px) {
.dontate-wrp img {
	max-width: 70%
}
}

/** HIDE RECAPtCHA BADGE **/

.grecaptcha-badge {display:none!Important}

/** NINJA FORM WHITE SPACE HACK **/

.nf-form-hp,
.nf-form-hp nf-section,
.nf-form-hp label,
.nf-form-hp input {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}