/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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 content
   ========================================================================== */

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

hr {
  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 */
  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 {
  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"] {
  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;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0 15px !important;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 20px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--main {
  padding-top: 20px;
}

/* Search bar */

.header__search {
  padding: 0 22px;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 15px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 20px 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 30px;
  }
}


/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 35px;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 18px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 10px;
  margin-top: 3px;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 30px;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 30px;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

/* .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
} */

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto !important;
  width: auto !important;
}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
 html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:1.214285714285714rem;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}

 @media (min-width: 576px) and (max-width: 767px) {
 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
   float: left;
 }
 .col-sm-12 {
   width: 100%;
 }
 .col-sm-11 {
   width: 91.66666667%;
 }
 .col-sm-10 {
   width: 83.33333333%;
 }
 .col-sm-9 {
   width: 75%;
 }
 .col-sm-8 {
   width: 66.66666667%;
 }
 .col-sm-7 {
   width: 58.33333333%;
 }
 .col-sm-6 {
   width: 50%;
 }
 .col-sm-5 {
   width: 41.66666667%;
 }
 .col-sm-4 {
   width: 33.33333333%;
 }
 .col-sm-3 {
   width: 25%;
 }
 .col-sm-2 {
   width: 16.66666667%;
 }
 .col-sm-1 {
   width: 8.33333333%;
 }
 .col-sm-pull-12 {
   right: 100%;
 }
 .col-sm-pull-11 {
   right: 91.66666667%;
 }
 .col-sm-pull-10 {
   right: 83.33333333%;
 }
 .col-sm-pull-9 {
   right: 75%;
 }
 .col-sm-pull-8 {
   right: 66.66666667%;
 }
 .col-sm-pull-7 {
   right: 58.33333333%;
 }
 .col-sm-pull-6 {
   right: 50%;
 }
 .col-sm-pull-5 {
   right: 41.66666667%;
 }
 .col-sm-pull-4 {
   right: 33.33333333%;
 }
 .col-sm-pull-3 {
   right: 25%;
 }
 .col-sm-pull-2 {
   right: 16.66666667%;
 }
 .col-sm-pull-1 {
   right: 8.33333333%;
 }
 .col-sm-pull-0 {
   right: auto;
 }
 .col-sm-push-12 {
   left: 100%;
 }
 .col-sm-push-11 {
   left: 91.66666667%;
 }
 .col-sm-push-10 {
   left: 83.33333333%;
 }
 .col-sm-push-9 {
   left: 75%;
 }
 .col-sm-push-8 {
   left: 66.66666667%;
 }
 .col-sm-push-7 {
   left: 58.33333333%;
 }
 .col-sm-push-6 {
   left: 50%;
 }
 .col-sm-push-5 {
   left: 41.66666667%;
 }
 .col-sm-push-4 {
   left: 33.33333333%;
 }
 .col-sm-push-3 {
   left: 25%;
 }
 .col-sm-push-2 {
   left: 16.66666667%;
 }
 .col-sm-push-1 {
   left: 8.33333333%;
 }
 .col-sm-push-0 {
   left: auto;
 }
 .col-sm-offset-12 {
   margin-left: 100%;
 }
 .col-sm-offset-11 {
   margin-left: 91.66666667%;
 }
 .col-sm-offset-10 {
   margin-left: 83.33333333%;
 }
 .col-sm-offset-9 {
   margin-left: 75%;
 }
 .col-sm-offset-8 {
   margin-left: 66.66666667%;
 }
 .col-sm-offset-7 {
   margin-left: 58.33333333%;
 }
 .col-sm-offset-6 {
   margin-left: 50%;
 }
 .col-sm-offset-5 {
   margin-left: 41.66666667%;
 }
 .col-sm-offset-4 {
   margin-left: 33.33333333%;
 }
 .col-sm-offset-3 {
   margin-left: 25%;
 }
 .col-sm-offset-2 {
   margin-left: 16.66666667%;
 }
 .col-sm-offset-1 {
   margin-left: 8.33333333%;
 }
 .col-sm-offset-0 {
   margin-left: 0;
 }
}
 
/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{display:none}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-prev-next-button{position:absolute;top:50%;width:44px;height:44px;border:none;border-radius:50%;background:#fff;background:hsla(0,0%,100%,.75);cursor:pointer;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.flickity-prev-next-button:hover{background:#fff}.flickity-prev-next-button:focus{outline:0;box-shadow:0 0 0 5px #09F}.flickity-prev-next-button:active{opacity:.6}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button:disabled{opacity:.3;cursor:auto}.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-prev-next-button .arrow{fill:#333}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}
/*!
 * Fotorama 4.6.4 | http://fotorama.io/license/
 */
.fotorama__arr:focus:after,.fotorama__fullscreen-icon:focus:after,.fotorama__html,.fotorama__img,.fotorama__nav__frame:focus .fotorama__dot:after,.fotorama__nav__frame:focus .fotorama__thumb:after,.fotorama__stage__frame,.fotorama__stage__shaft,.fotorama__video iframe{position:absolute;width:100%;height:100%;top:0;right:0;left:0;bottom:0}.fotorama--fullscreen,.fotorama__img{max-width:99999px!important;max-height:99999px!important;min-width:0!important;min-height:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important}.fotorama__wrap .fotorama__grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.fotorama__grabbing *{cursor:move;cursor:-webkit-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.fotorama__spinner{position:absolute!important;top:50%!important;left:50%!important}.fotorama__wrap--css3 .fotorama__arr,.fotorama__wrap--css3 .fotorama__fullscreen-icon,.fotorama__wrap--css3 .fotorama__nav__shaft,.fotorama__wrap--css3 .fotorama__stage__shaft,.fotorama__wrap--css3 .fotorama__thumb-border,.fotorama__wrap--css3 .fotorama__video-close,.fotorama__wrap--css3 .fotorama__video-play{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fotorama__caption,.fotorama__nav:after,.fotorama__nav:before,.fotorama__stage:after,.fotorama__stage:before,.fotorama__wrap--css3 .fotorama__html,.fotorama__wrap--css3 .fotorama__nav,.fotorama__wrap--css3 .fotorama__spinner,.fotorama__wrap--css3 .fotorama__stage,.fotorama__wrap--css3 .fotorama__stage .fotorama__img,.fotorama__wrap--css3 .fotorama__stage__frame{-webkit-transform:translateZ(0);transform:translateZ(0)}.fotorama__arr:focus,.fotorama__fullscreen-icon:focus,.fotorama__nav__frame{outline:0}.fotorama__arr:focus:after,.fotorama__fullscreen-icon:focus:after,.fotorama__nav__frame:focus .fotorama__dot:after,.fotorama__nav__frame:focus .fotorama__thumb:after{content:'';border-radius:inherit;background-color:rgba(0,175,234,.5)}.fotorama__wrap--video .fotorama__stage,.fotorama__wrap--video .fotorama__stage__frame--video,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,.fotorama__wrap--video .fotorama__stage__shaft{-webkit-transform:none!important;transform:none!important}.fotorama__wrap--css3 .fotorama__nav__shaft,.fotorama__wrap--css3 .fotorama__stage__shaft,.fotorama__wrap--css3 .fotorama__thumb-border{transition-property:-webkit-transform,width;transition-property:transform,width;transition-timing-function:cubic-bezier(0.1,0,.25,1);transition-duration:0ms}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__no-select,.fotorama__video-close,.fotorama__video-play,.fotorama__wrap{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fotorama__select{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.fotorama__nav,.fotorama__nav__frame{margin:auto;padding:0}.fotorama__caption__wrap,.fotorama__nav__frame,.fotorama__nav__shaft{-moz-box-orient:vertical;display:inline-block;vertical-align:middle;*display:inline;*zoom:1}.fotorama__nav__frame,.fotorama__thumb-border{box-sizing:content-box}.fotorama__caption__wrap{box-sizing:border-box}.fotorama--hidden,.fotorama__load{position:absolute;left:-99999px;top:-99999px;z-index:-1}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__nav,.fotorama__nav__frame,.fotorama__nav__shaft,.fotorama__stage__frame,.fotorama__stage__shaft,.fotorama__video-close,.fotorama__video-play{-webkit-tap-highlight-color:transparent}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{background:url(fotorama.png) no-repeat}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:2dppx){.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{background:url(fotorama@2x.png) 0 0/96px 160px no-repeat}}.fotorama__thumb{background-color:#7f7f7f;background-color:rgba(127,127,127,.2)}@media print{.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__thumb-border,.fotorama__video-close,.fotorama__video-play{background:none!important}}.fotorama{min-width:1px;overflow:hidden}.fotorama:not(.fotorama--unobtrusive)>*:not(:first-child){display:none}.fullscreen{width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;margin:0!important;padding:0!important;overflow:hidden!important;background:#000}.fotorama--fullscreen{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;float:none!important;z-index:2147483647!important;background:#000;width:100%!important;height:100%!important;margin:0!important}.fotorama--fullscreen .fotorama__nav,.fotorama--fullscreen .fotorama__stage{background:#000}.fotorama__wrap{-webkit-text-size-adjust:100%;position:relative;direction:ltr;z-index:0}.fotorama__wrap--rtl .fotorama__stage__frame{direction:rtl}.fotorama__nav,.fotorama__stage{overflow:hidden;position:relative;max-width:100%}.fotorama__wrap--pan-y{-ms-touch-action:pan-y}.fotorama__wrap .fotorama__pointer{cursor:pointer}.fotorama__wrap--slide .fotorama__stage__frame{opacity:1!important}.fotorama__stage__frame{overflow:hidden}.fotorama__stage__frame.fotorama__active{z-index:8}.fotorama__wrap--fade .fotorama__stage__frame{display:none}.fotorama__wrap--fade .fotorama__fade-front,.fotorama__wrap--fade .fotorama__fade-rear,.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active{display:block;left:0;top:0}.fotorama__wrap--fade .fotorama__fade-front{z-index:8}.fotorama__wrap--fade .fotorama__fade-rear{z-index:7}.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active{z-index:9}.fotorama__wrap--fade .fotorama__stage .fotorama__shadow{display:none}.fotorama__img{-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;border:none!important}.fotorama__error .fotorama__img,.fotorama__loaded .fotorama__img{-ms-filter:"alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1}.fotorama--fullscreen .fotorama__loaded--full .fotorama__img,.fotorama__img--full{display:none}.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full{display:block}.fotorama__wrap--only-active .fotorama__nav,.fotorama__wrap--only-active .fotorama__stage{max-width:99999px!important}.fotorama__wrap--only-active .fotorama__stage__frame{visibility:hidden}.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active{visibility:visible}.fotorama__nav{font-size:0;line-height:0;text-align:center;display:none;white-space:nowrap;z-index:5}.fotorama__nav__shaft{position:relative;left:0;top:0;text-align:left}.fotorama__nav__frame{position:relative;cursor:pointer}.fotorama__nav--dots{display:block}.fotorama__nav--dots .fotorama__nav__frame{width:18px;height:30px}.fotorama__nav--dots .fotorama__nav__frame--thumb,.fotorama__nav--dots .fotorama__thumb-border{display:none}.fotorama__nav--thumbs{display:block}.fotorama__nav--thumbs .fotorama__nav__frame{padding-left:0!important}.fotorama__nav--thumbs .fotorama__nav__frame:last-child{padding-right:0!important}.fotorama__nav--thumbs .fotorama__nav__frame--dot{display:none}.fotorama__dot{display:block;width:4px;height:4px;position:relative;top:12px;left:6px;border-radius:6px;border:1px solid #7f7f7f}.fotorama__nav__frame:focus .fotorama__dot:after{padding:1px;top:-1px;left:-1px}.fotorama__nav__frame.fotorama__active .fotorama__dot{width:0;height:0;border-width:3px}.fotorama__nav__frame.fotorama__active .fotorama__dot:after{padding:3px;top:-3px;left:-3px}.fotorama__thumb{overflow:hidden;position:relative;width:100%;height:100%}.fotorama__nav__frame:focus .fotorama__thumb{z-index:2}.fotorama__thumb-border{position:absolute;z-index:9;top:0;left:0;border-style:solid;border-color:#00afea;background-image:linear-gradient(to bottom right,rgba(255,255,255,.25),rgba(64,64,64,.1))}.fotorama__caption{position:absolute;z-index:12;bottom:0;left:0;right:0;font-family:'Helvetica Neue',Arial,sans-serif;font-size:14px;line-height:1.5;color:#000}.fotorama__caption a{text-decoration:none;color:#000;border-bottom:1px solid;border-color:rgba(0,0,0,.5)}.fotorama__caption a:hover{color:#333;border-color:rgba(51,51,51,.5)}.fotorama__wrap--rtl .fotorama__caption{left:auto;right:0}.fotorama__wrap--no-captions .fotorama__caption,.fotorama__wrap--video .fotorama__caption{display:none}.fotorama__caption__wrap{background-color:#fff;background-color:rgba(255,255,255,.9);padding:5px 10px}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fotorama__wrap--css3 .fotorama__spinner{-webkit-animation:spinner 24s infinite linear;animation:spinner 24s infinite linear}.fotorama__wrap--css3 .fotorama__html,.fotorama__wrap--css3 .fotorama__stage .fotorama__img{transition-property:opacity;transition-timing-function:linear;transition-duration:.3s}.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img{-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0}.fotorama__select{cursor:auto}.fotorama__video{top:32px;right:0;bottom:0;left:0;position:absolute;z-index:10}@-moz-document url-prefix(){.fotorama__active{box-shadow:0 0 0 transparent}}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{position:absolute;z-index:11;cursor:pointer}.fotorama__arr{position:absolute;width:32px;height:32px;top:50%;margin-top:-16px}.fotorama__arr--prev{left:2px;background-position:0 0}.fotorama__arr--next{right:2px;background-position:-32px 0}.fotorama__arr--disabled{pointer-events:none;cursor:default;*display:none;opacity:.1}.fotorama__fullscreen-icon{width:32px;height:32px;top:2px;right:2px;background-position:0 -32px;z-index:20}.fotorama__arr:focus,.fotorama__fullscreen-icon:focus{border-radius:50%}.fotorama--fullscreen .fotorama__fullscreen-icon{background-position:-32px -32px}.fotorama__video-play{width:96px;height:96px;left:50%;top:50%;margin-left:-48px;margin-top:-48px;background-position:0 -64px;opacity:0}.fotorama__wrap--css2 .fotorama__video-play,.fotorama__wrap--video .fotorama__stage .fotorama__video-play{display:none}.fotorama__error .fotorama__video-play,.fotorama__loaded .fotorama__video-play,.fotorama__nav__frame .fotorama__video-play{opacity:1;display:block}.fotorama__nav__frame .fotorama__video-play{width:32px;height:32px;margin-left:-16px;margin-top:-16px;background-position:-64px -32px}.fotorama__video-close{width:32px;height:32px;top:0;right:0;background-position:-64px 0;z-index:20;opacity:0}.fotorama__wrap--css2 .fotorama__video-close{display:none}.fotorama__wrap--css3 .fotorama__video-close{-webkit-transform:translate3d(32px,-32px,0);transform:translate3d(32px,-32px,0)}.fotorama__wrap--video .fotorama__video-close{display:block;opacity:1}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon{opacity:0}.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus{opacity:1}.fotorama__wrap--video .fotorama__arr,.fotorama__wrap--video .fotorama__fullscreen-icon{opacity:0!important}.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon{display:none}.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus{display:block}.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr,.fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon{display:none!important}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus){-webkit-transform:translate3d(32px,-32px,0);transform:translate3d(32px,-32px,0)}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus){-webkit-transform:translate3d(-48px,0,0);transform:translate3d(-48px,0,0)}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus){-webkit-transform:translate3d(48px,0,0);transform:translate3d(48px,0,0)}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon{-webkit-transform:translate3d(32px,-32px,0)!important;transform:translate3d(32px,-32px,0)!important}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev{-webkit-transform:translate3d(-48px,0,0)!important;transform:translate3d(-48px,0,0)!important}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next{-webkit-transform:translate3d(48px,0,0)!important;transform:translate3d(48px,0,0)!important}.fotorama__wrap--css3 .fotorama__arr:not(:focus),.fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus),.fotorama__wrap--css3 .fotorama__video-close:not(:focus),.fotorama__wrap--css3 .fotorama__video-play:not(:focus){transition-property:-webkit-transform,opacity;transition-property:transform,opacity;transition-duration:.3s}.fotorama__nav:after,.fotorama__nav:before,.fotorama__stage:after,.fotorama__stage:before{content:"";display:block;position:absolute;text-decoration:none;top:0;bottom:0;width:10px;height:auto;z-index:10;pointer-events:none;background-repeat:no-repeat;background-size:1px 100%,5px 100%}.fotorama__nav:before,.fotorama__stage:before{background-image:linear-gradient(transparent,rgba(0,0,0,.2) 25%,rgba(0,0,0,.3) 75%,transparent),radial-gradient(farthest-side at 0 50%,rgba(0,0,0,.4),transparent);background-position:0 0,0 0;left:-10px}.fotorama__nav.fotorama__shadows--left:before,.fotorama__stage.fotorama__shadows--left:before{left:0}.fotorama__nav:after,.fotorama__stage:after{background-image:linear-gradient(transparent,rgba(0,0,0,.2) 25%,rgba(0,0,0,.3) 75%,transparent),radial-gradient(farthest-side at 100% 50%,rgba(0,0,0,.4),transparent);background-position:100% 0,100% 0;right:-10px}.fotorama__nav.fotorama__shadows--right:after,.fotorama__stage.fotorama__shadows--right:after{right:0}.fotorama--fullscreen .fotorama__nav:after,.fotorama--fullscreen .fotorama__nav:before,.fotorama--fullscreen .fotorama__stage:after,.fotorama--fullscreen .fotorama__stage:before,.fotorama__wrap--fade .fotorama__stage:after,.fotorama__wrap--fade .fotorama__stage:before,.fotorama__wrap--no-shadows .fotorama__nav:after,.fotorama__wrap--no-shadows .fotorama__nav:before,.fotorama__wrap--no-shadows .fotorama__stage:after,.fotorama__wrap--no-shadows .fotorama__stage:before{display:none}
/* Magnific Popup CSS */
.mfp-bg,.mfp-wrap{position:fixed;left:0;top:0}.mfp-bg,.mfp-container,.mfp-wrap{height:100%;width:100%}.mfp-arrow:after,.mfp-arrow:before,.mfp-container:before,.mfp-figure:after{content:''}.mfp-bg{z-index:1042;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-wrap{z-index:1043;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-close,.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}.mfp-figure:after,.mfp-iframe-scaler iframe{box-shadow:0 0 8px rgba(0,0,0,.6);position:absolute;left:0}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{display:block;top:0;width:100%;height:100%;background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{top:40px;bottom:40px;right:0;z-index:-1;background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-zoom-in .mfp-figure{opacity:0;transition:all .2s ease-in-out;transform:scale(.8)}.mfp-zoom-in.mfp-bg{opacity:0;transition:all .3s ease-out}.mfp-zoom-in.mfp-ready .mfp-figure{opacity:1;transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-in.mfp-removing .mfp-figure{transform:scale(.8);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}
/* perfect-scrollbar v0.6.12 */
.ps-container{-ms-touch-action:none;touch-action:none;overflow:hidden !important;-ms-overflow-style:none}@supports (-ms-overflow-style: none){.ps-container{overflow:auto !important}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.ps-container{overflow:auto !important}}.ps-container.ps-active-x>.ps-scrollbar-x-rail,.ps-container.ps-active-y>.ps-scrollbar-y-rail{display:block;background-color:transparent}.ps-container.ps-in-scrolling{pointer-events:none}.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999}.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999}.ps-container>.ps-scrollbar-x-rail{display:none;position:absolute;opacity:0;-webkit-transition:background-color .2s linear, opacity .2s linear;-moz-transition:background-color .2s linear, opacity .2s linear;-o-transition:background-color .2s linear, opacity .2s linear;transition:background-color .2s linear, opacity .2s linear;bottom:0px;height:15px}.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x{position:absolute;background-color:#aaa;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;-moz-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;-o-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;bottom:2px;height:6px}.ps-container>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x,.ps-container>.ps-scrollbar-x-rail:active>.ps-scrollbar-x{height:11px}.ps-container>.ps-scrollbar-y-rail{display:none;position:absolute;opacity:0;-webkit-transition:background-color .2s linear, opacity .2s linear;-moz-transition:background-color .2s linear, opacity .2s linear;-o-transition:background-color .2s linear, opacity .2s linear;transition:background-color .2s linear, opacity .2s linear;right:0;width:15px}.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y{position:absolute;background-color:#aaa;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;-moz-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;-o-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;right:2px;width:6px}.ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y,.ps-container>.ps-scrollbar-y-rail:active>.ps-scrollbar-y{width:11px}.ps-container:hover.ps-in-scrolling{pointer-events:none}.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999}.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999}.ps-container:hover>.ps-scrollbar-x-rail,.ps-container:hover>.ps-scrollbar-y-rail{opacity:.6}.ps-container:hover>.ps-scrollbar-x-rail:hover{background-color:#eee;opacity:.9}.ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x{background-color:#999}.ps-container:hover>.ps-scrollbar-y-rail:hover{background-color:#eee;opacity:.9}.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y{background-color:#999}
/*-----------------------------------------------------------------------------------

  Theme Name: Stream
  Theme URI: https://allthebestsofts.com/
  Description: Ultimate News and Magazine Template
  Author: bkninja
  Author URI: https://themeforest.net/user/bkninja
  Version: 1.0

  Stylesheet

-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

















/* button */








/* form */








/* form button normal */




/* form button hover */





/*blog_setting*/




















/*blog_setting*/


:root {
  /* Colors */
  --color-primary: #0010ec;
  --secondary-color: #ffff21;
  --color-black: #000;
  --color-white: #fff;
  --color-text-dark: #151416;
  --color-text-dark-gray: #141614;
  --color-text-gray: #535453;
  --color-text-light-gray: #bbb;
  --color-text-light: #e5e5e4;


    --color-text: #222222;
    --color-sub:   rgba(34, 34, 34, 0.8);
    --color-secondary: #4EF0E1;

}
.thegrid-highlight {
      background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: linear-gradient(to top,  #ffff21  60%, transparent 0);
}

  body {
    font-family: Open Sans;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    outline: 0 !important;
  }
  
  
  button {
    outline: 0 !important;
  }
  
  dl dt:not(:first-child) {
    margin-top: 0.4em;
  }
  
  hr {
    border-color: rgba(0, 0, 0, 0.05);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  p {
    margin: 0 0 1em;
  }
  
  iframe,
  object,
  embed,
  figure, .fluid-width-video-wrapper {
      max-width: 100%;
  }
  
  pre {
    padding: 1.6em;
    margin: 0 0 1.6em;
    font-size: 0.9em;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }
  
  table {
    margin: 0 0 1.6em;
    width: 100%;
  }
  
  tr {
    border-bottom: 1px solid #eee;
  }
  
  th {
    padding: 0.8em;
    text-align: left;
  }
  
  td {
    padding: 0.8em;
  }
  
  th:first-child,
  td:first-child {
    /*padding-left: 0;*/
  }
  
  thead th {
    border-bottom: 2px solid #bbb;
    padding-bottom: 0.8em;
  }
  
  ul,
  ol {
    margin: 0 0 1.6em;
    padding: 0;
  }
  
  
  /* =============================================================================
  ## TYPOGRAPHY
  ============================================================================= */
  
  h1:first-child,
  h2:first-child,
  h3:first-child,
  h4:first-child,
  h5:first-child,
  h6:first-child,
  .h1:first-child,
  .h2:first-child,
  .h3:first-child,
  .h4:first-child,
  .h5:first-child,
  .h6:first-child {
    margin-top: 0;
  }
  
  
  /*---- Typography scale ----*/
  
  .h6,
  h6 {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .h6,
    h6 {
      font-size: 1rem;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .h6,
    h6 {
      font-size: 1rem;
      line-height: 1.5;
    }
  }
  
  .h5,
  h5 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .h5,
    h5 {
      font-size: 1.2rem;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .h5,
    h5 {
      font-size: 1.25rem;
      line-height: 1.4;
    }
  }
  
  .h4,
  h4 {
    font-size: 1.266rem;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .h4,
    h4 {
      font-size: 1.44rem;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .h4,
    h4 {
      font-size: 1.563rem;
      line-height: 1.3;
    }
  }
  
  .h3,
  h3 {
    font-size: 1.424rem;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .h3,
    h3 {
      font-size: 1.728rem;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .h3,
    h3 {
      font-size: 1.953rem;
      line-height: 1.3;
    }
  }
  
  .h2,
  h2 {
    font-size: 1.602rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .h2,
    h2 {
      font-size: 2.074rem;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .h2,
    h2 {
      font-size: 2.441rem;
      line-height: 1.2;
    }
  }
  
  .h1,
  h1 {
    font-size: 1.802rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .h1,
    h1 {
      font-size: 2.488rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .h1,
    h1 {
      font-size: 3.052rem;
      line-height: 1.2;
    }
  }
  
  .h0,
  h0 {
    font-size: 2.027rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .h0,
    h0 {
      font-size: 2.986rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .h0,
    h0 {
      font-size: 3.815rem;
      line-height: 1.1;
    }
  }
  
  .h-1,
  h-1 {
    font-size: 2.281rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .h-1,
    h-1 {
      font-size: 3.583rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .h-1,
    h-1 {
      font-size: 4.768rem;
      line-height: 1.1;
    }
  }
  
  .h-2,
  h-2 {
    font-size: 2.566rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .h-2,
    h-2 {
      font-size: 4.3rem;
      line-height: 1.1;
    }
  }
  
  @media (min-width: 992px) {
    .h-2,
    h-2 {
      font-size: 5.96rem;
      line-height: 1.1;
    }
  }
  
  .typescale-n1 {
    font-size: 0.889rem;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typescale-n1 {
      font-size: 0.889rem;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-n1 {
      font-size: 0.889rem;
      line-height: 1.5;
    }
  }
  
  .typescale-0 {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typescale-0 {
      font-size: 1rem;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-0 {
      font-size: 1rem;
      line-height: 1.5;
    }
  }
  
  .typescale-1 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typescale-1 {
      font-size: 1.2rem;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-1 {
      font-size: 1.25rem;
      line-height: 1.4;
    }
  }
  
  .typescale-2 {
    font-size: 1.266rem;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typescale-2 {
      font-size: 1.44rem;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-2 {
      font-size: 1.563rem;
      line-height: 1.3;
    }
  }
  
  .typescale-3 {
    font-size: 1.424rem;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typescale-3 {
      font-size: 1.728rem;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-3 {
      font-size: 1.953rem;
      line-height: 1.3;
    }
  }
  
  .typescale-4 {
    font-size: 1.602rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typescale-4 {
      font-size: 2.074rem;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-4 {
      font-size: 2.441rem;
      line-height: 1.2;
    }
  }
  
  .typescale-5 {
    font-size: 1.802rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typescale-5 {
      font-size: 2.488rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-5 {
      font-size: 3.052rem;
      line-height: 1.2;
    }
  }
  
  .typescale-6 {
    font-size: 2.027rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typescale-6 {
      font-size: 2.986rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-6 {
      font-size: 3.815rem;
      line-height: 1.1;
    }
  }
  
  .typescale-7 {
    font-size: 2.281rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typescale-7 {
      font-size: 3.583rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-7 {
      font-size: 4.768rem;
      line-height: 1.1;
    }
  }
  
  .typescale-8 {
    font-size: 2.566rem;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typescale-8 {
      font-size: 4.3rem;
      line-height: 1.1;
    }
  }
  
  @media (min-width: 992px) {
    .typescale-8 {
      font-size: 5.96rem;
      line-height: 1.1;
    }
  }
  
  .typography-copy,
  .comment-content {
    font-size: 16px;
    font-size: 1.1429rem;
    line-height: 1.6;
  }
  
  .typography-copy .h6,
  .typography-copy h6,
  .comment-content .h6,
  .comment-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1em;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h6,
    .typography-copy h6,
    .comment-content .h6,
    .comment-content h6 {
      font-size: 1em;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h6,
    .typography-copy h6,
    .comment-content .h6,
    .comment-content h6 {
      font-size: 1em;
      line-height: 1.5;
    }
  }
  
  .typography-copy .h5,
  .typography-copy h5,
  .comment-content .h5,
  .comment-content h5 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1.125em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h5,
    .typography-copy h5,
    .comment-content .h5,
    .comment-content h5 {
      font-size: 1.2em;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h5,
    .typography-copy h5,
    .comment-content .h5,
    .comment-content h5 {
      font-size: 1.25em;
      line-height: 1.4;
    }
  }
  
  .typography-copy .h4,
  .typography-copy h4,
  .comment-content .h4,
  .comment-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1.266em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h4,
    .typography-copy h4,
    .comment-content .h4,
    .comment-content h4 {
      font-size: 1.44em;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h4,
    .typography-copy h4,
    .comment-content .h4,
    .comment-content h4 {
      font-size: 1.563em;
      line-height: 1.3;
    }
  }
  
  .typography-copy .h3,
  .typography-copy h3,
  .comment-content .h3,
  .comment-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1.424em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h3,
    .typography-copy h3,
    .comment-content .h3,
    .comment-content h3 {
      font-size: 1.728em;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h3,
    .typography-copy h3,
    .comment-content .h3,
    .comment-content h3 {
      font-size: 1.953em;
      line-height: 1.3;
    }
  }
  
  .typography-copy .h2,
  .typography-copy h2,
  .comment-content .h2,
  .comment-content h2 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1.602em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h2,
    .typography-copy h2,
    .comment-content .h2,
    .comment-content h2 {
      font-size: 2.074em;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h2,
    .typography-copy h2,
    .comment-content .h2,
    .comment-content h2 {
      font-size: 2.441em;
      line-height: 1.2;
    }
  }
  
  .typography-copy .h1,
  .typography-copy h1,
  .comment-content .h1,
  .comment-content h1 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 1.802em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h1,
    .typography-copy h1,
    .comment-content .h1,
    .comment-content h1 {
      font-size: 2.488em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h1,
    .typography-copy h1,
    .comment-content .h1,
    .comment-content h1 {
      font-size: 3.052em;
      line-height: 1.2;
    }
  }
  
  .typography-copy .h0,
  .typography-copy h0,
  .comment-content .h0,
  .comment-content h0 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 2.027em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h0,
    .typography-copy h0,
    .comment-content .h0,
    .comment-content h0 {
      font-size: 2.986em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h0,
    .typography-copy h0,
    .comment-content .h0,
    .comment-content h0 {
      font-size: 3.815em;
      line-height: 1.1;
    }
  }
  
  .typography-copy .h-1,
  .typography-copy h-1,
  .comment-content .h-1,
  .comment-content h-1 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 2.281em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h-1,
    .typography-copy h-1,
    .comment-content .h-1,
    .comment-content h-1 {
      font-size: 3.583em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h-1,
    .typography-copy h-1,
    .comment-content .h-1,
    .comment-content h-1 {
      font-size: 4.768em;
      line-height: 1.1;
    }
  }
  
  .typography-copy .h-2,
  .typography-copy h-2,
  .comment-content .h-2,
  .comment-content h-2 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 2.566em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .h-2,
    .typography-copy h-2,
    .comment-content .h-2,
    .comment-content h-2 {
      font-size: 4.3em;
      line-height: 1.1;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .h-2,
    .typography-copy h-2,
    .comment-content .h-2,
    .comment-content h-2 {
      font-size: 5.96em;
      line-height: 1.1;
    }
  }
  
  .typography-copy .typescale-n1,
  .comment-content .typescale-n1 {
    font-size: 0.889em;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-n1,
    .comment-content .typescale-n1 {
      font-size: 0.889em;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-n1,
    .comment-content .typescale-n1 {
      font-size: 0.889em;
      line-height: 1.5;
    }
  }
  
  .typography-copy .typescale-0,
  .comment-content .typescale-0 {
    font-size: 1em;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-0,
    .comment-content .typescale-0 {
      font-size: 1em;
      line-height: 1.5;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-0,
    .comment-content .typescale-0 {
      font-size: 1em;
      line-height: 1.5;
    }
  }
  
  .typography-copy .typescale-1,
  .comment-content .typescale-1 {
    font-size: 1.125em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-1,
    .comment-content .typescale-1 {
      font-size: 1.2em;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-1,
    .comment-content .typescale-1 {
      font-size: 1.25em;
      line-height: 1.4;
    }
  }
  
  .typography-copy .typescale-2,
  .comment-content .typescale-2 {
    font-size: 1.266em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-2,
    .comment-content .typescale-2 {
      font-size: 1.44em;
      line-height: 1.4;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-2,
    .comment-content .typescale-2 {
      font-size: 1.563em;
      line-height: 1.3;
    }
  }
  
  .typography-copy .typescale-3,
  .comment-content .typescale-3 {
    font-size: 1.424em;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-3,
    .comment-content .typescale-3 {
      font-size: 1.728em;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-3,
    .comment-content .typescale-3 {
      font-size: 1.953em;
      line-height: 1.3;
    }
  }
  
  .typography-copy .typescale-4,
  .comment-content .typescale-4 {
    font-size: 1.602em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-4,
    .comment-content .typescale-4 {
      font-size: 2.074em;
      line-height: 1.3;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-4,
    .comment-content .typescale-4 {
      font-size: 2.441em;
      line-height: 1.2;
    }
  }
  
  .typography-copy .typescale-5,
  .comment-content .typescale-5 {
    font-size: 1.802em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-5,
    .comment-content .typescale-5 {
      font-size: 2.488em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-5,
    .comment-content .typescale-5 {
      font-size: 3.052em;
      line-height: 1.2;
    }
  }
  
  .typography-copy .typescale-6,
  .comment-content .typescale-6 {
    font-size: 2.027em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-6,
    .comment-content .typescale-6 {
      font-size: 2.986em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-6,
    .comment-content .typescale-6 {
      font-size: 3.815em;
      line-height: 1.1;
    }
  }
  
  .typography-copy .typescale-7,
  .comment-content .typescale-7 {
    font-size: 2.281em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-7,
    .comment-content .typescale-7 {
      font-size: 3.583em;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-7,
    .comment-content .typescale-7 {
      font-size: 4.768em;
      line-height: 1.1;
    }
  }
  
  .typography-copy .typescale-8,
  .comment-content .typescale-8 {
    font-size: 2.566em;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .typography-copy .typescale-8,
    .comment-content .typescale-8 {
      font-size: 4.3em;
      line-height: 1.1;
    }
  }
  
  @media (min-width: 992px) {
    .typography-copy .typescale-8,
    .comment-content .typescale-8 {
      font-size: 5.96em;
      line-height: 1.1;
    }
  }
  
  .typography-copy h4,
  .typography-copy .h4,
  .comment-content h4,
  .comment-content .h4 {
    font-weight: 700;
  }
  
  .typography-copy h5,
  .typography-copy .h5,
  .comment-content h5,
  .comment-content .h5 {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .typography-copy h6,
  .typography-copy .h6,
  .comment-content h6,
  .comment-content .h6 {
    font-weight: 700;
  }
  
  .typography-copy blockquote,
  .comment-content blockquote {
    margin: 0 0 1.6em 0;
    padding: 0 0 0 1em;
    border-left: 5px solid #eee;
    font-size: 1.5em;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
  }
  
  .typography-copy blockquote:before,
  .comment-content blockquote:before {
    content: '\201c';
    display: block;
    position: relative;
    top: 0.225em;
    margin-bottom: 0.2em;
    color: #eee;
    font-weight: 700;
    font-size: 5em;
    line-height: 0.3;
  }
  
  .typography-copy blockquote cite,
  .comment-content blockquote cite {
    font-size: 0.86em;
  }
  
  .typography-copy blockquote p,
  .comment-content blockquote p {
    margin-bottom: 1em;
  }
   mark,
  .typography-copy mark,
  .comment-content mark {
    color: rgba(0, 0, 0, 0.8);
    background: var(--secondary-color);
  }
  
  .typography-copy ol,
  .typography-copy ul,
  .comment-content ol,
  .comment-content ul {
    margin-bottom: 1.6em;
    padding-left: 1.8em;
  }
  
  .typography-copy li>ol,
  .typography-copy li>ul,
  .comment-content li>ol,
  .comment-content li>ul {
    margin-bottom: 0;
  }
  
  .typography-copy p,
  .comment-content p {
    margin-bottom: 1.6em;
  }
  /* -----------------------------------------------------------------
  ## Sticky Signal
  ----------------------------------------------------------------- */
  .sticky-tnm-post .tnmStickyMark {
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline;
      border-bottom: 1px solid currentColor;
      font-size: 9px;
      font-size: 0.64286rem;
      font-weight: 700;
      line-height: 1.4;
      margin-right: 8px;
      text-decoration: none;
      font-size: 0.71429rem;
      overflow: hidden;
  }
  /* =============================================================================
  ## UTILITIES
  ============================================================================= */
  
  
  /* -----------------------------------------------------------------
  ## Objects
  ----------------------------------------------------------------- */
  
  
  /*---- Responsive Video wrapper ----*/
  
  .mnmd-responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .mnmd-responsive-video iframe,
  .mnmd-responsive-video object,
  .mnmd-responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  
  /*---- Rainbow bar ----*/
  
  .rainbow-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #a85e6c 0%, #a85e6c 12.5%, #e37f52 12.5%, #e37f52 25%, #ef9f48 25%, #ef9f48 37.5%, #9cb641 37.5%, #9cb641 50%, #009484 50%, #009484 62.5%, #21acb8 62.5%, #21acb8 75%, #1972dd 75%, #1972dd 87.5%, #8fa0ae 87.5%, #8fa0ae 100%);
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #a85e6c), color-stop(12.5%, #a85e6c), color-stop(12.5%, #e37f52), color-stop(25%, #e37f52), color-stop(25%, #ef9f48), color-stop(37.5%, #ef9f48), color-stop(37.5%, #9cb641), color-stop(50%, #9cb641), color-stop(50%, #009484), color-stop(62.5%, #009484), color-stop(62.5%, #21acb8), color-stop(75%, #21acb8), color-stop(75%, #1972dd), color-stop(87.5%, #1972dd), color-stop(87.5%, #8fa0ae), color-stop(100%, #8fa0ae));
    background-image: -webkit-linear-gradient(left, #a85e6c 0%, #a85e6c 12.5%, #e37f52 12.5%, #e37f52 25%, #ef9f48 25%, #ef9f48 37.5%, #9cb641 37.5%, #9cb641 50%, #009484 50%, #009484 62.5%, #21acb8 62.5%, #21acb8 75%, #1972dd 75%, #1972dd 87.5%, #8fa0ae 87.5%, #8fa0ae 100%);
    background-image: -moz-linear-gradient(left, #a85e6c 0%, #a85e6c 12.5%, #e37f52 12.5%, #e37f52 25%, #ef9f48 25%, #ef9f48 37.5%, #9cb641 37.5%, #9cb641 50%, #009484 50%, #009484 62.5%, #21acb8 62.5%, #21acb8 75%, #1972dd 75%, #1972dd 87.5%, #8fa0ae 87.5%, #8fa0ae 100%);
    background-image: -o-linear-gradient(left, #a85e6c 0%, #a85e6c 12.5%, #e37f52 12.5%, #e37f52 25%, #ef9f48 25%, #ef9f48 37.5%, #9cb641 37.5%, #9cb641 50%, #009484 50%, #009484 62.5%, #21acb8 62.5%, #21acb8 75%, #1972dd 75%, #1972dd 87.5%, #8fa0ae 87.5%, #8fa0ae 100%);
    background-image: linear-gradient(left, #a85e6c 0%, #a85e6c 12.5%, #e37f52 12.5%, #e37f52 25%, #ef9f48 25%, #ef9f48 37.5%, #9cb641 37.5%, #9cb641 50%, #009484 50%, #009484 62.5%, #21acb8 62.5%, #21acb8 75%, #1972dd 75%, #1972dd 87.5%, #8fa0ae 87.5%, #8fa0ae 100%);
  }
  
  
  /*---- Flexbox ----*/
  
  .flexbox {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  
  .flexbox>* {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    /*IE fix*/
  }
  
  .flexbox--middle {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .flexbox__item {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  
  /*---- Scrollable list ----*/
  
  .mnmd-scrollable-list {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  
  .mnmd-scrollable-list-wrapper {
    position: relative;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
  }
  
  .mnmd-scrollable-list-inner {
    height: 0;
  }
  
  
  /* ----------------------------------------------------------------
    Background
  -----------------------------------------------------------------*/
  
  .block-with-bg {
    position: relative;
    padding: 10px;
  }
  
  @media (min-width: 768px) {
    .block-with-bg {
      padding: 20px;
    }
  }
  
  .background-wrap {
    overflow: hidden;
    background: #444;
  }
  
  .has-cover-bg-img,
  .background-img {
    background-color: #333;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
  
  .header-main .background-img {
    background-color: #fff;
  }
  
  .background-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }
  
  .background-img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    opacity: 0;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  
  .background-img--dimmed:after {
    opacity: 0.2;
  }
  
  .background-img--darkened:after {
    opacity: 0.4;
  }
  
  .background-img--more-darkened:after {
    opacity: 0.6;
  }
  
  .background-img--tinted:after {
    background-color: #fff;
  }
  
  .background-img--floorfade:after {
    opacity: 1;
    background-color: transparent;
    background-image: -webkit-linear-gradient(bottom, black 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    background-image: linear-gradient(0deg, black 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  }
  
  .background-img--floorfade-light:after {
    opacity: 1;
    background-color: transparent;
    background-image: -webkit-linear-gradient(bottom, black 0, transparent 50%, transparent 100%);
    background-image: linear-gradient(0deg, black 0, transparent 50%, transparent 100%);
  }
  
  .background-img--scrim-bottom:after {
    opacity: 1;
    background-color: transparent;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
  }
  
  .background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: #aaa;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
  }
  
  .background-svg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .background-svg-pattern-inverse {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23000000' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .background-svg-pattern--solid-color {
    background-color: #12162d;
  }
  
  .overlap-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 60px;
    left: 0;
  }
  
  .mnmd-carousel-nav-a .overlap-background {
    bottom: 90px;
  }
  
  .background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
  }
  
  .js-overlay-bg-sub {
    display: none;
  }
  
  .blurred {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
  }
  
  .blurred-subtle {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
  }
  
  .blurred-more {
    filter: blur(20px);
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
  }
  
  .blurred-massive {
    filter: blur(30px);
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px);
  }
  
  .grayscale {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }
  
  .floorfade {
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  }
  
  .floorfade-pseudo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  }
  
  .ceilingfade {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  }
  
  .sidefade-from-left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  }
  
  .sidefade-from-left--wide:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: -9999px;
    background: rgba(0, 0, 0, 0.9);
  }
  
  .sidefade-from-left--pseudo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  }
  
  .sidefade-from-right {
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  }
  
  .color-primary {
    color: var(--color-primary);
  }
  
  .primary-bg-color {
    background-color: var(--color-primary) !important;
  }
  
  .secondary-bg-color {
    background-color: #0a293b !important;
  }
  
  .lightgray-bg {
    background-color: #fafafa;
  }
  
  
  /* ----------------------------------------------------------------
    Positioning
  -----------------------------------------------------------------*/
  
  .abs-center,
  .mnmd-video-player__play-icon,
  .mnmd-video-box__playlist .is-playing .post__thumb:after {
    position: absolute !important;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    -moz-transform: translate(-50%, -50%) translateZ(0);
    -ms-transform: translate(-50%, -50%) translateZ(0);
    -o-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
  }
  
  .stretched {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .overlay-content,
  .overlay-content__inner {
    position: relative;
  }
  
  .overlay-bottom.overlay-bottom {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .overlay-center-y.overlay-center-y {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  .overlap-bottom.overlap-bottom {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  
  .pos-relative {
    position: relative !important;
  }
  
  [class*="max-width-"].text-center {
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 767px) {
    .fullwidth-xs {
      width: calc(100% + 30px);
      margin-left: -15px;
      margin-right: -15px;
    }
  }
  
  
  /*---- Ratio ----*/
  
  .ratio-1by1 {
    position: relative;
    padding-bottom: 100%;
    height: 0;
  }
  
  .ratio-2by1 {
    position: relative;
    padding-bottom: 50%;
    height: 0;
  }
  
  .ratio-3by1 {
    position: relative;
    padding-bottom: 33.33%;
    height: 0;
  }
  
  .ratio-4by3 {
    position: relative;
    padding-bottom: 75%;
    height: 0;
  }
  
  .ratio-16by9 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  
  /* ----------------------------------------------------------------
    Text styling
  -----------------------------------------------------------------*/
  
  @media (max-width: 767px) {
    .text-center-xs {
      text-align: center;
    }
  }
  
  .text-white {
    color: #fff;
  }
  
  .text-underline {
    text-decoration: underline;
  }
  
  .inverse-text {
    position: relative;
    color: white;
  }
  
  .inverse-text .text-secondary {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .text-truncate,
  .category-tile__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .truncate-y {
    position: relative;
    overflow: hidden;
  }
  
  .truncate-y:after {
    content: '';
    display: block;
    height: 40px;
    width: 100%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(bottom, black 0, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, white 0, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
  }
  
  .link-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .link-block {
    display: block;
  }
  
  .meta-color,
  a.meta-color {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .meta-text,
  a.meta-text {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .v-align {
    vertical-align: middle;
  }
  
  .visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  
  .has-mdicon>span,
  .has-mdicon>b,
  .has-mdicon>em,
  .has-mdicon>strong,
  .has-mdicon>a,
  .has-mdicon>i {
    vertical-align: middle;
  }
  
  
  /* ----------------------------------------------------------------
    List styling
  -----------------------------------------------------------------*/
  
  .list-unstyled,
  .mnmd-video-box__playlist ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .list-center {
    text-align: center;
  }
  
  .list-center>li {
    display: inline-block;
  }
  
  .list-float::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .list-float>li {
    float: left;
  }
  
  .list-space-xs {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  
  .list-space-xs>* {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .list-space-sm {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }
  
  .list-space-sm>* {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  
  .list-space-md {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .list-space-md>* {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .list-space-lg {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  
  .list-space-lg>* {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .list-space-xl {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  
  .list-space-xl>* {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .list-space-xxl {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  
  .list-space-xxl>* {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .list-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .list-horizontal>li {
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .list-horizontal.list-space-xs {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .list-horizontal.list-space-xs>* {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .list-horizontal.list-space-sm {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  
  .list-horizontal.list-space-sm>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  
  .list-horizontal.list-space-md {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .list-horizontal.list-space-md>* {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .list-horizontal.list-space-lg {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .list-horizontal.list-space-lg>* {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .list-horizontal.list-space-xl {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .list-horizontal.list-space-xl>* {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .list-horizontal.list-space-xxl {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  .list-horizontal.list-space-xxl>* {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  [class*="list-seperated"].list-space-xs {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  [class*="list-seperated"].list-space-xs>* {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  [class*="list-seperated"].list-space-sm {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  
  [class*="list-seperated"].list-space-sm>* {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  [class*="list-seperated"].list-space-md {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  
  [class*="list-seperated"].list-space-md>* {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  [class*="list-seperated"].list-space-lg {
    margin-top: -30px;
    margin-bottom: -30px;
  }
  
  [class*="list-seperated"].list-space-lg>* {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  [class*="list-seperated"].list-space-xl {
    margin-top: -40px;
    margin-bottom: -40px;
  }
  
  [class*="list-seperated"].list-space-xl>* {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  [class*="list-seperated"].list-space-xxl {
    margin-top: -50px;
    margin-bottom: -50px;
  }
  
  [class*="list-seperated"].list-space-xxl>* {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  [class*="list-seperated"]>*:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .list-seperated-only-first>*:not(:first-child) {
    border-bottom: none;
  }
  
  .list-seperated-only-last>*:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .list-seperated-exclude-first>*:first-child {
    border-bottom: none;
  }
  
  .inverse-text .list-seperated>*:not(:last-child),
  .overlay-content .list-seperated>*:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .inverse-text .list-seperated-only-first>*:first-child,
  .overlay-content .list-seperated-only-first>*:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .inverse-text .list-seperated-only-last>*:last-child,
  .overlay-content .list-seperated-only-last>*:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .list-square-bullet {
    list-style: none;
  }
  
  .list-square-bullet>li>* {
    position: relative;
    padding-left: 15px;
  }
  
  .list-square-bullet>li>*:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 0.5em;
    right: auto;
    bottom: auto;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  
  .list-square-bullet-exclude-first>li:not(:first-child)>* {
    position: relative;
    padding-left: 15px;
  }
  
  .list-square-bullet-exclude-first>li:not(:first-child)>*:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 0.58em;
    right: auto;
    bottom: auto;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  
  
  /* ----------------------------------------------------------------
    Social branding color
  -----------------------------------------------------------------*/
  
  .facebook-theme,
  .facebook-theme-hover:hover {
    color: #3b5998 !important;
  }
  
  .facebook-theme-bg,
  .facebook-theme-bg-hover:hover {
    background-color: #3b5998 !important;
  }
  
  .twitter-theme,
  .twitter-theme-hover:hover {
    color: #55acee !important;
  }
  
  .twitter-theme-bg,
  .twitter-theme-bg-hover:hover {
    background-color: #55acee !important;
  }
  
  .dribbble-theme,
  .dribbble-theme-hover:hover {
    color: #EA4C89 !important;
  }
  
  .dribbble-theme-bg,
  .dribbble-theme-bg-hover:hover {
    background-color: #EA4C89 !important;
  }
  
  
  .youtube-theme,
  .youtube-theme-hover:hover {
    color: #cd201f !important;
  }
  
  .youtube-theme-bg,
  .youtube-theme-bg-hover:hover {
    background-color: #cd201f !important;
  }
  
  .pinterest-theme,
  .pinterest-theme-hover:hover {
    color: #bd081c !important;
  }
  
  .pinterest-theme-bg,
  .pinterest-theme-bg-hover:hover {
    background-color: #bd081c !important;
  }
  
  .googleplus-theme,
  .googleplus-theme-hover:hover {
    color: #dc4e41 !important;
  }
  
  .googleplus-theme-bg,
  .googleplus-theme-bg-hover:hover {
    background-color: #dc4e41 !important;
  }
  
  .tumblr-theme,
  .tumblr-theme-hover:hover {
    color: #35465c !important;
  }
  
  .tumblr-theme-bg,
  .tumblr-theme-bg-hover:hover {
    background-color: #35465c !important;
  }
  
  .instagram-theme,
  .instagram-theme-hover:hover {
    color: #3f729b !important;
  }
  
  .instagram-theme-bg,
  .instagram-theme-bg-hover:hover {
    background-color: #3f729b !important;
  }
  
  .vk-theme,
  .vk-theme-hover:hover {
    color: #45668e !important;
  }
  
  .vk-theme-bg,
  .vk-theme-bg-hover:hover {
    background-color: #45668e !important;
  }
  
  .stumbleupon-theme-bg,
  .stumbleupon-theme-bg-hover:hover {
    background-color: #EB4823 !important;
  }
  
  .linkedin-theme-bg,
  .linkedin-theme-bg-hover:hover {
    background-color: #0073B0 !important;
  }
  
  
  
  /* ----------------------------------------------------------------
    Animation
  -----------------------------------------------------------------*/
  
  @-webkit-keyframes kenburns {
    0% {
      -webkit-transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
    }
  }
  
  @-moz-keyframes kenburns {
    0% {
      -moz-transform: scale(1.2);
    }
    100% {
      -moz-transform: scale(1);
    }
  }
  
  @keyframes kenburns {
    0% {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
  }
  
  
  /*---- Scrollable container ----*/
  
  .scroll-area-horizontal {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .scroll-area-horizontal__inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: no-wrap;
    -moz-box-lines: no-wrap;
    box-lines: no-wrap;
    -webkit-flex-wrap: no-wrap;
    -moz-flex-wrap: no-wrap;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
  }
  
  .scroll-area-horizontal__inner>* {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  
  .kenburns {
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-animation-name: kenburns;
    -moz-animation-name: kenburns;
    animation-name: kenburns;
    -webkit-animation-duration: 30s;
    -moz-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    animation-direction: alternate;
  }
  
  
  /* =============================================================================
  ## LAYOUT
  ============================================================================= */
  
  .site-wrapper {
    overflow: hidden;
  }
  
  .site-content {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  
  @media (min-width: 768px) {
    .site-content {
      padding-top: 40px;
      padding-bottom: 60px;
    }
  }
  
  @media (max-width: 767px) {
    .container.fullwidth-xs {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  .container--narrow {
    max-width: 970px;
  }
  
  .container--wide {
    width: 100%;
    max-width: 1440px;
  }
  
  .container--fw {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (min-width: 768px) {
    .container--fw {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  .mnmd-main-col {
    width: 100%;
    min-height: 1px;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (min-width: 992px) {
    .mnmd-main-col {
      width: 680px;
    }
  }
  
  @media (min-width: 1200px) {
    .mnmd-main-col {
      width: 840px;
      padding-right: 35px;
    }
  }
  
  .mnmd-main-col.has-left-sidebar {
    float: right;
  }
  
  @media (min-width: 1200px) {
    .mnmd-main-col.has-left-sidebar {
      padding-left: 35px;
      padding-right: 15px;
    }
  }
  
  .mnmd-sub-col {
    width: 100%;
    float: left;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (min-width: 992px) {
    .mnmd-sub-col {
      padding-top: 0;
      width: 290px;
    }
  }
  
  @media (min-width: 1200px) {
    .mnmd-sub-col {
      width: 330px;
    }
  }
  
  .row--flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .row--flex.row--vertical-center {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .row--flex>[class*='col-'] {
    float: none;
  }
  
  .row--stack>[class*='col-'] {
    margin-bottom: 30px;
  }
  
  .row--space-between {
    margin-top: -15px;
    margin-bottom: -15px;
    clear: both;
  }
  
  .row--space-between>[class*='col-'] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .grid-no-gutter .row,
  .grid-no-gutter.row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .grid-no-gutter .row--space-between,
  .grid-no-gutter.row--space-between {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .grid-no-gutter [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  
  .grid-no-gutter .row--space-between>[class*="col-"],
  .grid-no-gutter.row--space-between>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .grid-gutter-2 .row,
  .grid-gutter-2.row {
    margin-left: -1px;
    margin-right: -1px;
  }
  
  .grid-gutter-2 .row--space-between,
  .grid-gutter-2.row--space-between {
    margin-top: -1px;
    margin-bottom: -1px;
  }
  
  .grid-gutter-2 [class*="col-"] {
    padding-left: 1px;
    padding-right: 1px;
  }
  
  .grid-gutter-2 .row--space-between>[class*="col-"],
  .grid-gutter-2.row--space-between>[class*="col-"] {
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  
  .grid-gutter-4 .row,
  .grid-gutter-4.row {
    margin-left: -2px;
    margin-right: -2px;
  }
  
  .grid-gutter-4 .row--space-between,
  .grid-gutter-4.row--space-between {
    margin-top: -2px;
    margin-bottom: -2px;
  }
  
  .grid-gutter-4 [class*="col-"] {
    padding-left: 2px;
    padding-right: 2px;
  }
  
  .grid-gutter-4 .row--space-between>[class*="col-"],
  .grid-gutter-4.row--space-between>[class*="col-"] {
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  
  .grid-gutter-10 .row,
  .grid-gutter-10.row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .grid-gutter-10 .row--space-between,
  .grid-gutter-10.row--space-between {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  
  .grid-gutter-10 [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .grid-gutter-10 .row--space-between>[class*="col-"],
  .grid-gutter-10.row--space-between>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .grid-gutter-20 .row,
  .grid-gutter-20.row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .grid-gutter-20 .row--space-between,
  .grid-gutter-20.row--space-between {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .grid-gutter-20 [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .grid-gutter-20 .row--space-between>[class*="col-"],
  .grid-gutter-20.row--space-between>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .grid-gutter-40 .row,
  .grid-gutter-40.row {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .grid-gutter-40 .row--space-between,
  .grid-gutter-40.row--space-between {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  
  .grid-gutter-40 [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .grid-gutter-40 .row--space-between>[class*="col-"],
  .grid-gutter-40.row--space-between>[class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .grid-gutter-50 .row,
  .grid-gutter-50.row {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  .grid-gutter-50 .row--space-between,
  .grid-gutter-50.row--space-between {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  
  .grid-gutter-50 [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .grid-gutter-50 .row--space-between>[class*="col-"],
  .grid-gutter-50.row--space-between>[class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Site Header
  ----------------------------------------------------------------- */
  
  .site-header {
    position: relative;
    background: #F7F7F7;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.03), 0 1px 0 0 rgba(0, 0, 0, 0.04), 0 -1px 0 0 rgba(0, 0, 0, 0.04);
    z-index: 20;
  }
  
  .site-header__inner {
    padding: 0 15px;
  }
  
  .container .site-header__inner {
    padding: 0;
  }
  
  
  /*
   * ## Top bar
   *--------------------*/
  
  .top-bar__inner {
    padding: 10px 0;
  }
  
  .top-bar__inner--fw {
    padding: 10px 30px;
  }
  
  .top-bar__inner--flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .top-bar__inner--flex>.top-bar__section {
    padding-right: 20px;
  }
  
  .top-bar__inner--flex>.top-bar__section:last-child {
    padding-right: 0;
  }
  
  
  /*---- Top navigation ----*/
  
  .top-bar__nav .navigation {
    margin: 0 -8px;
    font-size: 12px;
  }
  
  .top-bar__nav .navigation a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .top-bar__nav .navigation li {
    position: relative;
  }
  
  .top-bar__nav .navigation>li>a {
    padding: 0 8px;
    line-height: 20px;
  }
  
  .top-bar__nav .navigation>li.menu-item-has-children>a:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    display: inline-block;
    font-family: 'mdicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e5c5';
    display: inline-block;
    margin-left: 0.1em;
    margin-top: -0.2em;
    font-size: 1.2em;
  }
  
  .top-bar__nav .navigation .sub-menu {
    min-width: 200px;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    margin-top: 11px;
    padding: 8px;
    background: #fafafa;
    color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.09);
    -webkit-transition: all 0.1s ease-in-out 0.1s;
    -moz-transition: all 0.1s ease-in-out 0.1s;
    transition: all 0.1s ease-in-out 0.1s;
  }
  
  .top-bar__nav .navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .top-bar__nav .navigation .sub-menu a {
    display: block;
    padding: 4px 8px;
    color: rgba(0, 0, 0, 0.6);
  }
  
  .top-bar__nav .navigation .sub-menu li:hover>a {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .top-bar a {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .top-bar__nav .navigation>li>a {
    color: rgba(0, 0, 0, 0.4);
    -webkit-transition: "color", 0.2s;
    -moz-transition: "color", 0.2s;
    transition: "color", 0.2s;
  }
  
  .top-bar__nav .navigation>li:hover>a {
    color: rgba(0, 0, 0, 0.8);
  }
  
  
  /*---- Top bar fullwidth ----*/
  
  .top-bar--fullwidth {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .top-bar:not(.top-bar--fullwidth) .top-bar__inner {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  
  /*---- Top bar inverse ----*/
  
  .top-bar--inverse.top-bar--fullwidth {
    background: #111;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .top-bar--inverse .top-bar__nav .navigation>li>a,
  .top-bar--inverse .social-list--inline>li>a {
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: "color", 0.2s;
    -moz-transition: "color", 0.2s;
    transition: "color", 0.2s;
  }
  
  .top-bar--inverse .top-bar__nav .navigation>li:hover>a,
  .top-bar--inverse .social-list--inline>li:hover>a {
    color: white;
  }
  
  
  /*
   * ## Header main
   *--------------------*/
  
  .header-main {
    padding: 5px 0;
  }
  
  @media (min-width: 992px) {
    .header-main {
      padding: 40px 0;
    }
  }
  
  .header-main__inner--flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .header-main__section {
    padding-right: 20px;
  }
  
  .header-main__section:last-child {
    padding-right: 0;
  }
  
  .header-main--inverse {
    background: #1B1D1C;
    color: rgba(255, 255, 255, 0.8);
  }
  
  
  /*---- Header branding ---*/
  
  .navigation-bar .header-branding {
    max-width: 30%;
  }
  
  .header-branding--mobile {
    min-width: 0;
  }
  
  .site-title {
    color: var(--color-primary);
    font-size: 36px;
    font-weight: 700;
  }
  
  @media (min-width: 1200px) {
    .site-title {
      font-size: 48px;
    }
  }
  
  .site-title:first-child {
    margin-top: 0;
  }
  
  .site-title:last-child {
    margin-bottom: 0;
  }
  
  .site-title a {
    color: inherit;
    text-decoration: none;
  }
  
  .navigation-bar .site-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    font-size: 36px;
    line-height: 60px;
  }
  
  .site-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .mobile-header .site-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    font-size: 20px;
  }
  
  .mobile-header .site-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  
  /*---- Header logo ---*/
  
  .header-logo a {
    text-decoration: none !important;
  }
  
  .navigation-bar .header-logo {
    display: inline-block;
    vertical-align: middle;
  }
  
  .navigation-bar .header-logo img {
    max-height: 60px;
    padding: 15px 0;
  }
  
  .navigation-bar--inverse .header-logo--text,
  .navigation-bar--inverse .header-logo--text a {
    color: #fff;
  }
  
  
  /*---- Header main buttons ---*/
  
  .header-main-btn {
    display: inline-block;
    padding: 5px 10px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    color: inherit;
    text-decoration: none;
  }
  
  .header-main-btn:hover,
  .header-main-btn:active,
  .header-main-btn:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .header-main-btn .mdicon,
  .header-main-btn i {
    font-size: 1.2em;
  }
  
  .header-main-btn .mdicon:not(:last-child),
  .header-main-btn i:not(:last-child) {
    margin-right: 0.2em;
  }
  
  
  /*---- Header search ---*/
  
  .header-main .header-search .search-form__input {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  }
  
  
  /*
   * ## Navigation bar
   *--------------------*/
  
  .navigation-bar {
    height: 60px;
    position: relative;
    z-index: 1;
  }
  
  .navigation-bar--fullwidth {
    background: #F7F7F7;
  }
  
  .navigation-bar__inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .navigation-bar--inverse:not(.navigation-bar--fullwidth) .navigation-bar__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .navigation-bar--fullwidth .navigation-bar__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .navigation-bar--fullwidth .container .navigation-bar__inner {
    padding-left: 0;
    padding-right: 0;
  }
  
  .navigation-bar:not(.navigation-bar--fullwidth):not(.navigation-bar--inverse) .navigation-bar__inner {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
  }
  
  .navigation-bar__section {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .navigation-bar__section:first-child {
    padding-left: 0;
  }
  
  .navigation-bar__section:last-child {
    padding-right: 0;
  }
  
  
  /*
   * #Main navigation
   *--------------------*/
  
  .navigation-wrapper {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
  }
  
  @media (min-width: 1200px) {
    .navigation-bar .header-logo {
      padding-right: 20px;
    }
  }
  
  .navigation--main {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 0;
  }
  
  .navigation--main * {
    white-space: initial;
  }
  
  .navigation--main a {
    text-decoration: none;
  }
  
  .navigation--main>li {
    font-size: 14px;
    font-size: 1rem;
    white-space: normal;
    text-align: left;
  }
  
  .navigation--main>li>a {
    display: inline-block;
    height: 60px;
    padding: 0 10px;
    font-size: 13px;
    font-size: 0.92857rem;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .navigation--main>li.menu-item-has-children>a:after,
  .navigation--main .sub-menu>li.menu-item-has-children>a:after,
  .navigation--main .sub-menu-inner> ul > li.menu-item-has-children>a:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    display: inline-block;
    font-family: 'mdicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e5cf';
    display: inline-block;
    margin-left: 0.1em;
    margin-top: -0.1em;
    font-size: 1.3em;
    letter-spacing: -0.2857em;
  }
  
  .navigation--main .sub-menu>li.menu-item-has-children>a {
    position: relative;
    padding-right: 20px;
  }
  
  .navigation--main .sub-menu>li.menu-item-has-children>a:after,
  .navigation--main .sub-menu-inner> ul > li.menu-item-has-children>a:after {
    content: '\e409';
    position: absolute;
    top: 50%;
    right: 7px;
    left: auto;
    bottom: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  .navigation--main>li>a {
    position: relative;
    color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.2s ease-out 0.05s;
    -moz-transition: all 0.2s ease-out 0.05s;
    transition: all 0.2s ease-out 0.05s;
  }
  
  .navigation--main>li>a:before {
    content: '';
    display: block;
    height: 3px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    -moz-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    -o-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .navigation--main>li:hover>a,
  .navigation--main>li.current-menu-item>a {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .navigation--main>li:hover>a:before,
  .navigation--main>li.current-menu-item>a:before {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  
  .navigation--main .sub-menu {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .navigation--main>li>.sub-menu,
  .navigation--main li>.sub-menu .sub-menu {
    width: 220px;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 10px;
    background: #fafafa;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(1, 0.9);
    -moz-transform: scale(1, 0.9);
    -ms-transform: scale(1, 0.9);
    -o-transform: scale(1, 0.9);
    transform: scale(1, 0.9);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    -moz-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    z-index: 30;
  }
  
  .navigation--main li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
  
  .navigation--main li>.sub-menu .sub-menu {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 100%;
    margin-left: 10px;
  }
  
  .navigation--main .sub-menu a {
    display: block;
    padding: 6px 8px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
  }
  
  .navigation--main .sub-menu li:hover>a {
    background: rgba(0, 0, 0, 0.05);
  }
  
  
  /*
   * Priority nav dropdown
   *------------------------*/
  
  .priority-nav__more {
    direction: rtl;
  }
  
  .priority-nav__more * {
    direction: ltr;
  }
  
  .priority-nav__more>a>i {
    display: inline-block;
    margin-left: 0.1em;
    margin-top: -0.1em;
    letter-spacing: -0.2857em;
  }
  
  .priority-nav__more .sub-menu .sub-menu,
  .priority-nav__more li.menu-item-has-children>a:after,
  .priority-nav__more .mnmd-mega-menu {
    display: none !important;
  }
  
  
  /*
   * Navigation bar inverse
   *------------------------*/
  
  .navigation-bar--inverse:not(.navigation-bar--fullwidth) .navigation-bar__inner {
    background: #F7F7F7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
  }
  
  .navigation-bar--inverse.navigation-bar--fullwidth {
    background: #F7F7F7;
  }
  
  .navigation-bar--inverse.navigation-bar--fullwidth .container .navigation-bar__inner {
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    border-radius: none;
  }
  
  .navigation-bar--inverse .navigation-bar__section--seperated {
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .navigation-bar--inverse .navigation--main>li>a,
  .navigation-bar--inverse .navigation-bar-btn {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .navigation-bar--inverse .navigation--main>li>a:hover,
  .navigation-bar--inverse .navigation--main>li>a:focus,
  .navigation-bar--inverse .navigation--main>li>a:active,
  .navigation-bar--inverse .navigation-bar-btn:hover,
  .navigation-bar--inverse .navigation-bar-btn:focus,
  .navigation-bar--inverse .navigation-bar-btn:active {
    color: white;
  }
  
  .navigation-bar--inverse .navigation--main>li:hover>a,
  .navigation-bar--inverse .navigation--main>li.current-menu-item>a {
    color: white;
  }
  
  
  /*
   * Mega menu
   *--------------------*/
  
  .mnmd-mega-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    background: #fafafa;
    box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.09);
    z-index: 20;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1, 0.9);
    -moz-transform: scale(1, 0.9);
    -ms-transform: scale(1, 0.9);
    -o-transform: scale(1, 0.9);
    transform: scale(1, 0.9);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    -moz-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  }
  
  .navigation--main li:hover>.mnmd-mega-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
  
  .mnmd-mega-menu__inner {
    padding: 20px;
    pointer-events: auto;
  }
  
  .mnmd-mega-menu .container .mnmd-mega-menu__inner {
    padding-left: 0;
    padding-right: 0;
  }
  
  
  /*---- Category mega menu ----*/
  
  .mnmd-mega-menu .posts-list {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }
  
  .mnmd-mega-menu .posts-list>li {
    max-width: 25%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
  }
  
  .mnmd-mega-menu .posts-list>li.big-post {
    max-width: 50%;
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    box-flex: 2;
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  
  .mnmd-mega-menu ul.sub-categories {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .mnmd-mega-menu ul.sub-categories li {
    display: inline-block;
  }
  
  .mnmd-mega-menu ul.sub-categories li:not(:first-child) {
    margin-left: 2px;
  }
  
  
  /*---- Links mega menu ----*/
  
  .mnmd-mega-menu__inner>.sub-menu {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  
  .mnmd-mega-menu__inner>.sub-menu>li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    padding: 10px;
  }
  
  .mnmd-mega-menu__inner>.sub-menu>li:nth-child(n+6) {
    max-width: 20%;
  }
  
  .mnmd-mega-menu__inner>.sub-menu>li>a {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mnmd-mega-menu__inner>.sub-menu>li:hover>a {
    background: transparent;
  }
  
  .mnmd-mega-menu__inner .sub-menu>li.menu-item-has-children>a:after {
    content: none;
  }
  
  .mnmd-mega-menu__inner .sub-menu .sub-menu {
    padding: 10px 0 0;
  }
  
  
  /*
   * Nav bar buttons
   *--------------------*/
  
  .navigation-bar-btn {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    height: 60px;
    padding: 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
  }
  
  .navigation-bar-btn:hover,
  .navigation-bar-btn:active,
  .navigation-bar-btn:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .navigation-bar-btn span,
  .navigation-bar-btn i {
    line-height: 60px;
    vertical-align: middle;
  }
  
  .navigation-bar-btn i {
    font-size: 18px;
  }
  
  .navigation-bar-btn i:not(:last-child) {
    margin-right: 0.2em;
  }
  
  
  /*---- Header search ---*/
  
  .header-search {
    max-width: 100%;
    min-width: 280px;
  }
  
  .navigation-bar--inverse .header-search .search-form__input,
  .navigation-bar--dark .header-search .search-form__input,
  .site-header--inverse .header-search .search-form__input {
    background: #fff;
  }
  
  .header-search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fafafa;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .header-search-dropdown.is-active {
    display: block;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.03), 0 1px 0 0 rgba(0, 0, 0, 0.04), 0 -1px 0 0 rgba(0, 0, 0, 0.04);
    opacity: 1;
    visibility: visible;
  }
  
  .header-search-dropdown .search-form__input {
    padding: 18px 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-size: 1.14286rem;
  }
  
  @media (min-width: 768px) {
    .header-search-dropdown .search-form__input {
      font-size: 26px;
      font-size: 1.85714rem;
    }
  }
  
  .header-search-dropdown .search-form__input:focus {
    border: none;
    box-shadow: none;
    outline: none;
  }
  
  .header-search-dropdown .search-form__submit {
    text-transform: uppercase;
  }
  
  .search-form--horizontal {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .search-form--horizontal .search-form__input-wrap {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  .search-form--horizontal .search-form__submit-wrap {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0;
    -moz-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
  
  .search-results {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .ajax-search .search-results {
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .ajax-search .search-results.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .ajax-search .search-results .typing-loader {
    margin: 0 auto;
  }
  
  .ajax-search .search-results:not(.is-loading) .typing-loader {
    display: none;
  }
  
  
  /*Typing Loader*/
  
  .typing-loader {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-animation: typing 1s linear infinite alternate;
    -moz-animation: Typing 1s linear infinite alternate;
    animation: typing 1s linear infinite alternate;
    position: relative;
    left: -12px;
  }
  
  @-webkit-keyframes typing {
    0% {
      background-color: black;
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    25% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px black, 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    75% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px black;
    }
  }
  
  @-moz-keyframes typing {
    0% {
      background-color: black;
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    25% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px black, 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    75% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px black;
    }
  }
  
  @keyframes typing {
    0% {
      background-color: black;
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    25% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px black, 24px 0px 0px 0px rgba(0, 0, 0, 0.2);
    }
    75% {
      background-color: rgba(0, 0, 0, 0.4);
      box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px black;
    }
  }
  
  .search-results {
    padding-top: 20px;
    overflow: hidden;
  }
  
  body.search-results {
    padding-top: 0;
    overflow: visible;
  }
  
  .header-search-dropdown .search-results {
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }
  
  @media (min-width: 1200px) {
    .header-search-dropdown .search-results {
      max-height: calc(100vh - 133px);
    }
  }
  
  .header-search-dropdown .search-results__inner {
    padding-bottom: 30px;
  }
  
  .search-results__view-all {
    display: block;
    clear: both;
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.28571rem;
    text-align: center;
  }
  
  
  /*---- Dropdown login ---*/
  
  .nav-login__dropdown {
    padding: 20px;
    background: #fafafa;
  }
  
  
  /*
   * Header banner
   *--------------------*/
  
  .header-main--inverse .search-form__input {
    background: #fff;
  }
  
  .navigation-bar--inverse .navigation--main>li>a,
  .navigation-bar--inverse .navigation-bar-btn {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .navigation-bar--inverse .navigation--main>li>a:hover,
  .navigation-bar--inverse .navigation--main>li>a:focus,
  .navigation-bar--inverse .navigation--main>li>a:active,
  .navigation-bar--inverse .navigation-bar-btn:hover,
  .navigation-bar--inverse .navigation-bar-btn:focus,
  .navigation-bar--inverse .navigation-bar-btn:active {
    color: white;
  }
  
  
  /*
   * Mobile header
   *--------------------*/
  
  .mobile-header {
    position: relative;
    height: 50px;
    background: #F7F7F7;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.03), 0 1px 0 0 rgba(0, 0, 0, 0.04), 0 -1px 0 0 rgba(0, 0, 0, 0.04);
  }
  
  @media (min-width: 768px) {
    .mobile-header {
      height: 60px;
    }
  }
  
  .mobile-header__inner {
    padding: 0 15px;
  }
  
  .container .mobile-header__inner {
    padding: 0;
  }
  
  .mobile-header__inner--flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    width: 100%;
  }
  
  .mobile-header__section {
    padding-right: 20px;
    white-space: nowrap;
  }
  
  .mobile-header__section:last-child {
    padding-right: 0;
  }
  
  .header-logo--mobile img {
    max-height: 50px;
    padding: 10px 0;
  }
  
  @media (min-width: 768px) {
    .header-logo--mobile img {
      max-height: 60px;
    }
  }
  
  .mobile-header-btn {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    height: 50px;
    padding: 0 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .mobile-header-btn:hover,
  .mobile-header-btn:active,
  .mobile-header-btn:focus {
    color: inherit;
    text-decoration: none;
  }
  
  @media (min-width: 768px) {
    .mobile-header-btn {
      height: 60px;
    }
  }
  
  .mobile-header-btn:hover {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .mobile-header-btn>span {
    display: inline-block;
    line-height: 50px;
    vertical-align: middle;
  }
  
  @media (min-width: 768px) {
    .mobile-header-btn>span {
      line-height: 60px;
    }
  }
  
  .mobile-header-btn i {
    font-size: 26px;
    line-height: 50px;
  }
  
  @media (min-width: 768px) {
    .mobile-header-btn i {
      font-size: 24px;
      line-height: 60px;
    }
  }
  
  .mobile-header--dark,
  .mobile-header--inverse {
    background: #F7F7F7;
    color: #fff;
  }
  
  .mobile-header--dark .mobile-header-btn,
  .mobile-header--inverse .mobile-header-btn,
  .mobile-header--inverse .header-logo a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .mobile-header--dark .mobile-header-btn:hover,
  .mobile-header--inverse .mobile-header-btn:hover,
  .mobile-header--inverse .header-logo a:hover {
    color: white;
  }
  
  
  /*---- Sticky header ----*/
  
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.03), 0 1px 0 0 rgba(0, 0, 0, 0.04), 0 -1px 0 0 rgba(0, 0, 0, 0.04);
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    -webkit-transform: translate3d(0, -101%, 0);
    -moz-transform: translate3d(0, -101%, 0);
    -ms-transform: translate3d(0, -101%, 0);
    -o-transform: translate3d(0, -101%, 0);
    transform: translate3d(0, -101%, 0);
  }
  
  .sticky-header.is-shown {
    pointer-events: initial;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .sticky-header.is-fixed {
    pointer-events: initial;
    visibility: visible;
  }
  
  @media (min-width: 992px) {
    .admin-bar .sticky-header.is-fixed {
      margin-top: 32px;
    }
  }
  
  
  /*---- Overlap header ---*/
  
  .has-overlap-header .site-header--overlap::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .has-overlap-header .site-header--overlap .navigation-bar {
    margin-bottom: -30px;
  }
  
  @media (min-width: 992px) {
    .has-overlap-header .mnmd-block--fullwidth.mnmd-mosaic-block--with-bg:first-child,
    .has-overlap-header .mnmd-block--fullwidth.has-overlap-background:first-child,
    .has-overlap-header .mnmd-block--fullwidth.has-background:first-child,
    .has-overlap-header .mnmd-block--fullwidth:first-child .mnmd-block__inner {
      padding-top: 60px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Site Footer
  ----------------------------------------------------------------- */
  
  .site-footer {
    position: relative;
    background: #fafafa;
    color: rgba(0, 0, 0, 0.6);
  }
  
  .site-footer__inner {
    position: relative;
  }
  
  .site-footer__section {
    position: relative;
    padding-bottom: 30px;
  }
  
  .site-footer__section:first-child {
    padding-top: 40px;
  }
  
  .site-footer__section--seperated {
    padding-top: 30px;
  }
  
  .site-footer__section-inner {
    position: relative;
  }
  
  .site-footer__section--bordered,
  .site-footer__section--bordered-inner .site-footer__section-inner {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .site-footer__section--bordered-inner .site-footer__section-inner {
    padding-top: 30px;
  }
  
  /*
   * Footer Logo
   *--------------------*/
  .site-footer .logo-text {
      font-size: 30px;
      font-weight: 600;
  }
  .site-footer .site-logo a {
      color: rgba(0, 0, 0, 0.6);
  }
  .site-footer--inverse .site-logo a {
      color: #fff;
  }
  /*
   * Footer widget
   *--------------------*/
  
  .site-footer .widget:last-child {
    margin-bottom: 0;
  }
  
  .has-block-heading-line-under .site-footer .widget__title {
    border-bottom: none;
  }
  
  
  /*
   * Footer menu
   *--------------------*/
  
  .navigation--footer {
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .navigation--footer .sub-menu {
    display: none;
  }
  
  .navigation--footer>li {
    padding: 0.2em 0.4em;
  }
  
  .navigation--footer>li>a {
    color: rgba(0, 0, 0, 0.6);
  }
  
  .navigation--footer>li>a:hover {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .footer-menu--bold .navigation--footer>li>a {
    font-weight: 700;
    text-transform: uppercase;
  }
  
  @media (min-width: 768px) {
    .site-footer__section--flex .site-footer__section-inner {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -moz-box-align: center;
      box-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -ms-flex-align: center;
    }
  }
  
  .site-footer__section--flex .site-footer__section-left {
    padding-bottom: 20px;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .site-footer__section--flex .site-footer__section-left {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      padding-right: 10px;
      padding-bottom: 0;
      text-align: left;
    }
  }
  
  .site-footer__section--flex .site-footer__section-right {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .site-footer__section--flex .site-footer__section-right {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      padding-left: 10px;
      text-align: right;
    }
  }
  
  
  /*---- Footer inverse ----*/
  
  .site-footer--inverse {
    background: #fafafa;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .site-footer--inverse a,
  .site-footer--inverse .post__title a {
    color: white;
  }
  
  .site-footer--inverse .navigation--footer>li>a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .site-footer--inverse .navigation--footer>li>a:hover {
    color: white;
  }
  
  .site-footer--inverse .site-footer__section--bordered,
  .site-footer--inverse .site-footer__section--bordered-inner .site-footer__section-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .has-block-heading-line-around .site-footer--inverse .widget__title:before,
  .has-block-heading-line-around .site-footer--inverse .widget__title:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mnmd-go-top.mnmd-go-top {
    width: 40px;
    height: 40px;
    position: fixed;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    padding: 0;
    font-size: 18px;
    line-height: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translate(0, 54px);
    -moz-transform: translate(0, 54px);
    -ms-transform: translate(0, 54px);
    -o-transform: translate(0, 54px);
    transform: translate(0, 54px);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    pointer-events: none;
    visibility: hidden;
    z-index: 10;
  }
  
  @media (min-width: 1200px) {
    .mnmd-go-top.mnmd-go-top {
      bottom: 20px;
      right: 20px;
      -webkit-transform: translate(0, 64px);
      -moz-transform: translate(0, 64px);
      -ms-transform: translate(0, 64px);
      -o-transform: translate(0, 64px);
      transform: translate(0, 64px);
    }
  }
  
  .mnmd-go-top.mnmd-go-top.is-active {
    visibility: visible;
    pointer-events: initial;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .modal-open .mnmd-go-top.mnmd-go-top {
    display: none;
  }
  
  .mnmd-go-top.mnmd-go-top i {
    line-height: 38px;
    vertical-align: initial;
  }
  
  
  /* =============================================================================
  ## COMPONENTS
  ============================================================================= */
  
  
  /* -----------------------------------------------------------------
  ## Block heading
  ----------------------------------------------------------------- */
  
  .block-heading {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    width: 100%;
    position: relative;
    margin-bottom: 1.4rem;
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .block-heading a {
    color: inherit;
    text-decoration: none;
  }
  
  .block-heading a:hover,
  .block-heading a:active,
  .block-heading a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .block-heading__title {
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .block-heading--secondary .block-heading__title {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .block-heading .first-word,
  .block-heading span {
    font-weight: 300;
  }
  
  .block-heading__subtitle {
    line-height: 1.4;
    letter-spacing: normal;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .overlay-content .block-heading__subtitle,
  .inverse-text .block-heading__subtitle {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .block-heading__secondary {
    padding-left: 0.6em;
    text-align: right;
    vertical-align: middle;
  }
  
  .block-heading__secondary a {
    color: inherit;
    text-decoration: none;
  }
  
  .block-heading__secondary a:hover,
  .block-heading__secondary a:active,
  .block-heading__secondary a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  
  /*---- Block heading large ----*/
  
  @media (min-width: 768px) {
    .block-heading--lg {
      margin-bottom: 1.6rem;
    }
  }
  
  @media (min-width: 768px) {
    .block-heading--lg .block-heading__title {
      font-size: 20px;
      font-size: 1.43rem;
    }
  }
  
  
  /*---- Block heading line ----*/
  
  .block-heading--line.block-heading:after {
    content: '';
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
    margin-left: 0.6em;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .has-block-heading-line .block-heading__secondary,
  .block-heading--line .block-heading__secondary {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    box-ordinal-group: 3;
    -webkit-order: 3;
    -moz-order: 3;
    order: 3;
    -ms-flex-order: 3;
  }
  
  .site-footer .block-heading--line.block-heading:after {
      border-top: 2px solid rgba(255, 255, 255, 0.15);
  }
  /*---- Block heading center ----*/
  
  .block-heading--center {
    display: block;
    text-align: center;
    border: none;
  }
  
  .block-heading--center .block-heading__title {
    margin-bottom: 0.4em;
    padding: 0;
  }
  
  .block-heading--center .block-heading__subtitle {
    padding: 0;
  }
  
  .block-heading--center:before,
  .block-heading--center:after {
    display: none;
  }
  
  
  /*---- Block heading line around ----*/
  
  .has-block-heading-line-around.block-heading:before,
  .has-block-heading-line-around.block-heading:after {
    content: '';
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 0.6em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .has-block-heading-line-around.block-heading:after {
    margin-left: 0.6em;
    margin-right: 0
  }
  
  .has-block-heading-line-around.block-heading__secondary {
    display: none;
  }
  
  .site-footer .has-block-heading-line-around.block-heading:before,
  .site-footer .has-block-heading-line-around.block-heading:after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  }
  
  
  /*---- Block heading line under ----*/
  
  .block-heading--line-under.block-heading {
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  .overlay-content .block-heading--line-under.block-heading,
  .inverse-text .block-heading--line-under.block-heading,
  .block-heading--inverse.block-heading--line-under.block-heading {
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .site-footer .block-heading--line-under.block-heading {
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  
  /*---- Block heading box ----*/
  
  .block-heading--box {
    padding: 10px 12px 11px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    background: #fafafa;
  }
  
  .block-heading--box .block-heading__title {
    font-size: 14px;
  }
  
  
  /*---- Block heading vertical ----*/
  
  .block-heading--vertical {
    display: block;
  }
  
  .block-heading--vertical.block-heading--vertical {
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .block-heading--vertical>*:not(:last-child) {
    margin-bottom: 0.4em;
  }
  
  
  /*---- Block heading inverse ----*/
  
  .block-heading--inverse {
    position: relative;
    color: white;
    z-index: 1;
  }
  
  .block-heading--inverse .block-heading__title {
    color: white;
  }
  
  .block-heading--inverse .block-heading__subtitle {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .block-heading.block-heading--inverse:before,
  .block-heading.block-heading--inverse:after {
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  
  /*---- Search results section heading ----*/
  
  .search-results__section-heading {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    width: 100%;
    position: relative;
    margin-bottom: 1.4rem;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.2;
  }
  
  .search-results__section-heading-title {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
  }
  
  .search-results__section-heading a {
    color: inherit;
    text-decoration: none;
  }
  
  .search-results__section-heading a:hover,
  .search-results__section-heading a:active,
  .search-results__section-heading a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  
  /* -----------------------------------------------------------------
  ## Buttons
  ----------------------------------------------------------------- */
  
  input[type="button"]:not(.btn),
  input[type="reset"]:not(.btn),
  input[type="submit"]:not(.btn) {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  input[type="button"]:not(.btn):hover,
  input[type="reset"]:not(.btn):hover,
  input[type="submit"]:not(.btn):hover {
    background: #efefef;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  .btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .btn:hover,
  .btn:focus,
  .btn:active,
  .btn:visited {
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  a.btn {
    text-decoration: none;
  }
  
  .btn-link {
    border: none;
    box-shadow: none;
  }
  
  .btn-link:active,
  .btn-link:focus,
  .btn-link:hover {
    border: none;
    box-shadow: none;
  }
  
  .btn-default:hover,
  .btn-default:focus,
  .btn-default:active {
    background: #f8f8f8;
  }
  
  .btn-default.active.focus,
  .btn-default.active:focus,
  .btn-default.active:hover,
  .btn-default:active.focus,
  .btn-default:active:focus,
  .btn-default:active:hover {
    background: #eee;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  .btn-primary {
    background: var(--color-primary);
    color: #fff;
  }
  
  .btn-primary:active,
  .btn-primary:focus,
  .btn-primary:hover {
    background: #ef392b;
    color: #fff;
  }
  
  .btn-primary.active.focus,
  .btn-primary.active:focus,
  .btn-primary.active:hover,
  .btn-primary:active.focus,
  .btn-primary:active:focus,
  .btn-primary:active:hover {
    background: #e33629;
    color: #fff;
  }
  
  .btn-pill {
    border-radius: 999em;
  }
  
  .btn-glass {
    border: 3px solid rgba(255, 255, 255, 0.4);
    background-clip: padding-box;
  }
  
  .btn-glass:active,
  .btn-glass:focus,
  .btn-glass:hover {
    border: 3px solid rgba(255, 255, 255, 0.4);
  }
  
  .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .btn-ghost:hover,
  .btn-ghost:active,
  .btn-ghost:focus,
  .btn-ghost:visited {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
  }
  
  .btn-frame {
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.8);
  }
  
  .btn-frame:hover,
  .btn-frame:active,
  .btn-frame:focus,
  .btn-frame:visited {
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.8);
  }
  
  
  /* -----------------------------------------------------------------
  ## Custom Scrollbar
  ----------------------------------------------------------------- */
  
  .ps-container>.ps-scrollbar-y-rail,
  .ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    width: 6px;
  }
  
  .ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    right: 0;
    border-radius: 2px;
  }
  
  .ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y,
  .ps-container>.ps-scrollbar-y-rail:active>.ps-scrollbar-y {
    width: 8px;
  }
  
  .ps-container>.ps-scrollbar-y-rail {
    background: transparent !important;
  }
  
  .scrollbar-always-visible.ps-container>.ps-scrollbar-x-rail,
  .scrollbar-always-visible.ps-container>.ps-scrollbar-y-rail {
    opacity: 0.6;
  }
  
  .iScrollVerticalScrollbar {
    position: absolute;
    z-index: 9999;
    width: 6px;
    bottom: 4px;
    top: 4px;
    right: 4px;
    overflow: hidden;
  }
  
  .iScrollIndicator {
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 999em;
  }
  
  .iScrollVerticalScrollbar .iScrollIndicator {
    width: 100%;
  }
  
  .mnmd-video-box .iScrollIndicator {
    background: rgba(255, 255, 255, 0.5);
  }
  
  
  /* -----------------------------------------------------------------
  ## Category Tile
  ----------------------------------------------------------------- */
  
  .category-tile {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  
  .category-tile__wrap {
    position: relative;
    margin-top: 20px;
    box-shadow: 0 -20px 0 -10px rgba(0, 0, 0, 0.05), 0 -38px 0 -20px rgba(0, 0, 0, 0.02);
  }
  
  .category-tile__inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    min-height: 180px;
    position: relative;
  }
  
  .category-tile--sm .category-tile__inner {
    min-height: 120px;
  }
  
  .category-tile .link-overlay {
    z-index: 1;
  }
  
  .category-tile__text {
    width: 100%;
    position: relative;
    padding: 20px 20px 15px;
    text-align: center;
  }
  
  .category-tile__name {
    max-width: 100%;
    display: inline-block;
    padding: 0.4em 1em;
    background: #333;
    color: #fff;
    font-size: 0.8571rem;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  .category-tile__description {
    margin-top: 0.4em;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8571rem;
  }
  
  .category-tile:hover .background-img:after {
    opacity: 0.6;
  }
  
  
  /* -----------------------------------------------------------------
  ## Block Divider
  ----------------------------------------------------------------- */
  
  .block-divider {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    margin: 1.2em 0;
  }
  
  .block-divider:before,
  .block-divider:after {
    content: '';
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .block-divider>span {
    margin: 0 0.6em;
  }
  
  .horizontal-divider {
    margin: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .horizontal-divider--space-sm {
    margin: 10px 0;
  }
  
  /* -----------------------------------------------------------------
  ## Forms
  ----------------------------------------------------------------- */
  
  label {
    font-size: 14px;
    font-size: 1rem;
  }
  
   ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgba(0, 0, 0, 0.4);
  }
  
   :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
  
   ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
  
   :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 0.4);
  }
  
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="number"],
  textarea,
  textarea.form-control,
  select,
  select.form-control {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    color: rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  textarea:focus,
  textarea.form-control:focus,
  select:focus,
  select.form-control:focus {
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  /* -----------------------------------------------------------------
  ## Icons
  ----------------------------------------------------------------- */
  
  @font-face {
    font-family: 'mdicon';
    src: url("//145150286.fs1.hubspotusercontent-eu1.net/hubfs/145150286/raw_assets/public/@marketplace/ATBS/Thegrid/css/thegrid/fonts/mdicon.ttf") format("truetype"), 
      url("//145150286.fs1.hubspotusercontent-eu1.net/hubfs/145150286/raw_assets/public/@marketplace/ATBS/Thegrid/css/thegrid/fonts/mdicon.woff") format("woff");
        font-weight: normal;
        font-style: normal; 
  }
  
  .mdicon {
    /* use !important to prevent issues with browser extensions that change fonts */
    display: inline-block;
    font-family: 'mdicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .btn .mdicon {
    font-size: 1.2em;
  }

  
  .mdicon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'mdicon' !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;
  }
  
  .mdicon-schedule:before {
    content: "\e8b5";
  }
  .mdicon-add_circle:before {
    content: "\e147";
  }
  .mdicon-apps:before {
    content: "\e5c3";
  }
  .mdicon-arrow_back:before {
    content: "\e5c4";
  }
  .mdicon-arrow_downward:before {
    content: "\e5db";
  }
  .mdicon-arrow_drop_down:before {
    content: "\e5c5";
  }
  .mdicon-arrow_drop_up:before {
    content: "\e5c7";
  }
  .mdicon-arrow_forward:before {
    content: "\e5c8";
  }
  .mdicon-arrow_upward:before {
    content: "\e5d8";
  }
  .mdicon-audiotrack:before {
    content: "\e3a1";
  }
  .mdicon-border_color:before {
    content: "\e22b";
  }
  .mdicon-cached:before {
    content: "\e86a";
  }
  .mdicon-chat_bubble:before {
    content: "\e0ca";
  }
  .mdicon-chat_bubble_outline:before {
    content: "\e0cb";
  }
  .mdicon-navigate_before:before {
    content: "\e408";
  }
  .mdicon-navigate_next:before {
    content: "\e409";
  }
  .mdicon-close:before {
    content: "\e5cd";
  }
  .mdicon-mode_edit:before {
    content: "\e254";
  }
  .mdicon-crop_original:before {
    content: "\e3c4";
  }
  .mdicon-dehaze:before {
    content: "\e3c7";
  }
  .mdicon-remove_circle:before {
    content: "\e15c";
  }
  .mdicon-expand_less:before {
    content: "\e5ce";
  }
  .mdicon-expand_more:before {
    content: "\e5cf";
  }
  .mdicon-extension:before {
    content: "\e87b";
  }
  .mdicon-favorite:before {
    content: "\e87d";
  }
  .mdicon-favorite_border:before {
    content: "\e87e";
  }
  .mdicon-get_app:before {
    content: "\e884";
  }
  .mdicon-filter:before {
    content: "\e3d3";
  }
  .mdicon-flash_on:before {
    content: "\e3e7";
  }
  .mdicon-folder:before {
    content: "\e2c7";
  }
  .mdicon-folder_open:before {
    content: "\e2c8";
  }
  .mdicon-star:before {
    content: "\e838";
  }
  .mdicon-home:before {
    content: "\e88a";
  }
  .mdicon-open_in_new:before {
    content: "\e89e";
  }
  .mdicon-shopping_cart:before {
    content: "\e8cc";
  }
  .mdicon-local_offer:before {
    content: "\e54e";
  }
  .mdicon-mail_outline:before {
    content: "\e0e1";
  }
  .mdicon-menu:before {
    content: "\e5d2";
  }
  .mdicon-more_horiz:before {
    content: "\e5d3";
  }
  .mdicon-more_vert:before {
    content: "\e5d4";
  }
  .mdicon-person:before {
    content: "\e7fd";
  }
  .mdicon-play_arrow:before {
    content: "\e037";
  }
  .mdicon-play_circle_filled:before {
    content: "\e038";
  }
  .mdicon-play_circle_outline:before {
    content: "\e039";
  }
  .mdicon-public:before {
    content: "\e80b";
  }
  .mdicon-visibility:before {
    content: "\e8f4";
  }
  .mdicon-reply:before {
    content: "\e15e";
  }
  .mdicon-rss_feed:before {
    content: "\e0e5";
  }
  .mdicon-search:before {
    content: "\e8b6";
  }
  .mdicon-share:before {
    content: "\e80d";
  }
  .mdicon-shuffle:before {
    content: "\e043";
  }
  .mdicon-star_border:before {
    content: "\e83a";
  }
  .mdicon-star_half:before {
    content: "\e839";
  }
  .mdicon-thumb_up:before {
    content: "\e8dc";
  }
  .mdicon-trending_up:before {
    content: "\e8e5";
  }
  .mdicon-chevron-thin-down:before {
    content: "\e902";
  }
  .mdicon-chevron-thin-left:before {
    content: "\e900";
  }
  .mdicon-chevron-thin-right:before {
    content: "\e901";
  }
  .mdicon-chevron-thin-up:before {
    content: "\e903";
  }
  .mdicon-fire:before {
    content: "\e9a9";
  }
  .mdicon-enter:before {
    content: "\ea13";
  }
  .mdicon-telegram:before {
    content: "\ea95";
  }
  .mdicon-youtube-square:before {
    content: "\f166";
  }
  .mdicon-youtube:before {
    content: "\f167";
  }
  .mdicon-twitter:before {
    content: "\f099";
  }
  .mdicon-facebook:before {
    content: "\f09a";
  }
  .mdicon-facebook-f:before {
    content: "\f09a";
  }
  .mdicon-google-plus:before {
    content: "\f0d5";
  }
  .mdicon-linkedin:before {
    content: "\f0e1";
  }
  .mdicon-xing:before {
    content: "\f168";
  }
  .mdicon-youtube-play:before {
    content: "\f16a";
  }
  .mdicon-instagram:before {
    content: "\f16d";
  }
  .mdicon-tumblr:before {
    content: "\f173";
  }
  .mdicon-dribbble:before {
    content: "\f17d";
  }
  .mdicon-skype:before {
    content: "\f17e";
  }
  .mdicon-foursquare:before {
    content: "\f180";
  }
  .mdicon-vk:before {
    content: "\f189";
  }
  .mdicon-stumbleupon:before {
    content: "\f1a4";
  }
  .mdicon-behance:before {
    content: "\f1b4";
  }
  .mdicon-spotify:before {
    content: "\f1bc";
  }
  .mdicon-deviantart:before {
    content: "\f1bd";
  }
  .mdicon-soundcloud:before {
    content: "\f1be";
  }
  .mdicon-vine:before {
    content: "\f1ca";
  }
  .mdicon-codepen:before {
    content: "\f1cb";
  }
  .mdicon-twitch:before {
    content: "\f1e8";
  }
  .mdicon-yelp:before {
    content: "\f1e9";
  }
  .mdicon-pinterest-p:before {
    content: "\f231";
  }
  .mdicon-medium:before {
    content: "\f23a";
  }
  .mdicon-vimeo:before {
    content: "\f27d";
  }
  .mdicon-product-hunt:before {
    content: "\f288";
  }
  .mdicon-snapchat-ghost:before {
    content: "\f2ac";
  }
  .mdicon-exit2:before {
    content: "\ea15";
  }
  .mdicon-person_pin:before {
    content: "\e55a";
  }
  .mdicon-sign-out:before {
    content: "\f08b";
  }
  .mdicon-sort-asc:before {
    content: "\f0de";
  }
  .mdicon-sort-up:before {
    content: "\f0de";
  }
  .mdicon-envelope:before {
    content: "\f0e0";
  }
  .mdicon-linkedin1:before {
    content: "\f0e2";
  }
  .mdicon-rotate-left:before {
    content: "\f0e3";
  }
  .mdicon-undo:before {
    content: "\f0e3";
  }
  .mdicon-gavel:before {
    content: "\f0e4";
  }
  .mdicon-legal:before {
    content: "\f0e4";
  }
  .mdicon-dashboard:before {
    content: "\f0e5";
  }
  .mdicon-tachometer:before {
    content: "\f0e5";
  }
  .mdicon-comment-o:before {
    content: "\f0e6";
  }
  .mdicon-comments-o:before {
    content: "\f0e7";
  }
  .mdicon-cloud-download:before {
    content: "\f0ed";
  }
  .mdicon-cloud-upload:before {
    content: "\f0ee";
  }
  .mdicon-user-md:before {
    content: "\f0f0";
  }
  .mdicon-stethoscope:before {
    content: "\f0f1";
  }
  .mdicon-suitcase:before {
    content: "\f0f2";
  }
  .mdicon-bell:before {
    content: "\f0f3";
  }
  .mdicon-coffee:before {
    content: "\f0f4";
  }
  .mdicon-cutlery:before {
    content: "\f0f5";
  }
  .mdicon-beer:before {
    content: "\f0fc";
  }
  .mdicon-h-square:before {
    content: "\f0fd";
  }
  .mdicon-plus-square:before {
    content: "\f0fe";
  }
  .mdicon-angle-double-left:before {
    content: "\f100";
  }
  .mdicon-angle-double-right:before {
    content: "\f101";
  }
  .mdicon-angle-double-up:before {
    content: "\f102";
  }
  .mdicon-angle-double-down:before {
    content: "\f103";
  }
  .mdicon-angle-left:before {
    content: "\f104";
  }
  
  
  
  
  
  .mdicon~span {
    vertical-align: middle;
  }
  
  .mdicon--first {
    margin-right: 0.35em;
  }
  
  .mdicon--last {
    margin-left: 0.35em;
  }
  
  .icon-twitter,
  .icon-facebook,
  .icon-google-plus,
  .icon-linkedin,
  .icon-youtube,
  .icon-tumbler,
  .icon-dribbble,
  .icon-vk,
  .icon-stumbleupon,
  .icon-behance,
  .icon-soundcloud,
  .icon-vine,
  .icon-twitch,
  .icon-facebook-official,
  .icon-pinterest_p,
  .icon-vimeo {
    font-size: 1em;
  }
  
  .icon--2x.icon--2x {
    font-size: 200%;
  }
  
  
  /* -----------------------------------------------------------------
  ## Links
  ----------------------------------------------------------------- */
  
  a.link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  
  a.link:active,
  a.link:focus,
  a.link:hover,
  a.link:visited {
    color: inherit;
    text-decoration: none;
  }
  
  a.link--meta {
    color: rgba(0, 0, 0, 0.4);
  }
  
  a.link--meta:active,
  a.link--meta:focus,
  a.link--meta:hover {
    color: rgba(0, 0, 0, 0.6);
  }
  
  a.link--underlined {
    text-decoration: underline;
  }
  
  a.link--underlined:active,
  a.link--underlined:focus,
  a.link--underlined:hover {
    text-decoration: underline;
  }
  
  a.link--underlined-hover:hover {
    text-decoration: underline;
  }
  
  
  /* -----------------------------------------------------------------
  ## Login Form
  ----------------------------------------------------------------- */
  
  .login-lost-password,
  .login-with-social {
    text-align: center;
  }
  
  .login-lost-password a {
    text-decoration: underline;
  }
  
  .login-submit,
  .register-submit {
    margin-top: 20px;
  }
  
  .login-modal .modal-dialog {
    width: 400px;
    max-width: 90vw;
    margin: 10vh auto;
  }
  
  @media (min-width: 768px) {
    .login-modal .modal-dialog {
      margin: 15vh auto;
    }
  }
  
  .login-modal .modal-title .nav-tabs {
    border-bottom: none;
    text-align: center;
  }
  
  .login-modal .modal-title .nav-tabs li {
    margin-bottom: 5px;
  }
  
  .login-modal .modal-title .nav-tabs li:not(:last-child) {
    margin-right: 15px;
  }
  
  .login-modal .modal-title .nav-tabs a {
    padding: 0;
    border: none !important;
    background: transparent !important;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .login-modal .modal-title .nav-tabs li.active a,
  .login-modal .modal-title .nav-tabs a:hover {
    border-bottom: 1px solid currentColor !important;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .login-modal .modal-body {
    padding: 15px;
  }
  
  @media (min-width: 768px) {
    .login-modal .modal-body {
      padding: 30px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Modal
  ----------------------------------------------------------------- */
  
  .modal-dialog {
    margin: 15vh auto;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  @media (min-width: 768px) {
    .modal-header {
      padding: 20px 30px;
    }
  }
  
  .modal-title.modal-title {
    margin: 0;
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.42857143;
    text-transform: uppercase;
  }
  
  
  /* -----------------------------------------------------------------
  ## Navigations
  ----------------------------------------------------------------- */
  
  .navigation,
  .menu,
  .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .navigation,
  .menu {
  }
  
  .navigation .sub-menu li {
    position: relative;
  }
  
  .navigation a {
    display: inline-block;
    text-decoration: none;
  }
  
  .navigation--horizontal::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .navigation--horizontal>li {
    float: left;
  }
  
  .navigation--inline>li {
    display: inline-block;
  }
  
  .navigation--center {
    text-align: center;
  }
  
  .navigation--center>li {
    display: inline-block;
  }
  
  
  /* -----------------------------------------------------------------
  ## Paginations
  ----------------------------------------------------------------- */
  
  .mnmd-pagination {
    margin: 40px 0 20px;
  }
  
  .mnmd-pagination:last-child {
    margin-bottom: 0;
  }
  .mnmd-module-pagination .mnmd-pagination__item-prev {
      display: none;
  }
  .mnmd-pagination__title {
    font-size: 16px;
    font-size: 1.14286rem;
  }
  
  .mnmd-pagination__links {
    margin: -2px;
    font-size: 0;
  }
  
  .mnmd-pagination__item {
    display: inline-block;
    min-width: 34px;
    height: 34px;
    margin: 2px;
    padding: 0 4px;
    border-radius: 3px;
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
  }
  
  .mnmd-pagination__item:hover,
  .mnmd-pagination__item:focus,
  .mnmd-pagination__item:active {
    background: #ddd;
    color: rgba(0, 0, 0, 0.8);
  }
  
  @media (min-width: 768px) {
    .mnmd-pagination__item {
      padding: 0 6px;
      font-size: 14px;
    }
  }
  
  .mnmd-pagination__item-current {
    background: var(--color-primary);
    color: #fff;
  }
  
  .mnmd-pagination__item-current:hover,
  .mnmd-pagination__item-current:focus,
  .mnmd-pagination__item-current:active {
    background: var(--color-primary);
    color: #fff;
  }
  
  .mnmd-pagination__item>i {
    line-height: 34px;
  }
  
  .mnmd-pagination__dots {
    min-width: auto;
    background: transparent !important;
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__label {
    padding-right: 10px;
    font-size: 14px;
    font-size: 1rem;
  }
  
  @media (min-width: 768px) {
    .mnmd-pagination--next-n-prev .mnmd-pagination__label {
      font-size: 16px;
      font-size: 1.14286rem;
    }
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__item {
    position: relative;
    padding: 0 8px;
    background: var(--color-primary);
    color: #fff;
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__links a:first-child .mnmd-pagination__item, .mnmd-pagination--next-n-prev .mnmd-pagination__links.mnmd-pagination-last-page-link a:last-child .mnmd-pagination__item {
    margin-left: 8px;
    background: #f1f1f1;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__links a:first-child .mnmd-pagination__item:after, 
  .mnmd-pagination--next-n-prev .mnmd-pagination__links.mnmd-pagination-last-page-link a:last-child .mnmd-pagination__item:after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    right: 100%;
    left: auto;
    top: 0;
    border-width: 17px 8px;
    margin-left: 0;
    margin-right: -1px;
    border-style: solid;
    border-color: transparent;
    border-right-color: #f1f1f1;
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__links a:last-child .mnmd-pagination__item {
    margin-right: 8px;
    color: #fff;
  }
  
  .mnmd-pagination--next-n-prev .mnmd-pagination__links a:last-child .mnmd-pagination__item:after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    left: 100%;
    right: auto;
    top: 0;
    border-width: 17px 8px;
    margin-left: -1px;
    margin-right: 0;
    border-style: solid;
    border-color: transparent;
    border-left-color: var(--color-primary);
  }
  
  .mnmd-pagination .tnm-no-more-button {
    background: #eee;
    box-shadow: none;
      opacity: 0.6;
    cursor: auto;
  }
  
  /* -----------------------------------------------------------------
  ## Review Score
  ----------------------------------------------------------------- */
  
  
  /*---- Score circle ----*/
  
  .post-score {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }
  
  .post-score__inner {
    position: relative;
    z-index: 10;
  }
  
  .post-score-star {
    font-size: 1.2em;
    line-height: 1;
    color: #F7E74A;
  }
  
  .hexagon-svg {
    width: 100%;
    height: auto;
  }
  .post--overlay.has-score-badge-bottom .post-score-hexagon {
      position: absolute;
      top: auto;
      right: auto;
      bottom: 20px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
  }
  .post-score-hexagon {
    position: relative;
    display: inline-block;
    line-height: 0;
    vertical-align: middle;
  }
  
  .post-score-hexagon .hexagon-svg {
    width: 50px;
    padding: 2px;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
    overflow: visible;
  }
  
  @media (min-width: 768px) {
    .post-score-hexagon .hexagon-svg {
      width: 60px;
    }
  }
  
  @media (min-width: 1200px) {
    .post-score-hexagon .hexagon-svg {
      width: 64px;
    }
  }
  
  .post-score-hexagon .hexagon-svg g path {
    fill: var(--color-primary);
  }
  
  .post-score-hexagon .post-score-value {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  
  @media (min-width: 768px) {
    .post-score-hexagon .post-score-value {
      font-size: 22px;
    }
  }
  
  @media (min-width: 1200px) {
    .post-score-hexagon .post-score-value {
      font-size: 26px;
    }
  }
  
  .post-score-hexagon--s .hexagon-svg {
    width: 50px;
  }
  
  .post-score-hexagon--s .post-score-value {
    font-size: 20px;
  }
  
  .post-score-hexagon--l .hexagon-svg {
    width: 100px;
  }
  
  .post-score-hexagon--l .post-score-value {
    font-size: 42px;
  }
  
  .post-score-hexagon--xl .hexagon-svg {
    width: 100px;
  }
  
  @media (min-width: 1200px) {
    .post-score-hexagon--xl .hexagon-svg {
      width: 120px;
    }
  }
  
  .post-score-hexagon--xl .post-score-value {
    font-size: 42px;
  }
  
  @media (min-width: 1200px) {
    .post-score-hexagon--xl .post-score-value {
      font-size: 50px;
    }
  }
  
  .mnmd-review .post-score-hexagon .hexagon-svg {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  }
  
  
  /* -----------------------------------------------------------------
  ## Search Form
  ----------------------------------------------------------------- */
  
  .search-form {
    position: relative;
  }
  
  .search-form__input {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .search-form--inline {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  
  .search-form--inline .search-form__input {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
    margin-right: 4px;
  }
  
  .search-form--btn-inside .search-form__input {
    padding-right: 40px;
  }
  
  .search-form--btn-inside .search-form__input:focus {
    outline: none;
  }
  
  .search-form--btn-inside .search-form__submit {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 6px 10px;
    background: transparent;
    border: none;
    outline: 0;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .search-form--btn-inside .search-form__submit i {
    font-size: 20px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Search Modal
  ----------------------------------------------------------------- */
  
  .search-modal .modal-dialog {
    margin: 10vh 10px;
  }
  
  @media (min-width: 768px) {
    .search-modal .modal-dialog {
      margin: 15vh auto;
    }
  }
  
  .search-modal__inner {
    max-width: 480px;
    margin: auto;
  }
  
  .search-modal .modal-body {
    padding: 15px;
  }
  
  @media (min-width: 768px) {
    .search-modal .modal-body {
      padding: 30px;
    }
  }
  
  .search-modal .search-form {
    margin-bottom: 15px;
  }
  
  .search-modal .search-form__input {
    padding-right: calc(1em + 40px);
    font-size: 14px;
  }
  
  @media (min-width: 768px) {
    .search-modal .search-form__input {
      padding-right: calc(1em + 40px);
      font-size: 20px;
    }
  }
  
  .search-modal .search-form__submit {
    width: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
  }
  
  @media (min-width: 768px) {
    .search-modal .search-form__submit {
      width: 50px;
      font-size: 20px;
    }
  }
  
  .search-modal .search-form__submit:focus {
    outline: none;
  }
  
  
  /* -----------------------------------------------------------------
  ## Tabs
  ----------------------------------------------------------------- */
  
  ul.nav-tabs {
    padding-left: 0;
  }
  
  .nav-tabs>li>a {
    color: #aaa;
  }
  
  .panel-title.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Social List
  ----------------------------------------------------------------- */
  
  .social-list {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-size: 1rem;
    list-style: none;
  }
  
  @media (min-width: 768px) {
    .social-list {
      font-size: 16px;
      font-size: 1.14286rem;
    }
  }
  
  .social-list>li>a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 0 0.4em;
    color: rgba(0, 0, 0, 0.8);
    line-height: 20px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  .social-list>li>a:hover,
  .social-list>li>a:active,
  .social-list>li>a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .social-list>li>a:hover,
  .social-list>li>a:focus,
  .social-list>li>a:active {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .inverse-text .social-list>li>a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .inverse-text .social-list>li>a:hover,
  .inverse-text .social-list>li>a:focus,
  .inverse-text .social-list>li>a:active,
  .inverse-text .social-list>li>a:visited {
    color: white;
  }
  
  .social-list--inverse>li>a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .social-list--inverse>li>a:hover,
  .social-list--inverse>li>a:focus,
  .social-list--inverse>li>a:active {
    color: white;
  }
  
  .social-list--circle>li {
    margin-bottom: 8px;
  }
  
  .social-list--circle>li:not(:last-child) {
    margin-right: 8px;
  }
  
  .social-list--circle>li>a {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .social-list--circle>li>a i {
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
  }
  
  .inverse-text .social-list--circle>li>a,
  .overlay-content .social-list--circle>li>a {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  @media (min-width: 768px) {
    .social-list--sm {
      font-size: 14px;
      font-size: 1rem;
    }
  }
  
  @media (min-width: 768px) {
    .social-list--lg {
      font-size: 20px;
      font-size: 1.42857rem;
    }
  }
  
  @media (min-width: 768px) {
    .social-list--xl {
      font-size: 26px;
      font-size: 1.85714rem;
    }
  }
  
  @media (min-width: 768px) {
    .social-list--md.social-list--circle>li>a {
      width: 60px;
      height: 60px;
      border-width: 2px;
    }
    .social-list--md.social-list--circle>li>a i {
      font-size: 24px;
      line-height: 60px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Subscribe Form
  ----------------------------------------------------------------- */
  
  .subscribe-form--has-background {
    margin-top: 30px;
    background-color: transparent;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 768px) {
    /*.subscribe-form--has-background {
      padding: 40px;
    }*/
  }
  
  .subscribe-form__inner {
    position: relative;
  }
  
  .subscribe-form__fields {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .subscribe-form__fields input[type="submit"] {
    margin-bottom: 0.5rem;
    background: var(--color-primary);
    color: #fff;
  }
  
  .subscribe-form__fields input[type="submit"]:hover {
    background: #ef392b;
    color: #fff;
  }
  
  .subscribe-form--horizontal input[type="email"],
  .subscribe-form--horizontal input[type="text"],
  .subscribe-form--horizontal input[type="url"] {
    display: inline-block;
    width: auto;
    max-width: 100%;
    min-width: 240px;
    margin-bottom: 0.5rem;
  }
  
  .subscribe-form--center,
  .subscribe-form--center input[type="email"],
  .subscribe-form--center input[type="text"],
  .subscribe-form--center input[type="url"] {
    text-align: center;
  }
  
  
  /* -----------------------------------------------------------------
  ## Post General
  ----------------------------------------------------------------- */
  
  .post {
    position: relative;
  }
  
  
  /*---- Post thumb ----*/
  
  .post__thumb,
  .entry-thumb {
    position: relative;
  }
  
  .post__thumb img,
  .entry-thumb img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .post__thumb a,
  .entry-thumb a {
    display: block;
  }
  
  .post__thumb--circle {
    border-radius: 50%;
  }
  
  .post__thumb--circle img {
    border-radius: 50%;
  }
  
  
  /*---- Post content ----*/
  
  .post__text-inner {
    position: relative;
    padding: 20px;
  }
  
  .post__text-inner--p-sm .post__text-inner {
    padding: 15px;
  }
  
  .post__text-inner--p-lg .post__text-inner {
    padding: 30px;
  }
  
  .has-overlap-bg:before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    bottom: -20px;
    left: 0;
    background: var(--color-primary);
    opacity: 0.6;
    -webkit-transform: scale(0.6, 1);
    -moz-transform: scale(0.6, 1);
    -ms-transform: scale(0.6, 1);
    -o-transform: scale(0.6, 1);
    transform: scale(0.6, 1);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  article:hover .has-overlap-bg:before {
    opacity: 1;
    -webkit-transform: scale(0.9, 1);
    -moz-transform: scale(0.9, 1);
    -ms-transform: scale(0.9, 1);
    -o-transform: scale(0.9, 1);
    transform: scale(0.9, 1);
  }
  
  .has-overlap-frame:before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20%;
    bottom: -20px;
    left: 20%;
    border: 12px solid var(--color-primary);
    opacity: 0.6;
  }
  
  
  /*---- Post category ----*/
  
  .post__cat,
  a.post__cat,
  .entry-cat,
  a.entry-cat {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 1px solid currentColor;
    font-size: 9px;
    font-size: 0.64286rem;
    font-weight: 700;
    line-height: 1.4;
    margin-right: 8px;
    text-decoration: none;
  }
  
  @media (min-width: 768px) {
    .post__cat,
    a.post__cat,
    .entry-cat,
    a.entry-cat {
      font-size: 10px;
      font-size: 0.71429rem;
    }
  }
  
  .post__cat--bg,
  a.post__cat--bg,
  .entry-cat--bg,
  a.entry-cat--bg {
    display: inline-block;
    padding: 4px 6px;
    color: #fff !important;
    line-height: 1;
    background: var(--color-primary);
    margin-right: 8px;
    border: none;
  }
  
  @media (min-width: 768px) {
    .post__cat--bg,
    a.post__cat--bg,
    .entry-cat--bg,
    a.entry-cat--bg {
      padding: 5px 8px;
    }
  }
  
  .post__cat--bg-inverse,
  a.post__cat--bg-inverse,
  .entry-cat--bg-inverse,
  a.entry-cat--bg-inverse {
    display: inline-block;
    padding: 2px 6px;
    color: #333;
    background: #fff !important;
    margin-right: 8px;
    border: none;
  }
  
  .post__cat--ghost,
  a.post__cat--ghost,
  .entry-cat--ghost,
  a.entry-cat--ghost {
    display: inline-block;
    padding: 2px 6px;
    color: #fff !important;
    background: transparent;
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .post__cat--overlap,
  a.post__cat--overlap,
  .entry-cat--overlap,
  a.entry-cat--overlap {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-right: 8px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .post__thumb .post__cat--overlap,
  .post__thumb a.post__cat--overlap,
  .post__thumb .entry-cat--overlap,
  .post__thumb a.entry-cat--overlap {
    top: 100%;
  }
  
  .text-left .post__cat--overlap,
  .text-left a.post__cat--overlap,
  .text-left .entry-cat--overlap,
  .text-left a.entry-cat--overlap {
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  
  /*---- Read more ----*/
  
  .btn.read-more {
    text-transform: uppercase;
  }
  
  .read-more-link {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }
  
  .read-more-link:hover,
  .read-more-link:focus,
  .read-more-link:active,
  .read-more-link:visited {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }
  
  .read-more-link i {
    color: rgba(0, 0, 0, 0.25);
    -webkit-transition: "all", 0.3s, 0, "bounce";
    -moz-transition: "all", 0.3s, 0, "bounce";
    transition: "all", 0.3s, 0, "bounce";
  }
  
  .read-more-link:hover i {
    -webkit-transform: translate(40%, 0);
    -moz-transform: translate(40%, 0);
    -ms-transform: translate(40%, 0);
    -o-transform: translate(40%, 0);
    transform: translate(40%, 0);
  }
  
  
  /*---- Post title ----*/
  
  .post__title,
  .entry-title {
    margin: 0.25em 0 0.4em;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .post__title:first-child,
  .entry-title:first-child {
    margin-top: 0;
  }
  
  .post__title:last-child,
  .entry-title:last-child {
    margin-bottom: 0;
  }
  
  .text-center .post__title,
  .post--vertical-overlap .post__title,
  .text-center .entry-title,
  .post--vertical-overlap .entry-title {
    margin-left: auto;
    margin-right: auto;
  }
  
  .post__title.typescale--1,
  .entry-title.typescale--1 {
    font-weight: 400;
  }
  
  .post__title.typescale-0,
  .entry-title.typescale-0 {
    font-weight: 400;
  }
  
  .post__title.typescale-1,
  .entry-title.typescale-1 {
    font-weight: 400;
  }
  
  .post__title.typescale-2,
  .entry-title.typescale-2 {
    font-weight: 700;
  }
  
  .post__title.typescale-3,
  .entry-title.typescale-3 {
    font-weight: 700;
  }
  
  .post__title.typescale-4,
  .entry-title.typescale-4 {
    font-weight: 700;
  }
  
  .post__title.typescale-5,
  .entry-title.typescale-5 {
    font-weight: 700;
  }
  
  .post__title.typescale-6,
  .entry-title.typescale-6 {
    font-weight: 700;
  }
  
  .post__title.typescale-7,
  .entry-title.typescale-7 {
    font-weight: 700;
  }
  
  .post__title.typescale-8,
  .entry-title.typescale-8 {
    font-weight: 700;
  }
  
  .post__title a,
  .post__title a:hover,
  .post__title a:focus,
  .post__title a:active,
  .entry-title a,
  .entry-title a:hover,
  .entry-title a:focus,
  .entry-title a:active {
    display: inline-block;
    color: inherit;
    text-decoration: none;
  }
  
  .post__cat--overlap+.post__title,
  a.post__cat--overlap+.post__title,
  .entry-cat--overlap+.post__title,
  a.entry-cat--overlap+.post__title {
    margin-top: 0;
  }
  
  
  /*---- Post excerpt ----*/
  
  .post__excerpt,
  .entry-excerpt {
    max-width: 36em;
    margin-top: 0.6em;
    margin-bottom: 0.6em;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .text-center .post__excerpt,
  .post--vertical-overlap .post__excerpt,
  .text-center .entry-excerpt,
  .post--vertical-overlap .entry-excerpt {
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 768px) {
    .post__excerpt--lg,
    .entry-excerpt--lg {
      font-size: 16px;
      font-size: 1.142857142857143rem;
    }
  }
  
  
  /*---- Post meta ----*/
  
  .post__meta,
  .entry-meta {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.5;
  }
  
  .post__meta:first-child,
  .entry-meta:first-child {
    margin-top: 0;
  }
  
  .post__meta:last-child,
  .entry-meta:last-child {
    margin-bottom: 0;
  }
  
  .post__meta:not(.post__meta--box)>*:not(:last-child),
  .post__meta-left:not(.entry-meta--box)>*:not(:last-child),
  .post__meta-right:not(.entry-meta--box)>*:not(:last-child),
  .entry-meta:not(.entry-meta--box)>*:not(:last-child) {
    margin-right: 0.6em;
  }
  
  .post__meta a,
  .entry-meta a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .post__meta a:active,
  .post__meta a:focus,
  .post__meta a:hover,
  .entry-meta a:active,
  .entry-meta a:focus,
  .entry-meta a:hover {
    text-decoration: none;
  }
  
  .post__meta i,
  .post__meta .mdicon,
  .entry-meta i,
  .entry-meta .mdicon {
    margin-right: 0.3em;
  }
  
  .post__meta .meta-seperator.meta-seperator,
  .entry-meta .meta-seperator.meta-seperator {
    margin-left: -0.4em;
    margin-right: 0.2em;
  }
  
  .post__meta--box,
  .entry-meta--box {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    background: #fafafa;
  }
  
  .post__meta--flex,
  .entry-meta--flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .post__meta--flex>.post__meta-left,
  .entry-meta--flex>.post__meta-left {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 5px;
    text-align: left;
  }
  
  .post__meta--flex>.post__meta-right,
  .entry-meta--flex>.post__meta-right {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 5px;
    text-align: right;
  }
  
  .post__meta .updated,
  .entry-meta .updated {
    display: none;
  }
  
  .post__meta--border-top,
  .entry-meta--border-top {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .post--overlay .post__meta--border-top,
  .post--overlay .entry-meta--border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  
  /*---- Post author ----*/
  
  .entry-author {
    text-transform: none;
  }
  
  .entry-author__name,
  a.entry-author__name,
  .single-header .entry-author a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .entry-author__name:hover,
  .entry-author__name:active,
  .entry-author__name:focus,
  a.entry-author__name:hover,
  a.entry-author__name:active,
  a.entry-author__name:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .post__meta .entry-author__name,
  .post__meta a.entry-author__name {
    color: rgba(0, 0, 0, 0.6);
  }
  
  .overlay-content .entry-author__name,
  .overlay-content a.entry-author__name {
    color: rgba(255, 255, 255, 0.8);
  }
  
  
  /*---- Post author with date ----*/
  
  .post__meta--author-w-date {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .post__meta--author-w-date>* {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  
  .post__meta--author-w-date .author-avatar img {
    height: 34px;
    width: 34px;
    margin-right: 10px;
    border-radius: 100%;
  }
  
  .post__meta--author-w-date .author-name a {
    color: rgba(0, 0, 0, 0.8);
    font-size: 110%;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .entry-author__avatar {
    height: 34px;
    width: 34px;
    border-radius: 100%;
    margin-right: 10px;
  }
  
  
  /*---- Post comments count ----*/
  
  .comments-count-box {
    display: inline-block;
    position: relative;
    padding: 6px 10px;
    background: var(--color-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    text-decoration: none !important;
    border-radius: 2px;
  }
  
  .comments-count-box:hover,
  .comments-count-box:active,
  .comments-count-box:focus {
    color: #fff;
  }
  
  .comments-count-box:before {
    content: '';
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -5px;
    border: 0 solid transparent;
    border-width: 4px 5px;
    border-bottom-width: 0;
    border-top-color: var(--color-primary);
  }
  
  
  /*-- Overlay item --*/
  
  .overlay-item {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
  }
  
  .overlay-item.overlay-item--sm-p {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
  }
  
  .overlay-item--top-left {
    position: absolute;
    top: 20px;
    right: auto;
    bottom: auto;
    left: 20px;
  }
  
  .overlay-item--top-left.overlay-item--sm-p {
    position: absolute;
    top: 10px;
    right: auto;
    bottom: auto;
    left: 10px;
  }
  
  .overlay-item--left-bottom {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
  }
  
  .overlay-item--left-bottom.overlay-item--sm-p {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 10px;
    left: 10px;
  }
  
  .overlay-item--right-bottom {
    position: absolute;
    bottom: 20px;
    left: auto;
    top: auto;
    right: 20px;
  }
  
  .overlay-item--right-bottom.overlay-item--sm-p {
    position: absolute;
    bottom: 10px;
    left: auto;
    top: auto;
    right: 10px;
  }
  
  .media-right .overlay-item--right-bottom {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  
  .overlay-item--center-xy {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .post-type-icon i {
    font-size: 46px;
    line-height: 1.1;
  }
  
  @media (min-width: 768px) {
    .post-type-icon i {
      font-size: 60px;
    }
  }
  @media (min-width: 1200px) {
    .post-type-icon i {
      font-size: 68px;
    }
  }
  .post-type-icon.gallery-icon i {
    font-size: inherit !important;
  }
  
  .overlay-content .post-type-icon,
  .post__thumb .post-type-icon,
  .post--overlay .post-type-icon,
  .post-type-icon--inverse {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .post-color-icon--grey i {
    color: rgba(0, 0, 0, 0.2);
  }
  
  .post-type-icon--sm i {
    font-size: 56px;
  }
  
  .post-type-icon--sm .hexagon-svg {
    width: 50px;
  }
  
  .post-type-icon--sm .post-score-value {
    font-size: 20px;
  }
  
  @media (min-width: 768px) {
    .post-type-icon--md i {
      font-size: 80px;
    }
    .post-type-icon--md .hexagon-svg {
      width: 78px;
    }
    .post-type-icon--md .post-score-value {
      font-size: 32px;
    }
  }
  
  @media (min-width: 768px) {
    .post-type-icon--lg i {
      font-size: 120px;
    }
    .post-type-icon--lg .post-score-hexagon .hexagon-svg {
      width: 90px;
    }
    .post-type-icon--lg .post-score-hexagon .post-score-value {
      font-size: 36px;
    }
  
    .post-type-icon--lg .hexagon-svg {
      width: 100px;
    }
    .post-type-icon--lg .post-score-value {
      font-size: 42px;
    }
  }
  
  .media-left.post-type-icon>i:only-child,
  .media-right.post-type-icon>i:only-child {
    display: block;
  }
  
  .post--overlay .gallery-icon,
  .post__thumb .gallery-icon,
  .overlay-item.gallery-icon {
    padding: 0.4em 0.8em;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
  }
  
  .post--overlay .gallery-icon .mdicon:not(:last-child),
  .post__thumb .gallery-icon .mdicon:not(:last-child),
  .overlay-item.gallery-icon .mdicon:not(:last-child) {
    margin-right: 0.4em;
  }
  
  .overlay-content .post__title,
  .overlay-content .post__title a,
  .inverse-text .post__title,
  .inverse-text .post__title a,
  .inverse-text .entry-title,
  .inverse-text .entry-title a {
    color: #fff;
  }
  
  .overlay-content .post__excerpt,
  .inverse-text .post__excerpt,
  .overlay-content .entry-excerpt,
  .inverse-text .entry-excerpt {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .overlay-content .post__meta,
  .overlay-content .post__meta a,
  .overlay-content .entry-meta,
  .overlay-content .entry-meta a,
  .overlay-content .meta-text,
  .overlay-content a.meta-text,
  .inverse-text .post__meta,
  .inverse-text .post__meta a,
  .inverse-text .entry-meta,
  .inverse-text .entry-meta a,
  .inverse-text .meta-text,
  .inverse-text a.meta-text {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .overlay-content .entry-author__name.entry-author__name,
  .inverse-text .entry-author__name.entry-author__name {
    color: rgba(255, 255, 255, 0.9);
  }
  
  
  /* -----------------------------------------------------------------
  ## Post Card
  ----------------------------------------------------------------- */
  
  .post--card {
    height: auto;
    position: relative;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    background-clip: padding-box;
    overflow: hidden;
  }
  
  .post--card .post__text {
    min-height: 2.85714rem;
  }
  
  @media (min-width: 768px) {
    .post--card-xs {
      height: 17.85714rem;
    }
  }
  
  @media (min-width: 768px) {
    .post--card-sm {
      height: 25rem;
    }
  }
  
  @media (min-width: 768px) {
    .post--card-md {
      height: 25rem;
    }
  }
  
  @media (min-width: 992px) {
    .post--card-md {
      height: 32.14286rem;
    }
  }
  
  @media (min-width: 768px) {
    .post--card-lg {
      height: 32.14286rem;
    }
  }
  
  @media (min-width: 992px) {
    .post--card-lg {
      height: 39.28571rem;
    }
  }
  
  .post--card .post__thumb {
    height: 40%;
    min-height: 120px;
    position: relative;
    margin: -21px -21px 20px;
  }
  
  .post--card.cat--not-overlap .post__thumb {
    margin: -21px -21px 10px;
  }
  
  .post--card-sm .post__thumb {
    height: 140px;
  }
  
  .post--card-md .post__thumb {
    height: 180px;
  }
  
  .post--card .post__thumb .post__cat--overlap {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  
  .post--card .post__footer {
    margin: 20px -20px -20px;
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
  }
  
  .post--card .post__footer::after {
    clear: both;
    content: "";
    display: table;
  }
  
  @media (min-width: 768px) {
    .post--card .post__footer {
      position: absolute;
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      margin: 0;
    }
    .post--card .post__footer:before {
      content: '';
      display: block;
      position: absolute;
      top: auto;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 20px;
      width: 100%;
      margin-bottom: 1px;
      background: -webkit-linear-gradient(bottom, black 0, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(0deg, white 0, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
    }
  }
  
  .post--card .post__footer-left {
    width: 50%;
    float: left;
    padding-right: 5px;
    text-align: left;
  }
  
  .post--card .post__footer-right {
    width: 50%;
    float: left;
    padding-left: 5px;
    text-align: right;
  }
  
  .post--card .post__footer .post__meta {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  
  /* -----------------------------------------------------------------
  ## Post Horizontal
  ----------------------------------------------------------------- */
  
  .post--horizontal::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .post--horizontal .post__thumb {
    width: 100%;
    margin: 0 15px 5px 0;
  }
  
  .post--horizontal .post__excerpt {
    max-width: initial;
  }
  
  @media (min-width: 768px) {
    .post--horizontal .post__thumb {
      width: calc(50% - 15px);
      float: left;
      margin: 0 20px 0 0;
    }
  }
  
  @media (min-width: 992px) {
    .post--horizontal .post__thumb {
      margin: 0 30px 0 0;
    }
  }
  
  .post--horizontal-xxs .post__thumb,
  .post--horizontal-xs .post__thumb {
    width: 70px;
    float: left;
    margin: 0 15px 0 0;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-xs .post__thumb {
      width: 100px;
      float: left;
      margin: 0 15px 0 0;
    }
  }
  
  .post--horizontal-sm .post__thumb {
    width: 33%;
    float: left;
    margin: 0 15px 0 0;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-sm .post__thumb {
      margin-right: 30px;
    }
  }
  
  @media (min-width: 768px) {
    .post--horizontal-md .post__thumb {
      width: 40%;
    }
  }
  
  @media (min-width: 768px) {
    .post--horizontal-lg .post__thumb {
      width: 55%;
    }
  }
  
  .post--horizontal .post__text {
    overflow: hidden;
  }
  
  @media (max-width: 767px) {
    .post--horizontal-xxs .post__excerpt,
    .post--horizontal-xs .post__excerpt,
    .post--horizontal-sm .post__excerpt,
    .post--horizontal-xxs .post__cat,
    .post--horizontal-xs .post__cat,
    .post--horizontal-sm .post__cat {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .post--horizontal-xxs .post__cat+.post__title,
    .post--horizontal-xs .post__cat+.post__title,
    .post--horizontal-sm .post__cat+.post__title {
      margin-top: 0;
    }
  }
  
  @media (max-width: 767px) {
    .post--horizontal-sm .post__title {
      font-size: 1.125rem;
      font-weight: 400;
    }
  }
  
  
  /*---- Post horizontal reverse ----*/
  
  @media (min-width: 768px) {
    .post--horizontal-reverse .post__thumb {
      float: right;
      margin: 0 0 0 20px;
    }
  }
  
  @media (min-width: 992px) {
    .post--horizontal-reverse .post__thumb {
      margin: 0 0 0 30px;
    }
  }
  
  .post--horizontal-xxs.post--horizontal-reverse .post__thumb,
  .post--horizontal-xs.post--horizontal-reverse .post__thumb,
  .post--horizontal-sm.post--horizontal-reverse .post__thumb {
    float: right;
    margin: 0 0 0 10px;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-xs.post--horizontal-reverse .post__thumb {
      margin: 0 0 0 20px;
    }
  }
  
  @media (min-width: 768px) {
    .post--horizontal-sm.post--horizontal-reverse .post__thumb {
      margin-left: 20px;
    }
  }
  
  @media (min-width: 768px) {
    .post--horizontal-sm.post--horizontal-reverse .post__thumb {
      margin-left: 30px;
    }
  }
  
  
  /*---- Post horizontal middle ----*/
  
  @media (min-width: 768px) {
    .post--horizontal-middle {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -moz-box-align: center;
      box-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -ms-flex-align: center;
      -webkit-box-pack: justify;
      -moz-box-pack: justify;
      box-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: justify;
    }
  }
  
  .post--horizontal-middle:after {
    content: none;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-middle .post__thumb {
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      box-flex: 0;
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
    }
  }
  
  @media (min-width: 768px) {
    .post--horizontal-middle .post__text {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }
  }
  
  .post--horizontal-middle.post--horizontal-xxs,
  .post--horizontal-middle.post--horizontal-xs {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
  }
  
  .post--horizontal-middle.post--horizontal-xxs .post__thumb,
  .post--horizontal-middle.post--horizontal-xs .post__thumb {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  
  .post--horizontal-middle.post--horizontal-reverse {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .post--horizontal-middle.post--horizontal-reverse .post__text {
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    box-ordinal-group: -1;
    -webkit-order: -1;
    -moz-order: -1;
    order: -1;
    -ms-flex-order: -1;
  }
  
  
  /*---- Post horizontal equal height ----*/
  
  .post--horizontal-equal-height .post__thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-equal-height .post__thumb {
      height: auto;
      position: absolute;
      top: 0;
      right: auto;
      bottom: 0;
      left: 0;
      margin: 0;
      padding-bottom: 0;
    }
  }
  
  .post--horizontal-equal-height .post__text {
    margin: 0;
  }
  
  @media (min-width: 768px) {
    .post--horizontal-equal-height .post__text {
      width: 100%;
      padding: 30px;
      padding-left: calc(50% + 15px);
    }
  }
  
  .post--horizontal-equal-height.post--horizontal-xxs .post__text {
    padding-left: 85px;
  }
  
  .post--horizontal-equal-height.post--horizontal-xs .post__text {
    padding-left: 115px;
  }
  
  .post--horizontal-equal-height.post--horizontal-sm .post__text {
    padding-left: calc(33% + 30px);
  }
  
  .post--horizontal-equal-height.post--horizontal-md .post__text {
    padding-left: calc(40% + 30px);
  }
  
  .post--horizontal-equal-height.post--horizontal-lg .post__text {
    padding-left: calc(55% + 30px);
  }
  
  @media (min-width: 768px) {
    .post--horizontal-equal-height.post--horizontal-reverse .post__text {
      -webkit-box-ordinal-group: -1;
      -moz-box-ordinal-group: -1;
      box-ordinal-group: -1;
      -webkit-order: -1;
      -moz-order: -1;
      order: -1;
      -ms-flex-order: -1;
    }
  }
  
  .post--horizontal-equal-height.post--horizontal-xxs,
  .post--horizontal-equal-height.post--horizontal-xs {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .post--horizontal-equal-height.post--horizontal-xxs .post__thumb,
  .post--horizontal-equal-height.post--horizontal-xs .post__thumb {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  
  .post--horizontal-equal-height.post--horizontal-reverse.post--horizontal-xxs .post__text,
  .post--horizontal-equal-height.post--horizontal-reverse.post--horizontal-xs .post__text {
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    box-ordinal-group: -1;
    -webkit-order: -1;
    -moz-order: -1;
    order: -1;
    -ms-flex-order: -1;
  }
  
  
  /*
   * Post list
   *--------------------*/
  
  .post--list::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .post--list .post__thumb {
    max-width: 100%;
    position: relative;
    margin: 0 0 10px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  @media (min-width: 768px) {
    .post--list .post__thumb {
      max-width: 200px;
      float: left;
      margin: 0 30px 0 0;
    }
  }
  
  @media (min-width: 768px) {
    .post--list .post__thumb {
      max-width: 300px;
      margin: 0 30px 0 0;
    }
  }
  
  .post--list .post__thumb img {
    width: 100%;
  }
  
  .post--list .post__text {
    overflow: hidden;
  }
  
  
  
  /*---- Post list reverse ----*/
  
  .post--list--reverse .post__thumb {
    float: right;
    margin: 0 0 0 10px;
  }
  
  @media (min-width: 768px) {
    .post--list--reverse .post__thumb {
      margin: 0 0 0 15px;
    }
  }
  
  @media (min-width: 768px) {
    .post--list--reverse.post--list--size-md .post__thumb,
    .post--list--reverse.post--list--size-lg .post__thumb {
      margin: 0 0 0 30px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Post Overlay
  ----------------------------------------------------------------- */
  
  .post--overlay {
    position: relative;
    overflow: hidden;
    background-color: #333;
  }
  
  .post--overlay .post__text {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 14.28571rem;
  }
  
  .post--overlay-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  
  .post--overlay-bottom .post__text {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: end;
    padding-top: 40px;
  }
  
  .post--overlay-bottom.has-score-badge .post__text {
    padding-top: 80px;
  }
  
  .post--overlay.has-badge-bottom .post__text {
    padding-bottom: 80px;
  }
  
  .post--overlay.has-badge-bottom .badge-bottom {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  
  .post--overlay-middle .post__text {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .post--overlay-xs .post__text {
      min-height: 17.85714rem;
    }
  }
  
  .post--overlay-sm .post__text,
  .mnmd-block--fullwidth.carousel_overlay_post_1i .js-mnmd-carousel-1i .post--overlay-sm .post__text {
    min-height: 17.85714rem;
  }
  
  @media (min-width: 768px) {
    .post--overlay-sm .post__text {
      min-height: 25rem;
    }
    .mnmd-block--fullwidth.carousel_overlay_post_1i .js-mnmd-carousel-1i .post--overlay-sm .post__text {
      min-height: 35rem;
    }
  }
  
  .post--overlay-md .post__text {
    min-height: 17.85714rem;
  }
  
  @media (min-width: 768px) {
    .post--overlay-md .post__text {
      min-height: 25rem;
    }
  }
  
  @media (min-width: 992px) {
    .post--overlay-md .post__text {
      min-height: 32.14286rem;
    }
  }
  
  .post--overlay-lg .post__text {
    min-height: 25rem;
  }
  
  @media (min-width: 768px) {
    .post--overlay-lg .post__text {
      min-height: 32.14286rem;
    }
  }
  
  @media (min-width: 992px) {
    .post--overlay-lg .post__text {
      min-height: 39.28571rem;
    }
  }
  
  @media (max-width: 767px) {
    .post--overlay-primary-xs .post__text {
      min-height: 17.85714rem;
    }
  }
  
  .post--overlay .background-img {
    overflow: hidden;
  }
  
  .post--overlay-floorfade .post__text-wrap {
    position: relative;
    width: 100%;
  }
  
  .post--overlay-floorfade .post__text-wrap:before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
  }
  
  @media (min-width: 768px) {
    .post--overlay-padding-lg .post__text-inner {
      padding: 30px;
    }
  }
  
  @media (min-width: 768px) {
    .post--overlay-padding-lg .overlay-item {
      top: 30px;
      right: 30px;
    }
  }
  
  @media (min-width: 768px) {
    .post--overlay-padding-lg .overlay-item--top-left {
      top: 30px;
      left: 30px;
    }
  }
  
  .post--overlay-padding-lg.has-score-bottom .post-score-hexagon {
    bottom: 30px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Post Thumb Overlap
  ----------------------------------------------------------------- */
  
  .post--thumb-overlap::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .post--thumb-overlap .post__wrap {
    position: relative;
    margin-top: 20px;
    background: #f5f5f5;
  }
  
  @media (min-width: 768px) {
    .post--thumb-overlap .post__wrap {
      margin: 0 0 60px 0;
      padding: 40px 40px;
    }
  }
  
  .post--thumb-overlap .post__thumb {
    position: relative;
    top: -20px;
    margin: 0 20px -20px;
    border: 5px solid #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
  
  @media (min-width: 768px) {
    .post--thumb-overlap .post__thumb {
      width: 50%;
      position: absolute;
      top: 40px;
      right: auto;
      bottom: -40px;
      left: auto;
      margin: 0;
      border: 8px solid #fff;
    }
  }
  
  .post--thumb-overlap .post__text {
    position: relative;
    padding: 20px;
  }
  
  @media (min-width: 768px) {
    .post--thumb-overlap .post__text {
      width: 50%;
      padding: 0 0 0 80px;
      margin-left: 50%;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Post Vertical
  ----------------------------------------------------------------- */
  
  .post--vertical .post__thumb {
    display: block;
    margin-bottom: 12px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  
  /*---- Post vertical reverse ----*/
  
  .post--vertical-reverse .post__thumb {
    margin-top: 10px;
    margin-bottom: 0;
  }
  
  
  /*---- Post vertical center ----*/
  
  .post--vertical-center .post__thumb {
    margin-bottom: 20px;
  }
  
  .post--vertical-center .post__thumb .post__cat {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  
  .post--vertical-center .post__text,
  .post--vertical-center .post__meta {
    text-align: center;
  }
  
  .post--vertical-center .post__excerpt {
    margin-left: auto;
    margin-right: auto;
  }
  
  
  /*---- Post Vertical Cat Overlap ---*/
  
  .post--vertical-cat-overlap .post__thumb {
    margin-bottom: 20px;
  }
  
  
  /*---- Post vertical fixed height ----*/
  
  .post--vertical--fixed-height .post__text-wrapper {
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .post--vertical--fixed-height .post__text {
      height: 180px;
      position: relative;
      overflow: hidden;
    }
    .post--vertical--fixed-height .post__text:after {
      content: '';
      display: block;
      height: 40px;
      width: 100%;
      position: absolute;
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      background: linear-gradient(0deg, white 0, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
    }
  }
  
  .post--vertical--fixed-height .post__meta--box {
    margin-top: 10px;
  }
  
  
  /*---- Post vertical overlap ----*/
  
  .post--vertical-overlap .post__text {
    position: relative;
    margin: -40px 20px 0;
    text-align: center;
  }
  
  .post--vertical-overlap .post__text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: #fff;
    background: -webkit-linear-gradient(-450deg, white 0, white 40px, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(180deg, white 0, white 40px, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 6px -10px 27px -8px rgba(0, 0, 0, 0.2), -6px -10px 27px -8px rgba(0, 0, 0, 0.2);
  }
  
  .post--vertical-overlap .post__text-inner {
    padding: 15px 15px 0;
  }
  
  .post--vertical-overlap .post__text-inner .post__meta--box {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  @media (min-width: 768px) {
    .post--vertical-overlap-l .post__text {
      margin-left: 30px;
      margin-right: 30px;
      margin-top: -60px;
    }
    .post--vertical-overlap-l .post__text:before {
      height: 110px;
      background: -webkit-linear-gradient(-450deg, white 0, white 60px, rgba(255, 255, 255, 0.2) 100%);
      background: linear-gradient(180deg, white 0, white 60px, rgba(255, 255, 255, 0.2) 100%);
    }
  }
  
  @media (min-width: 768px) {
    .post--vertical-overlap-l .post__text-inner {
      padding: 30px 30px 0 30px;
    }
  }
  
  @media (min-width: 768px) {
    .post--vertical-overlap-l .post__text-inner .post__meta--box {
      margin-left: -30px;
      margin-right: -30px;
    }
  }
  
  
  /* =============================================================================
  ## PARTIALS
  ============================================================================= */
  
  
  /* -----------------------------------------------------------------
  ## Advertisement area
  ----------------------------------------------------------------- */
  
  .advertisement-area--before-content {
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .advertisement-inner {
    margin: 0 auto;
    text-align: center;
  }
  
  
  /* -----------------------------------------------------------------
  ## Carousels
  ----------------------------------------------------------------- */
  
  
  /*
  ## Owl carousel
  ----------------------------------------------------------------- */
  
  .owl-carousel {
    display: block;
  }
  
  .owl-carousel .owl-item {
    -webkit-backface-visibility: visible;
  }
  
  .owl-carousel .owl-item:not(:first-child),
  .owl-carousel .slide-content:not(:first-child) {
    display: none;
  }
  
  .owl-carousel .owl-item:first-child,
  .owl-carousel .slide-content:first-child {
    visibility: hidden;
  }
  
  .owl-carousel.owl-loaded .owl-item:not(:first-child),
  .owl-carousel.owl-loaded .slide-content:not(:first-child) {
    display: block;
  }
  
  .owl-carousel.owl-loaded .owl-item:first-child,
  .owl-carousel.owl-loaded .slide-content:first-child {
    visibility: visible;
  }
  
  .owl-prev,
  .owl-next {
    cursor: pointer;
  }
  
  .carousel-stage-visible .owl-stage-outer {
    overflow: visible;
  }
  
  .dots-visible-xs .owl-dots {
    display: none;
  }
  
  @media (max-width: 767px) {
    .dots-visible-xs .owl-dots {
      display: block;
    }
  }
  
  .dots-visible-sm .owl-dots {
    display: none;
  }
  
  @media (max-width: 991px) {
    .dots-visible-sm .owl-dots {
      display: block;
    }
  }
  
  @media (max-width: 767px) {
    .nav-hidden-xs .owl-nav {
      display: none;
    }
  }
  
  .mnmd-carousel {
    position: relative;
  }
  
  
  /*
  ## Default Dots Pagination
  ----------------------------------------------------------------- */
  
  .mnmd-carousel .owl-dots {
    padding: 15px 0;
    text-align: center;
    line-height: 1;
  }
  
  .mnmd-carousel .owl-dot {
    display: inline-block;
    padding: 7px;
  }
  
  .mnmd-carousel .owl-dot span {
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.2);
    vertical-align: middle;
  }
  
  .mnmd-carousel .owl-dot.active span {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-carousel .flickity-page-dots {
    position: relative;
    bottom: 0;
    padding: 15px 0;
    text-align: center;
    line-height: 1;
  }
  
  .mnmd-carousel .flickity-page-dots .dot {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 7px;
    background: transparent;
    opacity: 1;
    vertical-align: middle;
  }
  
  .mnmd-carousel .flickity-page-dots .dot:after {
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-carousel .flickity-page-dots .dot.is-selected:after {
    background: rgba(0, 0, 0, 0.4);
  }
  
  
  /*---- Inverse dots pagination ----*/
  
  .mnmd-carousel-dots-inverse .owl-dot span {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .mnmd-carousel-dots-inverse .owl-dot.active span {
    background: rgba(255, 255, 255, 0.8);
  }
  
  .mnmd-carousel-dots-inverse .flickity-page-dots .dot:after {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .mnmd-carousel-dots-inverse .flickity-page-dots .dot.is-selected:after {
    background: rgba(255, 255, 255, 0.8);
  }
  
  
  /*---- Inside inverse dots pagination ----*/
  
  .mnmd-carousel-dots-inside .slide-content .post__text-wrap {
    padding-bottom: 20px;
  }
  
  .mnmd-carousel-dots-inside .owl-dots {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  
  .mnmd-carousel-dots-inside .owl-dot span {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .mnmd-carousel-dots-inside .owl-dot.active span {
    background: rgba(255, 255, 255, 0.8);
  }
  
  .mnmd-carousel-dots-inside .flickity-page-dots {
    position: absolute;
    bottom: 0;
  }
  
  .mnmd-carousel-dots-inside .flickity-page-dots .dot:after {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .mnmd-carousel-dots-inside .flickity-page-dots .dot.is-selected:after {
    background: rgba(255, 255, 255, 0.8);
  }
  
  
  /*
  ## Default Navigation
  ----------------------------------------------------------------- */
  
  .mnmd-carousel .owl-prev,
  .mnmd-carousel .owl-next {
    width: 36px;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transform: translate(0, -50%) scale(1, 1);
    -moz-transform: translate(0, -50%) scale(1, 1);
    -ms-transform: translate(0, -50%) scale(1, 1);
    -o-transform: translate(0, -50%) scale(1, 1);
    transform: translate(0, -50%) scale(1, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  
  .mnmd-carousel .owl-prev:hover,
  .mnmd-carousel .owl-next:hover {
    width: 51px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .mnmd-carousel .owl-prev.disabled,
  .mnmd-carousel .owl-next.disabled {
    -webkit-transform: translate(0, -50%) scale(0, 1);
    -moz-transform: translate(0, -50%) scale(0, 1);
    -ms-transform: translate(0, -50%) scale(0, 1);
    -o-transform: translate(0, -50%) scale(0, 1);
    transform: translate(0, -50%) scale(0, 1);
  }
  
  .mnmd-carousel .owl-prev i,
  .mnmd-carousel .owl-next i {
    margin: 0;
    font-size: 30px;
    line-height: 1;
  }
  
  .mnmd-carousel .owl-prev {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  
  .mnmd-carousel .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  
  .mnmd-carousel .slick-arrow {
    width: 36px;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  
  .mnmd-carousel .slick-arrow:hover {
    width: 51px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .mnmd-carousel .slick-arrow:before {
    margin: 0;
    font-size: 30px;
    line-height: 1;
  }
  
  .mnmd-carousel .slick-prev {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
  }
  
  .mnmd-carousel .slick-prev.disabled {
    -webkit-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }
  
  .mnmd-carousel .slick-next {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
  }
  
  .mnmd-carousel .slick-next.disabled {
    -webkit-transform: translate(100%, -50%);
    -moz-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    -o-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
  }
  
  .mnmd-carousel .flickity-prev-next-button {
    width: 36px;
    height: auto;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transform: translate(0, -50%) scale(1, 1);
    -moz-transform: translate(0, -50%) scale(1, 1);
    -ms-transform: translate(0, -50%) scale(1, 1);
    -o-transform: translate(0, -50%) scale(1, 1);
    transform: translate(0, -50%) scale(1, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  
  .mnmd-carousel .flickity-prev-next-button:hover {
    width: 51px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .mnmd-carousel .flickity-prev-next-button.disabled {
    -webkit-transform: translate(0, -50%) scale(0, 1);
    -moz-transform: translate(0, -50%) scale(0, 1);
    -ms-transform: translate(0, -50%) scale(0, 1);
    -o-transform: translate(0, -50%) scale(0, 1);
    transform: translate(0, -50%) scale(0, 1);
  }
  
  .mnmd-carousel .flickity-prev-next-button svg {
    display: none;
  }
  
  .mnmd-carousel .flickity-prev-next-button:before {
    content: '\e408';
    font-family: 'mdicon';
    font-size: 30px;
  }
  
  .mnmd-carousel .flickity-prev-next-button.previous {
    left: 0;
  }
  
  .mnmd-carousel .flickity-prev-next-button.next {
    right: 0;
  }
  
  .mnmd-carousel .flickity-prev-next-button.next:before {
    content: '\e409';
  }
  
  
  /*---- Owl carousel nav A ----*/
  
  .mnmd-carousel-nav-none .owl-nav {
    display: none;
  }
  
  .mnmd-carousel-nav-a {
    padding-bottom: 30px;
  }
  
  .mnmd-carousel-nav-a .owl-nav {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  
  .mnmd-carousel-nav-a .owl-nav .disabled {
    cursor: auto;
  }
  
  .mnmd-carousel-nav-a .owl-prev,
  .mnmd-carousel-nav-a .owl-next {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: relative;
    padding: 0;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  
  .mnmd-carousel-nav-a .owl-prev i,
  .mnmd-carousel-nav-a .owl-next i {
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
  }
  
  .mnmd-carousel-nav-a .owl-prev {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  
  /*---- Owl theme B ----*/
  
  .mnmd-carousel-nav-b .owl-prev,
  .mnmd-carousel-nav-b .owl-next,
  .mnmd-carousel-nav-b .slick-arrow {
    display: block;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #fff;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  
  .mnmd-carousel-nav-b .owl-prev.disabled,
  .mnmd-carousel-nav-b .owl-next.disabled,
  .mnmd-carousel-nav-b .slick-arrow.disabled {
    display: none;
  }
  
  .mnmd-carousel-nav-b .owl-prev,
  .mnmd-carousel-nav-b .slick-prev {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .mnmd-carousel-nav-b .owl-next,
  .mnmd-carousel-nav-b .slick-next {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  
  /*---- Owl theme C ----*/
  
  .mnmd-carousel-nav-c .owl-prev,
  .mnmd-carousel-nav-c .owl-next {
    top: 0;
    bottom: 0;
    -webkit-transform: translate(0, 0) scale(1, 1);
    -moz-transform: translate(0, 0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
    -o-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
  }
  
  .mnmd-carousel-nav-c .owl-prev.disabled,
  .mnmd-carousel-nav-c .owl-next.disabled {
    -webkit-transform: translate(0, 0) scale(0, 1);
    -moz-transform: translate(0, 0) scale(0, 1);
    -ms-transform: translate(0, 0) scale(0, 1);
    -o-transform: translate(0, 0) scale(0, 1);
    transform: translate(0, 0) scale(0, 1);
  }
  
  .mnmd-carousel-nav-c .owl-prev i,
  .mnmd-carousel-nav-c .owl-next i {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  
  /*---- Owl nav D ----*/
  
  .mnmd-carousel-nav-d .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
  
  .mnmd-carousel-nav-d .owl-prev,
  .mnmd-carousel-nav-d .owl-next {
    display: block;
    width: 9999px;
    width: calc(100vw - 100%);
    background: rgba(255, 255, 255, 0.8);
    color: rgba(0, 0, 0, 0.4);
    font-size: 40px;
    text-align: center;
  }
  
  .mnmd-carousel-nav-d .owl-prev.disabled,
  .mnmd-carousel-nav-d .owl-next.disabled {
    display: none;
  }
  
  .mnmd-carousel-nav-d .owl-prev {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: -10px;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
  
  @media (min-width: 992px) {
    .mnmd-carousel-nav-d .owl-prev {
      left: -30px;
    }
  }
  
  .mnmd-carousel-nav-d .owl-next {
    position: absolute;
    top: 0;
    right: -10px;
    bottom: 0;
    left: auto;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  
  @media (min-width: 992px) {
    .mnmd-carousel-nav-d .owl-next {
      right: -30px;
    }
  }
  
  .mnmd-carousel-nav-d .owl-prev i {
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  .mnmd-carousel-nav-d .owl-next i {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 20px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  
  /*---- Owl nav E ----*/
  
  .mnmd-carousel-nav-e .owl-prev,
  .mnmd-carousel-nav-e .owl-next,
  .mnmd-carousel-nav-e .slick-arrow,
  .mnmd-carousel-nav-e .swiper-button-next,
  .mnmd-carousel-nav-e .swiper-button-prev {
    display: block;
    height: 80px;
    width: 36px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 24px;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .mnmd-carousel-nav-e .owl-prev:hover,
  .mnmd-carousel-nav-e .owl-next:hover,
  .mnmd-carousel-nav-e .slick-arrow:hover,
  .mnmd-carousel-nav-e .swiper-button-next:hover,
  .mnmd-carousel-nav-e .swiper-button-prev:hover {
    width: 46px;
  }
  
  .mnmd-carousel-nav-e .owl-prev i,
  .mnmd-carousel-nav-e .slick-prev i {
    margin-right: 6px;
    line-height: 60px;
  }
  
  .mnmd-carousel-nav-e .owl-next i,
  .mnmd-carousel-nav-e .slick-next i {
    margin-left: 6px;
    line-height: 60px;
  }
  
  .mnmd-carousel-nav-e .owl-prev,
  .mnmd-carousel-nav-e .slick-prev,
  .mnmd-carousel-nav-e .swiper-button-prev {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
  }
  
  .mnmd-carousel-nav-e .owl-prev:before,
  .mnmd-carousel-nav-e .slick-prev:before,
  .mnmd-carousel-nav-e .swiper-button-prev:before {
    content: '\e408';
    font-family: 'mdicon';
    font-size: 36px;
    line-height: 80px;
  }
  
  .mnmd-carousel-nav-e .owl-next,
  .mnmd-carousel-nav-e .slick-next,
  .mnmd-carousel-nav-e .swiper-button-next {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
  }
  
  .mnmd-carousel-nav-e .owl-next:before,
  .mnmd-carousel-nav-e .slick-next:before,
  .mnmd-carousel-nav-e .swiper-button-next:before {
    content: '\e409';
    font-family: 'mdicon';
    font-size: 32px;
    line-height: 80px;
  }
  
  
  /*---- Owl carousel nav F ----*/
  
  .mnmd-carousel-nav-f .owl-prev,
  .mnmd-carousel-nav-f .owl-next,
  .mnmd-carousel-nav-f .slick-arrow {
    display: inline-block;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: auto;
    left: auto;
    background: #fff;
    background-clip: padding-box;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    font-size: 28px;
    line-height: 50px;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
  }
  
  .mnmd-carousel-nav-f .owl-prev,
  .mnmd-carousel-nav-f .slick-prev {
    left: 20px;
    right: auto;
  }
  
  
  /*---- Custom Owl carousel nav ----*/
  
  .mnmd-carousel-nav-custom-holder .owl-prev,
  .mnmd-carousel-nav-custom-holder .owl-next {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: relative;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    color: #333;
    line-height: 38px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  
  .mnmd-carousel-nav-custom-holder .owl-prev:hover,
  .mnmd-carousel-nav-custom-holder .owl-next:hover {
    background: #fff;
    width: 40px;
  }
  
  .mnmd-carousel-nav-custom-holder .owl-prev.disabled,
  .mnmd-carousel-nav-custom-holder .owl-next.disabled {
    background: #aaa;
    cursor: default;
    opacity: 0.5;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  
  .mnmd-carousel-nav-custom-holder .owl-prev i,
  .mnmd-carousel-nav-custom-holder .owl-next i {
    font-size: 20px;
  }
  
  .mnmd-carousel-nav-custom-holder .owl-prev {
    margin-right: 4px;
  }
  
  
  /*---- Owl dot nav A ----*/
  
  .mnmd-carousel-dots-none .owl-dots {
    display: none;
  }
  
  .mnmd-carousel-dots-a .owl-dots {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-dots-a .owl-dots {
      bottom: 10px;
    }
  }
  
  .mnmd-carousel-dots-a .owl-dot {
    display: inline-block;
    padding: 10px;
  }
  
  .mnmd-carousel-dots-a .owl-dot span {
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.4);
    vertical-align: middle;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  
  .mnmd-carousel-dots-a .owl-dot.active span {
    background: rgba(255, 255, 255, 0.8);
  }
  
  
  /*---- Owl dot nav B ----*/
  
  .mnmd-carousel-dots-b .owl-dots {
    padding: 15px 0;
    text-align: center;
  }
  
  .mnmd-carousel-dots-b .owl-dot {
    display: inline-block;
    height: 8px;
    width: 8px;
    margin: 0 8px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  .mnmd-carousel-dots-b .owl-dot.active {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-carousel-dots-b .swiper-pagination {
    position: static;
    padding: 15px 0;
  }
  
  .mnmd-carousel-dots-b--inverse .swiper-pagination-bullet {
    background: #fff;
  }
  
  
  /*
   * Slick carousel
   *--------------------*/
  
  .mnmd-carousel .slide-content:not(:first-child) {
    display: none;
  }
  
  .mnmd-carousel.slick-initialized .slide-content,
  .mnmd-carousel .slick-initialized .slide-content {
    display: block;
  }
  
  
  /*
   * Flickity carousel
   *--------------------*/
  
  .mnmd-carousel.flickity-enabled .slide-content,
  .mnmd-carousel .flickity-enabled .slide-content {
    display: block;
  }
  
  
  /*---- Arrow ----*/
  
  .slick-arrow {
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 0;
    z-index: 10;
  }
  
  .slick-arrow:before {
    content: '\e408';
    font-family: 'mdicon';
    font-size: 22px;
  }
  
  .slick-next:before {
    content: '\e409';
  }
  
  
  /*---- Arrow ----*/
  
  .slick-dots {
    display: block;
    margin: 10px auto;
    padding: 0;
    list-style: none;
    text-align: center;
    z-index: 10;
  }
  
  .slick-dots li {
    display: inline-block;
  }
  
  .slick-dots li button {
    display: inline-block;
    height: 12px;
    width: 12px;
    padding: 0;
    margin: 0 10px;
    border: 1px solid transparent;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    font-size: 0;
    vertical-align: middle;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .slick-dots li button:hover,
  .slick-dots li button:focus {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .slick-dots li.slick-active button {
    -webkit-transform: scale(1.4, 1.4);
    -moz-transform: scale(1.4, 1.4);
    -ms-transform: scale(1.4, 1.4);
    -o-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-carousel--dots-transparent .slick-dots {
    width: 100%;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 20px;
    left: auto;
    margin: 0 auto;
  }
  
  
  /*
   * Flexslider
   *--------------------*/
  
  .flexslider {
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 400px;
  }
  
  .flexslider .slides>li:first-child {
    display: block;
    opacity: 0;
  }
  
  .flexslider .flex-viewport .slides>li:first-child {
    opacity: 1;
  }
  
  
  /*
   * Fotorama
   *--------------------*/
  
  .mnmd-gallery-slider .fotorama__stage {
    background: #111;
  }
  
  .mnmd-gallery-slider .fotorama__thumb-border {
    border-color: var(--color-primary);
    background: transparent;
  }
  
  .mnmd-gallery-slider .fotorama__nav__frame:not(.fotorama__active) {
    opacity: 0.8;
  }
  
  .mnmd-gallery-slider .fotorama__nav--thumbs {
    position: relative;
    background: #111;
  }
  
  .mnmd-gallery-slider .fotorama__nav--dots {
    margin-top: 5px;
  }
  
  .mnmd-gallery-slider .fotorama__nav--dots .fotorama__nav__frame {
    width: auto;
    height: auto;
    padding: 12px 8px;
  }
  
  .mnmd-gallery-slider .fotorama__dot {
    height: 8px;
    width: 8px;
    top: auto;
    left: auto;
    border: none;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-gallery-slider .fotorama__nav__frame.fotorama__active .fotorama__dot {
    height: 8px;
    width: 8px;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-gallery-slider .fotorama__caption {
    text-align: center;
    background-color: transparent;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
  }
  
  .mnmd-gallery-slider .fotorama__caption__wrap {
    padding: 1em;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }
  
  .mnmd-gallery-slider .fotorama__caption__wrap a,
  .mnmd-gallery-slider .fotorama__caption__wrap a:hover,
  .mnmd-gallery-slider .fotorama__caption__wrap a:focus,
  .mnmd-gallery-slider .fotorama__caption__wrap a:active {
    color: #fff;
    text-decoration: none;
    border: none;
  }
  
  
  /*
   * Overflow carousel
   *--------------------*/
  
  .mnmd-carousel-overflow {
    overflow: hidden;
  }
  
  @media (max-width: 767px) {
    .mnmd-carousel-overflow {
      margin-left: -15px;
      margin-right: -15px;
    }
  }
  
  .mnmd-carousel-overflow--has-background {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overflow--has-background {
      padding: 40px;
    }
  }
  
  .mnmd-carousel-overflow--has-background .mnmd-carousel__inner {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overflow--has-background .mnmd-carousel__inner {
      margin-left: -40px;
      margin-right: -40px;
    }
  }
  
  .mnmd-carousel-overflow--has-background:not(.mnmd-carouel-dots-none) {
    padding-bottom: 0;
  }
  
  
  /* -----------------------------------------------------------------
  ## Categories bar
  ----------------------------------------------------------------- */
  
  .category-bar {
    margin-bottom: 30px;
  }
  
  .category-bar-inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
  }
  
  .category-bar__cat {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 8px 10px;
    text-align: center;
  }
  
  .category-bar__cat a {
    display: block;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  .category-bar__cat a:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.06);
  }
  
  .category-bar .cat-icon {
    color: rgba(0, 0, 0, 0.2);
    font-size: 30px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  
  .category-bar .cat-name {
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    text-transform: uppercase;
  }
  
  
  /* -----------------------------------------------------------------
  ## Count down
  ----------------------------------------------------------------- */
  
  .mnmd-countdown {
    position: relative;
    text-align: center;
  }
  
  .mnmd-countdown__inner {
    display: inline-block;
    margin: 0 -10px;
  }
  
  .mnmd-countdown__inner::after {
    clear: both;
    content: "";
    display: table;
  }
  
  @media (min-width: 768px) {
    .mnmd-countdown__inner {
      margin: 0 -20px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-countdown__inner {
      margin: 0 -30px;
    }
  }
  
  .countdown__section {
    display: inline-block;
    min-width: 60px;
    margin: 0 10px;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .countdown__section {
      min-width: 80px;
      margin: 0 20px;
    }
  }
  
  .countdown__digit {
    display: block;
    font-size: 32px;
    font-weight: 700;
  }
  
  @media (min-width: 768px) {
    .countdown__digit {
      font-size: 48px;
    }
  }
  
  @media (min-width: 992px) {
    .countdown__digit {
      font-size: 60px;
    }
  }
  
  .countdown__text {
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  @media (min-width: 768px) {
    .countdown__text {
      font-size: 16px;
    }
  }
  
  @media (min-width: 992px) {
    .countdown__text {
      font-size: 20px;
    }
  }
  
  .mnmd-countdown-block::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .mnmd-countdown-block .mnmd-block__inner {
    padding: 20px;
  }
  
  @media (min-width: 768px) {
    .mnmd-countdown-block .mnmd-block__inner {
      padding: 30px;
    }
  }
  
  .mnmd-countdown-block--solid-overlay .mnmd-countdown {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.06);
  }
  
  
  /* -----------------------------------------------------------------
  ## Block general
  ----------------------------------------------------------------- */
  
  .mnmd-block {
    position: relative;
    margin-bottom: 40px;
  }
  
  .mnmd-block:last-child {
    margin-bottom: 0;
  }
  
  .mnmd-block__inner {
    position: relative;
  }
  
  @media (min-width: 1200px) {
    .mnmd-block--fullwidth {
      margin-bottom: 60px;
    }
  }
  
  .mnmd-block--fullwidth.mnmd-block--contiguous:first-child {
    margin-top: -20px;
  }
  
  @media (min-width: 768px) {
    .mnmd-block--fullwidth.mnmd-block--contiguous:first-child {
      margin-top: -40px;
    }
  }
  
  .mnmd-block--fullwidth.has-background:last-child {
    margin-bottom: -30px;
  }
  
  @media (min-width: 1200px) {
    .mnmd-block--fullwidth.has-background:last-child {
      margin-bottom: -60px;
    }
  }
  
  .mnmd-block--contiguous:not(.has-overlap-background)+.mnmd-block--contiguous {
    margin-top: -40px;
  }
  
  @media (min-width: 1200px) {
    .mnmd-block--fullwidth.mnmd-block--contiguous:not(.has-overlap-background)+.mnmd-block--fullwidth.mnmd-block--contiguous {
      margin-top: -60px;
    }
  }
  
  .mnmd-block.has-background {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  @media (min-width: 992px) {
    .mnmd-block.has-background {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-block.has-background--md {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }
  
  .mnmd-block.has-overlap-background {
    padding-top: 30px;
  }
  
  @media (min-width: 992px) {
    .mnmd-block.has-overlap-background {
      padding-top: 40px;
    }
  }
  
  .mnmd-block.has-border {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  @media (min-width: 992px) {
    .mnmd-block.has-border {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  
  .mnmd-layout-split:first-child {
    margin-top: -10px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Offcanvas Menu
  ----------------------------------------------------------------- */
  
  body.is-mnmd-offcanvas-opened {
    overflow: hidden;
  }
  
  .mnmd-offcanvas {
    max-width: 100%;
    width: 320px;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    background: #FFFFFF;
    z-index: 1039;
    /* bootstrap modal */
    -webkit-transform: translate(-101%, 0);
    -moz-transform: translate(-101%, 0);
    -ms-transform: translate(-101%, 0);
    -o-transform: translate(-101%, 0);
    transform: translate(-101%, 0);
    -webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    -moz-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  
  body.admin-bar .mnmd-offcanvas {
    margin-top: 46px;
  }
  
  @media (min-width: 768px) {
    .mnmd-offcanvas {
      width: 360px;
    }
  }
  
  @media (min-width: 784px) {
    body.admin-bar .mnmd-offcanvas {
      margin-top: 32px;
    }
  }
  
  .mnmd-offcanvas.is-active {
    box-shadow: 0 1px 10px 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .mnmd-offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1030;
    /* bootstrap backdrop */
  }
  
  .mnmd-offcanvas-close {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: auto;
    left: auto;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100%;
    background: transparent;
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    text-decoration: none !important;
    overflow: hidden;
  }
  .inverse-text .mnmd-offcanvas-close {
    color: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mnmd-offcanvas__title {
    position: relative;
    padding: 20px 50px 20px 20px;
    font-size: 14px;
  }
  
  .mnmd-offcanvas__title .social-list {
    margin-top: 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-offcanvas__section {
    padding: 20px;
  }
  
  .mnmd-offcanvas__section:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .inverse-text .mnmd-offcanvas__section:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mnmd-offcanvas__section-search+.mnmd-offcanvas__section-navigation {
    padding-top: 0;
    border-top: none;
  }
  
  .navigation--offcanvas {
    margin: 0 -20px;
  }
  
  .navigation--offcanvas li {
    color: rgba(0, 0, 0, 0.6);
  }
  
  .navigation--offcanvas li>a {
    color: inherit;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 5px 7px;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
  }
  
  .navigation--offcanvas li>a:hover,
  .navigation--offcanvas li>a:active,
  .navigation--offcanvas li>a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .navigation--offcanvas li>a:hover {
    background: rgba(0, 0, 0, 0.02);
  }
  
  .navigation--offcanvas li>a:after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    border-right: 3px solid var(--color-primary);
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  
  .navigation--offcanvas li.current-menu-item>a:after {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  
  .navigation--offcanvas li.menu-item-has-children>a {
    padding-right: 56px;
  }
  
  .navigation--offcanvas>li>a {
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .navigation--offcanvas .sub-menu {
    display: none;
    padding: 5px 0;
  }
  
  .navigation--offcanvas>li>.sub-menu>li>a {
    padding-left: 40px;
  }
  
  .navigation--offcanvas>li>.sub-menu>li>.sub-menu>li>a {
    padding-left: 50px;
  }
  
  .navigation--offcanvas .submenu-toggle {
    display: block;
    width: 36px;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    left: auto;
    text-align: center;
  }
  
  .navigation--offcanvas .submenu-toggle i {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    margin: 0;
    font-size: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  
  /* -----------------------------------------------------------------
  ## Widgets
  ----------------------------------------------------------------- */
  
  .widget {
    margin-bottom: 40px;
  }
  
  .widget:last-child {
    margin-bottom: 0;
  }
  
  .widget--centered {
    text-align: center;
  }
  
  .widget--has-background {
    padding: 20px;
  }
  
  .widget__title {
    margin-bottom: 20px;
  }
  
  .has-block-heading-line-around .widget__title,
  .has-block-heading-line .widget__title {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .has-block-heading-line .widget__title:after {
    content: '';
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
    margin-left: 0.6em;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .widget__title a {
    color: inherit;
    text-decoration: none;
  }
  
  
  /* Comment Out by Hung
  .site-footer .widget__title:before,
  .site-footer .widget__title:after,
  .mnmd-offcanvas .widget__title:before,
  .mnmd-offcanvas .widget__title:after {
    content: none !important; }
  */
  
  .mnmd-offcanvas .widget__title:before,
  .mnmd-offcanvas .widget__title:after {
    content: none !important;
  }
  
  .has-block-heading-line-around .site-footer .widget__title {
    display: block;
    text-align: center;
  }
  
  .widget__title-text {
    margin: 0;
    font-size: 15px;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .widget__title .first-word,
  .widget__title span {
    font-weight: 300;
  }
  
  .has-block-heading-line-under .widget__title {
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  .has-block-heading-line-around .widget__title__title {
    padding-right: 0;
  }
  
  .has-block-heading-line-under .widget__title__seperator,
  .has-block-heading-line-around .widget__title__seperator {
    display: none;
  }
  
  .has-block-heading-line-around .widget__title:before,
  .has-block-heading-line-around .widget__title:after {
    content: '';
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 0.6em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .has-block-heading-line-around .widget__title:after {
    margin-left: 0.6em;
  }
  
  .has-block-heading-line-around .mnmd-widget--box .widget__title {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  
  .site-footer .widget__title__title {
    font-size: 14px;
  }
  
  
  /*---- Box Widget ----*/
  
  .mnmd-widget--box .widget__title {
    margin-bottom: 0;
    padding: 10px 20px;
    background: var(--color-primary);
    border-bottom: none;
    color: #fff;
  }
  
  .mnmd-widget--box .widget__title:before,
  .mnmd-widget--box .widget__title:after {
    content: none;
  }
  
  .mnmd-widget--box .widget__inner {
    padding: 20px;
    background: #fafafa;
  }
  
  
  /*---- Indexed Widget A ----*/
  
  .mnmd-widget-indexed-posts-a .posts-list {
    counter-reset: li;
  }
  
  .mnmd-widget-indexed-posts-a .posts-list>li .post__thumb {
    position: relative;
  }
  
  .mnmd-widget-indexed-posts-a .posts-list>li .post__thumb:after {
    content: counter(li);
    /* Use the counter as content */
    counter-increment: li;
    display: block;
    height: 24px;
    width: 24px;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 4px;
    left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
  }
  
  
  /*---- Indexed Widget B ----*/
  
  .mnmd-widget-indexed-posts-b .posts-list {
    counter-reset: li;
  }
  
  .mnmd-widget-indexed-posts-b .posts-list>li .post__title {
    position: relative;
  }
  
  .mnmd-widget-indexed-posts-b .posts-list>li .post__title:after {
    content: counter(li);
    /* Use the counter as content */
    counter-increment: li;
    display: block;
    position: absolute;
    top: -30px;
    right: 15px;
    bottom: auto;
    left: auto;
    color: var(--color-primary);
    font-size: 96px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    opacity: 0.25;
  }
  
  
  /*---- Indexed Widget C ----*/
  
  .mnmd-widget-indexed-posts-c .list-index {
    display: inline-block;
    min-width: 45px;
    margin-left: 10px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 26px;
    font-size: 1.86rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
  }
  
  .mnmd-widget-indexed-posts-c .posts-list>li .post--overlay .post__text-inner {
    padding-left: 10px;
  }
  
  .mnmd-widget-indexed-posts-c .posts-list>li .post--overlay .list-index {
    margin-left: 0;
    color: #fff;
    font-size: 36px;
    font-size: 2.57rem;
  }
  
  
  /*---- Widget most commented ----*/
  
  .mnmd-widget-most-commented .comments-count-box {
    color: inherit;
    text-decoration: none;
    min-width: 48px;
    margin-right: 10px;
    padding: 10px 12px;
    background: #444;
    font-size: 16px;
  }
  
  .mnmd-widget-most-commented .comments-count-box:hover,
  .mnmd-widget-most-commented .comments-count-box:active,
  .mnmd-widget-most-commented .comments-count-box:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .mnmd-widget-most-commented .comments-count-box:before {
    border-top-color: #444;
  }
  
  
  /*---- Social counter widget ----*/
  
  .mnmd-widget-social-counter::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .social-tile {
    color: inherit;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 15px 30px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .social-tile:hover,
  .social-tile:active,
  .social-tile:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .social-tile:hover {
    background: rgba(0, 0, 0, 0.02);
  }
  
  .social-tile:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0) 100%);
  }
  
  .social-tile__inner {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  
  .social-tile__icon {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    font-size: 5.7143rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform: translate(20%, 25%) scale(1, 1);
    -moz-transform: translate(20%, 25%) scale(1, 1);
    -ms-transform: translate(20%, 25%) scale(1, 1);
    -o-transform: translate(20%, 25%) scale(1, 1);
    transform: translate(20%, 25%) scale(1, 1);
    -webkit-transform-origin: 0 50% 0;
    -moz-transform-origin: 0 50% 0;
    -ms-transform-origin: 0 50% 0;
    -o-transform-origin: 0 50% 0;
    transform-origin: 0 50% 0;
  }
  
  .social-tile:hover .social-tile__icon {
    -webkit-transform: translate(20%, 20%) scale(1.4, 1.4);
    -moz-transform: translate(20%, 20%) scale(1.4, 1.4);
    -ms-transform: translate(20%, 20%) scale(1.4, 1.4);
    -o-transform: translate(20%, 20%) scale(1.4, 1.4);
    transform: translate(20%, 20%) scale(1.4, 1.4);
  }
  
  .social-tile__title {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .social-tile__count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.1;
  }
  
  .social-tile__right .mdicon {
    display: inline-block;
    font-size: 1.2857rem;
    color: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .social-tile:hover .social-tile__right .mdicon {
    -webkit-transform: translate(40%, 0);
    -moz-transform: translate(40%, 0);
    -ms-transform: translate(40%, 0);
    -o-transform: translate(40%, 0);
    transform: translate(40%, 0);
  }
  
  
  /*---- Subscribe widget ----*/
  
  .widget-subscribe {
    padding-top: 20px;
  }
  
  .widget-subscribe__inner {
    padding: 20px;
    background: #fff;
    border: 3px solid #eee;
    box-shadow: 0 -20px 0 -10px #f5f5f5, 0 -38px 0 -20px #fafafa;
  }
  
  @media (min-width: 768px) {
    .widget-subscribe__inner {
      padding: 30px;
    }
  }
  
  .widget-subscribe .subscribe-form {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .widget-subscribe.widget--centered .subscribe-form input[type="email"] {
    text-align: center;
  }
  
  .widget-subscribe--stack-bottom {
    padding-top: 0;
    padding-bottom: 20px;
  }
  
  .widget-subscribe--stack-bottom .widget-subscribe__inner {
    box-shadow: 0 20px 0 -10px #f5f5f5, 0 38px 0 -20px #fafafa;
  }
  
  
  /*---- Widget Categories ----*/
  
  
  /* -----------------------------------------------------------------
  ## WordPress Defaul Widgets
  ----------------------------------------------------------------- */
  
  
  /*---- ## Archive Widget ----*/
  
  .widget_archive ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_archive li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_archive li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .widget_archive a>span {
    display: inline-block;
    background: #ccc;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    font-size: 0.8571rem;
    color: #fff;
  }
  
  .widget_archive ul.children {
    padding-top: 15px;
    padding-left: 15px;
  }
  
  .widget_archive ul.children li>a {
    color: rgba(0, 0, 0, 0.6);
  }
  
  
  /*---- ## Calendar Widget ----*/
  
  .widget_calendar {
    border-bottom: none;
  }
  
  #calendar_wrap {
    border-radius: 3px;
    overflow: hidden;
    background-color: #fff;
  }
  
  .widget_calendar caption {
    padding: 0.6em;
    text-align: center;
    font-size: 22px;
    font-size: 1.5714rem;
    font-weight: 700;
    color: #fff;
    background-color: #333;
  }
  
  .widget_calendar table {
    width: 100%;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 0.8571rem;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .widget_calendar thead {
    background-color: #fafafa;
  }
  
  .widget_calendar th {
    padding: 1em;
    text-align: center;
    border: none;
  }
  
  .widget_calendar td {
    padding: 0.8em 1em;
    border: none;
    text-align: center;
  }
  
  .widget_calendar td a {
    position: relative;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }
  
  .widget_calendar td a:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    top: -4px;
    right: -6px;
    bottom: auto;
    left: auto;
    border-radius: 100%;
    background-color: #aaa;
    background-color: var(--color-primary);
  }
  
  .widget_calendar #today,
  .widget_calendar #today a {
    position: relative;
    font-weight: 700;
    color: #fff;
    background-color: #444;
    background-color: var(--color-primary);
  }
  
  .widget_calendar tfoot {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .widget_calendar tfoot td {
    padding: 1em;
  }
  
  .widget_calendar tfoot a {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .widget_calendar tfoot a:before {
    content: none;
  }
  
  
  /*---- ## Categories Widget ----*/
  
  .widget_categories ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_categories li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_categories li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .widget_categories a>span {
    display: inline-block;
    background: #ccc;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    font-size: 0.8571rem;
    color: #fff;
  }
  
  .widget_categories ul.children {
    padding-top: 15px;
    padding-left: 20px;
  }
  
  
  /*---- ## Menu Widget ----*/
  
  .widget_nav_menu ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_nav_menu li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_nav_menu li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .inverse-text .widget_nav_menu li>a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .inverse-text .widget_nav_menu li>a:hover,
  .inverse-text .widget_nav_menu li>a:focus,
  .inverse-text .widget_nav_menu li>a:active {
    color: white;
  }
  
  .widget_nav_menu .sub-menu {
    padding-top: 15px;
    padding-left: 20px;
  }
  
  .widget_nav_menu .sub-menu .sub-menu {
    font-size: 100%;
  }
  
  
  /*---- ## Meta Widget ----*/
  
  .widget_meta ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_meta li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_meta li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .inverse-text .widget_meta li>a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .inverse-text .widget_meta li>a:hover,
  .inverse-text .widget_meta li>a:focus,
  .inverse-text .widget_meta li>a:active {
    color: white;
  }
  
  
  /*---- ## Pages Widget ----*/
  
  .widget_pages ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_pages li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_pages li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .widget_pages ul.children {
    padding-top: 15px;
    padding-left: 20px;
  }
  
  
  /*---- ## Recent Comments Widget ----*/
  
  .widget_recent_comments #recentcomments {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .widget_recent_comments .recentcomments {
    position: relative;
    margin-bottom: 20px;
  }
  
  .widget_recent_comments .recentcomments:before {
    content: '\e0cb';
    font-family: 'mdicon';
    margin-right: 0.2em;
  }
  
  .widget_recent_comments .recentcomments>a {
    display: block;
    position: relative;
    margin-top: 8px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none !important;
  }
  
  .widget_recent_comments .comment-author-link {
    font-weight: 700;
  }
  
  .widget_recent_comments .comment-author-link a {
    color: inherit;
    text-decoration: none !important;
    text-transform: uppercase;
  }
  
  .inverse-text .widget_recent_comments .recentcomments>a {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }
  
  
  /*---- ## Recent Posts Widget ----*/
  
  .widget_recent_entries ul {
    list-style: none;
    padding: 0;
  }
  
  .widget_recent_entries li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .widget_recent_entries li>a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  
  /*---- ## RSS Widget ----*/
  
  .widget_rss .rss-widget-icon {
    display: none;
  }
  
  .widget_rss .widget__title a.rsswidget:last-child:before {
    content: '\e0e5';
    font-family: 'mdicon';
    margin-right: 0.3em;
  }
  
  .widget_rss ul {
    list-style: none;
  }
  
  .widget_rss li {
    position: relative;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .widget_rss li:first-child {
    padding-top: 0;
    border-top: none;
  }
  
  .widget_rss a.rsswidget {
    font-weight: 700;
    color: inherit;
  }
  
  .widget_rss .rss-date {
    display: block;
    margin-top: 0.4em;
    font-size: 12px;
    font-size: 0.8571rem;
    font-style: italic;
  }
  
  .widget_rss .rssSummary {
    margin: 0.4em 0;
  }
  
  
  /*---- ## Search Widget ----*/
  
  .widget_search .search-form__submit {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 6px 10px;
    background: transparent;
    border: none;
    outline: 0;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .widget_search .search-form__submit i {
    font-size: 20px;
  }
  
  
  /*---- ## Tag Cloud Widget ----*/
  
  .tagcloud::after {
    clear: both;
    content: "";
    display: table;
  }
  
  .tagcloud a {
    display: inline-block;
    float: left;
    padding: 5px 10px;
    margin: 0 10px 10px 0;
    font-size: 12px;
    font-size: 0.8571rem;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
    color: rgba(0, 0, 0, 0.44);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .tagcloud a:hover {
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  }
  
  /*---- ## Instagram Widget ----*/
  .tnm-instagram-widget-wrap ul li {
      width: 33.33%;
      border: 1px solid transparent;
      float: left;
  }
  
  /* -----------------------------------------------------------------
  ## Carousel Heading Aside
  ----------------------------------------------------------------- */
  
  .mnmd-carousel-heading-aside .owl-nav {
    display: none;
  }
  
  .mnmd-carousel-heading-aside .carousel-heading {
    height: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-heading-aside .carousel-heading {
      text-align: left;
      padding-right: 15px;
    }
  }
  
  .mnmd-carousel-heading-aside .carousel-heading--has-bg {
    padding: 20px;
    background: #0a293b;
  }
  
  
  /* -----------------------------------------------------------------
  ## Carousel Thumb Overlap
  ----------------------------------------------------------------- */
  
  @media (min-width: 768px) {
    .mnmd-carousel-thumb-overlap .post__text {
      min-height: 380px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Carousel Overlap
  ----------------------------------------------------------------- */
  
  .mnmd-carousel-overlap .overlap-background {
    bottom: 112px;
  }
  
  @media (max-width: 767px) {
    .mnmd-carousel-overlap .mnmd-carousel__inner {
      margin-top: -30px;
    }
  }
  
  .mnmd-carousel-overlap .flickity-viewport {
    overflow: visible !important;
  }
  
  .mnmd-carousel-overlap .slide-content {
    width: 100%;
    visibility: hidden;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overlap .slide-content {
      margin: 0 -20px;
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-carousel-overlap .slide-content {
      margin: 0 -30px;
      max-width: 970px;
    }
  }
  
  .mnmd-carousel-overlap .flickity-enabled .slide-content {
    visibility: visible;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overlap .slide-content .post--overlay {
      -webkit-transform: scale(0.8, 0.8);
      -moz-transform: scale(0.8, 0.8);
      -ms-transform: scale(0.8, 0.8);
      -o-transform: scale(0.8, 0.8);
      transform: scale(0.8, 0.8);
      -webkit-transform-origin: center top;
      -moz-transform-origin: center top;
      -ms-transform-origin: center top;
      -o-transform-origin: center top;
      transform-origin: center top;
      -webkit-transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overlap .slide-content.is-selected .post--overlay {
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
  }
  
  .mnmd-carousel-overlap .post--overlay {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-carousel-overlap .post--overlay .post__text {
    min-height: 360px;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-overlap .post--overlay .post__text {
      min-height: 480px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Mosaic Block
  ----------------------------------------------------------------- */
  
  .mnmd-mosaic .row,
  .mnmd-mosaic.row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .mnmd-mosaic .row--space-between,
  .mnmd-mosaic.row--space-between {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  
  .mnmd-mosaic [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .mnmd-mosaic .row--space-between>[class*="col-"],
  .mnmd-mosaic.row--space-between>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .mnmd-mosaic.has-background,
  .mnmd-mosaic.has-overlap-background {
    padding-top: 30px;
  }
  
  .mnmd-mosaic .mosaic-item {
    float: left;
    position: relative;
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic .mosaic-item {
      height: 480px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic .mosaic-item--half {
      height: 240px;
    }
  }
  
  @media (max-width: 767px) {
    .mnmd-mosaic .mosaic-item .post--overlay .post__text {
      min-height: 220px;
    }
  }
  
  @media (max-width: 991px) {
    .mnmd-mosaic .mosaic-item .post--overlay .post__text {
      min-height: 220px;
    }
  }
  
  @media (max-width: 767px) {
    .mnmd-mosaic .mosaic-item:first-child .post--overlay .post__text {
      min-height: 320px;
    }
  }
  
  @media (max-width: 991px) {
    .mnmd-mosaic .mosaic-item:first-child .post--overlay .post__text {
      min-height: 320px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic .mosaic-item .post--overlay,
    .mnmd-mosaic .mosaic-item .post--overlay .post__text {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }
  }
  
  .mnmd-mosaic--has-shadow .mosaic-item .post--overlay {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.4);
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic--gutter-10 .mosaic-item .post--overlay {
      position: absolute;
      top: 5px;
      right: 5px;
      bottom: 5px;
      left: 5px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic--gutter-20 .mosaic-item .post--overlay {
      position: absolute;
      top: 10px;
      right: 10px;
      bottom: 10px;
      left: 10px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-mosaic--gutter-30 .mosaic-item .post--overlay {
      position: absolute;
      top: 15px;
      right: 15px;
      bottom: 15px;
      left: 15px;
    }
  }
  
  .mnmd-mosaic .mosaic-item .post--overlay .background-img {
    box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.1);
  }
  
  .mnmd-mosaic-block .overlap-background {
    bottom: 60px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Featured with overlap posts
  ----------------------------------------------------------------- */
  
  .featured-with-overlap-posts .main-post {
    min-height: 420px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: end;
  }
  
  @media (min-width: 768px) {
    .featured-with-overlap-posts .main-post {
      min-height: 520px;
    }
  }
  
  .featured-with-overlap-posts .main-post .background-img:after {
    background-color: transparent;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    opacity: 1;
    background-color: transparent;
  }
  
  .featured-with-overlap-posts .main-post .post__text {
    width: 100%;
  }
  
  .featured-with-overlap-posts .main-post .post__text-inner {
    padding: 20px 0 100px;
  }
  
  .featured-with-overlap-posts .sub-posts {
    position: relative;
    margin-top: -60px;
  }
  
  .featured-with-overlap-posts .sub-posts>ul {
    padding: 0;
    list-style: none;
  }
  
  .featured-with-overlap-posts .sub-posts>ul>li:nth-child(3) {
    clear: both;
  }
  
  @media (min-width: 992px) {
    .featured-with-overlap-posts .sub-posts>ul>li:nth-child(3) {
      clear: none;
    }
  }
  
  .featured-with-overlap-posts .sub-posts article .post__thumb {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.06);
  }
  
  
  /* -----------------------------------------------------------------
  ## Featured Block B
  ----------------------------------------------------------------- */
  
  .mnmd-featured-block-b {
    padding-top: 40px;
  }
  
  .mnmd-featured-block-b .mnmd-block__background {
    bottom: 30px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Featured Block C
  ----------------------------------------------------------------- */
  
  .mnmd-featured-block-a {
    position: relative;
    overflow: hidden;
  }
  
  .mnmd-featured-block-a article {
    position: relative;
  }
  
  @media (max-width: 767px) {
    .mnmd-featured-block-a .main-post-wrap {
      position: relative;
      margin: -30px -15px 0;
      padding: 30px 15px;
    }
  }
  
  .mnmd-featured-block-a .main-post {
    position: relative;
    padding: 30px 0;
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-block-a .main-post {
      margin: 40px auto;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-block-a .main-post {
      margin: 40px auto 60px;
    }
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-block-a .main-post:before {
      content: '';
      position: absolute;
      top: 0;
      right: 20%;
      bottom: 0;
      left: 20%;
      border: 10px solid var(--color-primary);
      opacity: 0.6;
    }
  }
  
  @media (min-width: 1200px) {
    .mnmd-featured-block-a .main-post:before {
      content: '';
      position: absolute;
      top: 0;
      right: 30%;
      bottom: 0;
      left: 30%;
      border: 12px solid var(--color-primary);
      opacity: 0.6;
    }
  }
  
  .mnmd-featured-block-a .main-post .video-post .mnmd-post-type-icon {
    margin-top: 30px;
  }
  
  .mnmd-featured-block-a .main-post .post__text {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }
  
  .mnmd-featured-block-a .main-post .post__excerpt {
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-block-a .main-post .post__excerpt {
      font-size: 16px;
    }
  }
  
  @media (max-width: 767px) {
    .mnmd-featured-block-a .sub-posts-wrap {
      position: relative;
      margin: -30px -15px;
      padding: 15px;
      background: #12162d;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Featured with list
  ----------------------------------------------------------------- */
  
  .mnmd-featured-with-list__wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .mnmd-featured-with-list .main-post {
    overflow: hidden;
  }
  
  .mnmd-featured-with-list .main-post .post__title {
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-featured-with-list .main-post .post__meta,
  .mnmd-featured-with-list .main-post .post__excerpt {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-featured-with-list .sub-posts {
    position: relative;
    overflow: hidden;
  }
  
  .mnmd-featured-with-list .sub-posts__inner {
    width: 100%;
    /* IE fix */
    max-width: 1440px;
    margin: 0 auto;
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--vertical-list .mnmd-featured-with-list__inner {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  .mnmd-featured-with-list--vertical-list .sub-background,
  .mnmd-featured-with-list--vertical-list .sub-background .background-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
  }
  
  .mnmd-featured-with-list--vertical-list .main-post {
    position: relative;
    padding: 50px 30px;
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--vertical-list .main-post {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -moz-box-align: center;
      box-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -ms-flex-align: center;
      position: static;
      min-height: 520px;
      padding: 80px 40px;
    }
    .mnmd-featured-with-list--vertical-list .main-post:before {
      content: '';
      position: absolute;
      top: 0;
      right: 52%;
      bottom: 0;
      left: 0;
      background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7) 0, transparent 100%);
      background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0, transparent 100%);
    }
  }
  
  .mnmd-featured-with-list--vertical-list .mnmd-featured-with-list__heading {
    max-width: 1440px;
    margin: auto;
  }
  
  .mnmd-featured-with-list--vertical-list .block-heading {
    margin: 40px 40px 0 40px;
  }
  
  .mnmd-featured-with-list--vertical-list .main-post .block-heading {
    margin: 0 0 80px 0;
  }
  
  .mnmd-featured-with-list--vertical-list .main-post .post__text {
    z-index: 1;
    max-width: 680px;
  }
  
  .mnmd-featured-with-list--vertical-list .sub-posts {
    padding: 20px;
    background-color: #12162d;
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--vertical-list .sub-posts {
      padding: 30px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--vertical-list .sub-posts {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -moz-box-align: center;
      box-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -ms-flex-align: center;
      width: 40%;
      padding: 80px 40px;
      background: transparent;
    }
  }
  
  @media (min-width: 1200px) {
    .mnmd-featured-with-list--vertical-list .sub-posts {
      width: 30%;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--vertical-list .sub-posts__inner {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }
    .mnmd-featured-with-list--vertical-list .sub-posts__inner:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.6) 0, transparent 100%);
      background: linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0, transparent 100%);
    }
  }
  
  .mnmd-featured-with-list--vertical-list .posts-list {
    list-style: none;
    margin: -20px 0;
    padding: 0;
  }
  
  .mnmd-featured-with-list--vertical-list .posts-list>li {
    position: relative;
    padding: 20px 0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  .mnmd-featured-with-list--vertical-list .posts-list article {
    position: relative;
  }
  
  .mnmd-featured-with-list--vertical-list .posts-list article:before {
    content: none;
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: #fff;
    opacity: 0;
    -webkit-transform: scale(0.5, 1);
    -moz-transform: scale(0.5, 1);
    -ms-transform: scale(0.5, 1);
    -o-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
    -webkit-transform-origin: center right;
    -moz-transform-origin: center right;
    -ms-transform-origin: center right;
    -o-transform-origin: center right;
    transform-origin: center right;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--vertical-list .posts-list article:before {
      content: '';
    }
    .mnmd-featured-with-list--vertical-list .posts-list article:hover:before {
      opacity: 1;
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    .mnmd-featured-with-list--vertical-list .posts-list article:hover .post__text .post__title,
    .mnmd-featured-with-list--vertical-list .posts-list article:hover .post__text .post__title a {
      color: rgba(0, 0, 0, 0.8);
      text-shadow: none;
    }
    .mnmd-featured-with-list--vertical-list .posts-list article:hover .post__text .post__meta,
    .mnmd-featured-with-list--vertical-list .posts-list article:hover .post__text .post__meta a {
      color: rgba(0, 0, 0, 0.4);
      text-shadow: none;
    }
  }
  
  .mnmd-featured-with-list--horizontal-list .main-post {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
    -moz-box-align: flex-end;
    box-align: flex-end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: flex-end;
    min-height: 360px;
    position: relative;
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .main-post {
      position: static;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--horizontal-list .main-post {
      min-height: 480px;
    }
    .mnmd-featured-with-list--horizontal-list .main-post:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 160px;
      left: 0;
      background-color: transparent;
      background-image: -webkit-linear-gradient(-450deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
      background-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
      opacity: 0.85;
    }
  }
  
  .mnmd-featured-with-list--horizontal-list .main-post__inner {
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px;
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .main-post__inner {
      padding: 60px 30px;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--horizontal-list .main-post__inner {
      padding: 60px 0;
    }
  }
  
  .mnmd-featured-with-list--horizontal-list .main-post .block-heading {
    margin-bottom: 80px;
  }
  
  .mnmd-featured-with-list--horizontal-list .sub-posts {
    padding: 20px;
    background-color: #12162d;
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .sub-posts {
      padding: 50px 40px;
      background-color: transparent;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--horizontal-list .sub-posts__inner:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0, transparent 100%);
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, transparent 100%);
      background-color: transparent;
      background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
      background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    }
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .posts-list {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -moz-box-align: end;
      box-align: end;
      -webkit-align-items: flex-end;
      -moz-align-items: flex-end;
      -ms-align-items: flex-end;
      -o-align-items: flex-end;
      align-items: flex-end;
      -ms-flex-align: end;
      margin-left: -20px;
      margin-right: -20px;
    }
  }
  
  .mnmd-featured-with-list--horizontal-list .posts-list li {
    position: relative;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .posts-list li {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      margin-bottom: 0;
      padding: 0;
      border-bottom: none;
    }
    .mnmd-featured-with-list--horizontal-list .posts-list li:not(:first-child) {
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .posts-list article {
      padding: 0 20px;
    }
    .mnmd-featured-with-list--horizontal-list .posts-list article:before {
      content: '';
      position: absolute;
      top: -15px;
      right: 0;
      bottom: -15px;
      left: 0;
      background: #fff;
      opacity: 0;
      -webkit-transform: scale(1, 0.5);
      -moz-transform: scale(1, 0.5);
      -ms-transform: scale(1, 0.5);
      -o-transform: scale(1, 0.5);
      transform: scale(1, 0.5);
      -webkit-transform-origin: center bottom;
      -moz-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
      -o-transform-origin: center bottom;
      transform-origin: center bottom;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
      -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .mnmd-featured-with-list--horizontal-list .posts-list article:hover:before {
      opacity: 1;
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    .mnmd-featured-with-list--horizontal-list .posts-list article:hover .post__text .post__title,
    .mnmd-featured-with-list--horizontal-list .posts-list article:hover .post__text .post__title a {
      color: rgba(0, 0, 0, 0.8);
      text-shadow: none;
    }
    .mnmd-featured-with-list--horizontal-list .posts-list article:hover .post__text .post__meta,
    .mnmd-featured-with-list--horizontal-list .posts-list article:hover .post__text .post__meta a {
      color: rgba(0, 0, 0, 0.4);
      text-shadow: none;
    }
  }
  
  @media (min-width: 768px) {
    .mnmd-featured-with-list--horizontal-list .posts-list article .post__thumb {
      display: none;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-featured-with-list--horizontal-list .posts-list article .post__thumb {
      display: block;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Horizontal List
  ----------------------------------------------------------------- */
  
  .mnmd-horizontal-list [class^="col-"]:not(:last-child) article {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  @media (min-width: 768px) {
    .mnmd-horizontal-list [class^="col-"]:not(:last-child) article {
      padding-right: 15px;
      padding-bottom: 0;
      border-right: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: none;
    }
  }
  
  .mnmd-horizontal-list .index {
    font-size: 40px;
    font-size: 2.8571rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-horizontal-list.has-background {
    background: #fafafa;
  }
  
  
  /* -----------------------------------------------------------------
  ## Posts Listing A
  ----------------------------------------------------------------- */
  
  .mnmd-posts-listing-a__cat-wrap {
    position: relative;
  }
  
  .mnmd-posts-listing-a__cat-inner {
    padding: 20px;
  }
  
  @media (min-width: 768px) {
    .mnmd-posts-listing-a__cat-inner {
      padding: 30px;
    }
  
    .mnmd-posts-listing-a__cat-inner ul {
      min-height: 320px;
    }
  }
  
  .mnmd-posts-listing-a .cat-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  /* -----------------------------------------------------------------
  ## News Ticker
  ----------------------------------------------------------------- */
  
  .mnmd-news-ticker__inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .mnmd-news-ticker__inner {
      padding: 1rem;
    }
  }
  
  .mnmd-news-ticker--fw .mnmd-news-ticker__inner {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
  
  .mnmd-news-ticker--fw {
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mnmd-news-ticker__heading {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.08em;
  }
  
  .mnmd-news-ticker__content {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
  }
  
  .mnmd-news-ticker__content>ul {
    max-width: 100%;
    margin: 0;
  }
  
  .mnmd-news-ticker__content>ul li {
    display: block;
  }
  
  .mnmd-news-ticker__content:not(.initialized)>ul>li:not(:first-child) {
    display: none;
  }
  
  .mnmd-news-ticker__content .post {
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .mnmd-news-ticker__content .post__cat {
    display: inline;
    margin-right: 1em;
  }
  
  .mnmd-news-ticker__content .post__title {
    display: inline;
    margin: 0;
    vertical-align: middle;
  }
  
  .mnmd-news-ticker__control {
    margin-left: 10px;
    white-space: nowrap;
  }
  
  .mnmd-news-ticker__next,
  .mnmd-news-ticker__prev {
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    line-height: 34px;
    text-align: center;
  }
  
  .mnmd-news-ticker__next i,
  .mnmd-news-ticker__prev i {
    font-size: 20px;
  }
  
  .mnmd-news-ticker__prev {
    margin-right: 2px;
  }
  
  
  /* -----------------------------------------------------------------
  ## Carousel Gallery Posts
  ----------------------------------------------------------------- */
  
  .mnmd-carousel-gallery-posts .mnmd-carousel__inner {
    position: relative;
  }
  
  .mnmd-carousel-gallery-posts__thumbs {
    position: relative;
    padding: 10px;
    background-color: #000;
  }
  
  .mnmd-carousel-gallery-posts__thumbs:after {
    content: '';
    height: 20px;
    position: absolute;
    top: -20px;
    right: 0;
    bottom: auto;
    left: 0;
    background-image: -webkit-linear-gradient(-270deg, black 0%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, transparent 100%);
  }
  
  .mnmd-carousel-gallery-posts__thumbs .slide-content {
    width: 70px;
    height: auto;
    margin: 0 5px;
  }
  
  @media (min-width: 768px) {
    .mnmd-carousel-gallery-posts__thumbs .slide-content {
      width: 120px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Video Box
  ----------------------------------------------------------------- */
  
  .mnmd-video-box__inner {
    background: #2B2D32;
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box__inner {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  .mnmd-video-box__player {
    padding: 20px 20px 0;
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box__player {
      width: 70%;
    }
  }
  
  .mnmd-video-box--fullwidth-bg .mnmd-video-box__player {
    padding: 0 20px 0 0;
  }
  
  .mnmd-video-box__player .mnmd-responsive-video {
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
  }
  
  .mnmd-video-player__info {
    position: relative;
    padding: 20px;
    color: #fff;
  }
  
  .mnmd-video-player__info a {
    color: #fff;
  }
  
  .mnmd-video-player__info .post__meta {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .mnmd-video-player__play-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  @media (min-width: 768px) {
    .mnmd-video-player__play-icon {
      font-size: 120px;
    }
  }
  
  .mnmd-video-box__playlist {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    box-shadow: inset 0 13px 8px -6px rgba(0, 0, 0, 0.2), inset 0 -13px 8px -6px rgba(0, 0, 0, 0.2);
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box__playlist {
      height: auto;
      width: 30%;
    }
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box__playlist ul {
      position: absolute;
      top: 0;
      right: 0;
      bottom: auto;
      left: 0;
    }
  }
  
  .mnmd-video-box__playlist li {
    cursor: pointer;
    padding: 10px 20px;
  }
  
  .mnmd-video-box__playlist li:hover {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .mnmd-video-box__playlist li.is-playing {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .mnmd-video-box__playlist .post__thumb img {
    width: 100%;
    height: auto;
  }
  
  .mnmd-video-box__playlist .is-playing .post__thumb:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .mnmd-video-box__playlist .is-playing .post__thumb:after {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
  }
  
  .mnmd-video-box__playlist .post__meta {
    margin-top: 0;
  }
  
  
  /*---- Videos box overlap ----*/
  
  @media (min-width: 992px) {
    .mnmd-video-box--overlap {
      padding-top: 30px;
    }
  }
  
  .mnmd-video-box--overlap .mnmd-video-player__info {
    padding: 20px;
  }
  
  .mnmd-video-box--overlap .mnmd-video-box__inner {
    background: #2B2D32;
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box--overlap .mnmd-video-box__player {
      margin-top: -30px;
      padding-top: 0;
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  .mnmd-video-box--overlap .mnmd-responsive-video {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
  }
  
  .mnmd-video-box--overlap .mnmd-video-box__playlist {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 13px 8px -6px rgba(0, 0, 0, 0.2), inset 0 -13px 8px -6px rgba(0, 0, 0, 0.2);
  }
  
  @media (min-width: 992px) {
    .mnmd-video-box--overlap .mnmd-video-box__playlist {
      box-shadow: inset 0 13px 8px -6px rgba(0, 0, 0, 0.2), inset 0 -13px 8px -6px rgba(0, 0, 0, 0.2), inset 13px 0 10px -6px rgba(0, 0, 0, 0.3);
    }
  }
  
  
  /* =============================================================================
  ## PAGES
  ============================================================================= */
  
  
  /* -----------------------------------------------------------------
  ## 404
  ----------------------------------------------------------------- */
  
  .page-404-logo {
    margin-bottom: 60px;
  }
  
  .page-404-image {
    margin-bottom: 30px;
  }
  
  .page-404-search {
    max-width: 400px;
    margin: auto;
  }
  
  
  /* -----------------------------------------------------------------
  ## Archives
  ----------------------------------------------------------------- */
  
  .page-heading {
    position: relative;
  }
  
  .mnmd-block .page-heading {
    margin-bottom: 30px;
  }
  
  .page-heading__title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  @media (min-width: 768px) {
    .page-heading__title {
      font-size: 1.8rem;
    }
  }
  
  .page-heading__subtitle {
    max-width: 40em;
    margin-top: 0.6em;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
  }
  
  .page-heading--inverse .page-heading__title {
    position: relative;
    color: #fff;
  }
  
  .page-heading--inverse .page-heading__subtitle {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .page-heading--center {
    text-align: center;
  }
  
  .page-heading--center .page-heading__title,
  .page-heading--center .page-heading__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-heading--has-background {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f8f8f8;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }
  
  @media (min-width: 768px) {
    .page-heading--has-background {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Coming Soon
  ----------------------------------------------------------------- */
  
  .page-coming-soon .site-wrapper {
    position: relative;
  }
  
  .page-coming-soon .page-content {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    min-height: 100vh;
    position: relative;
    padding: 50px 0;
  }
  
  .page-coming-soon .site-logo {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .page-coming-soon .social-list {
    font-size: 24px;
  }
  
  .page-coming-soon .mnmd-countdown {
    margin: 60px auto;
    text-align: center;
  }
  
  .page-coming-soon .countdown__section {
    display: inline-block;
    min-width: 60px;
    margin: 0 10px;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .page-coming-soon .countdown__section {
      min-width: 80px;
      margin: 0 20px;
    }
  }
  
  @media (min-width: 992px) {
    .page-coming-soon .countdown__section {
      min-width: 100px;
      margin: 0 30px;
    }
  }
  
  
  /* -----------------------------------------------------------------
  ## Single
  ----------------------------------------------------------------- */
  
  .single-entry-section {
    margin-top: 40px;
  }
  
  @media (min-width: 1200px) {
    .single-entry-section {
      margin-top: 60px;
    }
  }
  
  .single-header-wrap {
    margin-bottom: 20px;
  }
  
  @media (min-width: 992px) {
    .single-header-wrap {
      margin-bottom: 30px;
    }
  }
  
  .single-header {
    margin: 20px 0;
  }
  
  .single-header:first-child {
    margin-top: 0;
  }
  
  .single-header__content {
    position: relative;
  }
  
  .single-header .entry-title {
    max-width: 970px;
    font-size: 2.027rem;
    font-weight: 700;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .single-header .entry-title {
      font-size: 2.986rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .single-header .entry-title {
      font-size: 3.052rem;
      line-height: 1.2;
    }
  }
  
  @media (min-width: 992px) {
    .single-header .entry-title--lg {
      font-size: 3.815rem;
      line-height: 1.1;
    }
  }
  
  .single-header--center .entry-title {
    margin-left: auto;
    margin-right: auto;
  }
  
  .single-header>*:first-child,
  .single-header .post__header-inner>*:first-child,
  .single-content>*:first-child,
  .single-content .entry-content>*:first-child {
    margin-top: 0;
  }
  
  .single-header>*:last-child,
  .single-header .post__header-inner>*:last-child {
    margin-bottom: 0;
  }
  
  .single-header .post__header-inner {
    max-width: 940px;
  }
  
  .entry-teaser {
    margin: 1em 0;
    font-size: 18px;
    font-size: 1.28571rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.4);
  }
  
  @media (min-width: 768px) {
    .entry-teaser {
      font-size: 20px;
      font-size: 1.42857rem;
      line-height: 1.4;
    }
  }
  
  .inverse-text .entry-teaser {
    color: rgba(255, 255, 255, 0.8);
  }
  
  @media (min-width: 768px) {
    .entry-teaser--lg {
      font-size: 18px;
      font-size: 1.2857rem;
    }
  }
  
  .single-header .entry-teaser {
    max-width: 40em;
  }
  
  .single-header--center .entry-teaser {
    margin-left: auto;
    margin-right: auto;
  }
  
  .single-header--center {
    text-align: center;
  }
  
  .entry-interaction {
    margin: 15px 0;
  }
  
  .entry-interaction:first-child {
    margin-top: 0;
  }
  
  .entry-interaction:last-child {
    margin-bottom: 0;
  }
  
  .entry-interaction--border-top {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .entry-interaction--horizontal {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  
  .entry-interaction--horizontal>div {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .entry-interaction__left:not(:last-child) {
    margin-right: 15px;
  }
  
  .single-entry-thumb,
  .single-entry-featured-media {
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  
  .single-entry-thumb-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 20px;
    color: #fff;
  }
  
  .single-entry-thumb-caption span {
    position: relative;
  }
  
  .single-entry-thumb-caption a {
    display: inline-block;
    color: inherit !important;
    text-decoration: underline;
  }
  
  .single-entry-thumb-caption:before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    opacity: 0.8;
  }
  
  @media (max-width: 767px) {
    .single-entry-thumb,
    .single-entry-featured-media {
      margin-left: -15px;
      margin-right: -15px;
    }
  }
  
  .single-entry-thumb:last-child,
  .single-entry-featured-media:last-child {
    margin-bottom: 0;
  }
  
  .page.post--single .single-entry-thumb {
    margin-bottom: 60px;
  }
  
  .single-entry-featured-media-wrap {
    margin-bottom: 20px;
  }
  
  @media (min-width: 992px) {
    .single-entry-featured-media-wrap {
      margin-bottom: 30px;
    }
  }
  
  .single-content::after,
  .entry-content::after {
    clear: both;
    content: "";
    display: table;
  }
  
  
  /*
   * Post sharing
   *--------------------*/
  
  .post-sharing>ul {
    display: inline-block;
    margin: -4px -2px;
    padding: 0;
    line-height: 0;
    list-style: none;
    vertical-align: middle;
  }
  
  .post-sharing>ul>li {
    display: inline-block;
    margin: 4px 2px;
    line-height: 0;
  }
  
  .post-sharing--simple .sharing-btn {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 768px) {
    .post-sharing--simple .sharing-btn {
      height: 34px;
      width: 34px;
    }
  }
  
  .post-sharing--simple .sharing-btn i {
    font-size: 12px;
    font-size: 0.8571rem;
  }
  
  @media (min-width: 768px) {
    .post-sharing--simple .sharing-btn i {
      font-size: 14px;
      font-size: 1rem;
    }
  }
  
  .post-sharing--simple .sharing-btn>* {
    line-height: 30px;
  }
  
  @media (min-width: 768px) {
    .post-sharing--simple .sharing-btn>* {
      line-height: 34px;
    }
  }
  
  @media (min-width: 768px) {
    .post-sharing--simple .sharing-btn-primary {
      width: auto;
      padding: 0 15px;
    }
  }
  
  .post-sharing--simple .sharing-btn-primary .sharing-btn__text {
    display: none;
  }
  
  @media (min-width: 768px) {
    .post-sharing--simple .sharing-btn-primary .sharing-btn__text {
      display: inline-block;
      margin-left: 0.4em;
    }
  }
  
  .entry-action-btn {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    height: 30px;
    min-width: 60px;
    padding: 0 10px;
    border-radius: 2px;
    background: var(--color-primary);
    color: #fff !important;
    font-size: 12px;
    text-align: center;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  }
  
  .entry-action-btn:hover,
  .entry-action-btn:active,
  .entry-action-btn:focus {
    color: inherit;
    text-decoration: none;
  }
  
  @media (min-width: 768px) {
    .entry-action-btn {
      height: 34px;
      min-width: 80px;
      padding: 0 14px;
      font-size: 14px;
    }
  }
  
  .entry-action-btn:not(:first-child) {
    margin-left: 5px;
  }
  
  .entry-action-btn i {
    margin-right: 0.4em;
    font-size: 1.2em;
  }
  
  .entry-action-btn span {
    vertical-align: middle;
  }
  
  .entry-action-btn>* {
    line-height: 30px;
  }
  
  @media (min-width: 768px) {
    .entry-action-btn>* {
      line-height: 34px;
    }
  }
  
  
  /*---- Single center ----*/
  
  .post--single-center .single-header,
  .post--single-center .post__header-inner,
  .post--single-center .entry-teaser {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  
  /*---- Single thumb top ----*/
  
  @media (max-width: 767px) {
    .single-entry--template-2 .post--single.has-post-thumbnail .single-entry-thumb {
      margin-top: -20px;
    }
  }
  
  .single-entry--template-2-alt .single-billboard .background-img:after {
    background-color: transparent;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    opacity: 1;
  }
  
  
  /*---- Single billboard ----*/
  
  .single-billboard {
    min-height: 480px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .single-billboard {
      min-height: 580px;
    }
  }
  
  @media (min-width: 992px) {
    .single-billboard {
      min-height: 680px;
      margin-bottom: 30px;
    }
  }
  
  .single-billboard--sm {
    min-height: 280px;
  }
  
  @media (min-width: 768px) {
    .single-billboard--sm {
      min-height: 380px;
    }
  }
  
  @media (min-width: 992px) {
    .single-billboard--sm {
      min-height: 480px;
    }
  }
  
  .single-billboard .single-billboard__outer {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  
  .single-billboard .single-billboard__inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: end;
    min-height: 480px;
  }
  
  @media (min-width: 768px) {
    .single-billboard .single-billboard__inner {
      min-height: 580px;
    }
  }
  
  @media (min-width: 992px) {
    .single-billboard .single-billboard__inner {
      min-height: 680px;
    }
  }
  
  .single-billboard .single-header {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  
  @media (min-width: 768px) {
    .single-billboard .single-header {
      padding: 30px 0;
    }
  }
  
  .single-entry--billboard-floorfade.single-entry--no-sidebar .single-billboard {
    margin-bottom: 10px;
  }
  
  .single-entry--billboard-floorfade .single-billboard .single-header {
    position: relative;
  }
  
  .single-entry--billboard-floorfade .single-billboard .single-header:before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  
  /*---- Single overlap thumb ----*/
  
  .single-entry--template-4 .single-header--has-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .single-entry--template-4 .single-header-with-bg,
  .single-entry--template-4-alt .single-header-with-bg {
    margin-bottom: 20px;
    padding-top: 20px;
    background-color: #12162d;
  }
  
  @media (min-width: 768px) {
    .single-entry--template-4 .single-header-with-bg,
    .single-entry--template-4-alt .single-header-with-bg {
      padding-top: 40px;
    }
  }
  
  @media (min-width: 992px) {
    .single-entry--template-4 .single-header-with-bg,
    .single-entry--template-4-alt .single-header-with-bg {
      margin-bottom: 30px;
    }
  }
  
  .single-entry--template-4-alt .single-header--has-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23000000' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .single-entry--template-4-alt .single-header-with-bg {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05) inset;
    background-color: #fafafa;
  }
  
  .single-entry--template-4 .single-header,
  .single-entry--template-4-alt .single-header {
    position: relative;
    margin-bottom: 70px;
  }
  
  @media (min-width: 992px) {
    .single-entry--template-4 .single-header,
    .single-entry--template-4-alt .single-header {
      margin-bottom: 90px;
    }
  }
  
  .single-entry--template-4.has-no-thumb .single-header,
  .single-entry--template-4-alt.has-no-thumb .single-header {
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .single-entry--template-4.has-no-thumb .single-header,
    .single-entry--template-4-alt.has-no-thumb .single-header {
      margin-bottom: 40px;
    }
  }
  
  .single-entry--template-4 .single-entry-thumb,
  .single-entry--template-4 .single-entry-featured-media,
  .single-entry--template-4-alt .single-entry-thumb,
  .single-entry--template-4-alt .single-entry-featured-media {
    position: relative;
    margin-top: -70px;
    margin-left: 0;
    margin-right: 0;
  }
  
  @media (min-width: 992px) {
    .single-entry--template-4 .single-entry-thumb,
    .single-entry--template-4 .single-entry-featured-media,
    .single-entry--template-4-alt .single-entry-thumb,
    .single-entry--template-4-alt .single-entry-featured-media {
      margin-top: -90px;
    }
  }
  
  .single-entry--template-4.single-entry--no-sidebar .single-entry-thumb,
  .single-entry--template-4.single-entry--no-sidebar .single-entry-featured-media,
  .single-entry--template-4-alt.single-entry--no-sidebar .single-entry-thumb,
  .single-entry--template-4-alt.single-entry--no-sidebar .single-entry-featured-media {
    margin-bottom: 15px;
  }
  
  
  /*---- Single cover blur ----*/
  
  .single-entry--billboard-blur.single-entry--no-sidebar .single-billboard {
    margin-bottom: 10px;
  }
  
  .single-entry--billboard-blur .single-header {
    padding-bottom: 0;
  }
  
  .single-entry--billboard-blur .single-header__inner {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-blur .single-header__inner {
      padding: 30px 40px;
    }
  }
  
  .single-entry--billboard-blur .single-billboard .background-img {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    /* fix chrome blur edge */
  }
  
  
  /*---- Single billboard overlap thumb ----*/
  
  .single-entry--billboard-overlap-title-aside .single-billboard {
    background-color: #12162d;
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .single-entry--billboard-overlap-title-aside.single-entry--no-sidebar .single-billboard {
    margin-bottom: 10px;
  }
  
  .single-entry--billboard-overlap-title-aside .single-billboard__inner {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    min-height: 300px;
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title-aside .single-billboard__inner {
      min-height: 420px;
    }
  }
  
  @media (min-width: 992px) {
    .single-entry--billboard-overlap-title-aside .single-billboard__inner {
      min-height: 520px;
    }
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title-aside .single-billboard .background-img {
      left: 40%;
    }
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title-aside .single-header__inner {
      max-width: 70%;
    }
  }
  
  @media (min-width: 992px) {
    .single-entry--billboard-overlap-title-aside .single-header__inner {
      max-width: 50%;
    }
  }
  
  .single-entry--billboard-overlap-title-aside .single-header .entry-title,
  .single-entry--billboard-overlap-title-aside .single-header .entry-teaser {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title-aside .single-header .entry-teaser,
    .single-entry--billboard-overlap-title-aside .single-header .entry-meta {
      max-width: 70%;
    }
  }
  
  
  /*---- Single cover gradient ----*/
  
  .post--single-cover-gradient .single-header {
    background-image: -webkit-linear-gradient( bottom, #fc3c2d 0%, rgba(252, 60, 45, 0.7) 50%, rgba(252, 60, 45, 0) 100%);
    background-image: linear-gradient(to top, #fc3c2d 0%, rgba(252, 60, 45, 0.7) 50%, rgba(252, 60, 45, 0) 100%);
  }
  
  
  /*---- Single cover small ----*/
  
  .post--single-cover-small .post--single__cover--small {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  
  @media (min-width: 768px) {
    .post--single-cover-small .post--single__cover--small {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .post--single-cover-small .post__header-inner {
    padding: 30px;
  }
  
  @media (min-width: 1200px) {
    .post--single-cover-small .post__header-inner {
      padding: 30px 40px;
    }
  }
  
  
  /*---- Single overlap title ----*/
  
  .single-entry--billboard-overlap-title .single-billboard {
    height: 320px;
  }
  
  @media (min-width: 992px) {
    .single-entry--billboard-overlap-title .single-billboard {
      height: 420px;
    }
  }
  
  .single-entry--billboard-overlap-title .single-header {
    position: relative;
    background: #fff;
  }
  
  .single-entry--billboard-overlap-title .single-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title .single-header:before {
      height: 150px;
    }
  }
  
  .single-entry--billboard-overlap-title .single-header--has-background {
    margin-bottom: 10px;
  }
  
  .single-entry--billboard-overlap-title .has-post-thumbnail .single-header {
    margin-top: -80px;
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title .has-post-thumbnail .single-header {
      margin-top: -110px;
    }
  }
  
  .single-entry--billboard-overlap-title .single-header__inner {
    position: relative;
    padding: 20px 20px 0;
    background: #fff;
  }
  
  @media (min-width: 768px) {
    .single-entry--billboard-overlap-title .single-header__inner {
      padding: 20px 40px 0;
    }
  }
  
  .single-entry--billboard-overlap-title .single-header--has-background .single-header__inner {
    padding-bottom: 20px;
  }
  
  .single-entry--billboard-overlap-title .single-header--fullwidth {
    margin-bottom: 40px;
  }
  
  .single-entry--billboard-overlap-title .single-header--svg-bg.single-header--has-background {
    background-color: #12162d;
  }
  
  .single-entry--billboard-overlap-title .single-header--svg-bg.single-header--has-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .single-entry--billboard-overlap-title .single-header--svg-bg:before {
    content: none;
  }
  
  .single-entry--billboard-overlap-title.billboard-overlap-alt .single-header--svg-bg.single-header--has-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23000000' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .single-entry--billboard-overlap-title .single-header--svg-bg .single-header__inner {
    background: transparent;
  }
  
  
  /*---- Single video ----*/
  
  .single-billboard--video {
    min-height: auto;
    padding: 20px 0;
    background-color: #111;
  }
  
  @media (min-width: 768px) {
    .single-billboard--video {
      padding: 40px 0;
    }
  }
  
  .single-billboard--video .single-billboard__background {
    opacity: 0.4;
  }
  
  
  /*---- Post single body ----*/
  
  .post--single .single-body {
    margin: 2em auto;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-size: 20px;
    font-family: helvetica;
  }
  
  @media (min-width: 768px) {
    .post--single .single-body {
      /*font-size: 17px;
      font-size: 1.21429rem;*/
    }
  }
  
  @media (min-width: 1200px) {
    .post--single .single-body {
      padding-left: 60px;
      padding-right: 60px;
    }
  }
  
  .post--single .single-body .mnmd-post-format-media {
    margin-bottom: 2em;
  }
  
  .single-content>.single-body:first-child {
    margin-top: 0;
  }
  
  .single-body p {
    margin-bottom: 1.6em;
  }
  
  .single-body .mnmd-gallery-wrap {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  
  .single-body .mnmd-post-media-wide {
    max-width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .single-body .mnmd-post-media-wide > a {
    display: block;
  }
  
  @media (min-width: 768px) {
    .single-body .mnmd-post-media-wide {
    max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  @media (min-width: 1200px) {
    .single-body .mnmd-post-media-wide {
    max-width: calc(100% + 120px);
      margin-left: -60px;
      margin-right: -60px;
    }
  }
  
  .single-body .mnmd-post-media-wide .wp-caption-text {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (min-width: 768px) {
    .single-body .mnmd-post-media-wide .wp-caption-text {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  @media (min-width: 992px) {
    .single-body--wide {
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  
  @media (min-width: 992px) {
    .single-body--wide .mnmd-post-media-wide {
    max-width: calc(100% + 160px);
      margin-left: -80px;
      margin-right: -80px;
    }
  }
  
  @media (min-width: 1200px) {
    .single-body .mnmd-pagination {
      margin-left: -60px;
      margin-right: -60px;
    }
  }
  
  @media (min-width: 992px) {
    .single-body--wide .mnmd-pagination {
      margin-left: -80px;
      margin-right: -80px;
    }
  }
  
  
  /*---- WordPress core ----*/
  
  
  /* Alignment */
  
  .alignleft {
    float: left;
    margin: 0.8em 1.6em 1.6em 0;
  }
  
  @media (min-width: 1200px) {
    .post.post--single .alignleft {
      margin-left: -60px;
    }
  }
  
  @media (min-width: 992px) {
    .post.post--single .single-body--wide .alignleft {
      margin-left: -80px;
    }
  }
  
  .alignright {
    float: right;
    margin: 0.8em 0 1.6em 1.6em;
  }
  
  @media (min-width: 1200px) {
    .post.post--single .alignright {
      margin-right: -60px;
    }
  }
  
  @media (min-width: 992px) {
    .post.post--single .single-body--wide .alignright {
      margin-right: -80px;
    }
  }
  
  .aligncenter {
    clear: both;
    display: block;
    margin: 0.8em auto;
  }
  
  
  /*  Caption */
  
  .wp-caption {
    max-width: 100%;
    margin-bottom: 1.6em;
    text-align: inherit;
  }
  
  .wp-caption .wp-caption-text,
  .wp-caption-dd {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.4);
    font-size: 11px;
    font-size: 0.8em;
  }
  
  .wp-caption.alignleft {
    margin: 0.8em 1.6em 1.6em 0;
    text-align: left;
  }
  
  @media (min-width: 1200px) {
    .post.post--single .wp-caption.alignleft {
      margin-left: -60px;
    }
  }
  
  @media (min-width: 992px) {
    .post.post--single .single-body--wide .wp-caption.alignleft {
      margin-left: -80px;
    }
  }
  
  .wp-caption.alignright {
    margin: 0.8em 0 1.6em 1.6em;
    text-align: right;
  }
  
  @media (min-width: 1200px) {
    .post.post--single .wp-caption.alignright {
      margin-right: -60px;
    }
  }
  
  @media (min-width: 992px) {
    .post.post--single .single-body--wide .wp-caption.alignright {
      margin-right: -80px;
    }
  }
  
  .wp-caption.aligncenter {
    margin: 0.8em auto;
    text-align: center;
  }
  
  
  /* Galleries */
  
  [class*="gallery-columns-"] {
    margin: 0 -1.79104477%;
  }
  
  .gallery-item {
    display: inline-block;
    padding: 1.79104477%;
    text-align: center;
    vertical-align: top;
    width: 100%;
  }
  
  .gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%;
  }
  
  .gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
  
  .gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%;
  }
  
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%;
  }
  
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%;
  }
  
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%;
  }
  
  .gallery .gallery-caption {
    color: rgba(0, 0, 0, 0.44);
    display: block;
    font-size: 13px;
    line-height: 1.5;
    padding: 7px 0;
  }
  
  .gallery-columns-6 .gallery-caption,
  .gallery-columns-7 .gallery-caption,
  .gallery-columns-8 .gallery-caption,
  .gallery-columns-9 .gallery-caption {
    display: none;
  }
  
  .screen-reader-text {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  }
  
  
  /*---- Single footer ----*/
  
  .entry-info {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .entry-info::after {
    clear: both;
    content: "";
    display: table;
  }
  
  @media (min-width: 768px) {
    .entry-tags {
      text-align: right;
    }
  }
  
  .entry-tags__icon,
  .entry-categories__icon {
    margin-right: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
  }
  
  .entry-tags ul,
  .entry-categories ul {
    display: inline-block;
    margin: -4px;
    padding: 0;
    vertical-align: middle;
    list-style: none;
  }
  
  .entry-tags ul>li,
  .entry-categories ul>li {
    display: inline-block;
    margin: 4px;
    line-height: 1;
  }
  
  .entry-tags ul>li>a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-size: 0.8571rem;
  }
  
  .entry-tags ul>li>a:hover {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .entry-tags ul>li:not(.entry-tags__icon)>a:before {
    content: '#';
  }
  
  
  /*---- Review box ----*/
  
  .mnmd-review {
    padding-top: 25px;
    margin-bottom: 30px;
    font-size: 16px;
    font-size: 1.1429rem;
  }
  
  @media (min-width: 1200px) {
    .single-body .mnmd-review:not(.mnmd-review--aside) {
      margin-left: -60px;
      margin-right: -60px;
    }
  }
  
  @media (min-width: 1200px) {
    .single-body--wide .mnmd-review:not(.mnmd-review--aside) {
      margin-left: -80px;
      margin-right: -80px;
    }
  }
  
  .mnmd-review__inner {
    padding: 20px;
    border-radius: 3px;
    background: #fafafa;
  }
  
  @media (min-width: 768px) {
    .mnmd-review__inner {
      padding: 30px;
    }
  }
  
  .mnmd-review__inner>*:not(:last-child) {
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .mnmd-review__top {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -moz-box-align: start;
      box-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start;
      -ms-flex-align: start;
      -webkit-box-pack: justify;
      -moz-box-pack: justify;
      box-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: justify;
    }
  }
  
  .mnmd-review__product {
    width: 100%;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  
  .mnmd-review__product-image {
    width: 60px;
  }
  
  @media (min-width: 768px) {
    .mnmd-review__product-image {
      width: 70px;
    }
  }
  
  .mnmd-review .mnmd-review__product-name {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .mnmd-review__product-byline {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .mnmd-review__overall-score {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .mnmd-review__overall-score {
      margin-top: -40px;
    }
  }
  
  @media (min-width: 1200px) {
    .mnmd-review__overall-score {
      margin-top: -50px;
    }
  }
  
  .mnmd-review__summary p:last-child {
    margin-bottom: 0;
  }
  
  .mnmd-review .mnmd-review__list-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .mnmd-review__pros ul,
  .mnmd-review__cons ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mnmd-review__pros ul li:not(:first-child),
  .mnmd-review__cons ul li:not(:first-child) {
    margin-top: .5em;
  }
  
  .mnmd-review__pros ul i,
  .mnmd-review__cons ul i {
    margin-right: 0.4em;
  }
  
  .mnmd-review__pros ul i {
    color: #59d66f;
  }
  
  .mnmd-review__cons ul i {
    color: #fa3f40;
  }
  
  
  /* Review box aside */
  
  .mnmd-review--aside {
    width: 100%;
    padding-top: 30px;
  }
  
  @media (min-width: 768px) {
    .mnmd-review--aside {
      width: 300px;
    }
  }
  
  .mnmd-review--aside .mnmd-review__inner {
    padding: 20px;
    font-size: 0.9em;
  }
  
  .mnmd-review--aside .mnmd-review__overall-score {
    margin-top: -45px;
  }
  
  .mnmd-review--aside .mnmd-review__product-image {
    width: 50px;
  }
  
  
  /*---- Author box ----*/
  
  .author-box {
    position: relative;
    padding: 30px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .author-box .author-avatar {
    height: 100px;
    width: 100px;
    margin: -50px auto 20px;
    border-radius: 100%;
    border: 4px solid #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
  }
  
  @media (min-width: 768px) {
    .author-box .author-avatar {
      margin: 0;
      position: absolute;
      top: 50%;
      right: auto;
      bottom: auto;
      left: -15px;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
    }
  }
  
  .author-box .author-avatar img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
  }
  
  .author-box__text {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .author-box__text {
      padding-left: 80px;
      text-align: left;
    }
  }
  
  .author-box .author-name span {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .author-box .author-name a {
    color: rgba(0, 0, 0, 0.8);
    color: var(--color-primary);
    font-size: 110%;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .author-box .author-bio {
    margin: 15px 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
  }
  
  .author-box .author-info {
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .author-box .author-info {
      text-align: left;
    }
  }
  
  .author-box .author-info a,
  .author-box .author-bio a {
    color: rgba(0, 0, 0, 0.6);
  }
  
  .author-box .author-info a:hover,
  .author-box .author-info a:focus,
  .author-box .author-info a:active,
  .author-box .author-bio a:hover,
  .author-box .author-bio a:focus,
  .author-box .author-bio a:active {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .author-box .author-socials ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .author-box .author-socials a {
    display: inline-block;
    font-size: 1.4rem;
    white-space: nowrap;
    text-decoration: none;
  }
  
  @media (min-width: 768px) {
    .author-box .author-all-posts {
      text-align: right;
    }
  }
  
  .author-box .author-all-posts__link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }
  
  
  /*---- Posts navigation ----*/
  
  .posts-navigation {
    padding-bottom: 20px;
  }
  
  .posts-navigation .post--overlay .post__text {
    min-height: 200px;
  }
  
  .posts-navigation .post--overlay .post__text-wrap {
    padding-bottom: 15px;
  }
  
  .posts-navigation__prev,
  .posts-navigation__next {
    position: relative;
  }
  
  @media (min-width: 768px) {
    .posts-navigation__prev,
    .posts-navigation__next {
      width: 50%;
      float: left;
    }
  }
  
  @media (min-width: 768px) {
    .posts-navigation__prev {
      padding-right: 10px;
    }
  }
  
  .posts-navigation__prev:not(:only-child) {
    margin-bottom: 35px;
  }
  
  @media (min-width: 768px) {
    .posts-navigation__prev:not(:only-child) {
      margin-bottom: 0;
    }
  }
  
  .posts-navigation__prev i {
    margin-right: 0.4em;
  }
  
  .posts-navigation__next {
    text-align: right;
  }
  
  @media (min-width: 768px) {
    .posts-navigation__next {
      padding-left: 10px;
    }
  }
  
  .posts-navigation__next i {
    margin-left: 0.4em;
  }
  
  .posts-navigation__label {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 35px;
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    color: #fff !important;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  
  .posts-navigation__label:hover,
  .posts-navigation__label:active,
  .posts-navigation__label:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .posts-navigation__label:before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    left: 20px;
    background: var(--color-primary);
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .posts-navigation>div:hover .posts-navigation__label:before {
    left: 0;
    right: 0;
  }
  
  @media (min-width: 768px) {
    .posts-navigation__prev .posts-navigation__label {
      right: 10px;
    }
  }
  
  @media (min-width: 768px) {
    .posts-navigation__next .posts-navigation__label {
      left: 10px;
    }
  }
  
  .posts-navigation__label span {
    position: relative;
  }
  
  
  /*---- Comments section ----*/
  
  .comments-title {
    margin: 0 0 2em 0;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  @media (min-width: 768px) {
    .comments-title {
      font-size: 1.3rem;
    }
  }
  
  .comments-title:before {
    content: '\e0ca';
    margin-right: 0.4em;
    font-family: 'mdicon';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1.2em;
    vertical-align: middle;
  }
  
  .comments-title__text {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .comments-title .add-comment {
    padding-left: 0.6em;
    color: rgba(0, 0, 0, 0.8);
    font-size: 90%;
    text-transform: uppercase;
  }
  
  .comment-list {
    margin-bottom: 30px;
    list-style: none;
  }
  
  .comment-list>li:not(:first-child) {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .comment-list ol.children {
    position: relative;
    padding: 0 0 0 30px;
    list-style: none;
  }
  
  @media (min-width: 768px) {
    .comment-list ol.children {
      padding-left: 65px;
    }
  }
  
  .comment-list ol.children ol.children {
    padding-left: 0;
  }
  
  @media (min-width: 768px) {
    .comment-list ol.children ol.children {
      padding-left: 50px;
    }
  }
  
  .comment-list ol.children>li {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .comment-body {
    margin-left: 65px;
    margin-bottom: 20px;
  }
  
  .pingback .comment-body {
      margin-left: 0;
  }
  
  .comment-meta {
    margin-bottom: 5px;
  }
  
  .comment-meta>*:not(:last-child) {
    margin-right: 4px;
  }
  
  .comment-author {
    position: relative;
    font-size: 1.1429rem;
    font-weight: 700;
  }
  
  @media (min-width: 768px) {
    .comment-author {
      display: inline-block;
    }
  }
  
  .comment-author>img {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 0;
    left: -65px;
    border-radius: 4px;
  }
  
  .bypostauthor>.comment-body .comment-author>img {
    border: 2px solid var(--color-primary);
  }
  
  .comment-author a {
    color: inherit;
    text-decoration: none;
  }
  
  .comment-author a:hover,
  .comment-author a:active,
  .comment-author a:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .comment-author .says {
    display: none;
  }
  
  .children .comment-author>img {
    height: 36px;
    width: 36px;
    left: -51px;
  }
  
  .children .comment-body {
    margin-left: 51px;
  }
  
  .comment-metadata {
    font-size: 12px;
    font-size: 0.85714rem;
    color: rgba(0, 0, 0, 0.4);
  }
  
  @media (min-width: 768px) {
    .comment-metadata {
      display: inline-block;
    }
    .comment-metadata:before {
      content: '\b7';
      margin-right: 4px;
      font-weight: 400;
    }
  }
  
  .comment-metadata>*:not(:last-child) {
    margin-right: 4px;
  }
  
  .comment-metadata a,
  .comment-metadata a:hover,
  .comment-metadata a:focus,
  .comment-metadata a:active,
  .comment-metadata a:visited {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
  }
  
  .comment-metadata .edit-link {
    text-transform: uppercase;
  }
  
  .comment-metadata .comment-edit-link {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }
  
  .comment-metadata .comment-edit-link:before {
    content: '\e254';
    margin-right: 0.2em;
    font-family: 'mdicon';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1.1em;
  }
  
  .comment-content {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.6;
  }
  
  .comment-content>*:last-child {
    margin-bottom: 0;
  }
  
  .comment-content .info {
    padding: 15px;
    background: #eee;
    font-style: italic;
  }
  
  .comment-content .info p:last-child {
    margin-bottom: 0;
  }
  
  .comment-reply-link {
    color: inherit;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .comment-reply-link:hover,
  .comment-reply-link:active,
  .comment-reply-link:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .comment-reply-link:hover {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .comment-reply-link:before {
    content: '\e15e';
    margin-right: 0.2em;
    font-family: 'mdicon';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1.1em;
  }
  
  .comment-respond {
    margin: 20px 0;
  }
  
  @media (min-width: 768px) {
    .comment-respond {
      margin: 40px 0 20px;
    }
  }
  
  @media (min-width: 768px) {
    .comment-list .comment-respond {
      padding: 0 0 0 65px;
    }
  }
  
  @media (min-width: 768px) {
    .comment-list .children .comment-respond {
      padding-left: 51px;
    }
  }
  
  .comment-reply-title {
    margin-top: 0;
    margin-bottom: 1em;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  @media (min-width: 768px) {
    .comment-reply-title {
      font-size: 1.142857142857143rem;
    }
  }
  
  .comment-reply-title small {
    font-size: 80%;
  }
  
  #cancel-comment-reply-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.4em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.2;
  }
  
  #cancel-comment-reply-link:hover,
  #cancel-comment-reply-link:active,
  #cancel-comment-reply-link:focus {
    color: inherit;
    text-decoration: none;
  }
  
  .comment-form .logged-in-as a {
    color: inherit;
    text-decoration: underline;
  }
  
  .comment-form .logged-in-as a:hover,
  .comment-form .logged-in-as a:active,
  .comment-form .logged-in-as a:focus {
    color: inherit;
    text-decoration: underline;
  }
  
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form input[type="password"],
  .comment-form input[type="search"],
  .comment-form input[type="tel"],
  .comment-form input[type="number"],
  .comment-form textarea {
    display: block;
  }
  
  .comment-form-comment textarea {
    max-width: 790px;
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.6;
  }
  
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    max-width: 320px;
  }
  
  .comment-form-url {
    margin-right: 0;
  }
  
  .comment-form .form-submit {
    clear: both;
    padding-top: 10px;
  }
  
  .comment-form .form-submit input[type="submit"] {
    background: var(--color-primary);
    color: #fff;
  }
  
  .comment-form .form-submit input[type="submit"]:active,
  .comment-form .form-submit input[type="submit"]:focus,
  .comment-form .form-submit input[type="submit"]:hover {
    background: #ef392b;
    color: #fff;
  }
  
  /*---- Disqus Comment ----*/
  #disqus_thread {
    padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
  .mnmd-main-col #disqus_thread {
      padding-right: 0;
      padding-left: 0;
      max-width: 100%;
  }
  @media (min-width: 768px) {
      #disqus_thread {
          max-width: 750px;
      }
  }
  @media (min-width: 992px) {
      #disqus_thread {
          max-width: 970px;
      }
  }
  @media (min-width: 1200px) {
      #disqus_thread {
          max-width: 1170px;
      }
  }
  
  /* =============================================================================
  ## THEMES
  ============================================================================= */
  
  
  
  .site-header--side-logo .header-logo:not(.header-logo--mobile),
  .list-square-bullet>li>*:before,
  .list-square-bullet-exclude-first>li:not(:first-child)>*:before,
  .mnmd-carousel-dots-b .swiper-pagination-bullet-active {
    background: var(--color-primary);
  }
  
  
  /*
   * Header 3 / Footer 4
   *--------------------*/
  
  .header-3 .header-main {
    padding: 30px 0;
    background: transparent;
  }
  
  .header-3 .mobile-header,
  .header-3 .navigation-bar {
    background: transparent;
  }
  
  .header-3 .site-header,
  .header-3 .sticky-header,
  .footer-3.site-footer {
    background: #43C6AC;
    background: -webkit-linear-gradient(-30deg, #43C6AC 0, #191654 100%);
    background: linear-gradient(-30deg, #43C6AC 0, #191654 100%);
  }
  
  
  /*
   * Header  4 / Footer 4
   *--------------------*/
  
  .header-4 .navigation-bar,
  .header-4 .mobile-header {
    background: #191654;
  }
  
  .header-4 .mnmd-mosaic .overlap-background {
    background: #191654;
    background: -webkit-linear-gradient(-270deg, #43C6AC 0, #191654 100%);
    background: linear-gradient(0deg, #43C6AC 0, #191654 100%);
  }
  
  .header-4 .navigation--main>li>a:before {
    content: none;
  }
  
  .header-4 .site-footer {
    background: #f5f5f5;
  }
  
  
  /*
   * Header  5 / Footer 5
   *--------------------*/
  
  .header-5 .navigation--main>li>a:hover,
  .header-5 .navigation--main>li>a:focus,
  .header-5 .navigation--main>li>a:active {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .header-5 .navigation--main>li>a:before {
    content: none;
  }
  
  .footer-5.site-footer {
    background-color: #4A4A4A;
    background: -webkit-linear-gradient(-450deg, #4A4A4A 0, #111 100%);
    background: linear-gradient(180deg, #4A4A4A 0, #111 100%);
  }
  
  
  /*
   * Header  6 / Footer 6
   *--------------------*/
  
  .header-6 .navigation-bar,
  .header-6 .mobile-header {
    background-color: #191654;
  }
  
  .header-6 .site-header .navigation-bar {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .header-6 .mnmd-featured-block-b .mnmd-block__background {
    background: #43C6AC;
    background: -webkit-linear-gradient(-270deg, #43C6AC 0, #191654 100%);
    background: linear-gradient(0deg, #43C6AC 0, #191654 100%);
  }
  
  .header-6 .mnmd-featured-block-b .mnmd-news-ticker__inner {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
  }
  
  .footer-6.site-footer {
    background-color: #191654;
  }
  
  
  /*
   * Header  7 / Footer 7 / Header  8 / Footer 8
   *--------------------*/
  
  .header-7 .header-main {
    position: relative;
  }
  
  .site-footer.footer-7 .site-footer__section:first-child,
  .site-footer.footer-8 .site-footer__section:first-child {
    background: #004e66;
    background: -webkit-linear-gradient(-450deg, #004e66 0, transparent 100%);
    background: linear-gradient(180deg, #004e66 0, transparent 100%);
  }
  
  .site-footer.footer-7,
  .site-footer.footer-8 {
    background: #1B1D1C;
  }
  
  
  /*
   * Footer
   *---------------------*/
  
  .site-footer.has-bg-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .bg-color-light-gray {
    background-color: #fafafa;
  }
  
  
  .bg-gradient-1 {
    background: #2af598;
    background: -webkit-linear-gradient(to left, #2af598, #009efd);
    background: linear-gradient(to left, #2af598, #009efd);
  }
  
  .bg-gradient-1-vertical {
    background: #2af598;
    background: -webkit-linear-gradient(to top, #2af598, #009efd);
    background: linear-gradient(to top, #2af598, #009efd);
  }
  
  .bg-gradient-2 {
    background: #12162d;
    background: -webkit-linear-gradient(top, #19aad1 0, #12162d 100%);
    background: linear-gradient(180deg, #19aad1 0, #12162d 100%);
  }
  
  .bg-gradient-3 {
    background: #34e89e;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #34e89e, #0f3443);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #34e89e, #0f3443);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  
  .bg-gradient-4 {
    background: #004e66;
    background: -webkit-linear-gradient(-450deg, #004e66 0, transparent 100%);
    background: linear-gradient(180deg, #004e66 0, transparent 100%);
  }
  
  .gradient-5 {
    background: #43C6AC;
    background: -webkit-linear-gradient(-495deg, #43C6AC 0, #191654 100%);
    background: linear-gradient(225deg, #43C6AC 0, #191654 100%);
  }
  
  .gradient-5-alt {
    background: #43C6AC;
    background: -webkit-linear-gradient(-430deg, #43C6AC 0, #191654 100%);
    background: linear-gradient(160deg, #43C6AC 0, #191654 100%);
  }
  
  
  /* -----------------------------------------------------------------
  ## More CSS
  ----------------------------------------------------------------- */
  
  .site-logo a:hover,
  .site-logo a:focus {
    text-decoration: none;
  }
  
  .tnm-error--notice {
    padding: 10px 15px;
    border-radius: 5px;
    background: var(--color-primary);
    color: #fff;
    margin: 30px 0;
  }
  
  
  /* Add here all your CSS customizations */
  
  .top-bar__nav .navigation li .sub-menu {
    text-align: left;
  }
  
  .module-viewmore-btn {
    clear: both;
  }
  
  
  /*--- bk-preload ---*/
  
  .bk-preload-wrapper {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 100;
  }
  
  .bk-preload-blur {
    opacity: 0.3;
  }
  
  
  /* Loading spinner */
  
  .bk-preload-wrapper:after {
    border: 2px solid #000;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 34px;
    content: "";
    width: 34px;
    height: 34px;
    display: inline-block;
    overflow: hidden;
    -moz-animation: loading-icon-spin 1000ms infinite linear;
    -webkit-animation: loading-icon-spin 1000ms infinite linear;
    animation: loading-icon-spin 1000ms infinite linear;
  }
  
  .bk-preload-wrapper:after {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -16px;
    border-width: 3px;
  }
  
  .bk-preload-wrapper:after {
    border-top-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
  }
  
  @-moz-keyframes loading-icon-spin {
    0% {
      -moz-transform: rotate(0deg);
      transform: rotate(0deg)
    }
    100% {
      -moz-transform: rotate(360deg);
      transform: rotate(360deg)
    }
  }
  
  @-webkit-keyframes loading-icon-spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg)
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
    }
  }
  
  @keyframes loading-icon-spin {
    0% {
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg)
    }
    100% {
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
    }
  }
  
  .header-logo>a .logo-text {
    font-size: 40px;
    font-weight: 600;
  }
  
  #mnmd-mobile-header .header-logo>a .logo-text {
    font-size: 22px;
    font-weight: 600;
  }
  
  .header-branding--mobile>a {
    font-size: inherit;
  }
  
  .mnmd-offcanvas__title .site-logo img {
    max-width: 140px;
  }
  
  .lwa {
    margin-bottom: 0;
  }
  
  .lwa-avatar {
    width: auto;
    height: auto;
  }
  
  .mnmd-offcanvas__section .lwa-avatar>.bk-username {
    display: inline-block !important;
    margin-left: 8px;
  }
  
  .mnmd-offcanvas__section .lwa-avatar>.bk-username a {
    text-decoration: none !important;
    color: #444;
    font-weight: bold;
    outline: 0 !important;
  }
  
  .mnmd-offcanvas__section .lwa-avatar .bk-canvas-logout {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block !important;
    margin-left: 10px;
    padding-left: 10px;
  }
  
  .mnmd-offcanvas__section .bk-canvas-logout a {
    text-decoration: none !important;
    color: #444;
    font-weight: bold;
    outline: 0 !important;
  }
  
  .mnmd-offcanvas__section .bk-lwa.navigation-bar-btn .avatar,
  .mnmd-offcanvas__section .navigation-bar-btn span,
  .mnmd-offcanvas__section .navigation-bar-btn i {
    line-height: 1;
  }
  
  .mnmd-offcanvas__section tr,
  .lwa-template-modal>.bk-lwa>table>tbody>tr {
    border-bottom: none !important;
  }
  
  .lwa-modal {
    padding: 0;
    background: none;
    width: auto;
    margin-left: 0;
  }
  
  .lwa-status,
  .bk-login-status {
    margin-bottom: 20px;
  }
  
  .lwa-avatar.bk-avatar img {
    border-radius: 50%;
  }
  
  .bk-lwa.navigation-bar-btn .avatar {
    line-height: 60px;
  }
  
  .bk-account-info {
    width: 350px;
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: auto;
    padding: 10px;
    background: #fafafa;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.03), 0 6px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(1, 0.9);
    -moz-transform: scale(1, 0.9);
    -ms-transform: scale(1, 0.9);
    -o-transform: scale(1, 0.9);
    transform: scale(1, 0.9);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    -moz-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    z-index: 30;
  }
  
  .bk-lwa:hover>.bk-account-info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
  
  .bk-lwa-profile .bk-avatar {
    width: auto;
    height: auto;
    float: left;
  }
  
  .lwa-avatar.bk-avatar img {
    border-radius: 50%;
  }
  
  .bk-lwa-profile .bk-user-data {
    padding-left: 120px;
    color: rgba(0,0,0,0.8);
    font-size: 14px;
    text-align: left;
  }
  
  .bk-lwa-profile .bk-user-data>div {
    padding: 8px;
  }
  
  .bk-lwa-profile .bk-user-data>div:hover {
    background-color: #f0f0f0;
  }
  
  .bk-lwa-profile .bk-user-data>div:first-child {
    margin-top: 0;
  }
  
  .bk-lwa-profile .bk-user-data i {
    margin-right: 5px;
    width: 17px;
    height: 17px;
    line-height: 14px;
    color: #666;
  }
  
  .bk-recover-submit input[type="submit"],
  .bk-register-submit input[type="submit"] {
    font-size: 12px;
    padding: 8px 12px;
    float: right;
    width: auto;
    text-transform: uppercase;
    background: none;
    border: 1px solid #888;
    color: #888;
  }
  
  .bk-recover-submit .bk-back-login,
  .bk-register-form-wrapper .bk-back-login {
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
    padding: 8px 12px;
    border: 1px solid #888;
    float: left;
    transform: none;
    -webkit-transform: none;
    transition: none;
    -webkit-transition: none;
  }
  
  .bk-back-login i {
    margin-right: 8px;
  }
  
  .lwa .bk-remember-form-wrapper,
  .lwa .bk-register-form-wrapper {
    margin-top: 0;
  }
  
  .lwa-modal .lwa-modal-close {
    font-size: 20px;
    top: 15px;
    right: 15px;
  }
  
  .bk-login-modal a {
    transform: none;
    -webkit-transform: none;
    transition: none;
    -webkit-transition: none;
  }
  
  .bk-lwa-profile .bk-user-data a:visited,
  .bk-lwa-profile .bk-user-data a:focus,
  .bk-lwa-profile .bk-user-data a:hover {
    text-decoration: none !important;
    color: inherit;
    outline: 0 !important;
  }
  
  .bk-lwa-profile .bk-user-data a {
    color: #444;
  }
  
  
  /** Plugins **/
  
  .apsl-login-networks a:last-child .apsl-icon-block {
    margin-right: 0;
  }
  
  span.apsl-login-new-text {
    font-weight: normal;
  }
  
  
  /** Modules **/
  
  .mnmd-horizontal-list .item-list:nth-child(3n+1) {
    clear: both;
  }
  
  
  /** Post Cat Margin **/
  
  @media (min-width: 768px) {
    .post__cat,
    a.post__cat,
    .entry-cat,
    a.entry-cat {
      font-size: 10px;
      font-size: 0.71429rem;
    }
  }
  
  
  /** Shortcode **/
  
  .mnmd-shortcode-wrap {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  
  
  /** Single **/
  
  .single-entry--template-2-alt .single-entry-featured-media {
    margin-bottom: 30px;
  }
  
  @media (max-width: 767px) {
    .single-entry--template-2-alt .single-entry-featured-media,
    .single-entry--template-2--no-sidebar .single-entry-featured-media {
      margin-left: -15px;
      margin-right: -15px;
      margin-top: -20px;
    }
  }
  
  .single-entry--template-4 .single-entry-featured-media {
    position: relative;
    margin-top: -70px;
    margin-left: 0;
    margin-right: 0;
  }
  
  @media (min-width: 992px) {
    .single-entry--template-4 .single-entry-featured-media {
      margin-top: -90px;
    }
  }
  
  .post_format-post-format-gallery .single-entry-featured-media {
    box-shadow: none;
  }
  
  .page-404-logo a {
    font-size: 50px;
    font-weight: bold;
  }
  
  .page-404-image .page-404-title {
    text-align: center;
    font-size: 120px;
    font-weight: bold;
  }
  
  
  /*Featured With OverLap (Default Thumb)*/
  
  .featured-with-overlap-posts .tnm-default-thumb {
    width: 100%;
    height: 131px;
    background: #333;
  }
  
  
  /* Ajax Load More Button */
  
  .js-ajax-load-post.tnm_loading .js-ajax-load-post-trigger i {
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
  }
  
  
  /* Safari */
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /** Update 4.3 **/
  .site-header__ads {
      text-align: right;
  }
  /** Update 5.1**/
  .author-listing-grid--layout ul li:nth-child(2n+1) {
      clear: both;
  }
  .author-listing-grid--fw-layout ul li:nth-child(3n+1) {
      clear: both;
  }
  @media (min-width: 768px) {
      div[class*="author-listing-grid-"] .author-box__text, div[class*="author-listing-grid-"] .author-box .author-info {
          padding-left: 0;
          text-align: center;
      }
      div[class*="author-listing-grid-"] .author-box .author-avatar {
          height: 100px;
          width: 100px;
          margin: -50px auto 20px;
          border-radius: 100%;
          border: 4px solid #fff;
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
          position: static;
          transform: none;
          -webkit-transform: none;
      }
  }
  /**
    * Menu To Left
    */
  .atbs-submenu-to-left .sub-menu {
      right: calc(100%) !important;
      left: auto !important;
  }
  .atbs-submenu-to-right .sub-menu{
      right: auto !important;
      bottom: auto !important;
      left: 100% !important;
  }
  
  .iphone-6 {
    display: inline-block;
    font-size: 6px;
    margin: 3em;
    position: relative;
    width: 62.5em;
    height: 111.167em;
    padding: 0.334em;
    box-sizing: content-box;
    border-radius: 9.5em; }
  
  .iphone-6::before {
    content: '';
    display: block;
    position: absolute;
    height: 3em;
    width: 1em;
    top: -6em;
    left: -4.333em;
    border-radius: 20%; }
  
  .iphone-6::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100%;
    height: 2em;
    width: 2em;
    top: -13.333em;
    left: calc(50% - 1em); }
  
  .iphone-6 > *:first-child {
    max-width: 100%; }
  
  .iphone-6.space-gray {
    border-top: 16em solid #151515;
    border-bottom: 14.5em solid #151515;
    border-left: 2.5em solid #151515;
    border-right: 2.5em solid #151515;
    background: #222;
    box-shadow: 0 -2em 0.667em -2em #222, 0 2em 0.667em -1em rgba(20, 20, 20, 0.7), 1.333em 0 0.667em -1em #111, 0 0 0 0.667em #444, 0 0 0 1em #252525, 0 0 1.667em 0.667em rgba(252, 252, 252, 0.5), 0 0 1.667em 0.667em #fcfcfc, 0 0 0 2em #445, 0 0 5.333em 2em rgba(0, 0, 0, 0.1), inset 0 0 0 0.334em #333; }
  
  .iphone-6.space-gray::before {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 120em rgba(0, 0, 0, 0.3), 71em 0 rgba(0, 0, 0, 0.3), 71em 120em rgba(0, 0, 0, 0.3), -1em 6.667em 0em -0.333em #667, -1em 8em 0em -0.333em #667, -1em 10.333em 0em -0.333em #667, -1.333em 7em 0em -0.333em #778, -1.333em 8em 0em -0.333em #778, -1.333em 10em 0em -0.333em #778, -1em 7em #444, -1em 8em #444, -1em 10em #444, -1em 19.667em 0em -0.333em #667, -1em 21em 0em -0.333em #667, -1em 23em 0em -0.333em #667, -1em 25em 0em -0.333em #667, -1em 27em 0em -0.333em #667, -1em 28.333em 0em -0.333em #667, -1.333em 20em 0em -0.333em #778, -1.333em 21em 0em -0.333em #778, -1.333em 23em 0em -0.333em #778, -1.333em 24em 0em -0.333em #778, -1.333em 26em 0em -0.333em #778, -1.333em 28em 0em -0.333em #778, -1em 20em #444, -1em 21em #444, -1em 23em #444, -1em 24em #444, -1em 26em #444, -1em 28em #444, -1em 33em 0em -0.333em #667, -1em 34em 0em -0.333em #667, -1em 36em 0em -0.333em #667, -1em 37em 0em -0.333em #667, -1em 39em 0em -0.333em #667, -1em 41.333em 0em -0.333em #667, -1.333em 33.333em 0em -0.333em #778, -1.333em 34em 0em -0.333em #778, -1.333em 36em 0em -0.333em #778, -1.333em 37em 0em -0.333em #778, -1.333em 39em 0em -0.333em #778, -1.333em 41em 0em -0.333em #778, -1em 33.333em #444, -1em 34em #444, -1em 36em #444, -1em 37em #444, -1em 39em #444, -1em 41em #444, 71.667em 19.667em 0em -0.333em #667, 71.667em 21em 0em -0.333em #667, 71.667em 23em 0em -0.333em #667, 71.667em 25em 0em -0.333em #667, 71.667em 27em 0em -0.333em #667, 71.667em 28.333em 0em -0.333em #667, 72em 20em 0em -0.333em #778, 72em 21em 0em -0.333em #778, 72em 23em 0em -0.333em #778, 72em 24em 0em -0.333em #778, 72em 26em 0em -0.333em #778, 72em 28em 0em -0.333em #778, 71.667em 20em #444, 71.667em 21em #444, 71.667em 23em #444, 71.667em 24em #444, 71.667em 26em #444, 71.667em 28em #444; }
  
  .iphone-6.space-gray::after {
    box-shadow: inset 0 0 0 0.334em #1b1b1b, -11.667em 5em 0 -0.5em rgba(50, 50, 255, 0.4), -11em 5.333em 1em -0.5em rgba(255, 255, 255, 0.3), -11.333em 5em 0.333em -0.333em #222, -11.333em 5em 0 0 #252525, -11.333em 5em 0 0.333em #333, -5.333em 5em 0 -0.333em #252525, -5em 5em 0 -0.333em #252525, -4.667em 5em 0 -0.333em #252525, -4.333em 5em 0 -0.333em #252525, -4em 5em 0 -0.333em #252525, -3.667em 5em 0 -0.333em #252525, -3.333em 5em 0 -0.333em #252525, -3em 5em 0 -0.333em #252525, -2.667em 5em 0 -0.333em #252525, -2.333em 5em 0 -0.333em #252525, -2em 5em 0 -0.333em #252525, -1.667em 5em 0 -0.333em #252525, -1.333em 5em 0 -0.333em #252525, -1em 5em 0 -0.333em #252525, -0.667em 5em 0 -0.333em #252525, -0.333em 5em 0 -0.333em #252525, 0 5em 0 -0.333em #252525, 0.333em 5em 0 -0.333em #252525, 0.667em 5em 0 -0.333em #252525, 1em 5em 0 -0.333em #252525, 1.333em 5em 0 -0.333em #252525, 1.667em 5em 0 -0.333em #252525, 2em 5em 0 -0.333em #252525, 2.333em 5em 0 -0.333em #252525, 2.667em 5em 0 -0.333em #252525, 3em 5em 0 -0.333em #252525, 3.333em 5em 0 -0.333em #252525, 3.667em 5em 0 -0.333em #252525, 4em 5em 0 -0.333em #252525, 4.333em 5em 0 -0.333em #252525, 4.667em 5em 0 -0.333em #252525, 5em 5em 0 -0.333em #252525, 5.333em 5em 0 -0.333em #252525, 0 132em 2em 3em #1c1c1c, 0 132em 0 4em #151515, -2em 132em 2em 2.75em #151515, 3em 132em 2em 2.75em #151515, 0 132em 0 4.75em rgba(95, 95, 95, 0.4), 3em 129em 0 3em #151515, 0 126em 0 0em #151515, -3em 129em 0 3em #151515, 0 132em 0 4.75em #777; }
  
  .iphone-6.space-gray.landscape {
    border-left: 16em solid #151515;
    border-right: 14.5em solid #151515;
    border-bottom: 2.5em solid #151515;
    border-top: 2.5em solid #151515;
    width: 111.167em;
    height: 62.5em; }
  
  .iphone-6.space-gray.landscape::before {
    height: 1em;
    width: 3em;
    left: -6em;
    top: -4.333em;
    box-shadow: 120em 0 rgba(0, 0, 0, 0.3), 0 71em rgba(0, 0, 0, 0.3), 120em 71em rgba(0, 0, 0, 0.3), 6.667em 71.667em 0em -0.333em #667, 8em 71.667em 0em -0.333em #667, 10.333em 71.667em 0em -0.333em #667, 7em 72em 0em -0.333em #778, 8em 72em 0em -0.333em #778, 10em 72em 0em -0.333em #778, 7em 71.667em #444, 8em 71.667em #444, 10em 71.667em #444, 19.667em -1em 0em -0.333em #667, 21em -1em 0em -0.333em #667, 23em -1em 0em -0.333em #667, 25em -1em 0em -0.333em #667, 27em -1em 0em -0.333em #667, 28.333em -1em 0em -0.333em #667, 20em -1.333em 0em -0.333em #778, 21em -1.333em 0em -0.333em #778, 23em -1.333em 0em -0.333em #778, 24em -1.333em 0em -0.333em #778, 26em -1.333em 0em -0.333em #778, 28em -1.333em 0em -0.333em #778, 20em -1em #444, 21em -1em #444, 23em -1em #444, 24em -1em #444, 26em -1em #444, 28em -1em #444, 33em 71.667em 0em -0.333em #667, 34em 71.667em 0em -0.333em #667, 36em 71.667em 0em -0.333em #667, 37em 71.667em 0em -0.333em #667, 39em 71.667em 0em -0.333em #667, 41.333em 71.667em 0em -0.333em #667, 33.333em 72em 0em -0.333em #778, 34em 72em 0em -0.333em #778, 36em 72em 0em -0.333em #778, 37em 72em 0em -0.333em #778, 39em 72em 0em -0.333em #778, 41em 72em 0em -0.333em #778, 33.333em 71.667em #444, 34em 71.667em #444, 36em 71.667em #444, 37em 71.667em #444, 39em 71.667em #444, 41em 71.667em #444, 19.667em 71.667em 0em -0.333em #667, 21em 71.667em 0em -0.333em #667, 23em 71.667em 0em -0.333em #667, 25em 71.667em 0em -0.333em #667, 27em 71.667em 0em -0.333em #667, 28.333em 71.667em 0em -0.333em #667, 20em 72em 0em -0.333em #778, 21em 72em 0em -0.333em #778, 23em 72em 0em -0.333em #778, 24em 72em 0em -0.333em #778, 26em 72em 0em -0.333em #778, 28em 72em 0em -0.333em #778, 20em 71.667em #444, 21em 71.667em #444, 23em 71.667em #444, 24em 71.667em #444, 26em 71.667em #444, 28em 71.667em #444; }
  
  .iphone-6.space-gray.landscape::after {
    left: -13.333em;
    top: 31.333em;
    box-shadow: inset 0 0 0 0.334em #1b1b1b, 5em 11.667em 0 -0.5em rgba(50, 50, 255, 0.4), 5.333em 11em 1em -0.5em rgba(255, 255, 255, 0.3), 5em 11.333em 0.333em -0.333em #222, 5em 11.333em 0 0 #252525, 5em 0 11.333em 0.333em #333, 4.667em 11.667em 0 -0.833em rgba(255, 255, 255, 0.3), 5em 11.333em 0 0 #444, 5em 11.333em 0 0.333em #333, 5em -5.333em 0 -0.333em #252525, 5em -5em 0 -0.333em #252525, 5em -4.667em 0 -0.333em #252525, 5em -4.333em 0 -0.333em #252525, 5em -4em 0 -0.333em #252525, 5em -3.667em 0 -0.333em #252525, 5em -3.333em 0 -0.333em #252525, 5em -3em 0 -0.333em #252525, 5em -2.667em 0 -0.333em #252525, 5em -2.333em 0 -0.333em #252525, 5em -2em 0 -0.333em #252525, 5em -1.667em 0 -0.333em #252525, 5em -1.333em 0 -0.333em #252525, 5em -1em 0 -0.333em #252525, 5em -0.667em 0 -0.333em #252525, 5em -0.333em 0 -0.333em #252525, 5em 0 0 -0.333em #252525, 5em 0.333em 0 -0.333em #252525, 5em 0.667em 0 -0.333em #252525, 5em 1em 0 -0.333em #252525, 5em 1.333em 0 -0.333em #252525, 5em 1.667em 0 -0.333em #252525, 5em 2em 0 -0.333em #252525, 5em 2.333em 0 -0.333em #252525, 5em 2.667em 0 -0.333em #252525, 5em 3em 0 -0.333em #252525, 5em 3.333em 0 -0.333em #252525, 5em 3.667em 0 -0.333em #252525, 5em 4em 0 -0.333em #252525, 5em 4.333em 0 -0.333em #252525, 5em 4.667em 0 -0.333em #252525, 5em 5em 0 -0.333em #252525, 5em 5.333em 0 -0.333em #252525, 132em 0 2em 3em #1c1c1c, 132em 0 0 4em #151515, 134em 0 2em 2.75em #151515, 129em 0 2em 2.5em #151515, 132em 0 0 4.75em rgba(95, 95, 95, 0.4), 135em -3em 0 3em #151515, 132em -6em 0 0em #151515, 129em -3em 0 3em #151515, 132em 0 0 4.75em #667; }
  
  .iphone-6.silver {
    border-top: 16em solid #f8f8f8;
    border-bottom: 14.5em solid #f5f5f5;
    border-left: 2.5em solid #f8f8f8;
    border-right: 2.5em solid #f5f5f5;
    background: #e5e5e5;
    box-shadow: 0 0 0 0.667em #fcfcfc, 0 0 0 0.8em #d9dbdc, 0 0 1.667em 0.667em rgba(252, 252, 252, 0.5), 0 0 1.667em 0.667em #fcfcfc, 0 0 0 1.667em #d9dbdc, 0 0 0 2em #bbb, 0 0 5.333em 2em rgba(0, 0, 0, 0.1), inset 0 0 0 0.334em #888; }
  
  .iphone-6.silver::before {
    background: #cbcbcb;
    box-shadow: 0 120em #cbcbcb, 70.667em 0 #cbcbcb,  70.667em 120em #cbcbcb,  -1em 7em #b0b0b0,  -1em 8em #b0b0b0,  -1em 10em #b0b0b0,  -1em 20em #b0b0b0,  -1em 21em #b0b0b0,  -1em 23em #b0b0b0,  -1em 24em #b0b0b0,  -1em 26em #b0b0b0,  -1em 28em #b0b0b0,  -1em 33.333em #b0b0b0,  -1em 34em #b0b0b0,  -1em 36em #b0b0b0,  -1em 37em #b0b0b0,  -1em 39em #b0b0b0,  -1em 41em #b0b0b0,  71.667em 20em #b0b0b0,  71.667em 21em #b0b0b0,  71.667em 23em #b0b0b0,  71.667em 24em #b0b0b0,  71.667em 26em #b0b0b0,  71.667em 28em #b0b0b0; }
  
  .iphone-6.silver::after {
    background: #3c3d3d;
    box-shadow: -12em 5em 0 -0.667em rgba(100, 100, 255, 0.5), -11em 5.333em 1em -0.5em rgba(255, 255, 255, 0.3), -11.333em 5em 0 0 #3c3d3d, -11.333em 5em 0 0.333em #555, -5.333em 5em 0 -0.333em #3c3d3d, -5em 5em 0 -0.333em #3c3d3d, -4.667em 5em 0 -0.333em #3c3d3d, -4.333em 5em 0 -0.333em #3c3d3d, -4em 5em 0 -0.333em #3c3d3d, -3.667em 5em 0 -0.333em #3c3d3d, -3.333em 5em 0 -0.333em #3c3d3d, -3em 5em 0 -0.333em #3c3d3d, -2.667em 5em 0 -0.333em #3c3d3d, -2.333em 5em 0 -0.333em #3c3d3d, -2em 5em 0 -0.333em #3c3d3d, -1.667em 5em 0 -0.333em #3c3d3d, -1.333em 5em 0 -0.333em #3c3d3d, -1em 5em 0 -0.333em #3c3d3d, -0.667em 5em 0 -0.333em #3c3d3d, -0.333em 5em 0 -0.333em #3c3d3d, 0 5em 0 -0.333em #3c3d3d, 0.333em 5em 0 -0.333em #3c3d3d, 0.667em 5em 0 -0.333em #3c3d3d, 1em 5em 0 -0.333em #3c3d3d, 1.333em 5em 0 -0.333em #3c3d3d, 1.667em 5em 0 -0.333em #3c3d3d, 2em 5em 0 -0.333em #3c3d3d, 2.333em 5em 0 -0.333em #3c3d3d, 2.667em 5em 0 -0.333em #3c3d3d, 3em 5em 0 -0.333em #3c3d3d, 3.333em 5em 0 -0.333em #3c3d3d, 3.667em 5em 0 -0.333em #3c3d3d, 4em 5em 0 -0.333em #3c3d3d, 4.333em 5em 0 -0.333em #3c3d3d, 4.667em 5em 0 -0.333em #3c3d3d, 5em 5em 0 -0.333em #3c3d3d, 5.333em 5em 0 -0.333em #3c3d3d, -5.667em 5.333em 0 -0.333em #e0e0e0, -5.333em 5.333em 0 -0.333em #e0e0e0, -5em 5.333em 0 -0.333em #e0e0e0, -4.667em 5.333em 0 -0.333em #e0e0e0, -4.333em 5.333em 0 -0.333em #e0e0e0, -4em 5.333em 0 -0.333em #e0e0e0, -3.667em 5.333em 0 -0.333em #e0e0e0, -3.333em 5.333em 0 -0.333em #e0e0e0, -3em 5.333em 0 -0.333em #e0e0e0, -2.667em 5.333em 0 -0.333em #e0e0e0, -2.333em 5.333em 0 -0.333em #e0e0e0, -2em 5.333em 0 -0.333em #e0e0e0, -1.667em 5.333em 0 -0.333em #e0e0e0, -1.333em 5.333em 0 -0.333em #e0e0e0, -1em 5.333em 0 -0.333em #e0e0e0, -0.667em 5.333em 0 -0.333em #e0e0e0, -0.333em 5.333em 0 -0.333em #e0e0e0, 0 5.333em 0 -0.333em #e0e0e0, 0.333em 5.333em 0 -0.333em #e0e0e0, 0.667em 5.333em 0 -0.333em #e0e0e0, 1em 5.333em 0 -0.333em #e0e0e0, 1.333em 5.333em 0 -0.333em #e0e0e0, 1.667em 5.333em 0 -0.333em #e0e0e0, 2em 5.333em 0 -0.333em #e0e0e0, 2.333em 5.333em 0 -0.333em #e0e0e0, 2.667em 5.333em 0 -0.333em #e0e0e0, 3em 5.333em 0 -0.333em #e0e0e0, 3.333em 5.333em 0 -0.333em #e0e0e0, 3.667em 5.333em 0 -0.333em #e0e0e0, 4em 5.333em 0 -0.333em #e0e0e0, 4.333em 5.333em 0 -0.333em #e0e0e0, 4.667em 5.333em 0 -0.333em #e0e0e0, 5em 5.333em 0 -0.333em #e0e0e0, 0 132em 2em 3em #f8f8f8, 0 132em 0 4em #eee, 0 132em 0 4.75em rgba(170, 170, 170, 0.4), 3em 129em 0 3em #f5f5f5, 0 126em 0 0em #f5f5f5, -3em 129em 0 3em #f5f5f5, 0 132em 0 4.75em #aaa, -0.333em 132.333em 0 4.667em #e0e0e0, -0.667em 132.667em 0 4.667em #f0f0f0; }
  
  .iphone-6.silver.landscape {
    border-left: 16em solid #f8f8f8;
    border-right: 14.5em solid #f5f5f5;
    border-bottom: 2.5em solid #f5f5f5;
    border-top: 2.5em solid #f8f8f8;
    width: 111.167em;
    height: 62.5em; }
  
  .iphone-6.silver.landscape::before {
    height: 1em;
    width: 3em;
    left: -6em;
    top: -4.333em;
    box-shadow: 120em 0 #cbcbcb, 0 70.667em #cbcbcb,  120em 70.667em #cbcbcb,  7em 71.667em #b0b0b0,  8em 71.667em #b0b0b0,  10em 71.667em #b0b0b0,  20em -1em #b0b0b0,  21em -1em #b0b0b0,  23em -1em #b0b0b0,  24em -1em #b0b0b0,  26em -1em #b0b0b0,  28em -1em #b0b0b0,  33.333em 71.667em #b0b0b0,  34em 71.667em #b0b0b0,  36em 71.667em #b0b0b0,  37em 71.667em #b0b0b0,  39em 71.667em #b0b0b0,  41em 71.667em #b0b0b0,  20em 71.667em #b0b0b0,  21em 71.667em #b0b0b0,  23em 71.667em #b0b0b0,  24em 71.667em #b0b0b0,  26em 71.667em #b0b0b0,  28em 71.667em #b0b0b0; }
  
  .iphone-6.silver.landscape::after {
    left: -13.333em;
    top: 31.333em;
    box-shadow: 4.667em 11.667em 0 -0.667em rgba(100, 100, 255, 0.5), 5.333em 11em 1em -0.5em rgba(255, 255, 255, 0.3), 5em 11.333em 0 0 #3c3d3d, 5em 11.333em 0 0.333em #555, 5em -5.333em 0 -0.333em #3c3d3d, 5em -5em 0 -0.333em #3c3d3d, 5em -4.667em 0 -0.333em #3c3d3d, 5em -4.333em 0 -0.333em #3c3d3d, 5em -4em 0 -0.333em #3c3d3d, 5em -3.667em 0 -0.333em #3c3d3d, 5em -3.333em 0 -0.333em #3c3d3d, 5em -3em 0 -0.333em #3c3d3d, 5em -2.667em 0 -0.333em #3c3d3d, 5em -2.333em 0 -0.333em #3c3d3d, 5em -2em 0 -0.333em #3c3d3d, 5em -1.667em 0 -0.333em #3c3d3d, 5em -1.333em 0 -0.333em #3c3d3d, 5em -1em 0 -0.333em #3c3d3d, 5em -0.667em 0 -0.333em #3c3d3d, 5em -0.333em 0 -0.333em #3c3d3d, 5em 0 0 -0.333em #3c3d3d, 5em 0.333em 0 -0.333em #3c3d3d, 5em 0.667em 0 -0.333em #3c3d3d, 5em 1em 0 -0.333em #3c3d3d, 5em 1.333em 0 -0.333em #3c3d3d, 5em 1.667em 0 -0.333em #3c3d3d, 5em 2em 0 -0.333em #3c3d3d, 5em 2.333em 0 -0.333em #3c3d3d, 5em 2.667em 0 -0.333em #3c3d3d, 5em 3em 0 -0.333em #3c3d3d, 5em 3.333em 0 -0.333em #3c3d3d, 5em 3.667em 0 -0.333em #3c3d3d, 5em 4em 0 -0.333em #3c3d3d, 5em 4.333em 0 -0.333em #3c3d3d, 5em 4.667em 0 -0.333em #3c3d3d, 5em 5em 0 -0.333em #3c3d3d, 5em 5.333em 0 -0.333em #3c3d3d, 5.333em -5.333em 0 -0.333em #e0e0e0, 5.333em -5em 0 -0.333em #e0e0e0, 5.333em -4.667em 0 -0.333em #e0e0e0, 5.333em -4.333em 0 -0.333em #e0e0e0, 5.333em -4em 0 -0.333em #e0e0e0, 5.333em -3.667em 0 -0.333em #e0e0e0, 5.333em -3.333em 0 -0.333em #e0e0e0, 5.333em -3em 0 -0.333em #e0e0e0, 5.333em -2.667em 0 -0.333em #e0e0e0, 5.333em -2.333em 0 -0.333em #e0e0e0, 5.333em -2em 0 -0.333em #e0e0e0, 5.333em -1.667em 0 -0.333em #e0e0e0, 5.333em -1.333em 0 -0.333em #e0e0e0, 5.333em -1em 0 -0.333em #e0e0e0, 5.333em -0.667em 0 -0.333em #e0e0e0, 5.333em -0.333em 0 -0.333em #e0e0e0, 5.333em 0 0 -0.333em #e0e0e0, 5.333em 0.333em 0 -0.333em #e0e0e0, 5.333em 0.667em 0 -0.333em #e0e0e0, 5.333em 1em 0 -0.333em #e0e0e0, 5.333em 1.333em 0 -0.333em #e0e0e0, 5.333em 1.667em 0 -0.333em #e0e0e0, 5.333em 2em 0 -0.333em #e0e0e0, 5.333em 2.333em 0 -0.333em #e0e0e0, 5.333em 2.667em 0 -0.333em #e0e0e0, 5.333em 3em 0 -0.333em #e0e0e0, 5.333em 3.333em 0 -0.333em #e0e0e0, 5.333em 3.667em 0 -0.333em #e0e0e0, 5.333em 4em 0 -0.333em #e0e0e0, 5.333em 4.333em 0 -0.333em #e0e0e0, 5.333em 4.667em 0 -0.333em #e0e0e0, 5.333em 5em 0 -0.333em #e0e0e0, 5.333em 5.333em 0 -0.333em #e0e0e0, 5.333em 5.667em 0 -0.333em #e0e0e0, 132em 0 2em 3em #f8f8f8, 132em 0 0 4em #eee, 132em 0 0 4.75em rgba(170, 170, 170, 0.4), 135em -3em 0 3em #f5f5f5, 132em -6em 0 0em #f5f5f5, 129em -3em 0 3em #f5f5f5, 132em 0 0 4.75em #aaa, 131.667em 0.333em 0 4.667em #e0e0e0, 131.333em 0.667em 0 4.667em #f0f0f0; }
  
  .imac {
    display: inline-block;
    position: relative;
    font-size: 6px;
    height: 120em;
    width: 213.334em;
    margin-bottom: 28em;
    box-sizing: content-box;
    border-radius: 5.67em;
    padding: 9.5em 9.5em 8.84em 9.5em;
    box-shadow: inset 9.5em 0 #111, inset -9.5em 0 #111, inset 0 9.5em #111, inset 0 -8.84em #111;
    border-bottom: 21em solid transparent;
    perspective: 8.34em;
    -webkit-perspective: 8.34em;
    background: linear-gradient(45deg, #898a8c, #e1e2e4); }
  
  .imac::before {
    content: '';
    position: absolute;
    top: calc(100% + 21em);
    left: calc(50% - 60em);
    width: 120em;
    height: 40em;
    background: radial-gradient(farthest-side at right top, #7e7e7f, transparent) bottom 3em left 13em, radial-gradient(farthest-side at left top, #7e7e7f, transparent) bottom 3em right 13em, radial-gradient(farthest-side at center bottom, #a1a1a3, transparent) bottom 1em left 15em, radial-gradient(farthest-side at center bottom, #a1a1a3, transparent) bottom 1em left 6em, radial-gradient(farthest-side at center bottom, #a1a1a3, transparent) bottom 1em right 6em, linear-gradient(0deg, #e7e7e9 5%, #79797b 11%, #828280 17%, #9e9ea0 20%, #f1f1f1 30%, #eaeaea 40%, #77787c 100%) top left 17em, linear-gradient(#e7e7e9, #e7e7e9) bottom 1em left 14em, linear-gradient(-15deg, #e7e7e9 48%, transparent 52%) bottom 1em left, linear-gradient(15deg, #e7e7e9 48%, transparent 52%) bottom 1em right, linear-gradient(45deg, #9b9b9d 0%, #ececee 10%, #ececee 90%, #9b9b9d 100%) bottom left, radial-gradient(farthest-side at left top, transparent 48%, #7e7e7f 50%) top 23em left 14em, radial-gradient(farthest-side at right top, transparent 48%, #7e7e7f 50%) top 23em right 14em;
    background-size: 4em 2em, 4em 2em, 90em 10em,  90em 4em, 90em 4em,  86em 39em,  92em 4em,  14em 4em,  14em 4em,  100% 1em,  7em 24em,  7em 24em;
    border-bottom-left-radius: 23.34em 0.34em;
    border-bottom-right-radius: 23.34em 0.34em;
    background-repeat: no-repeat;
    transform-origin: top;
    transform: rotateX(3deg) scale3d(0.54, 0.4, 1);
    -webkit-transform-origin: top;
    -webkit-transform: rotateX(3deg) scale3d(0.54, 0.4, 1);
    box-shadow: 0 2.3em 1.34em -2em, 0 2em 1.34em -2em; }
  
  .imac::after {
    content: '';
    position: absolute;
    top: 130.8em;
    left: 103.17em;
    transform: scale(0.19);
    -webkit-transform: scale(0.19);
    width: 25.17em;
    height: 25.17em;
    background: #111;
    background-clip: content-box;
    box-sizing: border-box;
    padding: 1.67em;
    border-radius: 166.67em;
    box-shadow: 1.67em -738.34em 8.34em -8.34em #111, 1.67em -734.84em 0 -10em #474956, 1.67em -734.84em 0 -8.34em #1b1c26, 1.67em -734.84em 0 -6.67em #36373a, inset 14.17em 11.34em #c4c5c7,   30em 28em 0 #c4c5c7,  13em 24em 0 #111,  13em 36.17em 0 #111,  12em 38.5em 0 #111,  10.5em 41em 0 #111,  11em 46.67em 0 -5.17em #111,  12.17em 47em 0 -5.17em #111,  13.34em 45.84em 0 -5.17em #111,  6em 45.17em 0 -5.17em #111,  2.84em 44.84em 0 -5.17em #111,  -1.5em 45.5em 0 -5.17em #111,  -3.5em 46.17em 0 -5.17em #111,  -6.17em 47.17em 0 -5.17em #111,  -4em 33em 0 3.84em #111,  -4.17em 35.67em 0 2.84em #111,  -3.84em 40.34em 0 #111,  -5.34em 39.67em 0 #111,  -5.17em 42.5em 0 -1.34em #111,  -5.67em 44.34em 0 -2.84em #111,  1.34em 42.67em 0 -2.84em #111,  4.5em 42.67em 0 -2.84em #111,  -9.84em 32.34em 0 -1.67em #111,  -10.17em 30.17em 0 -1.67em #111,  -10.17em 27.84em 0 -1.67em #111,  -9.84em 25.84em 0 -1.67em #111,  -9.17em 24em 0 -1.67em #111,  -8.17em 22.67em 0 -1.67em #111,  -6.67em 22.84em 0 -1.67em #111,  -4.34em 23.5em 0 -1.67em #111,  -1.34em 24.34em 0 -1.67em #111,  7.17em 24em 0 -1.67em #111,  10.34em 23em 0 -1.67em #111,  3em 24.67em 0 -1.67em #111; }
  
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .imac::after {
      background: transparent;
      box-shadow: 1.67em -738.34em 8.34em -8.34em #111, 1.67em -734.84em 0 -10em #474956, 1.67em -734.84em 0 -8.34em #1b1c26, 1.67em -734.84em 0 -6.67em #36373a, inset 14.17em 11.34em #c5c6c8,  inset -64em -64.17em 0 -80.5em #111,  30em 28em 0.67em #c5c6c8,  13em 24em 0.67em #111,  13em 36.17em 0.67em #111,  12em 38.5em 0.67em #111,  10.5em 41em 0.67em #111,  11em 46.67em 1.17em -5.17em #111,  12.17em 47em 1.17em -5.17em #111,  13.34em 45.84em 1.17em -5.17em #111,  6em 45.17em 1.17em -5.17em #111,  2.84em 44.84em 1.17em -5.17em #111,  -1.5em 45.5em 1.17em -5.17em #111,  -3.5em 46.17em 1.17em -5.17em #111,  -6.17em 47.17em 1.17em -5.17em #111,  -4em 33em 1.17em 3.84em #111,  -4.17em 35.67em 1.17em 2.84em #111,  -3.84em 40.34em 0.67em #111,  -5.34em 39.67em 0.67em #111,  -5.17em 42.5em 1.17em -1.34em #111,  -5.67em 44.34em 1.17em -2.84em #111,  1.34em 42.67em 1.17em -2.84em #111,  4.5em 42.67em 1.17em -2.84em #111,  -9.84em 32.34em 1.17em -1.67em #111,  -10.17em 30.17em 1.17em -1.67em #111,  -10.17em 27.84em 1.17em -1.67em #111,  -9.84em 25.84em 1.17em -1.67em #111,  -9.17em 24em 1.17em -1.67em #111,  -8.17em 22.67em 1.17em -1.67em #111,  -6.67em 22.84em 1.17em -1.67em #111,  -4.34em 23.5em 1.17em -1.67em #111,  -1.34em 24.34em 1.17em -1.67em #111,  7.17em 24em 1.17em -1.67em #111,  10.34em 23em 1.17em -1.67em #111,  3em 24.67em 1.17em -1.67em #111; } }
  .macbook-air {
    display: inline-block;
    position: relative;
    text-align: left;
    width: 133.35em;
    height: 91em;
    font-size: 6px;
    box-sizing: border-box;
    border-radius: 5.17em;
    border-bottom-left-radius: 3em;
    border-bottom-right-radius: 3em;
    margin: 0 15em 4em 15em;
    padding: 6.67em 6.67em 9.34em 6.67em;
    box-shadow: 0 2em 1em -2em, inset 0 0 0.17em #666, inset 0 0 0 0.5em #fafafb, inset 0 0 0.17em 0.67em rgba(255, 255, 255, 0.4), inset 0 -15em 16.67em -16.67em rgba(0, 0, 0, 0.5), inset 0 -2em 0.5em -1em #aaa, inset 0 0 0 1em #252525, inset 0 0 0 1.17em rgba(255, 255, 255, 0.4), inset 50em 50em 33.34em -58.34em rgba(0, 0, 0, 0.1), inset 50em 50em 50em -50em rgba(0, 0, 0, 0.2), inset -33.34em -41.67em 33.34em -50em #c5c4c9, inset 0 6.17em 0.17em #efeff2, inset 6.17em 0 0.17em #efeff2, inset -6.17em 0 0.17em #efeff2, inset 0 -8.67em 0.17em #efeff2, inset 0 6.5em #fff, inset 6.5em 0 #fff, inset -6.5em -6.5em #fff, inset 0 -9.1em #fff, inset 0 6.67em #888, inset 6.67em 0 #888, inset -6.66em -6.67em #888, inset 0 -9.17em #888, inset 0 0 0 166.67em #222, 0 0 0.17em #000; }
  
  .macbook-air::before {
    content: 'MacBook';
    font-family: MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, 'Myriad Pro', 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 2.4em;
    text-shadow: 31.39em -2.3em #444;
    color: transparent;
    position: absolute;
    bottom: -1.12em;
    left: -6.25em;
    width: 67.99em;
    height: 1.53em;
    border-bottom-left-radius: 13.89em 1.39em;
    border-bottom-right-radius: 13.89em 1.39em;
    box-shadow: inset -0.42em 0 0.42em -0.42em rgba(0, 0, 0, 0.7), inset 0.42em 0 0.42em -0.42em rgba(0, 0, 0, 0.7), inset 0 6.81em 0.42em -6.95em rgba(0, 0, 0, 0.7), inset 0 7.16em 0.14em -6.95em rgba(255, 255, 255, 0.9), inset 0 -694.87em 1.67em -694.45em #000, inset 0em -0.91em 0.21em #abaab0, inset 27.92em 0 0.07em #abaab0, inset 27.92em -0.07em #ddd, inset -27.92em 0 #abaab0, inset -27.92em -0.07em #ddd, inset 0em -0.98em 0 #ddd, inset 0em -1.05em #bebbc5, inset 28.34em -0.07em 0.42em rgba(0, 0, 0, 0.5), inset 27.92em 0 0.42em rgba(0, 0, 0, 0.4), inset -28.34em -0.07em 0.42em rgba(0, 0, 0, 0.5), inset -27.92em 0 0.42em rgba(0, 0, 0, 0.4), 0 0 0.07em #000, 0 0.77em 0.42em -0.7em #000, inset 0 1.5em #fff; }
  
  .macbook-air::after {
    content: 'Air';
    white-space: nowrap;
    font-family: MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, 'Myriad Pro', Verdana, sans-serif;
    color: #444;
    font-size: 2.4em;
    position: absolute;
    bottom: 1.88em;
    left: 53%;
    width: 0.84em;
    height: 0.84em;
    border-radius: 100%;
    box-shadow: -2.02em -33.89em 0 -0.35em rgba(255, 255, 255, 0.5), -2.09em -34.03em 0 -0.28em #333, -2.09em -34.03em 0 -0.14em #444, -2.09em -34.03em 0 -0.07em #222, -2.09em -34.03em 0.07em rgba(255, 255, 255, 0.5), -13.69em 2.78em 0 -0.35em #444, -13.6em 2.78em 0 -0.35em #444, -13.55em 2.78em 0 -0.35em #444, -13.5em 2.78em 0 -0.35em #444, -13.41em 2.78em 0 -0.35em #444, -13.35em 2.78em 0 -0.35em #444, -13.27em 2.78em 0 -0.35em #444, 8.69em 2.78em 0 -0.35em #444, 8.75em 2.78em 0 -0.35em #444, 8.82em 2.78em 0 -0.35em #444, 8.88em 2.78em 0 -0.35em #444, 8.96em 2.78em 0 -0.35em #444, 9.05em 2.78em 0 -0.35em #444, 9.1em 2.78em 0 -0.35em #444; }
  
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .macbook-air {
      border-radius: 4.84em;
      border-bottom-left-radius: 3em;
      border-bottom-right-radius: 3em;
      box-shadow: 0 2em 1em -2em, inset 0 0 0.17em #666, inset 0.5em 0.5em #fafafb, inset -0.5em 0.5em #fafafb, inset 0.5em -0.5em #fafafb, inset -0.5em -0.5em #fafafb, inset 0.67em 0.67em 0.17em rgba(255, 255, 255, 0.4), inset -0.67em 0.67em 0.17em rgba(255, 255, 255, 0.4), inset 0.67em -0.67em 0.17em rgba(255, 255, 255, 0.4), inset -0.67em -0.67em 0.17em rgba(255, 255, 255, 0.4), inset 0 -15em 16.67em -16.67em rgba(0, 0, 0, 0.5), inset 0 -2em 0.5em -1em #aaa, inset 1em 1em #252525, inset -1em 1em #252525, inset 1em -1em #252525, inset -1em -1em #252525, inset 1.17em 1.17em rgba(255, 255, 255, 0.4), inset -1.17em 1.17em rgba(255, 255, 255, 0.4), inset 1.17em -1.17em rgba(255, 255, 255, 0.4), inset -1.17em -1.17em rgba(255, 255, 255, 0.4), inset 50em 50em 33.34em -58.34em rgba(0, 0, 0, 0.1), inset 50em 50em 50em -50em rgba(0, 0, 0, 0.2), inset -33.34em -41.67em 33.34em -50em #c5c4c9, inset 0 6.17em 0.17em #efeff2, inset 6.17em 0 0.17em #efeff2, inset -6.17em 0 0.17em #efeff2, inset 0 -8.67em 0.17em #efeff2, inset 0 6.5em #fff, inset 6.5em 0 #fff, inset -6.5em -6.5em #fff, inset 0 -9.2em #fff, inset 0 6.67em #888, inset 6.67em 0 #888, inset -6.67em -6.67em #888, inset 0 -9.3em #888, inset 0 0 0 166.67em #222, 0 0 0.17em #000; } }
  @-moz-document url-prefix() {
    .macbook-air::before {
      box-shadow: inset -0.42em 0 0.42em -0.42em rgba(0, 0, 0, 0.4), inset 0.42em 0 0.42em -0.42em rgba(0, 0, 0, 0.4), inset 0 6.81em 0.42em -6.95em rgba(0, 0, 0, 0.4), inset 0 7.16em 0.14em -6.95em rgba(255, 255, 255, 0.95), inset 0 -694.87em 1.39em -694.45em #000, inset 0em -0.91em 0.21em #abaab0, inset 27.92em 0 0.07em #abaab0, inset 27.92em -0.07em #ddd, inset -27.92em 0 #abaab0, inset -27.92em -0.07em #ddd, inset 0em -0.98em 0 #ddd, inset 0em -1.05em #bebbc5, inset 28.34em -0.07em 0.42em rgba(0, 0, 0, 0.5), inset 27.92em 0 0.42em rgba(0, 0, 0, 0.4), inset -28.34em -0.07em 0.42em rgba(0, 0, 0, 0.5), inset -27.92em 0 0.42em rgba(0, 0, 0, 0.4), 0 0 0.07em #000, 0 0.98em 0.42em -0.35em rgba(0, 0, 0, 0.2), inset 0 0 0 69.45em #fff; } }
  .ipad-mini-3 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-sizing: content-box;
    width: 128em;
    height: 170.667em;
    font-size: 6px;
    border-radius: 11em;
    padding: 20.667em 7em;
    border: 1em solid transparent;
    background: linear-gradient(45deg, transparent 38%, #f5f6f8 49%, transparent 50%) top -8em left -1em, linear-gradient(-45deg, transparent 49%, #f5f6f8 50%, transparent 62%) top -4em right -1em, linear-gradient(-45deg, transparent 49%, #f5f6f8 50%, transparent 62%) bottom -8em left -1em, linear-gradient(45deg, transparent 38%, #f5f6f8 49%, transparent 50%) bottom -6em right -1em, radial-gradient(farthest-side at left top, #47474d, transparent) top -1em left -1em, radial-gradient(farthest-side at left bottom, #47474d, transparent) bottom -1em left -1em, radial-gradient(farthest-side at right bottom, #47474d, transparent) bottom -1em right -1em, radial-gradient(farthest-side at right top, #47474d, transparent) top -1em right -1em;
    background-size: 20% 20%;
    background-color: currentColor;
    background-repeat: no-repeat; }
  
  .ipad-mini-3::after {
    content: '';
    position: absolute;
    width: 10em;
    height: 10em;
    border-radius: 100%;
    top: 198em;
    left: calc(50% - 5em); }
  
  .ipad-mini-3 > *:first-child {
    max-width: 100%; }
  
  .ipad-mini-3.space-gray {
    color: #a3a3a3;
    box-shadow: inset 0 0 0 0.5em #888b91, inset 0 219.667em 0 -200em #111, inset 0 -219.667em 0 -200em #111, inset 206em 0 0 -200em #111, inset -206em 0 0 -200em #111, inset -207em 0 0 -200em #1d1d1e, inset 207em 0 0 -200em #1d1d1e, inset 0 -220.667em 0 -200em #1d1d1e, inset 0 220.667em 0 -200em #1d1d1e, inset 0 0 0 100em #dee2e1, 0 0 5em rgba(0, 0, 0, 0.07); }
  
  .ipad-mini-3.space-gray::after {
    box-shadow: 397em -230em 0 400em rgba(255, 255, 255, 0.05), 390em -200em 100em 300em rgba(255, 255, 255, 0.7), 5em 2em 2em -2em rgba(17, 17, 17, 0.8), 4em 0 4em -1em rgba(17, 17, 17, 0.8), -3em 1em 1em -2em rgba(17, 17, 17, 0.6), -3em 2em 2em -1em rgba(17, 17, 17, 0.8), 0 0 0 0.667em #404143, 0 -192.5em 0 -4.7em rgba(17, 17, 17, 0.5), 0.2em -192.5em 0 -4.5em #04449e, 0 -192.5em 0 -4.1em #11356f, 2em -192em 4em -3.5em #111, 0 -192.5em 0 -3.5em #27221e; }
  
  .ipad-mini-3.silver {
    color: #d4d7d6;
    box-shadow: inset 0 0 0 0.5em #fff, inset 0 219.667em 0 -200em #f5f6f8, inset 0 -219.667em 0 -200em #f5f6f8, inset 206em 0 0 -200em #f5f6f8, inset -206em 0 0 -200em #f5f6f8, inset -207em 0 0 -200em #1d1d1e, inset 207em 0 0 -200em #1d1d1e, inset 0 -220.667em 0 -200em #1d1d1e, inset 0 220.667em 0 -200em #1d1d1e, inset 0 0 0 100em #dee2e1, 0 0 5em rgba(0, 0, 0, 0.07); }
  
  .ipad-mini-3.silver::after {
    box-shadow: 5em 2em 2em -2em rgba(245, 246, 248, 0.8), 4em 0 4em -1em rgba(245, 246, 248, 0.8), -3em 1em 1em -2em rgba(245, 246, 248, 0.6), -3em 2em 2em -1em rgba(245, 246, 248, 0.8), 0 0 0 0.667em #404143, 0.2em -192.5em 0 -4.5em #04449e, 0 -192.5em 0 -4.1em #11356f, 2em -192em 4em -3.5em #f5f6f8, 0 -192.5em 0 -3.5em #352e28, -4.5em -192.5em 0 -4em #e9eaec; }
  
  .ipad-mini-3.gold {
    color: #fbe7d6;
    background: linear-gradient(45deg, transparent 38%, #fbe7d6 49%, transparent 50%) top -8em left -1em, linear-gradient(-45deg, transparent 49%, #fbe7d6 50%, transparent 62%) top -4em right -1em, linear-gradient(-45deg, transparent 49%, #fbe7d6 50%, transparent 62%) bottom -8em left -1em, linear-gradient(45deg, transparent 38%, #fbe7d6 49%, transparent 50%) bottom -6em right -1em, radial-gradient(farthest-side at left top, #6f5747, transparent) top -1em left -1em, radial-gradient(farthest-side at left bottom, #6f5747, transparent) bottom -1em left -1em, radial-gradient(farthest-side at right bottom, #6f5747, transparent) bottom -1em right -1em, radial-gradient(farthest-side at right top, #6f5747, transparent) top -1em right -1em;
    background-size: 20%;
    background-color: currentColor;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 0.5em #fff, inset 0 219.667em 0 -200em #f5f6f8, inset 0 -219.667em 0 -200em #f5f6f8, inset 206em 0 0 -200em #f5f6f8, inset -206em 0 0 -200em #f5f6f8, inset -207em 0 0 -200em #1d1d1e, inset 207em 0 0 -200em #1d1d1e, inset 0 -220.667em 0 -200em #1d1d1e, inset 0 220.667em 0 -200em #1d1d1e, inset 0 0 0 100em #dee2e1, 0 0 5em rgba(0, 0, 0, 0.07); }
  
  .ipad-mini-3.gold::before {
    content: '';
    position: absolute;
    width: 11.334em;
    height: 11.334em;
    border-radius: 100%;
    top: 197.333em;
    left: calc(50% - 5.66em);
    background: #fbe7d6;
    box-shadow: inset -1.5em 1em 2em -1.5em #6f5747, inset -1.5em 1em 2em -1.5em #6f5747, inset 1.5em -1em 1em -1.5em #6f5747; }
  
  .ipad-mini-3.gold::after {
    background: #f5f6f8;
    box-shadow: 0.2em -192.5em 0 -4.5em #04449e,  0 -192.5em 0 -4.1em #11356f,  2em -192em 4em -3.5em #f5f6f8,  0 -192.5em 0 -3.5em #352e28,  -4.5em -192.5em 0 -4em #e9eaec; }
  
  .introduction-page .site-content {
    background: #fafafa; }
  
  @media (min-width: 992px) {
    .introduction-page .mnmd-block.has-background {
      padding-top: 100px;
      padding-bottom: 100px; } }
  
  .section__title {
    margin-bottom: 60px;
    font-weight: 700; }
  
  .introduction-page .byline {
    font-weight: 300;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.1); }
  
  .theme-intro-section {
    padding: 60px 0 60px; }
  
  .author-introduction {
    color: rgba(255, 255, 255, 0.8); }
  
  .author-introduction .theme-logo {
    display: block;
    margin: 0 auto 30px;
    max-width: 100px; }
    @media (min-width: 768px) {
      .author-introduction .theme-logo {
        max-width: 220px; } }
  
  .author-introduction .minimaldog-logo {
    max-width: 50px; }
  
  .author-introduction__left-text,
  .author-introduction__right-text {
    display: inline-block;
    min-width: 100px; }
  
  .author-introduction__left-text {
    text-align: right; }
  
  .author-introduction__right-text {
    text-align: left; }
  
  .author-introduction a {
    display: inline-block;
    color: #fff;
    font-weight: 700; }
  
  .theme-intro-section .theme-info {
    margin-top: 60px;
    text-align: center; }
    @media (min-width: 992px) {
      .theme-intro-section .theme-info {
        max-width: 55%;
        margin-top: 140px;
        text-align: left; } }
  
  .theme-intro-section .theme-info__name {
    font-weight: 900; }
  
  .theme-intro-section .mnmd-block__inner {
    width: 100%; }
  
  .theme-intro-section .mnmd-block__inner > .container {
    position: relative; }
  
  .theme-intro-section .background-img:after {
    height: 400px;
    top: auto;
    bottom: 0;
    background-color: transparent;
    background-image: -webkit-linear-gradient(-270deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.917) 5.3%, rgba(0, 0, 0, 0.834) 10.6%, rgba(0, 0, 0, 0.753) 15.9%, rgba(0, 0, 0, 0.672) 21.3%, rgba(0, 0, 0, 0.591) 26.8%, rgba(0, 0, 0, 0.511) 32.5%, rgba(0, 0, 0, 0.433) 38.4%, rgba(0, 0, 0, 0.357) 44.5%, rgba(0, 0, 0, 0.283) 50.9%, rgba(0, 0, 0, 0.213) 57.7%, rgba(0, 0, 0, 0.147) 65%, rgba(0, 0, 0, 0.089) 72.9%, rgba(0, 0, 0, 0.042) 81.4%, rgba(0, 0, 0, 0.011) 90.6%, transparent 100%);
    background-color: transparent;
    opacity: 0.6; }
  
  .theme-intro-section .devices-showcase {
    position: relative;
    top: 80px;
    text-align: center; }
    @media (min-width: 992px) {
      .theme-intro-section .devices-showcase {
        position: absolute;
        top: auto;
        right: 0;
        bottom: -80px;
        padding-right: 48px; } }
    @media (min-width: 1200px) {
      .theme-intro-section .devices-showcase {
        padding-right: 60px; } }
  
  .theme-intro-section .devices-wrap {
    display: inline-block;
    position: relative;
    font-size: 5px;
    z-index: 1; }
    @media (min-width: 768px) {
      .theme-intro-section .devices-wrap {
        font-size: 8px; } }
    @media (min-width: 1200px) {
      .theme-intro-section .devices-wrap {
        font-size: 10px; } }
  
  .theme-intro-section .imac {
    font-size: 0.16em; }
  
  .theme-intro-section .macbook-air {
    position: absolute;
    right: -16%;
    bottom: -8%;
    margin: 0;
    font-size: 0.16em; }
  
  .theme-intro-section .ipad-mini-3 {
    position: absolute;
    left: -12%;
    bottom: -10%;
    margin: 0;
    font-size: 0.07em; }
  
  .theme-intro-section .iphone-6 {
    position: absolute;
    left: 18%;
    bottom: -10%;
    margin: 0;
    font-size: 0.07em; }
  
  .home-demo-section {
    padding-top: 100px !important;
    background: #fafafa; }
    @media (min-width: 1200px) {
      .home-demo-section {
        padding-top: 200px !important; } }
  
  .home-demo-section .background-img {
    background-position: top left;
    background-size: initial;
    background-repeat: repeat;
    background-color: #fff; }
  
  .preview-item {
    margin-bottom: 30px;
    padding: 0 20px; }
  
  .preview-item__thumb {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
  
  .preview-item:hover .preview-item__thumb {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.06), 0 15px 12px rgba(0, 0, 0, 0.04);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  
  .preview-item .entry-title {
    margin-top: 20px;
    text-transform: uppercase; }
  
  .features-section {
    background: #fafafa; }
  
  .feature-item {
    min-height: 200px;
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
    .feature-item:hover {
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.04);
      -webkit-transform: translate(0, -8px);
      -moz-transform: translate(0, -8px);
      -ms-transform: translate(0, -8px);
      -o-transform: translate(0, -8px);
      transform: translate(0, -8px); }
  
  .feature-item__icon {
    color: rgba(0, 0, 0, 0.2); }
  
  .feature-item__icon svg {
    fill: currentColor; }
  
  .feature-item__name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase; }
  
  .feature-item__description {
    font-size: 13px; }
  
  .introduction-page .site-footer {
    background: transparent; }
  
  /*# sourceMappingURL=theme-introduction.css.map */

  body{
    background-color: #FAFAFA;
}
.the-grid-home .site-content{
    padding-top: 0;
}

@media (min-width: 768px) {
    .the-grid-home.site-wrapper:not(.global-header-enable-dnd) {
        padding-left: 100px;
    }
}
@media (min-width: 992px) {
    .the-grid-home.site-wrapper:not(.global-header-enable-dnd) {
        padding-left: 130px;
    }
}
@media (min-width: 1025px) {
    .the-grid-home.site-wrapper:not(.global-header-enable-dnd) {
        padding-left: 140px;
    }
}
@media (min-width: 1200px) {
    .the-grid-home.site-wrapper{
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
    .the-grid-home.site-wrapper:not(.global-header-enable-dnd) {
        padding-left: 155px;
    }
    
}
@media (min-width: 1200px) {
    .container{
        width: 1200px;
    }

}
.container-fullwidth{
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 992px) {
    .container-fullwidth{
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .container-fullwidth{
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media (min-width: 576px) and (max-width: 767px){
    .container{
        width: 540px;
    }
    .container-fullwidth{
        padding-left: 15px;
        padding-right: 15px;
    }
}
.items-clear-both-2 > div:nth-child(2n+1){
    clear: both;
}
.items-clear-both-3 > div:nth-child(3n+1){
    clear: both;
}
.remove-margin-bottom-lastchild *:last-child{
    margin-bottom: 0 !important;
}
.mnmd-block{
    margin-bottom: 125px;
}
.padding-left-50{
    padding-left: 50px;
}
.padding-right-50{
    padding-right: 50px;
}
.mnmd-block-sub:not(:last-child){
    margin-bottom: 60px;
}
.remove-margin-bottom-lastchild *:last-child{
    margin-bottom: 0 !important;
}
@media (max-width: 1199px){
    .mnmd-block{
        margin-bottom: 100px;
    }
}
@media (max-width: 991px){
    .mnmd-block .module-small:not(:first-child){
        margin-top: 40px;
    }
}
@media (max-width: 767px){
    .mnmd-block {
        margin-bottom: 85px;
    }
}
@media (max-width: 767px){
    .mnmd-block {
        margin-bottom: 80px;
    }
}
@media (max-width: 575px){
    .mnmd-block {
        margin-bottom: 65px;
    }
}
/*----color---*/

.color-primary{
    color: var(--color-primary);
}
.color-secondary{
    color: var(--color-secondary);
}
.color-white{
    color: #fff;
}
.set-background-module{
    background-color: #fafbfc;
    padding-top: 85px;
    padding-bottom: 100px;
}
.background-white{
    background-color: #fff;
}
.line-top-hover{
    position: relative;
}
.line-top-hover:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
    background-color: var(--color-secondary);
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.line-top-hover:hover:before{
    opacity: 1;
}
@media (max-width: 1199px) {
    .set-background-module {
        padding-top: 75px;
        padding-bottom: 90px;
    }
}
@media (max-width: 575px) {
    .set-background-module {
        padding-top: 65px;
        padding-bottom: 70px;
    }
}
@media (max-width: 420px){
    .set-background-module {
        padding-top: 60px;
        padding-bottom: 65px;
    }
}
/*-----heading-------------------*/
.block-heading .block-heading__title{
    text-transform: capitalize;
    letter-spacing: -0.3px;
    margin-bottom: 0;
    font-weight: 400;
}
.block-heading.block-heading-small{
    margin-bottom: 60px;
}
.block-heading.block-heading-large{
    margin-bottom: 80px;
}
.block-heading.block-heading-normal{
    margin-bottom: 80px;
}
.block-heading.block-heading-small .block-heading__title{
    font-size: 20px;
    font-family: Poppins;
    line-height: 1.4;
}
.archive-heading .blog-list-header__title,
.block-heading-related .block-heading-related__title,
.block-heading.block-heading-normal .block-heading__title {
    font-size: 40px;
    font-family: helvetica;
    line-height: 1.4;
    font-weight: 600;
}
.archive-heading .blog-list-header__title,
.block-heading-related .block-heading-related__title {
  color: var(--color-primary);
}
.block-heading.block-heading-large .block-heading__title{
    font-size: 120px;
    font-family: helvetica;
    line-height: 1
}

.block-heading.block-heading-line-top,
.block-heading.block-heading-line-top.block-heading--center{
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.archive-heading,
.block-heading-related,
.block-heading.block-heading-line-bottom,
.block-heading.block-heading-line-top.block-heading--center{
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.archive-heading,
.block-heading-related {
  padding-bottom: 20px;
  margin-bottom: 60px;
  text-align: center;
}
.block-heading.block-heading-small.block-heading-line-top,
.block-heading.block-heading-small.block-heading-line-top.block-heading--center{
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.block-heading.block-heading-small.block-heading-line-bottom,
.block-heading.block-heading-small.block-heading-line-top.block-heading--center{
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.block-heading__title.block-heading__title-has-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.block-heading__title.block-heading__title-has-icon i{
    background-color: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.block-heading__title.block-heading__title-has-icon i:before{
    width: 93.3%;
    height:  93.3%;
}
.block-heading__title.block-heading__title-has-nav{
    flex: 1;
}
@media (max-width: 1440px){
    .block-heading.block-heading-large .block-heading__title {
        font-size: 100px;
        line-height: 1;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 45px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 45px;
    }
}
@media (max-width: 1366px){
    .block-heading.block-heading-large .block-heading__title {
        font-size: 90px;
    }
}
@media (max-width: 1199px){
    .block-heading.block-heading-large {
        margin-bottom: 65px;
    }
    .block-heading.block-heading-small{
        margin-bottom: 45px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 65px;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 35px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 35px;
    }
}
@media (max-width: 1024px){
    .block-heading.block-heading-large .block-heading__title {
        font-size: 60px;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 30px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 30px;
    }
}
@media (max-width: 767px){
    .block-heading.block-heading-line-top{
        padding-top: 20px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 50px;
    }
    .block-heading.block-heading-large {
        margin-bottom: 55px;
    }
    .block-heading.block-heading-small{
        margin-bottom: 30px;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 25px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 25px;
    }
}
@media (max-width: 575px){
    .block-heading.block-heading-large {
        margin-bottom: 50px;
    }
    .block-heading.block-heading-small {
        margin-bottom: 30px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 45px;
    }
    .block-heading.block-heading-small .block-heading__title{
        font-size: 20px;
    }
}
@media (max-width: 480px){
    .block-heading.block-heading-large {
        margin-bottom: 45px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 40px;
    }
}
@media (max-width: 420px){
    .block-heading.block-heading-large {
        margin-bottom: 40px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 40px;
        font-family: helvetica;

    }
    .archive-heading .blog-list-header__title,
    .block-heading-related .block-heading-related__title,
    .block-heading.block-heading-normal .block-heading__title {
      font-size: 40px;
      font-family: helvetica;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 20px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 20px;
    }
    .block-heading.block-heading-small .block-heading__title {
        font-size: 18px;
        font-family: Poppins;
    }

}
@media (max-width: 380px){
    .block-heading.block-heading-large {
        margin-bottom: 35px;
    }
    .block-heading.block-heading-large .block-heading__title {
        font-size: 30px;
    }
}
@media (max-width: 320px){
    .block-heading.block-heading-large .block-heading__title {
        font-size: 26px;
    }
    .block-heading.block-heading-line-top,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-top: 15px;
    }
    .block-heading.block-heading-line-bottom,
    .block-heading.block-heading-line-top.block-heading--center{
        padding-bottom: 15px;
    }
}
/*-----post-thumb fix width-----*/
.atbs-thumb-object-fit a{
    width: 100%;
    height: 100%;
}
.atbs-thumb-object-fit.post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.atbs-thumb-object-fit a.post__cat{
    width: unset;
    height: unset;
}
.post__thumb--overlay.post__thumb {
    position: absolute;
    width: 100%;
    height: 100%;
}
.post__thumb--overlay.post__thumb:after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.25);
    content: '';
    position: absolute;
}
/*-----post-thumb - width-------*/
.post__thumb--width-100 .post__thumb{
    width: 100px;
}
.post__thumb--width-140 .post__thumb{
    width: 140px;
}
.post__thumb--width-150 .post__thumb{
    width: 150px;
}
.post__thumb--width-190 .post__thumb{
    width: 190px;
}
.post__thumb--width-255 .post__thumb{
    width: 255px;
}
.post__thumb--width-270 .post__thumb{
    width: 270px;
}
.post__thumb--width-290 .post__thumb{
    width: 290px;
}
.post__thumb--width-300 .post__thumb{
    width: 300px;
}
.post__thumb--width-400 .post__thumb{
    width: 400px;
}
.post__thumb--width-430 .post__thumb{
    width: 430px;
}
.post__thumb--width-450 .post__thumb{
    width: 450px;
}
.post__thumb--width-470 .post__thumb{
    width: 470px;
}
.post__thumb--width-500 .post__thumb{
    width: 500px;
}
.post__thumb--width-630 .post__thumb{
    width: 630px;
}
.post__thumb--width-770 .post__thumb{
    width: 770px;
}
/*-----post-thumb - height-------*/
.post__thumb-70 .post__thumb{
    height: 70px;
}
.post__thumb-100 .post__thumb{
    height: 100px;
}
.post__thumb-140 .post__thumb{
    height: 140px;
}
.post__thumb-145 .post__thumb{
    height: 145px;
}
.post__thumb-150 .post__thumb{
    height: 150px;
}
.post__thumb-170 .post__thumb{
    height: 170px;
}
.post__thumb-180 .post__thumb{
    height: 180px;
}
.post__thumb-190 .post__thumb{
    height: 190px;
}
.post__thumb-200 .post__thumb{
    height: 200px;
}
.post__thumb-205 .post__thumb{
    height: 205px;
}
.post__thumb-210 .post__thumb{
    height: 210px;
}
.post__thumb-220 .post__thumb{
    height: 220px;
}
.post__thumb-250 .post__thumb{
    height: 250px;
}
.post__thumb-260 .post__thumb{
    height: 260px;
}
.post__thumb-270 .post__thumb{
    height: 270px;
}
.post__thumb-280 .post__thumb{
    height: 280px;
}
.post__thumb-295 .post__thumb{
    height: 295px;
}
.post__thumb-300 .post__thumb{
    height: 300px;
}
.post__thumb-330 .post__thumb{
    height: 330px;
}
.post__thumb-380 .post__thumb{
    height: 380px;
}
.post__thumb-390 .post__thumb{
    height: 390px;
}
.post__thumb-400 .post__thumb{
    height: 400px;
}
.post__thumb-420 .post__thumb{
    height: 420px;
}
.post__thumb-430 .post__thumb{
    height: 430px;
}
.post__thumb-450 .post__thumb{
    height: 450px;
}
.post__thumb-460 .post__thumb{
    height: 460px;
}
.post__thumb-465 .post__thumb{
    height: 465px;
}
.post__thumb-480 .post__thumb{
    height: 480px;
}
.post__thumb-485 .post__thumb{
    height: 485px;
}
.post__thumb-500 .post__thumb{
    height: 500px;
}
.post__thumb-550 .post__thumb{
    height: 550px;
}
.post__thumb-580 .post__thumb{
    height: 580px;
}
.post__thumb-600 .post__thumb{
    height: 600px;
}
.post__thumb-650 .post__thumb{
    height: 600px;
}
.post__thumb-160 .post__thumb{
    height: 160px;
}
.post--overlay-height-200.post--overlay .post__text{
    min-height: 200px;
}
.post--overlay-height-270.post--overlay .post__text{
    min-height: 270px;
}
.post--overlay-height-280.post--overlay .post__text{
    min-height: 280px;
}
.post--overlay-height-300.post--overlay .post__text{
    min-height: 300px;
}
.post--overlay-height-320.post--overlay .post__text{
    min-height: 320px;
}
.post--overlay-height-370.post--overlay .post__text{
    min-height: 370px;
}
.post--overlay-height-380.post--overlay .post__text{
    min-height: 380px;
}
.post--overlay-height-410.post--overlay .post__text{
    min-height: 410px;
}
.post--overlay-height-450.post--overlay .post__text{
    min-height: 450px;
}
.post--overlay-height-460.post--overlay .post__text{
    min-height: 460px;
}
.post--overlay-height-480.post--overlay .post__text{
    min-height: 480px;
}
.post--overlay-height-560.post--overlay .post__text{
    min-height: 560px;
}
.post--overlay-height-580.post--overlay .post__text{
    min-height: 580px;
}
.post--overlay-height-500.post--overlay .post__text{
    min-height: 500px;
}
.post--overlay-height-510.post--overlay .post__text{
    min-height: 510px;
}
.post--overlay-height-520.post--overlay .post__text{
    min-height: 520px;
}
.post--overlay-height-530.post--overlay .post__text{
    min-height: 530px;
}
.post--overlay-height-560.post--overlay .post__text{
    min-height: 560px;
}
.post--overlay-height-570.post--overlay .post__text{
    min-height: 570px;
}
.post--overlay-height-600.post--overlay .post__text{
    min-height: 600px;
}
.post--overlay-height-650.post--overlay .post__text{
    min-height: 650px;
}
.post--overlay-height-770.post--overlay .post__text{
    min-height: 770px;
}
.post--overlay-height-890.post--overlay .post__text{
    min-height: 890px;
}
/*-----custom-------*/
.post__cat, a.post__cat, .entry-cat, a.entry-cat{
    border-bottom: none;
}
/*-----post thumb---*/
.post--vertical .post__thumb{
    margin-bottom: 15px;
}
/*-----post-time---*/
.post-time-cat-wrap{
    margin-bottom: 25px;
}
.line-border-bottom{
    border-bottom: 1px solid rgba(112,112,112,0.0);
}
.padding-top-25-bottom-25{
    padding-top: 25px;
    padding-bottom: 25px;
}
.padding-top-25-bottom-15{
    padding-top: 25px;
    padding-bottom: 15px;
}
.padding-top-15-bottom-25{
    padding-top: 15px;
    padding-bottom: 25px;
}
.padding-top-15-bottom-15{
    padding-top: 15px;
    padding-bottom: 15px;
}
/**/
.padding-left-180{
    padding-left: 180px;
}
.padding-right-180{
    padding-right: 180px;
}
.padding-left-25-right-25{
    padding-left: 25px;
    padding-right: 25px;
}
.padding-left-50-right-50{
    padding-left: 50px;
    padding-right: 50px;
}
.padding-left-30-right-30{
    padding-left: 30px;
    padding-right: 30px;
}
/*----*/
.padding-reverse-left-25-right-25{
    margin-left: -25px;
    margin-right: -25px;
}
.padding-reverse-left-50-right-50{
    margin-left: -50px;
    margin-right: -50px;
}
.padding-reverse-left-30-right-30{
    margin-left: -30px;
    margin-right: -30px;
}
/**/
.margin-bottom-0{
    margin-bottom: 0;
}
.margin-bottom-15{
    margin-bottom: 15px;
}
.margin-bottom-20{
    margin-bottom: 20px;
}
.margin-bottom-25{
    margin-bottom: 25px;
}
.margin-bottom-35{
    margin-bottom: 35px;
}
.margin-bottom-30{
    margin-bottom: 30px;
}
.margin-bottom-45{
    margin-bottom: 45px;
}
.margin-bottom-55{
    margin-bottom: 55px;
}
.margin-bottom-60{
    margin-bottom: 60px;
}
.margin-bottom-65{
    margin-bottom: 65px;
}
.margin-bottom-75{
    margin-bottom: 75px;
}
[class*='margin-bottom-']:last-child{
    margin-bottom: 0;
}
/**/
.post-time-cat-wrap .post-time-cat-inner{
    margin: -5px;
}
.post-time-cat-wrap .post-time-cat-inner > *{
    margin: 0;
    padding: 5px;
}
time.time{
    font-size: 13px;
    font-family: helvetica;
    line-height: 1.2;
    letter-spacing: 0.6px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}
.time.time-black-opacity{
    color: #131313;
    opacity: 0.6;
}
.time.time-white-opacity{
    color: #fff;
    opacity: 0.6;
}
/*-----post-cat---*/
.post__cat, a.post__cat, .entry-cat, a.entry-cat{
    font-size: 13px;
    line-height: 1;
    border-bottom: none;
    font-weight: 400;
    opacity: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-decoration: unset;
    letter-spacing: 0.6px;
}
.post__cat.post__cat-color-primary{
    color: var(--color-primary);
}
.post__cat.post__cat-color-secondary{
    color: var(--color-secondary);
}
.post__cat.post__cat-color-white{
    color: #fff;
}
.post__cat-has-line{
    position: relative;
    padding-left: 16px;
}
.post__cat-has-line:before{
    content: '';
    width: 3px;
    height: 60%;
    background-color: #0661f1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}
/*-----post-title--*/
.post__title{
    margin-top: 0;
    color: #222222;
}
/*-----post-expect---*/
.post__excerpt{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1428rem; /*font system*/
    line-height: 1.6875;
    color: #222222;
    opacity: 0.7;
}
/**/
@media (max-width: 767px) {
    .post--horizontal-xxs .post__cat,
    .post--horizontal-xs .post__cat,
    .post--horizontal-sm .post__cat{
        display: inline-block;
    }
}
/*---post-interactive---*/
.thumb-radius-circle{
    border-radius: 50%;
    overflow: hidden;
}
.post__meta .count_interactive a,
.post__meta .count_interactive{
    color: var(--color-text);
}
.readmore-normal i{
    margin-left: 8px;
}
.count-comment a{
    font-size: 12px;
    line-height: 1.66;
    color: var(--color-text);
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.6;
}
.btn-circle-small{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    border:  1px solid rgba(255,255,255,0.6);
    margin-left: 15px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.btn-circle-small:hover{
    background-color: #fff;
    color: #222222;
    opacity: 1;
}
/**/
.nav-horizontal .owl-nav{
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
}
.nav-horizontal .owl-nav .owl-next,
.nav-horizontal .owl-nav .owl-prev{
    position: initial;
    transform: none;
}
.nav-horizontal .owl-nav > *:first-child{
    margin-right: 10px;
}

.nav-vertical .owl-nav{
    display: block;
    width: fit-content;
}
.nav-vertical .owl-nav .owl-next,
.nav-vertical .owl-nav .owl-prev{
    position: initial;
    transform: none;
}
.nav-vertical .owl-nav > *:first-child{
    margin-bottom: 10px;
}
.nav-circle .owl-next,
.nav-circle .owl-prev {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 0;
}
.nav-circle.nav-border .owl-next,
.nav-circle.nav-border .owl-prev{
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.nav-circle .owl-next:hover,
.nav-circle .owl-prev:hover{
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
}
.dots-circle .owl-dot{
    padding: 4px;
}
.dots-circle .owl-dot span{
    border-radius: 50%;
}
.dots-circle .owl-dot.active span{
    background-color: var(--color-primary);
}
.post--overlay.post--overlay-text-has-shadow{
    overflow: initial;
}
.mnmd-carousel-nav-custom-holder > *:not(:last-child){
    margin-right: 15px;
}
.mnmd-carousel .owl-dot{
    padding: 4px;
}
.mnmd-carousel .owl-dot.active span{
    background-color: var(--color-primary);
}
/**/
.nav-square .owl-next,
.nav-square .owl-prev {
    width: 45px;
    height: 45px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 0;
    color: rgba(112,112,112,0.6);
    font-size: 18px;
}
.nav-square .owl-prev i,
.nav-square .owl-next i{
    font-size: 25px;
}

.nav-square .owl-next:hover,
.nav-square .owl-prev:hover{
    background-color: var(--color-primary);
    color: #fff;
    width: 45px;
    height: 45px;
}
/**/
.limit-line-text,a.limit-line-text{
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-text.limit-line-2{
    -webkit-line-clamp: 2;
}
.limit-line-text.limit-line-3{
    -webkit-line-clamp: 3;
}
.limit-line-text.limit-line-4{
    -webkit-line-clamp: 4;
}
/* flex-wrap */
.flexbox-space-x{
    justify-content: space-between;
}
.flexbox-space-y{
    align-content: space-between;
}
.flexbox-space-y > *{
    width: 100%;
}
.flexbox-space-y-top{
    align-self: flex-start;
    width: 100%;
}
.flexbox-space-y-bottom {
    align-self: flex-end;
    width: 100%;
}
.flexbox-center-x{
    justify-content: center;
}
.flexbox-center-y{
    align-items: center;
}
.flexbox-center-xy{
    align-items: center;
    justify-content: center;
}
.flexbox-right-x{
    justify-content: flex-end;
}
.flexbox-bottom-y{
    align-items: flex-end;
}
.flexbox-top-y{
    align-items: flex-end;
}
.flexbox-wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.flexbox-wrap.flexbox-wrap-1i > *,
.flexbox-wrap .flexbox-item-100{
    width: 100%;
}
.flexbox-wrap.flexbox-wrap-2i > *,
.flexbox-wrap .flexbox-item-50{
    width: 50%;
}
.flexbox-wrap.flexbox-wrap-3i > *{
    width: calc(100% / 3);
}
.flexbox-wrap.flexbox-wrap-4i > *{
    width: calc(100% / 4);
}
.flexbox-wrap.flex-space-15{
    margin: -7.5px;
}
.flexbox-wrap.flex-space-15 > *{
    padding: 7.5px;
}
.flexbox-wrap.flex-space-20{
    margin: -10px;
}
.flexbox-wrap.flex-space-20 > *{
    padding: 10px;
}
.flexbox-wrap.flex-space-30{
    margin: -15px;
}
.flexbox-wrap.flex-space-30 > *{
    padding: 15px;
}
.flexbox-wrap.flex-space-40{
    margin: -20px;
}
.flexbox-wrap.flex-space-40 > *{
    padding: 20px;
}
.flexbox-wrap.flex-space-45{
    margin: -22.5px;
}
.flexbox-wrap.flex-space-45 > *{
    padding: 22.5px;
}
.flexbox-wrap.flex-space-50{
    margin: -25px;
}
.flexbox-wrap.flex-space-50 > *{
    padding: 25px;
}
.flexbox-wrap.flex-space-55{
    margin: -27.5px;
}
.flexbox-wrap.flex-space-55 > *{
    padding: 27.5px;
}
.flexbox-wrap.flex-space-60{
    margin: -30px;
}
.flexbox-wrap.flex-space-60 > *{
    padding: 30px;
}
.flexbox-wrap.flex-space-70{
    margin: -35px;
}
.flexbox-wrap.flex-space-70 > *{
    padding: 35px;
}
.flexbox-wrap.flex-space-80{
    margin: -40px;
}
.flexbox-wrap.flex-space-80 > *{
    padding: 40px;
}
.flexbox-wrap.flex-space-90{
    margin: -45px;
}
.flexbox-wrap.flex-space-90 > *{
    padding: 45px;
}
.flexbox-wrap.flex-space-100{
    margin: -50px;
}
.flexbox-wrap.flex-space-100 > *{
    padding: 50px;
}

.flexbox-wrap.flex-space-110{
    margin: -55px;
}
.flexbox-wrap.flex-space-110 > *{
    padding: 55px;
}

.flex-self-start{
    align-self: flex-start;
}
.flex-column-reverse > *{
    width: 100%;
}
.flex-row-reverse > *{
    width: 100%;
}
.flex-row-reverse > *:not(:last-child){
    margin-bottom: 30px;
}
@media(min-width: 768px){
    .flex-column-reverse{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }  
    .flex-row-reverse{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }  
}
@media (max-width: 991px){
    .flexbox-wrap.flexbox-wrap-4i > *{
        width: 50%;
    }
}
@media (max-width: 767px){
    .flexbox-wrap.flexbox-wrap-2i > *{
        width: 100%;
    }

}
@media (max-width: 575px){
    .flexbox-wrap.flexbox-wrap-4i > *,
    .flexbox-wrap .flexbox-item-50{
        width: 100%;
    }
}
.item-line-count{
    position: relative;
}
.item-line-count-4i{
    position: relative;
}
.item-line-count-2i:nth-child(2n+1):not(:first-child):after {
    position: absolute;
    content: '';
    width: calc( 100% * 2 - 30px);
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    left: 15px;
    top: 0;
}
.item-line-count-4i:nth-child(4n+1):not(:first-child):after {
    position: absolute;
    content: '';
    width: calc( 100% * 4 - 30px);
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    left: 15px;
    top: 0;
}

/*---font-size---*/
@media (min-width: 992px){
    .typescale-1{
        line-height: 1.5;
    }
    .typescale-0.custom-typescale-0{
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .typescale-0_5{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.43; /*font system*/
    }
    .typescale-2.custom-typescale-2{
        font-size: 1.428rem;
        line-height: 1.5;
    }
    .typescale-2_5{
        font-size: 1.55rem;
        line-height: 1.41;
    }
    .typescale-2_7{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .typescale-3.custom-typescale-3{
        font-size: 1.85rem;
        line-height: 1.38;
    }
    .typescale-3_5{
        font-size: 2.1428rem; /*font system*/
        line-height: 1.4;
    }
    .typescale-4_5{
        font-size: 2.85rem;
        line-height: 1.4;
    }
    .typescale-5_5{
        font-size: 3.57rem;
        line-height: 1.4;
    }
}
@media (max-width: 991px) {
    .typescale-0.custom-typescale-0{
        font-size: 15px;
        font-size: 1.0714rem; /*font system*/
    }
}
@media (max-width: 767px) {
    .typescale-0.custom-typescale-0{
        font-size: 16px;
        font-size: 1.1428rem; /*font system*/
    }
}
@media (max-width: 320px) {
    .typescale-0.custom-typescale-0{
        font-size: 15px;
        font-size: 1.0714rem; /*font system*/
    }
}
@media (max-width: 991px){
    .mnmd-pagination__links{
        text-align: center;
    }
}
@media (max-width: 767px) {
    /*.typescale-0.custom-typescale-0{*/
    /*    font-size: 16px;*/
    /*}*/
}

/*---- Responsive Video wrapper ----*/
.items-clear-both-2 > div:nth-child(2n+1){
  clear: both;
}
.items-clear-both-3 > div:nth-child(3n+1){
  clear: both;
}
@media (max-width: 991px) {
  .items-clear-both-3 > div:nth-child(3n+1){
      clear: none;
  }
  .items-clear-both-3 > div:nth-child(2n+1){
      clear: both;
  }
}
/* ------------------------- Widget Css */

/* Slide bar -- frame*/
.widget{
    margin-bottom: 55px;
}
.widget__title{
    margin-bottom: 35px;
    color: var(--color-primary);
}
.widget__title-text{
    font-size: 18px;
    font-weight: 700;
    text-transform: initial;
    letter-spacing: 0;
}
/*--frame*/
.mnmd-main-col{
    width: 900px;
}
.mnmd-sub-col{
    width: 300px;
}

/* ----------------------- Widget post list*/
/*
    Layout
*/
/*
    Content
*/
.mnmd-widget-posts-list .post__thumb{
    height: 70px;
    margin-right: 20px;
}
.mnmd-widget-posts-list .post__excerpt{
    display: none;
}
.mnmd-widget-posts-list .post__title{
    line-height: 1.5;
    color: #222222;
}
/* ----------------------- Widget post list*/

/* ----------------------- Widget post rating*/
/*
    Content
*/
.post--overlay-rating .post__thumb:after{
    background-color: #000;
    opacity: 0.3;
}
.post--overlay-rating .post__text-inner {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
}
.post--overlay-rating .post__title{
    font-weight: 600;
    flex: 1;
    color: #fff;
    margin-bottom: 0;
    margin-right: 15px;
}
.post--overlay-rating .post-type-icon svg{
    display: none;
}
.post--overlay-rating .post-type-icon .post-score-value{
    position: initial;
    transform: none;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    background-color: var(--color-primary);
}
/* ----------------------- Widget post rating*/
@media (min-width: 1200px) {
    /* main col*/
    .mnmd-main-col{
        width: 900px;
    }
    /* sub col*/
    .mnmd-sub-col{
        width: 300px;
        float: right;
    }
}
@media (max-width: 1199px) {
    /* main*/
    .mnmd-main-col{
        width: 680px;
    }
    /*sub*/
    .mnmd-sub-col{
        width: 290px;
    }
    /* ----------------------- Widget post list */
    .mnmd-widget-posts-list .post--horizontal .post__thumb{
        float: none;
        margin: 0 20px 0 0;
    }
    .mnmd-widget-posts-list .post--horizontal .post__text{
        order: initial;
    }
    /* Widget post list ----------------------- */
}
@media (max-width: 991px) {
    /* All */
    .mnmd-main-col{
        width: 100%;
        padding-right: 15px;
    }
    .mnmd-sub-col{
        width: 100%;
        float: left;
    }
    .widget:not(:last-child){
        margin-bottom: 45px;
    }
    .widget__title{
        text-align: center;
    }

    /* ----------------------- Widget post list */
    .mnmd-widget-posts-list ul{
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .mnmd-widget-posts-list ul li{
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .mnmd-widget-posts-list .posts-list{
        margin: 0 -30px;
        display: flex;
        flex-wrap: wrap;
    }
    .mnmd-widget-posts-list .posts-list  .list-item{
        padding: 30px;
        width: calc( 100% / 3 );
        border: none;
    }
    .mnmd-widget-posts-list .posts-list .list-item:not(:last-child){
        border-right: 1px solid rgba(0,0,0,.1);
        border-bottom: none;
    }
    .mnmd-widget-posts-list .post--horizontal .post__thumb{
        float: none;
        margin: 0 20px 0 0;
    }
    .mnmd-widget-posts-list .post--horizontal .post__text{
        order: initial;
    }
    /* Widget post list ----------------------- */

    /*----------------------- Widget post list rating */
    .mnmd-widget-posts-list-rating .posts-list{
        margin: 0 -15px;
        display: flex;
        flex-wrap: wrap;
    }
    .mnmd-widget-posts-list-rating .posts-list  .list-item{
        padding: 15px;
        width: calc( 100% / 3 );
        border: none;
    }
    .post--overlay-rating .post__text-inner {
        position: relative;
        padding: 15px;
    }
    .post--overlay-rating .post-type-icon .post-score-value{
        width: 40px;
        height: 40px;
    }
    .post--overlay-rating .post__title{
        font-size: 16px;
        line-height: 1.5;
    }
    /* Widget post list rating ----------------------*/
}
@media (max-width: 768px){
    .widget:not(:last-child){
        margin-bottom: 40px;
    }
    .widget__title{
        margin-bottom: 30px;
    }
    /* ----------------------- Widget post list */
    .mnmd-widget-posts-list .posts-list{
        width: 80%;
        margin: -30px auto;
    }
    .mnmd-widget-posts-list .posts-list .list-item{
        padding: 30px 0;
        width: 100%;
    }
    .mnmd-widget-posts-list .posts-list .list-item:not(:last-child){
        border-bottom: 1px solid rgba(50,199,105,0.1);
        border-right: none;
    }
    .mnmd-widget-posts-list .post--horizontal{
        justify-content: initial;
    }
    .mnmd-widget-posts-list .post--horizontal .post__cat{
        display: block;
    }
    /* Widget post list ----------------------- */

    /* ----------------------- Widget post list rating */
    .mnmd-widget-posts-list-rating .posts-list .list-item{
        width: 100%;
    }
    .post--overlay-height-200.post--overlay .post__text {
        min-height: 250px;
    }
    .post--overlay-rating .post__text-inner {
        position: relative;
        padding: 20px;
        width: 100%;
        justify-content: space-between;
    }
    .post--overlay-rating .post__title {
        font-size: 20px;
        line-height: 1.4;
        max-width: 80%;
    }
    .post--overlay-rating .post-type-icon .post-score-value {
        width: 45px;
        height: 45px;
    }
    /* Widget post list rating----------------------- */

}
@media (max-width: 480px){
    .mnmd-widget-posts-list .posts-list{
        margin: -15px auto;
    }
    .mnmd-widget-posts-list .posts-list .list-item{
        padding: 15px 0;
    }
    .post--overlay-rating.post--overlay .post__text {
        min-height: 235px;
    }
}
@media (max-width: 420px){
    .mnmd-widget-posts-list .posts-list{
        max-width: 90%;
        width: 100%;
    }
    .post--overlay-rating.post--overlay .post__text {
        min-height: 230px;
    }
}
@media (max-width: 380px){
    .mnmd-widget-posts-list .posts-list{
        max-width: 100%;
        width: 100%;
    }
    .post--overlay-rating.post--overlay .post__text {
        min-height: 220px;
    }
    .post--overlay-rating .post__title{
        font-size: 18px;
        line-height: 1.38;
    }
}
@media (max-width: 320px){

    /* ----------------------- Widget post list */
    .mnmd-widget-posts-list .post--horizontal .post__cat{
        display: none;
    }
    .post--overlay-rating.post--overlay .post__text {
        min-height: 200px;
    }
    .post--overlay-rating .post__title{
        font-size: 16px;
        line-height: 1.43;
    }
    /* Widget post list ----------------------- */
}
/* .Widget Css -------------------------*/

/* ----------------------- footer */
/*
    Layout
*/
.site-content{
    padding-bottom: 130px;
}
@media (max-width: 1199px) {
  .site-content {
    padding-bottom: 0;
  }
}
.the-grid-footer.site-footer{
    background-color: #fafafa;
    padding: 0 50px;
}
.the-grid-footer.site-footer .site-footer__section:first-child {
    padding-top: 0;
    padding-bottom: 45px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.the-grid-footer.site-footer.inverse-text .site-footer__section:first-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.the-grid-footer.site-footer .navigation--footer>li>a,
.the-grid-footer.site-footer .footer-author{
    font-size: 1.1428rem; /*font system*/
    line-height: 1.5;
    font-weight: 300;
    color: #222222;
    text-transform: uppercase;
}
.the-grid-footer.site-footer .footer-author{
    width: 40%;
    margin-right: 25px;
}
.the-grid-footer.site-footer .footer-menu{
    width: 60%;
    flex: 1;
}
.the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40{
    margin: -2.5px -20px;
}
.the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40 > *{
    padding: 2.5px 20px;
}
/*
    Content
*/
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    .the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40{
        margin: -2.5px -15px;
    }
    .the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40 > *{
        padding: 2.5px 15px;
    }
    .the-grid-footer.site-footer .navigation--footer>li>a,
    .the-grid-footer.site-footer .footer-author{
        font-size: 1rem; /*font system*/
        line-height: 1.5;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*.site-content {
        padding-bottom: 150px;
    }*/
    .the-grid-footer.site-footer{
        padding: 0;
    }
    .the-grid-footer.site-footer .site-footer__section:first-child{
        padding-bottom: 40px;
        margin-bottom: 30px;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */

}
@media (max-width: 767px) {
    /*
        Layout
    */
    /*.site-content{
        padding-bottom: 120px;
    }*/
    /*
        Content
    */
    .the-grid-footer.site-footer .site-footer__section:first-child{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
    .the-grid-footer.site-footer .footer-menu{
        width: 100%;
        flex: initial;
    }
    .the-grid-footer.site-footer .navigation--footer{
        justify-content: center;

    }
    .the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40{
        margin: -2.5px -10px;
    }
    .the-grid-footer.site-footer .navigation--footer.flexbox-wrap.flex-space-40 > * {
        padding: 2.5px 10px;
    }
    .the-grid-footer.site-footer .footer-author{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        margin-right: 0;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
}
/* .footer ----------------------- */

/* ----------------------- header */
/*
    Layout
*/
.navigation-bar__section.navigation-bar__section-bottom{
    padding-top: 40px;
    border-top: 1px solid rgba(112,112,112,0.07);
}
/*
    Content
*/
.site-header{
    box-shadow: none;


}
.navigation-bar:not(.navigation-bar--fullwidth):not(.navigation-bar--inverse) .navigation-bar__inner{
    box-shadow: none;
}
@media (min-width: 768px) {
    .site-header.header-default-no-dnd {
        width: 100px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
    }
}
@media (min-width: 992px) {
    .site-header.header-default-no-dnd {
        width: 130px;
    }
}
@media (min-width: 1025px) {
    .site-header.header-default-no-dnd {
        width: 140px;
    }
}
@media (min-width: 1200px) {
    .site-header.header-default-no-dnd {
        width: 155px;
    }
}
.site-header {
    box-shadow: none;
}
.navigation-bar__section{
    padding: 0;
    overflow: visible;
}
.navigation-bar{
    height: 100%;
    padding-top: 50px;
    padding-bottom: 45px;
}
.navigation-bar__inner{
    flex-wrap: wrap;
    height: 100%;
}

.navigation-bar__inner > *{
    width: 100%;
}
.navigation-bar .header-logo{
    padding-right: 0;
}
.navigation-bar .header-logo a{
    display: block;
}
.navigation-bar .header-logo img{
    max-height: 140px;
    padding: 0;
}
.navigation-bar-btn{
    height: auto;
}
.navigation--main>li>a{
    height: 140px;
    line-height: 140px;
    padding: 0 17.5px;
    font-size: 14px;
    font-weight: 300;
}
.navigation--main>li:hover>a, .navigation--main>li.current-menu-item>a{
    color: #222222;
}
.navigation-bar-btn i{
    line-height: initial;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
}
.navigation-bar--inverse .navigation-bar-btn i {
  color: rgba(255, 255, 255, 0.8);
}
.btn-menu-bar-icon span{
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    position: relative;
    margin-top: 35px;
    margin-right: auto;
    margin-left: auto;
}
.btn-menu-bar-icon span:before,
.btn-menu-bar-icon span:after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    display: block;
}
.navigation-bar--inverse .btn-menu-bar-icon span {
  background-color: #fff;
}
.btn-menu-bar-icon span:before{
    margin-top: -5px;
}
.btn-menu-bar-icon span:after{
    margin-top: -7px;
}
.btn-menu-bar-icon p{
    /*margin-bottom: 0;*/
    transform: rotate(-90deg);
    /* transform-origin: top right; */
    display: flex;
    min-width: 100%;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #222222;
    margin-bottom: 10px;
}
.navigation-bar--inverse .btn-menu-bar-icon p {
  color: #fff;
}
.navigation-bar__section.navigation-bar__section-bottom .navigation-bar-btn:not(:last-child){
    margin-bottom: 15px;
}
.header-social{
    width: 100%;
}
.header-social .social-list>li:not(:last-child){
    margin-bottom: 10px;
}
.header-social .social-list>li>a{
    padding: 0;
    color: #A1A1A1;
    font-size: 20px;
}
/*sticky*/
.sticky-header{
    display: none;
}
.sticky-header .navigation-bar{
    height: 60px;
}
.sticky-header .navigation-bar .header-logo img{
    max-height: 60px;
    padding: 20px 0;
}
.sticky-header .navigation--main>li>a{
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
}
.sticky-header .navigation-bar-btn{
    height: 60px;
}
.sticky-header .navigation-bar-btn i{
    line-height: 60px;
}
/*header mobile*/
.header-logo--mobile img{
    padding: 15px 0;
}
/*off canvas*/
.navigation--offcanvas>li>a{
    font-size: 14px;
    font-weight: 300;
}
.mnmd-offcanvas .btn-form-author a{
    font-size: 14px;
    font-weight: 300;
}
.navigation--main .sub-menu a{
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 991px) and (min-width: 768px) {
    /*
        Layout
    */
    /*
        Content
    */
    .mobile-header{
        display: none !important;
    }
    .navigation-bar{
        display: block !important;
    }
    .navigation-bar .header-logo img {
        max-height: 45px;
        padding: 0;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */
    .header-logo--mobile img{
        padding: 0;
        max-height: 35px;
    }
    /*
        Content
    */
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
}
/* .header ----------------------- */
/* ----------------------- mnmd-feature-module-a */
/*
    Layout
*/
.mnmd-feature-module-a{
    padding-top: 50px;
}
/*
    Content
*/
.post--overlay-feature .post__text{
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-top: 50px;
}
.post--overlay-feature .post__text .post__cat{
    pointer-events: auto;
}
.post--overlay-feature .post__text .post__text-wrap{
    height: 100%;
    width: 100%;
}
.post--overlay-feature .post__text .post__text-inner{
    width: 720px;
    min-height: 450px;
    background-color: #fff;
    padding: 0 50px 90px 50px;
}
.post--overlay-feature .post__title:nth-child(1){
    align-self: flex-start;
    margin-top: 35px;
}
.post--overlay-feature .author-post .entry-author__name{
    pointer-events: auto;
}
.post--overlay-feature .post__text-inner > *{
    width: 100%;
}
.author-post img{
    width: 55px;
    height: 55px;
    margin-right: 15px;
}
.author-post img.avatar-circle{
    border-radius: 50%;
}
.author-post .entry-author-label{
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 0.8571rem;
    line-height: 1;
}
.author-post .entry-author__name{
    font-size: 15px;
    font-family: helvetica;
    line-height: 1.53;
    font-weight: 600;
    text-transform: capitalize;
    color: #3F3F3F;
}
.author-post .entry-author-inner{
    flex: 1;
}

@media (max-width: 1680px){
    .post--overlay-feature.post--overlay .post__text {
        min-height: 775px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 600px;
        min-height: 420px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 2.8571rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 700px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 550px;
        min-height: 380px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 2.5rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 650px;
    }
    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-inner {
        width: 530px;
        min-height: 350px;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 600px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 500px;
        min-height: 300px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 40px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 2rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -40px;
        margin-right: -40px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 550px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 460px;
        min-height: 300px;
        padding: 0 40px 35px 40px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    .author-post img {
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-feature-module-a{
        padding: 0;
    }
    /*
        Content
    */
    .post--overlay-feature .post-time-cat-wrap{
        margin-bottom: 25px;
    }
    .post--overlay-feature .post__title:nth-child(1){
        margin-top: 25px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 500px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 430px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 30px;
    }
    .post--overlay-feature .post-time-cat-wrap{
        margin-bottom: 25px;
    }
    .post--overlay-feature .post-time-cat-wrap.padding-top-25-bottom-25{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .author-post img {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -35px;
        margin-right: -35px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 35px;
        padding-right: 35px;
    }
    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 460px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 395px;
        min-height: 275px;
        padding: 0 35px 35px 35px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 30px;
    }
    .post--overlay-feature .post-time-cat-wrap{
        margin-bottom: 25px;
    }
    .post--overlay-feature .post-time-cat-wrap.padding-top-25-bottom-25{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    .author-post img {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -35px;
        margin-right: -35px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 35px;
        padding-right: 35px;
    }
    /*
        Content
    */
    .post--overlay-feature.post--overlay .post__text {
        min-height: 445px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 365px;
        min-height: 260px;
        padding: 0 35px 30px 35px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -40px;
        margin-right: -40px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-wrap{
        margin:  0 auto;
    }
    .post--overlay-feature.post--overlay .post__text {
        min-height: 400px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 370px;
        min-height: 250px;
        padding: 0 40px 30px 40px;
    }
    .post--overlay-feature .post-time-cat-wrap {
        margin-bottom: 20px;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-inner {
        width: 365px;
        min-height: 245px;
        padding: 0 35px 30px 35px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 25px;
    }
    .post--overlay-feature.post--overlay .post__text {
        min-height: 375px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -25px;
        margin-right: -25px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 25px;
        padding-right: 25px;
    }
    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-wrap{
        margin:  0;
        padding: 0 25px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 100%;
        min-height: 180px;
        padding: 0 25px 30px 25px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45 {
        margin-bottom: 25px;
    }
    .post--overlay-feature.post--overlay .post__text {
        min-height: 300px;
    }
    .post--overlay-feature .post__text-inner-top.margin-bottom-45{
        margin-bottom: 0;
    }
    .flexbox-space-y-bottom{
        display: none;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */
    .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--overlay-feature .padding-left-50-right-50,
    .post--overlay-feature .post__text .post__text-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-wrap{
        margin:  0;
        padding: 0 15px;
    }
    .post--overlay-feature .post__text .post__text-inner {
        width: 100%;
        min-height: 165px;
        padding: 0 20px 25px 20px;
    }
    .post--overlay-feature.post--overlay .post__text {
        min-height: 280px;
    }
    .post--overlay-feature .post__title.typescale-5_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.4;
    }
}
/* .mnmd-feature-module-a ----------------------- */
/* ----------------------- mnmd-feature-module-b */
/*
    Layout
*/
.mnmd-feature-module-b .post-main{
    padding-left: 155px;
    z-index: -1;
}
.mnmd-feature-module-b .post-sub{
    width: 1475px;
    margin-top: -170px;
    z-index: 1;
    position: relative;
}
.mnmd-feature-module-b .post-sub .posts-list .list-item:not(:last-child) .post--vertical-text-interleaved-thumb{
    border-right: 1px solid rgba(165,136,97,0.1);
}
.mnmd-feature-module-b .post--vertical-text-interleaved-thumb .line-border-bottom{
    border-bottom: 1px solid rgba(165,136,97,0.1);
}
/*
    Content
*/
/*post main*/
.post--overlay-feature-video .post__text{
    align-items: center;
    padding-bottom: 170px;
}
.post--overlay-feature-video .post__text-inner{
    width: 1320px;
    padding-right: 0;
    padding-left: 50px;
}
.post--overlay-feature-video .post__text-context{
    max-width: 550px;
    margin-right: 15px;
}
.post--overlay-feature-video .post__title{
    color: #fff;
}
.post-type-icon.post-icon-circle {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #222222;
    padding: 0;
    z-index: 2;
}
.post-type-icon.post-icon-circle i {
    font-size: 30px;
}
/*post sub*/
.post--vertical-text-interleaved-thumb{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-flow: column;
    background-color: #fff;
    padding-bottom: 30px;
    /*min-height: 520px;*/
    /*height: 100%;*/
    height: 40rem;
    /*align-content: space-between;*/
    align-items: flex-start;
    align-content: flex-start;
}
.post--vertical-text-interleaved-thumb .post__thumb{
    margin-bottom: 30px;
    width: 100%;
    align-self: flex-start;
}
.post--vertical-text-interleaved-thumb .post__text{
    order: -1;
    margin-bottom: 25px;
    width: 100%;
    min-height: 11.4285rem;
}
.post--vertical-text-interleaved-thumb .post__text-inner{
    padding: 0 30px;
    width: 100%;
}
.post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2{
    font-weight: 400;
}
.post--vertical-text-interleaved-thumb .post__excerpt{
    padding: 0 30px;
    font-size: 1.0714rem; /*font system*/
    line-height: 1.7;
    /*flex: 1;*/
}

/*.post--vertical-text-interleaved-thumb > .post__thumb:nth-child(1):last-child{*/
/*    margin-top: calc(  9.4285rem + 40px);*/
/*}*/
/*.post--vertical-text-interleaved-thumb .post__excerpt:nth-child(2):last-child,*/
/*.post--vertical-text-interleaved-thumb .post__excerpt:last-child{*/
/*    display: flex;*/
/*    align-content: flex-end;*/
/*    align-items: flex-end;*/
/*    flex: 1;*/
/*}*/

@media (max-width: 1680px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-main{
        padding-left: 120px;
        z-index: -1;
    }
    .mnmd-feature-module-b .post-sub{
        width: calc(100% - 50px);
    }
    /*
        Content
    */
    .post--overlay-feature-video .post__text-wrap{
        width: 100%;
    }
    .post--overlay-feature-video .post__text-inner{
        width: calc(100% - 50px);
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: 37.3571rem;
    }
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 195px;
        margin-bottom: 20px;
    }
    .post--vertical-text-interleaved-thumb .post__text {
        margin-bottom: 20px;
        min-height: 10.7142rem;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap{
        padding-top: 20px;
        margin-left: -25px;
        margin-right: -25px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap .post-time-cat-inner{
        padding-right: 25px;
        padding-left: 25px;
    }
    .post--vertical-text-interleaved-thumb .post__text-inner {
        padding: 0 25px;
        width: 100%;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--vertical-text-interleaved-thumb .post__excerpt{
        padding: 0 25px;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-main {
        padding-left: 100px;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 700px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 2.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--overlay-feature-video .post__text-context {
        max-width: 430px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: 33.5714rem;
    }
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 170px;
        margin-bottom: 20px;
    }
    .post--vertical-text-interleaved-thumb .post__text {
        margin-bottom: 20px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post sub*/
    .post--vertical-text-interleaved-thumb {
        height: 31rem;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap{
        margin-bottom: 15px;
    }
    .post--vertical-text-interleaved-thumb .post__thumb {
        height: 150px;
    }
    .post--vertical-text-interleaved-thumb .post__text {
        min-height: 9.2857rem;
    }
    .post--vertical-text-interleaved-thumb .post__text-inner {
        padding: 0 20px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap .post-time-cat-inner{
        padding-right: 20px;
        padding-left: 20px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
    .post--vertical-text-interleaved-thumb .post__excerpt{
        padding: 0 20px;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-main {
        padding-left: 0;
        margin-left: -50px;
    }
    .mnmd-feature-module-b .post-sub .flexbox-wrap.flexbox-wrap-4i{
        margin: -7.5px;
    }
    .mnmd-feature-module-b .post-sub .flexbox-wrap.flexbox-wrap-4i > *{
        width: 50%;
        padding: 7.5px;
    }
    .mnmd-feature-module-b .post-sub .posts-list .list-item:not(:last-child) .post--vertical-text-interleaved-thumb {
        border-right: none;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text{
        min-height: 575px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 2.1428rem; /*font system*/
        line-height: 1.4;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle{
        width: 75px;
        height: 75px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: 28.5714rem;
        align-content: space-between;
        padding-bottom: 0;
        flex-direction: initial;
        flex-flow: wrap;
    }
    .post--vertical-text-interleaved-thumb .post__thumb {
        height: 230px;
        margin-bottom: 0;
        align-self: flex-end;
        width: 100%;
    }
    .post--vertical-text-interleaved-thumb .post__text{
        min-height: 10.3571rem;
        margin-bottom: 25px;
    }
    .post--vertical-text-interleaved-thumb .post__text-inner {
        padding: 0 30px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: -30px;
        margin-right: -30px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap .post-time-cat-inner{
        padding-right: 30px;
        padding-left: 30px;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--vertical-text-interleaved-thumb .post__excerpt{
        display: none !important;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 2.1428rem; /*font system*/
        line-height: 1.4;
    }
    .post--overlay-feature-video .post__text-context {
        max-width: 380px;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle{
        width: 70px;
        height: 70px;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle i{
        font-size: 25px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: 27.1428rem;
    }
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 210px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-main{
        margin-left: -50px;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video .post__text-inner{
        padding-left: 50px;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    .mnmd-feature-module-b .post-main{
        margin-left: -25px;
    }
    .mnmd-feature-module-b .mnmd-block__inner.padding-left-50{
        padding-left: 25px;
    }
    .mnmd-feature-module-b .post-sub {
        width: calc(100% - 25px);
    }

    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video .post__text-inner {
        width: calc(100% - 25px);
    }
    .post--overlay-feature-video .post__text-inner{
        padding-left: 25px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: 25.3571rem;
        border-right: none;
    }
    .post--vertical-text-interleaved-thumb .post__thumb {
        height: 190px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .post--vertical-text-interleaved-thumb .post__text{
        min-height: 9.6428rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .mnmd-block__inner.padding-left-50{
        padding-left: 15px;
    }
    .mnmd-feature-module-b .post-main {
        margin-left: -15px;
    }
    .mnmd-feature-module-b .post-sub {
        width: calc(100% - 15px);
        margin-top: -130px;
    }

    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video .post__text-inner {
        padding-left: 15px;
        width: calc(100% - 15px);
    }
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 495px;
        padding-bottom: 130px;
    }
    .post--overlay-feature-video .post__text-context {
        max-width: 350px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    /*post sub*/
    .post--overlay-feature-video.post--overlay .post__text {
        padding-bottom: 110px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-sub .flexbox-wrap.flexbox-wrap-4i{
        margin: -20px -15px;
    }
    .mnmd-feature-module-b .post-sub .flexbox-wrap.flexbox-wrap-4i > *{
        width: 100%;
        padding: 20px 15px;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video .post__text-context {
        max-width: 325px;
    }
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 455px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb{
        height: auto;
        background-color: transparent;
    }
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 300px;
        margin-bottom: 15px;
    }
    .post--vertical-text-interleaved-thumb .post__text{
        height: auto;
        min-height: 150px;
        order: initial;
        margin-bottom: 0;
        background-color: #fff;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--vertical-text-interleaved-thumb .post__text-inner {
        padding: 0 20px 20px 20px;
    }
    .post--vertical-text-interleaved-thumb .post-time-cat-wrap .post-time-cat-inner {
        padding-right: 20px;
        padding-left: 20px;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2 {
        font-size: 1.4285rem;
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 390px;
        padding-bottom: 110px;
    }
    .post--overlay-feature-video .post__text-context {
        max-width: 300px;
    }
    .post--overlay-feature-video .post-time-cat-wrap{
        margin-bottom: 10px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle{
        width: 60px;
        height: 60px;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle i{
        font-size: 20px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 260px;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-sub {
        margin-top: -110px;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 330px;
        padding-bottom: 90px;
    }
    .post--overlay-feature-video .post__text-context {
        max-width: 260px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle{
        width: 50px;
        height: 50px;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle i{
        font-size: 20px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 220px;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2 {
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text {
        min-height: 300px;

    }
    .post--overlay-feature-video .post__text-context {
        max-width: 210px;
    }
    .post--overlay-feature-video .post__title.typescale-4_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--overlay-feature-video .post-type-icon.post-icon-circle{
        width: 45px;
        height: 45px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 210px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */
    .mnmd-feature-module-b .post-sub {
        margin-top: -90px;
    }
    /*
        Content
    */
    /*post main*/
    .post--overlay-feature-video.post--overlay .post__text {
        padding-bottom: 70px;
    }
    /*post sub*/
    .post--vertical-text-interleaved-thumb .post__thumb{
        height: 190px;
    }
    .post--vertical-text-interleaved-thumb .post__title.typescale-2.custom-typescale-2 {
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
/* .mnmd-feature-module-b ----------------------- */
/* ----------------------- mnmd-post--carousel-a */
/*
    Layout
*/
.mnmd-post--carousel-a .mnmd-block__inner{
    padding: 0 60px 60px 60px;
}
.mnmd-post--carousel-a .mnmd-block__inner-content-wrap{
    background-color: #fff;
    box-shadow:  0 75px 115px -70px rgba(0,0,0,0.11);
}
.mnmd-post--carousel-a .mnmd-block__inner-content-wrap .block-heading__title:last-child{
    padding-top: 25px;
}
.mnmd-post--carousel-a .block-heading{
    padding-left: 60px;
}

.mnmd-post--carousel-a .block-heading.block-heading-small.block-heading-line-bottom .block-heading__title:not(:last-child){
    margin-bottom: -20px;
}
.mnmd-post--carousel-a .block-heading.block-heading-small.block-heading-line-bottom .mnmd-carousel-nav-custom-holder:nth-child(1),
.mnmd-post--carousel-a .block-heading.block-heading-small.block-heading-line-bottom .mnmd-carousel-nav-custom-holder:nth-child(2){
    margin-bottom: -20px;
}
.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder{
    display: flex;
    align-self: stretch;
    height: auto;
    min-height: 60px;
}
/*
    Content
*/
.post--horizontal-100 .post__thumb{
    width: 100px;
    height: 100px;
}
.post--horizontal-space-top .post__text{
    padding-top: 5px;
}
.post--horizontal-space-top .post__title.typescale-0_5{
    font-weight: 400;
}

.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-next,
.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-prev{
    width: 60px;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder > *:not(:last-child){
    border-right: 1px solid rgba(0,0,0,0.1);
}
.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-prev i,
.mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-next i{
    font-size: 22px;
}
.mnmd-post--carousel-a .owl-carousel .owl-nav{
    display: none;
}
.mnmd-post--carousel-a .owl-carousel .owl-dots{
    display: none;
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 45px 60px 45px;
    }
    .mnmd-post--carousel-a .block-heading{
        padding-left: 45px;
    }
    /*
        Content
    */
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 20px;
        width: 90px;
        height: 90px;
    }
    .post--horizontal-space-top .post-time-cat-wrap.margin-bottom-20{
        margin-bottom: 15px;
    }
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.0714rem; /*font system*/
        line-height: 1.53;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 25px;
        width: 95px;
        height: 95px;
    }
    /*
        Content
    */
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 20px;
        width: 80px;
        height: 80px;
    }
    .post--horizontal-space-top .post__text{
        padding-top: 0;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 35px 45px 35px;
    }
    .mnmd-post--carousel-a .block-heading{
        padding-left: 35px;
    }
    /*
        Content
    */

    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 25px;
        width: 85px;
        height: 85px;
    }

    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--horizontal-space-top .post-time-cat-wrap.margin-bottom-20{
        margin-bottom: 10px;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 20px;
        width: 80px;
        height: 80px;
    }
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.43; /*font system*/
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 860px){
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 15px;
        width: 70px;
        height: 70px;
    }
    .post--horizontal-space-top .post-time-cat-wrap.margin-bottom-20 {
        margin-bottom: 5px;
    }
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.0714rem; /*font system*/
        line-height: 1.53;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .block-heading.block-heading-small{
        margin-bottom: 45px;
    }
    /*
        Content
    */
    .post--horizontal-space-top {
        display: flex;
        flex-wrap: wrap;
    }
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .post--horizontal-space-top .post__text{
        flex: 1;
    }

}
@media (max-width: 680px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .block-heading.block-heading-small{
        margin-bottom: 45px;
    }
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 25px 45px 25px;
    }
    .mnmd-post--carousel-a .block-heading{
        padding-left: 25px;
    }
    /*
        Content
    */
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1rem; /*font system*/
        line-height: 1.5; /*font system*/
    }

}
@media (max-width: 619px) and (min-width: 576px){
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 0 45px 25px;
    }
    .mnmd-post--carousel-a .owl-carousel .owl-stage{
        left: -100px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .block-heading.block-heading-small{
        margin-bottom: 40px;
    }
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 25px 40px 25px;
    }

    /*
        Content
    */
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.43; /*font system*/
    }
    .mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-next,
    .mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder .owl-prev{
        width: 50px;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .mnmd-carousel-nav-custom-holder {
        min-height: 50px;
    }
    .mnmd-post--carousel-a .block-heading.block-heading-small{
        margin-bottom: 35px;
    }
    .mnmd-post--carousel-a .mnmd-block__inner{
        padding: 0 25px 35px 25px;
    }
    /*
        Content
    */
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .mnmd-post--carousel-a .post--horizontal-100 .post__thumb,
    .mnmd-post--carousel-a .post--horizontal-space-top .post__thumb{
        margin-right: 15px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */
    .mnmd-post--carousel-a .mnmd-block__inner {
        padding: 0 20px 30px 20px;
    }
    .mnmd-post--carousel-a .block-heading{
        padding-left: 20px;
    }
    .mnmd-post--carousel-a .block-heading.block-heading-small{
        margin-bottom: 30px;
    }
    /*
        Content
    */
    .post--horizontal-100 .post__thumb,
    .post--horizontal-space-top .post__thumb{
        margin-right: 15px;
    }
    .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.0714rem; /*font system*/
        line-height: 1.53;
    }

    .mnmd-post--carousel-a .post--horizontal-100 .post__thumb,
    .mnmd-post--carousel-a .post--horizontal-space-top .post__thumb{
        width: 60px;
        height: 60px;
    }
    .mnmd-post--carousel-a .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1rem; /*font system*/
        line-height: 1.5; /*font system*/
    }
}
/* .mnmd-post--carousel-a ----------------------- */
/* ----------------------- mnmd-post--carousel-b */
/*
    Layout
*/
.mnmd-post--carousel-b .owl-carousel{
    padding-right: 185px;
}
.mnmd-post--carousel-b .owl-carousel .slide-content{
    height: 100%;
}
/*
    Content
*/
.post--vertical-text-background,
.post--vertical-text-background .post__text{
    transition: 0.3s;
}
.post--vertical-text-background{
    height: 100%;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
}
.post--vertical-text-background .post__text{
    background-color: #F7F7F7;
    flex: 1;
    min-height: 165px;
}
.post--vertical-text-background .post__text-inner{
    padding: 0 30px 30px 30px;
}
.post--vertical-text-background .line-border-bottom{
    border-bottom: 1px solid  rgba(165,136,97,0.2);
}
.post--vertical-text-background:hover{
    z-index: 5;
}
.post--vertical-text-background:hover .post__text{
    background-color: #FFF;
    /*box-shadow:  0 17px 51px -40px rgba(34,34,34,0.11);*/
    box-shadow: 0 30px 40px -15px rgba(34,34,34,0.11);
    z-index: 5;
}
.post--vertical-text-background .post__title.typescale-2.custom-typescale-2{
    font-weight: 400;
}
.mnmd-post--carousel-b .owl-carousel .owl-stage-outer{
    margin-bottom: -50px;
}
.mnmd-post--carousel-b .owl-carousel .owl-stage{
    padding-bottom: 50px;
    display: flex;
}
.mnmd-post--carousel-b .owl-carousel .owl-dots{
    display: none;
}
.mnmd-post--carousel-b .owl-carousel .owl-nav{
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}
.mnmd-post--carousel-b .owl-carousel .owl-next:hover,
.mnmd-post--carousel-b .owl-carousel .owl-prev:hover{
    box-shadow: 0 2px 16px rgba(165,136,97,0.48);
 }
@media (max-width: 1680px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 135px;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb{
        height: 200px;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-nav{
        right: 25px;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 150px;
    }
    /*
        Content
    */
    .mnmd-post--carousel-b .owl-carousel .owl-nav{
        right: 45px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 120px;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb{
        height: 190px;
    }
    .post--vertical-text-background .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-nav{
        right: 25px;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 85px;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 175px;
    }
    .post--vertical-text-background .post__text{
        min-height: 155px;
    }
    .post--vertical-text-background .post__text-inner {
        padding: 0 20px 20px 20px;
    }
    .post--vertical-text-background .post-time-cat-wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--vertical-text-background .post-time-cat-inner{
        padding-left: 20px;
        padding-right: 20px;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-nav{
        right: 0;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 0;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 210px;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-nav{
        display: none;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-dots{
        display: block;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-dots{
        padding-bottom: 0;
        padding-top: 20px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel{
        padding-right: 0;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 170px;
    }
    .post--vertical-text-background .post__text {
        min-height: 155px;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 190px;
    }
    .post--vertical-text-background .post__text {
        min-height: 160px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 200px;
    }
    .post--vertical-text-background .post__text {
        min-height: 160px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 180px;
    }
    .post--vertical-text-background .post__text {
        min-height: 155px;
    }

}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel .owl-stage{
        left: -100px;
    }
    .mnmd-post--carousel-b .mnmd-block__inner{
        margin-right: -15px;
    }
    /*
        Content
    */

    .post--vertical-text-background .post__thumb {
        height: 200px;
    }

}
@media (max-width: 520px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel .owl-stage{
        left: -70px;
    }
    /*
        Content
    */

}
@media (max-width: 480px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .owl-carousel .owl-stage{
        left: -50px;
    }
    /*
        Content
    */
}
@media (max-width: 420px) {
    /*
        Layout
    */
    .mnmd-post--carousel-b .mnmd-block__inner{
        margin-right: 0;
    }
    .mnmd-post--carousel-b .owl-carousel .owl-stage{
        left: 0;
    }
    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 220px;
    }
    .post--vertical-text-background .post__text {
        min-height: 165px;
    }
    .post--vertical-text-background .post__title.typescale-2.custom-typescale-2{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 210px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-text-background .post__thumb {
        height: 190px;
    }
    .post--vertical-text-background .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
/* .mnmd-post--carousel-b ----------------------- */
/* ----------------------- mnmd-post--grid-a */
/*
    Layout
*/
.mnmd-post--grid-a .mnmd-block__inner-content-wrap{
    padding-left: 130px;
}
.mnmd-post--grid-a .posts-list{
    position: relative;
    /*padding-left: 130px;*/
    pointer-events: none;
    min-height: 600px;
}
.mnmd-post--grid-a .posts-list,
.mnmd-post--grid-a .posts-list .list-item{
    width: 100%;
}
.mnmd-post--grid-a .posts-list .list-item {
    pointer-events: auto;
}

.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__text,
.mnmd-post--grid-a .posts-list .list-item:first-child .post--horizontal-social-share .post__text{
    background-color: var(--color-primary);
    /*border-bottom: none;*/
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__thumb,
.mnmd-post--grid-a .posts-list .list-item:first-child .post--horizontal-social-share .post__thumb,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__meta,
.mnmd-post--grid-a .posts-list .list-item:first-child .post--horizontal-social-share .post__meta:not(.post__meta-head) {
    visibility: visible;
    opacity: 1;
}

.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .line-border-bottom,
.mnmd-post--grid-a .posts-list .list-item:first-child  .post--horizontal-social-share .line-border-bottom{
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .post__text{
    background-color: transparent;
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .post__thumb,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .post__meta:not(.post__meta-head)  {
    opacity: 0;
    visibility: hidden;
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .line-border-bottom{
    border-bottom: 1px solid transparent;
}

.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .post__title,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .inverse-text .post__title a,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share time.time{
    color: #222222;
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share .post__cat{
    color: var(--color-primary);
}

.mnmd-post--grid-a .posts-list .list-item:last-child .post--horizontal-social-share .post__text{
    border-bottom: none;
}
/*
    Content
*/
.post--horizontal-social-share{
    /*padding-left: 130px;*/
    position: initial;
}
.post--horizontal-social-share .post__thumb{
    width: 70.85%;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.post--horizontal-social-share .post__text{
    height: 200px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0 50px;
    margin-left: 70.85%;
}
.post--horizontal-social-share .post__meta:not(.post__meta-head) {
    position: absolute;
    left: -130px;
    top: 0;
    margin-top: 0;
    visibility: hidden;
}

.post--horizontal-social-share .post__meta i {
    margin: 0;
}
.post--horizontal-social-share .post__social-share a{
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #BBBBBB;
    font-size: 18px;
}
.post--horizontal-social-share .post__social-share a:not(:last-child){
    margin-bottom: 10px;
}
.post--horizontal-social-share .line-border-bottom{
    border-bottom: 1px solid rgba(252, 252, 252, 0.3));
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__text,
.post--horizontal-social-share:hover .post__text{
    background-color: var(--color-primary);
}

.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__thumb,
.post--horizontal-social-share:hover .post__thumb{
    background-color: var(--color-primary);
    opacity: 1;
    visibility: visible;
}

.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__cat,
.post--horizontal-social-share:hover .post__cat,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover time.time,
.post--horizontal-social-share:hover time.time{
    color: #fff;
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__title,
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__title a,
.post--horizontal-social-share:hover .post__title{
    color: #fff;
}
.mnmd-post--grid-a .posts-list:hover .list-item:first-child .post--horizontal-social-share:hover .post__meta,
.post--horizontal-social-share:hover .post__meta{
    visibility: visible;
    opacity: 1;
}
.post--horizontal-social-share:hover .line-border-bottom{
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 992px) {
    .mnmd-post--grid-a .posts-list{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}
@media (max-width: 1680px){
    /*
        Layout
    */
    .mnmd-post--grid-a .mnmd-block__inner-content-wrap{
        padding-left: 100px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__meta:not(.post__meta-head) {
        left: -100px;
    }
    .post--horizontal-social-share .post__title.typescale-2_7{
        font-size: 1.4285rem;
        line-height: 1.4;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .post--horizontal-social-share .padding-reverse-left-50-right-50{
        margin-left: -35px;
        margin-right: -35px;
    }
    .post--horizontal-social-share .padding-left-50-right-50,
    .post--horizontal-social-share .post__text .post__text-inner {
        padding-left: 35px;
        padding-right: 35px;
    }
    /*
        Content
    */
    .mnmd-post--grid-a .posts-list {
        min-height: 495px;
    }
    .post--horizontal-social-share .post__thumb{
        width: 65.85%;
        height: 495px;
    }
    .post--horizontal-social-share .post__text{
        padding: 0 35px;
        height: 165px;
        margin-left: 65.85%;
    }
    .post--horizontal-social-share .post-time-cat-wrap{
        margin-bottom: 25px;
    }
    .post--horizontal-social-share .post-time-cat-wrap.padding-top-25-bottom-25{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */

    /*
        Content
    */
    .mnmd-post--grid-a .posts-list {
        min-height: 465px;
    }
    .post--horizontal-social-share .post__thumb{
        width: 67.85%;
        height: 465px;
    }
    .post--horizontal-social-share .post__text{
        height: 155px;
        margin-left: 67.85%;
    }
    .post--horizontal-social-share .post__title.typescale-2_7{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .mnmd-block__inner-content-wrap{
        padding-left: 0;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__meta:not(.post__meta-head) {
        left: 15px;
        top: 15px;
        z-index: 1;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .posts-list{
        padding-top: 450px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .mnmd-post--grid-a .posts-list .list-item{
        width: calc(100% / 3);
    }
    .mnmd-post--grid-a .posts-list .list-item:not(:last-child) .post--horizontal-social-share .post__text{
        border-right: 1px solid rgba(0,0,0,0.1);
        border-bottom: none;
    }

    /*
        Content
    */

    .post--horizontal-social-share .padding-reverse-left-50-right-50{
        margin-left: -25px;
        margin-right: -25px;
    }
    .post--horizontal-social-share .padding-left-50-right-50,
    .post--horizontal-social-share .post__text .post__text-inner {
        padding-left: 25px;
        padding-right: 25px;
    }
    .post--horizontal-social-share .post__thumb {
        width: 100%;
        height: 450px;
    }
    .post--horizontal-social-share .post__text {
        height: auto;
        min-height: 150px;
        margin-left: 0;
        padding: 0 25px 25px 25px;
    }
    .post--horizontal-social-share .post-time-cat-wrap {
        margin-bottom: 25px;
    }
    .post--horizontal-social-share .post__social-share a {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    .post--horizontal-social-share .post__title.typescale-2_7{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.43; /*font system*/
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-social-share .padding-reverse-left-50-right-50{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--horizontal-social-share .padding-left-50-right-50,
    .post--horizontal-social-share .post__text .post__text-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .post--horizontal-social-share{
        height: 100%;
    }
    .post--horizontal-social-share .post__text{
        padding: 0 20px 30px 20px;
        height: 100%;
    }
    .post--horizontal-social-share .post-time-cat-wrap {
        margin-bottom: 30px;
    }
    .post--horizontal-social-share .post__title a.limit-line-text.limit-line-2{
        -webkit-line-clamp: initial;
    }
    .post--horizontal-social-share .post__title.typescale-2_7{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .mnmd-block__inner .mnmd-block__inner-content-wrap{
        position: relative;
    }
    .mnmd-post--grid-a .posts-list{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        position: initial;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        justify-content: initial;
        pointer-events: auto;
    }
    .mnmd-post--grid-a .posts-list .list-item{
        min-width: 280px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__text{
        padding: 0 20px 30px 20px;
        min-height: 175px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .posts-list{
        padding-top: 395px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__thumb{
        height: 395px;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .posts-list{
        padding-top: 300px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__thumb{
        height: 300px;
    }
}
@media (max-width: 420px) {
    /*
         Layout
     */
    .mnmd-post--grid-a .posts-list{
        padding-top: 280px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__thumb{
        height: 280px;
    }

}
@media (max-width: 380px) {
    /*
       Layout
   */
    .mnmd-post--grid-a .posts-list{
        padding-top: 260px;
    }
    .mnmd-post--grid-a .posts-list .list-item{
        min-width: 100%;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__thumb{
        height: 260px;
    }
    .post--horizontal-social-share .post__text {
        min-height: 165px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */
    .mnmd-post--grid-a .posts-list{
        padding-top: 240px;
    }
    /*
        Content
    */
    .post--horizontal-social-share .post__thumb{
        height: 240px;
    }
    .post--horizontal-social-share .post__social-share a{
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}
/* .mnmd-post--grid-a ----------------------- */
/*----------------------- mnmd-post-listing--grid-a_random */
/*
    Layout
*/
.mnmd-post-listing--grid-a .list-item.item-large.item-first{
    max-width: 100%;
    flex: initial;
}
/*.mnmd-post-listing--grid-a .list-item.item-large{
    flex: 1;
    width: 100%;
}*/
.mnmd-post-listing--grid-a .list-item.item-small{
    width: calc(100% / 3);
}
.mnmd-post-listing--grid-a .list-item{
    max-width: calc(70% - 45px);
}
/*
    Content
*/

@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
}
/* .mnmd-post-listing--grid-a_random ----------------------- */
/* ----------------------- mnmd-post-listing--grid-a */
/*
    Layout
*/
.mnmd-post-listing--grid-a .list-item.item-large{
    width: calc(100% - 100% / 3);
}
.mnmd-post-listing--grid-a .list-item.item-small{
    width: calc(100% / 3);
}
/*.mnmd-post-listing--grid-a .list-item:nth-child(4n+3){*/
/*    width: calc(100% / 3);*/
/*}*/
.mnmd-post-listing--grid-a .posts-list{
    margin: -60px -22.5px;
}
.mnmd-post-listing--grid-a .posts-list.flexbox-wrap.flex-space-45 > *{
    padding: 60px 22.5px;
}
/*
    Content
*/
.post--overlay-feature.post--overlay-feature-style-2 .post__text{
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner{
    min-height: 265px;
    width: 100%;
    max-width: 650px;
}
.post--overlay-feature.post--overlay-feature-style-2 .post__title{
    margin-bottom: 0;
}
.post--overlay-feature.post--overlay-feature-style-2 .post__title:first-child{
    justify-content: flex-start;
    flex: 1;
    margin-top: 0;
    margin-right: 55px;
}
.post--overlay-feature.post--overlay-feature-style-2 .author-post{
    max-width: 180px;
    align-self: flex-start;
}
.post--overlay-feature.post--overlay-feature-style-2 .author-post:last-child{
    justify-content: flex-end;
}
/**/
.post--overlay-feature.post--overlay-feature-style-3 .post__text{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner{
    min-height: 310px;
    width: 100%;
    max-width: 440px;
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 650px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner{
        min-height: 245px;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text{
        min-height: 370px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        min-height: 250px;
        padding: 0 45px 30px 45px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap {
        margin-left: -45px;
        margin-right: -45px;
        margin-bottom: 25px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-inner{
        padding-left: 45px;
        padding-right: 45px;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-a .posts-list{
        margin: -40px -15px;
    }
    .mnmd-post-listing--grid-a .posts-list.flexbox-wrap.flex-space-45 > *{
        padding: 40px 15px;
    }
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 540px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        padding: 0 30px 30px 30px;
        max-width: 600px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: 25px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner{
        padding-left: 30px;
        padding-right: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    /**/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text{
        min-height: 350px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner{
        padding: 0 30px 30px 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        margin-left: -30px;
        margin-right: -30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .author-post img{
        width: 50px;
        height: 50px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text-inner-top{
        margin-bottom: 30px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 520px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        padding: 0 30px 30px 30px;
        max-width: 575px;
        min-height: 230px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title:first-child{
        margin-right: 40px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap {
        margin-left: -30px;
        margin-right: -30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 325px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner{
        min-height: 230px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-a .list-item.item-large{
        width: 100%;
        max-width: 100%;
    }
    .mnmd-post-listing--grid-a .list-item.item-small{
        width: 50%;
    }
    .mnmd-post-listing--grid-a .posts-list{
        margin: -30px -20px;
    }
    .mnmd-post-listing--grid-a .posts-list.flexbox-wrap.flex-space-45 > *{
        padding: 30px 20px;
    }
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 500px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner{
        max-width: 590px;
        min-height: 240px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title:first-child {
        margin-right: 45px;
    }
    /*style 3 */
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 380px;
        padding: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        min-height: 260px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .mnmd-post-listing--list-a.mnmd-post-listing--list-b .flexbox-wrap.flexbox-wrap-1i {
      width: calc(100% + 50px);
    }

}
@media (max-width: 1024px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-a .posts-list{
        margin: -25px -15px;
    }
    .mnmd-post-listing--grid-a .posts-list.flexbox-wrap.flex-space-45 > *{
        padding: 25px 15px;
    }
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 565px;
        min-height: 230px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 485px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-a .posts-list{
        margin: -15px;
    }
    .mnmd-post-listing--grid-a .posts-list.flexbox-wrap.flex-space-45 > *{
        padding: 15px;
    }
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 450px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 550px;
        min-height: 215px;
        padding: 0 30px 30px 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap {
        margin-left: -30px;
        margin-right: -30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 380px;
        padding: 15px;
        align-items: flex-end;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        min-height: 165px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7 {
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        margin-bottom: 15px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text-inner-top{
        margin-bottom: 0;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text-inner-bottom{
        display: none;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner{
        max-width: 520px;
        min-height: 200px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }

    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 355px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text{
        min-height: 420px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 500px;
        padding: 0 20px 20px 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 320px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        padding: 0 20px 20px 20px;
        min-height: 155px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-inner {
        padding-left: 20px;
        padding-right: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7 {
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }

}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-a .list-item.item-small {
        width: 100%;
        max-width: 100%;
    }
    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 100%;
        padding: 0 30px 30px 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap {
        margin-left: -30px;
        margin-right: -30px;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        flex: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        align-items: flex-end;
        justify-content: flex-start;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        max-width: 350px;
        min-height: 165px;
        padding: 0 30px 30px 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        margin-left: -30px;
        margin-right: -30px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7 {
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */

    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 365px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-wrap{
        margin: 0;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        max-width: 100%;
        min-height: 160px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7 {
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 400px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-wrap{
        padding: 0;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 100%;
        padding: 0 20px 20px 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner{
        padding: 0 20px 20px 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-wrap{
        padding: 0;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 350px;
    }

}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 355px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap{
        margin-bottom: 15px;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 315px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*style 2*/
    .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 330px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 100%;
        padding: 0 20px 20px 20px;
        min-height: 165px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        margin-bottom: 0;
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--overlay-feature.post--overlay-feature-style-2 .author-post{
        display: none;
    }
    /*style 3*/
    .post--overlay-feature.post--overlay-feature-style-3 .post__text {
        min-height: 285px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__text .post__text-inner {
        max-width: 100%;
        min-height: 145px;
    }
    .post--overlay-feature.post--overlay-feature-style-3 .post__title.typescale-2_7 {
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
}
/* .mnmd-post-listing--grid-a ----------------------- */

/* ----------------------- mnmd-post-listing--grid-b */
/*
    Layout
*/
.mnmd-post-listing--grid-b .block-heading.block-heading-line-bottom,
.mnmd-post-listing--grid-b .block-heading.block-heading-line-top.block-heading--center{
    padding-bottom: 30px;
}

.mnmd-post-listing--grid-b .posts-list{
    margin : -10px;
}
.mnmd-post-listing--grid-b .posts-list .item-large{
    width: 50%;
    /*max-width: calc(745px - 20px);*/
}
.list-item-size,
.mnmd-post-listing--grid-b  .list-item{
    width: 25%;
    padding: 10px;
}
.mnmd-post-listing--grid-b  .list-item{
    /*max-width: calc( (100% - 745px - 40px) / 2 );*/
    /*min-width: calc( (100% - 745px - 40px) / 2 );*/
}
/*
    Content
*/
.post--vertical-layout-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}
.post--vertical-layout-grid > *{
    width: 100%;
}
.post--vertical-layout-grid .post__content-body{
    order: -1;
    padding: 0 50px;
}
.post--vertical-layout-grid .post__content-head{
    padding: 0 0 0 50px;
    margin-top: 50px;
}
.post--vertical-layout-grid .post__thumb{
    margin-bottom: 0;
    margin-left: auto;
    width: 76%;
}
.post--vertical-layout-grid .post__thumb:before{
    content: '';
    background-color: #000;
    width: 9999px;
    height: 1px;
    opacity: 0.1;
    position: absolute;
    right: 0;
    top: 0;
}
.post--vertical-layout-grid .post-title-author-wrap{
    width: 100%;
}
.post--vertical-layout-grid .post__text{
    margin: 0 -50px;
}
.post--vertical-layout-grid .post__text-inner{
    padding: 0;
}
.post--vertical-layout-grid .post__title,
.post--vertical-layout-grid .post__excerpt{
    max-width: 345px;
    order: -1;
    margin-bottom: 45px;
    width: 100%;
}
.post--vertical-layout-grid .author-post{
    /*max-width: 245px;*/
    /*margin-left: auto;*/
    /*margin-right: 0;*/
}
.post--vertical-layout-grid .post__title{
    margin-bottom: 0;
}
.post--vertical-layout-grid .post__excerpt{
    width: calc(100% - 50px);
}
.post--vertical-layout-grid .post-time-cat-wrap,
.post--vertical-layout-grid .post-title-author-wrap {
    width: 100%;
    padding-left: 50px;
    padding-right: 45px;
}
.post--vertical-layout-grid .post-title-author-wrap{
    margin-top: -45px;
}
.post--vertical-layout-grid .post__title,
.post--vertical-layout-grid .author-post{
    margin-top: 45px;
    align-self: flex-start;
}
.mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb{
    width: 41.75%;
}
.mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__excerpt{
    padding-top: 35px;
    width: 49.66%;
}
.mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__content-head{
    margin-top: 30px;
}
.mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title{
    margin-right: 9.15%;
    width: 52.51%;
    /*flex: 1;*/
}
.mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__meta:not(.post__meta-head) {
    width: 37.71%;
    margin-left: auto;
    margin-right: 0;
}
.post--vertical-layout-grid.post--vertical-layout-grid-video .post-type-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 13px 16px rgba(0,0,0,0.14);
}
.post--vertical-layout-grid.post--vertical-layout-grid-video .post-type-icon i{
    font-size: 25px;
}
.mnmd-post-listing--grid-b .list-item:not(.item-large) .post--vertical-layout-grid .post__title  a{
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.thegrid-btn-load-more{
    box-shadow: 0 1px 2px rgba(34,34,34,0.11);
    background-color: #fff;
    font-size: 1.2857rem; /*font system*/
    line-height: 1.44;
    text-transform: uppercase;
    padding: 27.5px 57.5px;
    color: #222222;
    transition: 0.3s;
    border: none;
    margin-top: 80px;
}
.thegrid-btn-load-more:hover,
.thegrid-btn-load-more:active,
.thegrid-btn-load-more:active:hover,
.thegrid-btn-load-more:focus{
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    box-shadow: 0 5px 10px rgba(34,34,34,0.11);

}
@media (max-width: 1680px) and (min-width: 1546px){
    /*
        Layout
    */
    /*
        Content
    */
    .post--vertical-layout-grid .post__content-body{
        padding: 0 40px;
    }
    .post--vertical-layout-grid .post__content-head{
        padding: 0 0 0 40px;
        margin-top: 45px;
    }
    .post--vertical-layout-grid .post__thumb{
        height: 140px;
    }
    .post--vertical-layout-grid .post__text{
        margin: 0 -40px;
    }
    .post--vertical-layout-grid .post-time-cat-wrap,
    .post--vertical-layout-grid .post-title-author-wrap{
        padding-left: 40px;
        padding-right: 40px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .post--vertical-layout-grid .post__title.typescale-2_7{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--vertical-layout-grid .post__title, .post--vertical-layout-grid .author-post{
        margin-top: 35px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__content-head {
        margin-top: 40px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb{
        height: 185px;
    }
    .thegrid-btn-load-more{
        margin-top: 60px;
        padding: 25px 50px;
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
}
@media (max-width: 1545px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-b .posts-list{
        /*margin : -10px;*/
    }
    .mnmd-post-listing--grid-b .posts-list .item-large{
        width: 60%;
    }
    .list-item-size,
    .mnmd-post-listing--grid-b  .list-item{
        width: calc(40% - 2px);
        /*padding: 10px;*/
    }
    /*
        Content
    */
    .post--vertical-layout-grid .post__title,
    .post--vertical-layout-grid .author-post{
        width: 100%;
        max-width: 100%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__meta:not(.post__meta-head) {
        width: 37.71%;
        margin-left: auto;
        margin-right: 0;
    }
    .thegrid-btn-load-more{
        margin-top: 70px;
        padding: 25px 50px;
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    /*
        Content
    */
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    .post--vertical-layout-grid .post__title.typescale-2_7{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .thegrid-btn-load-more{
        margin-top: 80px;
        padding: 25px 55px;
        font-size: 1rem; /*font system*/
        line-height: 1.5;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-b .posts-list{
        margin: -20px;
    }
    .mnmd-post-listing--grid-b .posts-list .item-large{
        width: 100%;
    }
    .list-item-size,
    .mnmd-post-listing--grid-b  .list-item{
        width: calc(50% - 2px);
        padding: 20px;
    }
    /*
        Content
    */
    .post--vertical-layout-grid .post__content-head {
        padding: 0 0 0 50px;
        margin-top: 45px;
    }
    .post--vertical-layout-grid .post__title,
    .post--vertical-layout-grid .author-post {
        margin-top: 40px;
    }
    .post--vertical-layout-grid .post-time-cat-wrap{
        padding-bottom: 20px;
        padding-top: 20px;
    }


    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 2rem; /*font system*/
        line-height: 1.4;
    }
    .post--vertical-layout-grid .post__title.typescale-2_7{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--vertical-layout-grid .post-time-cat-wrap, .post--vertical-layout-grid .post-title-author-wrap {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .post--vertical-layout-grid .post__content-head {
        padding: 0 0 0 30px;
        margin-top: 40px;
    }
    .post--vertical-layout-grid .post__title, .post--vertical-layout-grid .author-post {
        margin-top: 35px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5 {
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }

    .post--vertical-layout-grid .post__title.typescale-2_7 {
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-b .posts-list{
        margin: -10px;
    }
    .list-item-size,
    .mnmd-post-listing--grid-b  .list-item{
        padding: 10px;
    }
    /*
        Content
    */
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .post--vertical-layout-grid .post__title.typescale-2_7 {
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--vertical-layout-grid .post__excerpt{
        font-size: 1.0714rem;
        line-height: 1.53;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title {
        margin-right: 9.15%;
        width: 47.92%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__meta:not(.post__meta-head) {
        width: 39.85%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb{
        height: 180px;
    }
    .thegrid-btn-load-more{
        margin-top: 70px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    .thegrid-btn-load-more{
        margin-top: 65px;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */
    .mnmd-post-listing--grid-b .posts-list .item-large{
        width: 100%;
    }
    .list-item-size,
    .mnmd-post-listing--grid-b  .list-item{
        width: 100%;
    }
    /*
        Content
    */
    .post--vertical-layout-grid .post__thumb{
        height: 180px;
        width: 60%;
    }
    .post--vertical-layout-grid .post__excerpt{
        max-width: 80%;
        margin-bottom: 40px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title {
        margin-right: 20px;
        width: 100%;
        flex: 1;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__meta:not(.post__meta-head) {
        width: 180px;
        margin-left: 0;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__excerpt{
        padding-top: 0;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__content-head {
        margin-top: 40px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb{
        width: 60%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__excerpt{
        width: calc( 100% - 30px);
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--vertical-layout-grid .post__content-body{
        padding: 0 20px;
    }
    .post--vertical-layout-grid .post__content-head{
        padding: 0 0 0 20px;
        margin-top: 35px;
    }

    .post--vertical-layout-grid .post__text{
        margin: 0 -20px;
    }
    .post--vertical-layout-grid .post-time-cat-wrap,
    .post--vertical-layout-grid .post-title-author-wrap{
        padding-left: 20px;
        padding-right: 20px;
    }


    .post--vertical-layout-grid .post__thumb {
        height: 150px;
        width: 60%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__excerpt {
        width: calc( 100% - 20px);
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title {
        margin-right: 0;
        width: 100%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__meta:not(.post__meta-head) {
        width: 100%;
        margin-left: 0;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb {
        height: 170px;
    }
    .thegrid-btn-load-more{
        margin-top: 60px;
        padding: 20px 45px;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--vertical-layout-grid .post__content-head {
        margin-top: 40px;
    }
    .post--vertical-layout-grid .post__excerpt{
        max-width: 100%;
        width: calc(100% - 20px);
    }
    .post--vertical-layout-grid .post__thumb {
        height: 145px;
        width: 70%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb {
        width: 70%;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-layout-grid .post__thumb {
        width: 75%;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb {
        width: 75%;
        height: 160px;
    }
    .thegrid-btn-load-more {
        padding: 15px 40px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-layout-grid .post__content-head {
        margin-top: 35px;
    }
    .post--vertical-layout-grid .post__thumb {
        height: 130px;
    }
    .post--vertical-layout-grid .post-time-cat-wrap{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .post--vertical-layout-grid .post__excerpt {
        margin-bottom: 35px;
    }
    .post--vertical-layout-grid.post--vertical-layout-grid-video .post-type-icon{
        width: 55px;
        height: 55px;
    }
    .post--vertical-layout-grid.post--vertical-layout-grid-video .post-type-icon i{
        font-size: 20px;
    }
    .post--vertical-layout-grid .post__title, .post--vertical-layout-grid .author-post {
        margin-top: 30px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb {
        height: 150px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__content-head {
        margin-top: 35px;
    }
    .thegrid-btn-load-more{
        margin-top: 60px;
        padding: 15px 40px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--vertical-layout-grid .post__thumb {
        height: 120px;
    }

    .post--vertical-layout-grid .post__title.typescale-2_7{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__title.typescale-3_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--vertical-layout-grid.post--vertical-layout-grid-video .post-type-icon{
        width: 50px;
        height: 50px;
    }
    .mnmd-post-listing--grid-b .list-item.item-large .post--vertical-layout-grid .post__thumb {
        height: 130px;
    }
    .thegrid-btn-load-more{
        margin-top: 50px;
        padding: 20px 55px;
    }
}
/* .mnmd-post-listing--grid-b ----------------------- */
/* ----------------------- mnmd-post-listing--grid-c */
/*
    Layout
*/
.mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap{
    margin-right: -50px;
    margin-left: -50px;
}
.mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap >  *{
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 80px;
}
@media (min-width: 1200px) {
    .mnmd-post-listing--grid-c .block-heading.block-heading-line-bottom,
    .mnmd-post-listing--grid-c .block-heading.block-heading-line-top.block-heading--center{
        margin-bottom: 0;
    }
}
/*post main*/
.mnmd-post-listing--grid-c .post-main{
    border-right: 1px solid rgba(0,0,0,0.1);
    width: 70.0805%;
}
.mnmd-post-listing--grid-c .post-main .posts-list-small {
    padding: 50px 10px;
}
.mnmd-post-listing--grid-c .post-main .posts-list-small > .list-item{
    padding: 0 20px;
}
.mnmd-post-listing--grid-c .post-main .posts-list-small:first-child{
    padding-top: 30px;
}
.mnmd-post-listing--grid-c .post-main .posts-list-small:last-child{
    padding-bottom: 30px;
}
/*post sub*/
.mnmd-post-listing--grid-c .post-sub{
    flex: 1;
}
.mnmd-post-listing--grid-c .post--vertical-space-large .post__title{
    margin-bottom: 0;
}
/*
    Content
*/
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55{
        margin: -20px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 > *{
        padding: 20px;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb{
        margin-bottom: 20px;
        height: 205px;
    }
    .mnmd-post-listing--grid-c .post--vertical-space-large .post-time-cat-wrap {
        margin-bottom: 10px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }

}
@media (max-width: 1680px) and (min-width: 1441px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 550px;
    }
}
@media (max-width: 1545px){
    /*
        Layout
    */
    .mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap {
        margin-right: -40px;
        margin-left: -40px;
    }
    .mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap > * {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 70px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small.flexbox-wrap.flexbox-wrap-3i > *{
        width: 50%;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small{
        margin: -15px 0;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 190px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1545px) and (min-width: 1441px){
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
}
@media (max-width: 1440px) and (min-width: 1200px){
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .mnmd-post-listing--grid-c  .post--horizontal-space-top .post__title.typescale-0_5{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
    /*post sub*/
}
@media (max-width: 1440px) and (min-width: 1367px){
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 500px;
    }
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 585px;
    }
}
@media (max-width: 1366px){
    /*
        Layout
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55{
        margin: -15px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 > *{
        padding: 15px;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 175px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
}
@media (max-width: 1366px)  and (min-width: 1200px){
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text {
        min-height: 450px;
    }
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    .mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {
        max-width: 550px;
    }
}
@media (max-width: 1199px){
    /*
       Layout
   */
    .mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap{
        margin: 0;
    }
    .mnmd-post-listing--grid-c .mnmd-block__inner-content-wrap > *{
        padding: 0;
        width: 100%;
        flex: initial;
    }
    /*post main*/
    .mnmd-post-listing--grid-c .post-main .posts-list-small {
        margin: -15px 0;
        padding: 30px 15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small > .list-item{
        padding: 0 15px;
    }
    .mnmd-post-listing--grid-c .post-main{
        border: none;
    }
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub{
        margin-top: 100px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list .list-item{
        width: calc(100% / 3);
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55{
        margin: -15px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 > *{
        padding: 15px;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c  .post--vertical-space-large .post__thumb{
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }


}
@media (max-width: 1199px) and (min-width: 1025px){
    /*
        Layout
    */

    /*post main*/


    /*
        Content
    */
    /*post main*/
    /*.mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text {*/
    /*    min-height: 445px;*/
    /*}*/
    /*.mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__text .post__text-inner {*/
    /*    max-width: 540px;*/
    /*    min-height: 215px;*/
    /*}*/
    /*.mnmd-post-listing--grid-c .post--overlay-feature.post--overlay-feature-style-2 .post__title.typescale-3_5{*/
    /*    font-size: 1.4285rem; !*font system*!*/
    /*    line-height: 1.4;*/
    /*}*/

}
@media (max-width: 1024px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb{
        height: 165px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-c .post-main .posts-list.flexbox-wrap.flex-space-60{
        margin-top: -15px;
        margin-bottom: -15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list.flexbox-wrap.flex-space-60 > *{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list.flexbox-wrap.flex-space-60  .posts-list-small {
        margin: -15px 0;
        padding: 30px 15px;
    }
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub {
        margin-top: 80px;
    }
    /*
        Content
    */
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub {
        margin-top: 70px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list .list-item{
        width: 50%;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 210px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 185px;
    }

}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-c .post-main .posts-list.flexbox-wrap.flex-space-60{
        margin-top: -15px;
        margin-bottom: -15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list.flexbox-wrap.flex-space-60 > *{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small{
        padding: 30px 0;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small.flexbox-wrap.flexbox-wrap-3i > *{
        padding: 15px 15px;
    }
    .mnmd-post-listing--grid-c .post-main .posts-list-small.flexbox-wrap.flexbox-wrap-3i > *{
        width: 100%;
    }
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 {
        margin: -20px -15px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 > *{
        padding: 20px 15px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list .list-item{
        width: 100%;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 325px;
        width: 100%;
        margin-bottom: 15px;
    }
    .mnmd-post-listing--grid-c .post--vertical-space-large .post-time-cat-wrap {
        margin-bottom: 10px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.4285rem;
        line-height: 1.4;
    }

}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 260px;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb {
        height: 220px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 {
        margin: -15px;
    }
    .mnmd-post-listing--grid-c .post-sub .posts-list.flexbox-wrap.flex-space-55 > *{
        padding: 15px;
    }
    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb{
        height: 210px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post sub*/
    .mnmd-post-listing--grid-c .post--vertical-space-large .post__thumb{
        height: 190px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;

    }
}
/* .mnmd-post-listing--grid-c ----------------------- */
/* ----------------------- mnmd-post-listing--grid-carousel-b */
/*
    Layout
*/
.mnmd-post-listing--grid-carousel-b .mnmd-block__inner-content-wrap > *:not(:last-child) {
    margin-bottom: 40px;
}
.mnmd-post-listing--grid-carousel-b .posts-feature{
    margin-right: -50px;
}
/*post listing grid*/
.post-listing-grid{
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
/*
    Content
*/
.mnmd-post-listing--grid-carousel-b .post--overlay-feature{
    width: 900px;
}
.mnmd-post-listing--grid-carousel-b .post--overlay-feature .author-post img{
    width: 55px;
    height: 55px;
}
.mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner{
    min-height: 260px;
    width: 650px;
    padding: 0 50px 0 50px;
    background-color: #FAFAFA;
}
.mnmd-post-listing--grid-carousel-b .posts-feature .owl-carousel .owl-dots{
    padding-top: 35px;
    padding-bottom: 0;
}
/*post listing grid*/
.post--vertical-text-padding .post__text{
    padding: 0 30px;
}
.post--vertical-text-padding .post-time-cat-wrap{
    margin-left: -30px;
    margin-right: -30px;
    padding: 15px 30px;
}
.post--vertical-text-padding .post__title.typescale-2.custom-typescale-2{
    font-weight: 400;
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text{
        min-height: 500px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner{
        width: 590px;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__thumb{
        height: 200px;
    }
}
@media (max-width: 1545px){
    /*
        Layout
    */
    /*post listing grid*/
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 {
        margin: -15px;
    }
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 > *{
        padding: 15px;
    }
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: 870px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 540px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 2rem; /*font system*/
        line-height: 1.4;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__thumb {
        height: 170px;
    }
    .post--vertical-text-padding .post__text {
        padding: 0 25px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: -25px;
        margin-right: -25px;
        padding: 15px 25px;
    }
    .post--vertical-text-padding .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */


    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: 850px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 500px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__text {
        padding: 0 ;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: 0;
        margin-right: 0;
        padding: 15px 0;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: 800px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 480px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 480px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    /*post listing grid*/
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flexbox-wrap-4i > *{
        width: 50%;
    }
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 {
        margin: -25px -30px;
    }
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 > *{
        padding: 25px 30px;
    }
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: 680px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 450px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 430px;
        min-height: 245px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__thumb {
        height: 250px;
    }
    .post--vertical-text-padding .post__text {
        padding: 0 30px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: -30px;
        margin-right: -30px;
        padding: 15px 30px;
    }
    .post--vertical-text-padding .post__title.typescale-2.custom-typescale-2{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*post listing grid*/
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 {
        margin: -20px -15px;
    }
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 > *{
        padding: 20px 15px;
    }
    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -50px;
        margin-right: -50px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .padding-left-50-right-50,
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        padding-left: 50px;
        padding-right: 50px;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__thumb {
        height: 250px;
    }
    .post--vertical-text-padding .post__text {
        padding: 0 20px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
        padding: 15px 20px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel-b .posts-feature {
        margin-right: -25px;
    }
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: calc(100vw - 125px);
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 470px;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*post listing grid*/
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 {
        margin: -20px -15px;
    }
    .mnmd-post-listing--grid-carousel-b  .post-listing-grid .posts-list.flexbox-wrap.flex-space-60 > *{
        padding: 20px 15px;
    }
    /*
        Content
    */
    /*post feature*/
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 420px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 395px;
        min-height: 225px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__thumb {
        height: 210px;
    }
    .post--vertical-text-padding .post__text {
        padding: 0 20px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: -20px;
        margin-right: -20px;
        padding: 15px 20px;
    }
    .post--vertical-text-padding .post__title.typescale-2.custom-typescale-2{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel-b .posts-feature {
        margin-right: -15px;
    }
    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature{
        width: calc(100vw - 15px);
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 470px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 420px;
        min-height: 225px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-3_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 445px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 400px;
        min-height: 220px;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__text {
        padding: 0;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: 0;
        margin-right: 0;
        padding: 15px 0;
    }
    .post--vertical-text-padding .post__thumb {
        height: 185px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel-b .posts-feature {
        margin-right: -15px;
        margin-left: -15px;
    }
    /*post listing grid*/
    .mnmd-post-listing--grid-carousel-b .post-listing-grid .posts-list.flexbox-wrap.flexbox-wrap-4i > * {
        width: 100%;
    }
    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: calc(100vw + 30px);
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 445px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 400px;
        min-height: 220px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__title.typescale-5_5 {
        font-size: 1.4285rem;
        line-height: 1.4;
    }
    /*post listing grid*/
    .post--vertical-text-padding .post__text {
        padding: 0 25px;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: -25px;
        margin-right: -25px;
        padding: 15px 25px;
    }
    .post--vertical-text-padding .post__thumb{
        height: 325px;
        margin-bottom: 0;
    }
    .post--vertical-text-padding .post__title.typescale-2.custom-typescale-2{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature {
        width: calc(100vw);
    }
    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 400px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 365px;
        min-height: 215px;
        padding: 0 40px 30px 40px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .padding-reverse-left-50-right-50{
        margin-left: -40px;
        margin-right: -40px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .padding-left-50-right-50,
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    /**/
    .post--vertical-text-padding .post__thumb{
        height: 260px;
    }
    .post--vertical-text-padding .post-time-cat-wrap {
        margin-bottom: 15px;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text {
        min-height: 375px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 365px;
        min-height: 215px;
        padding: 0 35px 30px 35px;
    }
    /*
        Content
    */
    .post--vertical-text-padding .post__thumb{
        height: 220px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature.post--overlay .post__text {
        min-height: 300px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-wrap {
        margin: 0;
        padding: 0 25px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .post__text .post__text-inner {
        width: 100%;
        min-height: 160px;
        padding: 0 25px 30px 25px;
    }
    .mnmd-post-listing--grid-carousel-b .post--overlay-feature .flexbox-space-y-top{
        margin-bottom: 0;
    }
    /**/
    .post--vertical-text-padding .post__thumb{
        height: 210px;
    }
    .post--vertical-text-padding .post__text {
        padding: 0;
    }
    .post--vertical-text-padding .post-time-cat-wrap{
        margin-left: 0;
        margin-right: 0;
        padding: 15px 0;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--overlay-feature .post__text .post__text-inner {
        width: 100%;
        min-height: 165px;
        padding: 0 20px 25px 20px;
    }
    /**/
    .post--vertical-text-padding .post__thumb{
        height: 190px;
    }
    .post--vertical-text-padding .post__title.typescale-2.custom-typescale-2 {
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
/* .mnmd-post-listing--grid-carousel-b ----------------------- */
/* ----------------------- mnmd-post-listing--grid-carousel */
/*
    Layout
*/
.mnmd-post-listing--grid-carousel .post-main{
    flex: 1;
    width: calc(100%  - 27.60%);
}

.mnmd-post-listing--grid-carousel .post-sub{
    width: 27.60%;
    order: -1;
}
/*
    Content
*/
/*post main*/
.post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
    width: 61.85%;
}
.post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text{
    padding-left: 80px;
    padding-top: 95px;
    padding-right: 40px;
}
.post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .author-post img.avatar-circle{
    width: 55px;
    height: 55px;
}
.mnmd-post-listing--grid-carousel .owl-carousel .owl-nav{
    position: absolute;
    left: calc(61.85% - (45px * 2) - (10px * 2));
    bottom: 10px;
}
.mnmd-post-listing--grid-carousel .owl-carousel .owl-dots{
    display: none;
}
/*post sub*/
.post--vertical-space-large .post__thumb{
    margin-bottom: 35px;
}
.post--vertical-space-large .post__title{
    margin-bottom: 45px;
}
.post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
    font-weight: 400;
}
.opacity-default{
    opacity: 0;
}
.fadeInText{
    /*animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000)  both;*/
    animation: fade-in-bottom 0.5s  both;
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 1800px){
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
        height: 420px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text {
        padding-left: 60px;
        padding-top: 70px;
        padding-right: 30px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title{
        margin-bottom: 55px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title.typescale-3_5 {
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb {
        margin-bottom: 30px;
        height: 190px;
    }
    .post--vertical-space-large .post-time-cat-wrap{
        margin-bottom: 20px;
    }
    .post--vertical-space-large .post__title {
        margin-bottom: 40px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text {
        padding-left: 40px;
        padding-top: 50px;
    }
}
@media (max-width: 1545px){
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel .post-main{
        flex: 1;
        width: calc(100%  - 29.5%);
    }

    .mnmd-post-listing--grid-carousel .post-sub{
        width: 29.5%;
        order: -1;
    }
    /*
        Content
    */
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
        height: 415px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text {
        padding-left: 50px;
        padding-top: 60px;
        padding-right: 0;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2  .post-time-cat-wrap{
        margin-bottom: 25px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title {
        margin-bottom: 45px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title.typescale-3_5{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
        height: 350px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text {
        padding-left: 35px;
        padding-top: 50px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title {
        margin-bottom: 35px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title.typescale-3_5 {
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post-time-cat-wrap {
        margin-bottom: 15px;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb {
        margin-bottom: 20px;
        height: 170px;
    }
    .post--vertical-space-large .post-time-cat-wrap {
        margin-bottom: 15px;
    }
    .post--vertical-space-large .post__title {
        margin-bottom: 25px;
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post-listing--grid-carousel .post-main{
        flex: initial;
        width: 100%;
    }

    .mnmd-post-listing--grid-carousel .post-sub{
        width: 100%;
        order: initial;
    }
    .mnmd-post-listing--grid-carousel .flexbox-wrap.flex-space-20{
        margin: -20px;
    }
    .mnmd-post-listing--grid-carousel .flexbox-wrap.flex-space-20 > * {
        padding: 20px;
    }
    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text {
        padding-left: 40px;
        padding-top: 50px;
    }

    /*post sub*/
    .post--vertical-space-large {
        display: flex;
        flex-wrap: wrap;
    }
    .post--vertical-space-large .post__thumb {
        width: 385px;
        height: 230px;
        margin-bottom: 0;
        margin-right: 45px;
    }
    .post--vertical-space-large .post__title{
        /*font-size: 1.4285rem; !*font system*!*/
        /*line-height: 1.4;*/
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--vertical-space-large .post__text{
        flex: 1;
    }

}
@media (max-width: 1024px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
        height: 280px;
        width: 55.85%;
    }
    .mnmd-post-listing--grid-carousel .owl-carousel .owl-nav{
        left: calc(55.85% - (45px * 2) - (10px * 2));
    }
    .post--vertical-space-large .post__text{
        flex: 1;
    }
    .mnmd-post-listing--grid-carousel .owl-carousel .owl-nav{
        position: absolute;
        left: calc(55.85% - (45px * 2) - (10px * 2));
        bottom: 10px;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        width: 350px;
        height: 210px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb {
        height: 225px;
        width: calc(50% + 15px);
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text{
        padding-top: 25px;
        padding-left: 45px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title{
        margin-bottom: 0;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .author-post{
        display: none;
    }
    .mnmd-post-listing--grid-carousel .owl-carousel .owl-nav{
        left: calc( (50% + 15px) - (45px * 2) - (10px * 2));
    }
    .post--vertical-space-large .post__text{
        flex: 1;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        width: 45%;
        height: 190px;
    }
    .post--vertical-space-large .post-time-cat-wrap {
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 200px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text{
        padding-left: 40px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__title.typescale-3_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb {
        width: 45%;
        height: 170px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 325px;
        width: 100%;
        margin-bottom: 15px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post-time-cat-wrap {
        margin-bottom: 10px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2  .post__title.typescale-3_5 {
        font-size: 1.4285rem;
        line-height: 1.4;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__text{
        padding: 0;
    }
    .mnmd-post-listing--grid-carousel .owl-carousel .owl-nav{
        display: none;
    }
    .mnmd-post-listing--grid-carousel .owl-carousel .owl-dots{
        display: block;
        padding-top: 20px;
        padding-bottom: 0;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        width: 50%;
        margin-right: 25px;
        /*margin-bottom: 15px;*/
        height: 170px;
    }
    .post--vertical-space-large .post__title{
        margin-bottom: 0;
    }
    .post--vertical-space-large .post-time-cat-wrap{
        margin-bottom: 10px;
    }
    .post--vertical-space-large .author-post{
        display: none;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 260px;
        width: 100%;
        margin-bottom: 15px;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        height: 235px;
    }
    .post--vertical-space-large .post__title{
        margin-bottom: 10px;
    }
    .post--vertical-space-large .post-time-cat-wrap{
        margin-bottom: 10px;
    }
    .post--vertical-space-large .author-post{
        display: none;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 220px;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        height: 200px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 210px;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb{
        height: 190px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    /*post main*/
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2 .post__thumb{
        height: 190px;
    }
    .post--horizontal-spacing-large.post--horizontal-spacing-large-style-2  .post__title.typescale-3_5 {
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    /*post sub*/
    .post--vertical-space-large .post__thumb {
        height: 170px;
    }
    .post--vertical-space-large .post__title.typescale-2.custom-typescale-2{
        font-size: 1.1428rem; /*font system*/
        line-height: 1.5;
    }
}
/* .mnmd-post-listing--grid-carousel ----------------------- */
/* ----------------------- mnmd-post-listing--list-a */
/*
    Layout
*/
.mnmd-post-listing--list-a .mnmd-block__inner{
    padding-left: 105px;
    padding-right: 45px;
}
.post--horizontal-spacing-large .post__thumb{
    width: 60.1%;
    margin-right: 0;
}
.post--horizontal-spacing-large .post__text{
    padding-left: 175px;
    padding-right: 90px;
}
/*
    Content
*/
.post--horizontal-spacing-large .post__text{
    padding-top: 60px;
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        width: 60%;
        height: 475px;
        margin-right: 0;
    }
    .post--horizontal-spacing-large .post__text {
        padding-left: 75px;
        padding-right: 45px;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    .mnmd-post-listing--list-a .mnmd-block__inner {
        padding-left: 100px;
        padding-right: 0;
    }
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        /*width: 65%;*/
        height: 420px;
    }
    .post--horizontal-spacing-large .post__text {
        padding-left: 85px;
        padding-right: 0;
    }
    .post--horizontal-spacing-large .post-time-cat-wrap{
        margin-bottom: 50px;
    }
    .post--horizontal-spacing-large .post__title{
        margin-bottom: 40px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        /*width: 65%;*/
        height: 390px;
    }
    .post--horizontal-spacing-large .post__text {
        padding-left: 75px;
        padding-right: 0;
    }
    .post--horizontal-spacing-large .post-time-cat-wrap{
        margin-bottom: 45px;
    }
    .post--horizontal-spacing-large .post__title{
        margin-bottom: 35px;
    }

}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post-listing--list-a .mnmd-block__inner {
        padding-left: 0;
        padding-right: 0;
    }
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        width: 55%;
        height: 350px;
    }
    .post--horizontal-spacing-large .post__title.typescale-2_7{
        font-size: 1.5714rem; /*font system*/
        line-height: 1.41;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        height: 300px;
    }
    .post--horizontal-spacing-large .post-time-cat-wrap {
        margin-bottom: 35px;
    }
    .post--horizontal-spacing-large .post__title {
        margin-bottom: 30px;
    }
    .post--horizontal-spacing-large .post__title.typescale-2_7 {
        font-size: 1.2857rem;
        line-height: 1.44;
    }
    .post--horizontal-spacing-large .post__text {
        padding-left: 60px;
        padding-right: 0;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        width: calc(50% + 15px);
        height: 225px;
    }
    .post--horizontal-spacing-large .post__text {
        padding-left: 45px;
        padding-top: 30px;
    }
    .post--horizontal-spacing-large .post-time-cat-wrap {
        margin-bottom: 15px;
    }
    .post--horizontal-spacing-large .post__title {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large {
        display: flex;
        flex-wrap: wrap;
    }
    .post--horizontal-spacing-large .post__thumb{
        margin-right: 0;
        margin-bottom: 0;
    }
    .post--horizontal-spacing-large .post__text{
        flex: 1;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large .post__text{
        padding-top: 15px;
        padding-left: 40px;
    }
    .post--horizontal-spacing-large .post__thumb {
        height: 200px;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__text{
        width: 100%;
        flex: initial;
        padding: 0;
    }
    .post--horizontal-spacing-large .post__thumb {
        height: 325px;
        width: 100%;
        margin-bottom: 15px;
    }
    .post--horizontal-spacing-large .post-time-cat-wrap {
        margin-bottom: 10px;
    }
    .post--horizontal-spacing-large .post__title{
        margin-bottom: 0;
    }
    .post--horizontal-spacing-large .post__title.typescale-2_7{
        font-size: 1.4285rem;
        line-height: 1.4;
    }
    .post--horizontal-spacing-large .author-post {
        display: none;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        height: 260px;
    }

}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        height: 220px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        height: 210px;
        margin-bottom: 15px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-spacing-large .post__thumb {
        height: 190px;

    }
    .post--horizontal-spacing-large .post__title.typescale-2_7{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
}
/* .mnmd-post-listing--list-a ----------------------- */
/* ----------------------- mnmd-post-listing--list-b */
/*
    Layout
*/
.mnmd-post-listing--list-b .mnmd-block__inner {
    padding-left: 105px;
    padding-right: 45px;
}
.mnmd-post-listing--list-b .posts-list .list-item:not(:first-child){
    position: relative;
}
.mnmd-post-listing--list-b .posts-list .list-item:not(:first-child):before{
    content: '';
    width: 100vw;
    height: 1px;
    background-color: #000;
    opacity: 0.08;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
/*
    Content
*/
.post--horizontal-three-col .post__thumb{
    width: calc(29.4%);
    margin-right: 140px;
}
.post--horizontal-three-col .post__text{
    padding-right: 90px;
    padding-top: 40px;
}
.post--horizontal-three-col .post__title{
    max-width: 365px;
    margin-right: 135px;
    margin-bottom: 0;
}
.post--horizontal-three-col .post__excerpt{
    font-size: 1.1428rem; /*font system*/
    line-height: 1.6875;
    flex: 1;
}
@media (max-width: 1680px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: calc(31.40%);
        height: 410px;
        margin-right: 90px;
    }
    .post--horizontal-three-col .post__text {
        padding-right: 60px;
    }
    .post--horizontal-three-col .post__title{
        max-width: 330px;
        margin-right: 75px;
    }
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
}
@media (max-width: 1580px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: calc(35.40%);
        height: 410px;
        margin-right: 90px;
    }
    .post--horizontal-three-col .post__text{
        padding-right: 0;
    }
    .post--horizontal-three-col .post__title {
        max-width: 290px;
    }
}
@media (max-width: 1440px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 40%;
        height: 425px;
    }
    .post--horizontal-three-col .post__text{
        padding-right: 90px;
    }
    .post--horizontal-three-col .post__title {
        max-width: 100%;
        flex: initial;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .post--horizontal-three-col .post-title-excerpt-wrap{
        margin-bottom: 45px;
    }
}
@media (max-width: 1366px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 45%;
        height: 445px;
    }
    .post--horizontal-three-col .post__text{
        padding-right: 0;
        padding-top: 20px;
    }
    .post--horizontal-three-col .post__title {
        max-width: 100%;
        flex: initial;
        margin-bottom: 20px;
        margin-right: 0;
    }
}
@media (max-width: 1199px) {
    /*
        Layout
    */
    .mnmd-post-listing--list-b .mnmd-block__inner{
        padding: 0;
    }
    /*
        Content
    */
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .post--horizontal-three-col .post__thumb{
        height: 440px;
        margin-right: 70px;
    }
}
@media (max-width: 1024px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.4285rem; /*font system*/
        line-height: 1.4;
    }
    .post--horizontal-three-col .post__thumb{
        width: 50%;
        margin-right: 60px;
    }
    .post--horizontal-three-col .post__text{
        padding-top: 50px;
    }
    .post--horizontal-three-col .post__excerpt{
        font-size: 1.0714rem; /*font system*/
        line-height: 1.53;
    }
    .post--horizontal-three-col .post-time-cat-wrap{
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 45%;
        height: 390px;
    }
}
@media (max-width: 860px){
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 47%;
        height: 345px;
        margin-right: 45px;
    }
    .post--horizontal-three-col .post__text {
        padding-top: 35px;
    }
    .post--horizontal-three-col .post__title{
        margin-bottom: 10px;
    }
    .post--horizontal-three-col .post-time-cat-wrap {
        margin-bottom: 15px;
    }
    .post--horizontal-three-col .post-title-excerpt-wrap {
        margin-bottom: 35px;
    }
}
@media (max-width: 767px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-three-col{
        display: flex;
        flex-wrap: wrap;
    }
    .post--horizontal-three-col .post__thumb{
        margin-bottom: 0;
    }
    .post--horizontal-three-col .post__text{
        flex: 1;
    }
}
@media (max-width: 680px){
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 47%;
        height: 315px;
        margin-right: 40px;
    }
    .post--horizontal-three-col .post__text {
        padding-top: 35px;
    }
    .post--horizontal-three-col .post-title-excerpt-wrap {
        margin-bottom: 0;
    }
    .post--horizontal-three-col .post__title {
        margin-bottom: 15px;
    }
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.2857rem; /*font system*/
        line-height: 1.44;
    }
    .post--horizontal-three-col .author-post{
        display: none;
    }
}
@media (max-width: 575px) {
    /*
        Layout
    */
    .mnmd-post-listing--list-b .flexbox-wrap.flex-space-100{
        margin: -40px -50px;
    }
    .mnmd-post-listing--list-b .flexbox-wrap.flex-space-100 > *{
        padding: 40px 50px;
    }
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        width: 100%;
        height: 315px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .post--horizontal-three-col .post__text {
        padding-top: 0;
        flex: initial;
    }
    .post--horizontal-three-col .post-time-cat-wrap {
        margin-bottom: 10px;
    }
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.4285rem;
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    /*
        Layout
    */
    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        height: 260px;
    }
}
@media (max-width: 420px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        height: 220px;
    }
}
@media (max-width: 380px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        height: 210px;
    }
}
@media (max-width: 320px) {
    /*
        Layout
    */

    /*
        Content
    */
    .post--horizontal-three-col .post__thumb {
        height: 190px;
    }
    .post--horizontal-three-col .post__title.typescale-3_5{
        font-size: 1.2857rem;
        line-height: 1.44;
    }
}
/* .mnmd-post-listing--list-b ----------------------- */
/* ----------------------- single */
@media (min-width: 1920px){
    /*.the-grid-single-vertical-reverse .single-header,*/
    /*.the-grid-single-vertical-reverse-video .single-header{*/
    /*    max-width: 1410px;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/
}
/*single vertical reverse*/
.the-grid-single-vertical-reverse .single-header__inner {
    padding-left: 205px;
    padding-top: 115px;
}
.the-grid-single-vertical-reverse .single-header,
.the-grid-single-vertical-reverse-video .single-header{
    width: 91.381%;
    padding-left: 160px;
    max-width: 1410px;
    margin: 0 auto 85px auto;
}
.the-grid-single-vertical-reverse .single-entry-thumb,
.the-grid-single-vertical-reverse-video .single-entry-thumb{
    margin-bottom: 0;
    height: 700px;
    box-shadow: none;
}
.the-grid-single-vertical-reverse .single-entry-thumb img,
.the-grid-single-vertical-reverse-video .single-entry-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.the-grid-single-vertical-reverse .single-header .entry-title,
.the-grid-single-vertical-reverse-video .single-header .entry-title{
    font-size: 50px;
    font-family: Poppins ;
    line-height: 1.4;
    font-weight: 500;
    flex: 1;
    margin-bottom: 0;
    margin-right: 245px;
    letter-spacing: -0.015em;
}
.the-grid-single-vertical-reverse .single-header .entry-author,
.the-grid-single-vertical-reverse-video .single-header .entry-author{
    width: 245px;
}
.the-grid-single-vertical-reverse .single-header .entry-author__avatar,
.the-grid-single-vertical-reverse-video .single-header .entry-author__avatar{
    width: 55px;
    height: 55px;
}
/*single vertical reverse video*/
.the-grid-single-vertical-reverse-video .single-entry-thumb {
    margin-left: -205px;
    width: calc(100% + 205px);
}
.the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    width: 85px;
    height: 85px;
    color: var(--color-primary);
    transition: 0.3s;
}
/*single all*/
.single-body {
    margin-top: 0;
}
.single-entry-section-wrap {
    padding-left: 250px;
    padding-right: 95px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}
.single-entry-section-wrap .single-content-left {
    width: 40px;
}
.single-entry-section-wrap .single-content-right {
    flex: 1;
    /*width: calc(100% - 40px);*/
    padding-left: 120px;
}
.social-share.social-share-single .social-list {
    margin: -5px;
}
.social-share.social-share-single .social-list > li {
    width: 100%;
    padding: 5px;
}
.social-share.social-share-single .social-list>li>a {
    width: 45px;
    height: 45px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    transition: 0.3s;
}
.social-share.social-share-single .social-list>li>a svg {
    fill: rgba(34,34,34,0.4);
    transition: 0.3s;
}
.social-share.social-share-single .social-list>li>a:hover {
    background-color: var(--color-primary);
}
.social-share.social-share-single .social-list>li>a:hover svg {
    fill: #fff;
}
.social-share.social-share-single .social-share {
    display: flex;
    justify-content: center;
}
.share-item__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post--single {
    /*padding: 60px 50px 0 100px;*/
    /*width: 700px;*/
    flex: 1;
}
.post--single .single-body {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 70px;
    margin-top: 0;
}
.single-body .mnmd-post-media-wide {
    max-width: 100%;
    margin: 70px 0;
    width: 100%;
}
.single-body .mnmd-post-media-wide:first-child{
    margin-top: 0;
}
.single-body .mnmd-post-media-wide:last-child{
    margin-bottom: 0;
}
.single-body .mnmd-post-media-wide img{
    width: 100%;
    /*border-radius: 60px 0 80px 0;*/
}
.single-body p{
    font-size: 20px;
    font-family: helvetica;

    line-height: 1.7;
    font-weight: 400;
    color: #222222;
    margin-bottom: 35px;
    text-align: justify;
}
.single-body p:nth-last-child(2),
.single-body p:last-child{
    margin-bottom: 0;
}
/**/
.author-box{
    position: initial;
    padding: 0;
    background-color: transparent;
    border: none;
    max-width: 500px;
    margin: 70px auto 0 auto;
    align-items: center;
}
.author-box .author-task{
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8571rem; /*font system*/
    line-height: 1;
    color: #222222;
    opacity: 0.6;
    font-weight: 300;
    margin-bottom: 5px;
}
.author-box .author-avatar{
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    width: 75px;
    height: 75px;
    margin: 0 25px 0 0;
    text-align: left;
}
.author-box .author-box__text{
    padding-left: 0;
    flex: 1;
    text-align: left;
}
.author-box .author-name a{
    font-size: 18px; /*font system*/
    line-height: 1.53;
    font-weight: 700;
    color: #222222;
    text-transform: capitalize;
}
.author-box .author-social{
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
}
.author-box .author-social li:not(:last-child){
    margin-right: 5px;
}
.author-box .author-social a{
    font-size: 14px;
    color: #131313;
    opacity: 0.3;
    line-height: 1;
}
.author-box .author-bio{
    
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    opacity: 0.6;
    margin-top: 12px;
    margin-bottom: 8px;
}
/**/
.entry-tags ul>li>a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #f3f3f3;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    color: rgba(34,34,34,0.8);
    transition: 0.2s;
    -webkit-transition: 0.2s;
}
.entry-tags ul>li:not(.entry-tags__icon)>a:before{
    display: none;
}
.entry-tags ul>li>a:hover{
    background-color: var(--color-primary);
    color: #fff;
}
.entry-interaction__left{
    width: 65%;
}
.entry-interaction__right{
    margin: -7.5px;
    flex: 1;
    justify-content: flex-end;
}
.comments-count,
.view-count{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222222;
    font-size: 11px;
    font-weight: 300;
    opacity: 0.8;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 7.5px;
}
.comments-count i,
.view-count i{
    font-size: 16px;
    margin-right: 5px;
}
.comments-count:hover,
.view-count:hover{
    text-decoration: none;
    opacity: 1;
    color: var(--color-primary);

}
.entry-interaction{
    align-items: flex-start;
}
.entry-tags {
    text-align: left;
}
/**/
.posts-navigation {
    margin-left: 150px;
    width: 280px;
}
.posts-navigation > *:not(:last-child){
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 35px;
    padding: 0 0 35px 0;
}
.posts-navigation__prev,
.posts-navigation__next{
    width: 100%;
    float: initial;
    padding: 0;
}
.posts-navigation__prev .posts-navigation__label,
.posts-navigation__next .posts-navigation__label{
    position: initial;
    transform: none;
    padding: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9285rem; /*font system*/
    line-height: 1.53;
    color: var(--color-primary) !important;
}
.posts-navigation__label:before{
    display: none;
}
/**/
.comment-respond {
    margin: 70px 0 20px;
}
.comments-section{
    padding: 65px 80px 0 80px;
    margin-top: 55px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.comments-title{
    padding-top: 0;
    border-top: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-primary);
}
.comments-title:before{
    display: none;
}
.comment-reply-title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
    color: #131313;
    margin-bottom: 15px;
}
.comment-notes{
    font-size: 12px;
    line-height: 1;
    color: #222222;
    opacity: 0.56;
    margin-bottom: 30px;
}
.comment-form .form-submit input[type="submit"]{
    background-color: var(--color-primary);
    color: #fff;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    padding: 15px 20px;
}
.comment-form .form-submit input[type="submit"]:hover{
    background-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 18px 20px -15px rgba(50, 50, 93, 0.2);
}
/**/
.related-posts .posts-list {
    margin: -1px;
}
.related-posts .posts-list .list-item {
    padding: 1px;
}
@media (min-width: 1546px) {
    .related-posts .container-fullwidth {
        padding-left: 125px;
        padding-right: 125px;
    }
}
@media (max-width: 1680px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header {
        padding-left: 140px;
        margin: 0 auto 60px auto;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 650px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title {
        font-size: 2.8571rem; /*font system*/
        line-height: 1.4;
        margin-right: 100px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-author,
    .the-grid-single-vertical-reverse-video .single-header .entry-author {
        width: 230px;
    }

    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 80px;
        height: 80px;
    }
    /*single all*/
    .single-entry-section-wrap .single-content-right {
        padding-left: 60px;
    }
    .posts-navigation {
        margin-left: 60px;
    }
    .comments-section {
        padding: 65px 0 0 0;
    }
}
@media (max-width: 1680px) and (min-width: 1546px) {
    .related-posts .container-fullwidth {
        padding-left: 80px;
        padding-right: 80px;
    }
}
@media (max-width: 1545px) {
    .the-grid-single-vertical-reverse .single-header__inner {
        padding-left: 150px;
        padding-top: 115px;
    }
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        padding-left: 100px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 580px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 2.5rem; /*font system*/
        line-height: 1.4;
        margin-right: 200px;
    }

    /*single all*/
    .single-entry-section-wrap {
        padding-left: 150px;
        padding-right: 50px;
    }
    .single-body .mnmd-post-media-wide {
        margin: 50px 0;
    }
    .single-body p {
        font-size: 1.2857rem;
        line-height: 1.8;
    }
}
@media (max-width: 1440px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner{
        padding-left: 100px;
        padding-top: 100px;
    }
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        padding-left: 100px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 550px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 2.5rem; /*font system*/
        line-height: 1.4;
        margin-right: 150px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 75px;
        height: 75px;
    }
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        margin-left: -155px;
        width: calc(100% + 155px);
    }
    /*Single all*/
    .posts-navigation {
        margin-left: 50px;
        width: 270px;
    }
}
@media (max-width: 1366px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner{
        padding-left: 100px;
        padding-top: 100px;
    }
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        padding-left: 80px;
        margin-bottom: 40px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 2.1428rem; /*font system*/
        line-height: 1.4;
        margin-right: 100px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-author, .the-grid-single-vertical-reverse-video .single-header .entry-author {
        width: 320px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        margin-left: -100px;
        width: calc(100% + 100px);
    }
    /*single all*/
    .single-entry .mnmd-block {
        margin-bottom: 80px;
    }
    .single-entry-section-wrap {
        padding-left: 50px;
        padding-right: 0;
    }
    .single-entry-section-wrap .single-content-right {
        padding-left: 50px;
    }
    .posts-navigation {
        margin-left: 40px;
        width: 260px;
    }
    .posts-navigation > *:not(:last-child) {
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }
}
@media (max-width: 1280px) and (min-width: 1025px) {
    .related-posts .container-fullwidth {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 1280px) and (min-width: 992px) {
    .related-posts .posts-list .list-item {
        width: 50%;
    }
}
@media (max-width: 1199px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner{
        padding-left: 0;
        padding-top: 100px;
    }
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        padding-left: 100px;
        padding-right: 100px;
        margin-bottom: 40px;
        width: 100%;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 500px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 2.1428rem; /*font system*/
        line-height: 1.4;
        margin-right: 80px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-author,
    .the-grid-single-vertical-reverse-video .single-header .entry-author {
        width: 270px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        margin-left: -50px;
        width: calc(100% + 50px);
    }

    /*single all*/
    .single-entry-section-wrap {
        padding-left: 50px;
        padding-right: 50px;
    }
    .posts-navigation {
        width: 100%;
        margin-left: 0;
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .comments-section {
        margin-top: 60px;
        padding-top: 0;
        border-top: 0;
    }
}
@media (max-width: 1199px) and (min-width: 481px) {
    .posts-navigation > * {
        width: 50%;
        border-bottom: 0 !important;
    }
    .posts-navigation > *:not(:last-child) {
        position: relative;
        padding: 0;
        margin-bottom: 0;
    }
    .posts-navigation > *:not(:last-child):before {
        content: '';
        width: 1px;
        height: 100%;
        background-color: rgba(0,0,0,0.1);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0,-50%);
    }
    .posts-navigation > .posts-navigation__prev {
        padding-right: 20px;
    }
    .posts-navigation > .posts-navigation__next {
        padding-left: 20px;
        text-align: right;
    }
    .posts-navigation > .posts-navigation__next .post__text,
    .posts-navigation > .posts-navigation__next .posts-navigation__label {
        text-align: right;
    }
}
@media (max-width: 1024px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner{
        padding-top: 80px;
    }
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        padding-left: 50px;
        padding-right: 50px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 450px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 2rem; /*font system*/
        line-height: 1.4;
        margin-right: 80px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 70px;
        height: 70px;
    }
    /*single all*/
    .single-entry-section-wrap {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (max-width: 991px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner {
        padding-top: 60px;
    }
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        margin-bottom: 40px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 425px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    /*single all*/
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header {
        padding-left: 25px;
        padding-right: 25px;
    }
    .single-entry-section-wrap .single-content-right {
        padding-left: 40px;
    }
    .single-body .mnmd-post-media-wide {
        margin: 40px 0;
    }
    .single-body p {
        margin-bottom: 30px;
    }
}
@media (max-width: 860px) {
    /*single vertical reverse*/
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 350px;
    }
    .the-grid-single-vertical-reverse .single-header .post-time-cat-wrap,
    .the-grid-single-vertical-reverse-video .single-header .post-time-cat-wrap{
        margin-bottom: 15px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
        margin-right: 50px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 65px;
        height: 65px;
    }
}
@media (max-width: 767px) {
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0;
    }
    .the-grid-single-vertical-reverse .single-header__inner,
    .the-grid-single-vertical-reverse-video .single-header__inner{
        padding-left: 0;
        padding-top: 0;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse .single-entry-featured-media,
    .the-grid-single-vertical-reverse-video .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-featured-media{
        margin-right: 0;
        margin-left: 0;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 420px;
        margin-bottom: 30px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-author,
    .the-grid-single-vertical-reverse-video .single-header .entry-author {
        width: 220px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title {
        margin-right: 65px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        margin-left: 0;
        width: 100%;
    }
}
@media (max-width: 680px) {
    .single-entry .mnmd-block {
        margin-bottom: 40px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 350px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-author,
    .the-grid-single-vertical-reverse-video .single-header .entry-author {
        display: none;
    }
    .single-entry-section-wrap .single-content-right {
        padding-left: 30px;
    }
    .posts-navigation {
        margin-top: 50px;
    }

    .post--single .single-body {
        margin-bottom: 50px;
    }
    .author-box {
        margin-top: 50px;
    }

    .comments-section {
        margin-top: 50px;
    }
    .comments-title {
        margin-bottom: 25px;
    }
}
@media (max-width: 575px) {
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        height: 300px;
    }
    .the-grid-single-vertical-reverse .single-header .post-time-cat-wrap,
    .the-grid-single-vertical-reverse-video .single-header .post-time-cat-wrap{
        margin-bottom: 10px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        width: 100%;
        flex: initial;
        margin-right: 0;
        font-size: 1.8571rem; /*font system*/
        line-height: 1.38;
    }
    .the-grid-single-vertical-reverse .author-post img ,
    .the-grid-single-vertical-reverse-video .author-post img {
        width: 50px;
        height: 50px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 60px;
        height: 60px;
    }

    /*single all*/
    .single-entry-section-wrap .single-content-left {
        width: 100%;
    }
    .single-body .mnmd-post-media-wide {
        margin: 30px 0;
    }
    .social-share.social-share-single .social-list {
        position: relative;
        display: flex;
        align-items: center;
    }
    .social-share.social-share-single .social-list:after,
    .social-share.social-share-single .social-list:before {
        content: '';
        display: block;
        flex: 1;
        height: 1px;
        background-color: rgba(0,0,0,0.1);
    }
    .social-share.social-share-single .social-list>li{
        display: inline-block;
        width: auto;
    }
    .social-share.social-share-single .social-list>li>a {
        width: 40px;
    }
    .single-entry-section-wrap .single-content-right {
        padding-left: 0;
        margin-bottom: 40px;
        order: -1;
    }

    .related-posts .posts-list {
        margin: -15px -15px;
    }
    .related-posts .posts-list .list-item {
        padding: 15px 15px;
    }
}
@media (max-width: 480px) {
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 300px;
        margin-bottom: 30px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        font-size: 1.7142rem; /*font system*/
        line-height: 1.375;
    }
    .the-grid-single-vertical-reverse  .author-post img,
    .the-grid-single-vertical-reverse-video  .author-post img{
        width: 45px;
        height: 45px;
    }

    .posts-navigation > .posts-navigation__next .post__text,
    .posts-navigation > .posts-navigation__next .posts-navigation__label {
        text-align: right;
    }
}
@media (max-width: 420px) {
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb,
    .the-grid-single-vertical-reverse-video .single-entry-thumb{
        height: 280px;
        margin-bottom: 25px;
    }
    .the-grid-single-vertical-reverse .single-header .entry-title,
    .the-grid-single-vertical-reverse-video .single-header .entry-title{
        line-height: 1.41;
        font-size: 22px;
        font-family: Poppins;
    }
}
@media (max-width: 380px) {
    .the-grid-single-vertical-reverse .single-header,
    .the-grid-single-vertical-reverse-video .single-header{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .the-grid-single-vertical-reverse .single-entry-thumb ,
    .the-grid-single-vertical-reverse-video .single-entry-thumb {
        height: 250px;
        margin-bottom: 25px;
    }
    /*single vertical reverse video*/
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle{
        width: 55px;
        height: 55px;
    }
    .the-grid-single-vertical-reverse-video .entry-thumb a.post-icon-circle i{
        font-size: 22px;
    }
    /*single all*/
    .single-entry .mnmd-block {
        margin-bottom: 30px;
    }
}
/* .single ----------------------- */














/* hubspot*/ 
.thegrid-block-heading {
    margin-bottom: 35px;
  }
  .thegrid-block-heading .heading__title {
    font-size: 80px;
    line-height: 1.2;
    letter-spacing: 0.7px;
    font-weight: 700;
    text-transform: uppercase;
  }
  @media ( max-width: 991px ) {
    .thegrid-block-heading .heading__title {
      font-size: 54px;
    }
  }
  @media ( max-width: 767px ) {
    .thegrid-block-heading .heading__title {
      font-size: 42px;
    }
  }
  @media ( max-width: 575px ) {
    .thegrid-block-heading .heading__title {
      font-size: 32px;
    }
  }
  @media ( max-width: 420px ) {
    .thegrid-block-heading .heading__title {
      font-size: 28px;
    }
  }
  .archive-header {
    display: none;
  }
  .archive-header,
  .archive-heading{
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  .archive-header h1,
  .archive-heading h1 {
    display: inline-block;
    position: relative;
    margin: 0;
    font-size: 36px;
    line-height: 1.5;
    padding: 0 50px 0 70px;
    z-index: 1;
  }
  .archive-header .page-heading__subtitle {
    font-size: 14px;
    font-style: italic;
    color: rgba(0,0,0,0.6);
  }
  
  
  .navigation-bar--inverse .social-links__icon:active svg,
  .navigation-bar--inverse .social-links__icon:focus svg,
  .navigation-bar--inverse .social-links__icon:hover svg,
  .navigation-bar--inverse .social-links__icon svg {
    fill: rgba(255,255,255,0.8)
  }
  .about__readmore a:hover,
  .post__readmore a:hover {
    text-decoration: none;
  }
  .item-hidden {
    display: none;
  }
  .block-overflow-hidden {
    overflow: hidden;
  }
  @media (max-width: 769px) {
    .mobile-block-margin {
      margin-top: 60px;
    }
  }
  .atbs-thumb-object-fit a:not(.post__cat) {
    width: 100%;
    height: 100%;
  }
  .atbs-thumb-object-fit.post__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .thegrid-pagination {
    margin-top: 40px;
  }
  .thegrid-subscribe .hs_email > label {
    display: none;
  
  }
  .btn-default.js-ajax-load-post-trigger:hover,
  .btn-default.js-ajax-load-post-trigger:active,
  .btn-default.js-ajax-load-post-trigger:focus,
  .btn-default {
    outline: 0;
    background-color: var(--color-primary);
    color: #fff;
  }
  .thegrid-block-subscribe-form .hs-error-msgs,
  .thegrid-subscribe .hs-error-msgs {
    list-style-type: none;
  }
  .thegrid-block-subscribe-form .hs-error-msg,
  .thegrid-subscribe .hs-error-msg {
    font-weight: 400;
    margin-top:10px;
  }
  .widget-about__inner .social-list a svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
  }
  
  .thegrid--about {
    position: relative;
  }
  .empty-author {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #222222;
    z-index: 2;
  }
  .navigation-primary > .submenu.level-1 > li > a:before  {
    background-color: var(--color-primary);
  }
  .navigation-bar--inverse .header__language-switcher--label-current:after {
    border-top: 6px solid #ffffff;
  }
  .thegrid-widget-subscribe .actions input[type="submit"].hs-button {
    background-color: ;
    color:#ffffff;
    height: 38px;
  }
  /**/
  .subscribe-form form input[type="email"],
  .subscribe-form .input input[type="email"].hs-button:focus-visible,
  .subscribe-form .input input[type="email"].hs-button:hover,
  .subscribe-form .input input[type="email"].hs-button:active,
  .subscribe-form .input input[type="email"].hs-button:focus,
  .subscribe-form .input input[type="email"].hs-button {
    outline: none;
    border: 1px solid rgba(0,0,0,0.2) !important ;
    /*color: #fff;*/
    text-align: center;
  }
  .thegrid-subscribe input[type="submit"],
  .thegrid-subscribe input[type="button"]:not(.btn):hover, 
  .thegrid-subscribe input[type="reset"]:not(.btn):hover, 
  .thegrid-subscribe input[type="submit"]:not(.btn):hover {
    background-color: var(--color-primary);
  }
  
  .background-white {
    background-color:#ffffff;
  }
  .widget-about-me {
    min-height: 100px;
  }
  .about__social svg {
    height: 16px;
    width: 16px;
    fill: #444444;
  }
  .thegrid-widget-about {
    position: relative;
    min-height: 100px;
    background: #fafafa;
  }
  @media (max-width: 1199px) and (min-width: 992px) {
    .navigation-bar .header-logo img {
      max-width: 150px;
    }
  }
  @media (min-width: 768px) and (max-width: 1199px) {
    .atbs-home-design .container {
      width: 100% !important;
    }
  }
  @media (min-width: 576px) and (max-width: 767px) {
    .atbs-home-design .container {
      width: 100% !important;
    }
  }
  .blog-related-posts {
    margin-bottom: 0;
  }
  .thegrid-widget-subscribe form input[type="submit"]:not(.btn) {
    background-color: var(--color-primary);
  }
  .inverse-text .thegrid-widget-subscribe,
  .inverse-text .thegrid-widget-subscribe .subscriber-tile {
    color: rgba(255,255,255,1);
  }
  .thegrid-widget-subscribe .subscriber-excerpt {
    opacity: 0.6;
  }
  @media (max-width: 1199px) and (min-width: 768px) {
    .thegrid-featured-module-1 .dots-inverse .owl-dot.active span {
      background-color: var(--color-primary);
    }
  }
  @media (max-width: 767px) {
    .thegrid-single .site-content {
      padding-bottom: 0;
    }
  }
  .post__thumb-400 .post__thumb {
    height: 400px;
  }
  .post__thumb-310 .post__thumb {
    height: 310px;
  }
  .post__thumb-270 .post__thumb {
    height: 270px;
  }
  .post__thumb-170 .post__thumb {
    height: 170px;
  }
  .post__thumb-130 .post__thumb {
    height: 130px;
  }
  .post__thumb-100 .post__thumb {
    height: 100px;
  }
  
  .atbs-thumb-object-fit.post__thumb a:not(.post__cat) {
    width: 100%;
    height: 100%;
  }
  .atbs-thumb-object-fit.post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .inverse-text .site-copyright .hs_cos_wrapper {
    color: #ffffff;
  }
  .empty-gallery {
    position: relative;
    min-height: 100px;
    background-color: #fafafa;
    color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .site-footer {
    overflow: hidden;
    background: #fafafa
  }
  .site-footer--inverse .site-footer-main .site-footer__section-inner > div.copyright-text a, 
  .site-footer--inverse .site-footer-main .site-footer__section-inner > div.copyright-text {
    color: rgba(255,255,255,0.6);
  }
  @media (max-width:767px) {
    .dnd_area-row-3-margin {
      margin-bottom: 40px !important;
    }
    .footer-instagram ul li:nth-child(3n+1) {
      clear: both;
    }
  }
  @media (max-width:480px) {
    .thegrid--instagram ul li:nth-child(1), .thegrid--instagram ul li:nth-child(4) {
      width: 100%;
    }
  }
  .thegrid-widget .widget__title,
  .thegrid-widget--box .widget__title,
  .widget__title {
    margin-bottom: 30px;
  }
  .thegrid-block-subscribe-form h4 {
    font-weight: 700;
  }
  .thegrid-pagination .btn-default {
    text-transform: uppercase;
    padding: 12px 30px;
    letter-spacing: 1px;
    border: none;
    box-shadow: none !important;
    background: #111;
  }
  
  .footer-subscribe .footer-subscribe-title,
  .single-head h1.post__title,
  .posts-navigation .posts-navigation__prev h3.post__title.typescale-2 a,
  .posts-navigation .posts-navigation__next h3.post__title.typescale-2 a,
  .blog-related-posts .post__title a, .blog-related-posts .entry-title a,
  h3,
  h4,
  .subscriber-title,
  .nextBtn,
  .widget-about-me .author__name,
  .block-heading__title,
  .readmore__text,
  .error-sub-title,
  .mnmd-404-block h1,
  .widget__title-text,
  .category-tile,
  .follow-name,
  .slide-caption p,
  .author-box .author-name a,
  .block-heading__title span,
  .mnmd-news-ticker__heading span,
  .trending__readmore a,
  .list-post--horizontal__title h4,
  .trendding__content-title,
  .post__title,
  .archive-header h1,
  .archive-heading h1,
  .widget__title .widget__title-text,
  .blog-related-posts .block-heading__title,
  .block-heading .block-heading__title,
  .single-body.entry-content h1.post-title,
  .single-body.entry-content h1.blog-list-header__title,
  .single-entry h1.post-title.entry__title.typescale-4,
  .single-entry .single-body.entry-content h3,
  .author-box .meta-font a ,.author-box a.meta-font a,
  .post-single .posts-navigation .post__title a,
  .thegrid-pagination__item,
  .post-single__inner .single-title h1,
  .post-card__title h1,
  .contact-heading__title h1,
  .featured-cylinder__title,
  .featured-heading__title h1, 
  .contact-heading__title,
  .page-heading__title, 
  .widget__title-text, .comment-reply-title, 
  .comments-title, .comment-reply-title, .category-tile__name,
  .post-categories__title, .post__title, .entry-title, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, 
  .text-font-primary, .social-tile__title, .widget_recent_comments .recentcomments > a, .widget_recent_entries li > a, 
  .modal-title.modal-title, .author-box .author-name a, .comment-author, .comment-author-name, .widget_calendar caption, 
  .widget_categories li>a, .widget_meta ul, .widget_recent_comments .recentcomments>a, .widget_recent_entries li>a, 
  .widget_pages li>a, .apsl-widget, .widget_archive a, .lwa td, .widget_nav_menu ul, .widget_rss a.rsswidget, 
  .thegrid-search-full-style-2 .search-form__input, .thegrid-search-full-style-2 .search-form__input::placeholder, 
  .post-score-circle .post-score-value, .logo-text {
    font-family: helvetica;
  }

    .author-box .author-name a,
  .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a,
  .mnmd-offcanvas .menu-header .hs-menu-children-wrapper .hs-menu-item.hs-menu-depth-2,
  .footer-subscribe input[type="email"],
  .footer-subscribe input[type="submit"] ,
  .site-footer .copyright-text .hs_cos_wrapper,
  .site-footer .copyright-text a .hs_cos_wrapper_type_inline_text,
  .entry-meta.post__meta time,
  .single-body.entry-content h3, h3,
  .post-single__inner .author-name a,
  .mobile-header-btn, .menu, .meta-text, a.meta-text, .meta-font, a.meta-font, .text-font-tertiary, .block-heading-tabs, 
  .block-heading-tabs > li > a, input[type="button"]:not(.btn), input[type="reset"]:not(.btn), input[type="submit"]:not(.btn), 
  .btn, label, .page-nav, .post-score, .atbs-post-score .post-score-value, .post__cat, a.post__cat, .entry-cat, 
  a.entry-cat, .read-more-link, .post__meta, .entry-meta, .entry-author__name, a.entry-author__name, .comments-count-box, 
  .atbs-atbs-widget-indexed-posts-a .posts-list > li .post__thumb:after, .atbs-atbs-widget-indexed-posts-b .posts-list > li .post__title:after, 
  .atbs-atbs-widget-indexed-posts-c .list-index, .social-tile__count, .widget_recent_comments .comment-author-link, 
  .atbs-atbs-video-box__playlist .is-playing .post__thumb:after, .atbs-atbs-posts-listing-a .cat-title, 
  .atbs-atbs-news-ticker__heading, .post-sharing__title, .post-sharing--simple .sharing-btn, .entry-action-btn, 
  .entry-tags-title, .comments-title__text, .comments-title .add-comment, .comment-metadata, .comment-metadata a, 
  .comment-reply-link, .countdown__digit, .modal-title, .comment-meta, .comment .reply, .wp-caption, .gallery-caption, 
  .widget-title, 
  .btn, .logged-in-as, .countdown__digit, .atbs-atbs-widget-indexed-posts-a .posts-list>li .post__thumb:after, 
  .atbs-atbs-widget-indexed-posts-b .posts-list>li .post__title:after, .atbs-atbs-widget-indexed-posts-c .list-index, 
  .atbs-atbs-horizontal-list .index, .atbs-atbs-pagination, .atbs-atbs-pagination--next-n-prev .atbs-atbs-pagination__label,
  .post__readmore, .single-header .atbs-date-style,
  ::-webkit-input-placeholder /* WebKit, Blink, Edge */, ::placeholder, .meta-font, .post__cat, .post__readmore, 
  .time, .thegrid-pagination, .subscribe-form__info, .btn .author__name, .author__text, .thegrid-featured-module-1 .owl-number, .item-number{
    font-family: Open Sans;
  }
  
  .site-footer .hs-menu-wrapper ul li.hs-menu-item a,
  .header__language-switcher--label-current,
  .header__language-switcher .lang_list_class li a,
  .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a,
  .menu-header .hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 > a,
  .header__language-switcher--label-current,
  .language .header__language-switcher .lang_list_class li a,
  .header__language-switcher--label-current,
  .hs-menu-wrapper ul li.hs-menu-item a,
  .navigation-primary > .submenu.level-1 > li > a,
  .thegrid-offcanvas .navigation-primary > .submenu.level-1 > li > a,
  .submenu.level-2 .menu-item .menu-link,
  .header__language-switcher .lang_list_class li a,
  .thegrid-offcanvas .submenu.level-2 .menu-item a.menu-link,
  .hs-menu-wrapper ul li.hs-menu-item a, {
    font-family: helvetica;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  /*Backup Subscribe*/
  .box-wrapper {
    margin: 100px auto;
    padding: 0;
    max-width: 580px;
  }
  .box-wrapper__inner {
    border: 1px solid rgba(0,0,0,0.1);
    border-top: 5px solid #3545ee;
    padding: 55px 45px 50px 45px;
    border-radius: 8px;
  }
  .box-wrapper .page-header {
    margin-top: 0;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
  }
  .box-heading__title {
    margin-bottom: 30px;
  }
  .box-wrapper .box-heading__title h1,
  .box-wrapper .page-header h1 {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 0;
  }
  .box-wrapper #content h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .box-wrapper .box-wrapper__inner input[type=email],
  .box-wrapper .box-wrapper__inner input[type=password] {
    width: 100% !important;
    padding: 14px 20px !important;
    margin-bottom: 20px;
    margin-top: 0 !important;
    font-size: 15px !important;
    border-color: rgba(0,0,0,0.1) !important;
  }
  .box-wrapper input[type=submit] {
    width: 100%;
    margin: 0 !important;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 4px;
    background-color: #3545ee;
    text-align: center;
    justify-content: center;
  }
  .box-wrapper .page-header h2 {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin: 11px 0 20px 0;
    color: #989898;
  }
  .box-wrapper.box-wrapper-large .header {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 3px;
  }
  .box-wrapper-large .subscribe-options .header + p label, .box-wrapper-large .item .fakelabel {
    font-size: 17px !important;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 4px;
    display: block;
    color: rgba(0,0,0,0.9);
    font-weight: 400;
  }
  .box-wrapper-large .item .checkbox-row + p {
    font-style: italic;
    margin-bottom: 15px;
  }
  .box-wrapper-large .item {
    padding-left: 25px;
  }
  .box-wrapper .subscribe-options .header + p {
    padding-left: 25px;
  }
  .box-wrapper-large .subscribe-options {
    margin-top: 25px;
  }
  .box-wrapper-large .subscribe-options + input[type="submit"] {
    margin-top: 25px !important;
  }
  @media (max-width: 360px) {
    .box-wrapper__inner {
      padding: 35px 22px 30px 22px;
    }   
    .box-wrapper .page-header {
      margin-bottom: 25px;
    }
    .box-wrapper .box-heading__title h1,
    .box-wrapper .page-header h1 {
      font-size: 24px;
    }
    .box-wrapper .box-wrapper__inner input[type=email],
    .box-wrapper .box-wrapper__inner input[type=password] {
      width: 100% !important;
      padding: 12px 20px !important;
      margin-bottom: 15px;
      padding: 5px 15px;
      border-radius: 4px;
      font-size: 14px;
    }
  }
  /*Search*/
  .box-search-results h1 {
    margin-bottom: 40px;
  }
  .box-search-results.systems-page--search-results {
    padding: 100px 0 !important;
  }
  .box-search-results .hs-search-results__listing li:not(:last-child) {
    margin-bottom: 40px;
  }
  .box-search-results .hs-search-results__listing li {
    
      padding: 40px;
      border: 1px dashed rgba(0,0,0,0.1);
  }
  .box-search-results .hs-search-results__title {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-primary);
  }
  .box-search-results .hs-search-results__description {
    margin-bottom: 0;
    margin-top: 15px;
    padding-top: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.6);
    padding-left: 20px;
    text-align: justify;
  }
  .box-search-results .hs-search-results__description:last-child {
    margin-bottom: 0;
  }
  
  .box-search-results .hs-search-results__pagination {
    margin-top: 40px;
  }
  .box-search-results .hs-search-results__pagination a {
    color: var(--color-primary);
  }
  
  /* conact */
  .contact-form-dnd .dnd-section,
  .body-container--landing-page .dnd-section {
    position: relative;
    z-index: 1;
  }
  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .body-container--contact {
    padding-left: 15px;
    padding-right: 15px;
  
  }
  /* landing page */
  .body-container--landing-page .row-fluid *:not(.dnd_area-row-0-force-full-width-section) .row-fluid  {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .body-container--landing-page .row-fluid .dnd_area-row-0-force-full-width-section .row-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .systems-page,
  .box-wrapper {
    min-height: 60vh;
  } 
  
  
  .list-unstyled .maxImagessix {
    display:none;
  }
  .list-unstyled .maxImagessix:nth-child(5),
  .list-unstyled .maxImagessix:nth-child(4),
  .list-unstyled .maxImagessix:nth-child(3),
  .list-unstyled .maxImagessix:nth-child(2),
  .list-unstyled .maxImagessix:nth-child(1) {
    display:block;
  }
  .menu-footer-container .hs-menu-children-wrapper,
  .menu-footer-menu-container .hs-menu-children-wrapper {
     display: none;
  }
  .body-wrapper {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
  }
  .body-container-wrapper {
    flex: 1;
  }
  .widget-about-me {
    position: relative;
  }
  .contact-form-submit form input[type="submit"]:hover, 
  .contact-form-submit form .hs-button:hover, 
  .contact-form-submit input[type="submit"]:not(.btn):hover, 
  .contact-form-submit form input[type="submit"]:active, 
  .contact-form-submit form .hs-button:active, 
  .contact-form-submit input[type="submit"]:not(.btn):active, 
  .contact-form-submit form input[type="submit"]:focus, 
  .contact-form-submit form .hs-button:focus, 
  .contact-form-submit input[type="submit"]:not(.btn):focus, 
  .contact-form-submit form input[type="submit"], 
  .contact-form-submit form .hs-button, 
  .contact-form-submit input[type="submit"]:not(.btn) {
    background-color: var(--color-primary) !important;
    color: #222;
    border: 1px solid var(--color-primary) !important;
  }
    
   .thegrid-listing-grid-2i > *:nth-child(2n+1){
      clear:both;
      
    }
    @media (max-width: 767px) {
      .body-container--home .dnd_area-row-0-margin {
      margin-top: 30px !important;
      margin-bottom: 40px !important;
    }
      .mnmd-post--grid-featured .small-post--vertical {
        padding-top:0;
      }
    }
    
    .list-post--nothumbnail h3.post__title {
      text-transform: capitalize;
      font-size: 19px;
    }
    .small-post--vertical-style-1 .post__title,
    .small-post--vertical-style-2 .post__title {
      font-size: 22px;
    }
    .big-post-st-2 .post-date time {
      font-size: 14px;
      font-weight: 400;
      opacity: 0.6;
    }
    .mnmd-pagination {
      margin-top: 50px;
    }
    .btn-default.js-ajax-load-post-trigger:hover,
     .btn-default.js-ajax-load-post-trigger:active, 
     .btn-default.js-ajax-load-post-trigger:focus, 
     .btn-default {
      text-transform: uppercase;
      padding: 12px 30px;
     }
     .mnmd-pagination .mnmd-pagination__item:nth-child(n+2) {
       margin-left: 15px;
     }
     .mnmd-post--grid-b .small-post--vertical-style-1 .post__title.title-style-2 {
       max-width: 240px;
     }
     .widget__title-text {
       font-size: 22px;
     }
     .widget-posts-list-nothumbnail .post-date {
       margin-top: 10px;
     }
     .widget-posts-list-nothumbnail .post-date time {
       font-weight: 400;
       opacity: 0.6;
       font-size: 12px;
     }
.atbs-pagination {
    margin-top: 50px;
}
.atbs-block-subscribe-form {
    background-color: {color=#F7F7F7, opacity=100, rgba=rgba(247, 247, 247, 1), rgb=rgb(247, 247, 247), hex=#F7F7F7, css=#F7F7F7};
    border: 1px solid rgba(0,0,0,0.2);
    padding: 20px;
}
.icon-heading > svg > g > g > path:nth-child(2),
.icon-heading > svg > g > path {
    fill: var(--color-primary);
}
.list-m-b-60 {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .list-m-b-60 {
    margin-bottom: 45px;
  }
}
@media (max-width: 575px) {
  .list-m-b-60 {
    margin-bottom: 25px;
  }
}

.subscribe-form .inside__title {
  color: #222;
  font-weight: 700;
} 

.inverse-text .subscribe-form .inside__title {
  color: #fff;
}
.inverse-text .subscribe-form  .subscribe__text {
  color: rgba(255,255,255,0.6);
}
.blog-related-posts {
  padding-top: 0 !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-related-posts .container {
      width: 100%;
  }
  .site-footer {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .blog-related-posts {
    margin-top: 30px;
  }
  .block-heading-related .block-heading-related__title {
    font-size: 32px;
  }
  .block-heading-related {
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
  .blog-related-posts  .flexbox-wrap.flexbox-wrap-3i>* {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .blog-related-posts  .flexbox-wrap.flexbox-wrap-3i>* {
    width: 100%;
  }
}
.post__meta.post__meta-head.post-time-cat-wrap.margin-bottom-20 {
  margin-bottom: 12px;
}
.post--horizontal-space-top .post__title.typescale-0_5 {
  font-size: 18px;
}
.post__excerpt p {
  font-size: 15px;
  font-family: helvetica;
}
.post--horizontal-100 .post__thumb {
  margin-right: 20px !important;
}

/**/
.global-header-enable-dnd .social-links__icon svg {
  height: 17px;
}
.global-header-enable-dnd .social-links__link:not(:last-child) {
  margin-right: 7px;
}
.global-header-enable-dnd .navigation-bar-btn i {
  font-size: 24px;
}


.widget-type-rich_text ol,
.widget-type-rich_text ul {
    padding-left: 1.8em; 
}


/* =============================================================================
   Button
============================================================================= */

button.btn-default {
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(0, 0, 0, calc(100 / 100) );
    border-color: rgba(255, 255, 33, calc(100 / 100) );
}
.widget-type-custom_widget .hs-button {
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(0, 0, 0, calc(100 / 100) );
    border-color: rgba(255, 255, 33, calc(100 / 100) );
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
}

input[type="button"]:not(.btn),
input[type="reset"]:not(.btn),
input[type="submit"]:not(.btn) {
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 0;
    font-size: 1.07142857143rem;
    line-height: 1.5;
    font-weight: 600;
    outline: none;
    text-align: center;
    white-space: nowrap;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(0, 0, 0, calc(100 / 100) );
    border: 1px solid;
    border-color: rgba(255, 255, 33, calc(100 / 100) );
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.widget-type-custom_widget .hs-button:hover,
.widget-type-custom_widget .hs-button:active,
.widget-type-custom_widget .hs-button:focus,
button.btn-default:hover,
button.btn-default:active,
button.btn-default:focus,
input[type="button"]:not(.btn):hover,
input[type="reset"]:not(.btn):hover,
input[type="submit"]:not(.btn):hover,
input[type="button"]:not(.btn):active,
input[type="reset"]:not(.btn):active,
input[type="submit"]:not(.btn):active,
input[type="button"]:not(.btn):focus,
input[type="reset"]:not(.btn):focus,
input[type="submit"]:not(.btn):focus {
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(51, 51, 51, calc(100 / 100) );
    border-color: rgba(255, 255, 33, calc(100 / 100) );
}

/*default button */


/* default form */

.widget-type-form form input[type=date], 
.widget-type-form form input[type=email], 
.widget-type-form form input[type=number], 
.widget-type-form form input[type=password], 
.widget-type-form form input[type=search], 
.widget-type-form form input[type=tel], 
.widget-type-form form input[type=text], 
.widget-type-form form input[type=url], 
.widget-type-form form select, 
.widget-type-form form select.form-control, 
.widget-type-form form textarea, 
.widget-type-form form textarea.form-control{
    background-color: rgba(250, 250, 250, calc(100 / 100) );
    color: rgba(68, 68, 68, calc(100 / 100) );
    border-color: rgba(102, 102, 102, calc(100 / 100) );
}
.widget-type-form form .hs-button[type=submit] {
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(255, 255, 255, calc(100 / 100) );
    border: 1px solid rgba(255, 255, 33, calc(100 / 100) );
}

.widget-type-form form .hs-button[type=submit]:hover,
.widget-type-form form .hs-button[type=submit]:active,
.widget-type-form form .hs-button[type=submit]:focus {
    background-color: rgba(255, 255, 33, calc(100 / 100) );
    color: rgba(255, 255, 255, calc(100 / 100) );
    border: 1px solid rgba(255, 255, 33, calc(100 / 100) );
}

.widget-type-form form label,
.widget-type-form form .hs-error-msg {
    color: rgba(247, 247, 247, calc(100 / 100) );
}
.atbs-home-design .widget-type-form h3.form-title:not(.post__title):not(.atbs-exclude),
.widget-type-form .form-title {
    background-color: rgba(247, 247, 247, calc(100 / 100) );
    color: #222;
    font-size: 27px;
    font-weight: 700; text-decoration: none; font-family: helvetica, sans-serif; font-style: normal;
}

.widget-type-form form {
    background-color: rgba(247, 247, 247, calc(100 / 100) );
}

.atbs-block-subscribe-form .hs_submit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.copyright {
  display: flex;
}



/**/
@media (max-width: 576px) {  
  .header-logo.header-logo--mobile img {
    width: auto !important;
  }
}
.input .hs-dateinput:before {
  right: 10px;
}
fieldset .hs-form-field:last-child >  .input,
fieldset.form-columns-1 .input{
  margin-right: 0 !important;
}
fieldset.form-columns-1 .input textarea.hs-input,
fieldset.form-columns-1 .input .hs-input,
fieldset.form-columns-1 .input .hs-input[type="email"],
fieldset.form-columns-1 .input .hs-input[type="text"] {
  width: 100%;
}
.site-header.header-default-no-dnd .social-links {
  display: block;
}
.header-social .social-links a:not(:last-child) {
  margin-bottom: 10px;
}


.site-header .header-search-dropdown .container {
  width: 100% !important;
  max-width: 100% !important;
      padding: 0 60px;
}
@media (max-width: 1366px) {
  .site-header .header-search-dropdown .container {
  
    padding: 0 15px;
  }
}



@media (min-width: 1200px) {
    .navigation-bar .header-logo {
        margin-right: 0;
    }
}

.row-offcanvas i {
    font-size: 22px;
}
.row-offcanvas a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.row-offcanvas a span {
    margin-top: 3px;
    font-weight: 400;
    font-size: 16px;
}

.search-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.header-main__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.offcanvas-menu-toggle i {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.8);
}
.navigation-bar--inverse .lang_switcher_class .globe_class:before,
.navigation-bar--inverse .header__language-switcher--label-current {
    color: rgba(255,255,255,0.8)
}
.navigation-bar--inverse .lang_switcher_class .globe_class:hover:before{
    color: #fff;
}
.mobile-header--inverse .offcanvas-menu-toggle i {
    color: rgba(255, 255, 255, 0.8);
}

.navigation-wrapper {
    overflow: visible !important;
}

button.navigation-bar-btn,
button.navigation-bar-btn:hover,
.navigation-bar-btn:hover,
.navigation-bar-btn:active,
.navigation-bar-btn:focus {
    background: none;
}
.mnmd-offcanvas .site-logo {
    margin-bottom: 15px;
}
.mnmd-offcanvas .mnmd-offcanvas__section-navigation {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.mnmd-offcanvas__section-navigation {
    padding-left:  0;
    padding-right: 0;
}

.mnmd-offcanvas .menu-header .hs-menu-wrapper ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
   margin: 0;
  visibility: visible !important;
    opacity: 1 !important;
}

.mnmd-offcanvas .navigation-primary {
    display: inline-block;
    height: auto;
    line-height: normal;
}

.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a {
    height: auto;
    line-height: 20px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 1;
    color: rgba(0, 0, 0, 0.8);
    background-color: transparent !important;
    position: relative;
    display: block;
}
.mnmd-offcanvas.inverse-text .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a:hover,
.mnmd-offcanvas.inverse-text .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a:active,
.mnmd-offcanvas.inverse-text .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a:focus,
.mnmd-offcanvas.inverse-text .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a {
    color: rgba(255, 255, 255, 0.8);
}
.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.active-branch::after {
    position: absolute;
    content: "";
    left: 0%;
    top: 0;
    bottom: 0;
    width: 3px;
    display: block;
}
.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1:hover > a,
.mnmd-offcanvas .menu-header .hs-menu-children-wrapper .hs-menu-item.hs-menu-depth-2:hover > a {
    background-color: transparent !important;
}
.mnmd-offcanvas .menu-header .hs-item-has-children::before {
    top: calc(40px/2);
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
            margin-top: 0;
}
.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 {
    padding-right: 0;
    position: relative;
}
.mnmd-offcanvas .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
.mnmd-offcanvas .menu-header .hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  position: relative !important;
  width: 100% !important;
  display: none;
  padding: 10px 0 !important;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px 0px rgb(0 0 0 / 5%) inset !important;
          box-shadow: 0 2px 4px 0px rgb(0 0 0 / 5%) inset !important;
  border: none;
}
.mnmd-offcanvas .menu-header .hs-item-has-children::before {
    right: 20px !important;

}
.is-show {
    display: block;
}

.mnmd-offcanvas .menu-header .hs-menu-children-wrapper .hs-menu-item.hs-menu-depth-2 > a {
    color: inherit !important;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 10px 30px !important;
    background: transparent;
    font-size: 15px;
    line-height: 1.4;
    font-family: 400;

}
.mnmd-offcanvas__title .social-list {
    margin-left: -15px;
    padding-left: 5px;
}


/* search */
.header-search-dropdown.is-active {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}
.header-search-dropdown .hs-search-field__input {
    padding: 18px 15px;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    font-size: 1.14286rem;
    background-color: #1b1d1c;
    max-width: 350px;
    -webkit-box-shadow: 0px 3px 2px 0px rgb(0 0 0 / 3%),
    0 1px 0 0 rgb(0 0 0 / 4%), 0 -1px 0 0 rgb(0 0 0 / 4%);
    box-shadow: 0px 3px 2px 0px rgb(0 0 0 / 3%), 0 1px 0 0 rgb(0 0 0 / 4%),
    0 -1px 0 0 rgb(0 0 0 / 4%);
    color: #ffffff;
    border: 1px solid #1b1b1b;
}
.header-search-dropdown input[type="text"] {
    font-weight: 400;
    line-height: 1.42857143;
    vertical-align: middle;
    font-size: 14px;
}
.header-search-dropdown .hs-search-field__input::-webkit-input-placeholder {
    color: #ffffff;
    font-size: 14px;
}
.header-search-dropdown .hs-search-field__input::-moz-placeholder {
    color: #ffffff;
    font-size: 14px;
}
.header-search-dropdown .hs-search-field__input:-ms-input-placeholder {
    color: #ffffff;
    font-size: 14px;
}
.header-search-dropdown .hs-search-field__input::-ms-input-placeholder {
    color: #ffffff;
    font-size: 14px;
}
.header-search-dropdown .hs-search-field__input::placeholder {
    color: #ffffff;
    font-size: 14px;
}
.header-search-dropdown label {
    display: none;
}
.mnmd-flexbox-header-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.hs-search-field {
    text-align: right;
}
.navigation-bar__section .social-list .social-links__icon svg {
    height: 14px;
}
/* language */
.navigation-bar__section:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: visible;
    position: relative;
}
.mnmd-offcanvas__language {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.language {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
}
.lang_switcher_class .lang_list_class,
.header__language-switcher .lang_list_class {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 200px;
    left: 0;
    right: auto;
    bottom: auto;
    top: 100%;
    -webkit-transform: translate(0%);
    -ms-transform: translate(0%);
    transform: translate(0%);
    border-radius: 0;
    background-color: #fafafa !important;
/*     padding: 10px 0; */
   -webkit-box-shadow: none;
           box-shadow: none;
    padding: 10px 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: 0 2px 4px 0px rgb(0 0 0 / 5%) inset !important;
}
.lang_switcher_class .lang_list_class:before, 
.lang_switcher_class .lang_list_class:after, 
.header__language-switcher .lang_list_class:before,
.header__language-switcher .lang_list_class::after {
    display: none;
}
.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}
.language .header__language-switcher .lang_list_class li {
  padding: 10px 30px;
  position: relative;
  list-style: none;
}

.header__language-switcher--label {
    width: 100%;
    position: static;
}
.header__language-switcher {
    padding-right: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
}
.language .globe_class {
    background: #ffffff;
    width: 0;
    height: 0;
}
.header__language-switcher .lang_list_class li {
    background-color: transparent;
}
.header__language-switcher .lang_list_class li a{
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
}
.lang_switcher_class .lang_list_class li {
    text-align: left;
    background-color: transparent;
    border: none;
}
.lang_switcher_class .lang_list_class li:last-child,
.lang_switcher_class .lang_list_class li:first-child {
    border: none;
}
.lang_switcher_class .lang_list_class li:hover {
    color: rgba(0,0,0,0.6);
    background-color: rgba(0,0,0,0.05) !important;
}
.lang_switcher_class .lang_list_class li {
    padding: 12px 10px;
    position: relative;
    list-style: none;
}
.lang_switcher_class .globe_class {
    background:none;
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 0;
    opacity: 1;
    height: 70px;
    font-size: 15PX;
    font-weight: 600;
    line-height: 70px;
    position: relative;
}
.lang_switcher_class .globe_class:before {
    content: "Language";
}
.header__language-switcher--label {
/*     position: static; */
}
.header__language-switcher {
    padding-right: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.language .globe_class {
    background: #fafafa;
    width: 0;
    height: 0;
}
.header__language-switcher .lang_list_class li {
    background-color: transparent;
}
.header__language-switcher .lang_list_class li a{
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
}

.header__language-switcher--label-current {
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 0;
    opacity: 1;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    padding: 12px 20px;
    width: 100%;
}
/*.header__language-switcher--label-current:hover {
    background-color: rgba(0,0,0,0.02) !important;
    color: rgba(0,0,0,0.6);
}*/

.header__language-switcher .lang_list_class li:first-child,
.header__language-switcher .lang_list_class li:last-child {
    border-radius: 0;
}
.header__language-switcher--label-current:hover {
    opacity: 1;
}
.header__language-switcher--label-current:after {
    margin-bottom: 2px;
}

.header-default-no-dnd .lang_switcher_class .globe_class:before {
    content: "";
}
.header-default-no-dnd .lang_switcher_class .globe_class:after {
    display: none;
}
.header-default-no-dnd .globe_class {
    position: static;
}

.header-search-dropdown .hs-search-field__suggestions {
    display: none;
}
.header-search-dropdown.is-active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.mnmd-offcanvas .social-list .social-links__icon svg {
    fill: rgba(0, 0, 0, 0.7);
}
.mnmd-offcanvas .social-list .social-links__icon:hover svg {
    fill: rgba(0, 0, 0, 0.4);
}
@media (min-width: 992px) {
    .body-wrapper:not(.global-header-enable-dnd) .header-search-dropdown {
        position: fixed !important;
        top: 15px !important;
        right: -45px !important;
      }
    .menu-bar-icon-wrap {
        padding: 0 40px 0 0 !important;
    }
    .mnmd-offcanvas--inner {
        max-width: 100% !important;
        width: 100% !important;
    }
    .mnmd-offcanvas .mnmd-offcanvas__section-navigation {
        max-width: 100% !important;
    }
    .mnmd-offcanvas
    .mnmd-offcanvas__section-navigation
    .mnmd-offcanvas__section-navigation--wrap {
        padding-left: 0;
        padding-right: 0;
    }
    .menu-wrap {
        width: 450px !important;
    }
}


@media (max-width: 991px) {
    .navigation-primary > .submenu.level-1 > li > a::before {
        display: none !important;
    }
    .mobile-header__inner {
        padding: 0 15px!important;
    }
    .mnmd-offcanvas__language {
        display: none;
    }
    .mnmd-offcanvas__section {
        padding: 10px;
    }
    #mnmd-takei-mobile-header .container {
        width: 100%;
    }
    #mnmd-takei-mobile-header .hs-search-field {
        text-align: right;
    }
    .mobile-header-btn:hover,
    .mobile-header-btn:active,
    .mobile-header-btn:focus {
        background: none;
    }
    .mobile-header .mobile-header-btn {
        margin-right: 0;
    }

    .mnmd-offcanvas .submenu > .has-submenu > .menu-arrow-bg,
    .mnmd-offcanvas .submenu .menu-arrow-bg {
        height: 14px;
        width: 14px;
        background-size: 14px;
    }
    .mnmd-offcanvas .mnmd-offcanvas__section-navigation {
        padding: 20px 0 !important;
    }
    .mobile-header-btn {
        height: 50px !important;
    }

}
@media (min-width:768px) {
    .mobile-header .header-search-dropdown .container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hs-menu-wrapper ul,
    .social-links {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .mobile-header .container {
        width: 100%;
    }
}
.site-footer .copyright .hs_cos_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}
.site-footer .copyright .hs_cos_wrapper {

}
.site-footer.inverse-text .copyright .hs_cos_wrapper {
    color: rgba(255, 255, 255, 0.6);
}
.site-footer .copyright a .hs_cos_wrapper_type_inline_text {
    text-decoration: none;
    color: #222222;
}
.site-footer .copyright a:hover {
    text-decoration: none !important;
    outline: none !important;
}
.site-footer.inverse-text .copyright a .hs_cos_wrapper_type_inline_text {
    color: rgba(255, 255, 255, 0.6);
}
.site-footer .hs-menu-wrapper ul {
    justify-content: flex-end;
    margin: -2px -24.5px;
}
.site-footer .hs-menu-wrapper ul li {
    padding: 2px 24.5px;
}
.site-footer .hs-menu-wrapper ul li.hs-menu-item a {
    opacity: 1;
    padding: 0;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    color: #222;
}
.site-footer.inverse-text .hs-menu-wrapper ul li.hs-menu-item a {
    color: #fff;
}
.site-footer {
    margin-top: 100px;
}
.site-footer .site-footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.site-footer__section--bottom>* {
    width: 50%;
}
.site-footer .social-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.site-footer .hs-menu-wrapper .hs-menu-children-wrapper {
    display: none !important;
}
.site-footer .social-list .social-links__icon {
    margin: 0 7px;
}
.site-footer .social-links__icon {
  margin: 0 6px;
}
.site-footer .social-list .social-links {
    margin-right: -7px;
}
.site-footer .social-links__icon svg {
  height: 16px
}
/*.site-footer .social-list .social-links__icon svg {
    fill: rgba(255, 255, 255, 0.6) !important;
}
.site-footer .social-list .social-links__icon:hover svg {
    fill: rgba(255, 255, 255, 0.6) !important;
}*/

.site-footer .copyright > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer.the-grid-footer .footer-menu {
    display: flex;
    justify-content: flex-end;
    padding-left: 20px;
}
@media (max-width: 767px) {
    .copyright,
    .site-footer .social-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .site-footer .footer-social .social-list .social-links__icon svg {
        height: 14px;
    }

    .site-footer__section--bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
  .site-footer .social-links {
     justify-content: center !important;
  }
    .site-footer__section--bottom>* {
        width: 100%;
    }
    .site-footer.the-grid-footer .footer-menu {
        justify-content: center;
        padding-left: 0;
    }
    .site-footer .hs-menu-wrapper ul {
    justify-content: center;
      margin: -5px -15px;
    }
    .site-footer .hs-menu-wrapper ul li {
      padding: 5px 15px;
    }
    .site-footer__section-inner.flexbox-wrap.flexbox-space-x {
        flex-direction: column;
    }
    .site-footer__section-inner.flexbox-wrap.flexbox-space-x>* {
        width: 100% !important;
    }
    .site-footer__section-inner.flexbox-wrap.flexbox-space-x .copyright {
        margin-bottom: 15px;
    }
}
.menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a,
.header__language-switcher--label-current {
    color: rgba(0, 0, 0, 0.8);
}
.menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1:hover > a,
.header__language-switcher--label-current:hover{
    color: rgba(0, 0, 0, 0.8);
}
.navigation-bar--inverse .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1 > a,
.navigation-bar--inverse .header__language-switcher--label-current {
    color: #fff;
}
.menu-header .hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2:hover > a {
    color: rgba(0,0,0,0.6);
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1:hover > a,
.mnmd-offcanvas .menu-header .hs-menu-children-wrapper .hs-menu-item.hs-menu-depth-2:hover > a {
    background-color: rgba(0, 0, 0, 0.02) !important;
    color: rgba(0, 0, 0, 0.6);
}
.mnmd-offcanvas .menu-header .hs-menu-children-wrapper .hs-menu-item.hs-menu-depth-2 > a,
.header__language-switcher .lang_list_class li a {
    color: rgba(0, 0, 0, 0.6);
}
.header__language-switcher--label-current:after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
}
.header__language-switcher--label-current:hover::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
}

.language .header__language-switcher .lang_list_class li:hover {
    background-color: rgba(0,0,0,0.02) !important;
    color: rgba(0,0,0,0.6);
}
.language .header__language-switcher .lang_list_class li:hover a {
    color: rgba(0,0,0,0.6);
}

.hs-menu-wrapper ul li.hs-menu-item a {
    color: rgba(255, 255, 255, 0.8);
}
.hs-menu-wrapper ul li.hs-menu-item:hover a {
    color: #ffffff;
}
.contact-heading__title h1 {
    color: var(--color-primary);
}
.mnmd-offcanvas .menu-header .hs-menu-wrapper ul li.active-branch::after {
    background-color: var(--color-primary);
}

@media (min-width: 992px) {
    .submenu.level-2 .menu-item .menu-link:hover {
        background: rgba(0, 0, 0, 1) !important;
        color: #f8f8f8;
    }
}

/* footer */
.site-footer .hs-menu-wrapper ul li.hs-menu-item a {
  color: #222;
}
.site-footer .inverse-text .hs-menu-wrapper ul li.hs-menu-item a {
  color: #fff;
}
.site-footer.site-footer--inverse .hs-menu-wrapper ul li.hs-menu-item a {
    color: rgba(255, 255, 255, 0.6) !important;
}
.site-footer.site-footer--inverse .hs-menu-wrapper ul li.hs-menu-item:hover a {
    color: rgba(255, 255, 255, 1) !important;
}


/* single */
/*form input[type="submit"]:hover,
form .hs-button:hover,
input[type="submit"]:not(.btn):hover,
form input[type="submit"]:active,
form .hs-button:active,
input[type="submit"]:not(.btn):active,
form input[type="submit"]:focus,
form .hs-button:focus,
input[type="submit"]:not(.btn):focus,
form input[type="submit"],
form .hs-button,
input[type="submit"]:not(.btn) {
    color: #fefefe;
    border: 1px solid #191616 !important;
    background: #191616 !important;
}*/
.thegrid-org-pagination__item:hover,
.thegrid-org-pagination__item:focus,
.thegrid-org-pagination__item:active {
    background: #f5f5f5 !important;
    color: rgba(0, 0, 0, 0.8) !important;
}
.thegrid-org-pagination__item:hover,
.thegrid-org-pagination__item:focus,
.thegrid-org-pagination__item:active {
    background: #ddd !important;
}
.thegrid-org-pagination__item-current,
.thegrid-org-pagination__item-current:hover,
.thegrid-org-pagination__item-current:focus,
.thegrid-org-pagination__item-current:active {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/*Module*/
.error-page__heading {
    color: var(--color-primary);
}
/* .error-page-wrapper {
  border: 1px solid rgba(0,0,0,0.1);
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
} */
/* .error-page-wrapper .error-button {
  background-color: var(--color-primary);
} */

/* .contact-post-card {
  border-top: 3px solid var(--color-primary);
}
.contact-post-card:before {
  background-color: var(--color-primary);
} */

.contact-form .hs-button {
    color: #fff;
    background-color: var(--color-primary);
}
/*System*/
.box-wrapper__inner {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-top: 5px solid var(--color-primary) !important;
}
.box-wrapper input[type="submit"] {
    background-color: var(--color-primary);
}
.box-search-results .hs-search-results__description {
    border-left: 4px solid var(--color-primary);
}
.page-404-text a,
.error-page-wrapper .error-button {
    color: var(--color-primary);
    text-decoration: none;
}