@charset "UTF-8";

/*

*/

/*---------------------------------------------------------------------*\
    #TABLE OF CONTENTS
\*---------------------------------------------------------------------*/

/**
 * SETTINGS
 * 00-settings...................Declarations of Sass variables.
 * ...settings.default...........iscss’ default settings.
 * ...settings.colors............Manage our color palette in isolation.
 * ...settings.fonts.............Manage our fonts settings in isolation.
 *
 * TOOLS
 * 05-tools......................Mixins and other tools.
 * ...mixin.scope................Declaration of Sass scope.
 * ...mixin.fonts................iscss’ default font mixins.
 * ...tools.icons................iscss’ default icons mixins.
 * ...tools.z-index..............iscss’ default z-index mixins.
 *
 * GENERIC
 * 08-generic....................Mixins and other tools.
 * ...generic.normalize..........A level playing field.
 * ...generic.reset..............A pared back reset to remove margins.
 * ..,generic.box-sizing.........Better default `box-sizing`.
 * ...generic.shared.............Sensibly and tersely share global commonalities.
 * ...generic.clearfix...........I can’t believe we still need this in 2014.
 *
 * BASE
 * 10-base.......................Sass base
 * ...base.page..................HTML and body class
 * ...base.images................Setup all images
 *
 * VENDOR
 * 20-vendor.....................Vendors Sass classes
 *
 * GLOBAL
 * 30-global.....................Global Sass classes
 * ...demo.bootstrap.............Demo for bootstrap vendor
 *
 * ATOMIC PATTERN
 * 50-atoms......................Atoms classes
 * 60-molecules..................Molecules classes
 * 70-organisms..................Organisms classes
 * 80-templates..................Templates classes
 * 90-pages......................Pages classes
 *
 * TOC To Be Continued
 */

/*------------------------------------*\
    #00-settings SETTINGS
\*------------------------------------*/

/*---------------------------------------------------*\
    #00-settings Colors
\*---------------------------------------------------*/

/*---------------------------------------------------*\
    #00-settings Default
\*---------------------------------------------------*/

/*---------------------------------------------------*\
    #00-settings Fonts
\*---------------------------------------------------*/

@font-face {
  font-family: 'Helvetica Neue Medium';
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-medium.eot);
  /* IE9 Compat Modes */
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-medium.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-medium.woff2) format("woff2"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-medium.woff) format("woff"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-medium.ttf) format("truetype");
}

@font-face {
  font-family: 'Helvetica Neue Bold';
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-bold.eot);
  /* IE9 Compat Modes */
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-bold.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-bold.woff2) format("woff2"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-bold.woff) format("woff"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-bold.ttf) format("truetype");
}

@font-face {
  font-family: 'Helvetica Neue Thin';
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-thin.eot);
  /* IE9 Compat Modes */
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-thin.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-thin.woff2) format("woff2"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-thin.woff) format("woff"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-thin.ttf) format("truetype");
}

@font-face {
  font-family: 'Helvetica Neue Light';
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-light.eot);
  /* IE9 Compat Modes */
  src: url(/wp-content/themes/samba/dist/fonts/helvetica-neue-light.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-light.woff2) format("woff2"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-light.woff) format("woff"), url(/wp-content/themes/samba/dist/fonts/helvetica-neue-light.ttf) format("truetype");
}

@font-face {
  font-family: 'LuloCleanOne';
  src: url(/wp-content/themes/samba/dist/fonts/LuloCleanOne.otf) format("opentype");
}

@font-face {
  font-family: 'FontAwesome';
  src: url(/wp-content/themes/samba/dist/fonts/fontawesome-webfont.eot);
  /* IE9 Compat Modes */
  src: url(/wp-content/themes/samba/dist/fonts/fontawesome-webfont.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/fontawesome-webfont.woff2) format("woff2"), url(/wp-content/themes/samba/dist/fonts/fontawesome-webfont.woff) format("woff"), url(/wp-content/themes/samba/dist/fonts/fontawesome-webfont.ttf) format("truetype");
}

/*------------------------------------*\
    #00-settings Config
\*------------------------------------*/

/*------------------------------------*\
    Spacing
\*------------------------------------*/

/*------------------------------------*\
    #05-tools TOOLS
\*------------------------------------*/

/*------------------------------------*\
    #05-tools Math
\*------------------------------------*/

/* ------------------------------------- *\
    #05-tools Scope
\* ------------------------------------- */

/* Wrap all styles in project global class.
 * Leave empty to output styles directly
 * (apply to all html)
 */

/*------------------------------------*\
    #05-tools Fonts
\*------------------------------------*/

/*------------------------------------*\
    #05-tools Z-Index
\*------------------------------------*/

/* @import "05-tools/tools.icons";*/

/* ------------------------------------- *\
    #05-tools Spacing
\* ------------------------------------- */

/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */

/**
     * Margin helper classes.
     *
     * Add margins.
     */

.u-m {
  margin: 24px !important;
}

.u-mt {
  margin-top: 24px !important;
}

.u-mr {
  margin-right: 24px !important;
}

.u-mb {
  margin-bottom: 24px !important;
}

.u-ml {
  margin-left: 24px !important;
}

.u-mh {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.u-mv {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/**
     * Add tiny margins.
     */

.u-m-- {
  margin: 6px !important;
}

.u-mt-- {
  margin-top: 6px !important;
}

.u-mr-- {
  margin-right: 6px !important;
}

.u-mb-- {
  margin-bottom: 6px !important;
}

.u-ml-- {
  margin-left: 6px !important;
}

.u-mh-- {
  margin-right: 6px !important;
  margin-left: 6px !important;
}

.u-mv-- {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/**
     * Add small margins.
     */

.u-m- {
  margin: 12px !important;
}

.u-mt- {
  margin-top: 12px !important;
}

.u-mr- {
  margin-right: 12px !important;
}

.u-mb- {
  margin-bottom: 12px !important;
}

.u-ml- {
  margin-left: 12px !important;
}

.u-mh- {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.u-mv- {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/**
     * Add large margins.
     */

.u-m\+ {
  margin: 48px !important;
}

.u-mt\+ {
  margin-top: 48px !important;
}

.u-mr\+ {
  margin-right: 48px !important;
}

.u-mb\+ {
  margin-bottom: 48px !important;
}

.u-ml\+ {
  margin-left: 48px !important;
}

.u-mh\+ {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

.u-mv\+ {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

/**
     * Add huge margins.
     */

.u-m\+\+ {
  margin: 96px !important;
}

.u-mt\+\+ {
  margin-top: 96px !important;
}

.u-mr\+\+ {
  margin-right: 96px !important;
}

.u-mb\+\+ {
  margin-bottom: 96px !important;
}

.u-ml\+\+ {
  margin-left: 96px !important;
}

.u-mh\+\+ {
  margin-right: 96px !important;
  margin-left: 96px !important;
}

.u-mv\+\+ {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/**
     * Remove margins.
     */

.u-m0 {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-mh0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.u-mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/**
     * Negative margins.
     */

.u--m {
  margin: -24px !important;
}

.u--mt {
  margin-top: -24px !important;
}

.u--mr {
  margin-right: -24px !important;
}

.u--mb {
  margin-bottom: -24px !important;
}

.u--ml {
  margin-left: -24px !important;
}

.u--mh {
  margin-right: -24px !important;
  margin-left: -24px !important;
}

.u--mv {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

/**
     * Tiny negative margins.
     */

.u--m-- {
  margin: -6px !important;
}

.u--mt-- {
  margin-top: -6px !important;
}

.u--mr-- {
  margin-right: -6px !important;
}

.u--mb-- {
  margin-bottom: -6px !important;
}

.u--ml-- {
  margin-left: -6px !important;
}

.u--mh-- {
  margin-right: -6px !important;
  margin-left: -6px !important;
}

.u--mv-- {
  margin-top: -6px !important;
  margin-bottom: -96px !important;
}

/**
     * Small negative margins.
     */

.u--m- {
  margin: -12px !important;
}

.u--mt- {
  margin-top: -12px !important;
}

.u--mr- {
  margin-right: -12px !important;
}

.u--mb- {
  margin-bottom: -12px !important;
}

.u--ml- {
  margin-left: -12px !important;
}

.u--mh- {
  margin-right: -12px !important;
  margin-left: -12px !important;
}

.u--mv- {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

/**
     * Large negative margins.
     */

.u--m\+ {
  margin: -48px !important;
}

.u--mt\+ {
  margin-top: -48px !important;
}

.u--mr\+ {
  margin-right: -48px !important;
}

.u--mb\+ {
  margin-bottom: -48px !important;
}

.u--ml\+ {
  margin-left: -48px !important;
}

.u--mh\+ {
  margin-right: -48px !important;
  margin-left: -48px !important;
}

.u--mv\+ {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

/**
     * Huge negative margins.
     */

.u--m\+\+ {
  margin: -96px !important;
}

.u--mt\+\+ {
  margin-top: -96px !important;
}

.u--mr\+\+ {
  margin-right: -96px !important;
}

.u--mb\+\+ {
  margin-bottom: -96px !important;
}

.u--ml\+\+ {
  margin-left: -96px !important;
}

.u--mh\+\+ {
  margin-right: -96px !important;
  margin-left: -96px !important;
}

.u--mv\+\+ {
  margin-top: -96px !important;
  margin-bottom: -96px !important;
}

/**
     * Padding helper classes.
     *
     * Add paddings.
     */

.u-p {
  padding: 24px !important;
}

.u-pt {
  padding-top: 24px !important;
}

.u-pr {
  padding-right: 24px !important;
}

.u-pb {
  padding-bottom: 24px !important;
}

.u-pl {
  padding-left: 24px !important;
}

.u-ph {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.u-pv {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/**
     * Add tiny paddings.
     */

.u-p-- {
  padding: 6px !important;
}

.u-pt-- {
  padding-top: 6px !important;
}

.u-pr-- {
  padding-right: 6px !important;
}

.u-pb-- {
  padding-bottom: 6px !important;
}

.u-pl-- {
  padding-left: 6px !important;
}

.u-ph-- {
  padding-right: 6px !important;
  padding-left: 6px !important;
}

.u-pv-- {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/**
     * Add small paddings.
     */

.u-p- {
  padding: 12px !important;
}

.u-pt- {
  padding-top: 12px !important;
}

.u-pr- {
  padding-right: 12px !important;
}

.u-pb- {
  padding-bottom: 12px !important;
}

.u-pl- {
  padding-left: 12px !important;
}

.u-ph- {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.u-pv- {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/**
     * Add large paddings.
     */

.u-p\+ {
  padding: 48px !important;
}

.u-pt\+ {
  padding-top: 48px !important;
}

.u-pr\+ {
  padding-right: 48px !important;
}

.u-pb\+ {
  padding-bottom: 48px !important;
}

.u-pl\+ {
  padding-left: 48px !important;
}

.u-ph\+ {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

.u-pv\+ {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/**
     * Add huge paddings.
     */

.u-p\+\+ {
  padding: 96px !important;
}

.u-pt\+\+ {
  padding-top: 96px !important;
}

.u-pr\+\+ {
  padding-right: 96px !important;
}

.u-pb\+\+ {
  padding-bottom: 96px !important;
}

.u-pl\+\+ {
  padding-left: 96px !important;
}

.u-ph\+\+ {
  padding-right: 96px !important;
  padding-left: 96px !important;
}

.u-pv\+\+ {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/**
     * Remove paddings.
     */

.u-p0 {
  padding: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-ph0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.u-pv0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/*------------------------------------*\
    #02-vendor VENDOR
\*------------------------------------*/

/*------------------------------------*\
    #20-vendor Fonts
\*------------------------------------*/

@font-face {
  font-family: Larsseit;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  src: url(/wp-content/themes/samba/dist/fonts/Larsseit.otf) format("opentype");
}

@font-face {
  font-family: Larsseit;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  src: url(/wp-content/themes/samba/dist/fonts/Larsseit-Bold.otf) format("opentype");
}

@font-face {
  font-family: Larsseit;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  src: url(/wp-content/themes/samba/dist/fonts/Larsseit-Light.otf) format("opentype");
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: 'FontAwesome';
  src: url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_674f50d2.eot);
  src: url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_674f50d2.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_af7ae505.woff2) format("woff2"), url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_fee66e71.woff) format("woff"), url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_b06871f2.ttf) format("truetype"), url(/wp-content/themes/samba/dist/vendor/fontawesome-webfont_912ec66d.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

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

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

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  -o-animation: fa-spin 2s infinite linear;
     animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  -o-animation: fa-spin 1s infinite steps(8);
     animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-o-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
     transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
     transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -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 {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.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-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@font-face {
  font-family: 'samba';
  src: url(/wp-content/themes/samba/dist/fonts/icomoon.eot);
  src: url(/wp-content/themes/samba/dist/fonts/icomoon.eot) format("embedded-opentype"), url(/wp-content/themes/samba/dist/fonts/icomoon.ttf) format("truetype"), url(data:application/font-woff;base64,d09GRgABAAAAAASYAAsAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIEZWNtYXAAAAFoAAAAVAAAAFQXVtKHZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAJAAAACQDicUk2hlYWQAAAJUAAAANgAAADYKg9q+aGhlYQAAAowAAAAkAAAAJAYqA8ZobXR4AAACsAAAABQAAAAUCHUABGxvY2EAAALEAAAADAAAAAwAKABcbWF4cAAAAtAAAAAgAAAAIAAHABduYW1lAAAC8AAAAYYAAAGGmUoJ+3Bvc3QAAAR4AAAAIAAAACAAAwAAAAMCOwGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkA//3//wAAAAAAIOkA//3//wAB/+MXBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAE/8MCaAPAABQAABMxIgYXCQEOARcWMjcBNjQnAS4BBw0KBQcCRf27BAEEAwwEAlEEBP2vAgYCA8ASBv4Y/hgECwQFAwHzBAwEAfMCAgEAAAAAAQAAAAAAAG/Ydd1fDzz1AAsEAAAAAADUfssfAAAAANR+yx8AAP/DAmgDwAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAACaAABAAAAAAAAAAAAAAAAAAAABQQAAAAAAAAAAAAAAAIAAAACdQAEAAAAAAAKABQAHgBIAAEAAAAFABUAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAHAAAAAQAAAAAAAgAHAGAAAQAAAAAAAwAHADYAAQAAAAAABAAHAHUAAQAAAAAABQALABUAAQAAAAAABgAHAEsAAQAAAAAACgAaAIoAAwABBAkAAQAOAAcAAwABBAkAAgAOAGcAAwABBAkAAwAOAD0AAwABBAkABAAOAHwAAwABBAkABQAWACAAAwABBAkABgAOAFIAAwABBAkACgA0AKRpY29tb29uAGkAYwBvAG0AbwBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29tb29uAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJpY29tb29uAGkAYwBvAG0AbwBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("woff"), url(/wp-content/themes/samba/dist/fonts/icomoon.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

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

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

/**
 * selectize.css (v0.12.3)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 4px 2px 0;
  padding: 2px 7px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: '\E938';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-family: 'icomoon';
  font-size: 0.5rem;
  color: #000;
  -webkit-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  -webkit-transform: rotate(-180deg) translate(0, 50%);
       -o-transform: rotate(-180deg) translate(0, 50%);
          transform: rotate(-180deg) translate(0, 50%);
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/* @import "20-vendor/vendor.slick";*/

/*------------------------------------*\
    #08-generic GENERIC
\*------------------------------------*/

/*------------------------------------*\
    #08-generic Normalize.css
\*------------------------------------*/

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

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

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

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

/**
 * Prevent displaying `audio` without controls in Mobile Safari 4/5/6/7.
 */

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

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

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * Address inconsistent styling of `abbr[title]`.
 * 1. Correct styling in Firefox 39 and Opera 12.
 * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
 */

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

/**
 * Address inconsistent styling of b and strong.
 * 1. Correct duplicate application of `bolder` in Safari 6.0.2.
 * 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
 */

b,
strong {
  font-weight: inherit;
  /* 1 */
}

b,
strong {
  font-weight: bolder;
  /* 2 */
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

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

/**
 * Address styling not present in IE 8/9.
 */

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

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address inconsistent styling of `hr`.
 * 1. Correct `box-sizing` set to `border-box` in Firefox.
 * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
 */

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

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * 1. Correct inheritance and scaling of font-size for preformatted text.
 * 2. Address odd `em`-unit font size rendering in all browsers.
 */

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

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct font properties not being inherited.
 * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

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

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

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

/**
 * Re-set default cursor for disabled elements.
 */

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

/**
 * Remove inner padding and border in Firefox 4+.
 */

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

/**
 * Restore focus style in Firefox 4+ (unset by a rule above)
 */

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

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

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

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

/**
 * Address `appearance` set to `searchfield` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

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

/**
 * Define consistent border, margin, and padding.
 */

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

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Restore font weight (unset by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/*------------------------------------*\
    #08-generic Reset
\*------------------------------------*/

/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
form,
fieldset,
legend,
figure,
table,
th,
td,
caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */

abbr[title],
dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */

u,
ins {
  text-decoration: none;
}

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */

ins {
  border-bottom: 1px solid;
}

/*------------------------------------*\
    #08-generic Box-sizing
\*------------------------------------*/

/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */

html {
  box-sizing: border-box;
}

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

/* If we have included this file, set a variable to tell the rest of the*/

/* framework that global `box-sizing: border-box` has been set.*/

/*------------------------------------*\
    #08-generic shared
\*------------------------------------*/

/**
 * Where `margin-bottom` is concerned,this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
blockquote,
p,
address,
hr,
table,
fieldset,
figure,
pre {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once,here.
 */

ul,
ol,
dd {
  margin-left: 48px;
  margin-left: 3rem;
}

/*------------------------------------*\
    #08-generic Clearfix
\*------------------------------------*/

/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotateZ(0deg);
       transform: rotateZ(0deg);
  }

  100% {
    -o-transform: rotateZ(360deg);
       transform: rotateZ(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotateZ(0deg);
         -o-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
         -o-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    width: 300px;
    height: 300px;
  }
}

@-o-keyframes ripple {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    width: 300px;
    height: 300px;
  }
}

@keyframes ripple {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    width: 300px;
    height: 300px;
  }
}

/*------------------------------------*\
    #20-vendor VENDOR CLASSES
\*------------------------------------*/

/* $grid-breakpoints: (*/

/*   xs: 0,*/

/*   sm: 544px,*/

/*   md: 768px,*/

/*   lg: 992px,*/

/*   xl: 1200px,*/

/*   xxl: 1406px*/

/* );*/

/* $container-max-widths: (*/

/*   // sm: 576px,*/

/*   // md: 720px,*/

/*   // lg: 940px,*/

/*   // xl: 1140px,*/

/*   xxl: $container-max-width-xxl,*/

/* );*/

/* $grid-gutter-width: 2 * $iscss-base-spacing-unit;*/

/*!
 * Bootstrap Grid v4.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

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

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

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

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

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

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

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

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* @import "~bootstrap/scss/utilities-responsive";*/

.img-fluid,
.wp-caption {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img,
.wp-caption {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption,
.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.form-control,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form .search-field {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control,
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea,
  .search-form .search-field {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand,
.comment-form input[type="text"]::-ms-expand,
.comment-form input[type="email"]::-ms-expand,
.comment-form input[type="url"]::-ms-expand,
.comment-form textarea::-ms-expand,
.search-form .search-field::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus,
.comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus,
.search-form .search-field:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder,
.comment-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
.search-form .search-field::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder,
.comment-form input[type="text"]:-ms-input-placeholder,
.comment-form input[type="email"]:-ms-input-placeholder,
.comment-form input[type="url"]:-ms-input-placeholder,
.comment-form textarea:-ms-input-placeholder,
.search-form .search-field:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder,
.search-form .search-field::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.comment-form input:disabled[type="text"],
.comment-form input:disabled[type="email"],
.comment-form input:disabled[type="url"],
.comment-form textarea:disabled,
.search-form .search-field:disabled,
.form-control[readonly],
.comment-form input[readonly][type="text"],
.comment-form input[readonly][type="email"],
.comment-form input[readonly][type="url"],
.comment-form textarea[readonly],
.search-form .search-field[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]),
.search-form select.search-field:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value,
.search-form select.search-field:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group,
.comment-form p,
.search-form label {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:valid,
.was-validated .comment-form input:valid[type="text"],
.comment-form .was-validated input:valid[type="text"],
.was-validated .comment-form input:valid[type="email"],
.comment-form .was-validated input:valid[type="email"],
.was-validated .comment-form input:valid[type="url"],
.comment-form .was-validated input:valid[type="url"],
.was-validated .comment-form textarea:valid,
.comment-form .was-validated textarea:valid,
.was-validated .search-form .search-field:valid,
.search-form .was-validated .search-field:valid,
.form-control.is-valid,
.comment-form input.is-valid[type="text"],
.comment-form input.is-valid[type="email"],
.comment-form input.is-valid[type="url"],
.comment-form textarea.is-valid,
.search-form .is-valid.search-field,
.was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

.was-validated .form-control:valid:focus,
.was-validated .comment-form input:valid:focus[type="text"],
.comment-form .was-validated input:valid:focus[type="text"],
.was-validated .comment-form input:valid:focus[type="email"],
.comment-form .was-validated input:valid:focus[type="email"],
.was-validated .comment-form input:valid:focus[type="url"],
.comment-form .was-validated input:valid:focus[type="url"],
.was-validated .comment-form textarea:valid:focus,
.comment-form .was-validated textarea:valid:focus,
.was-validated .search-form .search-field:valid:focus,
.search-form .was-validated .search-field:valid:focus,
.form-control.is-valid:focus,
.comment-form input.is-valid:focus[type="text"],
.comment-form input.is-valid:focus[type="email"],
.comment-form input.is-valid:focus[type="url"],
.comment-form textarea.is-valid:focus,
.search-form .is-valid.search-field:focus,
.was-validated
  .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .comment-form input:valid[type="text"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="text"] ~ .valid-feedback,
.was-validated .comment-form input:valid[type="email"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="email"] ~ .valid-feedback,
.was-validated .comment-form input:valid[type="url"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="url"] ~ .valid-feedback,
.was-validated .comment-form textarea:valid ~ .valid-feedback,
.comment-form .was-validated textarea:valid ~ .valid-feedback,
.was-validated .search-form .search-field:valid ~ .valid-feedback,
.search-form .was-validated .search-field:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="text"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="text"] ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="email"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="email"] ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="url"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="url"] ~ .valid-tooltip,
.was-validated .comment-form textarea:valid ~ .valid-tooltip,
.comment-form .was-validated textarea:valid ~ .valid-tooltip,
.was-validated .search-form .search-field:valid ~ .valid-tooltip,
.search-form .was-validated .search-field:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.comment-form input.is-valid[type="text"] ~ .valid-feedback,
.comment-form input.is-valid[type="email"] ~ .valid-feedback,
.comment-form input.is-valid[type="url"] ~ .valid-feedback,
.comment-form textarea.is-valid ~ .valid-feedback,
.search-form .is-valid.search-field ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.comment-form input.is-valid[type="text"] ~ .valid-tooltip,
.comment-form input.is-valid[type="email"] ~ .valid-tooltip,
.comment-form input.is-valid[type="url"] ~ .valid-tooltip,
.comment-form textarea.is-valid ~ .valid-tooltip,
.search-form .is-valid.search-field ~ .valid-tooltip,
.was-validated
  .custom-select:valid ~ .valid-feedback,
.was-validated
  .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before,
.custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:invalid,
.was-validated .comment-form input:invalid[type="text"],
.comment-form .was-validated input:invalid[type="text"],
.was-validated .comment-form input:invalid[type="email"],
.comment-form .was-validated input:invalid[type="email"],
.was-validated .comment-form input:invalid[type="url"],
.comment-form .was-validated input:invalid[type="url"],
.was-validated .comment-form textarea:invalid,
.comment-form .was-validated textarea:invalid,
.was-validated .search-form .search-field:invalid,
.search-form .was-validated .search-field:invalid,
.form-control.is-invalid,
.comment-form input.is-invalid[type="text"],
.comment-form input.is-invalid[type="email"],
.comment-form input.is-invalid[type="url"],
.comment-form textarea.is-invalid,
.search-form .is-invalid.search-field,
.was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:invalid:focus,
.was-validated .comment-form input:invalid:focus[type="text"],
.comment-form .was-validated input:invalid:focus[type="text"],
.was-validated .comment-form input:invalid:focus[type="email"],
.comment-form .was-validated input:invalid:focus[type="email"],
.was-validated .comment-form input:invalid:focus[type="url"],
.comment-form .was-validated input:invalid:focus[type="url"],
.was-validated .comment-form textarea:invalid:focus,
.comment-form .was-validated textarea:invalid:focus,
.was-validated .search-form .search-field:invalid:focus,
.search-form .was-validated .search-field:invalid:focus,
.form-control.is-invalid:focus,
.comment-form input.is-invalid:focus[type="text"],
.comment-form input.is-invalid:focus[type="email"],
.comment-form input.is-invalid:focus[type="url"],
.comment-form textarea.is-invalid:focus,
.search-form .is-invalid.search-field:focus,
.was-validated
  .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="text"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="text"] ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="email"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="email"] ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="url"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="url"] ~ .invalid-feedback,
.was-validated .comment-form textarea:invalid ~ .invalid-feedback,
.comment-form .was-validated textarea:invalid ~ .invalid-feedback,
.was-validated .search-form .search-field:invalid ~ .invalid-feedback,
.search-form .was-validated .search-field:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="text"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="text"] ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="email"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="email"] ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="url"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="url"] ~ .invalid-tooltip,
.was-validated .comment-form textarea:invalid ~ .invalid-tooltip,
.comment-form .was-validated textarea:invalid ~ .invalid-tooltip,
.was-validated .search-form .search-field:invalid ~ .invalid-tooltip,
.search-form .was-validated .search-field:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.comment-form input.is-invalid[type="text"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="email"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="url"] ~ .invalid-feedback,
.comment-form textarea.is-invalid ~ .invalid-feedback,
.search-form .is-invalid.search-field ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.comment-form input.is-invalid[type="text"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="email"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="url"] ~ .invalid-tooltip,
.comment-form textarea.is-invalid ~ .invalid-tooltip,
.search-form .is-invalid.search-field ~ .invalid-tooltip,
.was-validated
  .custom-select:invalid ~ .invalid-feedback,
.was-validated
  .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before,
.custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline,
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check,
.search-form .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label,
  .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .search-form .form-group,
  .form-inline .comment-form p,
  .comment-form .form-inline p,
  .search-form .comment-form p,
  .comment-form .search-form p,
  .form-inline .search-form label,
  .search-form .form-inline label,
  .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .search-form .form-control,
  .form-inline .comment-form input[type="text"],
  .comment-form .form-inline input[type="text"],
  .search-form .comment-form input[type="text"],
  .comment-form .search-form input[type="text"],
  .form-inline .comment-form input[type="email"],
  .comment-form .form-inline input[type="email"],
  .search-form .comment-form input[type="email"],
  .comment-form .search-form input[type="email"],
  .form-inline .comment-form input[type="url"],
  .comment-form .form-inline input[type="url"],
  .search-form .comment-form input[type="url"],
  .comment-form .search-form input[type="url"],
  .form-inline .comment-form textarea,
  .comment-form .form-inline textarea,
  .search-form .comment-form textarea,
  .comment-form .search-form textarea,
  .search-form .search-field {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext,
  .search-form .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .search-form .input-group,
  .form-inline .custom-select,
  .search-form .custom-select {
    width: auto;
  }

  .form-inline .form-check,
  .search-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input,
  .search-form .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control,
  .search-form .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .form-inline .custom-control-label,
  .search-form .custom-control-label {
    margin-bottom: 0;
  }
}

.btn,
.comment-form input[type="submit"],
.search-form .search-submit {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn,
  .comment-form input[type="submit"],
  .search-form .search-submit {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover,
.comment-form input:hover[type="submit"],
.search-form .search-submit:hover,
.btn:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus {
  text-decoration: none;
}

.btn:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus,
.btn.focus,
.comment-form input.focus[type="submit"],
.search-form .focus.search-submit {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.btn:disabled,
.comment-form input:disabled[type="submit"],
.search-form .search-submit:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled),
.comment-form input:not(:disabled):not(.disabled)[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active,
.comment-form input:not(:disabled):not(.disabled):active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active,
.comment-form input:not(:disabled):not(.disabled).active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled).active {
  background-image: none;
}

a.btn.disabled,
.search-form a.disabled.search-submit,
fieldset:disabled a.btn,
fieldset:disabled .search-form a.search-submit,
.search-form fieldset:disabled a.search-submit {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary,
.comment-form input[type="submit"],
.search-form .search-submit {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover,
.comment-form input:hover[type="submit"],
.search-form .search-submit:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus,
.btn-secondary.focus,
.comment-form input.focus[type="submit"],
.search-form .focus.search-submit {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.btn-secondary:disabled,
.comment-form input:disabled[type="submit"],
.search-form .search-submit:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.comment-form input:not(:disabled):not(.disabled):active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.comment-form input:not(:disabled):not(.disabled).active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.comment-form .show > input.dropdown-toggle[type="submit"],
.search-form .show > .dropdown-toggle.search-submit {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.comment-form input:not(:disabled):not(.disabled):active:focus[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.comment-form input:not(:disabled):not(.disabled).active:focus[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus,
.comment-form .show > input.dropdown-toggle:focus[type="submit"],
.search-form .show > .dropdown-toggle.search-submit:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  -o-animation-duration: 1000ms;
     animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
     animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  -o-animation-name: fadeOut;
     animation-name: fadeOut;
}

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

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  -webkit-transition: -webkit-transform 100ms ease;
  -o-transition: -o-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease, -o-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
     transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
   * Owl Carousel v2.2.0
   * Copyright 2013-2016 David Deutsch
   * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
   */

/*
   * 	Default theme - Owl Carousel CSS File
   */

.owl-intersynergy .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-intersynergy .owl-nav {
  position: absolute;
  bottom: 100px;
  left: 15%;
  right: 15%;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
  color: #000000;
}

@media (max-width: 767.98px) {
  .owl-intersynergy .owl-nav {
    left: 2%;
    right: 2%;
  }
}

@media (max-width: 991.98px) {
  .owl-intersynergy .owl-nav {
    bottom: 0;
  }
}

.owl-intersynergy .owl-nav .owl-prev {
  float: left;
  opacity: 0.3;
  cursor: pointer;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.owl-intersynergy .owl-nav .owl-prev:hover {
  opacity: 0.6;
  color: #000000;
}

.owl-intersynergy .owl-nav .owl-next {
  float: right;
  opacity: 0.3;
  cursor: pointer;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.owl-intersynergy .owl-nav .owl-next:hover {
  opacity: 0.6;
  color: #000000;
}

.owl-intersynergy .owl-nav [class*='owl-']:hover {
  text-decoration: none;
}

.owl-intersynergy .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-intersynergy .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
}

.owl-intersynergy .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-intersynergy .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 3px;
  background: #000;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-intersynergy .owl-dots .owl-dot.active span,
.owl-intersynergy .owl-dots .owl-dot:hover span {
  background: #1463f4;
}

.owl-leadership .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  float: left;
  width: 12.5rem;
  background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  color: #ffffff;
  text-align: center;
}

.owl-leadership .owl-nav .owl-prev i {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 1;
}

.owl-leadership .owl-nav .owl-next {
  position: absolute;
  float: right;
  right: 0;
  top: 0;
  bottom: 0;
  width: 12.5rem;
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(20, 99, 244, 0.9));
  color: #ffffff;
  text-align: center;
}

.owl-leadership .owl-nav .owl-next i {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .owl-leadership .owl-nav .owl-next,
  .owl-leadership .owl-nav .owl-prev {
    background-image: none;
    top: auto;
    bottom: 10%;
  }
}

.vc_row {
  margin: 0;
}

@media (max-width: 767.98px) {
  .vc_row .text-align--right {
    text-align: left;
  }
}

.wpb_wrapper .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.vc_column_container > .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wpb_row {
  margin-left: -1.3125rem;
  margin-right: -1.3125rem;
}

.wpb_column {
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.vc_force_fullwidth > .vc_column_container > .vc_column-inner {
  padding-left: 1.3125rem !important;
  padding-right: 1.3125rem !important;
}

@media (max-width: 543px) {
  .vc_force_fullwidth .vc_column_container .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.vc_row.vc_row-o-equal-height > .vc_column_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column--has-grid .vc_column-inner {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

/*------------------------------------*\
    #10-base BASE
\*------------------------------------*/

/*------------------------------------*\
    #10-base Page
\*------------------------------------*/

/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */

html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  background-color: #000000;
  color: #3d414b;
  min-height: 100%;
  /* [3] */
  height: 100%;
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */
}

body {
  background-color: #000000;
  font-family: "Helvetica Neue Medium", Helvetica, Arial, sans-serif;
  height: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.66667rem;
  }
}

@media (max-width: 767.98px) {
  .hidden-sm {
    display: none;
  }
}

.visible-sm {
  display: none;
}

@media (max-width: 767.98px) {
  .visible-sm {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-xs {
  display: none;
}

@media (max-width: 575.98px) {
  .visible-xs {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .spacing-xs {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .spacing-top-xs {
    margin-top: 1.5rem;
  }
}

main {
  position: relative;
  min-height: 31.25rem;
}

.wrapper {
  z-index: 30;
  background-color: #ffffff;
  overflow-x: hidden;
}

.wrapper.blur {
  filter: blur(10px);
}

.content {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wpb-js-composer .content {
  padding-bottom: 0;
}

h3 em {
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
}

.wrap {
  background-color: #ffffff;
  background-size: cover;
}

/*------------------------------------*\
    #10-base Images
\*------------------------------------*/

/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */

img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
  width: 100%;
}

/**
 * 1. Google Maps breaks if `max-width: 100%` acts upon it; use their selector
 *    to remove the effects.
 * 2. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */

.gm-style img,
img[width],
img[height] {
  /* [2] */
  max-width: 100%;
  width: inherit;
}

/*------------------------------------*\
    #30-global GLOBAL CLASSES
\*------------------------------------*/

/*------------------------------------*\
    #30-global Demo Bootstrap
\*------------------------------------*/

.full_width {
  width: 100%;
}

/*------------------------------------*\
    #30-global Utilities
\*------------------------------------*/

/**
 * Global classes useful for overriding default Bootstrap properties, modifying
 * objects and stuff
**/

.iscss-visible {
  display: block !important;
}

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

svg {
  max-width: 100%;
}

.row:before,
.row:after {
  display: none;
}

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

.column--stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* .vc_column_container {*/
  /*   align-items: stretch !important;*/
  /* }*/
  /* >.vc_column-inner {*/
  /*   flex-basis: 100%;*/
  /*   display: flex;*/
  /* }*/
}

.column--stretch--span-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.column--stretch--span-2 .vc_column_container {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.column--stretch--span-2 .vc_column-inner {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.column--stretch--span-2 .vc_column-inner .wpb_wrapper {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  /* flex-direction: column;*/
}

.column--stretch--span-2 .vc_column-inner .wpb_wrapper .box--no-image {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

@media (max-width: 767.98px) {
  .column--stretch--span-2 {
    display: block;
  }

  .column--stretch--span-2 .vc_column-inner {
    display: block;
  }

  .column--stretch--span-2 .vc_column-inner .wpb_wrapper {
    display: block;
  }
}

.centered {
  text-align: center;
}

.gradient-bg {
  background-image: -webkit-linear-gradient(top, #1d54c6, #1a329e);
  background-image: -o-linear-gradient(top, #1d54c6, #1a329e);
  background-image: linear-gradient(to bottom, #1d54c6, #1a329e);
}

.gradient-bg .stats-box {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .custom-columns {
    margin-bottom: 0.75rem;
  }
}

.column-img {
  /* &--1 {*/
  /*   .vc_column-inner .wpb_wrapper {*/
  /*     padding-bottom: 340px;*/
  /*     background-image: url('../images/column-img-1.png');*/
  /*     @include media-breakpoint-down(md) {*/
  /*       padding-bottom: 245px;*/
  /*     }*/
  /*     @include media-breakpoint-down(sm) {*/
  /*       padding-bottom: 20px;*/
  /*     }*/
  /*   }*/
  /* }*/
  /* &--2 {*/
  /*   .vc_column-inner .wpb_wrapper {*/
  /*     background-image: url('../images/column-img-2.png');*/
  /*   }*/
  /* }*/
  /* &--3 {*/
  /*   .vc_column-inner .wpb_wrapper {*/
  /*     background-image: url('../images/column-img-3.png');*/
  /*   }*/
  /* }*/
}

.column-img .vc_column-inner .wpb_wrapper {
  text-align: center;
  /* padding-bottom: 320px;*/
  /* background-size:contain;*/
  /* background-position: bottom;*/
  /* background-repeat: no-repeat;*/
  /* margin-bottom: -50px;*/
}

.column-img .vc_column-inner .wpb_wrapper .button--container {
  /* margin-top: calculate-rem(30px);*/
  margin-bottom: 1.875rem;
}

@media (max-width: 991.98px) {
  .column-img .vc_column-inner .wpb_wrapper {
    /* padding-bottom: 235px;*/
  }

  .column-img .vc_column-inner .wpb_wrapper br {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .column-img .vc_column-inner .wpb_wrapper {
    padding-bottom: 0.9375rem;
    margin-bottom: 0;
    background-size: 200px;
    background-position: top;
  }

  .column-img .vc_column-inner .wpb_wrapper .button--container {
    margin-top: 0.3125rem;
  }

  .column-img .vc_column-inner .wpb_wrapper .wpb_text_column {
    margin-bottom: 0.9375rem;
    padding-top: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.column-img .wpb_text_column .wpb_wrapper {
  background-image: none;
  padding-bottom: 0;
}

.tv-dmp .content {
  padding-top: 0;
}

.tv-dmp .wrap {
  background-color: #ffffff;
  background-size: 2530px auto;
  background-position: top center;
  background-repeat: no-repeat;
}

/* Sage & Wordpress - Standard classes*/

/*-----------------------------------------*\
    #30-global WordPress Generated Classes
\*-----------------------------------------*/

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 0.5rem;
  }

  .alignright {
    float: right;
    margin-left: 0.5rem;
  }
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  padding: 0.375rem;
}

.gallery-columns-3 .gallery-item {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  width: 33%;
  padding: 1.5rem;
}

@media (max-width: 575.98px) {
  .gallery-columns-3 .gallery-item {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    width: 33%;
    padding: 0.375rem;
  }
}

.gallery-columns-4 .gallery-item {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  width: 25%;
  padding: 0.375rem 1.5rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 767.98px) {
  .gallery-columns-4 .gallery-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
}

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

blockquote {
  text-align: left;
  margin: 3rem;
  padding: 3rem;
  position: relative;
}

blockquote:before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: 0;
  font-size: 200px;
  font-size: 12.5rem;
  line-height: 20.83333rem;
  font-weight: bold;
}

blockquote:after {
  content: '\201D';
  position: absolute;
  bottom: -100px;
  right: 0;
  font-size: 200px;
  font-size: 12.5rem;
  line-height: 20.83333rem;
  font-weight: bold;
}

blockquote p {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 38.8px;
  letter-spacing: -0.6px;
}

blockquote strong {
  text-transform: uppercase;
  font-weight: normal;
  margin-top: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.415;
  display: inline-block;
  letter-spacing: 3px;
}

@media (max-width: 991.98px) {
  blockquote {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  blockquote:before {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 10.41667rem;
    top: -40px;
  }

  blockquote:after {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 10.41667rem;
    bottom: -50px;
  }
}

@media (max-width: 767.98px) {
  blockquote {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  blockquote p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media (max-width: 575.98px) {
  blockquote {
    margin: 0.75rem;
    padding: 0.75rem;
  }

  blockquote p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  blockquote:before {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 10.41667rem;
    top: -80px;
  }

  blockquote:after {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 10.41667rem;
    bottom: -80px;
  }
}

/*-----------------------------------------*\
    #30-global Comments
\*-----------------------------------------*/

.comment-list {
  padding-left: 0;
  list-style: none;
}

.comment-list ol {
  list-style: none;
}

/*-----------------------------------------*\
    #30-global Search Form
\*-----------------------------------------*/

.search-form label {
  font-weight: normal;
}

.col-xs-1 {
  max-width: 8.33333%;
}

.col-xs-2 {
  max-width: 16.66667%;
}

.col-xs-3 {
  max-width: 25%;
}

.col-xs-4 {
  max-width: 33.33333%;
}

.col-xs-5 {
  max-width: 41.66667%;
}

.col-xs-6 {
  max-width: 50%;
}

.col-xs-7 {
  max-width: 58.33333%;
}

.col-xs-8 {
  max-width: 66.66667%;
}

.col-xs-9 {
  max-width: 75%;
}

.col-xs-10 {
  max-width: 83.33333%;
}

.col-xs-11 {
  max-width: 91.66667%;
}

.col-xs-12 {
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.33333%;
  }

  .col-sm-2 {
    max-width: 16.66667%;
  }

  .col-sm-3 {
    max-width: 25%;
  }

  .col-sm-4 {
    max-width: 33.33333%;
  }

  .col-sm-5 {
    max-width: 41.66667%;
  }

  .col-sm-6 {
    max-width: 50%;
  }

  .col-sm-7 {
    max-width: 58.33333%;
  }

  .col-sm-8 {
    max-width: 66.66667%;
  }

  .col-sm-9 {
    max-width: 75%;
  }

  .col-sm-10 {
    max-width: 83.33333%;
  }

  .col-sm-11 {
    max-width: 91.66667%;
  }

  .col-sm-12 {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    max-width: 8.33333%;
  }

  .col-md-2 {
    max-width: 16.66667%;
  }

  .col-md-3 {
    max-width: 25%;
  }

  .col-md-4 {
    max-width: 33.33333%;
  }

  .col-md-5 {
    max-width: 41.66667%;
  }

  .col-md-6 {
    max-width: 50%;
  }

  .col-md-7 {
    max-width: 58.33333%;
  }

  .col-md-8 {
    max-width: 66.66667%;
  }

  .col-md-9 {
    max-width: 75%;
  }

  .col-md-10 {
    max-width: 83.33333%;
  }

  .col-md-11 {
    max-width: 91.66667%;
  }

  .col-md-12 {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    max-width: 8.33333%;
  }

  .col-lg-2 {
    max-width: 16.66667%;
  }

  .col-lg-3 {
    max-width: 25%;
  }

  .col-lg-4 {
    max-width: 33.33333%;
  }

  .col-lg-5 {
    max-width: 41.66667%;
  }

  .col-lg-6 {
    max-width: 50%;
  }

  .col-lg-7 {
    max-width: 58.33333%;
  }

  .col-lg-8 {
    max-width: 66.66667%;
  }

  .col-lg-9 {
    max-width: 75%;
  }

  .col-lg-10 {
    max-width: 83.33333%;
  }

  .col-lg-11 {
    max-width: 91.66667%;
  }

  .col-lg-12 {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    max-width: 8.33333%;
  }

  .col-xl-2 {
    max-width: 16.66667%;
  }

  .col-xl-3 {
    max-width: 25%;
  }

  .col-xl-4 {
    max-width: 33.33333%;
  }

  .col-xl-5 {
    max-width: 41.66667%;
  }

  .col-xl-6 {
    max-width: 50%;
  }

  .col-xl-7 {
    max-width: 58.33333%;
  }

  .col-xl-8 {
    max-width: 66.66667%;
  }

  .col-xl-9 {
    max-width: 75%;
  }

  .col-xl-10 {
    max-width: 83.33333%;
  }

  .col-xl-11 {
    max-width: 91.66667%;
  }

  .col-xl-12 {
    max-width: 100%;
  }
}

/*------------------------------------*\
    #50-atoms ATOMS CLASSES
\*------------------------------------*/

/*------------------------------------*\
    #50-atoms Fonts
\*------------------------------------*/

.font-size--xxxxl {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 3.75rem;
}

.font-size--xxxl {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 3.125rem;
}

.font-size--xxl {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.font-size--xl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.08333rem;
}

.font-size--lg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.font-size--md {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.66667rem;
}

.font-size--sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
}

.font-size--xs {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.font-weight--bold {
  font-weight: 700;
}

.font-weight--semibold {
  font-weight: 600;
}

.font-weight--regular {
  font-weight: 400;
}

.font-weight--light {
  font-weight: 300;
}

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

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

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

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

.text-align--xs--up--left {
  text-align: left !important;
}

@media (max-width: 575.98px) {
  .text-align--xs--down--left {
    text-align: left !important;
  }
}

@media (min-width: 576px) {
  .text-align--sm--up--left {
    text-align: left !important;
  }
}

@media (max-width: 767.98px) {
  .text-align--sm--down--left {
    text-align: left !important;
  }
}

@media (min-width: 768px) {
  .text-align--md--up--left {
    text-align: left !important;
  }
}

@media (max-width: 991.98px) {
  .text-align--md--down--left {
    text-align: left !important;
  }
}

@media (min-width: 992px) {
  .text-align--lg--up--left {
    text-align: left !important;
  }
}

@media (max-width: 1199.98px) {
  .text-align--lg--down--left {
    text-align: left !important;
  }
}

@media (min-width: 1200px) {
  .text-align--xl--up--left {
    text-align: left !important;
  }
}

.text-align--xl--down--left {
  text-align: left !important;
}

.text-align--xs--up--right {
  text-align: right !important;
}

@media (max-width: 575.98px) {
  .text-align--xs--down--right {
    text-align: right !important;
  }
}

@media (min-width: 576px) {
  .text-align--sm--up--right {
    text-align: right !important;
  }
}

@media (max-width: 767.98px) {
  .text-align--sm--down--right {
    text-align: right !important;
  }
}

@media (min-width: 768px) {
  .text-align--md--up--right {
    text-align: right !important;
  }
}

@media (max-width: 991.98px) {
  .text-align--md--down--right {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .text-align--lg--up--right {
    text-align: right !important;
  }
}

@media (max-width: 1199.98px) {
  .text-align--lg--down--right {
    text-align: right !important;
  }
}

@media (min-width: 1200px) {
  .text-align--xl--up--right {
    text-align: right !important;
  }
}

.text-align--xl--down--right {
  text-align: right !important;
}

.text-align--xs--up--center {
  text-align: center !important;
}

@media (max-width: 575.98px) {
  .text-align--xs--down--center {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .text-align--sm--up--center {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .text-align--sm--down--center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-align--md--up--center {
    text-align: center !important;
  }
}

@media (max-width: 991.98px) {
  .text-align--md--down--center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-align--lg--up--center {
    text-align: center !important;
  }
}

@media (max-width: 1199.98px) {
  .text-align--lg--down--center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-align--xl--up--center {
    text-align: center !important;
  }
}

.text-align--xl--down--center {
  text-align: center !important;
}

.text-align--xs--up--justify {
  text-align: justify !important;
}

@media (max-width: 575.98px) {
  .text-align--xs--down--justify {
    text-align: justify !important;
  }
}

@media (min-width: 576px) {
  .text-align--sm--up--justify {
    text-align: justify !important;
  }
}

@media (max-width: 767.98px) {
  .text-align--sm--down--justify {
    text-align: justify !important;
  }
}

@media (min-width: 768px) {
  .text-align--md--up--justify {
    text-align: justify !important;
  }
}

@media (max-width: 991.98px) {
  .text-align--md--down--justify {
    text-align: justify !important;
  }
}

@media (min-width: 992px) {
  .text-align--lg--up--justify {
    text-align: justify !important;
  }
}

@media (max-width: 1199.98px) {
  .text-align--lg--down--justify {
    text-align: justify !important;
  }
}

@media (min-width: 1200px) {
  .text-align--xl--up--justify {
    text-align: justify !important;
  }
}

.text-align--xl--down--justify {
  text-align: justify !important;
}

strong {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .xs-center {
    text-align: center;
  }
}

a {
  color: #1299ef;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  display: inline;
  outline: 0;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

a:active,
a:focus {
  text-decoration: none;
  outline: 0;
}

a:hover {
  color: #1463f4;
}

/*------------------------------------*\
    #50-atoms Buttons
\*------------------------------------*/

.button {
  border: none;
  border-radius: 24px;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  margin: 0.195rem 0.39rem;
  padding-top: 0.57rem;
  padding-bottom: 0.435rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: inherit;
  outline: 0;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  position: relative;
  overflow: visible;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}

.button:hover {
  text-decoration: none;
  color: #f19100;
}

.button i {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-left: 0.375rem;
}

.button i:before {
  -webkit-transform: translate(0, 10%);
       -o-transform: translate(0, 10%);
          transform: translate(0, 10%);
}

.button--text {
  padding: 0.3rem 0;
  border-radius: 0;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button--text--white {
  color: #ffffff;
}

.button--text--white:hover {
  color: #ffffff;
}

.button--blue {
  color: #ffffff;
  background-color: #1463f4;
}

.button--blue:hover {
  color: #ffffff;
  background-color: #236df5;
}

.button--blue--outline {
  background-color: transparent;
  border: 1px solid #1463f4;
  color: #1463f4;
  padding-top: 0.5075rem;
  padding-bottom: 0.3725rem;
}

.button--blue--outline:hover {
  background-color: #1463f4;
  color: #ffffff;
  text-decoration: none !important;
}

.button--white-50 {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.5);
}

.button--white-50:hover {
  background-color: #ffffff;
  color: #1463f4;
}

.button--white {
  color: #1463f4;
  background-color: #ffffff;
}

.button--white:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #1463f4;
}

.button--container {
  display: inline-block;
}

.ghost-button {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 1px solid #fff;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Helvetica Neue Bold";
}

.ghost-button:active {
  color: #fff;
  text-decoration: none;
}

.ghost-button:visited {
  color: #fff;
  text-decoration: none;
}

.ghost-button:hover {
  color: #fff;
  text-decoration: none;
}

.solid-button {
  color: #FFFFFF;
  font-family: "Helvetica Neue Medium", helvetica, arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Helvetica Neue Bold";
  -webkit-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

.solid-button.gray {
  color: #fff;
  background-color: #4B4D8C;
  border-width: 0;
}

.solid-button.gray:active {
  color: #fff;
  text-decoration: none;
  background-color: #6062aa;
}

.solid-button.gray:visited {
  color: #fff;
  text-decoration: none;
  background-color: #4B4D8C;
}

.solid-button.gray:hover {
  color: #fff;
  text-decoration: none;
  background-color: #6062aa;
}

/*------------------------------------*\
    #50-atoms headings
\*------------------------------------*/

h1 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2.7px;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1;
  }
}

h2 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -2.7px;
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.05;
  }
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991.98px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
}

h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.66667rem;
  font-weight: 700;
}

h6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
  font-weight: 700;
}

.heading--title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: none;
}

@media (max-width: 991.98px) {
  .heading--title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.heading--gradient {
  background: -webkit-linear-gradient(352deg, #001924, #1d71eb);
  background: -o-linear-gradient(352deg, #001924, #1d71eb);
  background: linear-gradient(98deg, #001924, #1d71eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.terms-2-28-2018 h2 {
  font-size: 2rem;
  letter-spacing: 0.3px;
}

body.terms-2-28-2018 blockquote {
  padding: 0;
  font-size: 1.5rem;
}

body.terms-2-28-2018 blockquote:after {
  display: none;
}

body.terms-2-28-2018 blockquote:before {
  display: none;
}

body.terms-2-28-2018 .main li {
  margin-bottom: 1.5rem;
}

body.privacy-policy-2-28-2018 h2 {
  font-size: 2rem;
  letter-spacing: 0.3px;
}

body.privacy-policy-2-28-2018 blockquote {
  padding: 0;
  font-size: 1.5rem;
}

body.privacy-policy-2-28-2018 blockquote p {
  font-size: 1.5rem;
}

body.privacy-policy-2-28-2018 blockquote:after {
  display: none;
}

body.privacy-policy-2-28-2018 blockquote:before {
  display: none;
}

body.privacy-policy-2-28-2018 .main li {
  margin-bottom: 1.5rem;
}

/*------------------------------------*\
    #50-atoms logo
\*------------------------------------*/

.logo {
  max-width: 6.875rem;
}

/*------------------------------------*\
    #50-atoms iframe
\*------------------------------------*/

.iframe--home {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/*------------------------------------*\
    #50-atoms separator
\*------------------------------------*/

.separator {
  border: 0;
  border-top: 1px solid #f0f1f1;
}

.short-separator {
  border: 0;
  border-top: 2px solid #fff;
  width: 30px;
}

.short-separator.top40 {
  margin-top: 40px;
}

.short-separator.top60 {
  margin-top: 60px;
}

.short-separator.animated {
  width: 0;
  -webkit-transition: width 0.5s ease-out;
  -o-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.short-separator.animated.final {
  width: 30px;
}

/*------------------------------------*\
    #50-atoms list
\*------------------------------------*/

.list--two-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
}

.list--two-cols dt,
.list--two-cols dd {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: block;
  width: 50%;
  margin: 0 0 0.375rem 0;
}

.list--two-cols dt .fa,
.list--two-cols dd .fa {
  margin-right: 0.375rem;
  color: #1463f4;
}

.list--two-cols dt {
  font-weight: 700;
}

/*------------------------------------*\
    #50-atoms table
\*------------------------------------*/

.table {
  border: 0;
  width: 100%;
  border-collapse: collapse;
}

.table tr td {
  background: #dfe5ef;
  padding: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

.table tr:nth-child(even) td {
  background: rgba(223, 229, 239, 0.3);
}

/*------------------------------------*\
    #50-atoms text
\*------------------------------------*/

.text-for-popup {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  font-size: 0;
  width: 0;
  height: 0;
}

/*------------------------------------*\
    #50-atoms samba-lang-switcher
\*------------------------------------*/

/*//*/

/*/ @group samba-lang-switcher*/

/*//*/

/*/ @group default*/

/*/ @type namespace*/

.samba-lang-switcher {
  margin-top: -2.8125rem;
  opacity: 0;
  text-align: right;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-bottom: 1.25rem;
}

.samba-lang-switcher--active {
  opacity: 1;
}

.samba-lang-switcher div.samba-lang-switcher__select {
  margin-top: 0.625rem;
  max-width: 9.375rem;
  margin-left: auto;
  border-radius: 0;
  text-align: center;
  border: none;
  border-radius: 0;
  background-color: #f6f6f6 !important;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  box-shadow: none;
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-input {
  margin-top: 0;
  border: none;
  padding: 0.9375rem 1.875rem;
  border-radius: 0;
  background-color: #f6f6f6 !important;
  display: block !important;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  box-shadow: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-input:after {
  content: " ";
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-bottom: 2px solid #3d414b;
  border-right: 2px solid #3d414b;
  -webkit-transform: translate(0, -75%) rotate(45deg);
  -o-transform: translate(0, -75%) rotate(45deg);
     transform: translate(0, -75%) rotate(45deg);
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-input:before {
  display: none !important;
}

.samba-lang-switcher div.samba-lang-switcher__select .input-active:after {
  -webkit-transform: translate(0, -50%) rotate(-135deg) !important;
  -o-transform: translate(0, -50%) rotate(-135deg) !important;
     transform: translate(0, -50%) rotate(-135deg) !important;
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-dropdown {
  margin-top: 0;
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-dropdown .selectize-dropdown-content .option {
  margin-top: 0;
  border: none;
  padding: 0.9375rem 1.875rem;
  border-radius: 0;
  background-color: #f6f6f6;
  display: block !important;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.samba-lang-switcher div.samba-lang-switcher__select .selectize-dropdown .selectize-dropdown-content .option:hover {
  background-color: #fefefe;
}

/*------------------------------------*\
    #60-molecules MOLECULES CLASSES
\*------------------------------------*/

/*------------------------------------*\
    #50-molecules menu
\*------------------------------------*/

.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
}

.menu--white a {
  color: #ffffff;
}

.menu--black a {
  color: #000000;
}

.menu li {
  display: inline-block;
  margin: 0 1.5rem;
}

.menu li:first-child {
  margin-left: 0;
}

.menu--separator li {
  position: relative;
}

.menu--separator li:after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  -webkit-transform: translate(0, -100%);
       -o-transform: translate(0, -100%);
          transform: translate(0, -100%);
  display: inline-block;
  width: 0.225rem;
  height: 0.225rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
}

.menu--separator li:last-child:after {
  display: none;
}

.menu--vertical {
  margin: 0;
  padding: 0;
}

.menu--vertical li {
  display: block;
  padding: 0;
  margin: 0;
}

.menu--vertical li.menu-item-has-children {
  margin-bottom: 1.5rem;
}

.menu--vertical li.menu-item-has-children > a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
  color: #707584;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: inline-block;
}

.menu--vertical li .sub-menu {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.66667rem;
  padding: 0;
  margin: 0;
}

.menu--right {
  float: right;
}

.menu--top {
  margin: 0;
  padding: 0;
}

.menu--top a {
  color: #000000;
}

.menu--top a:hover {
  color: #1299ef;
}

.menu--top li {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
  font-weight: bold;
}

.menu--top li.active a {
  color: #1299ef;
}

.menu-trigger {
  float: right;
  width: 32px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  vertical-align: middle;
  display: none;
  margin-left: 1.5rem;
}

.menu-trigger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-trigger span:nth-child(1) {
  top: 0;
}

.menu-trigger span:nth-child(2),
.menu-trigger span:nth-child(3) {
  top: 8px;
}

.menu-trigger span:nth-child(4) {
  top: 16px;
}

.menu-trigger--white span {
  background: rgba(255, 255, 255, 0.9);
}

.menu-trigger.menu-trigger--close span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-trigger.menu-trigger--close span:nth-child(2) {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-trigger.menu-trigger--close span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-trigger.menu-trigger--close span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

@media (max-width: 991.98px) {
  .menu-trigger {
    display: inline-block;
  }
}

.menu--mobile {
  margin: 0;
}

.menu--mobile li {
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
}

.menu--mobile li.active .sub-menu {
  display: block;
}

.menu--mobile > li {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.menu--mobile .sub-menu {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-left: 1.5rem;
  display: none;
}

.menu--mobile .sub-menu li {
  margin-bottom: 0;
}

.menu--toggle {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
  margin-left: 3rem;
  position: relative;
}

.menu--toggle:hover {
  color: #ffffff;
}

.menu--toggle .fa {
  margin-left: 1.5rem;
}

.menu--toggle:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -1.5rem;
  top: 50%;
  -webkit-transform: translate(-60%, -60%);
       -o-transform: translate(-60%, -60%);
          transform: translate(-60%, -60%);
  border-radius: 50%;
  width: 0.3em;
  height: 0.3em;
  background-color: #ffffff;
}

.menu--toggle--black {
  color: #000000;
}

.menu--toggle--black:hover {
  color: #000000;
}

.menu--toggle--black:before {
  background-color: #000000;
}

/*------------------------------------*\
    #50-molecules form
\*------------------------------------*/

.form {
  position: relative;
}

.form input[type="text"],
.form input[type="email"],
.form__input {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  display: inline-block;
  width: 100%;
  padding: 0.4875rem 0.75rem 0.375rem 0.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 0.375rem;
  color: #ffffff;
  outline-color: #ff5271;
}

.form input[type="text"]::-webkit-input-placeholder,
.form input[type="email"]::-webkit-input-placeholder,
.form__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form input[type="text"]:-ms-input-placeholder,
.form input[type="email"]:-ms-input-placeholder,
.form__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form input[type="text"]::placeholder,
.form input[type="email"]::placeholder,
.form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form textarea,
.form__textarea {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  display: inline-block;
  width: 100%;
  padding: 0.4875rem 0.75rem 0.375rem 0.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 0.375rem;
  color: #ffffff;
  outline-color: #ff5271;
  resize: none;
  height: 9.375rem;
}

.form textarea::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form textarea:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form textarea::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form .wpcf7-form-control-wrap {
  display: block;
}

.form .wpcf7-not-valid-tip {
  position: absolute;
  right: 1.5rem;
  top: 0.625rem;
  font-size: 12px !important;
  color: #f98a94 !important;
}

@media (max-width: 767.98px) {
  .form .wpcf7-not-valid-tip {
    position: static;
    margin-top: -0.45rem;
  }
}

.form .wpcf7-response-output {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0.75rem;
}

.form .wpcf7-validation-errors,
.form .wpcf7-mail-sent-ng {
  border: 0;
  background-color: #c86a89;
  background-image: -webkit-linear-gradient(45deg, #d54967, #ac57cf);
  background-image: -o-linear-gradient(45deg, #d54967, #ac57cf);
  background-image: linear-gradient(45deg, #d54967, #ac57cf);
}

.form .wpcf7-mail-sent-ok {
  border: 0;
  background-color: #74c86a;
  background-image: -webkit-linear-gradient(45deg, #5ec177, #6cede9);
  background-image: -o-linear-gradient(45deg, #5ec177, #6cede9);
  background-image: linear-gradient(45deg, #5ec177, #6cede9);
}

.form br {
  display: none;
}

.form .ajax-loader {
  display: none !important;
}

/*------------------------------------*\
    #50-molecules tabs
\*------------------------------------*/

.tabs {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.09375rem;
}

.tabs--container {
  background-color: rgba(38, 65, 115, 0.8);
}

.tabs__tab {
  display: inline-block;
  margin-left: -1.5rem;
  margin-right: 1.5rem;
}

.tabs__tab a {
  color: #ffffff;
  display: inline-block;
  padding: 1.2rem 1.5rem;
}

.tabs__tab--active a {
  background-color: #ffffff;
  color: #1463f4;
}

/*------------------------------------*\
    #50-molecules news
\*------------------------------------*/

.news--box {
  border: 1px solid #f0f1f1;
  padding: 3rem;
  margin-bottom: 1.5rem;
  -webkit-transition: box-shadow .5s ease-in-out;
  -o-transition: box-shadow .5s ease-in-out;
  transition: box-shadow .5s ease-in-out;
}

.news--box:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
}

.news__title {
  text-transform: initial;
  margin-bottom: 0.375rem;
}

.news__date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45833rem;
  color: #a3a5a4;
}

.news__excerpt {
  margin-top: 1.5rem;
}

/*------------------------------------*\
    #50-molecules box
\*------------------------------------*/

/*//*/

/*/ @group box*/

/*//*/

/*/ @group default*/

/*/ @type namespace*/

.box {
  /* padding: calculate-rem($iscss-padding);*/
  margin: 0.625rem -0.625rem;
  position: relative;
}

.box__image {
  max-width: 100%;
}

.box__heading {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 0;
}

.box__heading a {
  color: inherit;
}

.box__heading a:hover {
  color: inherit;
}

.box__heading i {
  float: right;
}

.box__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.08333rem;
  padding-right: 3rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.box__text a {
  color: inherit;
}

.box__text a:hover {
  color: inherit;
}

.box .button {
  margin-left: 0;
}

.box__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1.5rem;
}

.box__content--middle {
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
     transform: translate(0, -50%);
}

.box__content--bottom {
  bottom: 1.5rem;
  top: auto;
}

.box--no-image {
  min-height: 200px;
  -ms-flex-preferred-size: 104% !important;
  flex-basis: 104% !important;
}

.box--no-image a {
  display: block;
  padding: 3rem 0;
}

@media (max-width: 991.98px) {
  .box--no-image {
    -ms-flex-preferred-size: 106% !important;
    flex-basis: 106% !important;
  }
}

@media (max-width: 767.98px) {
  .box--no-image {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    min-height: 7.5rem;
  }

  .box--no-image .box__heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.1;
  }
}

@media (max-width: 767.98px) {
  .box {
    margin: 0;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

@media (max-width: 1199.98px) {
  .box--spotlight .box:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(236, 60, 89, 0.7);
    z-index: 1;
  }

  .box--spotlight .box__content {
    z-index: 30;
  }
}

/*------------------------------------*\
    #50-molecules introbox
\*------------------------------------*/

.introbox {
  background-color: #1463f4;
  color: #ffffff;
  position: relative;
  background-size: cover;
  background-position: right top;
}

@media (max-width: 767.98px) {
  .introbox {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

.introbox__content {
  min-height: 37.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 30;
  position: relative;
}

.introbox__content h3 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2.2px;
}

@media (max-width: 991.98px) {
  .introbox__content {
    min-height: 0;
    padding-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .introbox__content {
    padding-top: 6rem;
  }
}

.introbox__col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 50%;
  padding: 1.5rem;
  background-position: left bottom;
  background-size: cover;
}

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

.introbox__col--text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 767.98px) {
  .introbox__col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    text-align: left;
  }
}

.introbox--full-width-cols .introbox__col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  text-align: center;
}

.introbox--full-width-cols .introbox__col--right {
  display: none;
}

.introbox--full-width-cols.introbox--align-top .introbox__content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.introbox--full-width-cols.introbox--align-bottom .introbox__content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.introbox--full-width-cols.introbox--align-bottom .introbox__col {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.introbox__top-img {
  position: absolute;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translate(-50%, 70px);
       -o-transform: translate(-50%, 70px);
          transform: translate(-50%, 70px);
  max-width: 12.5rem;
  z-index: 30;
}

.introbox--footer {
  -webkit-transform: translate(0, 200px);
       -o-transform: translate(0, 200px);
          transform: translate(0, 200px);
}

@media (max-width: 767.98px) {
  .introbox--footer {
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media (max-width: 767.98px) {
  .introbox--no-top-image .introbox__content {
    padding-top: 1.5rem;
  }
}

.introbox--mobile-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}

@media (max-width: 767.98px) {
  .introbox--mobile-bg {
    display: block;
  }
}

/*------------------------------------*\
    #50-molecules box
\*------------------------------------*/

/*//*/

/*/ @group stats-box*/

/*//*/

/*/ @group default*/

/*/ @type namespace*/

.stats-box {
  position: relative;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.05;
  margin: 0.75rem 0;
  /* height: 100%;*/
  width: 100%;
  /* z-index: z("content");*/
}

@media (max-width: 575.98px) {
  .stats-box {
    max-width: 15.625rem;
  }
}

.stats-box__container {
  padding: 1.5rem;
  border-image-source: linear-gradient(141deg, #3368fb, #010465);
  border-image-slice: 1;
  border-style: solid;
  border-width: 6px;
  position: relative;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 50;
}

.stats-box__content {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  z-index: 30;
}

.stats-box h1,
.stats-box h2,
.stats-box h3 {
  margin: 0;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
  text-transform: none;
}

.stats-box h4 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.stats-box p {
  margin: 0;
}

.stats-box--bg {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  -webkit-transform: translate(-1.25rem, -1.25rem);
  -o-transform: translate(-1.25rem, -1.25rem);
     transform: translate(-1.25rem, -1.25rem);
  max-width: 12.5rem;
  max-height: 120%;
  width: auto;
}

.stats-box--bg-bottom-right {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(0.75rem, 1.25rem);
  -o-transform: translate(0.75rem, 1.25rem);
     transform: translate(0.75rem, 1.25rem);
}

@media (max-width: 767.98px) {
  .stats-box--bg {
    max-height: 100%;
  }
}

.stats-box--pv-big {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.stats-box--nogradient .stats-box__container {
  mix-blend-mode: normal;
  border-style: solid;
  border-width: 6px;
  border-color: #357bec;
  border-image-source: none;
  border-image-slice: 1;
}

/*------------------------------------*\
    #50-molecules slider
\*------------------------------------*/

.slider {
  position: relative;
  padding: 6rem 0 3rem 0;
  margin: 6rem 0 3rem 0;
}

.slider__bg {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 0;
}

@media (max-width: 767.98px) {
  .slider__bg {
    left: 0;
    right: 0;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

.slider__slides {
  text-align: center;
}

.slider__slide {
  padding: 0 1.5rem;
}

.slider__slide__heading {
  text-transform: none;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -2.2px;
}

.slider__slide__col--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.slider__slide__col--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.slider .owl-dots {
  display: none;
}

.slider--style_2 {
  padding-top: 0;
  margin-top: 0;
}

.slider--style_2 .slider__slide .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider--style_2 .slider__slide__col--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  margin-left: 16.66667%;
}

@media (max-width: 767.98px) {
  .slider--style_2 .slider__slide__col--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .slider--style_2 .slider__slide__col--left img {
    max-width: 30vh;
    margin: 0 auto;
  }
}

.slider--style_2 .slider__slide__col--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
  margin-left: 8.33333%;
  text-align: left;
}

@media (max-width: 767.98px) {
  .slider--style_2 .slider__slide__col--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .slider--style_2 .slider__slide__col--right .slider__slide__heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 3.125rem;
    text-align: center;
  }
}

.slider--style_2 .owl-nav {
  position: absolute;
  bottom: 50%;
  left: 10%;
  right: 10%;
  -webkit-transform: translate(0, 40%);
       -o-transform: translate(0, 40%);
          transform: translate(0, 40%);
  color: #1463f4;
  font-size: 80px;
  font-size: 5rem;
  line-height: 1.05;
}

@media (max-width: 767.98px) {
  .slider--style_2 .owl-nav {
    -webkit-transform: translate(0, 100%);
         -o-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}

.slider--style_2 .owl-nav .owl-prev {
  float: left;
  opacity: 1;
}

.slider--style_2 .owl-nav .owl-prev:hover {
  opacity: 0.8;
  color: #1463f4;
}

.slider--style_2 .owl-nav .owl-next {
  float: right;
  opacity: 1;
}

.slider--style_2 .owl-nav .owl-next:hover {
  opacity: 0.8;
  color: #1463f4;
}

.slider--style_2 .slider__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-left: 50%;
  -webkit-transform: translate(0, -200%);
       -o-transform: translate(0, -200%);
          transform: translate(0, -200%);
  position: relative;
  z-index: 40;
}

@media (max-width: 991.98px) {
  .slider--style_2 .slider__button {
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media (max-width: 767.98px) {
  .slider--style_2 .slider__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    text-align: center;
  }
}

.slider--style_2 .slider__heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-left: 50%;
  position: relative;
  z-index: 40;
  -webkit-transform: translate(0, 90%);
       -o-transform: translate(0, 90%);
          transform: translate(0, 90%);
  color: #1463f4;
}

@media (max-width: 991.98px) {
  .slider--style_2 .slider__heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
    margin-left: 16.66667%;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media (max-width: 767.98px) {
  .slider--style_2 .slider__heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .slider--style_2 .owl-nav {
    display: none;
  }

  .slider--style_2 .owl-dots {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
  }
}

/*------------------------------------*\
    #50-molecules insights-box
\*------------------------------------*/

.insights-box {
  padding: 3rem;
  padding-top: 6rem;
  position: relative;
  -webkit-transform: translate(0, -90px);
       -o-transform: translate(0, -90px);
          transform: translate(0, -90px);
}

@media (max-width: 767.98px) {
  .insights-box {
    padding-top: 3rem;
  }
}

.insights-box__content {
  text-align: right;
  font-weight: bold;
  position: relative;
  z-index: 40;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 40px;
  letter-spacing: -1.7px;
}

.insights-box__content strong {
  font-size: 64px;
  font-size: 4rem;
  line-height: 40px;
  letter-spacing: -3.6px;
}

.insights-box__heading {
  color: #ffffff;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  text-align: right;
  font-weight: bold;
  margin-bottom: 3rem;
  position: relative;
  z-index: 40;
  letter-spacing: -2.2px;
}

@media (max-width: 767.98px) {
  .insights-box__heading {
    text-align: left;
  }
}

.insights-box__image {
  position: absolute;
  bottom: -1.5rem;
  right: -3rem;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  z-index: 30;
}

@media (max-width: 767.98px) {
  .insights-box__image {
    position: static;
    margin-bottom: 1.5rem;
  }
}

.insights-box__image-col {
  position: static;
}

/*------------------------------------*\
    #50-molecules leadership
\*------------------------------------*/

.leadership__element {
  display: block;
  max-width: 31.25rem;
  position: relative;
  float: left;
}

.leadership__element img {
  max-width: none;
  width: 100%;
}

.leadership__text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  color: #ffffff;
  font-weight: bold;
  padding: 1.5rem;
}

.leadership__text--name {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 0.9;
  margin-bottom: 0.75rem;
}

.leadership__text--position {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

/*------------------------------------*\
    #50-molecules popup
\*------------------------------------*/

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 25rem;
  padding: 3rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 90;
}

/*------------------------------------*\
    #50-molecules pancake
\*------------------------------------*/

/*//*/

/*/ @group pancake*/

/*//*/

/*/ @group default*/

/*/ @type namespace*/

.pancake {
  background-image: url(/wp-content/themes/samba/dist/images/bg-pancake.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 48.75rem;
  position: relative;
}

@media (max-width: 991.98px) {
  .pancake {
    background-position: top center;
    background-size: cover;
  }
}

@media (max-width: 767.98px) {
  .pancake {
    min-height: 53.125rem;
  }
}

.pancake__image {
  position: absolute;
  max-width: 18.75rem;
  max-height: 28.75rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
  height: auto;
  z-index: 2;
}

.pancake__image img {
  width: auto;
  height: auto;
}

@media (max-width: 767.98px) {
  .pancake__image img {
    max-width: none;
    height: 485px;
    width: 295px;
  }
}

.pancake__text {
  position: absolute;
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
  z-index: 3;
  width: 100%;
}

.pancake__text p {
  margin: 0;
}

.pancake__text ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.pancake__text ul li {
  opacity: 0.8;
  font-family: Larsseit;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.1;
  letter-spacing: -1.1px;
  color: #ffffff;
  padding: 0;
  margin: 0;
  text-align: center;
}

.pancake__title {
  position: absolute;
  left: 64%;
  top: 40%;
  max-width: 16.25rem;
}

@media (max-width: 1199.98px) {
  .pancake__title {
    left: 70%;
  }
}

@media (max-width: 767.98px) {
  .pancake__title {
    text-align: center;
    top: inherit;
    left: 50%;
    bottom: 6%;
    max-width: 90%;
    width: 90%;
    -webkit-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
       transform: translate(-50%, 50%);
  }
}

/*------------------------------------*\
    #70-organisms ORGANISMS CLASSES
\*------------------------------------*/

/*------------------------------------*\
    #70-organisms header
\*------------------------------------*/

.header {
  position: relative;
}

.header__banner {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 23.125rem;
}

.header__banner__content {
  position: absolute;
  top: 2.25rem;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
}

.header__banner__content--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.header__banner__content--top {
  position: absolute;
  top: 9.375rem;
  left: 0;
  right: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .header__banner__content--top {
    text-align: left;
  }
}

.header__banner__image {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: auto;
  min-width: 100%;
  width: auto;
  height: auto;
  max-width: initial;
  max-height: 23.125rem;
}

.header__banner--simple {
  min-height: 4.375rem;
  background-color: #ffffff;
  color: #000000;
}

.header__banner--simple a {
  color: #000000;
}

.header__banner--simple a:hover {
  color: #000000;
}

.header h1 a {
  color: inherit;
}

.header h1 a:hover {
  text-decoration: none;
  color: #ffffff;
}

.header__banner--style_1 {
  min-height: 64rem;
}

.header__banner--style_1 .header__banner {
  max-height: none;
}

.header__banner--style_1 .header__banner__image {
  max-height: none;
}

.header__banner--style_1 .button--text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.08333rem;
  letter-spacing: 3px;
  margin-top: 6rem;
}

@media (max-width: 767.98px) {
  .header__banner--style_1 .button--text {
    margin-top: 1.5rem;
  }
}

.header__banner--style_1 .button--text:hover {
  color: #ffffff;
}

.header__banner--style_1 .button--text .arrow .fa {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 4.16667rem;
}

.header__text--1 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.08333rem;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .header__text--1 {
    text-align: left;
  }
}

.header__text--2 {
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.05;
  margin-top: 0.375rem;
}

@media (max-width: 767.98px) {
  .header__text--2 {
    text-align: left;
  }
}

.header__text--3 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.08333rem;
}

@media (max-width: 767.98px) {
  .header__text--3 {
    text-align: left;
  }
}

.header__introbox {
  -webkit-transform: translate(0, -18.75rem);
       -o-transform: translate(0, -18.75rem);
          transform: translate(0, -18.75rem);
  margin-bottom: -18.75rem;
}

.header--about {
  background-color: #126def;
}

.header--about .header__banner--simple {
  background-color: transparent;
}

.header--about .header__banner--simple a {
  color: #ffffff;
}

.header--about .header__banner__content {
  position: static;
  margin-top: 2.25rem;
}

.header__about--top {
  padding-top: 6rem;
  background-image: -webkit-linear-gradient(top, #126def, rgba(66, 75, 163, 0.8));
  background-image: -o-linear-gradient(top, #126def, rgba(66, 75, 163, 0.8));
  background-image: linear-gradient(to bottom, #126def, rgba(66, 75, 163, 0.8));
}

.header__about__quote {
  position: relative;
}

.header__about__quote:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #14183a);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), #14183a);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #14183a);
  z-index: 30;
}

.header__about__quote__image {
  opacity: 0.8;
}

.header__about__quote__text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
  z-index: 40;
}

.header__about__quote__text--quote {
  font-size: 5vw;
  position: relative;
  display: inline-block;
  z-index: 30;
}

.header__about__quote__text--quote span {
  display: inline-block;
  position: relative;
  z-index: 30;
}

.header__about__quote__text--quote:before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15vw;
  font-weight: bold;
  color: #1463f4;
  text-shadow: none;
  z-index: 20;
  -webkit-transform: translate(-80%, -19%);
       -o-transform: translate(-80%, -19%);
          transform: translate(-80%, -19%);
}

.header__about__quote__text--quote:after {
  content: '\201D';
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 15vw;
  font-weight: bold;
  color: #1463f4;
  text-shadow: none;
  z-index: 20;
  -webkit-transform: translate(80%, 75%);
       -o-transform: translate(80%, 75%);
          transform: translate(80%, 75%);
}

@media (max-width: 767.98px) {
  .header__about__quote__text--quote {
    font-size: 8vw;
  }
}

.header__about__quote__text--author {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

/*------------------------------------*\
    #70-organisms footer
\*------------------------------------*/

.footer {
  position: relative;
}

.footer__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer__bottom {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.66667rem;
  color: #ffffff;
  background-color: #000000;
}

.footer__slogan {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 0.9;
  font-weight: 700;
  color: #707584;
  padding-top: 1.5rem;
  letter-spacing: -2px;
}

.footer__copyright {
  color: #707584;
  position: absolute;
  bottom: 0;
}

.footer--home {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
}

@media (max-width: 767.98px) {
  .footer--home {
    position: static;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer--home ul li {
    margin: 0 0.4875rem;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.25rem;
  }

  .footer--home ul li:first-child {
    margin-left: 0;
  }

  .footer--home ul li:last-child {
    margin-right: 0;
  }

  .footer--home ul li:after {
    right: -0.6rem;
  }
}

@media (max-width: 767.98px) {
  .footer__copyright {
    position: relative;
  }
}

.footer__contact {
  background-color: #0b57e4;
  background-image: -webkit-linear-gradient(60deg, #063282, #0845b3);
  background-image: -o-linear-gradient(60deg, #063282, #0845b3);
  background-image: linear-gradient(30deg, #063282, #0845b3);
  padding: 6rem 0;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .footer__contact {
    padding: 3rem 0;
  }
}

.footer--has-introbox {
  padding-top: 18.75rem;
}

@media (max-width: 767.98px) {
  .footer--has-introbox {
    padding-top: 3rem;
  }
}

footer.framed-page .footer__container {
  padding-top: 6rem;
  max-width: 1300px;
}

footer.framed-page .logo {
  max-width: 12rem;
}

footer.framed-page .row {
  padding-left: 227px;
}

@media screen and (max-width: 1300px) {
  footer.framed-page .row {
    margin-left: 60px;
  }
}

@media screen and (max-width: 900px) {
  footer.framed-page .row {
    margin-left: 20px;
  }
}

@media screen and (max-width: 800px) {
  footer.framed-page .row {
    margin-left: 0;
  }
}

footer.framed-page .footer__slogan {
  color: #868CAF;
  font-family: "Helvetica Neue Bold";
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
}

footer.framed-page .footer__slogan .hidden-md-down {
  display: none;
}

footer.framed-page p.footer__copyright {
  color: #FFFFFF;
  font-family: "Helvetica Neue Medium";
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

footer.framed-page.home2018 .footer__slogan {
  color: #868CAF;
  font-family: "Helvetica Neue Bold";
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #868CAF;
  line-height: 36px;
}

footer.framed-page.home2018 .footer__slogan .hidden-md-down {
  display: none;
}

footer.framed-page.home2018 p.footer__copyright {
  color: #FFFFFF;
  font-family: "Helvetica Neue Medium";
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

footer.framed-page.home2018 li.menu-item {
  color: #FFFFFF;
  font-family: "Helvetica Neue Light";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.67px;
  line-height: 32px;
}

footer.framed-page.home2018 li.menu-item.menu-item-has-children {
  color: #FFFFFF;
  font-family: "Helvetica Neue Medium";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 44px;
}

footer.framed-page.home2018 li.menu-item.menu-item-has-children a {
  color: #fff;
}

footer.framed-page.about2018 {
  background-color: #F8F9FE;
}

footer.framed-page.about2018 .footer__slogan {
  color: #212530;
  font-family: "Helvetica Neue Bold";
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 36px;
}

footer.framed-page.about2018 .footer__slogan .hidden-md-down {
  display: none;
}

footer.framed-page.about2018 p.footer__copyright {
  color: #212530;
  font-family: "Helvetica Neue Medium";
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

footer.framed-page.about2018 li.menu-item {
  color: #212530;
  font-family: "Helvetica Neue Light";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.67px;
  line-height: 32px;
}

footer.framed-page.about2018 li.menu-item a {
  color: #212530;
}

footer.framed-page.about2018 li.menu-item.menu-item-has-children {
  color: #212530;
  font-family: "Helvetica Neue Medium";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 44px;
}

footer.framed-page.about2018 li.menu-item.menu-item-has-children a {
  color: #212530;
}

/*------------------------------------*\
    #70-organisms nav
\*------------------------------------*/

.nav {
  padding: 1.5rem 0;
}

.nav--top {
  padding-top: 2.25rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px 0 rgba(0, 1, 0, 0.1);
  z-index: 80;
  width: 100% !important;
}

.nav--container {
  opacity: 1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, -100%);
       -o-transform: translate(0, -100%);
          transform: translate(0, -100%);
  z-index: 80;
  -webkit-transition: opacity .2s ease-out, -webkit-transform .3s ease-out;
  transition: opacity .2s ease-out, -webkit-transform .3s ease-out;
  -o-transition: opacity .2s ease-out, -o-transform .3s ease-out;
  transition: transform .3s ease-out, opacity .2s ease-out;
  transition: transform .3s ease-out, opacity .2s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
}

.nav--container.nav--is-fixed {
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.nav--mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(27, 35, 82, 0.8);
  z-index: 100;
  color: #ffffff;
  padding-top: 2.25rem;
}

.nav--mobile__container {
  overflow-y: scroll;
  margin-top: 2.25rem;
  max-height: calc(100vh - 100px);
}

.nav--pagination ul {
  display: block;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.nav--pagination ul li {
  display: inline-block;
  border: 1px solid #f0f1f1;
}

.nav--pagination ul li a {
  display: inline-block;
  padding: 0.1875rem 0.5625rem;
  color: #a3a5a4;
}

.nav--pagination ul li.dots {
  padding: 0.1875rem 0.5625rem;
  color: #707584;
}

.nav--pagination ul li.active,
.nav--pagination ul li:hover:not(.dots) {
  border-color: #89ccf7;
  background-color: #f7fcfe;
}

.nav--pagination ul li.active a,
.nav--pagination ul li:hover:not(.dots) a {
  color: #1463f4;
}

.nav--home a {
  position: fixed;
  top: 2.25rem;
  right: 2.25rem;
  z-index: 80;
}

.nav--main {
  overflow: hidden;
  display: none;
  padding: 0;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  z-index: 80;
  box-shadow: 0 2px 4px 0 rgba(0, 1, 0, 0.1);
  padding: 0;
}

.nav--main__container {
  margin-top: 2.25rem;
  padding: 0 2.25rem;
}

.nav--main__wrapper {
  padding: 1.5rem 0;
  padding-top: 2.25rem;
}

/*------------------------------------*\
    #70-organisms section
\*------------------------------------*/

.bg--gradient-1 {
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #ffffff), -webkit-linear-gradient(#ecf0f8, #ecf0f8);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #ffffff), -o-linear-gradient(#ecf0f8, #ecf0f8);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff), linear-gradient(#ecf0f8, #ecf0f8);
}

.bg--curves {
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 12.5rem;
}

@media (max-width: 767.98px) {
  .bg-mobile-hidden {
    background-image: none !important;
  }
}

/*------------------------------------*\
    #80-templates TEMPLATES CLASSES
\*------------------------------------*/

/*------------------------------------*\
    #80-templates home
\*------------------------------------*/

body.home {
  background-image: -webkit-linear-gradient(355deg, #212b65, #34449f);
  background-image: -o-linear-gradient(355deg, #212b65, #34449f);
  background-image: linear-gradient(95deg, #212b65, #34449f);
  color: #ffffff;
  line-height: normal;
  height: auto;
  min-height: 100%;
}

body.home .slogan {
  margin-top: 6rem;
}

body.home .main {
  position: static;
  background-color: transparent;
  height: 100%;
}

body.home .wrap {
  height: 100%;
  background-color: transparent;
}

body.home .wrapper {
  background-color: transparent;
}

body.home .nav {
  position: relative;
  z-index: 70;
}

body.home .container--home {
  margin-left: 7%;
}

@media (max-width: 575.98px) {
  body.home .container--home .col-xs-6 {
    padding-left: 0;
  }
}

body.home svg {
  max-width: none !important;
}

body.home .smb-container img {
  width: auto !important;
}

body.home .in-commertial {
  box-sizing: initial;
}

body.home .slider {
  margin: 0 !important;
  padding: 0 !important;
}

body.home .recommendations-container .title {
  margin-top: 1em;
  margin-bottom: 1em;
}

/*------------------------------------*\
    #80-templates 404
\*------------------------------------*/

body.error404 {
  background-image: -webkit-linear-gradient(355deg, #212b65, #34449f);
  background-image: -o-linear-gradient(355deg, #212b65, #34449f);
  background-image: linear-gradient(95deg, #212b65, #34449f);
  color: #ffffff;
}

body.error404 .main {
  position: static;
  background-color: transparent;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.error404 .wrap {
  height: 100%;
  background-color: transparent;
}

body.error404 .wrapper {
  background-color: transparent;
  height: 100%;
}

/*------------------------------------*\
    #80-templates about
\*------------------------------------*/

.about__section--1 {
  background: #14183a;
  color: #ffffff;
  text-align: right;
}

.about__section--1 .about__section__content {
  -webkit-transform: translate(0, -9.375rem);
       -o-transform: translate(0, -9.375rem);
          transform: translate(0, -9.375rem);
}

.about__section__introbox {
  position: relative;
  min-height: 12.5rem;
}

.about__section__introbox-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.about__section--2 {
  min-height: 31.25rem;
}

.about__section--leadership {
  color: #5575a2;
}

body.page-template-templatestemplate-about-php .header__banner--style_1 {
  min-height: 0;
}

/*------------------------------------*\
    #80-templates home2018
\*------------------------------------*/

body.page-template-template-home2018 {
  padding: 0;
  height: auto;
  /**
	 *  Type adjustments
	 */
  /**
	 *  Grid adjustments
	 */
  /**
	 * need to move styling from body 
	 */
}

body.page-template-template-home2018 h1,
body.page-template-template-home2018 h2,
body.page-template-template-home2018 h3,
body.page-template-template-home2018 h4,
body.page-template-template-home2018 h5,
body.page-template-template-home2018 h6 {
  color: #fff;
  font-family: "Helvetica Neue Bold", helvetica, arial, sans-serif;
  font-weight: 700;
}

body.page-template-template-home2018 p {
  color: #fff;
  font-weight: 300;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.67px;
}

body.page-template-template-home2018 h2 {
  font-family: "Helvetica Neue Bold";
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.58px;
  line-height: 32px;
  margin-bottom: 20px;
}

body.page-template-template-home2018 .row {
  padding: 0 120px;
}

@media screen and (max-width: 1170px) {
  body.page-template-template-home2018 .row {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 .row {
    padding-left: 40px;
    padding-right: 40px;
  }
}

body.page-template-template-home2018 .row div[class^="col-"] {
  padding-left: 0;
}

body.page-template-template-home2018 .main {
  padding: 100px;
  padding-bottom: 0;
  background-image: -webkit-linear-gradient(top, #30387B 0%, #30387B 70%, #191539 100%);
  background-image: -o-linear-gradient(top, #30387B 0%, #30387B 70%, #191539 100%);
  background-image: linear-gradient(180deg, #30387B 0%, #30387B 70%, #191539 100%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 .main {
    padding: 50px;
  }
}

@media screen and (max-width: 600px) {
  body.page-template-template-home2018 .main {
    padding: 0;
  }
}

body.page-template-template-home2018 .main .main-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

body.page-template-template-home2018 .main .s-top-fader {
  background: -webkit-linear-gradient(bottom, transparent 0%, #30387B 100%);
  background: -o-linear-gradient(bottom, transparent 0%, #30387B 100%);
  background: linear-gradient(0deg, transparent 0%, #30387B 100%);
  position: fixed;
  top: 100px;
  height: 0;
  width: 100px;
  z-index: 99;
  opacity: 0;
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 .main .s-top-fader {
    width: 50px;
  }
}

@media screen and (max-width: 600px) {
  body.page-template-template-home2018 .main .s-top-fader {
    width: 0;
  }
}

body.page-template-template-home2018 .main .s-top-fader.left {
  left: 0;
}

body.page-template-template-home2018 .main .s-top-fader.right {
  right: 0;
}

body.page-template-template-home2018 .main .s-top-fader.visible {
  opacity: 1;
  height: 200px;
  -webkit-transition: all 0s ease-in-out 0.75s;
  -o-transition: all 0s ease-in-out 0.75s;
  transition: all 0s ease-in-out 0.75s;
}

body.page-template-template-home2018 .logo-wrapper {
  background-color: #141436;
}

body.page-template-template-home2018 .logo-wrapper .section-inner {
  padding-bottom: 18px;
}

body.page-template-template-home2018 .logo-wrapper .logo-col {
  padding-top: 64px;
  padding-bottom: 30px;
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 .logo-wrapper .logo-col {
    padding-top: 64px;
  }
}

body.page-template-template-home2018 .logo-wrapper .logo-col .logo {
  max-width: 12.875rem;
  text-align: center;
}

body.page-template-template-home2018 section {
  position: relative;
  z-index: 99;
  -webkit-transform: translateZ(10px);
          transform: translateZ(10px);
  outline: none;
}

body.page-template-template-home2018 section .section-inner {
  background-color: #141436;
}

body.page-template-template-home2018 section.standard .section-inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

body.page-template-template-home2018 section.logo-wrapper .section-inner {
  background-image: none;
  background-color: #141436;
}

body.page-template-template-home2018 .front-circle-wrapper {
  position: absolute;
  width: 652px;
  overflow: visible;
  z-index: -1;
}

body.page-template-template-home2018 .front-circle-wrapper img {
  max-width: 100%;
}

/**
 * home2018-menus
 */

nav.home2018--onepage-nav {
  opacity: 0;
  height: 0;
  background: #30387B;
  color: #fff;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  position: fixed;
  -webkit-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}

@media screen and (max-width: 768px) {
  nav.home2018--onepage-nav {
    display: none !important;
  }
}

nav.home2018--onepage-nav .container {
  max-width: 1300px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 720px) {
  nav.home2018--onepage-nav .container {
    margin-left: 0;
    margin-right: 0;
  }
}

nav.home2018--onepage-nav .row {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

nav.home2018--onepage-nav li {
  opacity: 0;
}

nav.home2018--onepage-nav .container,
nav.home2018--onepage-nav .row,
nav.home2018--onepage-nav div[class^='col-'],
nav.home2018--onepage-nav .menu--onepage,
nav.home2018--onepage-nav .menu-item,
nav.home2018--onepage-nav a {
  height: 0 !important;
}

@media screen and (max-width: 720px) {
  nav.home2018--onepage-nav {
    display: none;
  }
}

nav.home2018--onepage-nav.visible {
  display: block;
  opacity: 1;
  z-index: 99999;
  position: fixed;
  top: 0;
  height: 100px;
  padding-top: 39px;
  padding-bottom: 41px;
}

nav.home2018--onepage-nav.visible .container,
nav.home2018--onepage-nav.visible .row,
nav.home2018--onepage-nav.visible div[class^='col-'],
nav.home2018--onepage-nav.visible .menu--onepage,
nav.home2018--onepage-nav.visible .menu-item,
nav.home2018--onepage-nav.visible a {
  height: auto !important;
}

nav.home2018--onepage-nav.visible .logo {
  max-width: 8.875rem;
  margin-bottom: 10px;
}

nav.home2018--onepage-nav.visible ul.menu.menu--onepage {
  text-align: right;
  top: 3px;
  position: relative;
}

nav.home2018--onepage-nav.visible li.menu-item {
  border-bottom: 1px solid transparent;
  font-size: 1rem;
  padding-bottom: 10px;
  opacity: 1;
}

nav.home2018--onepage-nav.visible li.menu-item a {
  color: #fff;
}

nav.home2018--onepage-nav.visible li.menu-item a:hover {
  color: #fff;
}

nav.home2018--onepage-nav.visible li.menu-item a:active {
  color: #fff;
}

nav.home2018--onepage-nav.visible li.menu-item a:visited {
  color: #fff;
}

nav.home2018--onepage-nav.visible li.menu-item.active {
  border-bottom: 1px solid #fff;
}

nav.home2018--onepage-nav.visible li.menu-item.hover {
  border-bottom: 1px solid #fff;
}

nav.home2018--onepage-nav.visible li.s-solid-button.menu-item a {
  border: 1px solid;
  display: block;
  border-radius: 30px;
  padding: 5px 25px;
  background-color: #fff;
  color: #30387B !important;
  -webkit-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

nav.home2018--onepage-nav.visible li.s-solid-button.menu-item a:hover {
  background-color: #e1e1e1;
}

nav.home2018--onepage-nav.visible li.s-solid-button.menu-item:hover {
  border-bottom-width: 0;
}

@media screen and (max-width: 720px) {
  nav.home2018--onepage-nav.visible {
    display: none;
  }
}

body.page-template-template-home2018 .about-2018--mobile-nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: #30387B;
  height: 50px;
  z-index: 9999;
  text-align: right;
  padding-top: 10px;
  max-width: unset;
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 .about-2018--mobile-nav {
    display: block;
  }
}

body.page-template-template-home2018 .about-2018--mobile-nav .container {
  max-width: unset !important;
  padding: 0;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-trigger-wrapper {
  width: 100%;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-hamburger {
  color: #fff;
  font-family: 'FontAwesome';
  text-align: right;
  cursor: pointer;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-hamburger:before {
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 24px;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-hamburger:after {
  color: #fff;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper {
  height: 0;
  opacity: 1;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  width: 100%;
  overflow: hidden;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper ul {
  list-style-type: none;
  text-indent: unset;
  padding: 0;
  display: block;
  margin: 0;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper ul li.mobile-menu__menu-item {
  display: block;
  width: 100%;
  text-align: center;
  height: 0;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper ul li.mobile-menu__menu-item a {
  display: block;
  color: #fff;
  background-color: #30387B;
  border-top: 2px solid #3e49a0;
  padding: 5px;
  font-size: 16px;
  font-family: "Helvetica Neue Medium", helvetica, arial, sans-serif;
  letter-spacing: 0.67px;
  line-height: 38px;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper.open {
  height: 300px;
  opacity: 1;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper.open li.mobile-menu__menu-item {
  height: 50px;
}

body.page-template-template-home2018 .about-2018--mobile-nav .mobile-menu__items-wrapper.open li.mobile-menu__menu-item a {
  height: 50px;
}

/**
 * Home Ovals
 */

.home2018-oval {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  border-radius: 100%;
  width: 652px;
  height: 652px;
  position: absolute;
  z-index: -2;
}

.home2018-oval.hero-rel {
  left: -300px;
  top: -200px;
}

.home2018-oval.intro-rel {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  right: -300px;
  top: 80%;
}

.home2018-oval.trending-rel {
  background-image: -webkit-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #FFDF83 0%, #F05670 100%);
  left: -300px;
  bottom: -550px;
}

.home2018-oval.oem-rel {
  background-image: -webkit-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #FFDF83 0%, #F05670 100%);
  right: -300px;
  bottom: -550px;
}

.home2018-oval.whois-rel {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  left: -300px;
  top: 380px;
}

/**
 * Hero
 */

body.page-template-template-home2018 section.home2018--hero-wrapper {
  background-image: -webkit-radial-gradient(50% 31.47%, #242B67 0%, #110A2B 100%);
  background-image: -o-radial-gradient(50% 31.47%, #242B67 0%, #110A2B 100%);
  background-image: radial-gradient(50% 31.47%, #242B67 0%, #110A2B 100%);
}

body.page-template-template-home2018 section.home2018--hero-wrapper .front-circle-wrapper {
  right: -300px;
  bottom: -600px;
}

.container.hero2018 {
  position: relative;
}

.container.hero2018 .row {
  padding-top: 70px;
  padding-bottom: 60px;
}

.container.hero2018 .row.circle-bg {
  background: url(/wp-content/themes/samba/dist/images/home2018/circles/circles-home-hero-waves-opt.png) center top no-repeat;
  background-size: 45%;
  padding-right: 100px;
  -webkit-transform: perspective(500px);
          transform: perspective(500px);
}

@media screen and (max-width: 768px) {
  .container.hero2018 .row.circle-bg {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 720px) {
  .container.hero2018 .row.circle-bg {
    background-size: 65%;
  }
}

.container.hero2018 .title-wrapper {
  position: relative;
  z-index: 9;
}

.container.hero2018 .title-wrapper .short-separator {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.container.hero2018 h1 {
  font-size: 48px;
  margin-bottom: 62px;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 60px;
  font-weight: bold;
}

@media screen and (max-width: 1020px) {
  .container.hero2018 h1 {
    font-size: 68px;
  }
}

@media screen and (max-width: 800px) {
  .container.hero2018 h1 {
    font-size: 56px;
  }
}

@media screen and (max-width: 768px) {
  .container.hero2018 h1 {
    font-size: 56px;
    line-height: 50px;
  }
}

@media screen and (max-width: 630px) {
  .container.hero2018 h1 {
    font-size: 56px;
    line-height: 50px;
  }
}

.container.hero2018 p.hero-text {
  padding-left: 20px;
  font-weight: 300;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.67px;
  position: relative;
  z-index: 99;
}

.container.hero2018 p.hero-text strong {
  font-family: "Helvetica Neue Bold";
}

@media screen and (max-width: 768px) {
  .container.hero2018 p.hero-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 630px) {
  .container.hero2018 p.hero-text {
    position: relative;
    top: 20px;
    font-size: 20px;
    padding-left: 0;
  }
}

.container.hero2018 .hero-text-wrapper .row {
  padding-left: 0;
  padding-right: 0;
}

.container.hero2018 .hero-text-wrapper .app-download-icons {
  z-index: 1;
  position: relative;
}

.container.hero2018 .hero-text-wrapper .app-download-icons .row {
  padding-top: 0;
}

.container.hero2018 .hero-text-wrapper .app-download-icons .arrow img {
  height: 47px;
  width: 50px;
}

.container.hero2018 .hero-text-wrapper .app-download-icons div[class^="col-"] {
  position: relative;
}

.container.hero2018 .hero-text-wrapper .app-download-icons a {
  display: block;
  outline: none;
  -webkit-transition: background 0.25s ease-out;
  -o-transition: background 0.25s ease-out;
  transition: background 0.25s ease-out;
}

.container.hero2018 .hero-text-wrapper .app-download-icons a:hover {
  outline: none;
  background: #e1e1e1;
}

.container.hero2018 .hero-text-wrapper .app-download-icons a:active {
  outline: none;
}

.container.hero2018 .hero-text-wrapper .app-download-icons a:visited {
  outline: none;
}

.container.hero2018 .hero-text-wrapper .app-download-icons .app-icon-wrapper {
  background: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  text-align: center;
  position: relative;
  margin-left: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container.hero2018 .hero-text-wrapper .app-download-icons .app-icon-wrapper.ios img {
  display: block;
  margin: 0 auto;
  height: 35px;
  width: 35px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container.hero2018 .hero-text-wrapper .app-download-icons .app-icon-wrapper.android img {
  display: block;
  margin: 0 auto;
  height: 38px;
  width: 32px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container.hero2018 .iphone {
  position: absolute;
  top: 100%;
  left: 15%;
  z-index: 0;
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
}

@media screen and (max-width: 720px) {
  .container.hero2018 .iphone {
    left: 20%;
  }
}

.container.hero2018 .iphone img {
  max-width: 833px;
}

.container.hero2018 .iphone.final {
  top: 15%;
}

@media screen and (max-width: 970px) {
  .container.hero2018 .iphone.final {
    top: 22%;
  }
}

@media screen and (max-width: 860px) {
  .container.hero2018 .iphone.final {
    top: 23%;
  }
}

@media screen and (max-width: 800px) {
  .container.hero2018 .iphone.final {
    top: 22%;
  }
}

@media screen and (max-width: 575px) {
  .container.hero2018 .iphone.final {
    top: 12%;
  }
}

@media screen and (max-width: 484px) {
  .container.hero2018 .iphone.final {
    top: 16%;
  }
}

@media screen and (max-width: 414px) {
  .container.hero2018 .iphone.final {
    top: 19%;
  }
}

.container.hero2018 .press-logos {
  margin-top: 290px;
}

@media screen and (max-width: 800px) {
  .container.hero2018 .press-logos {
    margin-top: 100px;
  }
}

.container.hero2018 .press-logos .container .row {
  padding: 0;
}

.container.hero2018 .press-logos .container .row div {
  padding-right: 20px;
}

.container.hero2018 .press-logos .container .row div:first-child {
  margin-left: 0;
  padding-left: 0;
}

.container.hero2018 .press-logos .container .row div.wsj {
  padding-right: 20px;
}

.container.hero2018 .press-logos .container .row div.tc {
  padding-right: 20px;
}

.container.hero2018 .press-logos .container .row div img {
  max-width: 111px;
  max-height: 40px;
}

.container.hero2018 .press-logos .container .row div:last-child {
  padding-right: 0;
}

@media screen and (max-width: 630px) {
  .container.hero2018 .press-logos .container .row div {
    margin-bottom: 20px;
  }
}

.container.hero2018 .press-logos .press-heading {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.container.hero2018 .press-logos .short-separator {
  margin-top: 43px;
}

/**
 * home2018-intro
 */

body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner {
  background-image: -webkit-radial-gradient(33.92% 51.42%, #26267B 0%, #141436 100%);
  background-image: -o-radial-gradient(33.92% 51.42%, #26267B 0%, #141436 100%);
  background-image: radial-gradient(33.92% 51.42%, #26267B 0%, #141436 100%);
  background-size: 100% 80%;
  padding-bottom: 300px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 580px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner {
    padding-bottom: 120px;
  }
}

body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row {
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row {
    padding-right: 0;
  }
}

body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .intro-tv-wrapper {
  position: relative;
}

body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .intro-tv-wrapper img {
  position: relative;
  top: -70px;
  max-width: 450px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .intro-text {
    top: -40px;
  }
}

body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .animate-text {
  z-index: 99;
}

@media screen and (max-width: 11450px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .animate-text.intro-text {
    top: -10px !important;
  }
}

@media screen and (max-width: 1100px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .animate-text.intro-text {
    top: -40px !important;
  }
}

@media screen and (max-width: 494px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .animate-text.intro-text {
    top: 0 !important;
  }
}

@media screen and (max-width: 414px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .section-inner .row.anim-row .animate-text.intro-text {
    top: 60px !important;
  }
}

body.page-template-template-home2018 section.home2018--intro-wrapper .front-circle-wrapper {
  left: -300px;
  bottom: -675px;
}

body.page-template-template-home2018 section.home2018--intro-wrapper .container {
  padding-top: 167px;
  position: relative;
  overflow: visible;
}

body.page-template-template-home2018 section.home2018--intro-wrapper .container .row {
  overflow: visible;
}

body.page-template-template-home2018 section.home2018--intro-wrapper .iphone {
  position: absolute;
  top: 100%;
  opacity: 0;
  left: 0;
  padding-left: 120px;
}

body.page-template-template-home2018 section.home2018--intro-wrapper .iphone img {
  max-width: 800px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--intro-wrapper .iphone {
    padding-left: 0;
    max-width: 450px;
  }
}

/**
 * home2018-trending
 */

body.page-template-template-home2018 section.home2018--trending-wrapper .section-inner {
  padding-top: 60px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container {
  overflow: visible;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container .row {
  overflow: visible;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container .row.trending-row {
  padding-right: 0;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container .row.trending-row .trending-col {
  margin-left: -20px;
  width: 100%;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container .row h2 {
  margin-bottom: 0;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .container .front-circle-wrapper {
  left: -100px;
  top: -80px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper {
  width: 100%;
  margin-bottom: 20px;
  padding-left: 120px;
  padding-right: 0;
  top: 45px;
  position: relative;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media screen and (max-width: 1170px) {
  body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper {
    padding-left: 60px;
    padding-right: 0;
  }
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper {
    padding-left: 40px;
    padding-right: 0;
  }
}

@media screen and (max-width: 600px) {
  body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper {
    padding-left: 0;
    left: -20px;
    position: relative;
  }
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .samba-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 0%;
  width: 0%;
  background: transparent;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(20, 20, 54, 0.5) 95%, #141436 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(20, 20, 54, 0.5) 95%, #141436 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(20, 20, 54, 0.5) 95%, #141436 100%);
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-stage-outer {
  overflow-y: hidden;
  padding-bottom: 45px;
  padding-top: 20px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-stage-outer:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  height: 100%;
  width: 15%;
  background: transparent;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #141436 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #141436 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #141436 100%);
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav {
  text-align: right;
  position: relative;
  top: -287px;
  z-index: 99;
  left: 80%;
  width: 20%;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-prev {
  display: none;
  margin-right: 2em;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-prev i,
body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-prev i:before {
  color: #fff;
  font-size: 20px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-next {
  display: block;
  position: relative;
  right: 0;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-next i,
body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-nav .owl-next i:before {
  color: #fff;
  font-size: 32px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card {
  width: 100%;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner {
  position: relative;
  max-width: 300px;
  border-radius: 10px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-bg {
  height: 450px;
  width: 300px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 20px 0 #000000;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-header {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  max-width: 300px;
  padding-top: 17px;
  padding-left: 20px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-header .rank {
  color: #FFFFFF;
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.86px;
  line-height: 14px;
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 100%;
  background-color: #F26B6E;
  text-align: center;
  position: relative;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-header .rank .rank-inner {
  position: relative;
  top: 52%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-header .rank span.hash {
  font-size: 6px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-header .viewers {
  position: relative;
  color: #FFFFFF;
  font-family: 'Helvetica Neue Light';
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 17px;
  width: 70%;
  margin-left: 5%;
  display: inline-block;
  top: 8px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  max-width: 300px;
  padding-left: 20px;
  height: 230px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer .network-logo {
  position: absolute;
  top: 0;
  left: 20px;
  height: 43px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer .network-logo img {
  width: 60px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer .network-logo.nbc img {
  height: 43px;
  width: 57px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer .network-logo.history img {
  height: 27px;
  width: 30px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer .network-logo.fx img {
  height: 20px;
  width: 33px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer h3 {
  position: absolute;
  top: 50px;
  left: 20px;
  color: #FFFFFF;
  font-family: 'Helvetica Neue Bold';
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 32px;
  max-width: 100%;
  max-width: 300px;
  text-transform: unset;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .card .card-inner .card-footer p {
  position: absolute;
  bottom: 0;
  left: 20px;
  color: #FFFFFF;
  font-family: 'Helvetica Neue Light';
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 17px;
  max-width: 300px;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-carousel {
  opacity: 0;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-carousel .owl-item {
  opacity: 0;
  -webkit-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 1.25s ease-out;
  -o-transition: all 1.25s ease-out;
  transition: all 1.25s ease-out;
  -webkit-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-carousel.owl-loaded {
  opacity: 1;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .trending-cards__wrapper .owl-carousel.owl-loaded .owl-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: fade-slide-in-up 1.25s ease-out;
       -o-animation: fade-slide-in-up 1.25s ease-out;
          animation: fade-slide-in-up 1.25s ease-out;
}

body.page-template-template-home2018 section.home2018--trending-wrapper .short-separator {
  margin-bottom: 138px;
}

/**
 * home2018-whatis
 */

body.page-template-template-home2018 section.home2018--whatis-wrapper .section-inner {
  background-image: unset;
  background: #181C4C;
}

body.page-template-template-home2018 section.home2018--whatis-wrapper .section-inner .btn-spacer {
  height: 10px;
}

body.page-template-template-home2018 section.home2018--whatis-wrapper .front-circle-wrapper {
  left: -100px;
  top: -400px;
}

/**
 * home2018-oem
 */

body.page-template-template-home2018 section.home2018--oem-wrapper .section-inner {
  background-image: unset;
  background: #141435;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .section-inner .animate-text {
  padding-top: 80px;
}

@media screen and (min-width: 1246px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .section-inner .animate-text {
    padding-top: 80px;
  }
}

@media screen and (max-width: 1246px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .section-inner .animate-text {
    padding-top: 60px;
  }
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .section-inner .animate-text {
    padding-top: 0;
  }
}

body.page-template-template-home2018 section.home2018--oem-wrapper .front-circle-wrapper {
  left: -300px;
  top: 380px;
}

body.page-template-template-home2018 section.home2018--oem-wrapper p {
  margin-bottom: 35px;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .ghost-button {
  display: block;
  max-width: 50%;
  text-align: center;
}

@media screen and (max-width: 1295px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .ghost-button {
    max-width: 75%;
  }
}

@media screen and (max-width: 1022px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .ghost-button {
    max-width: 100%;
  }
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container {
  height: 350px;
  overflow: hidden;
  position: relative;
  top: -10px;
  opacity: 0;
}

@media screen and (max-width: 800px) {
  body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container {
    pointer-events: none;
    top: 0;
  }
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container .oem-logo__container {
  padding: 30px 25px;
  text-align: center;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container .oem-logo__container img {
  height: 25px;
  width: auto;
  margin: 0 auto;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container .oem-logo__container img[alt^="Beko"] {
  height: 66px;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container .oem-logo__container img[alt^="Sanyo"] {
  height: 39px;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .oem-logos__container .oem-logo__container img[alt^="Westinghouse"] {
  height: 62px;
}

body.page-template-template-home2018 section.home2018--oem-wrapper .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body.page-template-template-home2018 section.home2018--oem-wrapper .slick-slide.slick-active {
  opacity: 1;
}

/**
 * home2018-whois
 */

body.page-template-template-home2018 section.home2018--whois-wrapper .section-inner {
  background-image: unset;
  background: #181C4C;
}

body.page-template-template-home2018 section.home2018--whois-wrapper .section-inner .btn-spacer {
  height: 10px;
}

body.page-template-template-home2018 section.home2018--whois-wrapper .row {
  margin-top: 35px;
}

body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper .stat {
  color: #FFFFFF;
  font-family: 'LuloCleanOne';
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 44px;
}

@media screen and (max-width: 1020px) {
  body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper .stat {
    font-size: 50px;
  }
}

@media screen and (max-width: 880px) {
  body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper .stat {
    font-size: 45px;
  }
}

@media screen and (max-width: 768px) {
  body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper .stat {
    font-size: 60px;
  }
}

body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper .stat-caption {
  color: #FFFFFF;
  font-family: "Helvetica Neue Light";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2.67px;
  line-height: 32px;
  margin-bottom: 20px;
}

@media screen and (max-width: 765px) {
  body.page-template-template-home2018 section.home2018--whois-wrapper .stats-wrapper .stat-wrapper {
    margin-bottom: 60px;
  }
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner {
  background-image: unset;
  background: #141435;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .row:first-child {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  body.page-template-template-home2018 section.home2018--press-wrapper .section-inner h2 {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 594px) {
  body.page-template-template-home2018 section.home2018--press-wrapper .section-inner h2 {
    padding-right: 0;
  }
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item {
  padding-left: 80px;
  position: relative;
  margin-bottom: 110px;
  min-height: 100%;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item .solid-button {
  top: 10px;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item:last-child {
  margin-bottom: 0;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item:before {
  content: '';
  background-repeat: no-repeat;
  background-position: 0 20px;
  background-size: 50%;
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: -35px;
  left: 0;
  opacity: 0.25;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item h3 {
  margin-bottom: 15px;
  margin-left: -0.5em;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item h3:before {
  content: '-';
  display: inline-block;
  position: relative;
  left: -1em;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item.pub-inc:before {
  opacity: 0.1;
  background-image: url(/wp-content/themes/samba/dist/images/home2018/inc-large-logo-opt.png);
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item.pub-tc {
  width: 80%;
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item.pub-tc:before {
  opacity: 0.1;
  background-image: url(/wp-content/themes/samba/dist/images/home2018/tc-large-logo-opt.png);
}

@media screen and (max-width: 594px) {
  body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item.pub-tc {
    width: 100%;
  }
}

body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item.pub-latimes:before {
  width: 150%;
  background-image: url(/wp-content/themes/samba/dist/images/home2018/latimes-large-logo-2-opt.png);
  background-size: 55%;
}

@media screen and (max-width: 630px) {
  body.page-template-template-home2018 section.home2018--press-wrapper .section-inner .press-items .press-item {
    padding-left: 10px;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper {
  display: none;
}

body.page-template-template-home2018 section.home2018--help-wrapper .section-inner {
  background-image: unset;
  background: #fff !important;
}

body.page-template-template-home2018 section.home2018--help-wrapper h2 {
  color: #000;
  margin-bottom: 90px;
}

body.page-template-template-home2018 section.home2018--help-wrapper div {
  color: #000;
}

body.page-template-template-home2018 section.home2018--help-wrapper p {
  color: #000;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: flext-start;
      -ms-flex-pack: flext-start;
          justify-content: flext-start;
}

@media screen and (max-width: 768px) {
  body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper {
    display: block;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-label {
  min-width: 196px;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-label h3 {
  display: inline-block;
  font-family: 'Helvetica Neue Light';
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.83px;
  line-height: 44px;
  color: #000;
  text-transform: unset;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box {
  display: inline-block;
  overflow: hidden;
  height: 80px;
  margin-left: 1.5em;
  position: relative;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
  body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box {
    display: block;
    width: 100%;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box:after {
  font-family: 'FontAwesome';
  content: '\F078';
  height: 40px;
  width: 40px;
  font-size: 25px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box input.s-selected-option {
  font-family: 'Helvetica Neue Bold';
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.83px;
  line-height: 44px;
  border-width: 0;
  -webkit-appearance: none;
  background-color: transparent;
  border-bottom: 2px solid #000;
  box-shadow: none;
  padding-bottom: 21px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box input.s-selected-option {
    max-width: 260px;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box input.s-selected-option:focus {
  outline: none;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box .s-select-options {
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 88px;
  left: 0;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box .s-select-options .s-select-option {
  font-family: 'Helvetica Neue Bold';
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.83px;
  line-height: 30px;
  -webkit-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box .s-select-options .s-select-option:hover {
  background-color: #ddd;
  cursor: pointer;
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box.open {
  overflow: visible;
  height: 400px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box.open input {
    max-width: 260px;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box.open .s-select-options {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 992px) {
  body.page-template-template-home2018 section.home2018--help-wrapper .s-select-wrapper .s-select-box.open .s-select-options {
    max-width: 260px;
  }
}

body.page-template-template-home2018 section.home2018--help-wrapper .short-separator {
  border-color: #000;
  margin-top: 60px;
  margin-bottom: 60px;
}

.animate-text {
  position: relative;
  top: 80%;
  opacity: 0;
  z-index: 99;
}

.animate-text.final {
  top: 0;
  opacity: 1;
}

.bring-to-front {
  z-index: 99;
}

/**
 * partials/footer-home2018
 */

.footer__bottom.home2018 {
  background-color: #191539;
  color: #fff;
}

/**
 * Animations
 */

@-webkit-keyframes fade-slide-in-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }

  80% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes fade-slide-in-up {
  0% {
    -o-transform: translateY(100%);
       transform: translateY(100%);
    opacity: 0;
  }

  80% {
    -o-transform: translateY(-5px);
       transform: translateY(-5px);
    opacity: 1;
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-slide-in-up {
  0% {
    -webkit-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }

  80% {
    -webkit-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*------------------------------------*\
    #80-templates about2018
\*------------------------------------*/

body.page-template-template-about2018 {
  padding: 0;
  height: auto;
  /**
	 *  Type adjustments
	 */
  /**
	 *  Grid adjustments
	 */
  /**
	 * need to move styling from body 
	 */
}

body.page-template-template-about2018 h1,
body.page-template-template-about2018 h2,
body.page-template-template-about2018 h3,
body.page-template-template-about2018 h4,
body.page-template-template-about2018 h5,
body.page-template-template-about2018 h6 {
  color: #fff;
  font-family: "Helvetica Neue Bold", helvetica, arial, sans-serif;
  font-weight: 700;
}

body.page-template-template-about2018 h1 {
  color: #212530;
  font-family: "Helvetica Neue Bold", helvetica, arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.67px !important;
  line-height: 54px;
}

body.page-template-template-about2018 p {
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  color: #212530;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.67px;
  line-height: 24px;
}

body.page-template-template-about2018 h2 {
  color: #212530;
  font-family: "Helvetica Neue Bold";
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.58px;
  line-height: 44px;
  margin-bottom: 5px;
}

body.page-template-template-about2018 .row {
  padding: 0 120px;
}

@media screen and (max-width: 1170px) {
  body.page-template-template-about2018 .row {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 800px) {
  body.page-template-template-about2018 .row {
    padding-left: 40px;
    padding-right: 40px;
  }
}

body.page-template-template-about2018 .row div[class^="col-"] {
  padding-left: 0;
}

body.page-template-template-about2018 header {
  position: absolute;
  width: 100%;
  z-index: 999;
  height: auto;
}

body.page-template-template-about2018 .main {
  padding: 100px;
  padding-bottom: 0;
  background-color: #F8F9FE;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  body.page-template-template-about2018 .main {
    padding: 50px;
  }
}

@media screen and (max-width: 600px) {
  body.page-template-template-about2018 .main {
    padding: 0;
  }
}

body.page-template-template-about2018 .main .main-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

body.page-template-template-about2018 .logo-wrapper {
  background-color: #fff;
}

body.page-template-template-about2018 .logo-wrapper .section-inner {
  padding-bottom: 18px;
}

body.page-template-template-about2018 .logo-wrapper .logo-col {
  padding-top: 34px;
}

body.page-template-template-about2018 .logo-wrapper .logo-col .logo {
  max-width: 12.875rem;
  text-align: center;
}

body.page-template-template-about2018 .logo-wrapper .front-circle-wrapper {
  position: absolute;
  width: 652px;
  overflow: visible;
  z-index: -3;
  top: -100px;
  left: -300px;
}

body.page-template-template-about2018 .logo-wrapper .front-circle-wrapper img {
  max-width: 100%;
}

body.page-template-template-about2018 section {
  position: relative;
  z-index: 99;
  -webkit-transform: translateZ(10px);
          transform: translateZ(10px);
  outline: none;
}

body.page-template-template-about2018 section .section-inner {
  background-color: #fff;
}

body.page-template-template-about2018 section.standard .section-inner {
  padding-top: 37px;
  padding-bottom: 37px;
}

body.page-template-template-about2018 section.logo-wrapper .section-inner {
  background-image: none;
  background-color: #fff;
}

@media screen and (max-width: 800px) {
  body.page-template-template-about2018 section.logo-wrapper .section-inner {
    padding-top: 50px;
  }
}

body.page-template-template-about2018 .front-circle-wrapper {
  position: absolute;
  width: 652px;
  overflow: visible;
  z-index: -1;
}

body.page-template-template-about2018 .front-circle-wrapper img {
  max-width: 100%;
}

body.page-template-template-about2018 .short-separator {
  border-color: #F94D63;
}

/**
 * about2018-menus
 */

nav.about2018--onepage-nav {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: transparent;
  width: 100%;
  height: 100px;
  -webkit-transition: opacity 0.75s ease-in-out;
  -o-transition: opacity 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out;
}

@media screen and (max-width: 800px) {
  nav.about2018--onepage-nav {
    display: none;
  }
}

nav.about2018--onepage-nav .container {
  max-width: 1300px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 720px) {
  nav.about2018--onepage-nav .container {
    margin-left: 0;
    margin-right: 0;
  }
}

nav.about2018--onepage-nav .row {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

nav.about2018--onepage-nav .logo {
  display: none;
}

nav.about2018--onepage-nav li.menu-item {
  border-bottom: 1px solid transparent;
  font-size: 1rem;
  padding-bottom: 10px;
}

nav.about2018--onepage-nav li.menu-item a {
  color: #212530;
}

nav.about2018--onepage-nav li.menu-item a:hover {
  color: #212530;
}

nav.about2018--onepage-nav li.menu-item a:active {
  color: #212530;
}

nav.about2018--onepage-nav li.menu-item a:visited {
  color: #212530;
}

nav.about2018--onepage-nav li.menu-item.active {
  border-bottom: 1px solid #212530;
}

nav.about2018--onepage-nav li.menu-item.hover {
  border-bottom: 1px solid #212530;
}

nav.about2018--onepage-nav li.s-solid-button.menu-item a {
  border: 1px solid;
  display: block;
  border-radius: 30px;
  padding: 5px 25px;
  background-color: #fff;
  color: #30387B !important;
  -webkit-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

nav.about2018--onepage-nav li.s-solid-button.menu-item a:hover {
  background-color: #e1e1e1;
}

nav.about2018--onepage-nav li.s-solid-button.menu-item:hover {
  border-bottom-width: 0;
}

nav.about2018--onepage-nav.visible {
  background: #F8F9FE;
  display: block;
  opacity: 1;
  z-index: 99999;
  position: fixed;
  top: 0;
  height: 100px;
  padding-top: 39px;
  padding-bottom: 41px;
}

@media screen and (max-width: 800px) {
  nav.about2018--onepage-nav.visible {
    display: none;
  }
}

nav.about2018--onepage-nav.visible .container,
nav.about2018--onepage-nav.visible .row,
nav.about2018--onepage-nav.visible div[class^='col-'],
nav.about2018--onepage-nav.visible .menu--onepage,
nav.about2018--onepage-nav.visible .menu-item,
nav.about2018--onepage-nav.visible a {
  height: auto !important;
}

nav.about2018--onepage-nav.visible .nav-logo-wrapper a {
  display: block;
  width: 100%;
  height: auto;
}

nav.about2018--onepage-nav.visible .logo {
  max-width: 8.875rem;
  margin-bottom: 10px;
  display: block;
}

nav.about2018--onepage-nav.visible ul.menu.menu--onepage {
  text-align: right;
}

nav.about2018--onepage-nav.visible li.menu-item {
  border-bottom: 1px solid transparent;
  font-size: 1rem;
  padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
  nav.about2018--onepage-nav.visible li.menu-item {
    margin-right: 15px;
    margin-left: 15px;
  }
}

nav.about2018--onepage-nav.visible li.menu-item a {
  color: #212530;
}

nav.about2018--onepage-nav.visible li.menu-item a:hover {
  color: #212530;
}

nav.about2018--onepage-nav.visible li.menu-item a:active {
  color: #212530;
}

nav.about2018--onepage-nav.visible li.menu-item a:visited {
  color: #212530;
}

nav.about2018--onepage-nav.visible li.menu-item.active {
  border-bottom: 1px solid #212530;
}

nav.about2018--onepage-nav.visible li.menu-item.hover {
  border-bottom: 1px solid #212530;
}

nav.about2018--onepage-nav.visible li.s-solid-button.menu-item a {
  border: 1px solid;
  display: block;
  border-radius: 30px;
  padding: 5px 25px;
  background-color: #fff;
  color: #30387B !important;
  -webkit-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

nav.about2018--onepage-nav.visible li.s-solid-button.menu-item a:hover {
  background-color: #e1e1e1;
}

@media screen and (max-width: 800px) {
  nav.about2018--onepage-nav.visible li.s-solid-button.menu-item a {
    font-size: 0.875rem;
  }
}

nav.about2018--onepage-nav.visible li.s-solid-button.menu-item:hover {
  border-bottom-width: 0;
}

.about-2018--mobile-nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: #F8F9FE;
  height: 50px;
  z-index: 9999;
  text-align: right;
  padding-top: 10px;
  max-width: unset;
}

@media screen and (max-width: 800px) {
  .about-2018--mobile-nav {
    display: block;
  }
}

.about-2018--mobile-nav .container {
  max-width: unset !important;
  padding: 0;
}

.about-2018--mobile-nav .mobile-trigger-wrapper {
  width: 100%;
}

.about-2018--mobile-nav .mobile-hamburger {
  color: #212530;
  font-family: 'FontAwesome';
  text-align: right;
  cursor: pointer;
}

.about-2018--mobile-nav .mobile-hamburger:before {
  color: #212530;
  font-family: 'FontAwesome';
  font-size: 24px;
}

.about-2018--mobile-nav .mobile-hamburger:after {
  color: #212530;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper {
  height: 0;
  opacity: 1;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  width: 100%;
  overflow: hidden;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper ul.menu {
  list-style-type: none;
  text-indent: unset;
  padding: 0;
  display: block;
  margin: 0;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper ul.menu li.mobile-menu__menu-item {
  display: block;
  width: 100%;
  text-align: center;
  height: 0;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper ul.menu li.mobile-menu__menu-item a {
  display: block;
  color: #212530;
  background-color: #F8F9FE;
  border-top: 2px solid #fff;
  padding: 5px;
  font-size: 16px;
  font-family: "Helvetica Neue Medium", helvetica, arial, sans-serif;
  letter-spacing: 0.67px;
  line-height: 38px;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper.open {
  height: 300px;
  opacity: 1;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper.open li.mobile-menu__menu-item {
  height: 50px;
}

.about-2018--mobile-nav .mobile-menu__items-wrapper.open li.mobile-menu__menu-item a {
  height: 50px;
}

/**
 * Home Ovals
 */

.about2018-oval {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  border-radius: 100%;
  width: 652px;
  height: 652px;
  position: absolute;
  z-index: -2;
}

.about2018-oval.hero-rel {
  left: -300px;
  top: 100px;
}

.about2018-oval.intro-rel {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  right: -300px;
  top: 80%;
}

.about2018-oval.trending-rel {
  background-image: -webkit-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #FFDF83 0%, #F05670 100%);
  right: -300px;
  top: 200px;
}

.about2018-oval.team-rel {
  background-image: -webkit-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #FFDF83 0%, #F05670 100%);
  right: -300px;
  top: 200px;
}

.about2018-oval.team-rel.second {
  background-image: -webkit-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #FFDF83 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #FFDF83 0%, #F05670 100%);
  top: 1300px;
  right: -300px;
}

.about2018-oval.partner-rel {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #00BDE1 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #00BDE1 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #00BDE1 100%);
  left: -300px;
  top: 600px;
}

.about2018-oval.offices-rel {
  background-image: -webkit-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: -o-linear-gradient(75.16deg, #574D9E 0%, #F05670 100%);
  background-image: linear-gradient(14.84deg, #574D9E 0%, #F05670 100%);
  left: -300px;
  top: 100px;
}

/**
 * Hero
 */

body.page-template-template-about2018 section.about2018--hero-wrapper .front-circle-wrapper {
  right: -300px;
  bottom: -600px;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 {
  position: relative;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 .row {
  padding-top: 70px;
  padding-bottom: 60px;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 .title-wrapper {
  position: relative;
  z-index: 9;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 h1 {
  margin-bottom: 62px;
  line-height: 52px;
  font-size: 48px;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 p.hero-text {
  padding-left: 20px;
  margin-bottom: 14px;
}

body.page-template-template-about2018 section.about2018--hero-wrapper .container.hero2018 p.hero-text strong {
  font-family: "Helvetica Neue Bold";
}

body.page-template-template-about2018 section.about2018--basic-text-wrapper .front-circle-wrapper {
  right: -300px;
  top: 0px;
}

body.page-template-template-about2018 section.about2018--partners-wrapper .section-inner {
  padding-bottom: 113px;
}

body.page-template-template-about2018 section.about2018--partners-wrapper .section-inner .row {
  padding-bottom: 33px;
}

body.page-template-template-about2018 section.about2018--partners-wrapper .section-inner .row h2 {
  margin-bottom: 33px;
}

body.page-template-template-about2018 section.about2018--partners-wrapper .section-inner .row .partner-logo-wrapper {
  position: relative;
}

body.page-template-template-about2018 section.about2018--partners-wrapper .section-inner .row .partner-logo-wrapper img {
  max-width: 80%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.page-template-template-about2018 section.about2018--partners-wrapper .front-circle-wrapper {
  left: -300px;
  top: 500px;
}

body.page-template-template-about2018 section.about2018--team-wrapper .front-circle-wrapper.second {
  right: -300px;
  top: 1200px;
}

body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .light-section-header p.light-header {
  color: #212530;
  font-family: "LuloCleanOne", "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 44px;
  margin-bottom: 13px;
}

body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .light-section-header p.light-subheader {
  color: #212530;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2.67px;
  line-height: 32px;
  text-transform: uppercase;
}

body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .row.team {
  padding-top: 80px;
  padding-bottom: 80px;
}

body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .row.team p.job-title {
  color: #212530;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2.67px;
  line-height: 32px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .row.team p.employee-name {
  color: #212530;
  font-family: "Helvetica Neue Bold", helvetica, arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.75px;
  line-height: 32px;
}

@media screen and (max-width: 720px) {
  body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .row.team {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.page-template-template-about2018 section.about2018--team-wrapper .section-inner .row.team div[class^="col-"] {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

body.page-template-template-about2018 section.about2018--offices-wrapper .front-circle-wrapper {
  left: -300px;
  top: 0;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner {
  padding-bottom: 140px;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .light-section-header p.light-header {
  color: #212530;
  font-family: "LuloCleanOne", "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 44px;
  margin-bottom: 13px;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .light-section-header p.light-subheader {
  color: #212530;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2.67px;
  line-height: 32px;
  text-transform: uppercase;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.office-map {
  padding-left: 0;
  padding-right: 0;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.headquarters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.headquarters {
    text-align: center;
  }
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.headquarters p.headquarters-title {
  color: #212530;
  font-family: "Helvetica Neue Light", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2.67px;
  line-height: 32px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.headquarters p.city-name {
  color: #212530;
  font-family: "Helvetica Neue Bold", helvetica, arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.75px;
  line-height: 32px;
  margin-bottom: 16px;
}

body.page-template-template-about2018 section.about2018--offices-wrapper .section-inner .row.headquarters p.samba-address {
  color: #212530;
  font-family: "Helvetica Neue Medium", helvetica, arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.42px;
  line-height: 32px;
}

.animate-text {
  position: relative;
  top: 100%;
  opacity: 0;
}

.bring-to-front {
  z-index: 99;
}

/**
 * partials/footer-home2018
 */

/*------------------------------------*\
    #80-pages ....PAGES.... CLASSES
\*------------------------------------*/

/* @import "90-pages*/

/*.scss";*/


/*# sourceMappingURL=main.css.map*/