@charset "UTF-8";
/*
  --- READ.ME ---

  General styling principles:
  - core naming principle is BEM (Block Element Modifier)
  - don't use id for selectors
  - don't make long selectors 2-3 selector depth is good, longer in most cases, is bad
  - prefixes :
    > .c- stands for Component, it is reusable site block. In general such component should work correctly placed anywhere in site code.
    > .h- stands for helper, it means that this class make minor style adjustments to element
    > class name without prefix is used as id's in most cases. It is not intended to use multiple times on page.
    > .js- stands for class used in js/jQ selecting only, so DO NOT write css for such classes

    UPD: 2019 10 01

*/
/* Colors */
/* Responsive brakepoints */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Selectmenu */
.c-custom-select {
  width: 100%;
  width: calc(100% - 2px);
}

.c-custom-select + span {
  display: block;
}

.c-custom-select + span > a {
  vertical-align: top;
}

.ui-selectmenu {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: #fff;
  border: 1px solid #dce6e8;
  text-decoration: none !important;
}

.ui-selectmenu .ui-selectmenu-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 22px;
  bottom: 0px;
  background: none;
  height: auto;
}

.ui-selectmenu .ui-selectmenu-icon:before {
  display: inline-block;
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -2.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #cccccc transparent transparent transparent;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  display: none;
  z-index: 1005;
}

.ui-selectmenu-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  overflow: auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dce6e8;
  background: #fff;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-menu li {
  padding: 0;
  margin: 0;
  display: block;
  border: none !important;
  font-weight: normal !important;
  background: none !important;
}

.ui-selectmenu-menu li a,
.ui-selectmenu-status {
  display: block;
  padding: 3px 8px;
  padding-right: 26px;
  outline: none;
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  color: #000;
  font-size: 13px;
  line-height: 23px;
}

.ui-selectmenu-menu li a {
  border-bottom: 1px solid #dce6e8;
}

.ui-selectmenu-menu li a:hover,
.ui-selectmenu-menu .ui-state-hover a {
  color: #000;
  background: #efefef !important;
  zoom: 1;
}

/*------------------------------------*\
  #FONTS AND SIMPLE CONTENT STYLES
\*------------------------------------*/
@font-face {
  font-family: 'GT Pressura';
  src: url("fonts/GTPressuraPro-Light.eot");
  src: url("fonts/GTPressuraPro-Light.eot?#iefix") format("embedded-opentype"), url("fonts/GTPressuraPro-Light.woff") format("woff"), url("fonts/GTPressuraPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* ------ Fonts ------ */
.ui-widget,
button,
input,
select,
textarea,
body {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #555c66;
  font-weight: 300;
}

.c-article__title,
.c-form-block__title,
.c-banner__title,
.c-page-title,
.h-styled-content h2,
.c-detailed-post__title,
.c-simple-section__title,
.c-lead-magnet--simple .c-lead-magnet__title {
  font-family: 'GT Pressura';
  font-weight: normal !important;
}

/* ------ */
a {
  text-decoration: none;
  color: #555c66;
  -moz-transition: color 0.3s, border 0.3s, background 0.3s;
  -o-transition: color 0.3s, border 0.3s, background 0.3s;
  -webkit-transition: color 0.3s, border 0.3s, background 0.3s;
  transition: color 0.3s, border 0.3s, background 0.3s;
}

img {
  vertical-align: top;
}

p {
  line-height: 1.2em;
  margin: 1em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1em 0;
}

:focus {
  outline: none;
}

/* ------ Styled content ------ */
.h-styled-content h2 {
  font-size: 28px;
  line-height: 1.4em;
  margin-bottom: 1.1em;
}

.h-styled-content h3 {
  font-size: 18px;
  line-height: 1.75em;
  font-weight: 500;
  margin-top: 2.3em;
  margin-bottom: 1.7em;
}

.h-styled-content h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.h-styled-content p,
.h-styled-content li {
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 1.5em;
  margin-bottom: 1.8em;
}

.h-styled-content li {
  margin-top: 0;
  margin-bottom: 8px;
}

.h-styled-content ol {
  margin-left: 9px;
  padding-left: 53px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.h-styled-content strong {
  font-weight: 500 !important;
}

.h-styled-content ol li:last-child {
  margin-bottom: 0;
}

.h-styled-content a,
.h-styled-content p a,
.h-styled-content li a {
  color: #42c299;
}

.h-styled-content ol,
.h-styled-content ul {
  padding-left: 0;
  margin-left: 0;
}

.h-styled-content ol li,
.h-styled-content ul li {
  padding-left: 60px;
  position: relative;
}

.h-styled-content ul li {
  list-style: none;
}

.h-styled-content ul li:before {
  display: inline-block;
  position: absolute;
  content: '';
  border-radius: 100%;
  width: 8px;
  height: 8px;
  left: 34px;
  top: 11px;
  background: #42c299;
}

.h-styled-content ol {
  list-style: none;
  counter-reset: ol-li-counter;
}

.h-styled-content ol li {
  counter-increment: ol-li-counter;
}

.h-styled-content ol li:before {
  content: counter(ol-li-counter) ". ";
  display: inline-block;
  position: absolute;
  left: 32px;
  top: 0px;
}

/* Images */
.c-detailed-post__main-content img {
  width: auto;
  max-width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  height: auto;
}

.c-detailed-post__main-content img.alignleft {
  margin-top: 7px;
  margin-right: 15px;
  margin-bottom: 15px;
  float: left;
}

.c-detailed-post__main-content img.alignright {
  margin-top: 7px;
  margin-left: 15px;
  margin-bottom: 15px;
  float: right;
}

/* Tables */
.h-styled-content table {
  width: 100%;
}

.h-styled-content th,
.h-styled-content td {
  padding: 6px 12px;
  border: 1px solid #eee;
  vertical-align: top;
  line-height: 1.5em;
}

.h-styled-content th {
  text-align: left;
}

.wp-block-table {
  overflow-x: visible;
}

figure.wp-block-table {
  margin-left: 0;
  margin-right: 0;
}

/* Lists */
/**/
.h-styled-content hr {
  border: 0;
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  margin: 1em 0;
}

/* Responsive typography */
@media (max-width: 768px) {
  .h-styled-content h2 {
    font-size: 24px;
  }
  .h-styled-content p, .h-styled-content li {
    font-size: 16px;
  }
  .h-styled-content ol {
    padding-left: 15px;
  }
  .wp-block-table {
    overflow-x: auto;
  }
}

/*------------------------------------*\
  #PLACEHOLDERS
\*------------------------------------*/
.placeholder {
  color: #cfcfd0;
}

::-webkit-input-placeholder {
  color: #cfcfd0;
}

:-moz-placeholder {
  color: #cfcfd0;
}

::-moz-placeholder {
  color: #cfcfd0;
  opacity: 1;
}

/*------------------------------------*\
  #FORMS
\*------------------------------------*/
:focus {
  outline: none;
}

.c-form-row {
  margin-bottom: 12px;
}

.c-form-row label {
  display: block;
  padding-bottom: 6px;
}

.h-form-item-container {
  display: flex;
  min-height: 56px;
  align-items: center;
}

.c-form-default input[type="text"],
.c-form-default input[type="password"],
.c-form-default input[type="tel"],
.c-form-default input[type="email"],
.c-form-default input[type="number"],
.c-form-default textarea {
  width: 100%;
  padding: 8px 15px;
  font-size: 15px;
  border: 1px solid #cfcfd0;
  -moz-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: 48px;
}

.c-form-default textarea {
  vertical-align: top;
  height: 180px;
}

/* Input focus styles */
.c-form-default input[type="text"]:focus,
.c-form-default input[type="password"]:focus,
.c-form-default input[type="tel"]:focus,
.c-form-default input[type="email"]:focus,
.c-form-default input[type="number"]:focus,
.c-form-default textarea:focus {
  border-color: #cfcfd0;
}

/* small inputs */
.h-small-inputs input[type="text"],
.h-small-inputs input[type="password"],
.h-small-inputs input[type="tel"],
.h-small-inputs input[type="email"],
.h-small-inputs input[type="number"],
.h-small-inputs textarea {
  padding: 6px 15px;
  font-size: 13px;
  height: 40px;
}

/* Errors */
.c-error > label,
label.c-error {
  color: red;
}

.c-error input[type="text"]:focus,
.c-error input[type="password"]:focus,
.c-error input[type="tel"]:focus,
.c-error input[type="email"]:focus,
.c-error input[type="number"]:focus,
.c-error textarea:focus {
  border-color: red;
}

/* Messages */
.c-message {
  margin: 0 15px;
}

.c-message--succees {
  color: green;
}

.c-message--error {
  color: red;
}

/* Custom upload */
.c-custom-upload {
  position: relative;
  display: block;
}

.c-custom-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}

/**/
/*------------------------------------*\
  #Floating label
\*------------------------------------*/
.c-form-row,
.c-form-item {
  position: relative;
}

input:focus + .c-floating-label,
textarea:focus + .c-floating-label,
.c-floating-label {
  position: absolute;
  left: 0px;
  top: -19px;
  font-size: 13px;
  padding-left: 0;
  opacity: 1;
  -moz-transition: top 0.2s, font-size 0.2s, opacity 0.2s;
  -o-transition: top 0.2s, font-size 0.2s, opacity 0.2s;
  -webkit-transition: top 0.2s, font-size 0.2s, opacity 0.2s;
  transition: top 0.2s, font-size 0.2s, opacity 0.2s;
  pointer-events: none;
  color: #111111;
}

:placeholder-shown ~ .c-floating-label {
  top: 9px;
  font-size: 12px;
  opacity: 1;
  left: 12px;
}

.placeholder-shown.c-floating-label {
  top: 9px;
  font-size: 12px;
  opacity: 1;
  left: 12px;
}

.c-floating-label span {
  color: #99698c;
  margin-left: 5px;
}

/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/
/* Button primary */
.c-btn--primary,
.form-submit input[type="submit"],
.h-styled-content .c-btn--primary {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  padding: 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #42c299;
  margin: 0;
  cursor: pointer;
  outline: none;
  min-width: 130px;
  text-align: center;
  background: #42c299;
  text-decoration: none;
  -moz-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.c-btn--primary:hover,
.form-submit input[type="submit"]:hover,
.h-styled-content .c-btn--primary:hover {
  background: #42987B;
  border-color: #42987B;
  text-decoration: none;
}

/* Button dark */
.c-btn--dark {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  padding: 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #555c66;
  margin: 0;
  cursor: pointer;
  outline: none;
  min-width: 108px;
  text-align: center;
  background: #555c66;
  text-decoration: none;
  -moz-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.c-btn--dark:hover {
  background: #6b727b;
  border: 1px solid #6b727b;
}

/* Button secondary */
.c-btn--secondary {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  padding: 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  color: #555c66;
  border: 1px solid #f3eadf;
  margin: 0;
  cursor: pointer;
  outline: none;
  min-width: 130px;
  text-align: center;
  background: #f3eadf;
  text-decoration: none;
  -moz-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.c-btn--secondary:hover {
  background: #fdfbf8;
}

/* Button transparent */
.c-btn--transparent {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  padding: 0 0px;
  font-size: 13px;
  text-transform: uppercase;
  color: #555c66;
  border: 1px solid transparent;
  margin: 0;
  cursor: pointer;
  outline: none;
  min-width: unset;
  text-align: center;
  background: transparent;
  text-decoration: none;
  -moz-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.c-btn--transparent:hover {
  color: #42c299;
}

/* Button helpers */
.h-btn--full-width {
  width: 100%;
}

.h-btn--big {
  height: 48px;
  font-size: 15px;
  line-height: 48px;
}

.h-btn-min-width--medium {
  min-width: 200px;
}

/*------------------------------------*\
  #Custom radio and checkbox
\*------------------------------------*/
/*------------------------------------*\
  #Custom checkbox
\*------------------------------------*/
.c-custom-checkbox-group {
  margin-top: 10px;
}

.c-custom-checkbox-item {
  position: relative;
}

.c-custom-checkbox-item + .c-custom-checkbox-item {
  margin-top: 10px;
}

.c-custom-checkbox-item input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
}

.h-no-text .c-custom-checkbox {
  width: 16px;
  height: 1em;
  padding-left: 16px;
}

.c-custom-checkbox {
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  display: block;
  color: #666;
}

.c-custom-checkbox:before,
.c-custom-checkbox:after {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0px;
  top: 3px;
  width: 16px;
  height: 16px;
}

.c-custom-checkbox:before {
  border: 1px solid #c5c5c5;
}

.c-custom-checkbox:after {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 3px;
  color: #ccc;
  display: inline-block;
  background: #666 url(../img/icon-checkbox.svg) no-repeat center center;
  background-size: 10px 10px;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

input[type="checkbox"]:checked + .c-custom-checkbox:after {
  opacity: 1;
}

/*------------------------------------*\
  #Custom radio
\*------------------------------------*/
.c-custom-radio-group {
  margin-top: 10px;
}

.c-custom-radio-item + .c-custom-radio-item {
  margin-top: 10px;
}

.c-custom-radio-item {
  position: relative;
}

.c-custom-radio-item input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
}

.h-no-text .c-custom-radio {
  width: 16px;
  height: 1em;
  padding-left: 16px;
}

.c-custom-radio-item label {
  font-weight: normal;
}

.c-custom-radio [class^="icon"],
.c-custom-radio [class*=" icon"] {
  padding-left: 41px;
  position: relative;
}

.c-custom-radio [class^="icon"]:before,
.c-custom-radio [class*=" icon"]:before {
  width: 30px;
  height: 22px;
}

.c-custom-radio {
  padding-left: 27px;
  position: relative;
  cursor: pointer;
}

.c-custom-radio:before,
.c-custom-radio:after {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
}

.c-custom-radio:before {
  border: 1px solid #c5c5c5;
}

.c-custom-radio:after {
  background: #7d7d7d;
  width: 8px;
  height: 8px;
  left: 5px;
  top: 8px;
  opacity: 0;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type="radio"]:checked + .c-custom-radio:after {
  opacity: 1;
}

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

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'omnisend-blog' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-right:before {
  content: "\e908";
}

.icon-chevron-left:before {
  content: "\e909";
}

.icon-chevron-down:before {
  content: "\e90a";
}

.icon-chevron-up:before {
  content: "\e90b";
}

.icon-close:before {
  content: "\e907";
}

.icon-menu:before {
  content: "\e906";
}

.icon-linkedin:before {
  content: "\e905";
}

.icon-twitter:before {
  content: "\e900";
}

.icon-facebook:before {
  content: "\e901";
}

.icon-search:before {
  content: "\e902";
}

.icon-dart-right:before {
  content: "\e903";
}

.icon-dart-left:before {
  content: "\e904";
}

/*------------------------------------*\
  #OWL carousele fix
\*------------------------------------*/
/* Owl carousele items flickering before slide fixed */
.owl-item {
  z-index: -1;
}

/*------------------------------------*\
  #HELPERS
\*------------------------------------*/
.h-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h-fl {
  float: left;
}

.h-fr {
  float: right;
}

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

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

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

.h-date {
  color: #ccc;
}

/* Vertical aligner */
.h-v-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 1px;
  margin-right: -6px;
}

.h-v-align__content {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 1px);
}

/* ------ Clearfix ------ */
.h-row:before,
.h-row:after,
.h-clearfix:before,
.h-clearfix:after,
.h-form-row:before,
.h-form-row:after {
  content: "";
  display: table;
}

.h-row:after,
.h-clearfix:after,
.h-form-row:after {
  clear: both;
}

.h-row,
.h-clearfix,
.h-form-row {
  zoom: 1;
}

/* Max width helpers */
.h-max-width--small,
.h-max-width--medium,
.h-max-width--big {
  margin-left: auto;
  margin-right: auto;
}

.h-max-width--medium {
  max-width: 500px;
}

.h-max-width--big {
  max-width: 570px;
}

/* Video */
.h-video {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.h-video video {
  vertical-align: top;
  width: 100%;
}

.h-video:before {
  display: inline-block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.h-video img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.h-video span {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 100%;
  background: #fff;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  text-align: center;
  vertical-align: middle;
  font-size: 32px;
  line-height: 70px;
  padding-left: 5px;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.h-video.is-playing span {
  opacity: 0;
}

/* Background color helpers */
.h-bg--sand-light {
  background: #fdfbf8;
}

/* Color helpers  */
.h-color--green {
  color: #42c299 !important;
}

/* Flex helpers */
.h-first-flex {
  display: flex;
}

.h-first-flex > *:first-child {
  flex: 1;
}

/* Colored span */
.h-colored-span span {
  color: #42c299;
}

/* Mobile helpers */
.h-mobile-show {
  display: none !important;
}

@media (max-width: 1024px) {
  .h-mobile-show {
    display: block !important;
  }
  .h-mobile-hide {
    display: none !important;
  }
}

/*------------------------------------*\
  #BOX MODEL SET
\*------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* Sticky footer */
html,
body {
  height: 100%;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.site-header,
.site-footer {
  flex: none;
}

.site-content {
  flex: 1 0 auto;
  padding: var(--space) var(--space) 0;
  width: 100%;
  overflow: hidden;
}

.site-content::after {
  content: '\00a0';
  /*   */
  display: block;
  margin-top: var(--space);
  height: 0px;
  visibility: hidden;
}

@media (--break-lg) {
  .site-content {
    padding-top: var(--space-lg);
  }
  .site-content::after {
    margin-top: var(--space-lg);
  }
}

.site-content--full {
  padding: 0;
}

.site-content--full::after {
  content: none;
}

/*------------------------------------*\
  #SITE LAYOUT
\*------------------------------------*/
.h-site-block {
  margin: 0 auto;
  max-width: 1290px;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1260px) {
  .h-site-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*------------------------------------*\
  #LAYOUT BLOCKS
\*------------------------------------*/
/*------------------------------------*\
  #COLUMN SYSTEM
\*------------------------------------*/
.h-row {
  margin: 0 -20px;
}

.h-col-1-of-2,
.h-col-1-of-3,
.h-col-2-of-3,
.h-col-1-of-4,
.h-col-3-of-4,
.h-col-1-of-5,
.h-col-2-of-5,
.h-col-3-of-5,
.h-col-1-of-6,
.h-col-1-of-12 {
  float: left;
}

.h-row > .h-col-1-of-2,
.h-row > .h-col-1-of-3,
.h-row > .h-col-2-of-3,
.h-row > .h-col-1-of-4,
.h-row > .h-col-3-of-4,
.h-row > .h-col-1-of-5,
.h-row > .h-col-2-of-5,
.h-row > .h-col-3-of-5,
.h-row > .h-col-1-of-6,
.h-row > .h-col-1-of-12 {
  padding: 0 20px;
}

.h-row > .no-padding {
  padding-left: 0px;
  padding-right: 0px;
}

.h-row > .no-padding-right {
  padding-right: 0px;
}

.h-row > .no-padding-left {
  padding-left: 0px;
}

.h-col-1-of-2.fr,
.h-col-1-of-3.fr,
.h-col-2-of-3.fr,
.h-col-1-of-4.fr,
.h-col-3-of-4.fr,
.h-col-1-of-5.fr,
.h-col-2-of-5.fr,
.h-col-3-of-5.fr,
.h-col-1-of-6.fr,
.h-col-1-of-6.fr {
  float: right;
}

.h-col-1-of-2 {
  width: 50%;
}

.h-col-1-of-3 {
  width: 33.33333%;
}

.h-col-2-of-3 {
  width: 66.6666%;
}

.h-col-1-of-4 {
  width: 25%;
}

.h-col-3-of-4 {
  width: 75%;
}

.h-col-1-of-5 {
  width: 20%;
}

.h-col-2-of-5 {
  width: 40%;
}

.h-col-3-of-5 {
  width: 60%;
}

.h-col-1-of-6 {
  width: 16.66666%;
}

.h-col-1-of-12 {
  width: 8.33333%;
}

/*------------------------------------*\
  #HEADER
\*------------------------------------*/
.site {
  padding-top: 122px;
}

@media (max-width: 1024px) {
  .site {
    padding-top: 115px;
  }
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 15;
  background: #fff;
}

.site-header__top {
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header__bottom {
  background: #fdfbf8;
  border-top: 1px solid #fdfbf8;
  border-bottom: 1px solid #fdfbf8;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 50;
  -moz-transition: background 0.3s, padding-top 0.3s, padding-bottom 0.3s, box-shadow 0.3s, border 0.3s;
  -o-transition: background 0.3s, padding-top 0.3s, padding-bottom 0.3s, box-shadow 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, padding-top 0.3s, padding-bottom 0.3s, box-shadow 0.3s, border 0.3s;
  transition: background 0.3s, padding-top 0.3s, padding-bottom 0.3s, box-shadow 0.3s, border 0.3s;
  min-height: 51px;
}

.top-search-visible .site-header__bottom {
  background: #fff;
  border-top: 1px solid #f0f0ec;
  border-bottom: 1px solid #f0f0ec;
}

.site-header__bottom.is_stuck {
  background: #fff;
  padding-top: 27px;
  padding-bottom: 28px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.site-header__bottom-inner {
  position: relative;
}

.site-header__bottom.is_stuck + div {
  height: 70px !important;
}

.site-header__bottom .c-main-logo {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -19px;
  opacity: 0;
  z-index: 5;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}

.admin-bar .site-header__bottom.is_stuck {
  top: 32px !important;
}

.site-header__bottom.is_stuck .c-main-logo {
  opacity: 1;
  pointer-events: all;
}

/* Toggle mobile menu */
/* Toggle mobile menu */
.site {
  position: relative;
  overflow: hidden;
}

.c-toggle-mobile-menu {
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 4px;
  height: 60px;
  width: 60px;
  display: none;
}

.c-toggle-mobile-menu i {
  position: absolute;
  display: inline-block;
  width: 60px;
  line-height: 60px;
  text-align: center;
  opacity: 0;
  color: #545c66;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 32px;
}

.c-toggle-mobile-menu .icon-menu {
  opacity: 1;
}

.h-menu-visible .c-toggle-mobile-menu .icon-menu {
  opacity: 0;
}

.h-menu-visible .c-toggle-mobile-menu .icon-close {
  opacity: 1;
}

/* Logo */
.c-main-logo {
  display: inline-block;
}

.c-main-logo__image {
  float: left;
  width: 152px;
  height: 32px;
}

.c-main-logo__text {
  float: left;
  margin-left: 19px;
  padding-left: 19px;
  border-left: 1px solid #f0f0f0;
  color: #545c66;
  font-weight: 500;
  line-height: 31px;
  font-size: 15px;
  margin-top: 3px;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-main-logo__text:hover {
  color: #e6ccb9;
}

/* CTA menu*/
.c-cta-menu li {
  float: left;
  margin-right: 17px;
}

.c-cta-menu li:last-child {
  margin-right: 0;
}

/* Main menu */
.c-main-menu {
  margin-right: 50px;
}

.c-main-menu li {
  float: left;
  margin-right: 31px;
}

.c-main-menu li:last-child {
  margin-right: 0;
}

.c-main-menu a {
  color: #555c66;
  text-transform: uppercase;
  display: inline-block;
  line-height: 40px;
}

.c-main-menu a:hover {
  color: #42c299;
}

/*------------------------------------*\
  #Secondary menu
\*------------------------------------*/
.c-secondary-menu {
  position: relative;
}

.c-secondary-menu__title {
  float: left;
  text-transform: uppercase;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #f3eadf;
  width: 92px;
  -moz-transition: width 0.3s, border-color 0.3s;
  -o-transition: width 0.3s, border-color 0.3s;
  -webkit-transition: width 0.3s, border-color 0.3s;
  transition: width 0.3s, border-color 0.3s;
  margin-top: 13px;
}

.is_stuck .c-secondary-menu__title {
  width: 280px;
  border-color: transparent;
}

.c-secondary-menu__title-text {
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.is_stuck .c-secondary-menu__title-text {
  opacity: 0;
}

.c-category-menu {
  float: left;
  display: flex;
  align-items: center;
  min-height: 40px;
}

.c-category-menu .c-btn--secondary {
  display: none;
}

.is_stuck .c-btn--secondary {
  display: block;
}

.c-category-menu li {
  float: left;
  margin-right: 24px;
}

.c-category-menu li:last-child {
  margin-right: 0;
}

.c-category-menu a {
  display: inline-block;
  color: #555c66;
}

.c-category-menu a:hover {
  color: #42c299;
}

.c-category-menu li.h-is-active a {
  font-weight: 500;
}

.c-secondary-menu-mobile {
  display: inline-block;
}

.c-toggle-secondary-menu i {
  display: inline-block;
  -moz-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
  vertical-align: -1px;
}

.h-category-menu-visible .c-toggle-secondary-menu i {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-secondary-menu-mobile .c-category-menu {
  position: absolute;
  left: -30px;
  top: 100%;
  right: -30px;
  background: #fdfbf8;
  padding: 20px 30px;
  padding-top: 16px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -moz-transition: visibility 0.3s, opacity 0.3s, background 0.3s;
  -o-transition: visibility 0.3s, opacity 0.3s, background 0.3s;
  -webkit-transition: visibility 0.3s, opacity 0.3s, background 0.3s;
  transition: visibility 0.3s, opacity 0.3s, background 0.3s;
}

.h-category-menu-visible .c-secondary-menu-mobile .c-category-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.is_stuck .c-secondary-menu-mobile .c-category-menu {
  background: #fff;
}

.c-secondary-menu-mobile .c-category-menu li {
  margin: 0;
  margin-bottom: 5px;
  display: block;
  float: none;
}

.c-secondary-menu-mobile .c-category-menu li:last-child {
  margin-bottom: 0px;
}

.c-secondary-menu-mobile .c-category-menu a {
  display: block;
  padding: 5px 0;
}

/* Responsive secondary menu */
@media (max-width: 1260px) {
  .is_stuck .c-secondary-menu__title {
    width: 128px;
  }
  .is_stuck .c-main-logo {
    margin-top: -18px;
  }
  .is_stuck .c-main-logo__image {
    width: 80px;
  }
  .is_stuck .c-main-logo__text {
    margin-left: 11px;
    padding-left: 9px;
    line-height: 23px;
    font-size: 12px;
    margin-top: 7px;
  }
}

/*------------------------------------*\
  #Top search
\*------------------------------------*/
.c-top-search-block {
  position: absolute;
  right: 0;
  top: -5px;
}

.c-top-search-block .c-form-row {
  margin-bottom: 0;
}

.c-top-search-block input[type="text"],
.c-top-search-block input[type="text"]:focus {
  border-color: transparent;
  background: transparent;
  padding-left: 0;
}

.c-top-search-block input[type="text"]::-webkit-input-placeholder {
  color: #d0d0d0;
}

.c-top-search-block input[type="text"]:-moz-placeholder {
  color: #d0d0d0;
}

.c-top-search-block input[type="text"]::-moz-placeholder {
  color: #d0d0d0;
}

.c-top-search__toggle {
  width: 36px;
  height: 36px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 6px;
}

.c-top-search__toggle:hover {
  color: #42c299;
}

.c-top-search__toggle i {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  font-size: 20px;
  line-height: 36px;
  opacity: 0;
}

.c-top-search__toggle .h-icon-active {
  color: #d6d6d6;
}

.c-top-search__toggle .h-icon-passive {
  opacity: 1;
}

.top-search-visible .c-top-search__toggle .h-icon-passive {
  opacity: 0;
}

.top-search-visible .c-top-search__toggle .h-icon-active {
  opacity: 1;
}

.c-top-search {
  position: absolute;
  right: 40px;
  top: 0;
  width: 0px;
  -moz-transition: width 0.3s, background 0.3s;
  -o-transition: width 0.3s, background 0.3s;
  -webkit-transition: width 0.3s, background 0.3s;
  transition: width 0.3s, background 0.3s;
  overflow: hidden;
  background: #fff;
}

.c-top-search-form {
  width: 1138px;
}

.top-search-visible .c-top-search {
  width: 1138px;
}

.top-search-visible .is_stuck .c-top-search {
  width: 890px;
  background: #fff;
}

.is_stuck .c-top-search-form {
  width: 890px;
}

.c-top-search-form .c-btn--transparent {
  font-size: 20px;
  height: 48px;
  padding-top: 1px;
}

/* Page scroll progress bar */
.c-scroll-progress {
  position: absolute;
  top: 100%;
  height: 2px;
  left: 0;
  right: 0;
  display: none;
}

.c-scroll-progress__col {
  position: absolute;
  background: #42c299;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.single-post .c-scroll-progress {
  display: block;
}

/* Responsive header */
@media (max-width: 1260px) {
  .top-search-visible .c-top-search,
  .c-top-search-form {
    width: calc(100vw - 100px);
  }
  .top-search-visible .is_stuck .c-top-search,
  .top-search-visible .is_stuck .c-top-search-form {
    width: calc(100vw - 245px);
  }
}

@media (max-width: 1024px) {
  .c-toggle-mobile-menu {
    display: inline-block;
  }
  .c-main-menu-wrapper {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-transition: transform 0.3s, opacity 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    -webkit-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 20;
    padding: 0px;
    padding: 20px 30px;
  }
  .h-menu-visible .c-main-menu-wrapper {
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .top-search-visible .is_stuck .c-top-search,
  .top-search-visible .is_stuck .c-top-search-form {
    width: calc(100vw - 100px);
  }
  .c-cta-menu {
    float: none;
    margin-bottom: 20px;
  }
  .c-cta-menu li {
    display: inline-block;
    margin: 0;
    width: 50%;
    float: left;
  }
  .c-cta-menu a {
    display: block;
  }
  .c-main-menu {
    float: none;
    margin: 0;
  }
  .c-main-menu li {
    float: none;
  }
  .c-main-menu a {
    display: block;
  }
  .c-secondary-menu-mobile {
    border: none;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .site-header__top {
    padding-top: 18px;
    padding-bottom: 13px;
    height: 68px;
  }
  .c-main-logo__text {
    margin-top: 2px;
  }
  .c-main-logo__image {
    width: 96px;
    height: 30px;
  }
  .c-main-menu-wrapper {
    padding-top: 5px;
  }
}

/*------------------------------------*\
  #HEADER imported form omnisend com
\*------------------------------------*/
.topnav {
  float: right;
  margin-right: 50px;
}

.topnav .topnav {
  margin-right: 0;
}

.topnav .btn--simple {
  padding-left: 0;
  padding-right: 0;
}

.topnav > ul {
  padding: 0;
  display: inline-block;
  list-style-type: none;
  margin: 0 0px 0 0;
}

.topnav > ul > li {
  background: none;
  display: inline-block;
  position: relative;
  margin: 0 0 0 5px;
  padding: 0;
}

.topnav > ul > li:hover > a {
  color: #42c299;
}

.topnav > ul > li > a {
  display: inline-block;
  outline: none;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  color: #555c66;
  padding: 0 8px;
  height: 40px;
  line-height: 40px;
  border: none;
  position: relative;
}

.topnav > ul > li > a:before {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
  z-index: 10;
}

.topnav > ul > li > a:hover, .topnav > ul > li > a:focus {
  text-decoration: underline;
  color: #555c66;
}

.topnav > ul > li a.active, .topnav > ul > li a.in_path {
  text-decoration: underline;
}

/*------------------------------------*\
  #Header submenu
\*------------------------------------*/
.topnav .topnav {
  display: inline-block;
  float: none;
}

.topnav > ul {
  overflow: visible;
}

.sub-menu {
  position: absolute;
  padding: 20px 30px 25px 30px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  list-style: none;
  overflow: visible;
  width: 750px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 20;
}

.sub-menu--small {
  width: 520px;
}

li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.sub-menu li {
  list-style: none;
  background: none;
  width: 33.3333%;
  float: left;
  padding: 25px;
}

/* one item */
.sub-menu li:first-child:nth-last-child(1) {
  width: 100%;
}

/* two items */
.sub-menu li:first-child:nth-last-child(2),
.sub-menu li:first-child:nth-last-child(2) ~ li,
.sub-menu li:first-child:nth-last-child(3),
.sub-menu li:first-child:nth-last-child(3) ~ li,
.sub-menu li:first-child:nth-last-child(4),
.sub-menu li:first-child:nth-last-child(4) ~ li {
  width: 50%;
}

.sub-menu li:first-child:nth-last-child(3) ~ li:nth-child(2n+1),
.sub-menu li:first-child:nth-last-child(4) ~ li:nth-child(2n+1) {
  clear: left;
}

.sub-menu li:first-child:nth-last-child(5),
.sub-menu li:first-child:nth-last-child(5) ~ li,
.sub-menu li:first-child:nth-last-child(6),
.sub-menu li:first-child:nth-last-child(6) ~ li,
.sub-menu li:first-child:nth-last-child(7),
.sub-menu li:first-child:nth-last-child(7) ~ li,
.sub-menu li:first-child:nth-last-child(8),
.sub-menu li:first-child:nth-last-child(8) ~ li {
  width: 33.3333%;
}

.sub-menu li:first-child:nth-last-child(5) ~ li:nth-child(3n+1),
.sub-menu li:first-child:nth-last-child(6) ~ li:nth-child(3n+1),
.sub-menu li:first-child:nth-last-child(7) ~ li:nth-child(3n+1),
.sub-menu li:first-child:nth-last-child(8) ~ li:nth-child(3n+1) {
  clear: left;
}

.sub-menu li a {
  color: #000;
}

.sub-menu li a:hover {
  text-decoration: none;
}

a:hover .menu-item-title {
  text-decoration: underline;
}

.menu-item-title {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #555c66;
  font-weight: 400;
  margin-bottom: 8px;
}

.menu-item-description {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 5px;
}

.topnav > ul > .menu-item-has-children > a:after {
  content: '';
  background: url(images/arrow-down.png);
  width: 7px;
  height: 5px;
  position: absolute;
  right: -3px;
  top: 17px;
  transition: transform 0.3s;
}

.topnav > ul > .menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}

html .topnav > ul > li:hover > a {
  text-decoration: underline;
  color: #555c66;
}

@media only screen and (max-width: 1023px) {
  .topnav,
  .topnav .topnav {
    float: none;
    margin-right: 0;
    display: block;
  }
  .topnav > ul {
    display: block;
  }
  .topnav > ul > li {
    margin: 0;
    display: block;
  }
  .topnav > ul > li > a {
    display: block;
    padding: 0;
    text-align: left;
  }
  .topnav > ul > .menu-item-has-children > a:after {
    display: none;
  }
}

/*------------------------------------*\
  #Simple sections
\*------------------------------------*/
.c-simple-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.c-simple-section__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 48px;
}

.c-simple-section__subtitle {
  font-size: 18px;
  line-height: 1.75em;
}

/* Responsive simple section */
@media (max-width: 960px) {
  .c-simple-section {
    padding-top: 1px;
    padding-bottom: 40px;
  }
  .c-simple-section__title {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

/*------------------------------------*\
  #Article list
\*------------------------------------*/
.c-article-list {
  margin: 0 -15px;
}

.c-article-wrapper {
  padding: 0 15px;
  margin-bottom: 30px;
  float: left;
  width: 33.3333%;
}

.c-article-wrapper:nth-child(3n+2) {
  clear: left;
}

/* When list without featured post on top */
.c-further-reading .c-article-wrapper:nth-child(3n+2),
.search-results .c-article-wrapper:nth-child(3n+2),
.paged .c-article-wrapper:nth-child(3n+2),
.tag .c-article-wrapper:nth-child(3n+2),
.category .c-article-wrapper:nth-child(3n+2) {
  clear: none;
}

.c-further-reading .c-article-wrapper:nth-child(3n+1),
.search-results .c-article-wrapper:nth-child(3n+1),
.paged .c-article-wrapper:nth-child(3n+1),
.tag .c-article-wrapper:nth-child(3n+1),
.category .c-article-wrapper:nth-child(3n+1) {
  clear: left;
}

.c-article {
  border: 1px solid #f5f5f5;
  border-top: none;
  background: #fff;
  -moz-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  padding-bottom: 15px;
  position: relative;
}

.c-article a:hover {
  color: #42c299;
}

.c-article__media {
  position: relative;
  margin-left: -1px;
  margin-right: -1px;
  display: block;
}

.c-article__media .c-tag {
  position: absolute;
  left: 30px;
  bottom: -12px;
}

.c-article__media img {
  width: 100%;
  height: auto;
}

.c-article__content {
  padding: 28px;
}

.c-article__info {
  font-size: 13px;
  margin-bottom: 15px;
}

.c-article__info > span {
  text-transform: uppercase;
}

.c-article__info a:hover {
  color: #42c299;
}

.c-article__title {
  font-size: 28px;
  line-height: 1.25em;
  margin-top: 7px;
  margin-bottom: 14px;
  display: block;
}

.c-article__short-content {
  font-size: 13px;
  line-height: 1.538em;
  margin-bottom: 26px;
}

.c-article__short-content p {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.538em;
  margin-bottom: 26px;
}

.c-article__date {
  font-size: 13px;
  line-height: 1.538em;
  color: #cfcfd0;
  position: absolute;
  left: 28px;
  bottom: 28px;
}

.c-article__data .c-article__info {
  display: inline-block;
  margin-bottom: 0;
}

.c-article__data .c-article__date {
  display: inline-block;
  margin-left: 3px;
  color: inherit;
  position: static;
}

/* Big article */
.c-article--big {
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
  margin-bottom: 95px;
  border: none;
}

.c-article--big:before {
  display: inline-block;
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  bottom: 0;
  left: 130px;
  border: 1px solid #f3eadf;
  -moz-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}

.c-article:not(.c-article--big):hover,
.c-article--big:hover:before {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.c-article--big .c-article__media {
  width: 50%;
  position: relative;
  z-index: 3;
}

.c-article--big .c-article__content {
  width: 50%;
  padding: 0 56px;
  position: relative;
  z-index: 3;
  border: none;
}

.c-article--big .c-article__short-content {
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 29px;
  margin-bottom: 0;
}

.c-article--big .c-article__short-content p {
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 29px;
  margin-bottom: 0;
}

.c-article--big .c-tag {
  padding: 5px 14px;
}

.c-article--big .c-article__title {
  font-size: 32px;
  margin-top: 14px;
  margin-bottom: 20px;
}

/**/
.c-article--banner {
  position: relative;
  height: 500px;
}

.c-article__full-size-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Responsive article list */
@media (max-width: 1024px) {
  .c-article__content {
    padding: 21px 30px;
  }
  .c-article__title {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .c-article-wrapper {
    width: 50%;
  }
  .c-article-wrapper:nth-child(3n+2) {
    clear: none;
  }
  .c-article-wrapper:nth-child(2n+2) {
    clear: left;
  }
  .search-results .c-article-wrapper:nth-child(2n+2),
  .c-further-reading .c-article-wrapper:nth-child(2n+2),
  .paged .c-article-wrapper:nth-child(2n+2),
  .tag .c-article-wrapper:nth-child(2n+2),
  .category .c-article-wrapper:nth-child(2n+2) {
    clear: none;
  }
  .search-results .c-article-wrapper:nth-child(2n+1),
  .c-further-reading .c-article-wrapper:nth-child(2n+1),
  .paged .c-article-wrapper:nth-child(2n+1),
  .tag .c-article-wrapper:nth-child(2n+1),
  .category .c-article-wrapper:nth-child(2n+1) {
    clear: left;
  }
  .c-article--big {
    padding: 0;
    display: block;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 30px;
  }
  .c-article--big:before {
    left: -1px;
    right: -1px;
  }
  .c-article--big .c-article__media {
    width: auto;
    margin: 0;
  }
  .c-article--big .c-article__content {
    width: auto;
    padding: 12px 30px;
  }
}

@media (max-width: 640px) {
  .c-article-wrapper {
    width: 100%;
  }
  .c-article__info,
  .c-article__short-content,
  .c-article__date,
  .c-article__data {
    display: none;
  }
  .c-article--big .c-tag {
    position: absolute;
    left: 30px;
    top: -12px;
  }
  .c-article--big .c-article__title {
    font-size: 24px;
  }
  .c-article__media .c-tag {
    left: 20px;
  }
}

/*------------------------------------*\
#Tag and tag list
\*------------------------------------*/
.c-tag-list {
  margin-top: 38px;
  margin-bottom: 38px;
}

.c-tag-list__title {
  font-size: 13px;
  color: #999999;
  margin-bottom: 13px;
}

.c-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #42c299;
  border: 1px solid #42c299;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.c-tag-list div a,
.c-tag--white {
  border: 1px solid #ebebeb;
  background: #fff;
  color: #555c66;
  text-transform: none;
  margin-right: 7px;
  padding: 7px 8px;
  -moz-transition: color 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, border-color 0.3s;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
  font-weight: 400;
}

.c-tag-list div a:hover,
.c-tag--white:hover {
  color: #42c299;
  border-color: #42c299;
}

.c-tag-list .c-tag {
  margin-bottom: 8px;
}

/*------------------------------------*\
  #Form block
\*------------------------------------*/
.c-form-block {
  padding: 9px 40px;
  padding-bottom: 30px;
}

.c-form-block__media img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.c-form-block__title {
  font-size: 28px;
  line-height: 1.25em;
  margin-top: 9px;
  margin-bottom: 16px;
}

.c-form-block__subtitle {
  font-size: 18px;
  line-height: 1.75em;
  margin-bottom: 18px;
}

/* Responsive form block */
@media (max-width: 640px) {
  .c-form-block {
    padding-left: 25px;
    padding-right: 25px;
  }
  .c-form-block__title {
    font-size: 20px;
  }
  .c-form-block__subtitle {
    font-size: 16px;
  }
}

/*------------------------------------*\
  #Paginator
\*------------------------------------*/
.c-paginator {
  text-align: center;
  margin-top: 23px;
}

.c-paginator a,
.c-paginator span {
  display: inline-block;
  line-height: 23px;
  margin: 0 10px;
}

.c-paginator .c-paginator--prev {
  margin-right: 15px;
}

.c-paginator--prev i {
  margin-right: 5px;
}

.c-paginator .c-paginator--next {
  margin-left: 15px;
}

.c-paginator--next i {
  margin-left: 5px;
}

.c-paginator .current,
.c-paginator .h-is-active,
.c-paginator a:hover {
  color: #42c299;
}

/* Responsive paginator */
@media (max-width: 640px) {
  .c-paginator a {
    display: none;
  }
  .c-paginator a:nth-child(1),
  .c-paginator a:nth-child(2),
  .c-paginator a:nth-last-child(1),
  .c-paginator a:nth-last-child(2) {
    display: inline-block;
  }
}

/*------------------------------------*\
  #Banner
\*------------------------------------*/
.c-banner {
  padding: 80px 100px;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-top: 50px;
  margin-bottom: 50px;
}

.c-banner img {
  width: 100%;
  height: auto;
}

.c-banner__content {
  max-width: 560px;
}

.c-banner__title {
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 19px;
}

.c-banner__subtitle {
  font-size: 18px;
  line-height: 1.75em;
  margin-bottom: 41px;
}

/* Responsive banner */
@media (max-width: 1024px) {
  .c-banner {
    padding: 40px 50px;
  }
  .c-banner:last-child {
    margin-bottom: 0;
  }
  .c-banner .h-mobile-show {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .c-banner {
    background: #d5bba9 !important;
    padding: 0;
  }
  .c-banner__content {
    padding: 25px;
    padding-top: 35px;
    text-align: center;
    max-width: unset;
  }
  .c-banner__title {
    font-size: 24px;
    line-height: 33px;
  }
  .c-banner__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .c-banner .h-mobile-show {
    display: block !important;
  }
}

/*------------------------------------*\
  #Page top
\*------------------------------------*/
.c-page-top {
  padding-top: 12px;
  padding-bottom: 72px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f3eadf;
}

.c-page-title,
.c-page-subtitle {
  max-width: 820px;
}

.c-page-title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 1.2em;
  font-weight: normal;
}

.c-page-subtitle {
  font-size: 18px;
  line-height: 1.75em;
  font-weight: 300;
  margin: 0;
}

/* Responsive page top */
@media (max-width: 960px) {
  .c-page-top {
    padding-top: 33px;
    padding-bottom: 26px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .c-page-title {
    font-size: 38px;
  }
  .c-page-subtitle {
    font-size: 16px;
  }
}

/*------------------------------------*\
  #End of content message
\*------------------------------------*/
.c-end-of-content-message {
  max-width: 370px;
  margin: 42px auto;
  margin-bottom: 63px;
  font-size: 18px;
  line-height: 1.75em;
  text-align: center;
}

/*------------------------------------*\
  #Detailed post
\*------------------------------------*/
.c-detailed-post {
  padding-top: 62px;
  padding-bottom: 38px;
}

.c-detailed-post .c-detailed-post__title {
  font-size: 50px;
  line-height: 1.2em;
  margin-top: 9px;
  margin-bottom: 17px;
}

.c-detailed-post .h-site-block {
  max-width: 1190px;
}

.c-detailed-post__header {
  text-align: center;
}

.c-detailed-post__main-image {
  margin-top: 46px;
  margin-bottom: 62px;
}

.c-detailed-post__main-image img {
  width: 100%;
  height: auto;
}

.c-detailed-post__main-image figure {
  margin: 0;
}

.c-detailed-post__content-wrapper {
  position: relative;
}

.c-detailed-post__content {
  position: relative;
  max-width: 570px;
  margin: 0 auto;
}

/* Post side content */
.c-detailed-post__side-content {
  position: absolute;
  left: 0px;
  width: 190px;
  top: -13px;
}

.c-detailed-post__side-content.is_stuck {
  left: auto;
  z-index: 10;
}

.c-side-content__block {
  padding: 18px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 8px;
}

.c-side-content__block:last-child {
  border-bottom: none;
}

.c-side-content__title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 25px;
}

/* Side menu */
.c-side-menu {
  padding-bottom: 16px;
  counter-reset: menu-item-count;
}

.c-side-menu li {
  margin-bottom: 23px;
  font-size: 13px;
  line-height: 1.6em;
  position: relative;
}

.c-side-menu li:last-child {
  margin-bottom: 0;
}

.c-side-menu a {
  padding-left: 26px;
  position: relative;
  display: block;
}

.c-side-menu a:before {
  display: inline-block;
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  width: 2px;
  content: '';
  background: #42c299;
  opacity: 0;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-side-menu .h-is-active,
.c-side-menu a:hover {
  color: #42c299;
}

.c-side-menu a.h-is-active:before {
  opacity: 1;
}

.c-side-menu li:before,
.c-side-menu__count {
  position: absolute;
  left: 0;
  top: 0;
}

.c-side-menu li:before {
  display: inline-block;
  counter-increment: menu-item-count;
  content: "0" counter(menu-item-count);
}

/* Social block in side content */
.c-side-content--social {
  border-top: 1px solid #f3eadf;
  border-bottom: none;
  margin-bottom: 0;
}

.c-side-content--social .c-side-content__title {
  margin-bottom: 0;
  margin-top: 3px;
}

.c-side-content--social .c-social-menu {
  margin-top: 0;
}

/* Responsive datiled post */
@media (max-width: 1260px) {
  .c-detailed-post__side-content {
    width: 175px;
  }
  .c-side-content__block {
    padding-right: 0px;
  }
}

@media (max-width: 1024px) {
  .c-detailed-post__side-content {
    position: static;
    width: auto;
    max-width: 570px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .c-detailed-post {
    padding-top: 30px;
  }
  .c-detailed-post .c-detailed-post__title {
    font-size: 38px;
  }
  .c-detailed-post .c-article__info {
    display: block;
  }
}

@media (max-width: 640px) {
  .c-detailed-post__main-image {
    margin-left: -30px;
    margin-right: -30px;
  }
  .c-detailed-post__main-image {
    margin-bottom: 18px;
  }
}

/*------------------------------------*\
  #Quote
\*------------------------------------*/
.wp-block-quote,
.c-quote {
  position: relative;
  padding: 50px 70px;
  border-top: 1px solid #d5bba9;
  border-bottom: 1px solid #d5bba9;
  margin-top: 53px;
  margin-bottom: 71px;
  border-left: none;
}

.wp-block-quote:before,
.c-quote:before {
  display: block;
  font-size: 120px;
  content: "“";
  color: #42c299;
  font-family: "GT Pressura", Arial, sans-serif;
  line-height: 35px;
  position: absolute;
  left: 11px;
  top: 74px;
}

.wp-block-quote i,
.c-quote i {
  position: absolute;
  color: #42c299;
  left: 20px;
  top: 50px;
}

.c-quote__content {
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 0;
  margin-bottom: 21px;
}

.c-quote p,
.wp-block-quote p {
  font-size: 18px;
  line-height: 1.75em;
  margin-top: 0;
  margin-bottom: 1.5em;
}

.c-quote p:last-child,
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.c-quote p:first-child,
.wp-block-quote p:first-child {
  margin-top: 0;
}

.c-quote__author {
  display: flex;
  align-items: center;
}

.c-quote__author-image {
  margin-bottom: 10px;
  margin-right: 19px;
  margin-top: 17px;
}

.c-quote__author-image img {
  border-radius: 100%;
  width: 80px;
  margin: 0;
}

.c-quote__author-details {
  flex: 1;
}

.c-quote__author-name {
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 500;
}

.c-quote__author-title {
  font-size: 13px;
  line-height: 16px;
  color: #555c66;
  margin-top: 0px;
}

.c-quote__author-links {
  vertical-align: top;
  margin-top: 13px;
}

.c-quote__author-links a {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  color: #555c66;
  vertical-align: top;
}

.c-quote__author-links a i {
  position: absolute;
  left: 0px;
  top: -1px;
  font-size: 16px;
  color: #545c66;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-quote__author-links a i.icon-linkedin {
  top: -2px;
}

.c-quote__author-links span {
  display: inline-block;
  width: 1px;
  position: relative;
  margin: 0 15px;
  vertical-align: top;
}

.c-quote__author-links span:before {
  display: inline-block;
  content: '';
  position: absolute;
  height: 11px;
  width: 1px;
  background: #747980;
  left: 0;
  top: 2px;
}

.c-quote__author-links a:hover,
.c-quote__author-links a:hover i {
  color: #42c299;
}

/* Responsive quote */
@media (max-width: 640px) {
  .c-quote {
    padding: 30px;
    padding-top: 68px;
    margin-top: 35px;
    margin-bottom: 35px;
    padding-right: 25px;
  }
  .c-quote:before {
    left: 24px;
    top: 57px;
  }
  .c-quote__content {
    font-size: 16px;
  }
}

/*------------------------------------*\
  #Figure
\*------------------------------------*/
.c-figure {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 38px;
}

.c-figure img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.c-figure__caption {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #cfcfd0;
}

.c-figure__caption a {
  color: #cfcfd0;
}

.c-figure__caption a:hover {
  color: #42c299;
}

/*------------------------------------*\
 #Lead magnet
\*------------------------------------*/
.c-lead-magnet {
  position: relative;
  border: 1px solid #f3eadf;
  margin-top: 38px;
  margin-bottom: 38px;
  margin-top: 70px;
}

.c-lead-magnet__media {
  position: absolute;
  width: 43%;
  right: 0;
  bottom: 0;
}

.c-lead-magnet__media img {
  width: 100%;
  height: auto;
  margin: 0;
}

.c-lead-magnet__content {
  width: 56%;
  padding: 32px 39px;
}

.c-lead-magnet__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.c-lead-magnet__subtitle {
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 17px;
}

.c-lead-magnet-anchor {
  position: relative;
}

.c-lead-magnet--vertical {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 60px;
  width: 190px;
  background: #fdfbf8;
  text-align: center;
  border: none;
  margin-bottom: 0;
  margin-top: 0;
}

.c-lead-magnet--vertical .c-lead-magnet__content {
  width: auto;
  padding: 22px;
}

.c-lead-magnet--vertical .c-lead-magnet__media {
  position: relative;
  width: auto;
}

.c-lead-magnet--vertical .c-lead-magnet__title br {
  display: none;
}

.c-lead-magnet--vertical .c-lead-magnet__title {
  margin-bottom: 20px;
}

/* Lead magnet simple */
.c-lead-magnet--simple {
  background: #555c66;
  color: #fff;
  margin-top: 38px;
}

.c-lead-magnet--simple .c-lead-magnet__content {
  width: auto;
  text-align: left;
}

.c-lead-magnet--simple .c-lead-magnet__title {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 17px;
  text-align: left;
}

/* Responsive lead magnet */
@media (max-width: 1260px) {
  .c-lead-magnet--vertical {
    margin-left: 20px;
  }
}

@media (max-width: 1024px) {
  .c-lead-magnet--vertical {
    position: static;
    margin: 0 auto;
    margin-top: 25px;
    width: auto;
    max-width: 280px;
  }
  .c-lead-magnet--vertical .c-lead-magnet__media {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .c-lead-magnet {
    padding: 0;
  }
  .c-lead-magnet__media {
    position: static;
    width: auto;
  }
  .c-lead-magnet__content {
    padding: 25px;
    width: auto;
    text-align: center;
  }
  .c-lead-magnet .c-btn--primary {
    width: 100%;
  }
  .c-lead-magnet--simple .c-lead-magnet__content {
    text-align: left;
  }
  .c-lead-magnet--simple .c-btn--primary {
    width: auto;
  }
}

/*------------------------------------*\
 #Tip
\*------------------------------------*/
.c-tip {
  position: relative;
  padding: 31px 40px;
  background: #ebf8f3;
  margin-top: 41px;
  margin-bottom: 31px;
  text-align: left;
}

.c-tip__icon {
  position: absolute;
  left: 30px;
  top: 30px;
}

.c-tip__icon img {
  width: 58px;
  height: 58px;
}

.c-tip__title {
  color: #42c299;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.c-tip__content {
  font-size: 18px;
  line-height: 1.75em;
  margin-bottom: 23px;
  text-align: left;
}

.c-tip__content:last-child {
  margin-bottom: 0;
}

/* Responsive tip */
@media (max-width: 640px) {
  .c-tip {
    padding: 25px;
  }
  .c-tip__content {
    font-size: 16px;
  }
}

/*------------------------------------*\
#Author
\*------------------------------------*/
.c-author {
  margin-top: 51px;
  margin-bottom: 30px;
  padding-top: 32px;
  border-top: 1px solid #f3eadf;
}

.c-author__inner {
  position: relative;
  padding-left: 120px;
}

.c-author__avatar {
  position: absolute;
  left: 0;
  top: 8px;
}

.c-author__avatar:before {
  display: inline-block;
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background: #f3eadf;
  top: 5px;
  border-radius: 100%;
  left: 6px;
}

.c-author__avatar-inner {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
}

.c-author__avatar-inner img {
  border-radius: 100%;
  margin: 0;
  width: 100px;
  height: 100px;
}

.c-author__name,
.c-author__details,
.c-author__links {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

.c-author__name {
  font-size: 18px;
  line-height: 1.75em;
  font-weight: 500;
  margin-bottom: 6px;
}

.c-author__details {
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 25px;
}

.c-author__details p {
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 18px;
}

.c-author__details p a {
  color: #42c299;
}

.c-author__links {
  font-size: 13px;
  line-height: 1.6em;
}

.c-author__details br {
  display: none;
}

.c-author__links a {
  color: #42c299;
}

.c-detailed-post__main-content .c-author {
  position: absolute;
  width: 160px;
  left: 100%;
  margin-left: 60px;
  top: 6px;
}

.c-detailed-post__main-content iframe {
  max-width: 100%;
}

.c-detailed-post__main-content .rt-reading-time {
  display: none !important;
}

/* Author small */
.c-author--small {
  margin: 0;
  position: relative;
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
  padding-top: 0;
  border-top: none;
}

.c-author--small .c-author__avatar:before {
  display: none;
}

.c-author--small .c-author__avatar {
  margin-bottom: 14px;
  height: auto;
  position: static;
}

.c-author--small .c-author__avatar img {
  width: 60px;
  height: 60px;
}

.c-author--small .c-author__avatar-inner {
  width: 60px;
  height: 60px;
}

.c-author--small .c-author__name {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.c-author--small .c-author__title {
  font-size: 13px;
  line-height: 20px;
}

/* Responsive author */
@media (max-width: 1024px) {
  .c-detailed-post__main-content .c-author {
    display: none;
  }
  .c-author {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .c-author__inner {
    padding-left: 0;
    text-align: center;
  }
  .c-author__avatar {
    position: relative;
    text-align: center;
    margin-bottom: 23px;
    top: auto;
    left: auto;
  }
  .c-author__avatar:before {
    left: 50%;
    margin-left: -45px;
  }
}

/*------------------------------------*\
#Subscribe block
\*------------------------------------*/
.c-subscribe-line {
  padding-top: 43px;
  padding-bottom: 34px;
}

.c-subscribe-line__title,
.c-subscribe-line__form {
  display: inline-block;
  vertical-align: top;
}

.c-subscribe-line__title {
  margin-right: 25px;
  margin-left: 25px;
  line-height: 40px;
  font-size: 18px;
}

.c-subscribe-line__title strong {
  font-weight: 500;
}

.c-subscribe-line__form {
  width: 425px;
}

.c-subscribe-block .h-small-inputs input[type="email"] {
  font-size: 15px;
}

.c-subscribe-block .error {
  text-align: left;
}

.c-subscribe-block .omnisend-form-loader {
  margin-top: 15px;
  padding-left: 10px;
}

.c-subscribe-block .omnisend-form-success,
.c-subscribe-block .omnisend-form-loader {
  text-align: center;
}

.c-subscribe-block .omnisend-form-success {
  margin-bottom: 12px;
  font-size: 18px;
}

.c-subscribe-block .c-btn--primary {
  margin-left: 10px;
}

.c-subscribe-block .c-form-block {
  padding: 0;
}

/* Responsive subscribe block */
@media (max-width: 1024px) {
  .c-subscribe-line__title {
    margin-right: 0;
    display: block;
  }
}

@media (max-width: 640px) {
  .c-subscribe-line__form .h-first-flex {
    display: block;
  }
  .c-subscribe-line__form .h-first-flex > *:first-child {
    flex: none;
  }
  .c-subscribe-block .c-btn--primary {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .c-subscribe-line__form {
    width: auto;
    max-width: 425px;
  }
}

/*------------------------------------*\
#CTA section
\*------------------------------------*/
.c-cta-section {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 110px;
  padding-bottom: 110px;
}

.c-cta-section .c-simple-section__title {
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 19px;
}

.c-cta-section .c-simple-section__subtitle {
  font-weight: 500;
  margin-bottom: 29px;
}

/*------------------------------------*\
#Comments block
\*------------------------------------*/
.c-comments-block {
  margin-top: 45px;
}

/*------------------------------------*\
#Link more
\*------------------------------------*/
.c-link--more {
  font-size: 13px;
  line-height: 26px;
  color: #555c66;
  display: inline-block;
  position: relative;
  padding-right: 20px;
  text-transform: uppercase;
}

.c-link--more:before {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0px;
  background: #b2b2b2;
  height: 1px;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-link--more:hover:before {
  opacity: 0;
}

.c-link--more i {
  position: absolute;
  right: 0px;
  top: 5px;
  color: #42c299;
}

/*------------------------------------*\
#Further reading
\*------------------------------------*/
@media (max-width: 768px) {
  .c-further-reading .c-simple-section__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .c-further-reading .c-article-wrapper {
    width: 100%;
    margin-bottom: 0;
  }
  .c-further-reading .c-article {
    border: none;
  }
  .c-further-reading .c-article__media,
  .c-further-reading .c-article__media .c-tag {
    display: none;
  }
  .c-further-reading .c-article__content {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .c-further-reading .c-article-wrapper:last-child .c-article__content {
    border-bottom: none;
    padding-bottom: 0;
  }
  .c-further-reading .c-article__title {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*------------------------------------*\
#No search results
\*------------------------------------*/
.c-no-results {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.c-no-results h2 {
  font-size: 28px;
}

.c-no-results p {
  font-size: 16px;
  line-height: 1.75em;
}

/*------------------------------------*\
#Comments
\*------------------------------------*/
.comment-meta {
  position: relative;
  padding-left: 80px;
}

.comment-content {
  padding-left: 80px;
}

.comment-author img {
  position: absolute;
  left: 0;
  top: -5px;
}

.comment-metadata {
  display: inline-block;
}

.comment-reply {
  padding-left: 80px;
}

/*------------------------------------*\
#Comments form
\*------------------------------------*/
.comment-respond + h2 {
  display: none;
}

.comments-title-wrap {
  border-bottom: 2px solid #f0f0f0;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.comments-title-wrap .discussion-meta {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.comments-title-wrap .discussion-meta p {
  margin: 0;
}

.comments-title-wrap .discussion-meta:before {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: #42c299;
}

.comments-title-wrap .comments-title {
  display: none;
}

.comments-title-wrap.no-responses {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

.comments-title-wrap.no-responses .comments-title {
  display: block;
}

.comment-respond {
  background: #fff;
  position: relative;
  z-index: 2;
}

.screen-reader-text + .comment-respond {
  margin-top: -35px;
}

.comment-form > p {
  margin-bottom: 16px;
}

.comments-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.comment-form > .comment-notes {
  margin-bottom: 28px;
  font-size: 13px;
  margin-top: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="url"],
form input[type="integer"],
form textarea {
  width: 100%;
  border: 1px solid #cfcfd0;
  padding: 14px 19px;
  font-size: 15px;
}

form textarea {
  resize: none;
  height: 108px;
  vertical-align: top;
}

/* Custom checkbox */
.comment-form > .comment-form-cookies-consent {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
}

.comment-form-cookies-consent input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.comment-form-cookies-consent label {
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  line-height: 18px;
  display: inline-block;
  font-size: 15px;
}

.comment-form-cookies-consent label:before,
.comment-form-cookies-consent label:after {
  display: inline-block;
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.comment-form-cookies-consent label:before {
  border: 1px solid #c5c5c5;
}

.comment-form-cookies-consent label:after {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  color: #ccc;
  display: inline-block;
  background: url(images/icon-checkbox.svg) no-repeat center center;
  background-size: 10px 10px;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  opacity: 0;
}

.comment-form-cookies-consent input:checked + label:after {
  opacity: 1;
}

.comments-area .form-submit input[type="submit"] {
  line-height: 48px;
  height: 50px;
  min-width: 200px;
  font-size: 15px;
}

.comments-area .screen-reader-text {
  font-size: 18px;
  font-weight: 500;
  color: #555c66;
}

.comment-reply-title {
  font-weight: 500;
}

.comment-reply-title a {
  font-weight: normal;
}

.comment-reply-title a:hover {
  color: #42c299;
}

/*------------------------------------*\
#Comments list
\*------------------------------------*/
.comment-list ol,
.comment-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comment-list {
  margin-bottom: 40px;
}

.comment-list .comment {
  padding-top: 40px;
  padding-bottom: 38px;
  border-top: 1px solid #f0f0f0;
}

.comment-list .comment:last-child {
  padding-bottom: 0;
}

.comment-list ol {
  margin-left: 80px;
}

.comment-list ol .comment {
  border-top: none;
}

.comment-author {
  font-size: 16px;
  margin-top: 3px;
}

.comment-author b,
.comment-author strong {
  font-weight: 500;
}

.comment-metadata {
  color: #acacac;
}

.comment-content p {
  font-size: 16px;
  line-height: 27px;
  margin-top: 13px;
  margin-bottom: 21px;
}

.comment-reply {
  font-size: 13px;
}

.comment-reply a {
  color: #acacac;
}

.comment-reply a:hover {
  color: #42c299;
}

/*------------------------------------*\
#Social menu
\*------------------------------------*/
.c-social-menu {
  margin-top: 31px;
}

.c-social-menu li {
  float: left;
  margin-right: 20px;
}

.c-social-menu a {
  display: inline-block;
  font-size: 18px;
  color: #555c66;
}

.c-social-menu a:hover {
  color: #42c299;
}

.c-social-menu.h-tac {
  margin-top: 0;
}

.c-social-menu.h-tac li {
  float: none;
  margin: 0 14px;
  display: inline-block;
}

@media (max-width: 640px) {
  .c-social-menu {
    text-align: center;
  }
  .c-social-menu li {
    float: none;
    display: inline-block;
    margin: 0 5px;
  }
}

/*------------------------------------*\
  #CSS copyed form omnisend.com to look the same
\*------------------------------------*/
.footer ul {
  list-style-type: none;
  overflow: hidden;
}

.footer button {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #35434a;
  border: 1px solid #f3eadf;
  margin: 0;
  cursor: pointer;
  outline: none;
  min-width: 130px;
  text-align: center;
  background: #fff;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  /* -ms-transition: all 300ms ease-in-out; */
  transition: all 300ms ease-in-out;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  /* -ms-border-radius: 0; */
  /* -o-border-radius: 0; */
  height: 40px;
  line-height: 38px;
  padding: 0 27px;
}

.footer input[type="email"] {
  background-color: transparent;
  height: 40px;
  margin: 0;
  padding: 0 16px;
  outline: none;
  -webkit-appearance: none;
  border: 1px solid #979797;
  font-size: 14px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  /* -ms-border-radius: 0; */
  /* -o-border-radius: 0; */
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  /* -ms-transition: all 150ms ease-in-out; */
  transition: all 150ms ease-in-out;
  width: 100%;
  max-width: 270px;
  height: 40px;
}

/**/
.footer {
  margin: 0;
  background: #f3eadf;
  padding: 52px 0 0 0;
  line-height: 1.75;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #555c66;
}

.footer p {
  line-height: 1.75;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #555c66;
  font-size: 13px;
}

.footer .global_container {
  max-width: 100%;
}

@media only screen and (min-width: 1024px) {
  .footer {
    padding: 53px 30px 0;
  }
}

.footer hr {
  background: #e4c8b4;
  max-width: 1170px;
  height: 1px;
  margin-top: 47px;
  display: none;
}

.footer .fnewslett {
  width: 370px;
}

@media only screen and (max-width: 1025px) {
  .footer hr {
    max-width: 90vw;
  }
}

.footer a.logo_link img {
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .footer .fnewslett {
    width: auto;
  }
}

@media only screen and (min-width: 1025px) {
  .footer .disp_table {
    display: flex;
    justify-content: center;
    max-width: 1230px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1025px) {
  .footer hr {
    height: 0.1em;
  }
  .footer .disp_table {
    display: block;
  }
  .footer .disp_cell {
    display: block;
    max-width: 400px;
    text-align: center;
    margin: 25px auto 0;
  }
}

.footer * {
  font-size: 13px;
}

@media only screen and (min-width: 768px) {
  .footer .disp_cell {
    padding: 0;
    vertical-align: top;
  }
  .footer .fmenu {
    margin-bottom: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .footer .disp_cell {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .footer .disp_cell.fmenu {
    width: 482px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer .disp_cell.fmenu {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: space-between;
    margin-right: 90px;
  }
}

.footer .fmenu ul {
  margin: 0;
  text-transform: uppercase;
  vertical-align: top;
}

.footer .fmenu ul .display_grid {
  display: block;
}

.footer .fmenu ul ul {
  display: -ms-flexbox;
  align-self: flex-start;
  flex-direction: column;
  padding: 0;
}

@media only screen and (max-width: 1025px) {
  .footer .fmenu ul {
    display: block;
    margin: 0 auto;
  }
  .footer .fmenu ul ul {
    display: none;
  }
}

.footer .fmenu span {
  color: #555c66;
  font-weight: normal;
  pointer-events: none;
  display: block;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1025px) {
  .footer .fmenu span {
    display: block;
    pointer-events: auto;
    margin: 15px auto;
    position: relative;
    text-align: left;
  }
  .footer .fmenu span::before {
    background: url(../site/img/arrow.svg) no-repeat;
    width: 20px;
    height: 11px;
    margin-top: 6px;
    content: "";
    display: block;
    position: absolute;
    margin-right: 10px;
    right: 0;
    top: 6px;
  }
}

.footer .fmenu li {
  float: none;
  margin: 0 0 10px 0;
  padding: 0;
  background: none;
}

@media only screen and (min-width: 1024px) {
  .footer .fmenu li {
    float: none;
    margin: 0 0 5px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer .fmenu li {
    float: none;
    text-align: center;
  }
}

.footer .fmenu li a {
  color: #555c66;
  text-transform: none;
}

.footer .social_icons {
  margin-top: 9px;
}

@media only screen and (max-width: 767px) {
  .footer .fmenu li a {
    text-align: left;
    display: block;
  }
  .footer .social_icons {
    text-align: center;
    margin-left: 26px;
  }
  .footer .social_icons {
    float: none;
    margin-left: 0;
    padding-top: 19px;
    margin-bottom: 24px;
    padding-bottom: 17px;
    border-top: 1px solid #E4C8B4;
    border-bottom: 1px solid #E4C8B4;
  }
  .c-footer-info {
    float: none;
    clear: left;
  }
}

.footer .social_icons a {
  line-height: 1;
  color: #555c66;
  display: inline-block;
  vertical-align: top;
  margin-right: 26px;
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  /*-ms-transition: all 150ms ease-in-out;*/
  transition: all 150ms ease-in-out;
}

.footer .social_icons a:last-child {
  margin-right: 0;
}

.footer .social_icons a i {
  font-size: 16px;
}

.footer .social_icons a:hover {
  color: #42c299;
}

.footer p:first-of-type {
  margin-top: 0;
}

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

.footer p:only-child {
  margin: 0;
}

.footer .bottom_line {
  margin: 0 auto;
  max-width: 1230px;
  padding: 37px 0 22px 0;
  text-align: center;
  border-top: 1px solid #e4c8b4;
  margin-top: 35px;
}

.footer .logo_link {
  width: 32px;
  margin-right: 31px;
  margin-top: 5px;
}

.footer .logo_link img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .footer .bottom_line {
    border-top: none;
    padding: 30px;
    padding-top: 0;
    margin-top: 19px;
  }
  .footer .bottom_line ul {
    margin-top: 0;
    text-align: left;
  }
}

.footer .bottom_line ul {
  margin: 0;
}

.c-footer-info {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .footer .bottom_line ul {
    margin-top: 0px;
  }
}

.footer .bottom_line li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0;
  background: none;
}

@media only screen and (max-width: 767px) {
  .footer .bottom_line li {
    display: block;
    margin: 0;
    text-align: left;
  }
}

.footer .bottom_line li a {
  color: #555c66;
  text-decoration: underline;
}

.footer .bottom_line li a:hover {
  text-decoration: none;
}

.footer #subscription_form1 {
  margin-top: 23px;
}

@media only screen and (min-width: 768px) {
  .footer #subscription_form1 {
    max-width: 393px;
  }
}

.footer #subscription_form .sub_input {
  position: relative;
}

.footer #subscription_form .sub_input input {
  padding-right: 120px;
  max-width: 100%;
  border-color: #979797;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .footer #subscription_form .sub_input input {
    padding-right: 10px;
    margin-bottom: 18px;
  }
}

.footer #subscription_form .sub_input input:focus {
  color: #000;
}

.footer #subscription_form .sub_input button {
  background: #555c66;
  color: #fff;
  padding-left: 18px;
  padding-right: 18px;
  min-width: 110px;
  position: absolute;
  right: 0;
  top: 0;
  border-color: #555c66;
}

@media only screen and (max-width: 767px) {
  .footer #subscription_form .sub_input button {
    position: static;
    width: 100%;
  }
}

.footer #subscription_form .sub_input button:focus {
  color: #fff;
  background: #555c66;
  border-color: #555c66;
}

.footer #subscription_form .sub_input button:hover {
  background: transparent;
  color: #555c66;
}

/*------------------------------------*\
#Footer badges
\*------------------------------------*/
.c-footer-badges {
  display: flex;
  justify-content: space-between;
  margin: 36px 0;
  max-width: 300px;
  margin-bottom: 16px;
}

.c-footer-badge img {
  max-width: 80px;
  width: 100%;
  max-height: 71px;
}

@media screen and (max-width: 768px) {
  .c-footer-badges {
    max-width: unset;
  }
}

/* Fix */
.footer .fmenu ul {
  margin: 0;
  padding: 0;
}

.footer .bottom_line ul {
  margin-left: 0;
  padding-left: 0;
}

.dv-page {
  counter-reset: section;
}

.dv-page h2 {
  counter-reset: subsection;
}

.dv-page h3 {
  counter-reset: sub2section;
}

.dv-page h4 {
  counter-reset: sub3section;
}

.dv-page h2:before {
  counter-increment: section;
  content: counter(section) ". ";
}

.dv-page h3:before {
  counter-increment: subsection;
  content: counter(section) "." counter(subsection) " ";
}

.dv-page h4:before {
  counter-increment: sub3section;
  content: counter(section) "." counter(subsection) "." counter(sub3section) " ";
}

.dv-code {
  width: 100%;
  height: 250px;
}
/*# sourceMappingURL=style.css.map */