/*
Theme Name: Lucia Vineyards
Theme URI: http://okthemes.com/lucia-vineyards
Author: Cristian Gogoneata
Author URI: http://www.okthemes.com
Description: Vineyard, Winery  & Wine WooCommerce shop
Tags: e-commerce, food-and-drink, grid-layout, custom-logo, footer-widgets, rtl-language-support, theme-options, translation-ready 
Text Domain: lucia-vineyards
Version: 1.6
=======
License: GPL
License URI: http://www.opensource.org/licenses/gpl-license.php
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset & Normalize
# Typography
# Elements
# Forms
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
    ## Comments
# Infinite scroll
# Media
    ## Captions
    ## Galleries
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 1em 2em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 1em 2em;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## slide-down
--------------------------------------------------------------*/
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## slight-slide-down
--------------------------------------------------------------*/
@-webkit-keyframes slight-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slight-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slight-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slight-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## slide-up
--------------------------------------------------------------*/
@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## slide-up-60
--------------------------------------------------------------*/
@-webkit-keyframes slide-up-60 {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-up-60 {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slide-up-60 {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-60 {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## slight-slide-up
--------------------------------------------------------------*/
@-webkit-keyframes slight-slide-up {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slight-slide-up {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slight-slide-up {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slight-slide-up {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## opacity
--------------------------------------------------------------*/
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
#Implemented animations
--------------------------------------------------------------*/
/* VC overwrite */
/* Top to bottom keyframes */
@-webkit-keyframes gg_wpb_ttb {
  0% {
    -webkit-transform: translate(0, -15px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes gg_wpb_ttb {
  0% {
    -moz-transform: translate(0, -15px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes gg_wpb_ttb {
  0% {
    -o-transform: translate(0, -15px);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gg_wpb_ttb {
  0% {
    transform: translate(0, -15px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Bottom to top keyframes */
@-webkit-keyframes gg_wpb_btt {
  0% {
    -webkit-transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes gg_wpb_btt {
  0% {
    -moz-transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes gg_wpb_btt {
  0% {
    -o-transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gg_wpb_btt {
  0% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Left to right keyframes */
@-webkit-keyframes gg_wpb_ltr {
  0% {
    -webkit-transform: translate(-15px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes gg_wpb_ltr {
  0% {
    -moz-transform: translate(-15px, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes gg_wpb_ltr {
  0% {
    -o-transform: translate(-15px, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gg_wpb_ltr {
  0% {
    transform: translate(-15px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Right to left keyframes */
@-webkit-keyframes gg_wpb_rtl {
  0% {
    -webkit-transform: translate(15px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes gg_wpb_rtl {
  0% {
    -moz-transform: translate(15px, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes gg_wpb_rtl {
  0% {
    -o-transform: translate(15px, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gg_wpb_rtl {
  0% {
    transform: translate(15px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
body .wpb_top-to-bottom,
body .top-to-bottom {
  -webkit-animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-name: gg_wpb_ttb;
  -webkit-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -moz-animation-delay: 0.3s;
  -moz-animation-duration: 0.3s;
  -moz-animation-name: gg_wpb_ttb;
  -moz-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -o-animation-delay: 0.3s;
  -o-animation-duration: 0.3s;
  -o-animation-name: gg_wpb_ttb;
  -o-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-name: gg_wpb_ttb;
  animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
}

body .wpb_bottom-to-top,
body .bottom-to-top {
  -webkit-animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-name: gg_wpb_btt;
  -webkit-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -moz-animation-delay: 0.3s;
  -moz-animation-duration: 0.3s;
  -moz-animation-name: gg_wpb_btt;
  -moz-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -o-animation-delay: 0.3s;
  -o-animation-duration: 0.3s;
  -o-animation-name: gg_wpb_btt;
  -o-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-name: gg_wpb_btt;
  animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
}

body .wpb_left-to-right,
body .left-to-right {
  -webkit-animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-name: gg_wpb_ltr;
  -webkit-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -moz-animation-delay: 0.3s;
  -moz-animation-duration: 0.3s;
  -moz-animation-name: gg_wpb_ltr;
  -moz-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -o-animation-delay: 0.3s;
  -o-animation-duration: 0.3s;
  -o-animation-name: gg_wpb_ltr;
  -o-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-name: gg_wpb_ltr;
  animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
}

body .wpb_right-to-left,
body .right-to-left {
  -webkit-animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-name: gg_wpb_rtl;
  -webkit-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -moz-animation-delay: 0.3s;
  -moz-animation-duration: 0.3s;
  -moz-animation-name: gg_wpb_rtl;
  -moz-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -o-animation-delay: 0.3s;
  -o-animation-duration: 0.3s;
  -o-animation-name: gg_wpb_rtl;
  -o-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-name: gg_wpb_rtl;
  animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
}

/* ANIMATIONS */
@keyframes texteffect {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes texteffect {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes show-img-1 {
  0%,66.6% {
    visibility: hidden;
  }
  100%,66.7% {
    visibility: visible;
  }
}
@keyframes show-img-1 {
  0%,66.6% {
    visibility: hidden;
  }
  100%,66.7% {
    visibility: visible;
  }
}
@-webkit-keyframes slide-bg-2 {
  33.3% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(0.05, 1);
    transform: scale(0.05, 1);
  }
  66.6% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  66.7% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
@keyframes slide-bg-2 {
  33.3% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(0.05, 1);
    transform: scale(0.05, 1);
  }
  66.6% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  66.7% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
.el-to-fade {
  opacity: 0;
}
.el-to-fade.animated {
  -webkit-animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-name: slide-up-60;
  -webkit-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -moz-animation-delay: 0.5s;
  -moz-animation-duration: 1s;
  -moz-animation-name: slide-up-60;
  -moz-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  -o-animation-delay: 0.5s;
  -o-animation-duration: 1s;
  -o-animation-name: slide-up-60;
  -o-animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-name: slide-up-60;
  animation-fill-mode: forwards;
  /* this prevents the animation from restarting! */
}

/* Layout Styles */
/* Body Text Styles */
/* Heading Text Styles */
/* Links */
/* Colors */
/* Header and Footer Styles */
/* Icons */
/* Navigation */
/* Forms */
/* Margins */
/* Transitions */
/*--------------------------------------------------------------
# Global variables
--------------------------------------------------------------*/
:root {
  --layout-padding: 2em;
  --body-background-color: #404040;
  --header-footer-background-color: #2c2c2c;
  --modules-background-color: #2c2c2c;
  --text-color: #ccc;
  --headings-text-color: #fff;
  --base-font-family: "Montserrat", sans-serif;
  --headings-font-family: "Cormorant Garamond", serif;
  --base-font-size: 12px;
  --primary-color: #cee538;
  --secondary-color: #2c2c2c;
  --headings-1-font-size: 2rem;
  --headings-2-font-size: 1.75rem;
  --headings-3-font-size: 1.5rem;
  --headings-4-font-size: 1.5rem;
  --headings-5-font-size: 1.35rem;
  --headings-6-font-size: 1.1rem;
  --navigation-font-size: 2rem;
  --submenu-font-size: 1.2rem;
}
@media (min-width: 768px) {
  :root {
    --layout-padding: 3em;
    --base-font-size: 14px;
  }
}
@media (min-width: 992px) {
  :root {
    --layout-padding: 6em;
    --headings-1-font-size: 3rem;
    --headings-2-font-size: 2.5rem;
    --headings-3-font-size: 2rem;
    --headings-4-font-size: 1.75rem;
    --headings-5-font-size: 1.5rem;
    --headings-6-font-size: 1.25rem;
  }
}
@media (min-width: 1600px) {
  :root {
    --base-font-size: 16px;
    --headings-1-font-size: 4rem;
    --headings-2-font-size: 3.25rem;
    --headings-3-font-size: 2.5rem;
    --headings-4-font-size: 2rem;
    --headings-5-font-size: 1.65rem;
    --headings-6-font-size: 1.35rem;
    --navigation-font-size: 2.75rem;
    --submenu-font-size: 1.95rem;
  }
}
@media (min-width: 2400px) {
  :root {
    --base-font-size: 24px;
    --headings-1-font-size: 5.15rem;
    --headings-2-font-size: 4.15rem;
    --headings-3-font-size: 3.45rem;
    --headings-4-font-size: 3rem;
    --headings-5-font-size: 2.5rem;
    --headings-6-font-size: 2.125rem;
    --navigation-font-size: 3.65rem;
    --submenu-font-size: 2.85rem;
  }
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--text-color);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: var(--headings-text-color);
  font-family: var(--headings-font-family);
}

h1 {
  font-size: var(--headings-1-font-size);
}

h2 {
  font-size: var(--headings-2-font-size);
}

h3 {
  font-size: var(--headings-3-font-size);
}

h4 {
  font-size: var(--headings-4-font-size);
}

h5 {
  font-size: var(--headings-5-font-size);
}

h6 {
  font-size: var(--headings-6-font-size);
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  position: relative;
  border-left: 2px solid var(--primary-color);
  margin-left: 0;
  padding: 0 0 0 1rem;
  margin-bottom: 1.5em;
}

address {
  margin: 0 0 1.5em;
  font-style: italic;
}

pre {
  background: #000;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  cursor: help;
}

mark, ins {
  background: var(--body-background-color);
  text-decoration: none;
  color: var(--text-color);
}

big {
  font-size: 125%;
}

.small {
  font-size: 16px;
}

.lead {
  font-size: 18px;
}

.lead-large {
  font-size: 27px;
}

.white-text {
  color: #fff;
}

.is-style-outline {
  color: #fff;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: var(--body-background-color);
  /* Fallback for when there is no custom background color defined. */
  overflow-x: hidden;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  vertical-align: top;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}
table th {
  padding: 3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
}
@media (min-width: 2400px) {
  table th {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
table td {
  padding: 1.5em 1.8em;
}
table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment table tr.odd {
  background: var(--body-background-color);
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody {
  color: var(--text-color);
  margin: 1.5em 0;
}

.wp-block-calendar table th {
  background: var(--body-background-color);
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  border-color: rgba(255, 255, 255, 0.1);
}

.wp-block-calendar tfoot a {
  color: var(--primary-color);
}

.wp-block-categories.wp-block-categories-dropdown {
  margin-bottom: 1.5em;
}

.wp-block-search {
  margin-bottom: 1.5em;
}
.wp-block-search .wp-block-search__button {
  margin-left: 0;
}

.wp-block-search .wp-block-search__input {
  border: 0;
}

.wp-block-image {
  margin-bottom: 1.5em;
}
.wp-block-image .alignleft {
  margin-right: 1.5em;
}
.wp-block-image .alignright {
  margin-left: 1.5em;
}

.wp-block-button,
.wp-block-cover,
.wp-block-quote,
.wp-block-gallery {
  margin-bottom: 1.5em;
}

.wp-block-latest-posts__post-date {
  color: var(--text-color);
}

.wp-block-group + .more-link-wrapper {
  margin-top: 1.5em;
}

.wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}
.wp-block-pullquote blockquote {
  border: none;
  margin-top: calc(4*1rem);
  margin-bottom: calc(4.33*1rem);
  margin-right: 0;
  padding-left: 0;
}

.wp-block-archives {
  list-style: none;
}

.wp-block-table.is-style-stripes {
  border: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--body-background-color);
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  margin-bottom: 1.5em;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear::before, .clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-subheader::before,
.site-subheader::after,
.site-content::before,
.site-content::after,
.site-footer::before,
.site-footer::after,
.page-meta::before,
.page-meta::after {
  content: '';
  display: table;
}
.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-subheader::after,
.site-content::after,
.site-footer::after,
.page-meta::after {
  clear: both;
}

.screen-reader-text {
  display: none;
}

.blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

body .background-position-center-top {
  background-position: center top !important;
}

.visible-on-mobile {
  display: block;
}
@media (min-width: 768px) {
  .visible-on-mobile {
    display: none;
  }
}

@media (max-width: 576px) {
  body .mobile-newsletter-padding .vc_column-inner {
    padding: 10% 8% !important;
  }
}
body .no-overflow {
  overflow: visible !important;
}

body.disable-scroll {
  overflow: hidden !important;
}

.scrollup {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  -webkit-transform: translate(var(--layout-padding), 0);
  transform: translate(var(--layout-padding), 0);
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
  display: none;
}
@media (min-width: 768px) {
  .scrollup {
    display: block;
  }
}
.scrollup .icon-scrollup {
  height: 60px;
  width: calc(var(--layout-padding) - 1px);
  display: inline-block;
  vertical-align: middle;
  line-height: inherit;
  position: relative;
  background: var(--secondary-color);
}
.scrollup .icon-scrollup path {
  fill: rgba(255, 255, 255, 0.3);
}
@media (min-width: 2400px) {
  .scrollup .icon-scrollup {
    height: 100px;
  }
}

.is-scrolled .scrollup {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.black-and-white-filter {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.black-and-white-filter iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.no-active-sidebar-page #content > .container > .row .col-md-3.pull-right,
.no-active-sidebar-post #content > .container > .row .col-md-3.pull-right {
  display: none;
}
.no-active-sidebar-page #content > .container > .row .col-md-9.pull-left,
.no-active-sidebar-post #content > .container > .row .col-md-9.pull-left {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.max-width-150 {
  max-width: 150px;
}

.max-width-140 {
  max-width: 140px !important;
}

.background-position-center {
  background-position: center;
}
.background-position-center .vc_column-inner {
  background-position: center !important;
}

.preloader {
  position: fixed;
  height: 150%;
  width: 150%;
  left: -25%;
  top: -15%;
  background: var(--modules-background-color);
  z-index: 9999;
}

.transition span {
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  width: 0;
  background: var(--body-background-color);
  z-index: 1003;
}

.transition span:nth-child(2) {
  height: 0;
  width: 150%;
  left: -25%;
  top: -15%;
  background: var(--modules-background-color);
  z-index: 1002;
}

.uppercase-style {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .uppercase-style {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

.blur-10px {
  filter: blur(10px);
  -webkit-filter: blur(10px);
}

body .ytp-show-cards-title {
  display: none !important;
}

.wrapper {
  box-sizing: border-box;
  max-width: 2560px;
  margin: 0 auto;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (max-width: 576px) {
  .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media (max-width: 576px) {
  .col-xs {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 8.33333%;
  -moz-flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}
@media (max-width: 576px) {
  .col-xs-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}
@media (max-width: 576px) {
  .col-xs-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
@media (max-width: 576px) {
  .col-xs-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}
@media (max-width: 576px) {
  .col-xs-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 41.66667%;
  -moz-flex-basis: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}
@media (max-width: 576px) {
  .col-xs-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
@media (max-width: 576px) {
  .col-xs-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 58.33333%;
  -moz-flex-basis: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}
@media (max-width: 576px) {
  .col-xs-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}
@media (max-width: 576px) {
  .col-xs-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
@media (max-width: 576px) {
  .col-xs-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}
@media (max-width: 576px) {
  .col-xs-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 91.66667%;
  -moz-flex-basis: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}
@media (max-width: 576px) {
  .col-xs-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media (max-width: 576px) {
  .col-xs-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-0 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 0;
}
@media (max-width: 576px) {
  .col-xs-offset-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 8.33333%;
}
@media (max-width: 576px) {
  .col-xs-offset-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 16.66667%;
}
@media (max-width: 576px) {
  .col-xs-offset-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 25%;
}
@media (max-width: 576px) {
  .col-xs-offset-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 33.33333%;
}
@media (max-width: 576px) {
  .col-xs-offset-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 41.66667%;
}
@media (max-width: 576px) {
  .col-xs-offset-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 50%;
}
@media (max-width: 576px) {
  .col-xs-offset-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 58.33333%;
}
@media (max-width: 576px) {
  .col-xs-offset-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 66.66667%;
}
@media (max-width: 576px) {
  .col-xs-offset-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 75%;
}
@media (max-width: 576px) {
  .col-xs-offset-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 83.33333%;
}
@media (max-width: 576px) {
  .col-xs-offset-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 91.66667%;
}
@media (max-width: 576px) {
  .col-xs-offset-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 100%;
}
@media (max-width: 576px) {
  .col-xs-offset-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .col-sm {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 576px) {
  .col-sm-offset-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 48em) {
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .col-md {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%;
  }
}
@media only screen and (min-width: 62em) and (max-width: 576px) {
  .col-md-offset-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 62em) {
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .col-lg {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-7 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-10 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-11 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%;
  }
}
@media only screen and (min-width: 75em) and (max-width: 576px) {
  .col-lg-offset-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
/*--------------------------------------------------------------
# Slick
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider.show_hidden_items .slick-list {
  overflow: visible;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -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);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  /*height: 100%;*/
  height: auto;
  padding: 0 15px;
  /*opacity: 0.2;*/
  min-height: 1px;
  pointer-events: none;
  /*transform:scale(.95);*/
  /*-webkit-transform:scale(.95);*/
  /*transition:.5s ease all;*/
  /*-webkit-transition:.5s ease all;*/
  /*-webkit-backface-visibility: hidden;*/
}
.slick-slide:focus {
  outline: none;
}

.slick-slide.slick-active {
  opacity: 1;
  pointer-events: auto;
  opacity: 1;
  /*transform:scale(1);*/
  /*-webkit-transform:scale(1);*/
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("assets/images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% - 25px);
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #000;
  border: none;
  outline: none;
  background: transparent;
}

.slick-dotted .slick-prev,
.slick-dotted .slick-next {
  top: auto;
  bottom: -12px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  border: 0;
}

.slick-prev:after,
.slick-next:after {
  display: none;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  content: '';
  background-image: url("assets/images/swiper-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 50px;
  height: 50px;
  display: block;
}

.slick-prev:before {
  background-image: url("assets/images/swiper-arrow-left.svg");
}

.slick-prev {
  left: -20px;
  padding-left: 0;
}

.slick-dotted .slick-prev {
  left: 10%;
}

[dir='rtl'] .slick-prev {
  right: 10%;
  left: auto;
}

.gg_slider .slick-next {
  right: 15px;
}

.slick-next {
  right: -20px;
}

.slick-dotted .slick-next {
  right: 10%;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: 10%;
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: relative;
  margin: 3em 0 0 0;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 10px;
  background: var(--secondary-color);
  margin: 0 5px;
  outline: none;
  transition: all .3s;
  color: transparent;
  padding: 0;
}
.slick-dots li button:after, .slick-dots li button:before {
  display: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  opacity: 1;
  background: var(--primary-color);
  width: 30px;
}

@media (max-width: 992px) {
  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }
}
/*--------------------------------------------------------------
# Magnific Popup
--------------------------------------------------------------*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  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-inline-holder .mfp-content,
.mfp-ajax-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-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -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: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

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: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-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-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium 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: 0.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-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  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-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .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, 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, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.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;
  }
}
/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
@media (min-width: 2400px) {
  .swiper-slide img {
    width: 100%;
  }
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background-color: #000;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
}
.swiper-button-prev span,
.swiper-button-next span {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 992px) {
  .swiper-button-prev span,
  .swiper-button-next span {
    margin-top: -15px;
    width: 30px;
    height: 30px;
  }
}
.swiper-button-prev:hover span,
.swiper-button-next:hover span {
  width: 30px;
}
@media (min-width: 992px) {
  .swiper-button-prev:hover span,
  .swiper-button-next:hover span {
    width: 45px;
  }
}

.swiper-button-prev span {
  left: auto;
  right: 15px;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

.swiper-button-prev span,
.swiper-container-rtl .swiper-button-next span {
  background: url("assets/images/swiper-arrow-left-alt.svg") 100%/auto 7px no-repeat;
  background-position: 0;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.swiper-button-next span,
.swiper-container-rtl .swiper-button-prev span {
  background: url("assets/images/swiper-arrow-right-alt.svg") 100%/auto 7px no-repeat;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 80%;
  bottom: -3em;
  margin: 0 auto;
  left: 10%;
}
.swiper-pagination.swiper-pagination-bullets {
  width: 60%;
  left: 20%;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0px;
  left: 50%;
  width: 100%;
  background: transparent;
  width: auto;
  padding: 1em 2em;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 10px;
  background: var(--secondary-color);
  margin: 0 5px;
  outline: none;
  transition: all .3s;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  width: 30px;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--secondary-color);
  position: absolute;
  height: 6px;
  bottom: auto;
  width: 100%;
  left: 0;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: var(--primary-color);
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*! Lity - v3.0.0-dev - 2018-07-09
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity-active,
.lity-active body {
  overflow: hidden;
}

.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: -o-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close,
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  z-index: 9994;
  width: 35px;
  height: 35px;
  /* Change to position: absolute to display close button inside content container */
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("assets/webfonts/fa-solid-900.eot");
  src: url("assets/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("assets/webfonts/fa-solid-900.woff2") format("woff2"), url("assets/webfonts/fa-solid-900.woff") format("woff"), url("assets/webfonts/fa-solid-900.ttf") format("truetype"), url("assets/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("assets/webfonts/fa-brands-400.eot");
  src: url("assets/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("assets/webfonts/fa-brands-400.woff2") format("woff2"), url("assets/webfonts/fa-brands-400.woff") format("woff"), url("assets/webfonts/fa-brands-400.ttf") format("truetype"), url("assets/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: 'Font Awesome 5 Brands';
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
form label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
  margin-bottom: 0.5em;
}
@media (min-width: 2400px) {
  form label {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: var(--primary-color);
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--text-color);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 1.5em;
  line-height: normal;
  background: var(--body-background-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}

select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5em;
  background: var(--body-background-color);
}

textarea {
  width: 100%;
}

[type="checkbox"], [type="radio"] {
  margin-right: 0.5em;
}

::-webkit-input-placeholder {
  color: var(--text-color);
}
:-moz-placeholder {
  color: var(--text-color);
}
::-moz-placeholder {
  color: var(--text-color);
}
:-ms-input-placeholder {
  color: var(--text-color);
}
.header-searchform #s::-webkit-input-placeholder {
  font-style: normal;
}
.header-searchform #s:-moz-placeholder {
  font-style: normal;
}
.header-searchform #s::-moz-placeholder {
  font-style: normal;
}
.header-searchform #s:-ms-input-placeholder {
  font-style: normal;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap input[type="text"],
.wpcf7-form .wpcf7-form-control-wrap input[type="email"],
.wpcf7-form .wpcf7-form-control-wrap input[type="url"],
.wpcf7-form .wpcf7-form-control-wrap input[type="password"],
.wpcf7-form .wpcf7-form-control-wrap input[type="search"],
.wpcf7-form .wpcf7-form-control-wrap input[type="number"],
.wpcf7-form .wpcf7-form-control-wrap input[type="tel"] {
  width: 100%;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 0px 1000px var(--body-background-color) inset;
  transition: background-color 5000s ease-in-out 0s;
}

legend {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  legend {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  outline: 0;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.25s ease-in-out;
}

a:hover, a:focus, a:active {
  color: var(--primary-color);
}

a:focus {
  outline: 0;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.navbar-header-toggle {
  position: relative;
  z-index: 5;
  cursor: pointer;
  z-index: 9998;
  border: none;
  color: #fff;
  min-height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.navbar-header-toggle span {
  margin-left: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
}
@media (min-width: 2400px) {
  .navbar-header-toggle span {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
.navbar-header-toggle span:after {
  content: attr(data-open);
  display: block;
}
.navbar-header-toggle .navbar-header-toggle-bars {
  position: relative;
  overflow: hidden;
  width: 28px;
}
.navbar-header-toggle .navbar-header-toggle-bars div {
  width: 28px;
  display: block;
  height: 1.5px;
  margin: 5px 0;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
  -moz-transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
  transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
}
.navbar-header-toggle:hover .navbar-header-toggle-bars div:nth-child(2) {
  width: 15px;
}
.navbar-header-toggle.active {
  position: fixed;
  top: 5px;
  left: 0;
  padding-left: var(--layout-padding);
  width: 100%;
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.5);
  background: var(--body-background-color);
}
@media (min-width: 768px) {
  .navbar-header-toggle.active {
    position: relative;
    top: auto;
    left: auto;
    padding-left: 0;
    box-shadow: none;
    background: none;
    width: auto;
  }
}
.navbar-header-toggle.active .navbar-header-toggle-bars div:first-child {
  transform: translateY(5px) rotate(45deg);
  width: 24px;
}
.navbar-header-toggle.active .navbar-header-toggle-bars div:nth-child(2) {
  transform: scale(0) rotate(-45deg);
  opacity: 0;
}
.navbar-header-toggle.active .navbar-header-toggle-bars div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 24px;
}
.navbar-header-toggle.active span:after {
  content: attr(data-close);
}

body.admin-bar .navbar-header-toggle.active {
  top: 46px;
}
@media (min-width: 768px) {
  body.admin-bar .navbar-header-toggle.active {
    top: auto;
  }
}

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1004;
  padding: 6em 3em;
  display: none;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  .main-navigation {
    overflow-y: hidden;
    padding: var(--layout-padding);
  }
}
.main-navigation.hide-main-navigation {
  display: none;
}
.main-navigation.show-main-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  /*overflow: auto;*/
}
@media (min-width: 768px) {
  .main-navigation.show-main-navigation {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.main-navigation .main-menu-wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 55%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}
@media (min-width: 768px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner {
    -webkit-mask-image: linear-gradient(0deg, #ffffff 80%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(0deg, #ffffff 85%, rgba(0, 0, 0, 0));
  }
}
@media (min-width: 768px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container {
    -webkit-mask-image: linear-gradient(180deg, #ffffff 90%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(180deg, #ffffff 90%, rgba(0, 0, 0, 0));
  }
}
.main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  justify-content: start;
  -webkit-transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
  -moz-transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
  transition: all 0.5s cubic-bezier(0.3, 1.4, 0.7, 1);
}
@media (min-width: 768px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 1600px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder {
    height: 600px;
  }
}
@media (min-width: 2400px) {
  .main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder {
    height: 800px;
  }
}
.main-navigation .main-menu-wrapper .main-menu-wrapper-inner .main-menu-container .main-menu-holder.ps--active-y {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.main-navigation .menu-widgets-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .main-navigation .menu-widgets-wrapper {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.main-navigation .menu-widgets-wrapper .header-menu-widget-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .main-navigation .menu-widgets-wrapper .header-menu-widget-wrapper {
    padding-left: var(--layout-padding);
  }
}
.main-navigation .multilanguage-switcher {
  padding-left: 5%;
  padding-bottom: 8%;
  width: 100%;
}
@media (min-width: 768px) {
  .main-navigation .multilanguage-switcher {
    padding-top: 10%;
  }
}
.main-navigation .multilanguage-switcher + .menu-wrapper {
  padding-top: 0;
}
.main-navigation .multilanguage-switcher + .menu-wrapper + .menu-wrapper {
  padding-top: 0;
}
.main-navigation .multilanguage-switcher ul {
  padding: 0 1.8em;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation .multilanguage-switcher ul li a {
  padding: 0.8em;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  letter-spacing: 2px;
  font-weight: bold;
}
.main-navigation .multilanguage-switcher ul li a:hover {
  color: #fff;
}
.main-navigation .multilanguage-switcher ul li.wpml-ls-current-language a, .main-navigation .multilanguage-switcher ul li.current-lang a {
  color: #fff;
}
.main-navigation .multilanguage-switcher ul li:first-child a {
  padding-left: 0;
}

.main-navigation.toggled button.menu-toggle {
  border-bottom-color: #fff;
}
.main-navigation ul.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
@media (min-width: 992px) {
  .main-navigation ul.main-menu {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    -moz-flex: 0 1 60%;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
  }
}
.main-navigation ul.main-menu > li {
  position: relative;
  width: 100%;
  float: left;
}
.main-navigation ul.main-menu > li a {
  display: block;
  text-decoration: none;
  padding: 0.3em 0;
  color: #fff;
  font-size: var(--navigation-font-size);
  font-family: var(--headings-font-family);
  line-height: normal;
}
.main-navigation ul.main-menu > li a:hover {
  color: var(--primary-color);
}
.main-navigation ul.main-menu > li.current-menu-item > a {
  color: var(--primary-color);
}
.main-navigation ul.main-menu ul.sub-menu {
  list-style: none;
  float: left;
  margin: 0;
  width: 100%;
  padding: 0.5em 0;
  display: none;
}
.main-navigation ul.main-menu ul.sub-menu ul.sub-menu {
  padding-left: 1.5em;
}
.main-navigation ul.main-menu ul.sub-menu.toggled-on {
  display: block;
  padding: 0 0 0 1.5em;
}
.main-navigation ul.main-menu ul.sub-menu li {
  width: 100%;
}
.main-navigation ul.main-menu ul.sub-menu li a {
  font-size: var(--submenu-font-size);
  float: left;
  width: 100%;
}
.main-navigation ul.main-menu ul.sub-menu li.current-menu-item a {
  color: var(--primary-color);
}
.main-navigation ul.main-menu li:last-child ul.sub-menu {
  left: auto;
  right: 0;
}
@media (min-width: 768px) {
  .main-navigation ul.main-menu li:last-child ul.sub-menu li > ul.sub-menu {
    left: auto;
    right: 100%;
  }
}

body.admin-bar .main-navigation.sticky-nav {
  top: 32px;
}

/* Toggle menu */
button.dropdown-toggle,
button.menu-toggle {
  display: block;
}

button.dropdown-toggle {
  position: absolute;
  right: 30px;
  top: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (min-width: 2400px) {
  button.dropdown-toggle {
    width: 80px;
    height: 80px;
  }
}
button.dropdown-toggle:before, button.dropdown-toggle:after {
  content: "";
  position: absolute;
  background-color: #dddddd;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 12px;
  height: 2px;
  top: 30px;
  right: 50%;
  left: auto;
  margin-right: -8px;
  margin-top: -2px;
}
@media (min-width: 2400px) {
  button.dropdown-toggle:before, button.dropdown-toggle:after {
    width: 24px;
    height: 4px;
    top: 60px;
    margin-right: -16px;
    margin-top: -4px;
  }
}
button.dropdown-toggle:after {
  transform: rotate(90deg);
}
button.dropdown-toggle.toggled-on:before {
  transform: rotate(-180deg);
}
button.dropdown-toggle.toggled-on:after {
  display: none;
}

.sub-menu button.dropdown-toggle {
  top: -10px;
}

button.menu-toggle {
  cursor: pointer;
  text-align: left;
  position: relative;
  border: 2px solid #f2f2f2;
  color: #000;
  background: #ffffff;
  margin: 0 auto;
  width: 50%;
  text-align: center;
  padding: 0.5em;
}
button.menu-toggle span::before {
  transition: all, ease, 0.2s;
}
button.menu-toggle::before, button.menu-toggle::after,
button.menu-toggle span::before {
  content: '';
  display: block;
  height: 2px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 1em;
  margin-top: -1px;
  transition: all, ease, 0.2s;
  border-radius: 3px;
  background-color: #d5d9db;
}
button.menu-toggle::before {
  transform: translateY(-4px);
}
button.menu-toggle::after {
  transform: translateY(4px);
}

.toggled button.menu-toggle::before, .toggled button.menu-toggle::after {
  transform: rotate(45deg);
}
.toggled button.menu-toggle::after {
  transform: rotate(-45deg);
}
.toggled button.menu-toggle span::before {
  opacity: 0;
}

/*--------------------------------------------------------------
### Regular menu navigation
--------------------------------------------------------------*/
.main-menu-regular {
  padding: 1.5em 0;
  display: none;
}
@media (min-width: 992px) {
  .main-menu-regular {
    display: block;
    padding: 2em 0;
  }
}
.main-menu-regular ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 2400px) {
  .main-menu-regular ul {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
.main-menu-regular ul li {
  padding: 2em 1em;
  position: relative;
  /*Dropdown*/
}
.main-menu-regular ul li:last-child {
  padding-right: 0;
}
.main-menu-regular ul li a:not(:hover) {
  color: #fff;
}
.main-menu-regular ul li ul {
  background: var(--modules-background-color);
  opacity: 0;
  padding: 1rem 0;
  position: absolute;
  left: 9999rem;
  top: 100%;
  transition: opacity 0.15s linear, transform 0.15s linear, left 0s 0.15s;
  transform: translateY(0.6rem);
  width: 15rem;
  z-index: 2;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  /*Multilevel*/
}
.main-menu-regular ul li ul ul {
  top: -1rem;
}
.main-menu-regular ul li ul li {
  padding: 0.5em 2em;
}
.main-menu-regular ul li ul li.menu-item-has-children:hover > ul, .main-menu-regular ul li ul li.menu-item-has-children:focus > ul, .main-menu-regular ul li ul li.menu-item-has-children.focus > ul {
  left: 100%;
}
.main-menu-regular ul li.menu-item-has-children:hover > ul, .main-menu-regular ul li.menu-item-has-children:focus > ul, .main-menu-regular ul li.menu-item-has-children.focus > ul {
  left: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.15s linear, transform 0.15s linear;
}

.mobile-nav-toggle {
  display: block;
  margin-left: auto;
}
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.section-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  width: calc(100% - 4rem);
}

.menu-modal {
  background: #2c2c2c;
  display: none;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  bottom: 0;
  left: -99999rem;
  right: 99999rem;
  top: 0;
  transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
  z-index: 99;
}

.admin-bar .menu-modal {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .menu-modal {
    top: 46px;
  }
}
.menu-modal.show-modal {
  display: flex;
}

.menu-modal.active {
  left: 0;
  opacity: 1;
  right: 0;
  transition: opacity 0.25s ease-out;
}

.menu-modal-inner {
  display: flex;
  justify-content: stretch;
  overflow: auto;
  -ms-overflow-style: auto;
  width: 100%;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

button.close-nav-toggle {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 2rem 0;
  width: 100%;
}

button.close-nav-toggle svg {
  height: 1.6rem;
  width: 1.6rem;
}

button.close-nav-toggle .toggle-text {
  margin-right: 1.6rem;
}

.menu-modal .menu-top {
  flex-shrink: 0;
}

.menu-modal .menu-bottom ul {
  list-style: none;
  margin: 0;
}

/* Main Menu --------------------------------- */
.modal-menu {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
}
@media (min-width: 2400px) {
  .modal-menu {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}

.menu-bottom {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
}
@media (min-width: 2400px) {
  .menu-bottom {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}

.modal-menu li {
  border-color: rgba(255, 255, 255, 0.1);
  border-style: solid;
  border-width: 0.1rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  justify-content: flex-start;
  margin: 0;
}

.modal-menu > li:last-child {
  border-bottom-width: 0.1rem;
}

.modal-menu .ancestor-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.modal-menu a {
  display: block;
  padding: 2rem 2.5rem;
  text-decoration: none;
  width: 100%;
}

button.sub-menu-toggle {
  flex-shrink: 0;
  padding: 0 0.5rem;
  background: transparent;
}
button.sub-menu-toggle:before, button.sub-menu-toggle:after {
  display: none;
}
button.sub-menu-toggle svg {
  height: 0.5rem;
  transition: transform 0.15s linear;
  width: 0.5rem;
}
button.sub-menu-toggle svg polygon {
  fill: #fff;
}
button.sub-menu-toggle.active svg {
  transform: rotate(180deg);
}

ul.sub-menu li.menu-item-has-children button.sub-menu-toggle svg {
  transform: rotate(270deg);
}

.modal-menu ul {
  display: none;
  margin: 0;
  width: 100%;
}

.modal-menu ul li {
  border-left-width: 1rem;
}

.modal-menu ul li a {
  color: inherit;
  font-weight: 500;
}

/* Main menu animation ----------------------- */
.menu-wrapper .menu-item {
  position: relative;
}

.menu-wrapper .active {
  display: block;
}

.menu-wrapper.is-toggling {
  pointer-events: none;
}

.menu-wrapper.is-toggling .menu-item {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
}

.menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
  width: auto;
}

.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
  transition-duration: 250ms;
}

.menu-wrapper.is-animating .menu-item {
  transition-property: transform;
}

.menu-wrapper.is-toggling .toggling-target {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.menu-wrapper.is-toggling .toggling-target.active {
  opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target {
  display: block;
  transition-property: opacity;
  opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target.active {
  opacity: 1;
}

.menu-wrapper.is-toggling .modal-menu > li:last-child li {
  border-top-color: transparent;
  border-bottom-width: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .menu-wrapper.is-animating .menu-item,
  .menu-wrapper.is-animating .toggling-target {
    transition-duration: 1ms !important;
  }
}
/*--------------------------------------------------------------
### Secondary navigation
--------------------------------------------------------------*/
.secondary-navigation {
  padding: 1.5em 0;
}
@media (min-width: 768px) {
  .secondary-navigation {
    padding: 2em 0;
  }
}
.secondary-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 2400px) {
  .secondary-navigation ul {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
.secondary-navigation ul li {
  padding: 0.5em 1em;
}
.secondary-navigation ul li:last-child {
  padding-right: 0;
}
.secondary-navigation ul li a:not(:hover) {
  color: #fff;
}
.secondary-navigation .menu-secondary-menu-container + .multilanguage-switcher {
  margin-left: 1em;
  background: var(--secondary-color);
}
.secondary-navigation .menu-secondary-menu-container + .multilanguage-switcher li:last-child {
  padding-right: 1em;
}

/*--------------------------------------------------------------
### Header menu widget area
--------------------------------------------------------------*/
.header-menu-widget-area .gg-widget {
  padding: 3em 0 0 0;
  background: transparent;
}
.header-menu-widget-area .gg-widget a:not(.btn) {
  color: #fff;
}
.header-menu-widget-area .gg-widget a:not(.btn):hover {
  color: var(--primary-color);
}
.header-menu-widget-area .gg-widget ul li {
  border-color: rgba(255, 255, 255, 0.1);
}
.header-menu-widget-area .gg-widget ul li a {
  color: var(--primary-color);
}
.header-menu-widget-area .gg-widget ul.menu li {
  border: 0;
  padding: 0;
}
.header-menu-widget-area .gg-widget ul.menu li a {
  padding: 0;
}
.header-menu-widget-area .gg-widget ul.menu li a:not(:hover) {
  color: #999999;
}
.header-menu-widget-area .gg-widget.widget_lucia_btn_widget {
  padding-top: 3em;
}

/*--------------------------------------------------------------
# Nav links
--------------------------------------------------------------*/
.nav-links {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr;
  grid-template-areas: "previous next";
  padding-top: 5em;
}
.nav-links .meta-nav {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .nav-links .meta-nav {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.nav-links .post-title {
  font-family: var(--headings-font-family);
  font-size: 1.75rem;
  color: var(--headings-text-color);
}
.nav-links .nav-previous {
  grid-area: previous;
}
.nav-links .nav-next {
  grid-area: next;
  justify-self: end;
  text-align: right;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  text-align: center;
}
.pagination-wrapper.btn-group {
  padding: 2em 3em;
  background: #000;
}
.pagination-wrapper .nav-previous a,
.pagination-wrapper .nav-next a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: #fff;
}
@media (min-width: 2400px) {
  .pagination-wrapper .nav-previous a,
  .pagination-wrapper .nav-next a {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.pagination-wrapper .nav-previous a:hover,
.pagination-wrapper .nav-next a:hover {
  color: var(--primary-color);
}

ul.pagination,
ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  font-weight: bold;
  list-style: none;
  margin: 0;
}
@media (min-width: 2400px) {
  ul.pagination,
  ul.page-numbers {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
ul.pagination li a,
ul.pagination li span,
ul.page-numbers li a,
ul.page-numbers li span {
  padding: 0.5em 1em;
  color: #fff;
}
ul.pagination li a.current, ul.pagination li a:hover,
ul.pagination li span.current,
ul.pagination li span:hover,
ul.page-numbers li a.current,
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
ul.page-numbers li span:hover {
  color: var(--primary-color);
}
ul.pagination li a.next, ul.pagination li a.prev,
ul.page-numbers li a.next,
ul.page-numbers li a.prev {
  position: relative;
}
ul.pagination li a.next .next-arrow,
ul.pagination li a.next .prev-arrow, ul.pagination li a.prev .next-arrow,
ul.pagination li a.prev .prev-arrow,
ul.page-numbers li a.next .next-arrow,
ul.page-numbers li a.next .prev-arrow,
ul.page-numbers li a.prev .next-arrow,
ul.page-numbers li a.prev .prev-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background: url(assets/images/pagination-next-arrow.svg) 100%/auto 7px no-repeat;
  background-repeat: no-repeat;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
ul.pagination li a.next:hover .next-arrow,
ul.pagination li a.next:hover .prev-arrow, ul.pagination li a.prev:hover .next-arrow,
ul.pagination li a.prev:hover .prev-arrow,
ul.page-numbers li a.next:hover .next-arrow,
ul.page-numbers li a.next:hover .prev-arrow,
ul.page-numbers li a.prev:hover .next-arrow,
ul.page-numbers li a.prev:hover .prev-arrow {
  width: 45px;
}
ul.pagination li a.next .prev-arrow, ul.pagination li a.prev .prev-arrow,
ul.page-numbers li a.next .prev-arrow,
ul.page-numbers li a.prev .prev-arrow {
  background: url(assets/images/pagination-prev-arrow.svg) 100%/auto 7px no-repeat;
  background-position: 0;
  left: auto;
  right: 15px;
}

body.blog .pagination-wrapper {
  padding: 3em 0;
}

/*--------------------------------------------------------------
# Buttons and links
--------------------------------------------------------------*/
.btn,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 1.2em;
  color: #fff;
  border: 0;
  display: inline-block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
  z-index: 1;
  cursor: pointer;
  background: var(--body-background-color);
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .btn,
  .button,
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    padding: 1.5em 3em;
  }
}
@media (min-width: 2400px) {
  .btn,
  .button,
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
.btn:before, .btn:after,
.button:before,
.button:after,
button:before,
button:after,
input[type="button"]:before,
input[type="button"]:after,
input[type="reset"]:before,
input[type="reset"]:after,
input[type="submit"]:before,
input[type="submit"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--primary-color);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.btn:before,
.button:before,
button:before,
input[type="button"]:before,
input[type="reset"]:before,
input[type="submit"]:before {
  background: var(--body-background-color);
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  z-index: -2;
}
.btn:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: var(--modules-background-color);
}
.btn:hover:after,
.button:hover:after,
button:hover:after,
input[type="button"]:hover:after,
input[type="reset"]:hover:after,
input[type="submit"]:hover:after {
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}
.btn.btn-primary,
.button.btn-primary,
button.btn-primary,
input[type="button"].btn-primary,
input[type="reset"].btn-primary,
input[type="submit"].btn-primary {
  color: var(--modules-background-color);
}
.btn.btn-primary:before,
.button.btn-primary:before,
button.btn-primary:before,
input[type="button"].btn-primary:before,
input[type="reset"].btn-primary:before,
input[type="submit"].btn-primary:before {
  background: var(--primary-color);
}
.btn.btn-primary:after,
.button.btn-primary:after,
button.btn-primary:after,
input[type="button"].btn-primary:after,
input[type="reset"].btn-primary:after,
input[type="submit"].btn-primary:after {
  background: var(--body-background-color);
}
.btn.btn-primary:hover,
.button.btn-primary:hover,
button.btn-primary:hover,
input[type="button"].btn-primary:hover,
input[type="reset"].btn-primary:hover,
input[type="submit"].btn-primary:hover {
  color: #fff;
}
.btn.btn-primary.outline,
.button.btn-primary.outline,
button.btn-primary.outline,
input[type="button"].btn-primary.outline,
input[type="reset"].btn-primary.outline,
input[type="submit"].btn-primary.outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: all 0.25s;
}
.btn.btn-primary.outline:hover,
.button.btn-primary.outline:hover,
button.btn-primary.outline:hover,
input[type="button"].btn-primary.outline:hover,
input[type="reset"].btn-primary.outline:hover,
input[type="submit"].btn-primary.outline:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-secondary,
.button.btn-secondary,
button.btn-secondary,
input[type="button"].btn-secondary,
input[type="reset"].btn-secondary,
input[type="submit"].btn-secondary {
  color: #fff;
}
.btn.btn-secondary:before,
.button.btn-secondary:before,
button.btn-secondary:before,
input[type="button"].btn-secondary:before,
input[type="reset"].btn-secondary:before,
input[type="submit"].btn-secondary:before {
  background: #000;
}
.btn.btn-secondary:after,
.button.btn-secondary:after,
button.btn-secondary:after,
input[type="button"].btn-secondary:after,
input[type="reset"].btn-secondary:after,
input[type="submit"].btn-secondary:after {
  background: var(--body-background-color);
}
.btn.btn-secondary:hover,
.button.btn-secondary:hover,
button.btn-secondary:hover,
input[type="button"].btn-secondary:hover,
input[type="reset"].btn-secondary:hover,
input[type="submit"].btn-secondary:hover {
  color: var(--primary-color);
}

.gg-special-button-wrapper {
  position: relative;
}
.gg-special-button-wrapper.special-button-align-right {
  text-align: left;
}
@media (min-width: 768px) {
  .gg-special-button-wrapper.special-button-align-right {
    text-align: right;
  }
}
.gg-special-button-wrapper.special-button-align-center {
  text-align: center;
}
.gg-special-button-wrapper .btn {
  display: inline-block;
}

body .vc_general.vc_btn3 {
  font-size: 0.875rem;
}

body .vc_btn3.vc_btn3-style-custom {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1));
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.gg-widget {
  background: var(--modules-background-color);
  padding: 3em;
}
.gg-widget ul {
  list-style: none;
  margin: 0;
}
.gg-widget ul.children, .gg-widget ul.sub-menu {
  margin-left: 1em;
}
.gg-widget ul li {
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gg-widget ul li:last-child {
  border: 0;
  padding-bottom: 0;
}
.gg-widget ul.menu li a {
  padding-left: 0;
  padding-right: 0;
}
.gg-widget ul .post-date {
  display: block;
}
.gg-widget .widget-title {
  padding: 0;
  color: var(--headings-text-color);
  position: relative;
  margin-bottom: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .gg-widget .widget-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.gg-widget .widget-content {
  padding: 10%;
}
.gg-widget .textwidget p:last-child {
  margin-bottom: 0;
}
.gg-widget.widget_rss li {
  margin-bottom: 0.5em;
}
.gg-widget.widget_rss li .rss-date {
  display: block;
  font-style: italic;
}
.gg-widget.widget_search .search-form {
  margin-top: 2em;
  position: relative;
}
.gg-widget.widget_search .search-form input {
  width: 100%;
  background: var(--body-background-color);
}
.gg-widget.widget_search .search-form .search-submit {
  position: absolute;
  top: 1.9em;
  right: 1.9em;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--primary-color);
  padding: 0;
  margin: 0;
}
.gg-widget.widget_search .search-form .search-submit:after, .gg-widget.widget_search .search-form .search-submit:before {
  display: none;
}
@media (min-width: 2400px) {
  .gg-widget.widget_search .search-form .search-submit {
    top: 3.2em;
    right: 3.2em;
  }
}
.gg-widget table th,
.gg-widget table td {
  padding: 0.3em;
}
.gg-widget.widget_calendar table caption {
  margin-bottom: 1em;
}

.gg-widget select {
  max-width: 100%;
}

button.loading span,
input[type='button'].loading span,
input[type='reset'].loading span,
input[type='submit'].loading span,
.button.loading span,
.added_to_cart.loading span {
  display: none;
}
button.loading span.loader,
input[type='button'].loading span.loader,
input[type='reset'].loading span.loader,
input[type='submit'].loading span.loader,
.button.loading span.loader,
.added_to_cart.loading span.loader {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: 0;
  background-image: url(assets/images/add-to-cart-spinner.svg);
  background-size: contain;
  content: "";
  top: calc(50% - 7px);
  left: calc(50% - 7px);
  z-index: 3;
}

.single-product .pswp__button {
  background-color: transparent;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  text-indent: -999px;
  overflow: hidden;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f00e";
  display: block;
  line-height: 2;
  text-indent: 0;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  display: none !important;
}

.stock::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  margin-right: 0.5em;
}
.stock.in-stock::before {
  content: "\f118";
}
.stock.out-of-stock::before {
  content: "\f119";
}

a.reset_variations::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f021";
  margin-right: 0.5em;
}

.woocommerce-breadcrumb a:first-of-type::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f015";
  margin-right: 0.5em;
}

.widget_product_categories ul,
.widget_layered_nav ul,
.widget_layered_nav_filters ul {
  margin: 0;
}
.widget_product_categories ul li::before,
.widget_layered_nav ul li::before,
.widget_layered_nav_filters ul li::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  margin-right: 0.5em;
  display: block;
  float: left;
  opacity: 0.35;
  margin-left: -ms(3);
  width: 1em;
}

.widget_layered_nav li::before {
  content: "\f0c8";
}
.widget_layered_nav .chosen::before {
  content: "\f14a";
}

.widget_layered_nav_filters ul li.chosen::before {
  content: "\f00d";
  color: #ff0000;
  opacity: 1;
}

.woocommerce-shipping-calculator > p:first-child a::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f0d1";
}

.blockUI::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f110";
  animation: fa-spin 0.75s linear infinite;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
}

.woocommerce-pagination .next,
.woocommerce-pagination .prev {
  text-indent: -9999px;
  display: inline-block;
  position: relative;
}
.woocommerce-pagination .next::after,
.woocommerce-pagination .prev::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f0d9";
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
}
.woocommerce-pagination .next::after {
  content: "\f0da";
}

.woocommerce-breadcrumb .breadcrumb-separator {
  text-indent: -9999px;
  position: relative;
  display: inline-block;
  padding: 0 ms(9);
}
.woocommerce-breadcrumb .breadcrumb-separator::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f105";
  display: block;
  text-indent: 0;
  line-height: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  opacity: 0.25;
}

#payment .payment_methods > .woocommerce-PaymentMethod > label::before,
#payment .payment_methods > .wc_payment_method > label::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f111";
  margin-right: 0.5em;
  transition: color, ease, 0.2s;
}
#payment .payment_methods li.woocommerce-PaymentMethod > input[type=radio]:first-child, #payment .payment_methods li.wc_payment_method > input[type=radio]:first-child {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
#payment .payment_methods li.woocommerce-PaymentMethod > input[type=radio]:first-child:checked + label::before, #payment .payment_methods li.wc_payment_method > input[type=radio]:first-child:checked + label::before {
  color: var(--primary-color);
}

.woocommerce-password-strength::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f119";
  margin-left: 0.5em;
}
.woocommerce-password-strength.strong::after {
  content: "\f118";
}
.woocommerce-password-strength.good::after {
  content: "\f11a";
}

p.order-again .button::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f021";
  margin-left: 0.5em;
}

.woocommerce-MyAccount-downloads .button::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f381";
  margin-left: 0.5em;
}

.demo_store::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f05a";
  margin-right: 0.5em;
}

.woocommerce-Button--next::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f30b";
  margin-left: 0.5em;
  font-size: 1rem;
}

.woocommerce-Button--previous::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f30a";
  margin-right: 0.5em;
}

#reviews .commentlist li p.meta .verified {
  display: inline-block;
  height: 15px;
  width: 15px;
  position: relative;
  text-indent: -9999px;
}
#reviews .commentlist li p.meta .verified::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f058";
  color: #dcbe84;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  text-align: center;
}

/**
 * Composite Products
 */
.single-product div.product .component_selections .clear_component_options::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f021";
  margin-right: 0.5em;
}

ul.builtin-nav li a:last-child {
  padding-right: 0;
}
ul.builtin-nav li a::before {
  content: '';
  width: 20px;
  height: 18px;
  display: block;
}
ul.builtin-nav li a.top-header-cart:before {
  background: url(assets/images/bag-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
ul.builtin-nav li a.top-header-search:before {
  background: url(assets/images/search-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
ul.builtin-nav li a.top-header-myaccount:before {
  background: url(assets/images/my-account-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/*--------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Title and subtitle box
--------------------------------------------------------------*/
.title-subtitle-box .special-title {
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  font-weight: 500;
}
.title-subtitle-box .special-title span {
  display: block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  line-height: normal;
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 2400px) {
  .title-subtitle-box .special-title span {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .title-subtitle-box .special-title span {
    margin-bottom: 0.5em;
  }
}
.title-subtitle-box .special-title.h6 {
  line-height: normal;
}
.title-subtitle-box .special-title + .gg-horizontal-line {
  margin-top: 0.5em;
}
.title-subtitle-box .subtitle {
  font-family: var(--headings-font-family);
  font-size: var(--headings-5-font-size);
  display: block;
  line-height: normal;
  margin: 0 0 0.3em 0;
}
.title-subtitle-box h5.special-title,
.title-subtitle-box h6.special-title {
  line-height: normal;
}
.title-subtitle-box .box-description {
  margin-top: 1.5em;
}
.title-subtitle-box .box-description p:last-child {
  margin-bottom: 0;
}
.title-subtitle-box .gg-horizontal-line {
  position: relative;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  display: inline-block;
  margin: 2em 0 1.5em 0;
  transition: all .3s ease-out;
}
@media (min-width: 768px) {
  .title-subtitle-box .gg-horizontal-line {
    margin: 1em 0 1em 0;
  }
}
@media (min-width: 992px) {
  .title-subtitle-box .gg-horizontal-line {
    margin: 2.5em 0 2em 0;
  }
}
.title-subtitle-box .gg-horizontal-line + .box-description {
  margin-top: 0;
}
.title-subtitle-box .gg-special-button-wrapper {
  margin-top: 2.5em;
}
@media (min-width: 768px) {
  .title-subtitle-box .gg-special-button-wrapper {
    margin-top: 1.5em;
  }
}
@media (min-width: 992px) {
  .title-subtitle-box .gg-special-button-wrapper {
    margin-top: 3em;
  }
}
.title-subtitle-box .gg-special-button-wrapper.special-button-align-right {
  text-align: left;
}
@media (min-width: 768px) {
  .title-subtitle-box .gg-special-button-wrapper.special-button-align-right {
    text-align: right;
  }
}

/*--------------------------------------------------------------
## Quote
--------------------------------------------------------------*/
.gg-vc-quote {
  font-family: var(--headings-font-family);
  font-size: var(--headings-4-font-size);
  line-height: normal;
  position: relative;
  color: var(--headings-text-color);
  margin: 1em;
  border: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .gg-vc-quote {
    font-size: var(--headings-3-font-size);
  }
}
@media (min-width: 992px) {
  .gg-vc-quote {
    font-size: var(--headings-2-font-size);
    margin: 1.5em;
  }
}
.gg-vc-quote:before, .gg-vc-quote:after {
  content: '';
  position: absolute;
  top: 0em;
  left: -0.5em;
  color: var(--primary-color);
  z-index: 1;
  line-height: normal;
}
.gg-vc-quote:before {
  content: '\201C';
  bottom: auto;
}
.gg-vc-quote:after {
  content: '\201D';
  top: auto;
  bottom: 0;
  left: auto;
  padding-left: 0.2em;
}
.gg-vc-quote cite {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  font-style: normal;
  margin-top: 0;
  z-index: 2;
  position: absolute;
  color: var(--primary-color);
  left: 0;
  right: 0;
  bottom: -3em;
}
@media (min-width: 2400px) {
  .gg-vc-quote cite {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.gg-vc-quote.text-align-center:before, .gg-vc-quote.text-align-center:after {
  display: block;
  text-align: center;
  position: relative;
  padding: 0.5em 0 0 0;
}
.gg-vc-quote.text-align-center:before {
  left: auto;
}
.gg-vc-quote.font_size_normal {
  font-size: var(--headings-4-font-size);
}
@media (min-width: 992px) {
  .gg-vc-quote.font_size_normal {
    font-size: var(--headings-2-font-size);
  }
}
.gg-vc-quote.font_size_small {
  font-size: var(--headings-3-font-size);
}
.gg-vc-quote.remove_blockquotes:before, .gg-vc-quote.remove_blockquotes:after {
  display: none;
}

/*--------------------------------------------------------------
## Instagram
--------------------------------------------------------------*/
.vc_widget_instagram {
  position: relative;
}

.gg-instagram-widget .gg-instagram-meta {
  text-align: center;
  margin: 1.5em 0;
}
.gg-instagram-widget .instagram-pics {
  list-style: none;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  position: relative;
  z-index: 2;
}
.gg-instagram-widget .instagram-pics li {
  -webkit-flex: 1 auto;
  flex: 1 auto;
}
.gg-instagram-widget .instagram-pics li figure {
  margin: 0;
  overflow: hidden;
}
.gg-instagram-widget .instagram-pics li figure img {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .3s ease-out;
}
.gg-instagram-widget .instagram-pics li a:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
## Mailchimp
--------------------------------------------------------------*/
.gg-mailchimp-widget.align-center {
  text-align: center;
}
.gg-mailchimp-widget.align-right {
  text-align: right;
}
.gg-mailchimp-widget.style_1 form input[type="text"],
.gg-mailchimp-widget.style_1 form input[type="email"] {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 1.5em;
  text-align: center;
}
.gg-mailchimp-widget.style_1 form input[type="text"]::-webkit-input-placeholder, .gg-mailchimp-widget.style_1 form input[type="email"]::-webkit-input-placeholder {
  color: #666666;
}
.gg-mailchimp-widget.style_1 form input[type="text"]:-moz-placeholder, .gg-mailchimp-widget.style_1 form input[type="email"]:-moz-placeholder {
  color: #666666;
}
.gg-mailchimp-widget.style_1 form input[type="text"]::-moz-placeholder, .gg-mailchimp-widget.style_1 form input[type="email"]::-moz-placeholder {
  color: #666666;
}
.gg-mailchimp-widget.style_1 form input[type="text"]:-ms-input-placeholder, .gg-mailchimp-widget.style_1 form input[type="email"]:-ms-input-placeholder {
  color: #666666;
}
.gg-mailchimp-widget.style_1 form em {
  font-size: 1rem;
}

/*--------------------------------------------------------------
## Featured image box
--------------------------------------------------------------*/
.featured-image-box {
  position: relative;
}
.featured-image-box a.wrapper-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
}
.featured-image-box figure {
  margin: 0;
  position: relative;
}
.featured-image-box figure .image-wrapper {
  position: relative;
}
.featured-image-box figure img {
  position: relative;
  display: inline-block;
}
.featured-image-box figure figcaption {
  padding: 3em;
}
.featured-image-box figure figcaption h4 {
  font-size: var(--headings-3-font-size);
  line-height: normal;
  margin-bottom: 0.75em;
}
@media (min-width: 768px) {
  .featured-image-box figure figcaption h4 {
    font-size: var(--headings-2-font-size);
  }
}
@media (min-width: 992px) {
  .featured-image-box figure figcaption h4 {
    font-size: var(--headings-1-font-size);
    margin-bottom: 0.3em;
  }
}
.featured-image-box figure figcaption h4 .toptitle {
  display: block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  line-height: normal;
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 2400px) {
  .featured-image-box figure figcaption h4 .toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .featured-image-box figure figcaption h4 .toptitle {
    margin-bottom: 0.5em;
  }
}
.featured-image-box figure figcaption p {
  margin-bottom: 2em;
}
.featured-image-box.use_border_effect figure .image-wrapper {
  padding: 0;
}
.featured-image-box.use_border_effect figure .image-wrapper .border-effect {
  position: absolute;
  z-index: 1;
  left: 3em;
  top: 3em;
}
.featured-image-box.use_border_effect figure .image-wrapper .border-effect.top-border, .featured-image-box.use_border_effect figure .image-wrapper .border-effect.bottom-border {
  width: calc(100% - 6em);
  height: 2px;
  background: var(--primary-color);
}
.featured-image-box.use_border_effect figure .image-wrapper .border-effect.bottom-border {
  top: auto;
  bottom: 3em;
}
.featured-image-box.use_border_effect figure .image-wrapper .border-effect.left-border, .featured-image-box.use_border_effect figure .image-wrapper .border-effect.right-border {
  width: 2px;
  height: calc(100% - 6em);
  background: var(--primary-color);
}
.featured-image-box.use_border_effect figure .image-wrapper .border-effect.right-border {
  right: 3em;
  left: auto;
}
.featured-image-box.normal_box figure img {
  display: block;
  margin: 0 auto;
}
.featured-image-box.normal_box figcaption {
  padding: 0;
}
.featured-image-box.normal_box figcaption .inner-box {
  padding: 10%;
  background: var(--secondary-color);
}
.featured-image-box.normal_box figcaption .inner-box a.gg-special-link {
  margin-top: 1.4em;
  display: inline-block;
}
.featured-image-box.overlay_style_1 figure {
  overflow: hidden;
  background: var(--secondary-color);
}
.featured-image-box.overlay_style_1 figure img {
  display: block;
  min-height: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: transform 3s ease-out 0s;
}
.featured-image-box.overlay_style_1 figure figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.featured-image-box.overlay_style_1 figure figcaption:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.featured-image-box.overlay_style_1 figure figcaption h4 {
  z-index: 2;
}
.featured-image-box.overlay_style_1 figure figcaption h4 span {
  color: rgba(255, 255, 255, 0.6);
}
.featured-image-box.overlay_style_1 figure figcaption h4:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1.5px;
  background: var(--primary-color);
  display: block;
  left: calc(50% - 30px);
  margin-top: 0.5em;
}
.featured-image-box.overlay_style_1 figure figcaption p {
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  margin-top: 2.5em;
}
.featured-image-box.overlay_style_1 figure figcaption h4 {
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-image-box.overlay_style_1 figure figcaption .btn {
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  position: absolute;
  bottom: 0;
}
.featured-image-box.overlay_style_1 figure figcaption svg.featured-image-link-arrow {
  color: #dcbe84;
  opacity: 0;
  position: relative;
  z-index: 3;
  width: 30px;
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
}
.featured-image-box.overlay_style_1:hover figcaption h4 {
  transform: translateY(-40px);
}
.featured-image-box.overlay_style_1:hover figcaption p {
  transform: translateY(-40px);
}
.featured-image-box.overlay_style_1:hover figcaption .btn {
  opacity: 1;
  transform: translateY(-40px);
}
.featured-image-box.overlay_style_1:hover figcaption svg.featured-image-link-arrow {
  opacity: 1;
}
.featured-image-box.overlay_style_1:hover figcaption:after {
  opacity: 1;
  background: linear-gradient(225deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-image-box.overlay_style_1:hover img {
  transform: scale(1.1);
  transition: transform 3s ease-out 0s;
}

/*--------------------------------------------------------------
## Infobox
--------------------------------------------------------------*/
.gg-infobox {
  margin-bottom: 3em;
}
.gg-infobox .infobox-title {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .gg-infobox .infobox-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.gg-infobox .infobox-description p:last-child {
  margin: 0;
}
.gg-infobox .gg-horizontal-line {
  position: relative;
  width: 45px;
  height: 1.5px;
  background: var(--primary-color);
  display: inline-block;
  margin: 0.5em 0 1.2em 0;
  transition: all .3s ease-out;
}
.gg-infobox.use_horizontal_line.text-align-right {
  padding-left: 0;
  padding-right: 75px;
}
.gg-infobox.use_horizontal_line.text-align-right .infobox-title:before {
  left: auto;
  right: -75px;
}

/*--------------------------------------------------------------
## Counter
--------------------------------------------------------------*/
.counter-wrapper {
  margin-bottom: 1.5em;
}
@media (min-width: 992px) {
  .counter-wrapper {
    margin-bottom: 0;
  }
}
.counter-wrapper.text-align-center .vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left {
  text-align: center;
  margin-bottom: 0;
}
.counter-wrapper .counter-content .counter-number {
  color: #fff;
  font-size: 5em;
  line-height: normal;
  font-family: var(--headings-font-family);
  position: relative;
}
.counter-wrapper .counter-content .counter-number .number-suffix {
  display: inline-block;
  font-size: 1.4rem;
  position: absolute;
}
.counter-wrapper .counter-content .counter-title {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  display: block;
  margin-top: 1em;
}
@media (min-width: 2400px) {
  .counter-wrapper .counter-content .counter-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

/*--------------------------------------------------------------
## Featured icon
--------------------------------------------------------------*/
.featured-icon-wrapper .featured-image-icon {
  margin: 0 0 1.5em 0;
}
.featured-icon-wrapper .featured-icon-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: var(--primary-color);
}
@media (min-width: 2400px) {
  .featured-icon-wrapper .featured-icon-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.featured-icon-wrapper .featured-icon-subtitle {
  color: var(--secondary-color);
  font-family: var(--headings-font-family);
  font-size: var(--headings-3-font-size);
}
.featured-icon-wrapper .featured-icon-desc {
  margin-top: 0.5em;
}
.featured-icon-wrapper.style_2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5em;
}
.featured-icon-wrapper.style_2 .featured-icon-media-wrapper {
  align-self: flex-start;
}
.featured-icon-wrapper.style_2 .featured-icon-media-wrapper .featured-image-icon {
  margin: 0;
}
.featured-icon-wrapper.style_2 .featured-icon-content-wrapper {
  padding: 0 1.5em 0 1.5em;
}

/*--------------------------------------------------------------
## Horizontal list
--------------------------------------------------------------*/
.gg-horizontal-list .dl-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gg-horizontal-list .dl-flex dt {
  padding: 4px 0;
  flex: 0 0 35%;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .gg-horizontal-list .dl-flex dt {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .gg-horizontal-list .dl-flex dt {
    flex: 0 0 30%;
  }
}
.gg-horizontal-list .dl-flex dd {
  padding: 0 0 20px 0;
  margin: 0;
  flex: 65% 0 0;
  padding-left: 75px;
  max-width: 65%;
  position: relative;
}
@media (min-width: 768px) {
  .gg-horizontal-list .dl-flex dd {
    flex: 70% 0 0;
    max-width: 70%;
  }
}
.gg-horizontal-list .dl-flex dd + dd {
  margin-left: 35%;
}
@media (min-width: 768px) {
  .gg-horizontal-list .dl-flex dd + dd {
    margin-left: 30%;
  }
}
.gg-horizontal-list .dl-flex dd:before {
  content: '';
  position: absolute;
  top: 14px;
  width: 30px;
  height: 1px;
  background: var(--primary-color);
  left: 0;
}
.gg-horizontal-list .dl-flex dd:last-child {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
## Timeline carousel
--------------------------------------------------------------*/
.swiper-wrapper.timeline-carousel-wrapper img {
  display: block;
}

.timeline-contents {
  position: relative;
  transition: all .3s;
}
.timeline-contents .swiper-slide {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-img img {
  opacity: 1;
  transition-delay: .3s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > * {
  opacity: 1;
  transform: none;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(8) {
  transition-delay: 1s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.timeline-contents .swiper-slide.swiper-slide-active .timeline-slide-content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.timeline-contents .timeline-slide-img {
  overflow: hidden;
}
.timeline-contents .timeline-slide-img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all .3s;
}
.timeline-contents .timeline-slide-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--secondary-color);
  position: relative;
  padding: 10%;
  margin: 0;
}
@media (min-width: 768px) {
  .timeline-contents .timeline-slide-content {
    padding: 5% 10%;
    margin: 0 10%;
    margin-top: -8em;
  }
}
@media (min-width: 992px) {
  .timeline-contents .timeline-slide-content {
    padding: 5% 15%;
    margin: 0 15%;
    margin-top: -10em;
  }
}
.timeline-contents .timeline-slide-content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}
.timeline-contents .timeline-title {
  align-self: center;
  color: #999;
}
.timeline-contents .timeline-title span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: var(--primary-color);
  margin-bottom: 2em;
}
@media (min-width: 2400px) {
  .timeline-contents .timeline-title span {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 992px) {
  .timeline-contents .timeline-title span {
    margin-bottom: 3em;
  }
}
@media (min-width: 992px) {
  .timeline-contents .timeline-title {
    background: transparent;
  }
}
.timeline-contents .timeline-year {
  color: #fff;
  font-size: 2rem;
  font-family: var(--headings-font-family);
  text-align: left;
}
@media (min-width: 992px) {
  .timeline-contents .timeline-year {
    font-size: 3.75rem;
  }
}

.swiper-nav-container.timeline-button-container {
  position: absolute;
  width: calc(100% - 30px);
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.swiper-nav-container > div {
  cursor: pointer;
  outline: none;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-nav-container svg {
  height: 12px;
  width: 50px;
}
.swiper-nav-container svg path {
  fill: #fff;
}
.swiper-nav-container .swiper-nav-next {
  float: right;
}
.swiper-nav-container .swiper-nav-next:hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.swiper-nav-container .swiper-nav-next:hover svg path {
  fill: var(--primary-color);
}
.swiper-nav-container .swiper-nav-prev {
  float: left;
}
.swiper-nav-container .swiper-nav-prev:hover {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.swiper-nav-container .swiper-nav-prev:hover svg path {
  fill: var(--primary-color);
}

.timeline-pagination-container {
  display: block;
  text-align: center;
  padding: 2em 0 0 0;
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .timeline-pagination-container {
    border-bottom: 1px solid #000;
  }
}
.timeline-pagination-container .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: none;
  position: relative;
  outline: none;
  padding: 1em;
  color: #999;
}
@media (min-width: 992px) {
  .timeline-pagination-container .swiper-pagination-bullet {
    padding: 1em 2em;
  }
}
@media (min-width: 768px) {
  .timeline-pagination-container .swiper-pagination-bullet:after {
    content: '';
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    bottom: -40px;
    left: calc(50% - 8px);
    position: absolute;
    border: 5px solid #f1f1f1;
  }
}
.timeline-pagination-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #000;
}
@media (min-width: 768px) {
  .timeline-pagination-container .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: '';
    width: 19px;
    height: 19px;
    background: transparent;
    border-radius: 50%;
    bottom: -42px;
    left: calc(50% - 9px);
    position: absolute;
    border: 1px solid #000;
  }
}

/*--------------------------------------------------------------
## Timeline list
--------------------------------------------------------------*/
.timeline-list-wrapper {
  margin-bottom: 3em;
  text-align: center;
}
.timeline-list-wrapper img {
  display: block;
}
.timeline-list-wrapper .timeline-slide-img {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.timeline-list-wrapper .timeline-slide-img .year {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -40px;
  font-weight: bold;
  letter-spacing: -5px;
  font-size: 9rem;
  line-height: 9rem;
  color: #fff;
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 992px) {
  .timeline-list-wrapper .timeline-slide-img .year {
    bottom: -70px;
    letter-spacing: -10px;
    font-size: 18rem;
    line-height: 18rem;
  }
}
.timeline-list-wrapper .timeline-slide-img .title-over-image {
  position: absolute;
  top: 10%;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 70%;
  font-family: var(--headings-font-family);
  font-size: var(--headings-4-font-size);
  line-height: normal;
  color: #fff;
}
@media (min-width: 992px) {
  .timeline-list-wrapper .timeline-slide-img .title-over-image {
    top: 30%;
    font-size: var(--headings-1-font-size);
  }
}
.timeline-list-wrapper .timeline-slide-content {
  position: relative;
  background: var(--secondary-color);
  color: var(--text-color);
  text-align: center;
  padding: 3em;
}
.timeline-list-wrapper .timeline-slide-content .title,
.timeline-list-wrapper .timeline-slide-content .description {
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .timeline-list-wrapper .timeline-slide-content .title,
  .timeline-list-wrapper .timeline-slide-content .description {
    width: 50%;
  }
}
.timeline-list-wrapper .timeline-slide-content .title {
  color: #fff;
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
## Team member
--------------------------------------------------------------*/
.team-member-box figure img {
  display: block;
  opacity: .5;
  transition: all .3s ease-out;
}
.team-member-box figure figcaption {
  background: var(--secondary-color);
  padding: 10%;
}
.team-member-box figure figcaption h3 {
  font-size: var(--headings-3-font-size);
}
.team-member-box figure figcaption .member-position {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: var(--primary-color);
  margin-bottom: 0;
}
@media (min-width: 2400px) {
  .team-member-box figure figcaption .member-position {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.team-member-box figure figcaption .gg-horizontal-line {
  position: relative;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  display: inline-block;
  margin: 2em 0 0.5em 0;
}
.team-member-box figure figcaption .member-description {
  margin-top: 1.5em;
}
.team-member-box:hover img {
  opacity: 1;
  transition: all .3s ease-out;
}

/*--------------------------------------------------------------
## VC - Maps
--------------------------------------------------------------*/
body .wpb_gmaps_widget .wpb_wrapper {
  background-color: #f1f1f1;
  padding: 0;
}

/*--------------------------------------------------------------
## Lists
--------------------------------------------------------------*/
.gg_list {
  color: #fff;
}
.gg_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gg_list ul li {
  padding: 5px 0px;
}
.gg_list ul li:before {
  font-size: 12px;
  position: relative;
  top: -2px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f72f";
  margin-right: 15px;
}
.gg_list.list_border_bottom ul li {
  padding: 8px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gg_list.list_style_line li {
  padding-left: 60px;
}
.gg_list.list_style_none ul li:before {
  content: "";
  margin: 0;
}
.gg_list.list_style_remove ul li:before {
  content: "\f00d";
}
.gg_list.list_style_check ul li:before {
  content: "\f00c";
}
.gg_list.list_style_circle ul li:before {
  content: "\f192";
}
.gg_list.list_style_angle ul li:before {
  content: "\f105";
}
.gg_list.list_style_double-angle ul li:before {
  content: "\f101";
}
.gg_list.list_style_caret ul li:before {
  content: "\f0da";
}
.gg_list.list_style_heart ul li:before {
  content: "\f004";
}
.gg_list.list_style_bottle ul li:before {
  content: "\f72f";
}

/*--------------------------------------------------------------
## Toggles
--------------------------------------------------------------*/
.vc_toggle.vc_toggle_arrow .vc_toggle_title > h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .vc_toggle.vc_toggle_arrow .vc_toggle_title > h4 {
    font-size: 1.5rem;
  }
}
.vc_toggle .vc_toggle_content {
  color: #999;
}
.vc_toggle.vc_toggle_arrow .vc_toggle_icon {
  float: right;
}

.wpb_wrapper .vc_toggle.vc_toggle_arrow {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}
.wpb_wrapper .vc_toggle.vc_toggle_arrow:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wpb_wrapper .vc_toggle.vc_toggle_arrow.vc_toggle_active {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
## Product presentation container
--------------------------------------------------------------*/
.product-presentation {
  position: relative;
}

.product-presentation-container .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.product-presentation-container .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-content: stretch;
  -moz-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.product-presentation-container .swiper-slide .presentation-box {
  padding: 15%;
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .presentation-box {
    padding: 8%;
    width: 34%;
  }
}
.product-presentation-container .swiper-slide .presentation-box > * {
  opacity: 0;
  transform: translateX(25px);
  transition: all .4s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .product-pres-img img, .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .product-pres-img img {
  opacity: 1;
  transition-delay: .3s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *, .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > * {
  opacity: 1;
  transform: none;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(1), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(1) {
  transition-delay: 0.3s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(2), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(2) {
  transition-delay: 0.4s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(3), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(3) {
  transition-delay: 0.5s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(4), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(4) {
  transition-delay: 0.6s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(5), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(5) {
  transition-delay: 0.7s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(6), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(6) {
  transition-delay: 0.8s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(7), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(7) {
  transition-delay: 0.9s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(8), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(8) {
  transition-delay: 1s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(9), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(9) {
  transition-delay: 1.1s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(10), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(10) {
  transition-delay: 1.2s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(11), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(11) {
  transition-delay: 1.3s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(12), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(12) {
  transition-delay: 1.4s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(13), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(13) {
  transition-delay: 1.5s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(14), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(14) {
  transition-delay: 1.6s;
}
.product-presentation-container .swiper-slide.swiper-slide-active .presentation-box > *:nth-child(15), .product-presentation-container .swiper-slide.swiper-slide-duplicate-active .presentation-box > *:nth-child(15) {
  transition-delay: 1.7s;
}
.product-presentation-container .swiper-slide .product-pres-img {
  margin: 0;
  padding: 0;
  justify-content: center;
  width: 100%;
  position: relative;
  order: 1;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .product-pres-img {
    order: 2;
  }
}
.product-presentation-container .swiper-slide .product-pres-img span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.product-presentation-container .swiper-slide .product-pres-img img {
  margin: auto;
  visibility: hidden;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .product-pres-img {
    width: 50%;
  }
}
.product-presentation-container .swiper-slide .product-pres-data {
  order: 2;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .product-pres-data {
    order: 1;
  }
}
.product-presentation-container .swiper-slide .product-pres-data h4 {
  font-size: var(--headings-3-font-size);
  line-height: normal;
  margin-bottom: 0.75em;
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .product-pres-data h4 {
    font-size: var(--headings-2-font-size);
  }
}
@media (min-width: 992px) {
  .product-presentation-container .swiper-slide .product-pres-data h4 {
    font-size: var(--headings-1-font-size);
    margin-bottom: 0.5em;
  }
}
.product-presentation-container .swiper-slide .product-pres-data h4 .toptitle {
  display: block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  line-height: normal;
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 2400px) {
  .product-presentation-container .swiper-slide .product-pres-data h4 .toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .product-presentation-container .swiper-slide .product-pres-data h4 .toptitle {
    margin-bottom: 0.5em;
  }
}
.product-presentation-container .swiper-slide .product-pres-data .product-description {
  font-family: var(--headings-font-family);
  font-size: var(--headings-5-font-size);
  line-height: normal;
}
.product-presentation-container .swiper-slide .product-pres-data .gg-special-button-wrapper {
  margin-top: 3em;
}
.product-presentation-container .swiper-slide .product-pres-data .product-pdf-link {
  margin-top: 3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
}
@media (min-width: 2400px) {
  .product-presentation-container .swiper-slide .product-pres-data .product-pdf-link {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 992px) {
  .product-presentation-container .swiper-slide .product-pres-data .product-pdf-link {
    margin-top: 12em;
  }
}

.presentation-button-container {
  width: 180px;
  position: absolute;
  top: 3em;
  left: calc(10% - 1em);
  z-index: 999;
}
.presentation-button-container svg path {
  fill: #fff;
}
.presentation-button-container > div {
  padding: 1em;
}

.presentation-pagination-container {
  display: block;
  padding: 2em 0;
  width: 100%;
  position: absolute;
  left: -2em;
  top: 0;
  z-index: 9999;
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (min-width: 768px) {
  .presentation-pagination-container {
    left: -2.5em;
  }
}
@media (min-width: 992px) {
  .presentation-pagination-container {
    left: -4.5em;
  }
}
.presentation-pagination-container .swiper-pagination-bullet {
  background: transparent;
  border-radius: none;
  position: relative;
  outline: none;
  padding: 0.6em;
}
.presentation-pagination-container .swiper-pagination-bullet:after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  bottom: calc(50% - 3px);
  left: calc(50% - 3px);
  position: absolute;
}
.presentation-pagination-container .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  background: var(--primary-color);
}

/*--------------------------------------------------------------
## Club Box
--------------------------------------------------------------*/
.gg-clubbox .club-image img {
  display: block;
}
@media (min-width: 2400px) {
  .gg-clubbox .club-image img {
    width: 100%;
  }
}
.gg-clubbox .gg-clubbox-content {
  background: var(--secondary-color);
  padding: 10%;
}
.gg-clubbox .gg-clubbox-content .club-top-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: var(--primary-color);
  display: block;
}
@media (min-width: 2400px) {
  .gg-clubbox .gg-clubbox-content .club-top-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.gg-clubbox .gg-clubbox-content .club-title {
  margin-bottom: 1em;
  display: block;
  font-size: var(--headings-2-font-size);
  line-height: normal;
}
.gg-clubbox .gg-clubbox-content .club-price {
  font-family: var(--headings-font-family);
  color: var(--primary-color);
  font-size: var(--headings-3-font-size);
  line-height: normal;
}
.gg-clubbox .gg-clubbox-content .club-price .club-price-affix {
  font-size: var(--headings-6-font-size);
  display: block;
}
.gg-clubbox .gg-clubbox-content .club-description {
  margin-bottom: 2.5em;
  text-align: left;
}

/*--------------------------------------------------------------
## VC - Tabs
--------------------------------------------------------------*/
body.wpb-js-composer .vc_tta-container {
  margin: 0;
}

body.wpb-js-composer .vc_tta.vc_general .vc_tta-tab > a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  border: 0;
  min-width: 200px;
}
@media (min-width: 2400px) {
  body.wpb-js-composer .vc_tta.vc_general .vc_tta-tab > a {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 2400px) {
  body.wpb-js-composer .vc_tta.vc_general .vc_tta-tab > a {
    min-width: 300px;
  }
}

body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab > a {
  background: var(--secondary-color);
}

body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab > a:focus,
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab > a:hover,
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab.vc_active > a {
  background: var(--primary-color);
  color: var(--secondary-color);
}

body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab > a {
  padding: 25px 30px;
}
@media (min-width: 2400px) {
  body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-tab > a {
    padding: 40px 60px;
  }
}

body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vc_animating .vc_tta-panel-body {
  display: block;
  min-height: 0;
}

body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-body {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  padding: 0;
}

/*--------------------------------------------------------------
## Media Carousel
--------------------------------------------------------------*/
.gg-media-carousel .media-button-container {
  padding: 2em 0;
  max-width: 71em;
  margin: 0 auto;
  position: relative;
}
.gg-media-carousel .image-caption {
  padding: 1em;
  max-width: 71em;
  position: absolute;
  bottom: 3em;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--secondary-color);
}
.gg-media-carousel.use_navigation.use_pagination .swiper-pagination {
  bottom: 0.5em;
}

/*--------------------------------------------------------------
## Featured product presentation box
--------------------------------------------------------------*/
.featured-product-presentation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
@media (min-width: 768px) {
  .featured-product-presentation {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}
.featured-product-presentation .featured-back-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  position: relative;
  min-height: 500px;
}
@media (min-width: 768px) {
  .featured-product-presentation .featured-back-image {
    min-height: 300px;
  }
}
.featured-product-presentation .featured-back-image .featured-product-image {
  position: absolute;
  right: calc(50% - 100px);
  top: 10%;
  width: 200px;
  height: 80%;
  z-index: 2;
  background-size: contain !important;
}
@media (min-width: 768px) {
  .featured-product-presentation .featured-back-image .featured-product-image {
    width: 160px;
    right: calc(50% - 80px);
  }
}
@media (min-width: 992px) {
  .featured-product-presentation .featured-back-image .featured-product-image {
    width: 300px;
    right: calc(50% - 150px);
  }
}
.featured-product-presentation .featured-product {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  background: var(--secondary-color);
  padding: 8%;
  position: relative;
}
.featured-product-presentation .featured-product h4 {
  font-size: var(--headings-3-font-size);
  line-height: normal;
  margin-bottom: 0.75em;
}
@media (min-width: 768px) {
  .featured-product-presentation .featured-product h4 {
    font-size: var(--headings-2-font-size);
  }
}
@media (min-width: 992px) {
  .featured-product-presentation .featured-product h4 {
    font-size: var(--headings-1-font-size);
    margin-bottom: 0.5em;
  }
}
.featured-product-presentation .featured-product h4 .toptitle {
  display: block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  line-height: normal;
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 2400px) {
  .featured-product-presentation .featured-product h4 .toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .featured-product-presentation .featured-product h4 .toptitle {
    margin-bottom: 0.5em;
  }
}
.featured-product-presentation .featured-product .product-description {
  font-family: var(--headings-font-family);
  font-size: var(--headings-5-font-size);
  line-height: normal;
  margin-bottom: 1.5em;
}
.featured-product-presentation .featured-product .gg-horizontal-list {
  margin: 4em 0 4.5em 0;
}

/*--------------------------------------------------------------
## Video button link
--------------------------------------------------------------*/
.video-button-wrapper .video-circle-path {
  fill: var(--primary-color);
  fill-rule: evenodd;
  transition: all .4s;
}
.video-button-wrapper .video-circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1px;
  transition: all .4s;
}
.video-button-wrapper.secondary-color .video-circle-path {
  fill: var(--secondary-color);
}
.video-button-wrapper.secondary-color .video-circle {
  stroke: var(--secondary-color);
}
.video-button-wrapper.icon-size-large svg {
  width: 62px;
  height: 62px;
}
@media (min-width: 768px) {
  .video-button-wrapper.icon-size-large svg {
    width: 124px;
    height: 124px;
  }
}
.video-button-wrapper.icon-size-normal svg {
  width: 100px;
  height: 100px;
}
.video-button-wrapper.icon-size-small svg {
  width: 74px;
  height: 74px;
}
.video-button-wrapper a:hover .video-circle {
  stroke-width: 2px;
}

/*--------------------------------------------------------------
## Values grid
--------------------------------------------------------------*/
.values-grid-wrapper {
  background: var(--secondary-color);
  padding: 10%;
  position: relative;
  width: 100%;
}
.values-grid-wrapper .values-grid-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all .4s;
}
.values-grid-wrapper .values-grid-bg.bg-show {
  opacity: 1;
  transition: all .4s;
}
.values-grid-wrapper .values-grid-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (min-width: 992px) {
  .values-grid-wrapper .values-grid-content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
  }
}
.values-grid-wrapper .values-grid-content .col-1 {
  grid-area: 1 / 1 / 2 / 3;
}
@media (min-width: 992px) {
  .values-grid-wrapper .values-grid-content .col-1 {
    grid-area: 1 / 1 / 2 / 2;
  }
}
.values-grid-wrapper .values-grid-content .col-2 {
  grid-area: 2 / 1 / 3 / 3;
}
@media (min-width: 992px) {
  .values-grid-wrapper .values-grid-content .col-2 {
    grid-area: 1 / 2 / 2 / 3;
  }
}
.values-grid-wrapper .values-grid-content h3 {
  font-size: var(--headings-1-font-size);
}
.values-grid-wrapper .values-grid-content .gg-special-button-wrapper {
  margin-top: 2em;
}
.values-grid-wrapper .values-grid-content .subtitle {
  font-family: var(--headings-font-family);
  font-size: var(--headings-5-font-size);
  display: block;
  line-height: normal;
  margin: 0 0 0.3em 0;
  max-width: 400px;
}
@media (min-width: 1600px) {
  .values-grid-wrapper .values-grid-content .subtitle {
    max-width: 500px;
  }
}
@media (min-width: 2400px) {
  .values-grid-wrapper .values-grid-content .subtitle {
    max-width: 700px;
  }
}
.values-grid-wrapper .values-grid-content .values-grid-area {
  grid-area: 3 / 1 / 4 / 3;
}
@media (min-width: 992px) {
  .values-grid-wrapper .values-grid-content .values-grid-area {
    grid-area: 2 / 1 / 3 / 3;
  }
}
.values-grid-wrapper .values-grid-content .values-grid-area .values-grid {
  margin: 6em 0 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0em;
  grid-row-gap: 3em;
}
@media (min-width: 992px) {
  .values-grid-wrapper .values-grid-content .values-grid-area .values-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 3em;
  }
}
@media (min-width: 2400px) {
  .values-grid-wrapper .values-grid-content .values-grid-area .values-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 3em;
  }
}
.values-grid-wrapper .values-grid-content .values-grid-area .values-grid li {
  max-width: 400px;
  transition: all .4s;
}
@media (min-width: 1600px) {
  .values-grid-wrapper .values-grid-content .values-grid-area .values-grid li {
    max-width: 500px;
  }
}
@media (min-width: 2400px) {
  .values-grid-wrapper .values-grid-content .values-grid-area .values-grid li {
    max-width: 700px;
  }
}
.values-grid-wrapper .values-grid-content .values-grid-area .values-grid li h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  margin-bottom: 1em;
  transition: all .4s;
}
@media (min-width: 2400px) {
  .values-grid-wrapper .values-grid-content .values-grid-area .values-grid li h4 {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.values-grid-wrapper .values-grid-content .values-grid-area .values-grid li:hover {
  color: #fff;
  transition: all .4s;
}
.values-grid-wrapper .values-grid-content .values-grid-area .values-grid li:hover h4 {
  color: var(--primary-color);
  transition: all .4s;
}
.values-grid-wrapper .values-grid-content .values-grid-area.is-hovered .values-grid li {
  opacity: 0.3;
}
.values-grid-wrapper .values-grid-content .values-grid-area.is-hovered .values-grid li:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
## Accordion
--------------------------------------------------------------*/
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
  background-color: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: var(--secondary-color);
}

body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title > a {
  padding: 20px;
}
@media (min-width: 2400px) {
  body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title > a {
    padding: 40px;
  }
}

.wpb-js-composer .vc_tta {
  counter-reset: number;
}

.wpb-js-composer .vc_tta .vc_tta-panel .vc_tta-panel-heading .vc_tta-title-text:before {
  counter-increment: number;
  /* Increment the value of section counter by 1 */
  content: "0" counter(number) ".";
  color: var(--primary-color);
  margin-right: 0.5em;
}

.wpb-js-composer .vc_tta .vc_tta-panel-title {
  font-size: var(--headings-5-font-size);
  font-weight: 500;
}

body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after,
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-controls-icon::after,
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-flat .vc_tta-controls-icon::before {
  border-color: var(--primary-color);
}

.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
  padding: 14px 20px;
}
@media (min-width: 2400px) {
  .wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 36px 40px;
  }
}

/*--------------------------------------------------------------
## VC Row - Video
--------------------------------------------------------------*/
.vc_row.mkd-video {
  position: relative;
}
.vc_row.mkd-video .wpb_column {
  position: relative;
  z-index: 12;
}
.vc_row.mkd-video .mejs-offscreen {
  display: none;
}
.vc_row.mkd-video .mkd-mobile-video-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.vc_row.mkd-video .mkd-video-overlay {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
}
.vc_row.mkd-video .mkd-video-overlay.mkd-video-overlay-active {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.vc_row.mkd-video .mkd-video-wrap {
  top: 0px;
  left: 0px;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.vc_row.mkd-video .mkd-video-wrap .mejs-container .mejs-controls {
  display: none !important;
}
.vc_row.mkd-video .mkd-video-wrap .mejs-poster {
  background-size: cover !important;
  -moz-background-size: cover !important;
  -webkit-background-size: cover !important;
  -o-background-size: cover !important;
}
.vc_row.mkd-video .mkd-video-wrap .mejs-container {
  background-color: transparent !important;
  background-image: none !important;
  height: auto !important;
}
@media (min-width: 2400px) {
  .vc_row.mkd-video .mkd-video-wrap .mejs-container {
    width: 100% !important;
  }
}
.vc_row.mkd-video .mkd-video-wrap .mejs-mediaelement {
  background: none !important;
  border: 0px !important;
}
.vc_row.mkd-video .mkd-video-wrap .mejs-container .mejs-poster img {
  max-width: none !important;
  width: 100% !important;
}

/*--------------------------------------------------------------
## Image grid collage
--------------------------------------------------------------*/
.image-collage-wrapper .image-grid-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (min-width: 992px) {
  .image-collage-wrapper .image-grid-collage {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-1 {
  background: #4e4e4e;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-2 {
  background: #494949;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-3 {
  background: #3c3c3c;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-4 {
  background: #444444;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-5 {
  background: #494949;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-6 {
  background: #3c3c3c;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-7 {
  background: #494949;
}
.image-collage-wrapper .image-grid-collage .image-area.image-area-8 {
  background: #4e4e4e;
}
.image-collage-wrapper .image-grid-collage .image-area img {
  opacity: 0.1;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.image-collage-wrapper .image-grid-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-top: 3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (min-width: 768px) {
  .image-collage-wrapper .image-grid-content-wrapper {
    margin-top: 0;
    position: absolute;
  }
}
.image-collage-wrapper .image-grid-content-wrapper .image-grid-content {
  width: 90%;
  text-align: center;
  padding: 5%;
}
@media (min-width: 992px) {
  .image-collage-wrapper .image-grid-content-wrapper .image-grid-content {
    width: 60%;
  }
}
.image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 {
  font-size: var(--headings-3-font-size);
  line-height: normal;
  margin-bottom: 0.75em;
}
@media (min-width: 768px) {
  .image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 {
    font-size: var(--headings-2-font-size);
  }
}
@media (min-width: 992px) {
  .image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 {
    font-size: var(--headings-1-font-size);
  }
}
.image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 .toptitle {
  display: block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  line-height: normal;
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 2400px) {
  .image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 .toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .image-collage-wrapper .image-grid-content-wrapper .image-grid-content h4 .toptitle {
    margin-bottom: 0.5em;
  }
}
.image-collage-wrapper .image-grid-content-wrapper .image-grid-content .gg-horizontal-line {
  position: relative;
  width: 60px;
  height: 1.5px;
  background: var(--primary-color);
  display: inline-block;
  margin: 0 0 2em 0;
}
.image-collage-wrapper .image-grid-content-wrapper .image-grid-content .grid-description {
  font-family: var(--headings-font-family);
  font-size: var(--headings-5-font-size);
  line-height: normal;
}

/*--------------------------------------------------------------
## Special link
--------------------------------------------------------------*/
.gg-special-link {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  position: relative;
}
@media (min-width: 2400px) {
  .gg-special-link {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.gg-special-link.underline_effect {
  transition: all .3s ease-out;
  position: relative;
}
.gg-special-link.underline_effect:before, .gg-special-link.underline_effect:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0px;
  height: 1px;
  margin: 5px 0 0;
  transition: all .3s ease-out;
  opacity: 0;
  background-color: var(--primary-color);
}
.gg-special-link.underline_effect:hover:before, .gg-special-link.underline_effect:hover:after {
  width: 100%;
  opacity: 1;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0;
}
.hentry.post {
  margin: 0 0 3em 0;
}

body.single-post:not(.wpb-is-on) .hentry.post {
  margin: 0;
}
body.single-post:not(.wpb-is-on) .hentry.post .post-content-wrapper {
  background: var(--modules-background-color);
}
body.single-post:not(.wpb-is-on) .hentry.post .post-content-wrapper > .entry-content {
  padding: 8%;
}

body.page:not(.wpb-is-on):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) .hentry .entry-content:not(:empty) {
  background: var(--modules-background-color);
  padding: 8%;
  margin-bottom: 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 1.5em;
}
.page-links .page-links-title {
  padding-right: .5em;
}
.page-links .post-page-numbers > span,
.page-links .post-page-numbers a {
  padding: 0 .5em;
}

.post-password-form label {
  float: left;
}
.post-password-form input[type="submit"] {
  height: 59px;
}
@media (min-width: 2400px) {
  .post-password-form input[type="submit"] {
    height: 101px;
  }
}
.post-password-form input[type="password"] {
  border: 0;
  margin-right: 1px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content .search-form .search-field {
  float: left;
  border: 0;
  margin-right: 1px;
}
.entry-content .search-form .search-submit {
  height: 59px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
#respond .form-submit {
  margin-bottom: 0;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#post-navigation + #comments {
  margin-top: 5em;
}

#comments {
  margin-top: var(--layout-padding);
  background: var(--modules-background-color);
  padding: 8%;
  float: left;
  width: 100%;
}
#comments.comments-closed {
  padding: 0;
  background: transparent;
}
#comments .comments-title {
  margin: 0 0 1em 0;
  font-size: var(--headings-4-font-size);
  line-height: normal;
}
#comments #cancel-comment-reply-link {
  float: right;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  #comments #cancel-comment-reply-link {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
#comments .avatar-holder {
  float: left;
  width: 30px;
  margin-right: 15px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #comments .avatar-holder {
    width: 50px;
    margin-right: 30px;
  }
}
#comments .avatar-holder img {
  border-radius: 50%;
}
#comments .comments-body {
  float: left;
  width: calc(100% - 80px);
  position: relative;
}
#comments .comments-body .comment-author {
  font-size: var(--headings-6-font-size);
}
#comments .comments-body .comment-author cite {
  font-style: normal;
}
#comments .comments-body .comment-author a {
  color: #fff;
}
#comments .comments-body .meta {
  margin-bottom: 1em;
  font-size: 0.675rem;
}
@media (min-width: 2400px) {
  #comments .comments-body .meta {
    font-size: 1rem;
  }
}
#comments .comments-body .meta a {
  color: #999;
}
#comments .comments-body .reply {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 2400px) {
  #comments .comments-body .reply {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
#comments .comment-respond {
  float: left;
  width: 100%;
  padding-bottom: 3em;
  margin-bottom: 3em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#comments ul.media-list {
  list-style: none;
  margin: 0 0 1.5em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  float: left;
  width: 100%;
}
#comments ul.media-list ul.children {
  list-style: none;
}
#comments ul.media-list + .comment-respond {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
#comments ul.media-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  float: left;
  width: 100%;
  margin-bottom: 1.5em;
}
#comments ul.media-list > li:last-child {
  border: 0;
}
#comments ul.media-list li ul.children {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  float: left;
  width: 100%;
  margin-left: 0;
  padding-top: 1.5em;
  padding-left: 1.5em;
}
#comments ul.media-list li ul.children li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  float: left;
  width: 100%;
  margin-bottom: 1.5em;
}
#comments ul.media-list li ul.children li:last-child {
  border: 0;
  margin-bottom: 0;
}
#comments ul.media-list li:last-of-type + .comment-respond {
  margin-bottom: 0;
  border: 0;
}

/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  line-height: normal;
  padding: 0.2em 0;
  font-size: 0.75rem;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  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-caption {
  display: block;
}

/*--------------------------------------------------------------
## VC page content
--------------------------------------------------------------*/
/*
.wpb-js-composer {
    .vc_row {
        &:not(.vc_inner) {
            margin-bottom: $general-modules-margin-size;
        }
    }
}
*/
.wpb-js-composer .vc_col-has-fill > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
.wpb-js-composer .vc_section.vc_section-has-fill,
.wpb-js-composer .vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section,
.wpb-js-composer .vc_section.vc_section-has-fill + .vc_section {
  padding-top: 0;
}

/*--------------------------------------------------------------
## General page content
--------------------------------------------------------------*/
.gg_posts_grid ul.el-grid {
  list-style: none;
  margin: 0;
  --template-columns: 1;
  --template-rows: 1;
  --column-gap: 0em;
  --row-gap: 1.5em;
  grid-template-columns: 100%;
  display: grid;
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  grid-template-rows: repeat(var(--template-rows), 1fr);
  margin: 0;
}
@media (min-width: 768px) {
  .gg_posts_grid ul.el-grid {
    --column-gap: 1.5em;
    --row-gap: 1.5em;
  }
  .gg_posts_grid ul.el-grid[data-columns="2"], .gg_posts_grid ul.el-grid[data-columns="3"], .gg_posts_grid ul.el-grid[data-columns="4"] {
    --template-columns: 2;
    grid-template-columns: repeat(var(--template-columns), calc(50% - var(--column-gap)));
  }
}
@media (min-width: 992px) {
  .gg_posts_grid ul.el-grid {
    --column-gap: 3em;
    --row-gap: 3em;
  }
  .gg_posts_grid ul.el-grid[data-columns="3"] {
    --template-columns: 3;
    grid-template-columns: repeat(var(--template-columns), calc(33.3% - var(--column-gap)));
  }
  .gg_posts_grid ul.el-grid[data-columns="4"] {
    --template-columns: 4;
    grid-template-columns: repeat(var(--template-columns), calc(25% - var(--column-gap)));
  }
}
.gg_posts_grid ul.el-grid li {
  width: 100%;
}
.gg_posts_grid ul.el-grid li .hentry.post {
  margin: 0;
}
.gg_posts_grid ul.el-grid + .pagination-wrapper {
  padding-bottom: 0;
  padding-top: 6em;
}

.gg_products_grid .grid-title {
  font-size: var(--headings-1-font-size);
  text-align: center;
}
.gg_products_grid .gg_filter {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 6em 0;
}
@media (min-width: 768px) {
  .gg_products_grid .gg_filter {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.gg_products_grid .gg_filter li a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.714rem;
  margin-right: 1px;
  background: var(--secondary-color);
  padding: 1.5em 3em;
  cursor: pointer;
  color: #fff;
  display: block;
}
@media (min-width: 2400px) {
  .gg_products_grid .gg_filter li a {
    font-size: 0.857rem;
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) {
  .gg_products_grid .gg_filter li a {
    display: inline-block;
  }
}
.gg_products_grid .gg_filter li a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.gg_products_grid .gg_filter li.active a {
  background: var(--primary-color);
  color: var(--secondary-color);
}

article .entry-title {
  font-size: calc(var(--headings-4-font-size)*1.15);
}
article .entry-title a {
  color: var(--headings-text-color);
}
article .entry-title a:hover {
  color: var(--headings-text-color);
}

/*--------------------------------------------------------------
## General post content
--------------------------------------------------------------*/
.entry-header {
  margin: 0 0 1.5em 0;
}
.entry-header .entry-title {
  line-height: normal;
}

.entry-meta {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5em;
}
@media (min-width: 2400px) {
  .entry-meta {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

.single .entry-meta {
  margin-top: 3em;
  border: 0;
  padding: 0;
}

.entry-footer {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: #666666;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 2400px) {
  .entry-footer {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.entry-footer .tags-links {
  position: relative;
  display: block;
  margin-top: 0.5em;
}
.entry-footer .tags-links:before {
  content: "\f02b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5em;
}

.entry-meta-header {
  margin-bottom: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
  color: #666666;
}
@media (min-width: 2400px) {
  .entry-meta-header {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.entry-meta-header .cat-links {
  position: relative;
}

article.post .entry-footer {
  border-top: 1px solid var(--body-background-color);
  background: var(--modules-background-color);
  padding: 3.2em 8%;
}

.entry-read-more {
  padding-top: 0.5em;
}

.more-link-wrapper {
  margin-bottom: 0.3em;
}

.post-thumbnail {
  overflow: hidden;
}
.post-thumbnail img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  transform: scale(1);
  transition: transform 3s ease-out 0s;
}
.post-thumbnail img:hover {
  transform: scale(1.1);
  transition: transform 3s ease-out 0s;
}

.post-social {
  position: fixed;
  right: 15px;
  bottom: 100px;
  -webkit-transform: translate(60px, 0);
  transform: translate(60px, 0);
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
}
.post-social ul {
  list-style: none;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.post-social ul li a {
  padding: 0.5em;
  color: #999;
}
.post-social ul li a:hover {
  color: var(--primary-color);
}

.is-scrolled .post-social {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn-group.btn-group-justified {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (min-width: 768px) {
  .btn-group.btn-group-justified {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.btn-group.btn-group-justified .btn-group {
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 1em 0;
}
@media (min-width: 768px) {
  .btn-group.btn-group-justified .btn-group {
    padding: 0;
  }
}
.btn-group.btn-group-justified .btn-group:first-child > div {
  margin-right: auto;
}
.btn-group.btn-group-justified .btn-group:last-child > div {
  margin-left: auto;
}

body.single .site-subheader .page-meta .page-meta-wrapper {
  padding-bottom: 5em;
}
body.single .next-post-nav-img {
  position: relative;
  overflow: hidden;
  margin-top: 1px;
}
body.single .next-post-nav-img a {
  padding: var(--layout-padding) 8%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  word-break: break-word;
}
body.single .next-post-nav-img a span {
  display: block;
  line-height: normal;
  position: relative;
  z-index: 3;
}
body.single .next-post-nav-img a span.title {
  font-family: var(--headings-font-family);
  font-size: var(--headings-2-font-size);
  color: #fff;
}
body.single .next-post-nav-img a span.toptitle {
  margin: 0 0 0.3em 0;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  body.single .next-post-nav-img a span.toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
body.single .next-post-nav-img a span.post-nav-img {
  content: '';
  background-color: var(--secondary-color);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease-out 0s;
}
body.single .next-post-nav-img a:hover span.post-nav-img {
  transform: scale(1.05);
  transition: transform 0.3s ease-out 0s;
}
body.single .next-post-nav-img a:after {
  content: '';
  background: var(--secondary-color);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.8;
  z-index: 2;
}

/*--------------------------------------------------------------
## Blog layout
--------------------------------------------------------------*/
ul.el-grid li article.sticky {
  background: #000;
}
ul.el-grid li article.sticky .post-content-wrapper {
  background: transparent;
}
ul.el-grid li article .post-content-wrapper {
  background: var(--modules-background-color);
  padding: 10%;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
ul.el-grid li article.has_thumb .post-content-wrapper {
  position: relative;
}
ul.el-grid li.col-md-12 .entry-header .entry-title {
  line-height: normal;
}
ul.el-grid li.col-md-12 .entry-header .entry-meta {
  margin-bottom: 1em;
}
ul.el-grid li.col-md-4 .entry-header .entry-title {
  font-size: var(--headings-6-font-size);
}
@media (min-width: 992px) {
  ul.el-grid li.col-md-4 .entry-header .entry-title {
    font-size: 1.675rem;
  }
}
ul.el-grid li.col-md-4 .entry-header .entry-meta {
  margin-bottom: 1em;
}
ul.el-grid li.col-md-3 .entry-header .entry-title {
  font-size: 1.75rem;
}
ul.el-grid li.col-md-3 .entry-meta {
  font-size: 0.675rem;
}
@media (min-width: 2400px) {
  ul.el-grid li.col-md-3 .entry-meta {
    font-size: 1rem;
  }
}
ul.el-grid li.col-md-6 .entry-header .entry-title {
  font-size: 2.5rem;
}
ul.el-grid li.col-md-6 .entry-header .entry-meta {
  margin-bottom: 1em;
}
ul.el-grid li .inline-mode {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.1);
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
ul.el-grid li .inline-mode .post-thumbnail {
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
  margin: 3%;
}
ul.el-grid li .inline-mode .post-content-wrapper {
  -webkit-flex: 0 0 68%;
  flex: 0 0 68%;
  background: transparent;
  margin: 0;
  padding: 0 15% 0 10%;
}
ul.el-grid li .inline-mode .post-content-wrapper .entry-header {
  padding: 0;
  margin: 0;
}
ul.el-grid li .inline-mode .post-content-wrapper .entry-header .entry-title {
  font-size: 3rem;
}
ul.el-grid li .inline-mode .inline-mode-wrapper-link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
ul.el-grid li .inline-mode .inline-mode-wrapper-link:after {
  content: '';
  background: url(assets/images/slider-next-arrow.svg) right center no-repeat;
  display: block;
  width: 100px;
  height: 50px;
  position: absolute;
  right: 50px;
  bottom: calc(50% - 50px);
  opacity: 0;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
ul.el-grid li .inline-mode:hover {
  background: #fff;
}
ul.el-grid li .inline-mode:hover .post-thumbnail img {
  transform: scale(1.05);
}
ul.el-grid li .inline-mode:hover .inline-mode-wrapper-link:after {
  opacity: 1;
  bottom: calc(50% - 25px);
}

body.search-results .pagination-wrapper {
  margin-top: var(--layout-padding);
}

/* REVEAL EFFECT */
.reveal-effect {
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-effect > * {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
}

.reveal-effect:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(0.05, 0);
  transform: scale(0.05, 0);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.reveal-effect.masker:after {
  background-color: var(--primary-color);
}

.reveal-effect.animated {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.reveal-effect.animated * {
  -webkit-animation-name: show-img-1;
  animation-name: show-img-1;
}

.reveal-effect.animated:after {
  -webkit-animation-name: slide-bg-2;
  animation-name: slide-bg-2;
}

footer.site-footer {
  background: var(--header-footer-background-color);
  line-height: 1.8;
}
footer.site-footer a {
  color: var(--headings-text-color);
}
footer.site-footer a:hover {
  color: var(--primary-color);
}
footer.site-footer .gg-widget {
  padding: 0;
  background: transparent;
}
@media (min-width: 768px) {
  footer.site-footer .gg-widget {
    padding: 5em 0 0 0;
  }
}
footer.site-footer .gg-widget ul li {
  border-color: rgba(255, 255, 255, 0.1);
}
footer.site-footer .gg-widget ul li a {
  color: var(--primary-color);
}
footer.site-footer .gg-widget ul.menu li {
  border: 0;
  padding: 0;
}
footer.site-footer .gg-widget ul.menu li a {
  padding: 0;
  color: var(--text-color);
}
footer.site-footer .gg-widget ul.menu li a:hover {
  color: var(--primary-color);
}
footer.site-footer .gg-widget.widget_lucia_btn_widget {
  padding-top: 3em;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header.site-header .site-branding {
  padding: 1.5em 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
}
@media (min-width: 768px) {
  header.site-header .site-branding {
    padding: 2em 0;
  }
}
header.site-header .site-branding h1.logo {
  margin: 0;
  line-height: 1.8;
  font-size: var(--base-font-size);
}
header.site-header .site-branding h1.site-title {
  font-size: var(--headings-4-font-size);
}
header.site-header .site-branding h1.site-title a {
  color: #fff;
}
header.site-header .site-branding div.site-title {
  font-family: var(--headings-font-family);
  font-size: var(--headings-4-font-size);
  margin: 0.6em 0;
}
header.site-header .site-branding div.site-title a {
  color: #fff;
}
header.site-header .site-branding .site-description {
  margin-top: -1.5em;
  text-transform: none;
  letter-spacing: 0;
  color: #999;
}
@media (min-width: 768px) {
  header.site-header .site-branding .site-description {
    margin-top: -2em;
  }
}
header.site-header .subheader-slider {
  float: left;
  width: 100%;
}
header.site-header .header-searchform {
  position: relative;
  max-height: 0;
  overflow: hidden;
  top: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
header.site-header .header-searchform .header-searchform-wrapper {
  position: relative;
  padding: 0.5em 0;
}
header.site-header .header-searchform input {
  width: 100%;
  padding: 2em;
  font-size: var(--base-font-size);
  border: 0;
  background: transparent;
  font-family: var(--base-font-family);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}
header.site-header .header-searchform.toggled {
  max-height: 100vh;
  transition: max-height 0.5s ease-in-out;
  background: var(--secondary-color);
  color: #fff;
}
header.site-header .header-searchform button[type="submit"] {
  display: none;
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
}
header.site-header .header-searchform button[type="submit"] svg {
  width: 1.5em;
  height: .890625em;
}
header.site-header .header-searchform button[type="submit"] svg path {
  stroke: #000;
  stroke-width: 1px;
  fill: none;
}

body.regular-menu header.site-header .site-branding {
  text-align: left;
}

.site-subheader {
  position: relative;
  overflow: hidden;
}
.site-subheader .page-meta {
  background-color: var(--header-footer-background-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
}
.site-subheader .page-meta .page-meta-wrapper {
  text-align: center;
  padding: var(--layout-padding) 2.5em;
}
@media (min-width: 992px) {
  .site-subheader .page-meta .page-meta-wrapper {
    padding-left: var(--layout-padding);
    padding-right: var(--layout-padding);
  }
}
.site-subheader .page-meta .page-meta-wrapper .page-header-toptitle {
  margin: 0;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 0.857rem;
}
@media (min-width: 2400px) {
  .site-subheader .page-meta .page-meta-wrapper .page-header-toptitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.site-subheader .page-meta .page-meta-wrapper h1 {
  font-size: var(--headings-2-font-size);
  line-height: normal;
  margin: 0;
  position: relative;
  word-break: break-word;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 768px) {
  .site-subheader .page-meta .page-meta-wrapper h1 {
    font-size: var(--headings-1-font-size);
  }
}
@media (min-width: 992px) {
  .site-subheader .page-meta .page-meta-wrapper h1 {
    font-size: calc(var(--headings-1-font-size) * 1.5);
  }
}
.site-subheader .page-meta .page-meta-wrapper h1.has-separator:after {
  content: '';
  position: relative;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  display: block;
  margin: 0.8em auto;
  transition: all .3s ease-out;
}
.site-subheader .page-meta .page-meta-wrapper .header-page-description {
  margin-top: 1.5em;
  color: #fff;
}
@media (min-width: 992px) {
  .site-subheader .page-meta .page-meta-wrapper .header-page-description {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-subheader .page-meta .page-meta-wrapper .header-page-description p {
  margin: 0;
}
.site-subheader .page-header-image {
  text-align: center;
}
.site-subheader .page-header-image img {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
@media (min-width: 1200px) {
  .site-subheader .page-header-image img {
    width: 100%;
  }
}

body.single-product .site-subheader,
body.single-product .site-subheader .page-meta {
  height: auto;
}

.gg-page-subheader-style3 .site-subheader .page-meta {
  background: transparent;
}
.gg-page-subheader-style3 .site-subheader .page-meta .page-meta-wrapper {
  background: var(--body-background-color);
  position: relative;
  margin-top: -2em;
}
@media (min-width: 768px) {
  .gg-page-subheader-style3 .site-subheader .page-meta .page-meta-wrapper {
    margin-top: -10em;
  }
}

.gg-page-subheader-style4.gg-page-has-header-image .site-subheader .page-meta {
  background-size: cover;
  background-position: center;
}
.gg-page-subheader-style4.gg-page-has-header-image .site-subheader .page-meta .page-meta-wrapper h1 {
  font-weight: 600;
}
.gg-page-subheader-style4.gg-page-has-header-image.featured-image-is-fullwidth .site-subheader {
  padding: 0;
}
.gg-page-subheader-style4.gg-page-has-header-image.featured-image-is-fullwidth .site-subheader .page-meta {
  height: 100%;
}
.gg-page-subheader-style4.gg-page-has-header-image.featured-image-is-fullheight .site-subheader .page-meta {
  height: 100%;
}
.gg-page-subheader-style4.single-post .site-subheader .page-meta {
  position: relative;
}
.gg-page-subheader-style4.single-post .site-subheader .page-meta .page-meta-wrapper {
  position: relative;
  z-index: 2;
}
.gg-page-subheader-style4.single-post .site-subheader .page-meta:after {
  content: '';
  background: var(--secondary-color);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.6;
  z-index: 1;
  display: block;
}

.gg-page-header-left-align .page-meta .page-meta-wrapper {
  text-align: left;
}
.gg-page-header-left-align .page-meta .page-meta-wrapper h1 {
  margin-top: 1em;
}

.gg-page-header-right-align .page-meta .page-meta-wrapper {
  text-align: right;
}

[class^="col-md-"],
[class*=" col-md-"] {
  width: 100%;
}

header.site-header {
  padding: 0 var(--layout-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1auto 1auto;
  grid-template-areas: "main-nav sec-nav" "logo logo";
}
@media (min-width: 768px) {
  header.site-header {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "main-nav logo sec-nav";
  }
}
header.site-header .main-navigation-wrapper {
  grid-area: main-nav;
  align-self: center;
}
header.site-header .site-branding {
  grid-area: logo;
}
header.site-header .secondary-navigation {
  grid-area: sec-nav;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-self: end;
  align-self: center;
}

body.regular-menu header.site-header {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "logo main-nav sec-nav";
}
@media (min-width: 992px) {
  body.regular-menu header.site-header {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "logo main-nav sec-nav";
  }
}
body.regular-menu header.site-header .secondary-navigation {
  display: none;
}
@media (min-width: 992px) {
  body.regular-menu header.site-header .secondary-navigation {
    display: block;
  }
}

.site-subheader {
  padding: 0 var(--layout-padding);
}

.site-content {
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "content" "sidebar";
  grid-gap: 0;
  opacity: 0;
  padding: var(--layout-padding);
}
@media (min-width: 992px) {
  .site-content {
    grid-template-columns: calc(75% - 3em) 25%;
    grid-template-areas: "content sidebar";
    grid-gap: 3em;
  }
}
.site-content .page-content {
  grid-area: content;
}
.site-content .sidebar-nav {
  grid-area: sidebar;
}

body.no-active-sidebar-page .site-content,
body.no-active-sidebar-post .site-content,
body.no-active-sidebar-search .site-content,
body.no_sidebar .site-content {
  grid-template-columns: 100%;
  grid-template-areas: "content";
  grid-gap: 0;
}

@media (min-width: 992px) {
  body.with_left_sidebar .site-content {
    grid-template-columns: 25% calc(75% - 3em);
    grid-template-areas: "sidebar content";
  }
}

body.single-product .site-content,
body.wpb-is-on .site-content {
  padding-top: 0;
  padding-bottom: 0;
}
body.single-product .vc_row:not(.vc_inner),
body.wpb-is-on .vc_row:not(.vc_inner) {
  margin: var(--layout-padding) 0;
}
body.single-product .vc_row:not(.vc_inner).vc_column-gap-30,
body.wpb-is-on .vc_row:not(.vc_inner).vc_column-gap-30 {
  margin-left: -30px;
  margin-right: -30px;
}
body.single-product .vc_row:not(.vc_inner).vc_column-gap-15,
body.wpb-is-on .vc_row:not(.vc_inner).vc_column-gap-15 {
  margin-left: -15px;
  margin-right: -15px;
}
body.single-product .vc_row:not(.vc_inner).vc_column-gap-15 > .vc_column_container,
body.wpb-is-on .vc_row:not(.vc_inner).vc_column-gap-15 > .vc_column_container {
  padding: 0;
}
body.single-product .vc_row.vc_grid,
body.wpb-is-on .vc_row.vc_grid {
  margin: 0;
}
body.single-product .vc_row.vc_row-o-full-height,
body.wpb-is-on .vc_row.vc_row-o-full-height {
  min-height: calc(100vh - var(--layout-padding));
}

body.no-active-sidebar-post .site-content {
  display: grid;
  grid-template-columns: 100%;
}

body.post-type-archive .products + .pagination-wrapper {
  margin-top: var(--layout-padding);
}

footer.site-footer {
  padding: 5em 3em 0 3em;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "footer-widgets" "footer-credit";
}
@media (min-width: 768px) {
  footer.site-footer {
    padding: 0 var(--layout-padding);
  }
}
footer.site-footer .footer-widgets {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(4fr);
  grid-template-areas: "first-widget-area" "second-widget-area" "third-widget-area" "fourth-widget-area";
  grid-area: footer-widgets;
  grid-gap: 3em;
}
@media (min-width: 768px) {
  footer.site-footer .footer-widgets {
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "first-widget-area second-widget-area" "third-widget-area fourth-widget-area";
  }
}
@media (min-width: 992px) {
  footer.site-footer .footer-widgets {
    grid-template-columns: 40fr repeat(3, 20%);
    grid-template-rows: 1fr;
    grid-template-areas: "first-widget-area second-widget-area third-widget-area fourth-widget-area";
  }
}
footer.site-footer .footer-widgets.no_active_widgets {
  grid-gap: 0;
}
footer.site-footer .footer-widget-area-1 {
  grid-area: first-widget-area;
}
footer.site-footer .footer-widget-area-2 {
  grid-area: second-widget-area;
}
footer.site-footer .footer-widget-area-3 {
  grid-area: third-widget-area;
}
footer.site-footer .footer-widget-area-4 {
  grid-area: fourth-widget-area;
}
footer.site-footer .footer-credit {
  grid-area: footer-credit;
  padding: 0 0 5em 0;
}
@media (min-width: 768px) {
  footer.site-footer .footer-credit {
    padding: 5em 0;
  }
}

@media (min-width: 768px) {
  .el-grid.products .isotope-item {
    margin: 1.5em;
  }
  .el-grid.products.has-1-columns .isotope-item {
    width: 100%;
  }
  .el-grid.products.has-2-columns .isotope-item {
    width: calc(50% - 3em);
  }
  .el-grid.products.has-3-columns .isotope-item {
    width: calc(33.33% - 3em);
  }
  .el-grid.products.has-4-columns .isotope-item {
    width: calc(25% - 3em);
  }
  .el-grid.products.has-5-columns .isotope-item {
    width: calc(20% - 3em);
  }
  .el-grid.products.has-6-columns .isotope-item {
    width: calc(16.66% - 3em);
  }
}
/*--------------------------------------------------------------
# Not found page
--------------------------------------------------------------*/
.not_found_wrapper {
  text-align: center;
}
.not_found_wrapper .not_found_box {
  width: 50%;
  border: 2px solid var(--primary-color);
  background: var(--modules-background-color);
  margin: 0 auto;
  padding: 10%;
}

/*--------------------------------------------------------------
# Not found search
--------------------------------------------------------------*/
.no-results.not-found {
  width: 50%;
  border: 2px solid var(--primary-color);
  background: var(--modules-background-color);
  margin: 0 auto;
  padding: 10%;
}
.no-results.not-found .search-form .search-field {
  border: 0;
  margin-right: 1px;
}

