@charset "UTF-8";
/*  ==========================================================================
    Includes
    ==========================================================================

    This is the main includes file. Here we include each of the sections.
    This includes file only concerns it's self with the cascade order of
    the different sections. Each section than controls it's own internal cascade.

    Cascade Index
    -------------
    1.  Vars
        The 'Vars' section holds global variables that all partials should be able to access if needs be. Note partials may have variables within them that are deemed only relevant for that partial. If you add a variable that you want to use across various partials you might want to consider adding it here.

    2.  Functions
        Has useful functions.

    3.  Breakpoints
        The 'Breakpoints' section contains a list of global variables that represent different breakpoint sizes. They are separated from the 'Vars' section because they will make use of some functions, particularly em() and bp-size().

    4.  Mixins
        Has useful mixins.

    5.  Base
        These are styles which effect base elements (p, a, table ect). The 'Base' section includes a reset and parts of normalize.css(https://github.com/necolas/normalize.css) are sprinkled throughout.

    6.  vendor
        If you want to include 3rd party css. They are included here so that the 'Objects' and 'Ui' sections van override styles.

    7.  Objects
        Reusable patterns. May contain generic patterns like the 'Media' object but you may also fill this folder with patterns that are a little more specific to your project.

    8.  Ui
        The main styles for your project.

    9.  Helpers
        Style trumps. Helper classes take precedence over everything else. I recommend only using helper classes if the style the helper class enables is relevant across all viewports otherwise you end up trying to fight the helper classes in the cascade.
*/
/*  ==========================================================================
    Vars
    ========================================================================== */
/*
    colors
    ------
*/
/** #D85C01 **/
/*
    Fonts
    -----
*/
/*
    Z-indexes
    ---------
    Keep track of z-index by assigning your elements z-index to
    one of these defined levels.
*/
/*
    Widths
    ------
*/
/*
    Spacing units
    -------------
*/
/*
 Product spacings
 */
/**
Filters in categories
 */
/**
Menu Vars
*/
/* 1 */
/*  ==========================================================================
    Functions:Units
    ========================================================================== */
/*
    PX to EM
    --------

    Convert px to em

    $base-font-size is used as a default so when you use the em() function you don't have to provide
    a second parameter if your working with a element with the default font-size
*/
/*
    EM to PX
    --------

    Convert em to px
*/
/*  ==========================================================================
    Functions:Breakpoints
    ========================================================================== */
/* 2 */
/*  ==========================================================================
    Breakpoints
    ========================================================================== */
/* 3 */
/*  ==========================================================================
    Mixins:Respond
    ==========================================================================

    Generate media queries.

    $respond-no-media-queries
    -------------------------
    set this global var in your stylesheet aimed at browsers which do
    not support media queries (ie8) to give them desktop styles only.

    This way they get all the styles but the cascade makes sure they display
    the desktop styles (if your using a mobile first approach to layering the media queries)
*/
/*  ==========================================================================
    Mixins:Rem
    ==========================================================================

    A small mixin for easy use of rem with px as fallback
    usage: @include x-rem(font-size, 14px)
    usage: @include x-rem(marign, 0 12px 2 1.2)
    usage: @include x-rem(padding, 1.5 24px)

    thanks to Eric Meyer for https://github.com/ericam/susy
    and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/

    set $base-font-size outside of the mixin in your variables file
*/
/*  ==========================================================================
    Mixins:Visually Hidden
    ========================================================================== */
/* 4 */
/*  ==========================================================================
    Base:Reset
    ========================================================================== */
/*
    1. Use border-box globally
*/
@import "//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css";
*,
*:after,
*:before {
  box-sizing: border-box;
  /* 1 */ }

/*
    1. reset some stuff
*/
/*
    1. Correct `block` display not defined for any HTML5 element in IE 8/9. - Normalize:v3.0.1
    1. Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. - Normalize:v3.0.1
    1. Correct `block` display not defined for `main` in IE 11. - Normalize:v3.0.1
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
  /* 1 */ }

/*
    1. Correct `inline-block` display not defined in IE 8/9. - Normalize:v3.0.1
    2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - Normalize:v3.0.1
*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/*
    1. Prevent modern browsers from displaying `audio` without controls. - Normalize:v3.0.1
    2. Remove excess height in iOS 5 devices. - Normalize:v3.0.1
*/
audio:not([controls]) {
  display: none;
  /* 1 */
  height: 0;
  /* 2 */ }

/*
    1. Address `[hidden]` styling not present in IE 8/9/10. - Normalize:v3.0.1
    2. Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. - Normalize:v3.0.1
*/
[hidden],
template {
  /* 2 */
  display: none; }

/*  ==========================================================================
    Base:Main
    ========================================================================== */
/*
    1. Prevent iOS text size adjust after orientation change, without disabling
       user zoom. - Normalize:v2.1.0
*/
html {
  -webkit-text-size-adjust: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 1 */
  font-family: muli, sans-serif !important; }

/*
    1. Remove default margin. - Normalize:v2.1.0
*/
body {
  color: #3D517B;
  margin: 0;
  font-family: muli, sans-serif !important;
  /* 1 */ }

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus,
.content:focus {
  outline: none; }

/*  ==========================================================================
    Base:Headings
    ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins, sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #0A3866; }

h1 {
  font-size: 40px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 26px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

/*  ==========================================================================
    Base:Links
    ========================================================================== */
/*
    1. Remove the gray background color from active links in IE 10. - Normalize:v3.0.1
*/
a {
  color: #198CFC;
  background: transparent;
  /* 1 */ }
  a:hover, a:focus {
    color: #0259ad; }

/*  ==========================================================================
    Base:Lists
    ========================================================================== */
/*
    1. Remove vertical spacing from nested lists.
*/
li > ul,
li > ol {
  margin-bottom: 0;
  /* 1 */ }

/*
    1. Have a numbered `ul` without the semantics implied by using an `ol`.
*/
/*ul*/
.numbered-list {
  list-style-type: decimal;
  /* 1 */ }

main ol, main ul {
  margin-left: 0;
  text-align: left; }

/*  ==========================================================================
    Base:Images
    ========================================================================== */
/*
    1. So that `alt` text is visually offset if images don’t load.
    2. Fluid images.
    3. Remove border when inside `a` element in IE 8/9. - Normalize:v3.0.1
*/
img {
  font-style: italic;
  /* 1 */
  max-width: 100%;
  /* 2 */
  border: 0;
  /* 3 */ }

/*
    1. Images in `figure` elements.
*/
figure > img {
  display: block;
  /* 1 */ }

.wp-block-media-text__media img,
.wp-block-media-text__media video {
  margin: 0 auto;
  width: auto; }

/*  ==========================================================================
    Base:Type
    ========================================================================== */
/*
    1. Remove underlines from potentially troublesome elements.
*/
u,
ins {
  text-decoration: none;
  /* 1 */ }

/*
    1. Apply faux underline via `border-bottom`.
*/
ins {
  border-bottom: 1px solid;
  /* 1 */ }

/*
    1. Give a help cursor to elements that give extra info on `:hover`.
*/
abbr[title],
dfn[title] {
  cursor: help;
  /* 1 */ }

/*
    1. Address styling not present in IE 8/9, Safari 5, and Chrome. - Normalize:v3.0.1
*/
abbr[title] {
  border-bottom: 1px dotted;
  /* 1 */ }

/*
    1. Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. - Normalize:v3.0.1
*/
b,
strong {
  font-weight: bold;
  /* 1 */ }

/*
    1. Address styling not present in Safari 5 and Chrome. - Normalize:v3.0.1
*/
dfn {
  font-style: italic;
  /* 1 */ }

/*
    Address styling not present in IE 8/9. - Normalize:v3.0.1
*/
mark {
  background: #ff0;
  /* 1 */
  color: #000;
  /* 1 */ }

/*
    1. Set consistent quote types. - Normalize:v2.1.0
*/
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
  /* 1 */ }

/*
    1. Address inconsistent and variable font size in all browsers. - Normalize:v3.0.1
*/
small {
  font-size: 0.55556em;
  /* 1 */ }

/*
    1:sub-sup. Prevent `sub` and `sup` affecting `line-height` in all browsers. - Normalize:v3.0.1
*/
sub,
sup {
  font-size: 75%;
  /* 1:sub-sup */
  line-height: 0;
  /* 1:sub-sup */
  position: relative;
  /* 1:sub-sup */
  vertical-align: baseline;
  /* 1:sub-sup */ }

sup {
  top: -0.5em;
  /* 1:sub-sup */ }

sub {
  bottom: -0.25em;
  /* 1:sub-sup */ }

/*  ==========================================================================
    Base:Forms
    ========================================================================== */
/*
    1. Give form elements some cursor interactions...
*/
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
  font-family: muli, sans-serif;
  font-weight: 400;
  font-style: normal;
  /* 1 */ }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  /* 1 */ }

/*
    Known limitation: by default, Chrome and Safari on OS X allow very limited
    styling of `select`, unless a `border` property is set.

    1. Correct color not being inherited.
       Known issue: affects color of disabled elements. - Normalize:v3.0.1
    2. Correct font properties not being inherited. - Normalize:v3.0.1
    3. Address margins set differently in Firefox 4+, Safari, and Chrome. - Normalize:v3.0.1
*/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
    1. Address `overflow` set to `hidden` in IE 8/9/10/11. - Normalize:v3.0.1
*/
button {
  overflow: visible;
  /* 1 */ }

/*
    1. 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. - Normalize:v3.0.1
*/
button,
select {
  text-transform: none;
  /* 1 */ }

/*
    1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
       and `video` controls. - Normalize:v3.0.1
    2. Correct inability to style clickable `input` types in iOS. - Normalize:v3.0.1
    3. Improve usability and consistency of cursor style between image-type
       `input` and others. - Normalize:v3.0.1
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*
    1. Re-set default cursor for disabled elements. - Normalize:v3.0.1
*/
button[disabled],
html input[disabled] {
  cursor: default; }

/*
    1. Remove inner padding and border in Firefox 4+. - Normalize:v3.0.1
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  /* 1 */
  padding: 0;
  /* 1 */ }

/*
    1. Address Firefox 4+ setting `line-height` on `input` using `!important` in
       the UA stylesheet. - Normalize:v3.0.1
*/
input {
  line-height: normal;
  /* 1 */ }

/*
    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. - Normalize:v3.0.1
    2. Remove excess padding in IE 8/9/10. - Normalize:v3.0.1
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
    1. 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`. - Normalize:v3.0.1
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
  /* 1 */ }

/*
    1. Address `appearance` set to `searchfield` in Safari and Chrome.
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

/*
    1. 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). - Normalize:v3.0.1
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* 1 */ }

/*
    1. Correct `color` not being inherited in IE 8/9/10/11. - Normalize:v3.0.1
    2. Remove padding so people aren't caught out if they zero out fieldsets. - Normalize:v3.0.1
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
    1. Remove default vertical scrollbar in IE 8/9/10/11. - Normalize:v3.0.1
*/
textarea {
  overflow: auto;
  /* 1 */ }

/*
    1. Don't inherit the `font-weight` (applied by a rule above).
       NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - Normalize:v3.0.1
*/
optgroup {
  font-weight: bold;
  /* 1 */ }

.form-errors li {
  color: #b94a48; }

button,
.button,
.faux-button,
.faux-button.more-link,
.wp-block-button__link,
.wp-block-file__button,
.content-read-more {
  font-family: poppins, sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important; }

.wp-block-buttons .wp-block-button .wp-block-button__link {
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: none;
  padding: 12px 25px;
  /*
            &:not(.has-theme-orange-background-color):hover {
                color: $color--link;
                background: rgba(0,0,0,0.2);
            }
            &:not(.has-theme-orange-background-color):focus {
                color: $color--link;
                background: rgba(0,0,0,0.2);
            }
 */ }

input[type="submit"] {
  background-color: #FD8D25 !important;
  color: #fff;
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 15px !important;
  width: 155px !important;
  height: auto;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  margin: 10px 0px;
  padding: 0;
  text-decoration: none;
  text-transform: unset; }
  input[type="submit"]:hover {
    background-color: #FD8D25 !important;
    color: #fff !important;
    text-decoration: none !important; }

.gform_wrapper .field_description_below .gfield_consent_description, .gform_wrapper .gfield_consent_description {
  border: 0; }

.ginput_container.ginput_container_consent {
  float: right;
  width: 97%; }

.gform_wrapper .ginput_container {
  margin-top: 0 !important; }

.gform_wrapper select,
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 13px;
  color: #9A9A9A; }

.gform_wrapper label.gfield_label,
.gform_wrapper legend.gfield_label {
  font-size: 16px; }

/*  ==========================================================================
    Base:Quotes
    ========================================================================== */
/*  ==========================================================================
    Base:Grouping
    ========================================================================== */
/*
    1. Address margin not present in IE 8/9 and Safari 5. - Normalize:v3.0.1
*/
/*
    1. Address differences between Firefox and other browsers. - Normalize:v3.0.1
*/
hr {
  -moz-box-sizing: content-box;
  /* 1 */
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */ }

/*
    1. Contain overflow in all browsers. - Normalize:v3.0.1
*/
pre {
  overflow: auto;
  /* 1 */ }

/*
    1. Address odd `em`-unit font size rendering in all browsers. - Normalize:v2.1.0
*/
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 1 */ }

/*  ==========================================================================
    Base:Tables
    ========================================================================== */
/*
    1. Remove most spacing between table cells. - Normalize:v3.0.1
*/
table {
  border-collapse: collapse;
  /* 1 */
  border-spacing: 0;
  /* 1 */ }

/*  ==========================================================================
    Base:SVG
    ========================================================================== */
/*
    1. Correct overflow not hidden in IE 9/10/11. - Normalize:v3.0.1
*/
svg:not(:root) {
  overflow: hidden;
  /* 1 */ }

/*  ==========================================================================
    Base:Media
    ========================================================================== */
/*
    1. http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
*/
@-ms-viewport {
  width: device-width;
  /* 1 */ }

button,
.button,
.faux-button,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: #453e43; }

.social-icons a {
  background-color: #198CFC; }

.footer-social a {
  background-color: #198CFC; }

.widget_text p,
.widget_text ol,
.widget_text ul,
.widget_text dl,
.widget_text dt,
.widget-content .rssSummary {
  font-family: muli, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important; }

#site-content-ppc {
  padding-bottom: 60px; }

/* 5 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

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

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

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

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

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

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

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

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

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

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

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

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

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

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

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

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

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

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

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

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

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

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

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

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

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

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

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

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

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

.fa-stack-1x {
  line-height: inherit; }

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

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

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

.fa-address-card:before {
  content: "\f2bb"; }

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

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

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

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

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

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

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

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

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

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

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

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

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

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

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

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

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

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

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

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

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

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

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

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

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

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

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

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

.fa-archway:before {
  content: "\f557"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

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

.fa-asymmetrik:before {
  content: "\f372"; }

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

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

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

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

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

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

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

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

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

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

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

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

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

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

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

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

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

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

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

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

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

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

.fa-biohazard:before {
  content: "\f780"; }

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

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

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

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

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

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

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

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

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

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

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

.fa-bolt:before {
  content: "\f0e7"; }

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

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

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

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

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

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

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

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

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

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

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

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

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

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

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

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

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

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

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

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

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

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

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

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

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

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

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

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

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

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

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

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

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

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

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

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

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

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

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

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

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

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

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

.fa-carrot:before {
  content: "\f787"; }

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

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

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

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

.fa-cc-apple-pay:before {
  content: "\f416"; }

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

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

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

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

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

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

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

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

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

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

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

.fa-chart-bar:before {
  content: "\f080"; }

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

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

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

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

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

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

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

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

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

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

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

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

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

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

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

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

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

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

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

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

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

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

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

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

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

.fa-closed-captioning:before {
  content: "\f20a"; }

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

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

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

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

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

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

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

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

.fa-cloud-sun-rain:before {
  content: "\f743"; }

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

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

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

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

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

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

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

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

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

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

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

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

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

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

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

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

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

.fa-compact-disc:before {
  content: "\f51f"; }

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

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

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

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

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

.fa-confluence:before {
  content: "\f78d"; }

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

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

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

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

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

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

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

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

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

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

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

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

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

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

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

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

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

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

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

.fa-critical-role:before {
  content: "\f6c9"; }

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

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

.fa-cross:before {
  content: "\f654"; }

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

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

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

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

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

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

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

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

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

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

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

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

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

.fa-dev:before {
  content: "\f6cc"; }

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

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

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

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

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

.fa-dove:before {
  content: "\f4ba"; }

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

.fa-draft2digital:before {
  content: "\f396"; }

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

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

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

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

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

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

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

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

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

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

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

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

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

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

.fa-elementor:before {
  content: "\f430"; }

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

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

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

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

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

.fa-envelope-open-text:before {
  content: "\f658"; }

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

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

.fa-equals:before {
  content: "\f52c"; }

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

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-facebook-messenger:before {
  content: "\f39f"; }

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

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

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

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

.fa-faucet:before {
  content: "\e005"; }

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

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

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

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

.fa-figma:before {
  content: "\f799"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-file-invoice-dollar:before {
  content: "\f571"; }

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

.fa-file-medical-alt:before {
  content: "\f478"; }

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

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

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

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

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

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

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

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

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

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

.fa-fingerprint:before {
  content: "\f577"; }

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

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

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

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

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

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

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

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

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

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

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

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

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

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

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

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

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

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

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

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

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

.fa-football-ball:before {
  content: "\f44e"; }

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

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

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

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

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

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

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

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

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

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

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

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

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

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

.fa-ghost:before {
  content: "\f6e2"; }

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

.fa-gifts:before {
  content: "\f79c"; }

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

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

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

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

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

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

.fa-gitkraken:before {
  content: "\f3a6"; }

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

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

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

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

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

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

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

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

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

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

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

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

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

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

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

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

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

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

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

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

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

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

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

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

.fa-hand-rock:before {
  content: "\f255"; }

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

.fa-hand-sparkles:before {
  content: "\e05d"; }

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

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

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

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

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

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

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

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

.fa-headset:before {
  content: "\f590"; }

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

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

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

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

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

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

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

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

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

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

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

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

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

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

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

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

.fa-house-damage:before {
  content: "\f6f1"; }

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

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

.fa-hryvnia:before {
  content: "\f6f2"; }

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

.fa-hubspot:before {
  content: "\f3b2"; }

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

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

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

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

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

.fa-infinity:before {
  content: "\f534"; }

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

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

.fa-innosoft:before {
  content: "\e080"; }

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

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

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

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

.fa-invision:before {
  content: "\f7b0"; }

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

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

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

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

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

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

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

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

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

.fa-keybase:before {
  content: "\f4f5"; }

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

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

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

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

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

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

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

.fa-laravel:before {
  content: "\f3bd"; }

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

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

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

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

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

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

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

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

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

.fa-life-ring:before {
  content: "\f1cd"; }

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

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

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

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

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

.fa-linode:before {
  content: "\f2b8"; }

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

.fa-lira-sign:before {
  content: "\f195"; }

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

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

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

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

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

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

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

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

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

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

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

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

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

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

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

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

.fa-mandalorian:before {
  content: "\f50f"; }

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

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

.fa-map-marked-alt:before {
  content: "\f5a0"; }

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

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

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

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

.fa-markdown:before {
  content: "\f60f"; }

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

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

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

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

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

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

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

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

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

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

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

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

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

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

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

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

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

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

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

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

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

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

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

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

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

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

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

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

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

.fa-monero:before {
  content: "\f3d0"; }

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

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

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

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

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

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

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

.fa-mountain:before {
  content: "\f6fc"; }

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

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

.fa-mug-hot:before {
  content: "\f7b6"; }

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

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

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

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

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

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

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

.fa-octopus-deploy:before {
  content: "\e082"; }

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

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

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

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

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

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

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

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

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

.fa-pager:before {
  content: "\f815"; }

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

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

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

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

.fa-parachute-box:before {
  content: "\f4cd"; }

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

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

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

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

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

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

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

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

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

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

.fa-penny-arcade:before {
  content: "\f704"; }

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

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

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

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

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

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

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

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

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

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

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

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

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

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

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

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

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

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

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

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

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

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

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

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

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

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

.fa-playstation:before {
  content: "\f3df"; }

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

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

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

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

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

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

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

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

.fa-procedures:before {
  content: "\f487"; }

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

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

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

.fa-python:before {
  content: "\f3e2"; }

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

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

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

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

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

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

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

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

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

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

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

.fa-red-river:before {
  content: "\f3e3"; }

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

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

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

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

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

.fa-remove-format:before {
  content: "\f87d"; }

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

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

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

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

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

.fa-robot:before {
  content: "\f544"; }

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

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

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

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

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

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

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

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

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

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

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

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

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

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

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

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

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

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

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

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

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

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

.fa-shekel-sign:before {
  content: "\f20b"; }

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

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

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

.fa-shipping-fast:before {
  content: "\f48b"; }

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

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

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

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

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

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

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

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

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

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

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

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

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

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

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

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

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

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

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

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

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

.fa-sleigh:before {
  content: "\f7cc"; }

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

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

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

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

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

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

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

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

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

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

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

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

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

.fa-spider:before {
  content: "\f717"; }

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

.fa-splotch:before {
  content: "\f5bc"; }

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

.fa-spray-can:before {
  content: "\f5bd"; }

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

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

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

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

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

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

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

.fa-star-and-crescent:before {
  content: "\f699"; }

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

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

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

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

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

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

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

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

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

.fa-sticker-mule:before {
  content: "\f3f7"; }

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

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

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

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

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

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

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

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

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

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

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

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

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

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

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

.fa-superpowers:before {
  content: "\f2dd"; }

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

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

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

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

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

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

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

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

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

.fa-tape:before {
  content: "\f4db"; }

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

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

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

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

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

.fa-tenge:before {
  content: "\f7d7"; }

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

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

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

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

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

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

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

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

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

.fa-thumbtack:before {
  content: "\f08d"; }

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

.fa-tiktok:before {
  content: "\e07b"; }

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

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

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

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

.fa-tired:before {
  content: "\f5c8"; }

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

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

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

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

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

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

.fa-tram:before {
  content: "\f7da"; }

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

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

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

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

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

.fa-trash-restore-alt:before {
  content: "\f82a"; }

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

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

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

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

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

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

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

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

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

.fa-tshirt:before {
  content: "\f553"; }

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

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

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

.fa-tv:before {
  content: "\f26c"; }

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

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

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

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

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

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

.fa-uncharted:before {
  content: "\e084"; }

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

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

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

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

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

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

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

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

.fa-ups:before {
  content: "\f7e0"; }

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

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

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

.fa-user-alt-slash:before {
  content: "\f4fa"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

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

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

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

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

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

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

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

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

.fa-viadeo:before {
  content: "\f2a9"; }

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

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

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

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

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

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

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

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

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

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

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

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

.fa-volume-mute:before {
  content: "\f6a9"; }

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

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

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

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

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

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

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

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

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

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

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

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

.fa-whmcs:before {
  content: "\f40d"; }

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

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

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

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

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

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

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

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

.fa-wpexplorer:before {
  content: "\f2de"; }

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

.fa-wpressr:before {
  content: "\f3e4"; }

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

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

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

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

.fa-y-combinator:before {
  content: "\f23b"; }

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

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

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

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

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

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

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.eot");
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.woff2") format("woff2"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.woff") format("woff"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.ttf") format("truetype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.eot");
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.woff2") format("woff2"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.woff") format("woff"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.ttf") format("truetype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.eot");
  src: url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.woff2") format("woff2"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.woff") format("woff"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.ttf") format("truetype"), url("/content/themes/wired-media-ecommerce-theme/fonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/* 6 */
.alert {
  padding: 8px 14px;
  margin: 0 0 1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  clear: both; }

.alert--success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847; }

.alert--error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48; }

/*  ==========================================================================
    Objects:Button
    ==========================================================================

    The button classes are best applied to links, buttons, and submit inputs.
    These components can be used in forms, as calls to action, or as part of the
    general UI of the site/app.

    Recommended use:

    <a class="Button [Button--modifier]" role="button" href="[url]">Button text</a>
    <button class="Button [Button--modifier]" type="submit">Button text</button>
    <input class="Button [Button--modifier]" type="submit" value="Button text">

    Button template

    Build on this component using rulesets in your application-level CSS.

    1.  Corrects inability to style clickable `input` types in iOS
    2.  Normalize `box-sizing` across all elements that this component could be
        applied to.
    3.  Allow easier styling.
    4.  Normalize `line-height`. For `input`, it can't be changed from `normal` in Firefox 4+.
    5.  Normalise box model styles.
    6.  Prevent button text from being selectable.
    7.  Stop buttons wrapping and looking broken.
*/
.btn {
  -webkit-appearance: none;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  cursor: pointer;
  display: inline-block;
  /* 3 */
  line-height: normal;
  /* 4 */
  margin: 0;
  border: 0;
  /* 5 */
  padding-top: 0;
  /* 5 */
  padding-bottom: 0;
  /* 5 */
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* 6 */
  white-space: nowrap;
  /* 7 */
  position: relative;
  text-decoration: none;
  /*
        Remove excess padding and border in Firefox 4+
    */ }
  .btn, .btn:hover {
    text-decoration: none; }
  .btn:disabled, .btn.is-disabled {
    cursor: default; }
  .btn::-moz-focus-inner {
    border: 0;
    padding: 0; }

/*
    Variations
    ----------

    e.g
    .btn--primary{}
    .btn--secondary{}
    .btn--tertiary{}
*/
.btn--view-product {
  color: #1C1C1C;
  border: 1px solid #1C1C1C;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 17px; }

.btn--grid {
  padding: 0;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  background: none; }
  .btn--grid:before {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 22px;
    height: 22px;
    display: block;
    content: '';
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/product-grid.svg") no-repeat center; }
  .btn--grid:hover, .btn--grid.active {
    border: 1px solid #1C1C1C; }

.btn--list {
  padding: 0;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  background: none; }
  .btn--list:before {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 22px;
    height: 22px;
    display: block;
    content: '';
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/product-list.svg") no-repeat center; }
  .btn--list:hover, .btn--list.active {
    border: 1px solid #1C1C1C; }

/*  ==========================================================================
    Objects:Grids
    ==========================================================================

    These grids are mostly from css wizardry grids:- https://github.com/csswizardry/csswizardry-grids
    but there is also some stuff from an older version of SUIT grid component:- https://github.com/suitcss/components-grid

    Fluid and nestable grid system, e.g.:

    <div class="grid">

        <div class="grid__cell one-third">
            <p>One third grid</p>
        </div><!--

     --><div class="grid__cell two-thirds">
            <p>Two thirds grid</p>
        </div><!--

     --><div class="grid__cell one-half">
            <p>One half grid</p>
        </div><!--

     --><div class="grid__cell one-quarter">
            <p>One quarter grid</p>
        </div><!--

     --><div class="grid__cell one-quarter">
            <p>One quarter grid</p>
        </div>

    </div>

*/
/*
    All content must be contained within child Grid-cell elements.

    1.  Account for browser defaults of elements that might be the root node of
        the component.
*/
.grid {
  display: block;
  /* 1 */
  padding: 0;
  /* 1 */
  margin: 0;
  /* 1 */
  margin-left: -1.66667em; }

/*
    Very infrequently occurring grid wrappers as children of grid wrappers.
*/
.grid > .grid {
  margin-left: 0; }

/*
    No explicit width by default. Rely on combining `Grid-cell` with a dimension
    utility or a component class that extends 'grid'.

    1. Fundamentals of the non-float grid layout.
    2. Controls vertical positioning of units.
    3. Make cells full-width by default.
*/
.grid__cell {
  display: inline-block;
  /* 1 */
  vertical-align: top;
  /* 2 */
  width: 100%;
  /* 3 */
  padding-left: 1.66667em; }

/*
    Gutterless grids have all the properties of regular grids, minus any spacing.
*/
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__cell {
    padding-left: 0; }

/*
    Reversed grids allow you to structure your source in the opposite order to
    how your rendered layout will appear. Extends `.grid`.
*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__cell {
    direction: ltr;
    text-align: left; }

/*  ==========================================================================
    Objects:Media
    ==========================================================================

    Image and text blocks, as devised by @stubbornella
    stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code

    This object is useful to document the usage of the overflow to create a new block formatting context pattern. I don't find myself using this actual object much as in a responsive context i often want a component to transform into a media object, so if i use the this object i end up fighting the styles.

    Dependencies
    ------------
    * group (clearfix) - must be applied to the main element.

    HTML
    ----
    <div class=media group>
        <img src=http://placehold.it/150x150 alt="" class=media__img>
        <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
    </div>

*/
.media {
  display: block; }

.media__img {
  float: left;
  margin-right: 1.66667em; }

/*
    Reversed image location (right instead of left).
*/
.media__img--rev {
  float: right;
  margin-left: 1.66667em; }

.media__img img,
.media__img--rev img {
  display: block; }

/*
    1. Create a new block formatting context. See - http://www.stubbornella.org/content/2009/07/23/overflow-a-secret-benefit/
*/
.media__body {
  overflow: hidden;
  /* 1 */ }

.media__body,
.media__body > :last-child {
  margin-bottom: 0; }

/*  ==========================================================================
    Objects:Nav
    ==========================================================================

    By @csswizardry and taken from a version of inuit.css https://github.com/inuitcss

    When used on an `ol` or `ul`, this class throws the list into horizontal mode
    e.g.:

    Dependencies
    ------------
    * group (clearfix) - must be applied to the main element.

    HTML
    ----
    <ul class=nav group>
        <li><a href=#>Home</a></li>
        <li><a href=#>About</a></li>
        <li><a href=#>Portfolio</a></li>
        <li><a href=#>Contact</a></li>
    </ul>
*/
/*
    1:  Set line-height so positing does not depend on the global line-height set on the html element.
    Overwrite this value on a particular nav if you need to.
    This way if the global line-height changes it does not effect the navigations position.
*/
.nav {
  list-style: none;
  margin-left: 0;
  line-height: 1em;
  /* 1 */ }
  .nav > li,
  .nav > li > a {
    display: inline-block; }

/*
    extends .nav and throws the list into vertical mode.
*/
.nav--stacked > li {
  display: list-item; }
  .nav--stacked > li > a {
    display: block; }

/*
    Force a nav to occupy 100% of the available width of its parent. Extends
    .nav, original idea @pimpl
*/
.nav--fit {
  display: table;
  width: 100%; }
  .nav--fit > li {
    display: table-cell; }
    .nav--fit > li > a {
      display: block; }

.mega-two-columns-menu {
  position: relative !important; }
  .mega-two-columns-menu ul {
    width: 400px !important; }
    .mega-two-columns-menu ul li {
      padding: 0 !important; }
      .mega-two-columns-menu ul li a {
        font-size: 14px !important;
        text-transform: unset !important;
        font-weight: normal !important;
        vertical-align: baseline !important;
        padding: 0 10px !important;
        line-height: 35px !important; }
  .mega-two-columns-menu h4 {
    margin: 10px;
    font-size: 18px; }

.mega-three-columns-menu {
  position: relative !important; }
  .mega-three-columns-menu > ul {
    width: 680px !important; }
    .mega-three-columns-menu > ul > li > ul {
      width: 640px !important; }
      .mega-three-columns-menu > ul > li > ul li {
        padding: 0 !important; }
        .mega-three-columns-menu > ul > li > ul li * {
          width: 100% !important; }
        .mega-three-columns-menu > ul > li > ul li a {
          font-size: 14px !important;
          text-transform: unset !important;
          font-weight: normal !important;
          vertical-align: baseline !important;
          padding: 0 10px !important;
          line-height: 35px !important;
          max-width: 100% !important;
          width: 100% !important;
          word-wrap: break-word !important;
          overflow: hidden !important;
          white-space: break-spaces !important; }
  .mega-three-columns-menu h4 {
    margin: 10px;
    font-size: 18px; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link {
  font-weight: 400 !important; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(1) > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(2) > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(3) > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(4) > a.mega-menu-link {
  font-weight: 800 !important; }

.tooltip {
  position: relative;
  z-index: 1; }

.tooltip:before {
  content: attr(data-text);
  /* here's the magic */
  position: absolute;
  /* vertically center */
  top: 50%;
  transform: translateY(-50%);
  /* move to right */
  left: 100%;
  margin-left: 15px;
  /* and add a small left margin */
  /* basic styles */
  width: 100px;
  padding: 10px;
  border-radius: 1px;
  background: #faf8ee;
  color: #453e43;
  text-align: center;
  font-size: 13px;
  display: none;
  /* hide by default */ }

.tooltip:after {
  content: "";
  position: absolute;
  /* position tooltip correctly */
  left: 100%;
  margin-left: -5px;
  /* vertically center */
  top: 50%;
  transform: translateY(-50%);
  /* the arrow */
  border: 10px solid #000;
  border-color: transparent #faf8ee transparent transparent;
  display: none; }

.tooltip:hover:before, .tooltip:hover:after {
  display: block; }

/* 7 */
.archive.tax-product_cat .page-title {
  font-size: 28px;
  margin: 30px 0 25px 0; }

.archive.tax-product_cat .term-description {
  max-width: 100%;
  margin: 0 auto 40px;
  border-bottom: 1px solid #707070; }
  .archive.tax-product_cat .term-description p {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 17px;
    text-align: center; }

.archive.tax-product_cat .cat-overview {
  margin-bottom: 0px !important;
  margin-top: 0px !important; }
  .archive.tax-product_cat .cat-overview p {
    max-width: 850px !important;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 17px; }

.archive.tax-product_cat ul.subcats {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 48em) {
    .archive.tax-product_cat ul.subcats {
      margin: 0px -30px; } }
  .archive.tax-product_cat ul.subcats li {
    position: relative;
    width: calc(50% - 30px);
    margin: 0 6px 12px; }
    @media (min-width: 48em) {
      .archive.tax-product_cat ul.subcats li {
        width: calc(25% - 30px);
        margin: 0 15px 30px; } }
    .archive.tax-product_cat ul.subcats li a {
      display: block;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase; }
      .archive.tax-product_cat ul.subcats li a img {
        width: 100%;
        display: block; }
      .archive.tax-product_cat ul.subcats li a h2 {
        line-height: 1em;
        margin: 0 !important;
        position: absolute;
        bottom: 9px;
        left: 9px;
        padding: 4px 15px;
        background-color: rgba(28, 28, 28, 0.5);
        font-size: 18px;
        color: #fff; }
        .archive.tax-product_cat ul.subcats li a h2 mark {
          display: none; }

.archive.tax-product_cat .filters {
  padding: 24px 20px;
  background: #F5F5F5;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: calc(100% - 40px); }
  .archive.tax-product_cat .filters.active {
    display: block; }
  @media (min-width: 48em) {
    .archive.tax-product_cat .filters {
      position: relative;
      display: inline-block;
      width: 280px;
      margin-right: 47px;
      float: left; } }
  .archive.tax-product_cat .filters .close-nav-toggle {
    position: absolute;
    top: 26px;
    right: 20px;
    padding: 0; }
    @media (min-width: 48em) {
      .archive.tax-product_cat .filters .close-nav-toggle {
        display: none; } }
  .archive.tax-product_cat .filters .woocommerce-result-count {
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    padding: 0;
    margin: 0; }
    @media (min-width: 48em) {
      .archive.tax-product_cat .filters .woocommerce-result-count {
        display: block; } }
  .archive.tax-product_cat .filters .widget {
    margin-top: 0; }
  .archive.tax-product_cat .filters .widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px; }
  .archive.tax-product_cat .filters .widget_layered_nav {
    border-bottom: 1px solid #9A9A9A;
    padding: 16px 0; }
    .archive.tax-product_cat .filters .widget_layered_nav:last-child {
      border-bottom: 0; }
    .archive.tax-product_cat .filters .widget_layered_nav .widget-title {
      cursor: pointer;
      position: relative;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.2em;
      margin-bottom: 0; }
      .archive.tax-product_cat .filters .widget_layered_nav .widget-title:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        content: '';
        display: block;
        background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-grey.svg") no-repeat top center;
        width: 8px;
        height: 13px; }
      .archive.tax-product_cat .filters .widget_layered_nav .widget-title.active:after {
        transform: translateY(-50%) rotate(90deg); }
    .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list {
      margin: 14px 0 0 0;
      font-size: 14px; }
      .js .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list {
        display: none; }
      .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:before {
        display: none; }
      .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.woocommerce-widget-layered-nav-list__item--chosen a:after {
        display: block;
        position: absolute;
        content: "\f00c";
        top: 2px;
        left: 2px;
        font-family: "Font Awesome 5 Free";
        font-size: 12px;
        font-weight: 900; }
      .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
        font-weight: 400;
        text-decoration: none;
        display: block;
        position: relative;
        padding-left: 28px; }
        .archive.tax-product_cat .filters .widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before {
          position: absolute;
          left: 0;
          top: 3px;
          display: block;
          content: '';
          width: 15px;
          height: 15px;
          background: #fff;
          border: 1px solid #1C1C1C; }

.archive.tax-product_cat .archive__content .product-list-actions {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  align-items: center;
  float: left;
  display: none;
  margin-bottom: 25px; }
  @media (min-width: 48em) {
    .archive.tax-product_cat .archive__content .product-list-actions {
      display: flex; } }
  .archive.tax-product_cat .archive__content .product-list-actions .product-list-actions__buttons {
    display: inline-block;
    vertical-align: middle; }

.archive.tax-product_cat .archive__content .woocommerce-ordering {
  float: right;
  width: calc(50% - 8px);
  clear: none;
  margin: 0;
  padding: 0;
  position: relative; }
  @media (min-width: 48em) {
    .archive.tax-product_cat .archive__content .woocommerce-ordering {
      width: auto;
      min-width: 210px; } }
  .archive.tax-product_cat .archive__content .woocommerce-ordering:after {
    content: '';
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 12px;
    width: 10px;
    height: 10px;
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-grey.svg") no-repeat center; }
  .archive.tax-product_cat .archive__content .woocommerce-ordering select {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    border: 1px solid #1C1C1C;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    /* get rid of default appearance for IE8, 9 and 10*/ }
    @media (min-width: 48em) {
      .archive.tax-product_cat .archive__content .woocommerce-ordering select {
        padding: 5px 10px; } }

.archive.tax-product_cat .archive__content .toggle-filters {
  font-size: 14px;
  float: left;
  width: calc(50% - 8px);
  border: 1px solid #1C1C1C;
  padding: 10px;
  position: relative; }
  @media (min-width: 48em) {
    .archive.tax-product_cat .archive__content .toggle-filters {
      display: none; } }
  .archive.tax-product_cat .archive__content .toggle-filters:after {
    content: '';
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 12px;
    width: 10px;
    height: 10px;
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-grey.svg") no-repeat center; }

@media (min-width: 48em) {
  .archive.tax-product_cat .filters + .archive__content {
    float: right;
    width: calc(100% - 327px); } }

.archive.tax-product_cat .woocommerce-pagination {
  margin-top: 10px;
  margin-bottom: 50px; }
  .archive.tax-product_cat .woocommerce-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .archive.tax-product_cat .woocommerce-pagination ul::before {
      content: "PAGE";
      font-family: atten-new, sans-serif !important; }
    .archive.tax-product_cat .woocommerce-pagination ul li {
      font-family: atten-new, sans-serif !important;
      font-size: 14px; }
      .archive.tax-product_cat .woocommerce-pagination ul li .current {
        color: #FFF;
        background-color: #1C1C1C; }
      .archive.tax-product_cat .woocommerce-pagination ul li a {
        font-family: atten-new, sans-serif !important;
        text-decoration: none; }

.woocommerce .content-area {
  max-width: 1280px;
  padding: 0 16px; }
  @media (min-width: 1312px) {
    .woocommerce .content-area {
      padding-left: 0;
      padding-right: 0; } }

.woocommerce .content-area .site-main {
  margin: 0; }

ul.products {
  margin: 0 -15px; }
  ul.products .woocommerce-loop-product__title {
    font-size: 18px;
    text-decoration: none;
    color: #1C1C1C; }
  ul.products .product__content {
    width: 100%; }
  ul.products.list li.product {
    padding: 10px 0 !important;
    border-bottom: 1px solid #E6E6E6;
    width: 100% !important;
    flex-direction: row; }
    ul.products.list li.product .price {
      float: none;
      margin-bottom: 14px; }
    ul.products.list li.product .btn--view-product {
      float: none; }
    ul.products.list li.product .woocommerce-loop-product__title {
      margin: 0; }
  ul.products li.product {
    margin-bottom: 30px; }
    @media (min-width: 48em) {
      ul.products li.product {
        margin-bottom: 40px; } }
    ul.products li.product span.onsale {
      background-color: #A01515;
      font-weight: 600;
      font-size: 20px;
      color: #FFF;
      font-family: atten-new, sans-serif !important; }
    ul.products li.product h2.woocommerce-loop-product__title {
      font-size: 18px;
      font-weight: 600; }
    ul.products li.product .price {
      margin-bottom: 14px;
      font-family: atten-new, sans-serif !important; }
      @media (min-width: 48em) {
        ul.products li.product .price {
          float: left;
          margin-bottom: 0; } }
      ul.products li.product .price .amount {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 14px; }
  ul.products .btn--view-product {
    width: 100%;
    text-align: center; }
    @media (min-width: 48em) {
      ul.products .btn--view-product {
        width: auto;
        float: right; } }

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
  width: 100%;
  margin: 0 15px 40px; }
  @media (min-width: 48em) {
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
      width: calc(50% - 30px); } }
  @media (min-width: 80em) {
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
      width: calc(33.333% - 30px); } }

.top-banner {
  display: flex;
  justify-content: center;
  align-items: center; }
  .top-banner .close {
    position: relative;
    top: -2px;
    right: 5px;
    cursor: pointer; }
  .top-banner .content {
    display: inline-block;
    margin: auto;
    padding: 10px;
    font-size: 15px !important; }
    .top-banner .content * {
      margin: 0;
      padding: 0;
      color: inherit !important;
      font-size: 15px !important; }

#site-header .hamburger {
  position: absolute;
  top: 0;
  left: 0; }
  #site-header .hamburger.hamburger--search {
    left: auto;
    right: 0; }
    #site-header .hamburger.hamburger--search svg {
      fill: #198CFC; }
  #site-header .hamburger .hamburger-box {
    height: 21px; }
    #site-header .hamburger .hamburger-box.search {
      background-color: #ECEEF2;
      width: 36px;
      height: 36px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 20px; }
      #site-header .hamburger .hamburger-box.search img {
        width: 21px;
        height: 21px; }
  #site-header .hamburger .hamburger-inner,
  #site-header .hamburger .hamburger-inner::before,
  #site-header .hamburger .hamburger-inner::after {
    background-color: #198CFC;
    height: 5px; }
  @media (min-width: 80em) {
    #site-header .hamburger {
      display: none; } }

#site-header .site-title a {
  color: #fff; }

#site-header .site-logo {
  margin: 0 auto;
  width: 70%; }
  @media (min-width: 80em) {
    #site-header .site-logo {
      width: inherit;
      margin: 0; } }
  #site-header .site-logo img {
    max-height: 4rem; }
    @media (min-width: 28.125em) {
      #site-header .site-logo img {
        max-height: 6rem; } }

#site-header .site-tagline {
  display: block;
  font-weight: 300;
  font-size: 12px;
  font-family: poppins, sans-serif;
  color: #9DA9B8;
  margin: 8px 0 13px; }
  @media (min-width: 80em) {
    #site-header .site-tagline {
      max-width: 60%;
      margin: 0 0 0 26px; } }

#site-header .header-top {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding: 12px 0 12px; }
  @media (min-width: 80em) {
    #site-header .header-top {
      padding: 17px 0 12px;
      display: flex;
      width: 100%; } }
  @media (min-width: 80em) {
    #site-header .header-top > div {
      width: 50%; } }
  #site-header .header-top > div.search {
    display: none; }
    #site-header .header-top > div.search .asp_w_container {
      width: 100%; }
    @media (min-width: 80em) {
      #site-header .header-top > div.search {
        width: 30%;
        display: inline-flex; } }
  #site-header .header-top > div.header-links {
    width: 10%; }
    #site-header .header-top > div.header-links li {
      list-style-type: none;
      margin: 0; }
      #site-header .header-top > div.header-links li:not(:last-of-type) {
        margin-right: 10px; }
      #site-header .header-top > div.header-links li a {
        font-family: poppins, sans-serif;
        font-weight: 400;
        font-size: 13px;
        color: #051C33; }
      #site-header .header-top > div.header-links li ul.sub-menu {
        position: absolute;
        visibility: hidden;
        margin: 0;
        padding: 5px;
        background-color: #fff;
        z-index: 1; }
      #site-header .header-top > div.header-links li:hover ul.sub-menu {
        visibility: visible; }
    @media (min-width: 80em) {
      #site-header .header-top > div.header-links {
        width: 20%; } }

#site-header .header-bottom-border {
  border-bottom: 1px solid #ECEEF2; }

#site-header .header-inner {
  display: block;
  padding: 0;
  width: 100%;
  max-width: 100%; }
  #site-header .header-inner .header-titles-wrapper {
    max-width: 100%;
    padding: 0; }
    @media (min-width: 80em) {
      #site-header .header-inner .header-titles-wrapper {
        justify-content: flex-start; } }
    #site-header .header-inner .header-titles-wrapper .header-titles {
      margin: 0;
      flex-wrap: nowrap;
      flex-direction: column; }
      @media (min-width: 80em) {
        #site-header .header-inner .header-titles-wrapper .header-titles {
          flex-direction: row; } }
  #site-header .header-inner.ppc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    padding: 12px 0 12px; }
    @media (min-width: 80em) {
      #site-header .header-inner.ppc-header {
        padding: 17px 0 12px;
        display: flex;
        width: 100%; } }
    #site-header .header-inner.ppc-header .site-logo {
      width: auto; }
    #site-header .header-inner.ppc-header #book-a-consultation {
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0);
      background-color: #FD8D25;
      color: #fff;
      font-family: poppins, sans-serif;
      font-weight: 600;
      min-width: 155px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      border-radius: 30px;
      margin: 10px 0px;
      padding: 0px;
      padding-left: 20px !important;
      padding-right: 20px !important;
      font-size: 15px;
      font-style: normal;
      min-height: 44px;
      vertical-align: baseline;
      width: 190px;
      text-transform: none;
      text-decoration: none;
      border: 0;
      outline: none;
      cursor: pointer;
      transition: none;
      box-shadow: none;
      bottom: auto;
      box-sizing: border-box;
      clip: auto;
      float: none;
      left: auto;
      list-style-type: none;
      max-height: none;
      max-width: none;
      opacity: 1;
      overflow: visible;
      position: relative;
      pointer-events: auto;
      right: auto;
      text-indent: 0;
      transform: none;
      top: auto;
      visibility: inherit;
      word-wrap: break-word;
      white-space: normal; }

#site-header .search {
  padding: 0 31px; }
  @media (min-width: 80em) {
    #site-header .search {
      padding: 0;
      display: flex;
      align-items: center; } }

#site-header .header-links {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  display: none; }
  @media (min-width: 80em) {
    #site-header .header-links {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end; } }
  #site-header .header-links a {
    text-decoration: none;
    padding: 0;
    font-weight: bold;
    font-size: 0; }
    @media (min-width: 80em) {
      #site-header .header-links a {
        font-size: 15px; } }
    #site-header .header-links a:before {
      display: none; }
  #site-header .header-links .toggle-wrapper:before {
    display: none; }
  #site-header .header-links .toggle-wrapper .toggle {
    height: auto; }
  #site-header .header-links .toggle-wrapper .toggle-inner {
    display: block;
    height: auto; }
  #site-header .header-links .basket-toggle-wrapper {
    margin-left: 31px;
    position: absolute;
    right: 15px;
    top: 16px; }
    @media (min-width: 80em) {
      #site-header .header-links .basket-toggle-wrapper {
        top: auto;
        right: auto;
        position: relative; } }
    #site-header .header-links .basket-toggle-wrapper img {
      width: 40px;
      height: 40px; }
  #site-header .header-links .account-toggle-wrapper {
    position: absolute;
    right: 73px;
    top: 22px; }
    @media (min-width: 80em) {
      #site-header .header-links .account-toggle-wrapper {
        top: auto;
        right: auto;
        position: relative; } }
    #site-header .header-links .account-toggle-wrapper img {
      margin-left: 10px;
      width: 18.96px;
      height: 23.7px; }

header.entry-header {
  display: none; }

.search-modal-inner {
  padding: 10px 20px; }
  .search-modal-inner .asp_w_container {
    width: 100%; }

.tw-header-sticky #site-header {
  top: -1px; }

.footer-nav-widgets-wrapper,
#site-footer {
  background-color: #061C32;
  color: #fff; }

#site-footer {
  padding: 20px 0;
  text-align: center;
  background-color: #061C32; }
  @media (min-width: 80em) {
    #site-footer {
      padding: 40px;
      text-align: left; } }
  #site-footer .footer-nav-widgets-wrapper {
    margin-top: 0; }
  @media (min-width: 65.625em) {
    #site-footer .menu-social-menu-container ul {
      text-align: right; } }
  #site-footer .section-inner {
    display: block;
    width: 100%;
    max-width: 1280px; }
    #site-footer .section-inner .footer-widgets-outer-wrapper {
      padding: 0 20px;
      border-bottom: 0; }
      @media (min-width: 80em) {
        #site-footer .section-inner .footer-widgets-outer-wrapper {
          padding: 0; } }
      #site-footer .section-inner .footer-widgets-outer-wrapper .footer-widgets-wrapper {
        margin: 0;
        width: 100%;
        display: grid;
        justify-content: normal; }
        @media (min-width: 65.625em) {
          #site-footer .section-inner .footer-widgets-outer-wrapper .footer-widgets-wrapper {
            display: flex;
            justify-content: space-between; } }
    #site-footer .section-inner .bottom-footer {
      padding: 20px 20px 0 20px;
      text-align: center; }
      @media (min-width: 80em) {
        #site-footer .section-inner .bottom-footer {
          padding: 20px 0 0 0; } }
      #site-footer .section-inner .bottom-footer .footer-widgets {
        width: 100%; }
        #site-footer .section-inner .bottom-footer .footer-widgets .widget_nav_menu {
          margin: 0 0 20px 0; }
          #site-footer .section-inner .bottom-footer .footer-widgets .widget_nav_menu ul li {
            display: inline-block;
            margin: 0 17px; }
            #site-footer .section-inner .bottom-footer .footer-widgets .widget_nav_menu ul li a {
              text-transform: uppercase;
              font-size: 11px;
              font-weight: 400;
              font-family: muli, sans-serif; }
        #site-footer .section-inner .bottom-footer .footer-widgets .widget_text {
          color: #C5CBD7;
          font-size: 11px;
          font-weight: 400; }
          #site-footer .section-inner .bottom-footer .footer-widgets .widget_text a,
          #site-footer .section-inner .bottom-footer .footer-widgets .widget_text p,
          #site-footer .section-inner .bottom-footer .footer-widgets .widget_text div {
            color: #C5CBD7;
            font-size: 11px;
            font-weight: 400;
            font-family: muli, sans-serif; }
    #site-footer .section-inner .footer-widgets {
      width: 100%;
      margin-left: 0; }
      @media (min-width: 65.625em) {
        #site-footer .section-inner .footer-widgets {
          width: 33.3333%; } }
      #site-footer .section-inner .footer-widgets + .footer-widgets {
        margin-top: 40px; }
        @media (min-width: 65.625em) {
          #site-footer .section-inner .footer-widgets + .footer-widgets {
            margin-top: 0; } }
      #site-footer .section-inner .footer-widgets.column-one {
        width: 100%; }
        @media (min-width: 65.625em) {
          #site-footer .section-inner .footer-widgets.column-one {
            width: 66%; } }
        #site-footer .section-inner .footer-widgets.column-one .widget {
          margin: 0;
          display: inline-block;
          vertical-align: top;
          width: 100%; }
          @media (min-width: 48em) {
            #site-footer .section-inner .footer-widgets.column-one .widget {
              width: 100px; }
              #site-footer .section-inner .footer-widgets.column-one .widget:nth-child(n+2) {
                margin-left: 20px; } }
          @media (min-width: 48em) {
            #site-footer .section-inner .footer-widgets.column-one .widget {
              width: 130px; }
              #site-footer .section-inner .footer-widgets.column-one .widget:nth-child(n+2) {
                margin-left: 53px; } }
          @media (min-width: 48em) {
            #site-footer .section-inner .footer-widgets.column-one .widget {
              border: none; }
              #site-footer .section-inner .footer-widgets.column-one .widget:last-child {
                border: none; } }
          #site-footer .section-inner .footer-widgets.column-one .widget .widget-content {
            padding: 19px 0px; }
            @media (min-width: 48em) {
              #site-footer .section-inner .footer-widgets.column-one .widget .widget-content {
                padding: 0; } }
            #site-footer .section-inner .footer-widgets.column-one .widget .widget-content .widget-title {
              margin-bottom: 0;
              text-transform: uppercase;
              line-height: 1.25;
              display: block; }
              @media (min-width: 48em) {
                #site-footer .section-inner .footer-widgets.column-one .widget .widget-content .widget-title {
                  margin-bottom: 0.6em; } }
            #site-footer .section-inner .footer-widgets.column-one .widget .widget-content nav {
              display: none;
              margin-top: 10px; }
              #site-footer .section-inner .footer-widgets.column-one .widget .widget-content nav .menu-item a {
                font-size: 12px;
                font-weight: normal; }
              @media (min-width: 48em) {
                #site-footer .section-inner .footer-widgets.column-one .widget .widget-content nav {
                  margin-top: 0;
                  display: block !important; } }
      #site-footer .section-inner .footer-widgets .widget {
        margin: 0 0 37px; }
        #site-footer .section-inner .footer-widgets .widget.widget_media_gallery .gallery {
          align-items: center;
          justify-content: center; }
          @media (min-width: 65.625em) {
            #site-footer .section-inner .footer-widgets .widget.widget_media_gallery .gallery {
              justify-content: flex-end; } }
          #site-footer .section-inner .footer-widgets .widget.widget_media_gallery .gallery .gallery-item {
            max-width: 75px;
            margin: 0 10px; }
            #site-footer .section-inner .footer-widgets .widget.widget_media_gallery .gallery .gallery-item:last-child {
              margin-right: 0;
              padding: 0; }
        #site-footer .section-inner .footer-widgets .widget:last-child {
          margin-bottom: 0; }
        #site-footer .section-inner .footer-widgets .widget .widget-content {
          font-size: 14px;
          font-weight: 400;
          font-family: muli, sans-serif;
          color: #fff; }
          #site-footer .section-inner .footer-widgets .widget .widget-content .widget-title {
            font-weight: 600;
            font-family: poppins, sans-serif;
            font-size: 14px;
            letter-spacing: 0.2em;
            color: #fff;
            margin-bottom: 0.6em; }
          #site-footer .section-inner .footer-widgets .widget .widget-content a {
            color: #fff;
            font-weight: 400; }
          #site-footer .section-inner .footer-widgets .widget .widget-content ul li a {
            color: #fff;
            font-weight: 400;
            font-family: muli, sans-serif; }

.wp-block-group .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media img {
  max-width: 100%; }

.wp-block-group .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  text-align: center; }
  @media (min-width: 48em) {
    .wp-block-group .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
      text-align: left; } }
  .wp-block-group .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content .wp-block-buttons {
    justify-content: center; }
    @media (min-width: 48em) {
      .wp-block-group .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content .wp-block-buttons {
        justify-content: normal; } }

.home .wp-block-group .tw-mb-4 > .wp-block-column {
  max-width: 50%; }

.home .woocommerce-breadcrumb {
  display: none !important; }

.wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns {
  flex-direction: row;
  justify-content: space-between; }
  @media (min-width: 48em) {
    .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns {
      justify-content: normal; } }
  .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column {
    flex-grow: 0; }
    .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column:first-of-type {
      flex-basis: 20% !important;
      flex-grow: 0; }
    .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column:not(:first-of-type) {
      flex-basis: 75% !important; }
    .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column .has-h-5-font-size {
      font-size: 16px; }
      @media (min-width: 48em) {
        .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column .has-h-5-font-size {
          font-size: 2.1rem; } }
    .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column p {
      font-size: 14px !important; }
      @media (min-width: 48em) {
        .wp-block-group.wm-columns-with-icons .tw-justify-center .wp-block-columns .wp-block-column p {
          font-size: 15px !important; } }

#site-content > article > .post-inner {
  padding-top: 0; }

.wp-block-group p.tw-heading-style {
  font-size: 30px !important;
  font-family: "poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: -1.24688px;
  color: #0a3866 !important; }

.blog-content p.tw-heading-style {
  font-size: 30px !important;
  font-family: "poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: -1.24688px;
  color: #0a3866; }

.wm_casestudies p.tw-heading-style {
  font-size: 30px !important;
  font-family: "poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: -1.24688px;
  color: #0a3866 !important; }

p.tw-heading-style {
  font-size: 30px !important;
  font-family: "poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: -1.24688px;
  color: #0a3866 !important;
  margin-top: 1.25em; }

.wp-block-group p.tw-heading-white, .wp-block-group p.tw-heading-white span {
  color: #ffffff !important; }

.wm_casestudies p.tw-heading-white, .wm_casestudies p.tw-heading-white span {
  color: #ffffff !important; }

.blog-content p.tw-heading-white, .blog-content p.tw-heading-white span {
  color: #ffffff !important; }

.post-inner {
  padding-top: 0; }

@media (min-width: 48em) {
  .entry-content .wp-block-group.centered-text-group {
    width: 842px !important;
    max-width: unset !important;
    margin-bottom: 85px !important; } }

.entry-content .wp-block-group.centered-text-group h2 {
  font-size: 30px;
  margin-bottom: 17px; }

.entry-content .wp-block-group.centered-text-group p {
  font-size: 16px; }

.error404-content {
  min-height: 50vh; }

.entry-content > .wp-block-group.grey-bkg {
  background-color: #F9FAFB;
  width: 100vw !important;
  max-width: unset !important;
  padding: 20px !important; }
  @media (min-width: 48em) {
    .entry-content > .wp-block-group.grey-bkg {
      padding: 40px 0px !important; } }

.entry-content .wp-block-group.centered-video-group .is-type-video {
  overflow: hidden;
  border-radius: 10px; }
  @media (min-width: 80em) {
    .entry-content .wp-block-group.centered-video-group .is-type-video {
      width: 1280px;
      height: 400px; } }
  .entry-content .wp-block-group.centered-video-group .is-type-video * {
    margin: auto;
    max-width: 100%;
    max-height: 400px; }

h1.no-bottom-margin,
h2.no-bottom-margin,
h3.no-bottom-margin,
h4.no-bottom-margin,
h5.no-bottom-margin,
h6.no-bottom-margin {
  margin-bottom: 0 !important; }

.wp-block-group.no-top-padding {
  padding-top: 0 !important; }

.has-theme-white-color {
  color: #fff; }

.has-theme-orange-color {
  color: #FD8D25; }

.has-theme-orange-background-color {
  background-color: #FD8D25; }

a.has-theme-orange-background-color:hover {
  background-color: #FD8D25; }

.has-theme-orange-color {
  color: #FD8D25; }

.has-theme-dark-orange-background-color {
  background-color: #FD8D25; }

.has-theme-dark-orange-color {
  color: #FD8D25; }

.has-theme-alice-blue-background-color {
  background-color: #F8F9FA; }

.has-theme-alice-blue-color {
  color: #F8F9FA; }

.has-theme-brand-blue-background-color {
  background-color: #198CFC;
  color: #fff; }

a.has-theme-brand-blue-background-color:hover {
  background-color: #0259ad; }

.has-theme-brand-blue-color {
  color: #198CFC !important; }

.has-background-background-color {
  background-color: #fff !important; }

a.has-background-background-color:hover {
  background-color: #cccccc !important; }

.has-theme-dark-blue-background-color {
  background-color: #061C32; }

.has-theme-dark-blue-color {
  color: #061C32; }

.has-theme-white-background-color {
  background-color: #fff; }

.has-theme-white-color,
:root .has-background-color {
  color: #fff; }

:root .has-primary-color {
  color: #3D517B; }

.header-navigation-wrapper {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  background-color: #fff; }
  .header-navigation-wrapper ul.primary-menu {
    display: block;
    margin: 0; }

#mega-menu-wrap-primary {
  background: none; }
  #mega-menu-wrap-primary #mega-menu-primary {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; }
    @media (min-width: 83.75em) {
      #mega-menu-wrap-primary #mega-menu-primary {
        padding: 0 0 0 0; } }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
      line-height: 53px;
      height: 53px;
      min-height: 44px; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item a.mega-menu-link {
      margin: 5px 0;
      padding: 0px;
      font-size: 15px;
      font-weight: 400;
      font-family: poppins, sans-serif;
      font-style: normal;
      color: #0A3866; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item a.mega-menu-link:hover {
        font-weight: normal;
        color: #198CFC !important; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link {
      font-weight: 600; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link:hover {
        font-weight: 600; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link .mega-indicator {
        display: none; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.book-a-demo a.mega-menu-link {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #FD8D25;
      color: #fff;
      font-family: poppins, sans-serif;
      font-weight: 600;
      min-width: 155px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      border-radius: 30px;
      margin: 10px 0px;
      padding-left: 20px !important;
      padding-right: 20px !important; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.book-a-demo a.mega-menu-link:hover {
        background-color: #FD8D25 !important;
        color: #fff !important;
        font-weight: 600 !important; }
    @media (min-width: 80em) {
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.menu-plus-icon a.mega-menu-link:after {
        color: #198CFC;
        content: '\f132';
        font-family: dashicons;
        font-weight: normal;
        display: inline-block;
        margin: 0 0 0 6px;
        vertical-align: top;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: rotate(0);
        position: absolute;
        background: transparent;
        height: auto;
        width: auto;
        right: -20px;
        line-height: inherit; } }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu,
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu {
      width: auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5); }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li:first-child,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li:first-child {
        padding: 15px 0 0 0; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.selected, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li:not(.view-all):not(:first-child):hover,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.selected,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li:not(.view-all):not(:first-child):hover {
        background-color: #F4F7FC; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li:hover,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li:hover {
        cursor: pointer; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .mega-block-title,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .link_wrapper,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .mega-block-title,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .link_wrapper {
        margin: 0 34px;
        height: 53px;
        display: flex !important;
        align-items: center; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .link_wrapper,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li .link_wrapper {
        border-bottom: 1px solid #EAEDF0; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li li.view-all .link_wrapper, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.view-all .link_wrapper,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li li.view-all .link_wrapper,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.view-all .link_wrapper {
        border-bottom: none; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li > ul.mega-sub-menu > li .mega-block-title,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li > ul.mega-sub-menu > li .mega-block-title {
        color: #198CFC !important;
        font-size: 16px !important;
        font-weight: 500 !important; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu ul.mega-sub-menu,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu ul.mega-sub-menu {
        padding: 0;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li.mega-menu-item {
        letter-spacing: 0.2px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
          color: #3D517B !important;
          font-weight: 600 !important;
          white-space: nowrap; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
            color: #198CFC !important; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on a.mega-menu-link {
      color: #198CFC !important; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on .mega-indicator {
      transform: rotate(180deg); }
    #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-right a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-left a.mega-menu-link:before {
      color: #198CFC; }

#menu-header-menu {
  display: flex;
  align-items: center; }
  #menu-header-menu li {
    margin: 0 40px 0 0;
    line-height: 1em;
    display: none; }
    @media (min-width: 80em) {
      #menu-header-menu li {
        display: block; } }
    #menu-header-menu li.download a:after {
      content: '';
      background: url("/content/themes/wired-media-ecommerce-theme/images/icons/download.svg");
      width: 18.56px;
      height: 23.2px;
      display: inline-block;
      vertical-align: middle;
      margin-left: 14px; }
    #menu-header-menu li a {
      font-size: 15px;
      color: #fff; }

.menu-social-menu-container ul li {
  margin: 0;
  line-height: 1em;
  display: inline-block; }
  .menu-social-menu-container ul li:nth-child(n+2) {
    margin-left: 35px; }

.menu-privacy-menu-container ul li {
  margin: 0; }
  @media (min-width: 48em) {
    .menu-privacy-menu-container ul li {
      display: inline-block; }
      .menu-privacy-menu-container ul li:nth-child(n+2) {
        margin-left: 32px; } }
  .menu-privacy-menu-container ul li a {
    font-size: 12px;
    letter-spacing: 0.2em; }

.blog-content-area {
  padding-top: 0;
  width: calc(100% - 62px);
  margin: auto; }
  @media (min-width: 48em) {
    .blog-content-area {
      padding-top: 68px;
      padding-bottom: 80px;
      width: 100%; } }
  .blog-content-area.search-and-archive-area .no-cover-logo {
    object-fit: fill !important; }
  .blog-content-area.search-and-archive-area .no-search-results-form {
    padding-top: 0rem; }
  .blog-content-area.search-and-archive-area .top-section {
    display: block !important;
    text-align: center;
    margin-top: 0;
    font-size: 26px; }
    .blog-content-area.search-and-archive-area .top-section .color-accent {
      color: #0A3866; }
  @media (min-width: 48em) {
    .blog-content-area.search-and-archive-area .main-column {
      width: 100%;
      float: none; } }
  .blog-content-area.search-and-archive-area main {
    padding: 20px !important;
    margin: 0 auto; }
    @media (min-width: 56.25em) {
      .blog-content-area.search-and-archive-area main {
        max-width: 1275px !important;
        width: 100% !important;
        padding: 0 !important; } }
  .blog-content-area main {
    margin: auto; }
    @media (min-width: 48em) {
      .blog-content-area main {
        width: 1275px; } }
    .blog-content-area main .top-mobile-section {
      text-align: center; }
      @media (min-width: 48em) {
        .blog-content-area main .top-mobile-section {
          display: none; } }
      .blog-content-area main .top-mobile-section > h1, .blog-content-area main .top-mobile-section h2, .blog-content-area main .top-mobile-section h3, .blog-content-area main .top-mobile-section h4, .blog-content-area main .top-mobile-section h5, .blog-content-area main .top-mobile-section h6 {
        font-size: 40px;
        line-height: 1.138888889; }
    .blog-content-area main .left-column {
      width: 100%; }
      @media (min-width: 48em) {
        .blog-content-area main .left-column {
          width: 25%;
          margin-right: 50px;
          float: left; } }
      .blog-content-area main .left-column .search {
        margin-bottom: 30px; }
      @media (min-width: 48em) {
        .blog-content-area main .left-column .filters-wrapper {
          padding: 18px 24px;
          background-color: #F8F9FA;
          border-radius: 15px; } }
      .blog-content-area main .left-column .filters-wrapper h4 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 20px;
        display: none; }
        @media (min-width: 48em) {
          .blog-content-area main .left-column .filters-wrapper h4 {
            display: block; } }
      .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block {
        padding: 18px 24px;
        background-color: #F8F9FA;
        border-radius: 15px;
        margin-bottom: 24px; }
        @media (min-width: 48em) {
          .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block {
            padding: 0;
            background-color: transparent;
            border-radius: 0;
            margin-bottom: 0; }
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block:not(:last-of-type) ul {
              margin-bottom: 15px; }
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block:not(:first-of-type) {
              border-top: 1px solid rgba(100, 100, 100, 0.24); }
              .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block:not(:first-of-type) h6 {
                margin-top: 15px; } }
        .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block h6 {
          font-size: 15px;
          margin-top: 0;
          margin-bottom: 0px;
          text-transform: unset;
          font-weight: lighter; }
          .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block h6:after {
            content: '';
            background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-grey.svg");
            width: 16px;
            height: 10px;
            margin-top: 5px;
            background-size: 16px;
            display: inline-block;
            background-repeat: no-repeat;
            float: right; }
            @media (min-width: 48em) {
              .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block h6:after {
                display: none; } }
          @media (min-width: 48em) {
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block h6 {
              background-color: transparent;
              border-radius: unset;
              margin-bottom: 18px; } }
        .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul {
          list-style-type: none;
          margin: 0;
          display: none; }
          @media (min-width: 48em) {
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul {
              display: block; } }
          .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul li {
            margin: 0; }
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul li input {
              border-color: #428AF4;
              border-width: 2px; }
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul li input[type="checkbox"]:checked::before {
              margin-left: -4px;
              margin-top: -6px; }
            .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block ul li label {
              font-size: 14px; }
        .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block.active h6 {
          margin-bottom: 18px; }
          .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block.active h6:after {
            background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/up-grey.svg");
            background-size: 16px;
            background-repeat: no-repeat; }
        .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block.active ul {
          display: block; }
      .blog-content-area main .left-column .side-wrapper {
        padding: 18px 24px;
        background-color: #F8F9FA;
        border-radius: 15px;
        width: 100%;
        margin: 31px auto; }
        @media (min-width: 48em) {
          .blog-content-area main .left-column .side-wrapper {
            margin: 0; } }
        .blog-content-area main .left-column .side-wrapper h4 {
          margin: 0;
          font-size: 20px; }
          .blog-content-area main .left-column .side-wrapper h4:after {
            content: '';
            background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-grey.svg");
            width: 16px;
            height: 10px;
            margin-top: 5px;
            background-size: 16px;
            display: inline-block;
            background-repeat: no-repeat;
            float: right; }
            @media (min-width: 48em) {
              .blog-content-area main .left-column .side-wrapper h4:after {
                display: none; } }
        .blog-content-area main .left-column .side-wrapper ul {
          margin: 20px 0 0;
          list-style: none;
          display: none; }
          @media (min-width: 48em) {
            .blog-content-area main .left-column .side-wrapper ul {
              display: block; } }
          .blog-content-area main .left-column .side-wrapper ul li {
            margin: 0 0 20px; }
            .blog-content-area main .left-column .side-wrapper ul li a {
              text-decoration: none;
              font-size: 16px; }
        .blog-content-area main .left-column .side-wrapper.active h4:after {
          background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/up-grey.svg");
          background-size: 16px;
          background-repeat: no-repeat; }
        .blog-content-area main .left-column .side-wrapper.active ul {
          display: block; }
      .blog-content-area main .left-column .side-areas {
        display: none; }
        @media (min-width: 48em) {
          .blog-content-area main .left-column .side-areas {
            display: block; } }
        .blog-content-area main .left-column .side-areas h4 {
          font-size: 18px; }
        .blog-content-area main .left-column .side-areas .area {
          height: 200px;
          border-radius: 10px;
          margin-bottom: 20px;
          position: relative;
          background-size: cover;
          box-shadow: inset 0 0 0 2000px #0000001a; }
          .blog-content-area main .left-column .side-areas .area .title_wrapper {
            background-color: rgba(69, 62, 67, 0.5);
            padding: 10px;
            border-radius: 5px;
            font-size: 18px;
            text-decoration: none;
            color: #fff;
            font-weight: bolder;
            position: absolute;
            bottom: 20px;
            left: 20px; }
            .blog-content-area main .left-column .side-areas .area .title_wrapper:after {
              content: '';
              background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-arrow-orange.svg");
              width: 13px;
              height: 13px;
              margin-left: 10px;
              display: inline-block;
              background-repeat: no-repeat; }
    @media (min-width: 48em) {
      .blog-content-area main .main-column {
        width: 71%;
        float: left; } }
    .blog-content-area main .main-column .blog-content > *:first-child {
      margin-top: 0; }
    .blog-content-area main .main-column .blog-content h1,
    .blog-content-area main .main-column .blog-content h2,
    .blog-content-area main .main-column .blog-content h3,
    .blog-content-area main .main-column .blog-content .h1,
    .blog-content-area main .main-column .blog-content .h2,
    .blog-content-area main .main-column .blog-content .h3 {
      margin-top: 20px;
      margin-bottom: 20px;
      font-family: poppins, sans-serif !important;
      font-weight: 600 !important;
      font-style: normal !important;
      color: #0A3866;
      font-feature-settings: "lnum";
      font-variant-numeric: lining-nums;
      letter-spacing: -.0415625em;
      line-height: 1.25; }
    .blog-content-area main .main-column .blog-content h1, .blog-content-area main .main-column .blog-content .h1 {
      font-size: 26px; }
    .blog-content-area main .main-column .blog-content h2, .blog-content-area main .main-column .blog-content .h2 {
      font-size: 22px; }
    .blog-content-area main .main-column .blog-content h3, .blog-content-area main .main-column .blog-content .h3 {
      font-size: 18px; }
    .blog-content-area main .main-column .blog-content .subtitle {
      color: #198CFC;
      font-size: 15px;
      margin-bottom: 20px; }
      .blog-content-area main .main-column .blog-content .subtitle a {
        color: inherit;
        font-weight: bolder; }
    .blog-content-area main .main-column .blog-content p,
    .blog-content-area main .main-column .blog-content ul,
    .blog-content-area main .main-column .blog-content ol {
      font-size: 16px;
      margin-bottom: 20px; }
    .blog-content-area main .main-column .blog-content figure {
      margin: 0 !important;
      margin-bottom: 20px !important;
      border-radius: 10px; }
    .blog-content-area main .main-column .blog-content .wp-block-column > h1:first-child,
    .blog-content-area main .main-column .blog-content .wp-block-column > h2:first-child,
    .blog-content-area main .main-column .blog-content .wp-block-column > h3:first-child {
      margin-top: 0; }
    .blog-content-area main .main-column .blog-content .addtoany_shortcode {
      margin-top: 96px; }
      .blog-content-area main .main-column .blog-content .addtoany_shortcode .a2a_kit {
        display: flex;
        width: 150px;
        justify-content: space-between; }
      .blog-content-area main .main-column .blog-content .addtoany_shortcode a {
        border: 2px solid #428AF4;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center; }
      .blog-content-area main .main-column .blog-content .addtoany_shortcode .a2a_svg {
        width: 20px;
        height: 20px; }
    .blog-content-area main .main-column .blog-content .row-articles-wrapper {
      width: 100% !important;
      margin-top: 71px;
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
      .blog-content-area main .main-column .blog-content .row-articles-wrapper > h1,
      .blog-content-area main .main-column .blog-content .row-articles-wrapper > h2,
      .blog-content-area main .main-column .blog-content .row-articles-wrapper > h3 {
        margin-top: 0;
        text-align: left;
        font-size: 26px; }
      .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper.count2 {
        justify-content: space-around; }
      .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper {
        width: auto;
        height: auto; }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count1 {
            max-width: 49%; } }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count2 {
            max-width: 49%; } }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count3 {
            max-width: 32%; } }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count4 {
            max-width: 24%; } }
        .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper img {
          height: 201px; }
        .blog-content-area main .main-column .blog-content .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-title {
          height: auto; }
    .blog-content-area main .main-column .top-section {
      display: none; }
      @media (min-width: 48em) {
        .blog-content-area main .main-column .top-section {
          display: block; } }
      .blog-content-area main .main-column .top-section h1 {
        margin-top: 0;
        font-size: 26px;
        margin-bottom: 13px; }
      .blog-content-area main .main-column .top-section p {
        font-size: 16px;
        margin-bottom: 45px; }
    .blog-content-area main .main-column .btm-section {
      display: none;
      margin: 40px 0; }
      @media (min-width: 48em) {
        .blog-content-area main .main-column .btm-section {
          display: flex; } }
      .blog-content-area main .main-column .btm-section .column_wrapper {
        padding: 10px; }
        .blog-content-area main .main-column .btm-section .column_wrapper .blog_footer_content_column_title {
          letter-spacing: -0.83125px !important;
          line-height: 25px !important;
          display: block;
          margin: 0 !important;
          margin-bottom: 10px !important;
          font-size: 20px !important;
          font-family: poppins, sans-serif !important;
          font-weight: 600 !important;
          font-style: normal !important;
          color: #0A3866; }
        .blog-content-area main .main-column .btm-section .column_wrapper p {
          font-size: 16px;
          margin-bottom: 45px; }
        .blog-content-area main .main-column .btm-section .column_wrapper .blog_footer_content_column_button {
          text-decoration: none;
          white-space: nowrap;
          margin: auto;
          text-align: center;
          font-size: 15px;
          padding: 10px 37px;
          height: 42px;
          border-radius: 21px;
          width: 179px;
          font-family: poppins, sans-serif !important;
          font-weight: 600 !important; }
    .blog-content-area main .main-column .blog-wrapper-section .blog-item {
      /*                    height: 256px; */
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      background-color: #F8F9FA; }
      @media (min-width: 48em) {
        .blog-content-area main .main-column .blog-wrapper-section .blog-item {
          flex-direction: row; } }
      .blog-content-area main .main-column .blog-wrapper-section .blog-item:not(:last-of-type) {
        margin-bottom: 38px; }
      .blog-content-area main .main-column .blog-wrapper-section .blog-item > a:first-child {
        display: contents; }
      .blog-content-area main .main-column .blog-wrapper-section .blog-item img {
        width: 100%;
        height: 147px;
        object-fit: cover; }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-wrapper-section .blog-item img {
            width: 385px;
            height: 256px; } }
      .blog-content-area main .main-column .blog-wrapper-section .blog-item .content {
        margin: 21px 22px 35px; }
        @media (min-width: 48em) {
          .blog-content-area main .main-column .blog-wrapper-section .blog-item .content {
            margin-top: 29px;
            margin-left: 40px;
            margin-right: 87px; } }
        .blog-content-area main .main-column .blog-wrapper-section .blog-item .content h4 {
          margin-top: 0;
          font-size: 20px; }
        .blog-content-area main .main-column .blog-wrapper-section .blog-item .content p {
          font-size: 16px;
          margin-bottom: 21px; }
        .blog-content-area main .main-column .blog-wrapper-section .blog-item .content a {
          margin-top: 37px;
          font-size: 15px;
          padding: 10px 37px;
          height: 42px;
          border-radius: 21px;
          width: 179px;
          font-weight: bolder;
          position: initial; }
    .blog-content-area main .main-column .pagination-wrapper {
      display: flex;
      justify-content: center;
      height: 38px;
      margin: 30px auto auto;
      align-items: center; }
      @media (min-width: 48em) {
        .blog-content-area main .main-column .pagination-wrapper {
          justify-content: space-between;
          width: 60%; } }
      .blog-content-area main .main-column .pagination-wrapper .arrow-box {
        width: 25px;
        height: 25px;
        border-radius: 19px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #3D517B; }
        .blog-content-area main .main-column .pagination-wrapper .arrow-box a {
          display: block;
          width: 100%;
          height: 100%; }
        .blog-content-area main .main-column .pagination-wrapper .arrow-box img {
          width: 7px;
          margin: 0 auto;
          margin-top: 6px; }
      .blog-content-area main .main-column .pagination-wrapper .middle-wrapper {
        padding: 0 10px; }
        .blog-content-area main .main-column .pagination-wrapper .middle-wrapper select {
          margin: 0 10px;
          padding: 0 10px;
          background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-grey.svg");
          background-repeat: no-repeat;
          background-position-x: 28px;
          background-position-y: 9px;
          -webkit-appearance: none;
          width: 50px;
          border-radius: 5px; }
        .blog-content-area main .main-column .pagination-wrapper .middle-wrapper a.page_link {
          border: 1px solid #3D517B;
          border-radius: 4px;
          padding: 3px 5px;
          text-decoration: none; }
          .blog-content-area main .main-column .pagination-wrapper .middle-wrapper a.page_link.active {
            color: #fff;
            background-color: #198CFC; }
          .blog-content-area main .main-column .pagination-wrapper .middle-wrapper a.page_link:hover {
            font-weight: bolder; }

body.home .woocommerce-breadcrumb {
  display: none; }

.page-template-template-blog-main .woocommerce-breadcrumb,
.post-template-template-blog-content .woocommerce-breadcrumb {
  padding-top: 25px;
  padding-bottom: 34px;
  margin: 0;
  color: black; }
  .page-template-template-blog-main .woocommerce-breadcrumb a,
  .post-template-template-blog-content .woocommerce-breadcrumb a {
    color: black; }

.woocommerce-breadcrumb {
  font-size: 14px;
  letter-spacing: normal;
  margin: 30px auto;
  margin-top: 10px;
  margin-bottom: 53px;
  max-width: 1280px;
  padding: 0 16px;
  position: absolute;
  z-index: 1;
  color: white;
  font-family: muli, sans-serif; }
  @media (min-width: 43.75em) {
    .woocommerce-breadcrumb {
      margin-top: 32px; } }
  @media (min-width: 80em) {
    .woocommerce-breadcrumb {
      left: calc((100% - 1280px) / 2); } }
  @media (min-width: 1312px) {
    .woocommerce-breadcrumb {
      padding: 0; } }
  .woocommerce-breadcrumb a {
    text-decoration: none;
    color: white; }
  .woocommerce-breadcrumb.mobile {
    color: #1C1C1C;
    position: initial; }
  .woocommerce-breadcrumb.mobile * {
    color: #1C1C1C; }

.wm-text-image-right .faqs-section,
.wm-text-image-left .faqs-section {
  padding: 20px !important;
  margin-bottom: 0 !important; }
  @media (min-width: 48em) {
    .wm-text-image-right .faqs-section,
    .wm-text-image-left .faqs-section {
      padding: 0px !important; } }
  .wm-text-image-right .faqs-section .wp-block-columns,
  .wm-text-image-left .faqs-section .wp-block-columns {
    padding: 0; }
    .wm-text-image-right .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul li,
    .wm-text-image-left .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul li {
      margin: 0; }

.faqs-section {
  padding: 20px !important; }
  @media (min-width: 48em) {
    .faqs-section {
      padding: 40px 0px !important; } }
  .faqs-section .wp-block-columns {
    margin: 0 auto !important;
    max-width: 100%; }
    @media (min-width: 48em) {
      .faqs-section .wp-block-columns {
        max-width: 1050px; } }
    .faqs-section .wp-block-columns .wp-block-column .faqs-title {
      font-size: 30px;
      text-align: center;
      margin: 3.5rem 0 2rem;
      display: block;
      font-family: poppins, sans-serif !important;
      font-weight: 600 !important;
      font-style: normal !important;
      color: #0A3866;
      font-feature-settings: "lnum";
      font-variant-numeric: lining-nums;
      letter-spacing: -0.0415625em;
      line-height: 1.25; }
    .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul {
      margin: 0;
      padding: 0;
      color: #051C33;
      list-style: none; }
      .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers {
        display: none;
        font-size: 14px;
        font-weight: normal;
        padding: 20px 0 0 0;
        font-family: muli, sans-serif;
        font-weight: 600;
        font-style: normal; }
        .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers a,
        .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers p,
        .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers div {
          text-align: left;
          font-size: 14px;
          font-family: muli, sans-serif;
          font-weight: 600;
          font-style: normal; }
      .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul li {
        font-family: poppins, sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 16px;
        padding: 20px 0px;
        border-bottom: 1px solid #198CFC;
        background-repeat: no-repeat;
        background-position: 100% 8px;
        padding-right: 50px;
        cursor: pointer;
        background-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/icondown.svg"); }
        .faqs-section .wp-block-columns .wp-block-column ul.faqs-ul li.active-faq {
          background-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/iconup.svg"); }

#ajaxsearchprores1_1.vertical,
#ajaxsearchprores1_2.vertical,
div.asp_r.asp_r_1.vertical {
  background: transparent !important; }

.wp-block-group.usps {
  background: #F0EFEF;
  padding: 10px 0 11px;
  margin: 0 !important; }
  .wp-block-group.usps ul {
    max-width: 100% !important;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0; }
    .wp-block-group.usps ul li {
      display: inline-block;
      vertical-align: middle;
      margin: 0;
      line-height: 1em;
      position: relative;
      font-size: 12px;
      letter-spacing: 0.1em; }
      .wp-block-group.usps ul li:before {
        display: inline-block;
        vertical-align: middle;
        width: 19px;
        height: 19px;
        border: 2px solid #A8B750;
        border-radius: 100%;
        content: '';
        margin-right: 12px; }
      .wp-block-group.usps ul li + li {
        margin-left: 90px; }

.wp-block-group.wm-product-slider * {
  max-width: unset !important; }

.wp-block-group.wm-product-slider .wc-block-grid__product-image {
  border: 1px solid #E6E6E6; }

.wp-block-group.wm-product-slider a {
  text-decoration: none; }

.wp-block-group.wm-product-slider h2 {
  font-size: 28px !important;
  font-family: atten-new, sans-serif !important;
  text-align: center !important; }

.wp-block-group.wm-product-slider .wc-block-grid__product-onsale {
  position: absolute !important;
  left: 0px !important;
  top: 0px !important;
  right: 0px !important;
  width: auto !important;
  max-width: 80px !important;
  border: 0px !important;
  background-color: #A01515 !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #FFF !important;
  font-family: atten-new, sans-serif !important;
  border-radius: 0px !important;
  display: inline !important;
  margin: 0 !important; }

.wp-block-group.wm-product-slider .wc-block-grid__product {
  text-align: left; }
  @media (min-width: 48em) {
    .wp-block-group.wm-product-slider .wc-block-grid__product {
      text-align: center; } }

.wp-block-group.wm-product-slider .wc-block-grid__product-title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  font-family: atten-new, sans-serif !important; }

.wp-block-group.wm-product-slider .wc-block-grid__product-price {
  font-family: atten-new, sans-serif !important; }
  .wp-block-group.wm-product-slider .wc-block-grid__product-price .amount {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: atten-new, sans-serif !important; }
  .wp-block-group.wm-product-slider .wc-block-grid__product-price ins {
    border-bottom: 0px !important; }
  @media (min-width: 48em) {
    .wp-block-group.wm-product-slider .wc-block-grid__product-price {
      float: left;
      margin-bottom: 0;
      font-family: atten-new, sans-serif !important; } }

.wp-block-group.wm-product-slider .btn--view-product {
  width: 100%;
  text-align: center; }
  @media (min-width: 48em) {
    .wp-block-group.wm-product-slider .btn--view-product {
      width: auto;
      float: right; } }

.wp-block-group.wm-product-slider .slick-prev,
.wp-block-group.wm-product-slider .slick-next {
  height: 36px;
  width: 36px;
  background-color: #F0F0F0;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: -40px;
  text-decoration: none;
  text-align: center; }
  .wp-block-group.wm-product-slider .slick-prev:hover:before,
  .wp-block-group.wm-product-slider .slick-next:hover:before {
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-grey.svg") no-repeat top center; }
  .wp-block-group.wm-product-slider .slick-prev::before,
  .wp-block-group.wm-product-slider .slick-next::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    content: '';
    display: block;
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-grey.svg") no-repeat top center;
    width: 8px;
    height: 13px; }

.wp-block-group.wm-product-slider .slick-prev {
  left: 8px; }
  @media (min-width: 48em) {
    .wp-block-group.wm-product-slider .slick-prev {
      left: 15px; } }
  .wp-block-group.wm-product-slider .slick-prev::before {
    transform: translateY(-50%) rotate(180deg); }

.wp-block-group.wm-product-slider .slick-next {
  right: 8px; }
  @media (min-width: 48em) {
    .wp-block-group.wm-product-slider .slick-next {
      right: 15px; } }

.entry-content > .trusted-slider.wp-block-group.alignwide.has-background, .entry-content > .trusted-slider.wp-block-group.alignfull.has-background {
  padding: 10px !important; }
  @media (min-width: 48em) {
    .entry-content > .trusted-slider.wp-block-group.alignwide.has-background, .entry-content > .trusted-slider.wp-block-group.alignfull.has-background {
      max-width: 100% !important;
      padding: 10px !important; } }

.trusted-slider,
.our-credentials {
  padding: 0 !important; }
  @media (min-width: 48em) {
    .trusted-slider,
    .our-credentials {
      max-width: 100% !important;
      padding: 0 !important; } }
  .trusted-slider .wp-block-columns,
  .our-credentials .wp-block-columns {
    flex-direction: column; }
    @media (min-width: 48em) {
      .trusted-slider .wp-block-columns,
      .our-credentials .wp-block-columns {
        flex-direction: row;
        padding: 0 !important; } }
    .trusted-slider .wp-block-columns .wp-block-column,
    .our-credentials .wp-block-columns .wp-block-column {
      width: auto;
      max-width: 100%; }
      @media (min-width: 48em) {
        .trusted-slider .wp-block-columns .wp-block-column,
        .our-credentials .wp-block-columns .wp-block-column {
          width: 100%;
          max-width: unset; } }
      .trusted-slider .wp-block-columns .wp-block-column:first-child,
      .our-credentials .wp-block-columns .wp-block-column:first-child {
        margin-bottom: 0; }
        .trusted-slider .wp-block-columns .wp-block-column:first-child p,
        .our-credentials .wp-block-columns .wp-block-column:first-child p {
          font-size: 18px !important;
          font-weight: lighter; }
          @media (min-width: 48em) {
            .trusted-slider .wp-block-columns .wp-block-column:first-child p,
            .our-credentials .wp-block-columns .wp-block-column:first-child p {
              font-size: 23px !important; } }
      .trusted-slider .wp-block-columns .wp-block-column:nth-child(2),
      .our-credentials .wp-block-columns .wp-block-column:nth-child(2) {
        margin-left: 0; }
        @media (min-width: 48em) {
          .trusted-slider .wp-block-columns .wp-block-column:nth-child(2),
          .our-credentials .wp-block-columns .wp-block-column:nth-child(2) {
            margin-left: 32px; } }
        .trusted-slider .wp-block-columns .wp-block-column:nth-child(2) .logo_slider.slide .slick-dotted.slick-slider,
        .our-credentials .wp-block-columns .wp-block-column:nth-child(2) .logo_slider.slide .slick-dotted.slick-slider {
          margin-top: 10px;
          margin-bottom: 0; }
          @media (min-width: 48em) {
            .trusted-slider .wp-block-columns .wp-block-column:nth-child(2) .logo_slider.slide .slick-dotted.slick-slider,
            .our-credentials .wp-block-columns .wp-block-column:nth-child(2) .logo_slider.slide .slick-dotted.slick-slider {
              margin-top: 0;
              margin-bottom: 30px; } }
      .trusted-slider .wp-block-columns .wp-block-column .slick-track,
      .our-credentials .wp-block-columns .wp-block-column .slick-track {
        display: flex;
        align-items: center; }
        .trusted-slider .wp-block-columns .wp-block-column .slick-track .slick-slide .grid,
        .our-credentials .wp-block-columns .wp-block-column .slick-track .slick-slide .grid {
          margin: 0 !important; }
        .trusted-slider .wp-block-columns .wp-block-column .slick-track .slick-slide p.slide,
        .our-credentials .wp-block-columns .wp-block-column .slick-track .slick-slide p.slide {
          margin: 0; }
        .trusted-slider .wp-block-columns .wp-block-column .slick-track .slick-slide img,
        .our-credentials .wp-block-columns .wp-block-column .slick-track .slick-slide img {
          cursor: pointer;
          height: 40px !important;
          object-fit: contain;
          max-width: 100%;
          border: none !important;
          width: auto !important; }
          @media (min-width: 48em) {
            .trusted-slider .wp-block-columns .wp-block-column .slick-track .slick-slide img,
            .our-credentials .wp-block-columns .wp-block-column .slick-track .slick-slide img {
              height: 80px !important; } }

.our-credentials {
  padding: 20px !important; }
  @media (min-width: 48em) {
    .our-credentials {
      padding: 40px 0px !important; } }

.trusted-slider .slick-dots {
  display: none; }

.wp-block-group.wm-image-link-list .wp-block-columns:not([class*="tw-cols-stack"]) > .wp-block-column:not(:only-child) {
  flex-basis: 50% !important; }
  @media (min-width: 48em) {
    .wp-block-group.wm-image-link-list .wp-block-columns:not([class*="tw-cols-stack"]) > .wp-block-column:not(:only-child) {
      flex-basis: 25% !important; } }

.wp-block-group.wm-image-link-list .wp-block-group,
.wp-block-group.wm-image-link-list .wp-block-columns {
  max-width: unset !important; }
  .wp-block-group.wm-image-link-list .wp-block-group .wp-block-columns,
  .wp-block-group.wm-image-link-list .wp-block-columns .wp-block-columns {
    margin-bottom: 0; }

.wp-block-group.wm-image-link-list > div {
  width: 100%;
  overflow: hidden; }

.wp-block-group.wm-image-link-list ul {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 48em) {
    .wp-block-group.wm-image-link-list ul {
      margin: 0 -15px; } }
  .wp-block-group.wm-image-link-list ul li {
    position: relative;
    width: calc(50% - 30px);
    margin: 0 6px 12px; }
    @media (min-width: 48em) {
      .wp-block-group.wm-image-link-list ul li {
        width: calc(25% - 30px);
        margin: 0 15px 30px; } }
    .wp-block-group.wm-image-link-list ul li h3 {
      line-height: 1em;
      margin: 0 !important;
      position: absolute;
      bottom: 9px;
      left: 9px;
      padding: 4px 15px;
      background-color: rgba(28, 28, 28, 0.5);
      font-size: 18px;
      color: #fff; }
    .wp-block-group.wm-image-link-list ul li a {
      display: block;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase; }
    .wp-block-group.wm-image-link-list ul li img {
      width: 100%;
      display: block; }

.wp-block-group.wm-image-link-list .wp-block-group {
  margin-top: 0 !important; }

.entry-content {
  font-family: muli, sans-serif; }
  .entry-content > .wp-block-group {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0px !important; }
    @media (min-width: 48em) {
      .entry-content > .wp-block-group {
        margin-top: 0 !important;
        margin-bottom: 0px !important; } }
    .entry-content > .wp-block-group:last-child {
      margin-bottom: 0 !important; }
    .entry-content > .wp-block-group:not(.banner) {
      padding-left: 16px;
      padding-right: 16px; }
      @media (min-width: 1312px) {
        .entry-content > .wp-block-group:not(.banner) {
          padding-left: 0;
          padding-right: 0; } }
  .entry-content p {
    font-size: 16px; }

.read-more-block,
.three-column-cover-with-text,
.grid-three-column-text,
.case-studies,
.feature-block-with-icons,
.wm-columns-with-icons,
.articles-slider,
.section-articles-wrappe,
.wm-text-image-right,
.wm-text-image-left,
.centered-video-group,
.row-articles-wrapper,
.wm-key-features,
.row-jobs-wrapper,
.testimonials-block-wrapper,
.centered-text-group {
  padding: 20px !important; }
  .read-more-block.wp-block-group.alignfull:not(.has-background),
  .three-column-cover-with-text.wp-block-group.alignfull:not(.has-background),
  .grid-three-column-text.wp-block-group.alignfull:not(.has-background),
  .case-studies.wp-block-group.alignfull:not(.has-background),
  .feature-block-with-icons.wp-block-group.alignfull:not(.has-background),
  .wm-columns-with-icons.wp-block-group.alignfull:not(.has-background),
  .articles-slider.wp-block-group.alignfull:not(.has-background),
  .section-articles-wrappe.wp-block-group.alignfull:not(.has-background),
  .wm-text-image-right.wp-block-group.alignfull:not(.has-background),
  .wm-text-image-left.wp-block-group.alignfull:not(.has-background),
  .centered-video-group.wp-block-group.alignfull:not(.has-background),
  .row-articles-wrapper.wp-block-group.alignfull:not(.has-background),
  .wm-key-features.wp-block-group.alignfull:not(.has-background),
  .row-jobs-wrapper.wp-block-group.alignfull:not(.has-background),
  .testimonials-block-wrapper.wp-block-group.alignfull:not(.has-background),
  .centered-text-group.wp-block-group.alignfull:not(.has-background) {
    margin-bottom: 0rem;
    margin-top: 0rem; }
  @media (min-width: 48em) {
    .read-more-block,
    .three-column-cover-with-text,
    .grid-three-column-text,
    .case-studies,
    .feature-block-with-icons,
    .wm-columns-with-icons,
    .articles-slider,
    .section-articles-wrappe,
    .wm-text-image-right,
    .wm-text-image-left,
    .centered-video-group,
    .row-articles-wrapper,
    .wm-key-features,
    .row-jobs-wrapper,
    .testimonials-block-wrapper,
    .centered-text-group {
      padding: 40px 0px !important; } }
  .read-more-block h2,
  .three-column-cover-with-text h2,
  .grid-three-column-text h2,
  .case-studies h2,
  .feature-block-with-icons h2,
  .wm-columns-with-icons h2,
  .articles-slider h2,
  .section-articles-wrappe h2,
  .wm-text-image-right h2,
  .wm-text-image-left h2,
  .centered-video-group h2,
  .row-articles-wrapper h2,
  .wm-key-features h2,
  .row-jobs-wrapper h2,
  .testimonials-block-wrapper h2,
  .centered-text-group h2 {
    font-size: 20px !important; }
    @media (min-width: 48em) {
      .read-more-block h2,
      .three-column-cover-with-text h2,
      .grid-three-column-text h2,
      .case-studies h2,
      .feature-block-with-icons h2,
      .wm-columns-with-icons h2,
      .articles-slider h2,
      .section-articles-wrappe h2,
      .wm-text-image-right h2,
      .wm-text-image-left h2,
      .centered-video-group h2,
      .row-articles-wrapper h2,
      .wm-key-features h2,
      .row-jobs-wrapper h2,
      .testimonials-block-wrapper h2,
      .centered-text-group h2 {
        font-size: 30px !important; } }
  .read-more-block a,
  .read-more-block p,
  .read-more-block div,
  .three-column-cover-with-text a,
  .three-column-cover-with-text p,
  .three-column-cover-with-text div,
  .grid-three-column-text a,
  .grid-three-column-text p,
  .grid-three-column-text div,
  .case-studies a,
  .case-studies p,
  .case-studies div,
  .feature-block-with-icons a,
  .feature-block-with-icons p,
  .feature-block-with-icons div,
  .wm-columns-with-icons a,
  .wm-columns-with-icons p,
  .wm-columns-with-icons div,
  .articles-slider a,
  .articles-slider p,
  .articles-slider div,
  .section-articles-wrappe a,
  .section-articles-wrappe p,
  .section-articles-wrappe div,
  .wm-text-image-right a,
  .wm-text-image-right p,
  .wm-text-image-right div,
  .wm-text-image-left a,
  .wm-text-image-left p,
  .wm-text-image-left div,
  .centered-video-group a,
  .centered-video-group p,
  .centered-video-group div,
  .row-articles-wrapper a,
  .row-articles-wrapper p,
  .row-articles-wrapper div,
  .wm-key-features a,
  .wm-key-features p,
  .wm-key-features div,
  .row-jobs-wrapper a,
  .row-jobs-wrapper p,
  .row-jobs-wrapper div,
  .testimonials-block-wrapper a,
  .testimonials-block-wrapper p,
  .testimonials-block-wrapper div,
  .centered-text-group a,
  .centered-text-group p,
  .centered-text-group div {
    font-size: 15px !important; }
    @media (min-width: 48em) {
      .read-more-block a,
      .read-more-block p,
      .read-more-block div,
      .three-column-cover-with-text a,
      .three-column-cover-with-text p,
      .three-column-cover-with-text div,
      .grid-three-column-text a,
      .grid-three-column-text p,
      .grid-three-column-text div,
      .case-studies a,
      .case-studies p,
      .case-studies div,
      .feature-block-with-icons a,
      .feature-block-with-icons p,
      .feature-block-with-icons div,
      .wm-columns-with-icons a,
      .wm-columns-with-icons p,
      .wm-columns-with-icons div,
      .articles-slider a,
      .articles-slider p,
      .articles-slider div,
      .section-articles-wrappe a,
      .section-articles-wrappe p,
      .section-articles-wrappe div,
      .wm-text-image-right a,
      .wm-text-image-right p,
      .wm-text-image-right div,
      .wm-text-image-left a,
      .wm-text-image-left p,
      .wm-text-image-left div,
      .centered-video-group a,
      .centered-video-group p,
      .centered-video-group div,
      .row-articles-wrapper a,
      .row-articles-wrapper p,
      .row-articles-wrapper div,
      .wm-key-features a,
      .wm-key-features p,
      .wm-key-features div,
      .row-jobs-wrapper a,
      .row-jobs-wrapper p,
      .row-jobs-wrapper div,
      .testimonials-block-wrapper a,
      .testimonials-block-wrapper p,
      .testimonials-block-wrapper div,
      .centered-text-group a,
      .centered-text-group p,
      .centered-text-group div {
        font-size: 16px !important; } }
  .read-more-block .wp-block-columns,
  .three-column-cover-with-text .wp-block-columns,
  .grid-three-column-text .wp-block-columns,
  .case-studies .wp-block-columns,
  .feature-block-with-icons .wp-block-columns,
  .wm-columns-with-icons .wp-block-columns,
  .articles-slider .wp-block-columns,
  .section-articles-wrappe .wp-block-columns,
  .wm-text-image-right .wp-block-columns,
  .wm-text-image-left .wp-block-columns,
  .centered-video-group .wp-block-columns,
  .row-articles-wrapper .wp-block-columns,
  .wm-key-features .wp-block-columns,
  .row-jobs-wrapper .wp-block-columns,
  .testimonials-block-wrapper .wp-block-columns,
  .centered-text-group .wp-block-columns {
    margin: 0 auto !important; }
    .read-more-block .wp-block-columns .wp-block-column .wp-block-image,
    .three-column-cover-with-text .wp-block-columns .wp-block-column .wp-block-image,
    .grid-three-column-text .wp-block-columns .wp-block-column .wp-block-image,
    .case-studies .wp-block-columns .wp-block-column .wp-block-image,
    .feature-block-with-icons .wp-block-columns .wp-block-column .wp-block-image,
    .wm-columns-with-icons .wp-block-columns .wp-block-column .wp-block-image,
    .articles-slider .wp-block-columns .wp-block-column .wp-block-image,
    .section-articles-wrappe .wp-block-columns .wp-block-column .wp-block-image,
    .wm-text-image-right .wp-block-columns .wp-block-column .wp-block-image,
    .wm-text-image-left .wp-block-columns .wp-block-column .wp-block-image,
    .centered-video-group .wp-block-columns .wp-block-column .wp-block-image,
    .row-articles-wrapper .wp-block-columns .wp-block-column .wp-block-image,
    .wm-key-features .wp-block-columns .wp-block-column .wp-block-image,
    .row-jobs-wrapper .wp-block-columns .wp-block-column .wp-block-image,
    .testimonials-block-wrapper .wp-block-columns .wp-block-column .wp-block-image,
    .centered-text-group .wp-block-columns .wp-block-column .wp-block-image {
      margin-bottom: 15px !important; }

h6,
.heading-size-6 {
  text-transform: none; }

.wm-key-features .wp-block-media-text__content {
  text-align: left !important; }
  @media (min-width: 48em) {
    .wm-key-features .wp-block-media-text__content {
      text-align: center !important; } }
  .wm-key-features .wp-block-media-text__content p {
    margin-bottom: 46px;
    text-align: left; }
    @media (min-width: 48em) {
      .wm-key-features .wp-block-media-text__content p {
        margin-bottom: 15px; } }

.wm-key-features h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  text-align: left; }
  .wm-key-features h6:before {
    content: '';
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/Polygon.svg");
    width: 13px;
    height: 13px;
    display: inline-block;
    background-repeat: no-repeat; }

.wm-columns-with-icons.has-background-color h2,
.wm-columns-with-icons.has-background-color h3 {
  color: #fff; }

.wm-columns-with-icons .wp-block-columns {
  margin: 20px auto 0 auto !important; }
  .wm-columns-with-icons .wp-block-columns .wp-block-column .wp-block-image {
    margin-bottom: 15px !important;
    margin-top: 0px !important; }
  @media (min-width: 48em) {
    .wm-columns-with-icons .wp-block-columns .wp-block-column:not(:first-child) {
      margin-left: 10px; } }

.osprey-in-action .wp-block-columns {
  margin: 0 auto !important; }
  .osprey-in-action .wp-block-columns .wp-block-column h2, .osprey-in-action .wp-block-columns .wp-block-column h3, .osprey-in-action .wp-block-columns .wp-block-column p.popup-heading {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    font-family: poppins, sans-serif;
    line-height: 27.5px;
    letter-spacing: -0.914375px; }
  .osprey-in-action .wp-block-columns .wp-block-column a,
  .osprey-in-action .wp-block-columns .wp-block-column p,
  .osprey-in-action .wp-block-columns .wp-block-column div {
    font-size: 16px;
    font-weight: normal; }
  .osprey-in-action .wp-block-columns .wp-block-column:first-child p {
    max-width: 500px;
    margin: 0; }

.osprey-in-action .gform_wrapper .gform_footer .gform_button {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 30px;
  font-size: 15px;
  padding: 0px 25px;
  text-decoration: none;
  font-weight: 600;
  text-transform: none;
  margin: 0 auto 16px;
  display: block; }
  @media (min-width: 40em) {
    .osprey-in-action .gform_wrapper .gform_footer .gform_button {
      display: inline-block; } }
  .osprey-in-action .gform_wrapper .gform_footer .gform_button:hover {
    background-color: rgba(0, 0, 0, 0.2); }

.osprey-in-action .gform_wrapper .gform_footer input[type='submit'] {
  min-width: 155px; }

.osprey-in-action .gform_wrapper .ginput_container {
  margin-top: 0 !important; }

.osprey-in-action .gform_wrapper select,
.osprey-in-action .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 13px;
  color: #9A9A9A; }

.osprey-in-action .gform_wrapper label.gfield_label,
.osprey-in-action .gform_wrapper legend.gfield_label {
  font-size: 16px; }

.osprey-in-action .gform_confirmation_wrapper {
  margin-top: 20px; }
  .osprey-in-action .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 15px !important;
    font-weight: bold !important; }

.contact-us-page .gform_wrapper .gform_footer .gform_button {
  background: #FD8D25;
  border: 2px solid #FD8D25;
  padding: 8px 62px;
  width: auto !important; }

.form-popup-wrap {
  display: none; }
  .form-popup-wrap .osprey-in-action {
    margin: 0 auto !important; }
    .form-popup-wrap .osprey-in-action .wp-block-columns {
      margin: 0 auto !important; }
      .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column h2, .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column h3, .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column p.popup-heading {
        font-size: 22px;
        margin: 0 auto 1rem;
        color: inherit !important;
        font-weight: 600;
        font-family: poppins, sans-serif;
        line-height: 27.5px;
        letter-spacing: -0.914375px; }
      .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column a,
      .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column p,
      .form-popup-wrap .osprey-in-action .wp-block-columns .wp-block-column div {
        font-size: 13px; }
    .form-popup-wrap .osprey-in-action .gform_wrapper .gform_footer .gform_button {
      background: #FD8D25;
      border: 2px solid #FD8D25;
      padding: 8px 62px;
      width: auto !important; }
    .form-popup-wrap .osprey-in-action .gform_wrapper li.gfield {
      width: 100%;
      display: block; }
    .form-popup-wrap .osprey-in-action .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
      padding: 7px 15px;
      background-color: #e2f1ff;
      width: 100%; }
  .form-popup-wrap .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px; }
  .form-popup-wrap .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .form-popup-wrap.active {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0px;
    max-height: calc(100vh - 44px);
    z-index: 9999; }
    .form-popup-wrap.active.width-30 {
      width: 100vw; }
      @media (min-width: 40em) {
        .form-popup-wrap.active.width-30 {
          width: 50vw; } }
      @media (min-width: 56.25em) {
        .form-popup-wrap.active.width-30 {
          width: 30vw; } }
      .form-popup-wrap.active.width-30 .form-popup {
        max-width: 100vw; }
        @media (min-width: 56.25em) {
          .form-popup-wrap.active.width-30 .form-popup {
            max-width: 70vw; } }
    .form-popup-wrap.active.width-50 {
      width: 100vw; }
      @media (min-width: 48em) {
        .form-popup-wrap.active.width-50 {
          width: 50vw; } }
      .form-popup-wrap.active.width-50 .form-popup {
        max-width: 100vw; }
        @media (min-width: 48em) {
          .form-popup-wrap.active.width-50 .form-popup {
            max-width: 70vw; } }
    .form-popup-wrap.active.width-80 {
      width: 100vw; }
      @media (min-width: 28.125em) {
        .form-popup-wrap.active.width-80 {
          width: 80vw; } }
      .form-popup-wrap.active.width-80 .form-popup {
        max-width: 100vw; }
        @media (min-width: 28.125em) {
          .form-popup-wrap.active.width-80 .form-popup {
            max-width: 70vw; } }
    .form-popup-wrap.active .form-popup {
      max-width: 70vw;
      border-radius: 5px;
      width: 100%;
      padding: 40px;
      background-color: #fff;
      position: relative;
      height: fit-content;
      max-height: 90vh;
      overflow-y: scroll; }
      .form-popup-wrap.active .form-popup.form-popup-team {
        max-width: 760px; }
      .form-popup-wrap.active .form-popup .form-popup-close {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        background: url("/content/themes/wired-media-ecommerce-theme/images/icons/icon_popup_close.svg");
        width: 12px;
        height: 12px; }
      .form-popup-wrap.active .form-popup > *:nth-child(2) {
        margin-top: 0; }
  .form-popup-wrap h1, .form-popup-wrap h2, .form-popup-wrap h3, .form-popup-wrap h4, .form-popup-wrap h5, .form-popup-wrap h6 {
    margin: 3rem auto; }
  .form-popup-wrap p {
    font-size: 16px;
    line-height: 1.476; }

.tw-cols-card-gray > .wp-block-column {
  background-color: #F9FAFB; }

.grid-three-column-text .tw-cols-card-gray > .wp-block-column {
  background-color: #F9FAFB;
  border-radius: 8px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.19); }

.team-wrapper-circle .wp-block-columns {
  width: auto;
  justify-content: space-between; }
  @media (min-width: 48em) {
    .team-wrapper-circle .wp-block-columns {
      width: calc(100% - 4rem);
      justify-content: center; } }
  .team-wrapper-circle .wp-block-columns .wp-block-column {
    max-width: 47%; }
    @media (min-width: 48em) {
      .team-wrapper-circle .wp-block-columns .wp-block-column {
        max-width: none; } }
    .team-wrapper-circle .wp-block-columns .wp-block-column .has-small-font-size {
      font-size: 13px !important;
      font-weight: bold; }
    .team-wrapper-circle .wp-block-columns .wp-block-column img {
      margin: auto; }

.three-column-cover-with-text .wp-block-columns .wp-block-column .wp-block-cover {
  padding: 0rem 4rem; }
  .three-column-cover-with-text .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__inner-container h3 {
    font-size: 26px; }
    .three-column-cover-with-text .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__inner-container h3 a {
      font-size: 26px !important;
      text-decoration: none; }
    .three-column-cover-with-text .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__inner-container h3:after {
      content: '';
      background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-arrow-orange.svg");
      width: 13px;
      height: 13px;
      margin-left: 10px;
      display: inline-block;
      background-repeat: no-repeat; }

.read-more-block .wired-read-more {
  position: relative; }
  .read-more-block .wired-read-more:after {
    content: '';
    background: url("/content/themes/wired-media-ecommerce-theme/images/icons/icondown.svg");
    width: 32px;
    height: 32px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: 10px auto; }
  .read-more-block .wired-read-more.active-read-more:after {
    background-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/iconup.svg"); }

.read-more-block .wired-read-more-text {
  display: none;
  margin: 0 !important; }

#bkgCover {
  width: 110vw;
  height: 110vh;
  background-color: #061c327c;
  z-index: 9998;
  display: none;
  position: fixed;
  top: 0;
  left: 0; }
  #bkgCover.active {
    display: block; }

.cplw-block.services [class*="__inner-container"] > .alignwide {
  max-width: 1280px; }

.cplw-block [class*="__inner-container"] > .alignwide {
  max-width: 980px;
  justify-content: center; }
  @media (min-width: 48em) {
    .cplw-block [class*="__inner-container"] > .alignwide {
      justify-content: normal; } }
  .cplw-block [class*="__inner-container"] > .alignwide > * {
    max-width: 50%; }
    @media (min-width: 48em) {
      .cplw-block [class*="__inner-container"] > .alignwide > * {
        max-width: unset; } }

.cplw-block .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter) {
  margin-top: 0; }

.cplw-block .active-cplw {
  box-shadow: var(--tw-block-shadow); }
  .cplw-block .active-cplw a {
    font-weight: bold;
    font-size: 17px !important; }

.cplw-block a {
  text-decoration: none !important;
  color: #198CFC; }

.wp-block-columns.are-vertically-aligned-center {
  justify-content: center; }

.wp-block-pullquote::before {
  display: none; }

.wp-block-pullquote blockquote p {
  font-size: 28px !important;
  font-weight: normal; }
  .wp-block-pullquote blockquote p::before {
    float: left;
    color: #198CFC;
    content: "“";
    background: #fff;
    border-radius: 50%;
    display: block;
    font-size: 6.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    height: 4.4rem;
    width: 4.4rem; }
  .wp-block-pullquote blockquote p::after {
    float: right;
    background: #fff;
    border-radius: 50%;
    color: #198CFC;
    content: "”";
    display: block;
    font-size: 6.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    height: 4.4rem;
    width: 4.4rem; }

.wm-text-image-right.has-theme-brand-blue-background-color h2 {
  color: #fff; }

a.has-theme-orange-background-color {
  color: #fff; }

.form-popup-wrap .popup-heading {
  font-size: 30px;
  margin: 3rem auto;
  color: #0A3866 !important;
  font-weight: 600;
  font-family: poppins, sans-serif; }

.form-popup-wrap p {
  font-size: 13px;
  font-weight: normal; }
  .form-popup-wrap p.popup-heading {
    font-size: 22px;
    margin: 0 auto 1rem;
    color: inherit !important;
    font-weight: 600;
    font-family: poppins, sans-serif;
    line-height: 27.5px;
    letter-spacing: -0.914375px; }

.form-popup-wrap .gform_description {
  font-size: 13px;
  font-weight: normal; }

.form-popup-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .form-popup-wrap textarea {
  padding: 7px 15px;
  background-color: #e2f1ff;
  width: 100%; }

.form-popup-wrap .gform_button {
  background: #FD8D25;
  border: 2px solid #FD8D25;
  padding: 8px 62px;
  width: auto !important; }

.form-popup-wrap ul {
  font-size: 13px;
  margin-left: 0; }
  .form-popup-wrap ul li {
    margin-left: 13px; }

textarea {
  font-size: 13px; }

.feature-block-with-icons {
  overflow: hidden; }

.is-style-outline > a {
  border: 2px solid; }

.wp-block-embed.is-type-video {
  overflow: hidden; }

/*.wp-block-media-text {
  margin-left:0px !important;
  margin-right:0px !important;

  h1, h2, h3, h4, h5 {
    margin-bottom:25px !important;
    margin-top:0px !important;
  }

  h1 {
    font-size:24px !important;
  }

  h2 {
    font-size:20px !important;
  }

  h3 {
    font-size:20px !important;
  }

  p {
    margin-bottom:25px !important;
    font-size:17px !important;

    &:last-of-type {
      margin-bottom:0px;
    }

  }

  ul {
    margin-left:0px;
    margin-bottom:25px;

    li {
      font-size:17px;
      margin-bottom:15px;

      &:last-of-type {
        margin-bottom:0px;
      }

    }

  }

  .wp-block-button__link {
    max-width:160px;
    width:100%;
    height:50px;
    background-color:#FFF;
    border:1px solid #1C1C1C;
    color:#1C1C1C;
    font-size:14px;
  }

}*/
.wp-block-group.full-width {
  max-width: 100% !important;
  width: 100% !important;
  background-color: #F5F5F5;
  padding: 60px 0; }
  .wp-block-group.full-width .wp-block-group {
    max-width: 1280px !important; }
  .wp-block-group.full-width h2 {
    font-size: 24px;
    margin-bottom: 25px; }
  .wp-block-group.full-width p {
    font-size: 17px; }

.entry-content > .alignwide:not(.wp-block-group.has-background),
.entry-content > .alignfull:not(.wp-block-group.has-background) {
  margin-bottom: 0;
  margin-top: 0; }

[class*="__inner-container"] > .alignwide {
  max-width: 1280px;
  width: 100%; }

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
  padding-left: 0;
  padding-right: 0; }

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  max-width: 890px;
  width: 100%; }

.entry-content > .wp-block-group.alignwide.has-background,
.entry-content > .wp-block-group.alignfull.has-background {
  padding: 20px !important; }
  @media (min-width: 48em) {
    .entry-content > .wp-block-group.alignwide.has-background,
    .entry-content > .wp-block-group.alignfull.has-background {
      padding: 40px 0px !important; } }
  .entry-content > .wp-block-group.alignwide.has-background h2,
  .entry-content > .wp-block-group.alignfull.has-background h2 {
    font-size: 30px; }
  .entry-content > .wp-block-group.alignwide.has-background a,
  .entry-content > .wp-block-group.alignwide.has-background p,
  .entry-content > .wp-block-group.alignwide.has-background div,
  .entry-content > .wp-block-group.alignfull.has-background a,
  .entry-content > .wp-block-group.alignfull.has-background p,
  .entry-content > .wp-block-group.alignfull.has-background div {
    font-size: 16px; }
  .entry-content > .wp-block-group.alignwide.has-background .wp-block-columns,
  .entry-content > .wp-block-group.alignfull.has-background .wp-block-columns {
    margin: 0 auto !important; }
    .entry-content > .wp-block-group.alignwide.has-background .wp-block-columns .wp-block-column .wp-block-image,
    .entry-content > .wp-block-group.alignfull.has-background .wp-block-columns .wp-block-column .wp-block-image {
      margin-bottom: 15px !important; }

.wp-block-group.cta-block-list .wp-block-group__inner-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media (min-width: 48em) {
    .wp-block-group.cta-block-list .wp-block-group__inner-container {
      flex-wrap: nowrap; } }
  .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text {
    max-width: 48%;
    width: 100%;
    margin-right: 0px !important; }
    @media (min-width: 48em) {
      .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text {
        margin-top: 0px !important;
        margin-bottom: 0px !important; } }
    .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text .wp-block-media-text__content {
      padding: 40px; }
    .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text .wp-block-buttons {
      justify-content: center;
      margin-top: 0px; }
      .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text .wp-block-buttons .wp-block-button {
        margin-top: 0px; }
      .wp-block-group.cta-block-list .wp-block-group__inner-container .wp-block-media-text .wp-block-buttons .wp-block-button__link {
        border: 0px; }

.hero-wrap {
  margin-bottom: -2px !important; }
  .hero-wrap.full-width {
    max-width: 100% !important;
    width: 100% !important;
    min-height: 450px; }
    .hero-wrap.full-width .inner-content,
    .hero-wrap.full-width .mobile-bkg {
      min-height: 348px;
      padding: 20px;
      padding-top: 40px;
      display: flex !important;
      justify-content: flex-start;
      align-items: center;
      background-size: cover;
      text-align: center;
      background-repeat: no-repeat; }
      @media (min-width: 48em) {
        .hero-wrap.full-width .inner-content,
        .hero-wrap.full-width .mobile-bkg {
          min-height: 450px;
          text-align: left;
          padding: 40px;
          /*                background-size: contain; */ } }
      .hero-wrap.full-width .inner-content .hero-wrap-inner,
      .hero-wrap.full-width .mobile-bkg .hero-wrap-inner {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto; }
      .hero-wrap.full-width .inner-content .hero-wrap-inner.form,
      .hero-wrap.full-width .mobile-bkg .hero-wrap-inner.form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center; }
        @media (min-width: 48em) {
          .hero-wrap.full-width .inner-content .hero-wrap-inner.form,
          .hero-wrap.full-width .mobile-bkg .hero-wrap-inner.form {
            flex-direction: row; } }
      .hero-wrap.full-width .inner-content .hero-inner,
      .hero-wrap.full-width .mobile-bkg .hero-inner {
        background-color: transparent !important;
        max-width: 550px;
        width: 100%;
        padding-right: 10px; }
        .hero-wrap.full-width .inner-content .hero-inner .home-banner,
        .hero-wrap.full-width .mobile-bkg .hero-inner .home-banner {
          font-size: 22px;
          line-height: 1.138888889;
          font-family: poppins, sans-serif;
          font-weight: 600;
          display: block;
          letter-spacing: 1.25px;
          margin: 0 0 20px 0; }
          @media (min-width: 48em) {
            .hero-wrap.full-width .inner-content .hero-inner .home-banner,
            .hero-wrap.full-width .mobile-bkg .hero-inner .home-banner {
              font-size: 40px; } }
        .hero-wrap.full-width .inner-content .hero-inner .home-banner-logo,
        .hero-wrap.full-width .mobile-bkg .hero-inner .home-banner-logo {
          margin: 0; }
        .hero-wrap.full-width .inner-content .hero-inner .home-text,
        .hero-wrap.full-width .mobile-bkg .hero-inner .home-text {
          font-size: 15px;
          margin: 0 0 20px 0; }
          @media (min-width: 48em) {
            .hero-wrap.full-width .inner-content .hero-inner .home-text,
            .hero-wrap.full-width .mobile-bkg .hero-inner .home-text {
              font-size: 18px; } }
          .hero-wrap.full-width .inner-content .hero-inner .home-text a,
          .hero-wrap.full-width .mobile-bkg .hero-inner .home-text a {
            color: inherit; }
          .hero-wrap.full-width .inner-content .hero-inner .home-text *,
          .hero-wrap.full-width .mobile-bkg .hero-inner .home-text * {
            color: inherit !important; }
        .hero-wrap.full-width .inner-content .hero-inner .home-button,
        .hero-wrap.full-width .mobile-bkg .hero-inner .home-button {
          margin: 20px 0 0 0;
          display: inline-flex;
          flex-direction: column; }
          @media (min-width: 48em) {
            .hero-wrap.full-width .inner-content .hero-inner .home-button,
            .hero-wrap.full-width .mobile-bkg .hero-inner .home-button {
              flex-direction: row; } }
          .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button,
          .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button {
            font-family: poppins, sans-serif;
            font-weight: 600;
            background-color: #FD8D25;
            color: #fff;
            border: 2px solid #FD8D25;
            height: 42px;
            width: 220px;
            border-radius: 30px;
            font-size: 15px;
            text-decoration: none;
            display: block;
            text-align: center;
            line-height: 40px; }
            .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.primary-button,
            .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button.primary-button {
              background-color: transparent;
              border: 2px solid #fff;
              color: #fff;
              margin-right: 10px;
              margin-bottom: 20px; }
              @media (min-width: 48em) {
                .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.primary-button,
                .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button.primary-button {
                  margin-bottom: 0; } }
            .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.secondary-button,
            .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button.secondary-button {
              /*corretto*/
              background-color: #FD8D25;
              color: #fff;
              border: 2px solid #FD8D25; }
              .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.secondary-button:hover,
              .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button.secondary-button:hover {
                background-color: #FD8D25;
                border: 2px solid #FD8D25; }
            @media (min-width: 48em) {
              .hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.mobile,
              .hero-wrap.full-width .mobile-bkg .hero-inner .home-button .main-button.mobile {
                display: none; } }
      .hero-wrap.full-width .inner-content .form-wrapper,
      .hero-wrap.full-width .mobile-bkg .form-wrapper {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5); }
        .hero-wrap.full-width .inner-content .form-wrapper.mobile,
        .hero-wrap.full-width .mobile-bkg .form-wrapper.mobile {
          margin: auto; }
          @media (min-width: 48em) {
            .hero-wrap.full-width .inner-content .form-wrapper.mobile,
            .hero-wrap.full-width .mobile-bkg .form-wrapper.mobile {
              display: none; } }
        .hero-wrap.full-width .inner-content .form-wrapper.desktop,
        .hero-wrap.full-width .mobile-bkg .form-wrapper.desktop {
          display: none; }
          @media (min-width: 48em) {
            .hero-wrap.full-width .inner-content .form-wrapper.desktop,
            .hero-wrap.full-width .mobile-bkg .form-wrapper.desktop {
              display: block;
              max-width: 50%; } }
          .hero-wrap.full-width .inner-content .form-wrapper.desktop .gform_legacy_markup_wrapper textarea,
          .hero-wrap.full-width .mobile-bkg .form-wrapper.desktop .gform_legacy_markup_wrapper textarea {
            font-size: 13px; }
          .hero-wrap.full-width .inner-content .form-wrapper.desktop .gform_legacy_markup_wrapper .captcha_instructions,
          .hero-wrap.full-width .mobile-bkg .form-wrapper.desktop .gform_legacy_markup_wrapper .captcha_instructions {
            font-size: 16px; }
        .hero-wrap.full-width .inner-content .form-wrapper .form-title,
        .hero-wrap.full-width .mobile-bkg .form-wrapper .form-title {
          margin-top: 0; }
        .hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper input.medium,
        .hero-wrap.full-width .mobile-bkg .form-wrapper .gform_wrapper input.medium {
          width: 100%; }
        .hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper .gform_footer,
        .hero-wrap.full-width .mobile-bkg .form-wrapper .gform_wrapper .gform_footer {
          padding: 0; }
        .hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper input[type="submit"],
        .hero-wrap.full-width .mobile-bkg .form-wrapper .gform_wrapper input[type="submit"] {
          font-family: poppins, sans-serif;
          font-weight: 600;
          background-color: #FD8D25;
          color: #fff;
          border: 2px solid #FD8D25;
          height: 42px;
          width: 220px;
          border-radius: 30px;
          font-size: 15px;
          text-decoration: none;
          display: block;
          text-align: center;
          line-height: 40px;
          padding: 0; }
          .hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper input[type="submit"]:hover,
          .hero-wrap.full-width .mobile-bkg .form-wrapper .gform_wrapper input[type="submit"]:hover {
            background-color: #FD8D25;
            border: 2px solid #FD8D25; }
    .hero-wrap.full-width .mobile-bkg {
      background-position: 90%;
      min-height: 250px; }
      @media (min-width: 34.375em) {
        .hero-wrap.full-width .mobile-bkg {
          background-position: 100%; } }
      @media (min-width: 48em) {
        .hero-wrap.full-width .mobile-bkg {
          display: none !important;
          min-height: 450px; } }
    .hero-wrap.full-width.no-image-mobile .mobile-bkg {
      display: none !important; }
    .hero-wrap.full-width .text_video .hero-inner {
      padding-right: 0;
      max-width: unset;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      @media (min-width: 65.625em) {
        .hero-wrap.full-width .text_video .hero-inner {
          flex-direction: row; } }
      .hero-wrap.full-width .text_video .hero-inner > * {
        padding-right: 0;
        max-width: unset;
        margin: auto; }
        @media (min-width: 65.625em) {
          .hero-wrap.full-width .text_video .hero-inner > * {
            max-width: 550px; } }
  .hero-wrap.centered {
    text-align: center;
    min-height: 183px !important; }
    @media (min-width: 48em) {
      .hero-wrap.centered {
        min-height: 294px !important; } }
    .hero-wrap.centered .item, .hero-wrap.centered .inner-content {
      min-height: 183px !important; }
      @media (min-width: 48em) {
        .hero-wrap.centered .item, .hero-wrap.centered .inner-content {
          min-height: 294px !important; } }
      .hero-wrap.centered .item .hero-inner, .hero-wrap.centered .inner-content .hero-inner {
        width: 100%;
        max-width: unset !important;
        text-align: center; }
    .hero-wrap.centered.full-width .mobile-bkg {
      display: none !important; }

body.page-id-10215 {
  /*integrations page*/ }
  body.page-id-10215 .hero-wrap.full-width .mobile-bkg {
    background-position: 68%; }

.banner-block-wrapper {
  height: 450px;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-size: cover; }
  .banner-block-wrapper img.banner-back {
    z-index: -1;
    min-height: 166px;
    object-fit: cover; }
    @media (min-width: 80em) {
      .banner-block-wrapper img.banner-back {
        min-width: 100%;
        min-height: 100vh; } }
  .banner-block-wrapper .banner-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F5F5F5;
    position: relative;
    padding: 0; }
    @media (min-width: 80em) {
      .banner-block-wrapper .banner-block {
        flex-direction: row;
        padding: 21px;
        padding-top: 130px;
        background-color: transparent; } }
    @media (min-width: 80em) {
      .banner-block-wrapper .banner-block > * {
        max-width: 48%; } }
    .banner-block-wrapper .banner-block .left-content {
      color: #1C1C1C;
      padding: 21px;
      padding-bottom: 0;
      text-align: left; }
      @media (min-width: 80em) {
        .banner-block-wrapper .banner-block .left-content {
          color: #fff;
          padding: 0; } }
      .banner-block-wrapper .banner-block .left-content h2 {
        margin-top: 0;
        font-size: 26px;
        text-transform: uppercase; }
      .banner-block-wrapper .banner-block .left-content .book_demo {
        background-color: #FB8D35;
        border-radius: 50px;
        padding: 10px 50px;
        font-weight: bold; }
    .banner-block-wrapper .banner-block .right-content {
      background-color: rgba(255, 255, 255, 0.8); }
      @media (min-width: 80em) {
        .banner-block-wrapper .banner-block .right-content {
          padding: 30px;
          width: 347px; } }
      .banner-block-wrapper .banner-block .right-content #contact-us-mobile {
        background-color: #a12b2a;
        color: #fff;
        text-align: center;
        padding: 10px 0px; }
        .banner-block-wrapper .banner-block .right-content #contact-us-mobile p {
          margin: 0; }
        @media (min-width: 80em) {
          .banner-block-wrapper .banner-block .right-content #contact-us-mobile {
            display: none; } }
      .banner-block-wrapper .banner-block .right-content .gform_wrapper {
        margin-top: 0;
        display: none; }
        @media (min-width: 80em) {
          .banner-block-wrapper .banner-block .right-content .gform_wrapper {
            display: block; } }
        .banner-block-wrapper .banner-block .right-content .gform_wrapper .gform_heading {
          margin: 0; }
          .banner-block-wrapper .banner-block .right-content .gform_wrapper .gform_heading .gform_title {
            margin: 0; }
        .banner-block-wrapper .banner-block .right-content .gform_wrapper input, .banner-block-wrapper .banner-block .right-content .gform_wrapper input::placeholder, .banner-block-wrapper .banner-block .right-content .gform_wrapper textarea, .banner-block-wrapper .banner-block .right-content .gform_wrapper textarea::placeholder {
          font-family: muli, sans-serif !important;
          font-size: 14px !important; }
      .banner-block-wrapper .banner-block .right-content .gfield_label {
        font-family: muli, sans-serif;
        font-size: 13px;
        font-weight: normal; }
      .banner-block-wrapper .banner-block .right-content h3.gform_title {
        text-transform: uppercase;
        font-size: 18px; }
      .banner-block-wrapper .banner-block .right-content .gfield {
        padding-right: 0 !important; }
      .banner-block-wrapper .banner-block .right-content .gfield.half {
        max-width: 50%;
        float: left;
        clear: none; }
        .banner-block-wrapper .banner-block .right-content .gfield.half:first-of-type {
          padding-right: 20px !important; }
      .banner-block-wrapper .banner-block .right-content .space-top {
        padding-top: 16px; }
      .banner-block-wrapper .banner-block .right-content textarea {
        height: 100px !important; }
      .banner-block-wrapper .banner-block .right-content .checkbox {
        max-width: 50%;
        float: left;
        margin-top: 30px; }
        .banner-block-wrapper .banner-block .right-content .checkbox .gfield_label {
          display: none; }
        .banner-block-wrapper .banner-block .right-content .checkbox > div {
          margin-top: 0 !important; }
        .banner-block-wrapper .banner-block .right-content .checkbox .gfield_checkbox label {
          font-family: muli, sans-serif;
          font-size: 14px; }
        .banner-block-wrapper .banner-block .right-content .checkbox .gfield_checkbox input {
          margin-top: 0 !important; }
      .banner-block-wrapper .banner-block .right-content .gform_footer {
        max-width: 50%;
        float: right;
        clear: none; }
      .banner-block-wrapper .banner-block .right-content input[type='submit'] {
        background-image: url(/content/themes/wired-media-ecommerce-theme/images/icons/arrows/arrow-right-red.svg);
        background-repeat: no-repeat;
        background-origin: content-box;
        background-position: right center;
        text-align: left;
        font-family: poppins, sans-serif !important;
        font-size: 13px !important;
        background-color: transparent;
        border: 2px solid #1C1C1C;
        color: #1C1C1C;
        width: 140px !important;
        padding: 10px; }

.grid-articles-wrapper {
  display: flex;
  flex-direction: column; }
  @media (min-width: 80em) {
    .grid-articles-wrapper {
      width: 1280px !important;
      max-width: unset !important; } }
  .grid-articles-wrapper .rowWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media (min-width: 80em) {
      .grid-articles-wrapper .rowWrap {
        padding-bottom: 60px;
        flex-direction: row; } }
    .grid-articles-wrapper .rowWrap .article-grid-wrapper {
      /*        max-width: calc(100vw - 62px); */
      margin: 10px 10px 60px;
      box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
      -webkit-box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
      -moz-box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
      background-color: #fff;
      border-radius: 10px;
      position: relative; }
      @media (min-width: 80em) {
        .grid-articles-wrapper .rowWrap .article-grid-wrapper {
          margin-bottom: 0;
          width: 297px;
          height: 460px;
          max-width: unset; } }
      .grid-articles-wrapper .rowWrap .article-grid-wrapper:hover {
        cursor: pointer; }
      .grid-articles-wrapper .rowWrap .article-grid-wrapper img {
        border-radius: 10px 10px 0 0;
        max-height: 201px;
        height: 201px;
        width: 100%;
        object-fit: cover; }
      .grid-articles-wrapper .rowWrap .article-grid-wrapper .content-section {
        margin: 25px 31px 35px; }
        @media (min-width: 48em) {
          .grid-articles-wrapper .rowWrap .article-grid-wrapper .content-section {
            width: 235px; } }
        .grid-articles-wrapper .rowWrap .article-grid-wrapper .content-section .content-title {
          margin: 0;
          padding: 0;
          font-size: 18px; }
          .grid-articles-wrapper .rowWrap .article-grid-wrapper .content-section .content-title a {
            text-decoration: none; }
        .grid-articles-wrapper .rowWrap .article-grid-wrapper .content-section .content-text {
          margin-top: 19px;
          font-size: 14px;
          margin-bottom: 70px; }

.case-studies.team-wrapper {
  grid-template: none;
  grid-template-columns: 1fr; }
  @media (min-width: 48em) {
    .case-studies.team-wrapper {
      grid-auto-rows: 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  .case-studies.team-wrapper .article-grid-wrapper {
    background-color: #fff;
    box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07); }
    .case-studies.team-wrapper .article-grid-wrapper .content-image {
      display: block; }
      .case-studies.team-wrapper .article-grid-wrapper .content-image img {
        max-height: unset;
        max-width: 100%;
        border-radius: 10px 10px 0 0; }
    .case-studies.team-wrapper .article-grid-wrapper .content-section .content-text {
      margin-top: unset;
      margin-bottom: 20px;
      font-size: 13px !important; }
    .case-studies.team-wrapper .article-grid-wrapper .content-section .content-read-more {
      position: initial; }

@media (min-width: 48em) {
  .case-study-block {
    width: 1280px !important;
    max-width: unset !important; } }

.case-study-block .slick-arrow {
  position: absolute;
  top: 20%;
  width: 36px;
  height: 36px;
  font-size: 0px;
  border-radius: 36px;
  background-repeat: no-repeat;
  background-color: #F0F0F0;
  border: 0;
  background-size: 10px;
  background-position: center;
  z-index: 1; }
  .case-study-block .slick-arrow.slick-next {
    background-image: url("/content/themes/wired-media-ecommerce-theme//images/icons/arrows/right-arrow.svg");
    right: 0px; }
  .case-study-block .slick-arrow.slick-prev {
    background-image: url("/content/themes/wired-media-ecommerce-theme//images/icons/arrows/left-arrow.svg");
    left: unset;
    right: 40px; }
  .case-study-block .slick-arrow:before {
    content: ""; }

.case-study-block .case-study-wrapper {
  display: flex !important;
  flex-direction: column; }
  @media (min-width: 48em) {
    .case-study-block .case-study-wrapper {
      flex-direction: row; } }
  @media (min-width: 48em) {
    .case-study-block .case-study-wrapper .left-content {
      width: 50%; } }
  .case-study-block .case-study-wrapper .left-content img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    height: 190px; }
    @media (min-width: 48em) {
      .case-study-block .case-study-wrapper .left-content img {
        width: 702px;
        height: 450px; } }
  .case-study-block .case-study-wrapper .right-content {
    margin-top: 24px;
    padding-bottom: 20px; }
    @media (min-width: 48em) {
      .case-study-block .case-study-wrapper .right-content {
        width: 50%;
        margin-left: 65px;
        margin-top: 58px; } }
    .case-study-block .case-study-wrapper .right-content p {
      font-size: 16px;
      margin-bottom: 25px; }
      @media (min-width: 48em) {
        .case-study-block .case-study-wrapper .right-content p {
          margin-bottom: 50px; } }
  .case-study-block .case-study-wrapper .read-more {
    width: 179px;
    height: 42px;
    font-size: 15px;
    background-color: #FB8D35;
    text-decoration: none;
    color: #fff;
    border-radius: 21px;
    font-weight: bolder;
    padding: 10px 49px;
    display: block;
    margin: auto; }
    @media (min-width: 48em) {
      .case-study-block .case-study-wrapper .read-more {
        display: inline; } }
    .case-study-block .case-study-wrapper .read-more:hover {
      background-color: #FD8D25;
      cursor: pointer; }
  .case-study-block .case-study-wrapper .heading-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; }
    @media (min-width: 48em) {
      .case-study-block .case-study-wrapper .heading-row {
        margin-bottom: 32px; } }
    .case-study-block .case-study-wrapper .heading-row > * {
      width: fit-content; }
    .case-study-block .case-study-wrapper .heading-row h4 {
      margin: 0;
      font-size: 20px; }
      @media (min-width: 48em) {
        .case-study-block .case-study-wrapper .heading-row h4 {
          font-size: 30px; } }

.wp-block-columns.case-study-columns > *:first-child {
  display: none; }

@media (min-width: 48em) {
  .wp-block-columns.case-study-columns {
    max-width: unset;
    width: 1280px;
    display: block; }
    .wp-block-columns.case-study-columns > * {
      --col-width: unset !important;
      flex-basis: unset !important;
      flex-grow: unset;
      width: 1000px;
      float: right;
      margin-left: 0 !important; }
      .wp-block-columns.case-study-columns > *:first-child {
        display: block;
        width: 228px;
        margin-right: 50px;
        float: left; } }

.side-areas h4 {
  font-size: 18px; }

.side-areas .area {
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px #0000001a; }
  .side-areas .area a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
    position: absolute;
    bottom: 20px;
    left: 20px; }
    .side-areas .area a:after {
      content: '';
      background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right-arrow-orange.svg");
      width: 13px;
      height: 13px;
      margin-left: 10px;
      display: inline-block;
      background-repeat: no-repeat; }

.case-studies .row-section-wrapper {
  width: 100%; }
  .case-studies .row-section-wrapper:not(:last-of-type) {
    margin-bottom: 60px; }
  .case-studies .row-section-wrapper:last-of-type {
    justify-content: center !important; }
  .case-studies .row-section-wrapper .article-row-wrapper {
    box-shadow: none;
    height: auto;
    background-color: unset !important; }
    .case-studies .row-section-wrapper .article-row-wrapper .content-image {
      display: flex;
      justify-content: center;
      align-items: center;
      max-height: 200px;
      overflow: hidden;
      background-color: #F9FAFB; }
      .case-studies .row-section-wrapper .article-row-wrapper .content-image img {
        max-height: 100%;
        max-width: 250px; }
    .case-studies .row-section-wrapper .article-row-wrapper .content-section {
      width: 100%;
      height: auto;
      padding: 20px;
      margin: 0 auto;
      text-align: center; }
      .case-studies .row-section-wrapper .article-row-wrapper .content-section .content-tags span {
        display: inline-block;
        padding: 7px 18px;
        margin: 0 5px 5px 0px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: bold;
        background-color: #b0d8fe; }
      .case-studies .row-section-wrapper .article-row-wrapper .content-section .content-read-more {
        left: calc((100% - 160px) / 2); }

.section-articles-wrapper {
  width: 1280px !important;
  max-width: unset !important; }
  .section-articles-wrapper .article-section-wrapper {
    width: 100%;
    height: 382px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .section-articles-wrapper .article-section-wrapper:not(:last-of-type) {
      margin-bottom: 65px; }
    .section-articles-wrapper .article-section-wrapper.left .content-section {
      left: 0; }
    .section-articles-wrapper .article-section-wrapper.right .content-section {
      right: 0; }
    .section-articles-wrapper .article-section-wrapper img {
      width: 592px;
      height: 382px;
      border-radius: 10px; }
    .section-articles-wrapper .article-section-wrapper .content-section {
      /*margin-top: 45px;*/
      width: 591px;
      height: 293px;
      position: relative; }
      .section-articles-wrapper .article-section-wrapper .content-section .content-title {
        height: 43px;
        margin: 0;
        padding: 0;
        font-size: 30px; }
      .section-articles-wrapper .article-section-wrapper .content-section .content-text {
        margin-top: 13px;
        font-size: 16px; }
      .section-articles-wrapper .article-section-wrapper .content-section .content-read-more {
        margin-top: 37px; }

.content-read-more {
  background-color: #FB8D35;
  font-size: 13px;
  text-decoration: none;
  color: #fff !important;
  padding: 6px 29px;
  height: 35px;
  border-radius: 20px;
  width: 160px;
  font-weight: bolder;
  white-space: nowrap;
  display: block;
  margin: auto;
  margin-top: 31px;
  text-align: center;
  position: absolute;
  bottom: 20px; }
  @media (min-width: 48em) {
    .content-read-more {
      display: inline; } }
  .content-read-more:hover {
    color: #fff;
    background-color: #FD8D25; }

.testimonials-block-wrapper {
  width: 100%;
  background-color: #428AF4;
  color: #fff;
  margin: auto; }
  .testimonials-block-wrapper .arrow-box {
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 19px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .testimonials-block-wrapper .arrow-box img {
      max-width: 10px; }
  .testimonials-block-wrapper .slick-arrow {
    position: absolute;
    top: 10%;
    width: 36px;
    height: 36px;
    font-size: 0px;
    border-radius: 36px;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 0;
    background-size: 10px;
    background-position: center;
    z-index: 1; }
    @media (min-width: 48em) {
      .testimonials-block-wrapper .slick-arrow {
        top: 50%; } }
    .testimonials-block-wrapper .slick-arrow.slick-next {
      background-image: url("/content/themes/wired-media-ecommerce-theme//images/icons/arrows/right-arrow-grey.svg");
      right: 5%; }
      @media (min-width: 48em) {
        .testimonials-block-wrapper .slick-arrow.slick-next {
          right: 20%; } }
    .testimonials-block-wrapper .slick-arrow.slick-prev {
      background-image: url("/content/themes/wired-media-ecommerce-theme//images/icons/arrows/left-arrow-grey.svg");
      left: 5%; }
      @media (min-width: 48em) {
        .testimonials-block-wrapper .slick-arrow.slick-prev {
          left: 20%; } }
    .testimonials-block-wrapper .slick-arrow:before {
      content: ""; }
  .testimonials-block-wrapper .center-content {
    margin: 0 auto;
    text-align: center;
    display: block !important; }
    @media (min-width: 48em) {
      .testimonials-block-wrapper .center-content {
        width: 623px !important; } }
    .testimonials-block-wrapper .center-content h3 {
      margin-top: 0;
      font-size: 30px;
      max-width: 70%; }
      @media (min-width: 48em) {
        .testimonials-block-wrapper .center-content h3 {
          max-width: unset; } }
    .testimonials-block-wrapper .center-content p {
      font-size: 16px; }
    .testimonials-block-wrapper .center-content .read_more {
      margin-top: 37px;
      background-color: #FB8D35;
      font-size: 15px;
      text-decoration: none;
      color: #fff;
      padding: 10px 37px;
      height: 42px;
      border-radius: 21px;
      width: 179px;
      font-weight: bolder; }
      .testimonials-block-wrapper .center-content .read_more:hover {
        background-color: #FD8D25;
        color: #fff !important; }

.row-articles-wrapper {
  max-width: 100%; }
  @media (min-width: 80em) {
    .row-articles-wrapper {
      width: 1280px !important;
      max-width: unset !important; } }
  .row-articles-wrapper .section-heading {
    font-family: poppins, sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
    color: #0A3866;
    font-size: 30px !important;
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    letter-spacing: -.0415625em;
    line-height: 1.25;
    margin: 0 auto 20px;
    text-align: left; }
  .row-articles-wrapper .row-section-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    @media (min-width: 80em) {
      .row-articles-wrapper .row-section-wrapper {
        flex-direction: row; } }
    .row-articles-wrapper .row-section-wrapper.count2 {
      justify-content: space-around; }
    .row-articles-wrapper .row-section-wrapper .article-row-wrapper {
      background-color: #F8F9FA;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
      position: relative; }
      @media (min-width: 80em) {
        .row-articles-wrapper .row-section-wrapper .article-row-wrapper {
          width: 406px;
          margin-bottom: 0; } }
      .row-articles-wrapper .row-section-wrapper .article-row-wrapper:hover {
        cursor: pointer; }
      .row-articles-wrapper .row-section-wrapper .article-row-wrapper img {
        max-height: 201px;
        width: 100%;
        object-fit: cover; }
      .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section {
        padding: 25px 31px 35px;
        width: 100%; }
        .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-title {
          margin: 15px 0;
          font-size: 18px; }
          .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-title a {
            text-decoration: none;
            color: #0A3866; }
        .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-text {
          margin-top: 19px;
          font-size: 14px;
          margin-bottom: 70px; }

.home .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section {
  background-color: #fff; }

.ratings-wrapper .review-area {
  max-width: 1280px; }
  .ratings-wrapper .review-area .review-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    @media (min-width: 48em) {
      .ratings-wrapper .review-area .review-row {
        flex-direction: row; } }
    .ratings-wrapper .review-area .review-row .review-block-wrapper {
      text-align: center;
      padding: 30px 20px;
      margin: 0 !important; }
      @media (min-width: 48em) {
        .ratings-wrapper .review-area .review-row .review-block-wrapper {
          width: 33.33% !important; } }
      .ratings-wrapper .review-area .review-row .review-block-wrapper .name {
        font-weight: bolder;
        font-size: 20px;
        font-family: poppins, sans-serif;
        margin-bottom: 10px; }
      .ratings-wrapper .review-area .review-row .review-block-wrapper .role {
        text-transform: uppercase;
        font-size: 16px;
        font-family: muli, sans-serif;
        margin-bottom: 25px; }
      .ratings-wrapper .review-area .review-row .review-block-wrapper .content {
        font-size: 16px;
        font-family: muli, sans-serif;
        margin-bottom: 27px; }
      .ratings-wrapper .review-area .review-row .review-block-wrapper .stars {
        margin-bottom: 0; }
        .ratings-wrapper .review-area .review-row .review-block-wrapper .stars span {
          color: #428AF4; }

.hero-wrap.price {
  text-align: center; }
  .hero-wrap.price .hero-inner {
    margin: auto; }

.wm-columns-with-icons.price {
  display: none; }
  @media (min-width: 48em) {
    .wm-columns-with-icons.price {
      display: block; } }

@media (min-width: 48em) {
  .prices-area {
    max-width: 1280px; } }

.prices-area .top-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 48em) {
    .prices-area .top-wrapper {
      flex-direction: row;
      width: 75%;
      position: relative;
      left: 25%; } }
  .prices-area .top-wrapper .plan-block-wrapper {
    padding: 0 22px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
    box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
    background-color: #fff;
    text-align: center;
    min-height: 356px;
    position: relative;
    margin-bottom: 30px;
    height: fit-content; }
    @media (min-width: 48em) {
      .prices-area .top-wrapper .plan-block-wrapper {
        margin-bottom: 0;
        min-height: 306px; } }
    .prices-area .top-wrapper .plan-block-wrapper.most-popular {
      margin-top: 30px;
      border: 2px solid #428AF4; }
      @media (min-width: 48em) {
        .prices-area .top-wrapper .plan-block-wrapper.most-popular {
          margin-top: 0; } }
      .prices-area .top-wrapper .plan-block-wrapper.most-popular .plan_features_mobile_wrapper {
        border: 2px solid #428AF4;
        width: calc(100% + 4px);
        margin-left: -24px; }
    .prices-area .top-wrapper .plan-block-wrapper span.mp {
      position: absolute;
      color: #fff;
      background-color: #428AF4;
      width: 145px;
      height: 32px;
      font-size: 15px;
      font-family: poppins, sans-serif;
      font-weight: bolder;
      top: -32px;
      left: calc(50% - 72.5px);
      padding: 5px;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px; }
    .prices-area .top-wrapper .plan-block-wrapper h2 {
      font-family: poppins, sans-serif;
      font-size: 30px;
      color: #428AF4;
      margin-top: 27px;
      margin-bottom: 20px; }
    .prices-area .top-wrapper .plan-block-wrapper .description {
      width: 254px;
      font-family: poppins, sans-serif;
      font-size: 18px; }
    .prices-area .top-wrapper .plan-block-wrapper .link_wrapper {
      position: absolute;
      display: block;
      bottom: 100px;
      width: calc(100% - 44px);
      height: 40px; }
      @media (min-width: 48em) {
        .prices-area .top-wrapper .plan-block-wrapper .link_wrapper {
          bottom: 40px; } }
      .prices-area .top-wrapper .plan-block-wrapper .link_wrapper a {
        margin: auto;
        border: 2px solid #FB8D35;
        background-color: #FB8D35;
        font-size: 15px;
        text-decoration: none;
        color: #fff;
        padding: 10px 37px;
        height: 42px;
        border-radius: 21px;
        width: 179px;
        font-weight: bolder; }
    .prices-area .top-wrapper .plan-block-wrapper .link_wrapper_mobile {
      position: absolute;
      display: block;
      bottom: 40px;
      width: calc(100% - 44px);
      height: 40px; }
      @media (min-width: 48em) {
        .prices-area .top-wrapper .plan-block-wrapper .link_wrapper_mobile {
          display: none; } }
      .prices-area .top-wrapper .plan-block-wrapper .link_wrapper_mobile a {
        margin: auto;
        border: 2px solid #428AF4;
        font-size: 15px;
        text-decoration: none;
        color: #428AF4;
        padding: 10px 16px;
        height: 42px;
        border-radius: 21px;
        width: 179px;
        font-weight: bolder; }
        .prices-area .top-wrapper .plan-block-wrapper .link_wrapper_mobile a:after {
          content: '';
          background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-blue.svg");
          width: 16px;
          height: 10px;
          margin-top: 5px;
          background-size: 16px;
          display: inline-block;
          background-repeat: no-repeat;
          margin-left: 16px; }
    .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper {
      position: absolute;
      width: 100%;
      margin-left: -22px;
      display: none;
      border: 1px solid #fff;
      bottom: 0px;
      border-radius: 8px;
      -webkit-box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
      box-shadow: 0px 3px 8px 0px rgba(6, 28, 50, 0.07);
      background-color: #fff; }
      .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .borderCover {
        width: 100%;
        height: 10px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        z-index: 1; }
      .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile {
        margin: auto;
        padding-bottom: 30px;
        border: 1px solid #fff;
        border-radius: 8px; }
        .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile {
          width: calc(100% - 44px);
          margin: auto; }
          .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile:not(:last-of-type) {
            border-bottom: 1px solid #E0E0E0; }
          .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile .feature-tick-mobile {
            margin-top: 10px; }
            .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile .feature-tick-mobile .feature-plan-wrapper {
              text-align: center; }
              .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile .feature-tick-mobile .feature-plan-wrapper.ok i {
                background-color: #428AF4; }
              .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile .feature-tick-mobile .feature-plan-wrapper.ko i {
                background-color: #DEDEDE; }
              .prices-area .top-wrapper .plan-block-wrapper .plan_features_mobile_wrapper .plan_features_mobile .feature-row-mobile .feature-tick-mobile .feature-plan-wrapper i {
                color: #fff;
                padding: 10px;
                border-radius: 20px;
                width: 32px;
                font-size: 12px; }
    .prices-area .top-wrapper .plan-block-wrapper.active .link_wrapper_mobile a:after {
      background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/up-blue.svg");
      background-repeat: no-repeat;
      background-size: 16px; }

.prices-area .bottom-wrapper {
  display: none; }
  @media (min-width: 48em) {
    .prices-area .bottom-wrapper {
      display: block; } }
  .prices-area .bottom-wrapper .feature-row {
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
    align-items: center; }
    .prices-area .bottom-wrapper .feature-row:not(:last-of-type) {
      border-bottom: 1px solid #E0E0E0; }
    .prices-area .bottom-wrapper .feature-row .feature-title-wrapper {
      max-width: 25%; }
      .prices-area .bottom-wrapper .feature-row .feature-title-wrapper .feature-title {
        font-family: muli, sans-serif;
        font-size: 18px;
        margin-bottom: 0; }
    .prices-area .bottom-wrapper .feature-row .feature-plan-area {
      display: flex;
      width: 75%;
      justify-content: space-between;
      align-items: center; }
      .prices-area .bottom-wrapper .feature-row .feature-plan-area .feature-plan-wrapper {
        width: 31%;
        text-align: center; }
        .prices-area .bottom-wrapper .feature-row .feature-plan-area .feature-plan-wrapper.ok i {
          background-color: #428AF4; }
        .prices-area .bottom-wrapper .feature-row .feature-plan-area .feature-plan-wrapper.ko i {
          background-color: #DEDEDE; }
        .prices-area .bottom-wrapper .feature-row .feature-plan-area .feature-plan-wrapper i {
          color: #fff;
          padding: 10px;
          border-radius: 20px;
          width: 32px;
          font-size: 12px; }

.hero-wrap.job {
  text-align: center; }
  .hero-wrap.job .hero-inner {
    margin: auto; }
    .hero-wrap.job .hero-inner .home-button {
      margin-top: 36px !important; }
      .hero-wrap.job .hero-inner .home-button .main-button.primary-button {
        color: black !important;
        background-color: #fff !important; }
        .hero-wrap.job .hero-inner .home-button .main-button.primary-button:hover {
          background-color: #cccccc !important;
          border-color: #cccccc !important; }

.wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column,
.wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column {
  flex-basis: 50% !important; }
  @media (min-width: 48em) {
    .wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column,
    .wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column {
      flex-basis: 100% !important; } }
  .wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:first-of-type, .wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:last-of-type,
  .wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:first-of-type,
  .wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:last-of-type {
    display: none; }
    @media (min-width: 48em) {
      .wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:first-of-type, .wm_job-template-default.single-wm_job .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:last-of-type,
      .wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:first-of-type,
      .wm_firmsize-template-default.single-wm_firmsize .wp-block-group.feature-block-with-icons .wp-block-columns .wp-block-column:last-of-type {
        display: block; } }

.job-features-area .job-feature {
  overflow: hidden;
  padding-bottom: 67px;
  display: flex;
  flex-direction: column; }
  @media (min-width: 48em) {
    .job-features-area .job-feature {
      display: block;
      flex-direction: unset; } }
  @media (min-width: 48em) {
    .job-features-area .job-feature .left-wrapper {
      width: 32%;
      float: left; } }
  .job-features-area .job-feature .left-wrapper h4 {
    font-size: 30px;
    font-family: poppins, sans-serif;
    text-align: center;
    margin: 0;
    margin-bottom: 20px; }
    @media (min-width: 48em) {
      .job-features-area .job-feature .left-wrapper h4 {
        margin-bottom: 0; } }
  .job-features-area .job-feature .right-wrapper {
    text-align: center;
    font-size: 16px; }
    @media (min-width: 48em) {
      .job-features-area .job-feature .right-wrapper {
        width: 67.9%;
        float: right;
        text-align: left; } }
    .job-features-area .job-feature .right-wrapper p {
      font-size: 16px;
      font-family: muli, sans-serif;
      margin-bottom: 0; }
      .job-features-area .job-feature .right-wrapper p:not(:last-of-type) {
        margin-bottom: 20px; }

@media (min-width: 48em) {
  .row-jobs-wrapper {
    width: 1280px !important;
    max-width: unset !important; } }

.row-jobs-wrapper h2 {
  margin: 0 auto 3rem;
  text-align: center; }

.row-jobs-wrapper .row-section-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 48em) {
    .row-jobs-wrapper .row-section-wrapper {
      flex-direction: row; } }
  .row-jobs-wrapper .row-section-wrapper .jobs-row-wrapper {
    background-color: #F8F9FA;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative; }
    @media (min-width: 48em) {
      .row-jobs-wrapper .row-section-wrapper .jobs-row-wrapper {
        max-width: 19%;
        margin-bottom: 0; } }
    .row-jobs-wrapper .row-section-wrapper .jobs-row-wrapper .content-section {
      padding: 25px 31px 35px;
      width: 100%; }
      .row-jobs-wrapper .row-section-wrapper .jobs-row-wrapper .content-section .content-title {
        margin: 15px 0;
        font-size: 18px; }
      .row-jobs-wrapper .row-section-wrapper .jobs-row-wrapper .content-section .content-text {
        margin-top: 19px;
        font-size: 14px;
        margin-bottom: 40px; }

.home .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section {
  background-color: #fff; }

.promo-block-wrapper {
  background-color: #F8F9FA;
  border-radius: 10px; }
  .promo-block-wrapper > img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
  .promo-block-wrapper .content {
    text-align: center;
    padding: 0 30px;
    padding-bottom: 37px; }
    .promo-block-wrapper .content h3 {
      margin-top: 30px;
      margin-bottom: 30px;
      font-size: 26px; }
    .promo-block-wrapper .content p {
      font-size: 15px;
      margin-bottom: 30px; }
    .promo-block-wrapper .content a {
      margin: auto;
      margin-top: 37px;
      background-color: #FB8D35;
      font-size: 15px;
      text-decoration: none;
      color: #fff;
      padding: 10px 37px;
      border-radius: 21px;
      width: 179px;
      font-weight: bolder;
      display: block; }
      .promo-block-wrapper .content a:hover {
        background-color: #FD8D25;
        cursor: pointer; }

.tier-cards-wrapper {
  background-color: #F8F9FA;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100vw !important;
  width: 100% !important;
  padding-bottom: 90px;
  margin-bottom: 0; }
  @media (min-width: 48em) {
    .tier-cards-wrapper {
      padding: 40px;
      padding-top: 74px;
      margin-right: auto;
      margin-left: auto;
      position: relative; } }
  .tier-cards-wrapper .tier-cards-inner-wrapper {
    display: flex;
    flex-direction: column; }
    @media (min-width: 48em) {
      .tier-cards-wrapper .tier-cards-inner-wrapper {
        flex-direction: row;
        max-width: 120rem;
        position: relative;
        width: calc(100% - 4rem); } }
    .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper {
      font-family: poppins, sans-serif;
      display: flex;
      flex-direction: column;
      align-content: center;
      width: 40rem; }
      .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .popular_label {
        background-color: #198CFC;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 5px 40px;
        display: inline-block;
        margin: 0 auto;
        border-radius: 8px 8px 0 0; }
      .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper.popular {
        margin-top: 100px; }
        @media (min-width: 48em) {
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper.popular {
            margin-top: -34px; } }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper.popular .single-card-contents {
          border: 3px solid #198CFC;
          box-shadow: none; }
      .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents {
        margin: 0 10px;
        background-color: #fff;
        padding: 25px;
        padding-bottom: 20px !important;
        border-radius: 8px;
        border: 3px solid #fff;
        box-shadow: 0 0 14px 0 #D0D8E0;
        text-align: center;
        font-size: 16px;
        color: #3D517B;
        min-width: 290px;
        min-height: 680px;
        transition: top 0.5s, min-width 0.5s, min-height 0.5s; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents > * {
          margin-bottom: 20px; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .title_wrapper {
          font-size: 40px;
          font-weight: 600;
          color: #0A3866;
          line-height: 1; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents p {
          margin: 0; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section {
          font-weight: 600; }
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h1, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h2, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h3, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h4, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h5, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .price_section h6 {
            font-size: 51px;
            line-height: 1;
            color: #198CFC;
            margin: 0; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .description {
          min-height: 71px; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .button_section {
          display: flex;
          justify-content: center; }
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .button_section .cta_button {
            font-weight: 600;
            color: #fff;
            background-color: #FD8D25;
            font-size: 15px;
            border-radius: 30px;
            text-decoration: none;
            text-transform: none;
            padding: 12px 25px; }
        .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .content-section {
          text-align: left; }
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .content-section > * {
            margin-bottom: 20px; }
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .content-section b, .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .content-section strong {
            font-weight: 600; }
          .tier-cards-wrapper .tier-cards-inner-wrapper .single-card-wrapper .single-card-contents .content-section ul {
            list-style-type: none;
            list-style-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/osprey_check.png");
            margin-bottom: 0; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper p {
  margin: 0;
  line-height: 1; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper {
  display: flex;
  justify-content: flex-end; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper {
    background-color: #198CFC;
    color: #fff;
    font-family: muli, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 15px 35px 25px;
    position: relative;
    top: 10px;
    z-index: -1; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper b, .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper strong {
      font-family: poppins, sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 5px;
      display: inline-block; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper:first-child {
      border-top-left-radius: 8px; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper:not(:last-child) {
      border-right: 1px solid #B7BFC7; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .columns-section-wrapper .single-column-wrapper:last-child {
      border-top-right-radius: 8px; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper:first-child .section-row {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper:last-child .single-row-wrapper:last-child, .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper.last .single-row-wrapper:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper.more {
  display: none; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper.last {
  display: block !important; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper.last .section-row {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper.last::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    bottom: 0;
    content: "";
    height: 12.5rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .section-row {
  color: #fff;
  background-color: #061C32;
  font-family: poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .section-row .section_link {
    color: #fff;
    text-decoration: none; }

.compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper {
  background-color: #F8F9FA;
  color: #3D517B;
  font-family: muli, sans-serif;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  border-left: 1px solid #B7BFC7;
  border-right: 1px solid #B7BFC7;
  border-bottom: 1px solid #B7BFC7;
  flex-direction: column; }
  @media (min-width: 48em) {
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper {
      flex-direction: row; } }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper.more {
    display: none; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper.last {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper.last::after {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
      bottom: 0;
      content: "";
      height: 12.5rem;
      left: 0;
      position: absolute;
      right: 0;
      z-index: 1; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .feature-label {
    font-weight: bold;
    padding: 15px 20px; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .feature-label .feature_link {
      color: #3D517B;
      text-decoration: none; }
  .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper {
    display: flex; }
    .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper .single-feature-value-wrapper {
      padding: 15px 20px;
      text-align: center;
      width: 176px;
      border-top: 1px solid #B7BFC7; }
      @media (min-width: 48em) {
        .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper .single-feature-value-wrapper {
          border-top: unset; } }
      .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper .single-feature-value-wrapper:not(:last-child) {
        border-right: 1px solid #B7BFC7; }
      .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper .single-feature-value-wrapper .feature-icon {
        width: 18px;
        height: 18px;
        margin: 0 auto; }
      .compare-plans-table-wrapper .compare-plans-table-inner-wrapper .contents-section-wrapper .single-section-wrapper .single-row-wrapper .features-wrapper .single-feature-value-wrapper:last-child {
        width: 163px; }

.compare-plans-table-wrapper .show_more_section {
  margin: 4rem auto;
  text-align: center; }
  .compare-plans-table-wrapper .show_more_section .show_more_button {
    font-family: poppins, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #198CFC; }
    .compare-plans-table-wrapper .show_more_section .show_more_button:hover {
      cursor: pointer; }

#mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-menu-item > .mega-sub-menu.resources > li {
  padding: 10px !important;
  width: 95% !important; }
  #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-menu-item > .mega-sub-menu.resources > li.mega-menu-item {
    color: #666;
    font-family: inherit;
    font-size: 14px;
    display: block;
    float: left;
    clear: none;
    vertical-align: top; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-menu-item > .mega-sub-menu.resources > li.mega-menu-item.selected {
      border-radius: 10px;
      box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5); }
    #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-menu-item > .mega-sub-menu.resources > li.mega-menu-item a.mega-menu-link {
      font-size: 16px; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-menu-item > .mega-sub-menu.resources > li.mega-menu-item a.mega-menu-link .menu_text {
        display: block;
        font-size: 12px;
        width: 95%;
        white-space: normal; }

.column-two-section .preview-icon,
.column-section.preview .preview-icon {
  object-fit: contain; }

.column-two-section .title,
.column-section.preview .title {
  margin: 10px 0;
  display: block;
  font-family: poppins, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-style: normal;
  font-weight: 600;
  color: #0A3866; }

.column-two-section .content,
.column-section.preview .content {
  display: block;
  color: #0A3866;
  padding: 10px 0; }
  .column-two-section .content p,
  .column-section.preview .content p {
    line-height: 1.3; }
  .column-two-section .content ul,
  .column-section.preview .content ul {
    position: static;
    opacity: 1;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
    transform: none;
    width: auto; }
    .column-two-section .content ul li,
    .column-section.preview .content ul li {
      position: relative;
      padding-left: 0.8em; }
      .column-two-section .content ul li::before,
      .column-section.preview .content ul li::before {
        content: "";
        display: inline-block;
        position: absolute;
        left: -0.5em;
        top: 0;
        transform: rotate(45deg);
        height: 1em;
        width: 0.5em;
        border-bottom: 0.15em solid #198CFC;
        border-right: 0.15em solid #198CFC; }
      .column-two-section .content ul li:is(li),
      .column-section.preview .content ul li:is(li) {
        margin-left: 1em; }
        .column-two-section .content ul li:is(li):not(:first-child),
        .column-section.preview .content ul li:is(li):not(:first-child) {
          margin-top: 0.3em; }
    .column-two-section .content ul:before,
    .column-section.preview .content ul:before {
      display: none; }
    .column-two-section .content ul:after,
    .column-section.preview .content ul:after {
      display: none; }

.column-two-section .link,
.column-section.preview .link {
  display: inline-block;
  color: #198CFC;
  padding: 0;
  margin: 10px 0;
  width: auto;
  font-weight: bold; }
  .column-two-section .link::before,
  .column-section.preview .link::before {
    display: inline-block;
    font: inherit;
    font-family: dashicons;
    position: static;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    background: 0 0;
    height: auto;
    width: auto;
    top: auto;
    float: right; }

.column-two-wrapper {
  padding: 10px; }
  .column-two-wrapper .column-title {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 5px;
    display: block;
    color: #198CFC !important;
    font-family: poppins, sans-serif;
    font-weight: 600 !important;
    font-style: normal !important; }
  .column-two-wrapper ul.mega-sub-menu li.mega-menu-item {
    padding: 10px !important;
    width: 95% !important; }
    .column-two-wrapper ul.mega-sub-menu li.mega-menu-item.selected {
      border-radius: 10px !important;
      box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important;
      -webkit-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important; }
    .column-two-wrapper ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
      font-size: 16px !important;
      max-width: 100% !important;
      white-space: normal !important; }

#mega-menu-9730-0-1 > ul {
  padding: 20px !important; }

.column-three-wrapper,
.resources-column-three-wrapper {
  padding: 10px; }
  .column-three-wrapper .column-three-section .category,
  .resources-column-three-wrapper .column-three-section .category {
    margin: 10px 0;
    display: block;
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #198CFC;
    text-transform: uppercase; }
  .column-three-wrapper .column-three-section .preview-image,
  .resources-column-three-wrapper .column-three-section .preview-image {
    border-radius: 10px; }
  .column-three-wrapper .column-three-section .title,
  .resources-column-three-wrapper .column-three-section .title {
    margin: 10px 0;
    display: block;
    font-family: poppins, sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-style: normal;
    font-weight: 600;
    color: #0A3866; }
  .column-three-wrapper .column-three-section .content,
  .resources-column-three-wrapper .column-three-section .content {
    display: block;
    color: #0A3866;
    padding: 10px 0; }
    .column-three-wrapper .column-three-section .content p,
    .resources-column-three-wrapper .column-three-section .content p {
      line-height: 1.3; }
    .column-three-wrapper .column-three-section .content ul,
    .resources-column-three-wrapper .column-three-section .content ul {
      position: static;
      opacity: 1;
      background-color: transparent;
      color: inherit;
      font-size: inherit;
      transform: none;
      width: auto; }
      .column-three-wrapper .column-three-section .content ul li,
      .resources-column-three-wrapper .column-three-section .content ul li {
        position: relative;
        padding-left: 0.8em; }
        .column-three-wrapper .column-three-section .content ul li::before,
        .resources-column-three-wrapper .column-three-section .content ul li::before {
          content: "";
          display: inline-block;
          position: absolute;
          left: -0.5em;
          top: 0;
          transform: rotate(45deg);
          height: 1em;
          width: 0.5em;
          border-bottom: 0.15em solid #198CFC;
          border-right: 0.15em solid #198CFC; }
        .column-three-wrapper .column-three-section .content ul li:is(li),
        .resources-column-three-wrapper .column-three-section .content ul li:is(li) {
          margin-left: 1em; }
          .column-three-wrapper .column-three-section .content ul li:is(li):not(:first-child),
          .resources-column-three-wrapper .column-three-section .content ul li:is(li):not(:first-child) {
            margin-top: 0.3em; }
      .column-three-wrapper .column-three-section .content ul:before,
      .resources-column-three-wrapper .column-three-section .content ul:before {
        display: none; }
      .column-three-wrapper .column-three-section .content ul:after,
      .resources-column-three-wrapper .column-three-section .content ul:after {
        display: none; }
  .column-three-wrapper .column-three-section .link,
  .resources-column-three-wrapper .column-three-section .link {
    display: inline-block;
    color: #198CFC;
    padding: 0;
    margin: 10px 0;
    width: auto;
    font-weight: bold; }
    .column-three-wrapper .column-three-section .link::before,
    .resources-column-three-wrapper .column-three-section .link::before {
      display: inline-block;
      font: inherit;
      font-family: dashicons;
      position: static;
      vertical-align: top;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: inherit;
      background: 0 0;
      height: auto;
      width: auto;
      top: auto;
      float: right; }
  .column-three-wrapper .column-title,
  .resources-column-three-wrapper .column-title {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 5px;
    display: block;
    color: #198CFC !important;
    font-family: poppins, sans-serif;
    font-weight: 600 !important;
    font-style: normal !important; }
  .column-three-wrapper ul.mega-sub-menu li.mega-menu-item,
  .resources-column-three-wrapper ul.mega-sub-menu li.mega-menu-item {
    padding: 10px !important;
    width: 95% !important; }
    .column-three-wrapper ul.mega-sub-menu li.mega-menu-item.selected,
    .resources-column-three-wrapper ul.mega-sub-menu li.mega-menu-item.selected {
      border-radius: 10px !important;
      box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important;
      -webkit-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important; }
    .column-three-wrapper ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
    .resources-column-three-wrapper ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
      font-size: 16px !important;
      max-width: 100% !important;
      white-space: normal !important; }

.column-four-wrapper {
  padding: 10px; }
  .column-four-wrapper .column-four-section .category {
    margin: 10px 0;
    display: block;
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #198CFC;
    text-transform: uppercase; }
  .column-four-wrapper .column-four-section .preview-image {
    border-radius: 10px; }
  .column-four-wrapper .column-four-section .title {
    margin: 10px 0;
    display: block;
    font-family: poppins, sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-style: normal;
    font-weight: 600;
    color: #0A3866; }
  .column-four-wrapper .column-four-section .content {
    display: block;
    color: #0A3866;
    padding: 10px 0; }
    .column-four-wrapper .column-four-section .content p {
      line-height: 1.3; }
    .column-four-wrapper .column-four-section .content ul {
      position: static;
      opacity: 1;
      background-color: transparent;
      color: inherit;
      font-size: inherit;
      transform: none;
      width: auto; }
      .column-four-wrapper .column-four-section .content ul li {
        position: relative;
        padding-left: 0.8em; }
        .column-four-wrapper .column-four-section .content ul li::before {
          content: "";
          display: inline-block;
          position: absolute;
          left: -0.5em;
          top: 0;
          transform: rotate(45deg);
          height: 1em;
          width: 0.5em;
          border-bottom: 0.15em solid #198CFC;
          border-right: 0.15em solid #198CFC; }
        .column-four-wrapper .column-four-section .content ul li:is(li) {
          margin-left: 1em; }
          .column-four-wrapper .column-four-section .content ul li:is(li):not(:first-child) {
            margin-top: 0.3em; }
      .column-four-wrapper .column-four-section .content ul:before {
        display: none; }
      .column-four-wrapper .column-four-section .content ul:after {
        display: none; }
  .column-four-wrapper .column-four-section .link {
    display: inline-block;
    color: #198CFC;
    padding: 0;
    margin: 10px 0;
    width: auto;
    font-weight: bold; }
    .column-four-wrapper .column-four-section .link::before {
      display: inline-block;
      font: inherit;
      font-family: dashicons;
      position: static;
      vertical-align: top;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: inherit;
      background: 0 0;
      height: auto;
      width: auto;
      top: auto;
      float: right; }

.menu-widget-banner {
  background-color: #FD8D25;
  min-height: 50px;
  display: flex; }
  .menu-widget-banner .inner {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin: auto; }
    .menu-widget-banner .inner .content {
      display: block;
      color: white; }
    .menu-widget-banner .inner .link {
      display: block;
      color: #0A3866;
      width: auto;
      padding: 0;
      line-height: 1.7;
      font-weight: bold; }
      .menu-widget-banner .inner .link::before {
        display: block;
        font: inherit;
        font-family: dashicons;
        position: static;
        vertical-align: top;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: inherit;
        background: 0 0;
        height: auto;
        width: auto;
        top: auto;
        float: right;
        margin: 2px 0 0 0; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget {
  width: 100% !important;
  padding: 0 !important;
  background-color: #fff; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel {
    display: none;
    width: 100%; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel.bordered {
      padding: 10px 37px 10px 0;
      border-width: 34px;
      border-style: solid;
      border-image: linear-gradient(to right, #F4F7FC, rgba(0, 0, 0, 0)) 1 100%;
      border-top: none;
      border-right: none;
      border-bottom: none; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel.active {
      display: flex; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel > * {
      width: 50%;
      padding: 15px 0; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double {
      width: 66.666%;
      padding: 0; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double .panel {
        padding: 0;
        border-left: none; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double .panel > * {
          width: 50%; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double .panel > *:first-child {
            border: none; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double .panel .column-two-section .cnt_wrapper {
          position: static; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .column-three-section.double .panel .column-four-section {
          display: none; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left {
      padding-left: 13px;
      /*
					.column-title {
						font-size: $menu-header-size;
						text-transform: uppercase;
						margin: 8px 0 0;
						padding: 0 0 5px;
						display: block;
						color: #198CFC !important;
						font-family: $font--two;
						font-style: normal !important;
					}

					ul.mega-sub-menu {
						li.mega-menu-item {

							.link_wrapper {
								padding: 10px !important;
								width: 95% !important;
							}

							&.selected,
							&:hover {

								.link_wrapper {
									background-color: $color--white;
									border-radius: 10px !important;
									box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important;
									-webkit-box-shadow: 2px 1px 5px 0px rgba(0, 0, 0, 0.5) !important;
								}
							}

							a.mega-menu-link {
								font-size: 16px !important;
								max-width: 100% !important;
								white-space: normal !important;
							}
						}
					}

					.header_title {
						margin: 5px 0 10px;
						display: block;
						font-family: $font--two;
						font-size: $menu-header-size;
						line-height: 27.2px;
						font-style: normal;
						font-weight: 500;
						color: $color--brand-blue;
					}
*/ }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .cnt_wrapper .title {
        font-weight: bold; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .cnt_wrapper .cnt_image {
        display: none; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .bottom_space {
        padding-top: 63px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .bottom_space .link-box {
          background-color: #E4EBF7;
          width: 249px;
          height: 87px;
          border-radius: 8px;
          display: flex;
          justify-content: center;
          align-items: center; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .bottom_space .link-box .text_wrapper {
            color: #3D517B;
            font-family: poppins, sans-serif;
            font-size: 15px;
            line-height: 20px; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .bottom_space .link-box .arrow_right {
            width: 9px;
            height: 17px; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .title {
        margin: 0;
        display: block;
        font-family: poppins, sans-serif;
        font-size: 21px;
        line-height: 21px;
        font-style: normal;
        font-weight: 500;
        color: #198CFC; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content {
        display: block;
        color: #3D517B;
        line-height: 23px;
        font-size: 16px;
        margin-top: 35px;
        max-width: 377px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul {
          position: static;
          opacity: 1;
          background-color: transparent;
          color: inherit;
          font-size: inherit;
          transform: none;
          width: auto;
          margin-top: 33px; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul li {
            position: relative;
            padding-left: 0.8em; }
            #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul li::before {
              content: "";
              display: inline-block;
              position: absolute;
              left: -0.5em;
              top: 0;
              transform: rotate(45deg);
              height: 1em;
              width: 0.5em;
              border-bottom: 0.15em solid #198CFC;
              border-right: 0.15em solid #198CFC; }
            #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul li:is(li) {
              margin-left: 1em; }
              #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul li:is(li):not(:first-child) {
                margin-top: 0.3em; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul:before {
            display: none; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .content ul:after {
            display: none; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.left .link {
        padding: 0;
        width: fit-content;
        margin-top: 39px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #FD8D25;
        color: #fff;
        font-family: poppins, sans-serif;
        font-weight: 500;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 30px;
        padding-left: 20px !important;
        padding-right: 20px !important; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right {
      display: flex;
      flex-direction: column;
      gap: 41px; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block {
        border-radius: 10px;
        background-color: #F4F7FC;
        display: flex;
        height: 210px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block:hover {
          cursor: pointer; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .preview-image {
          width: 50%;
          object-fit: cover;
          border-top-left-radius: 10px;
          border-bottom-left-radius: 10px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .wrapper_content {
          padding-left: 28px;
          position: relative; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .wrapper_content .category {
            margin: 10px 0;
            display: block;
            font-family: poppins, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            color: #198CFC;
            text-transform: uppercase;
            width: 100%; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .wrapper_content .title {
            margin: 10px 0;
            display: block;
            font-family: muli, sans-serif;
            font-size: 16px;
            line-height: 18px;
            font-style: normal;
            font-weight: 500;
            color: #3D517B; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .wrapper_content .link {
            display: inline-block;
            color: #198CFC;
            font-family: poppins, sans-serif;
            font-size: 15px;
            margin-bottom: 20px;
            width: auto;
            position: absolute;
            bottom: 0px;
            border-bottom: 1px solid #198CFC;
            padding: 0 0 3px;
            white-space: nowrap; }
            #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .half.right .content-block .wrapper_content .link::before {
              display: inline-block;
              font: inherit;
              font-family: dashicons;
              position: relative;
              vertical-align: top;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              color: inherit;
              background: 0 0;
              height: auto;
              width: auto;
              top: 1px;
              float: right;
              margin-left: 10px; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third {
      width: 323px;
      background-color: #F4F7FC; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third .column-title {
        color: #198CFC !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        margin-left: 34px;
        text-transform: uppercase;
        height: 53px;
        display: flex;
        align-items: center; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third .bottom_space {
        padding-top: 63px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third .bottom_space .link-box {
          margin-left: 34px;
          background-color: #E4EBF7;
          width: 249px;
          height: 87px;
          border-radius: 8px;
          display: flex;
          justify-content: center;
          align-items: center; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third .bottom_space .link-box .text_wrapper {
            color: #3D517B;
            font-family: poppins, sans-serif;
            font-size: 15px;
            line-height: 20px; }
          #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third .bottom_space .link-box .arrow_right {
            width: 9px;
            height: 17px; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right {
      width: 66%;
      padding-left: 43px; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right .bottom_space,
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right .half.right {
        display: none; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right .half.left {
        padding-left: 0;
        width: 100%; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right .half.left .content {
          color: #3D517B;
          max-width: 553px; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu > li:first-child > ul.mega-sub-menu > li > ul.mega-sub-menu > li.mega-menu-item-type-widget.widget_menu_panel_widget .panel .third-right .half.left .cnt_image {
          display: block;
          width: 50%;
          object-fit: contain;
          margin-top: 30px; }

/* 8 */
/*  ==========================================================================
    Generic:Widths
    ========================================================================== */
/*
    Sizes in human readable format. These are used in conjunction with other
    objects and abstractions, most commonly the grid system.

    We have a mixin to generate our widths and their breakpoint-specific
    variations.
*/
/*
        Whole
        -----
    */
.one-whole {
  width: 100%; }

/*
        Halves
        ------
    */
.one-half {
  width: 50%; }

/*
        Thirds
        ------
    */
.one-third {
  width: 33.3333333%; }

.two-thirds {
  width: 66.6666666%; }

/*
        Quarters
        --------
    */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/*
        Fifths
        ------
    */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/*
        Sixths
        ------
    */
.one-sixth {
  width: 16.6666666%; }

.two-sixths {
  width: 33.3333333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.6666666%; }

.five-sixths {
  width: 83.3333333%; }

/*
        Eighths
        -------
    */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/*
        Ninths
        ------
    */
.one-ninth {
  width: 11.1111111%; }

.two-ninths {
  width: 22.2222222%; }

.four-ninths {
  width: 44.4444444%; }

.five-ninths {
  width: 55.5555555%; }

.seven-ninths {
  width: 77.7777777%; }

.eight-ninths {
  width: 88.8888888%; }

/*
        Tenths
        ------
    */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/*
        Twelfths
        --------
    */
.one-twelfth {
  width: 8.3333333%; }

.two-twelfths {
  width: 16.6666666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.3333333%; }

.five-twelfths {
  width: 41.6666666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.3333333%; }

.eight-twelfths {
  width: 66.6666666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.3333333%; }

.eleven-twelfths {
  width: 91.6666666%; }

/*
        Twentieth
        --------
    */
.one-twentieth {
  width: 5%; }

.two-twentieths {
  width: 10%; }

.three-twentieths {
  width: 15%; }

.four-twentieths {
  width: 20%; }

.five-twentieths {
  width: 25%; }

.six-twentieths {
  width: 30%; }

.seven-twentieths {
  width: 35%; }

.eight-twentieths {
  width: 40%; }

.nine-twentieths {
  width: 45%; }

.ten-twentieths {
  width: 50%; }

.eleven-twentieths {
  width: 55%; }

.twelve-twentieths {
  width: 60%; }

.thirteen-twentieths {
  width: 65%; }

/*
Create more grid sizes below:-

@include respond($bp--grid-small) {
    @include grid-setup("small-");
}
*/
@media (min-width: 28.125em) {
  /*
        Whole
        -----
    */
  .small-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .small-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .small-one-third {
    width: 33.3333333%; }
  .small-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .small-one-quarter {
    width: 25%; }
  .small-two-quarters {
    width: 50%; }
  .small-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .small-one-fifth {
    width: 20%; }
  .small-two-fifths {
    width: 40%; }
  .small-three-fifths {
    width: 60%; }
  .small-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .small-one-sixth {
    width: 16.6666666%; }
  .small-two-sixths {
    width: 33.3333333%; }
  .small-three-sixths {
    width: 50%; }
  .small-four-sixths {
    width: 66.6666666%; }
  .small-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .small-one-eighth {
    width: 12.5%; }
  .small-two-eighths {
    width: 25%; }
  .small-three-eighths {
    width: 37.5%; }
  .small-four-eighths {
    width: 50%; }
  .small-five-eighths {
    width: 62.5%; }
  .small-six-eighths {
    width: 75%; }
  .small-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .small-one-ninth {
    width: 11.1111111%; }
  .small-two-ninths {
    width: 22.2222222%; }
  .small-four-ninths {
    width: 44.4444444%; }
  .small-five-ninths {
    width: 55.5555555%; }
  .small-seven-ninths {
    width: 77.7777777%; }
  .small-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .small-one-tenth {
    width: 10%; }
  .small-two-tenths {
    width: 20%; }
  .small-three-tenths {
    width: 30%; }
  .small-four-tenths {
    width: 40%; }
  .small-five-tenths {
    width: 50%; }
  .small-six-tenths {
    width: 60%; }
  .small-seven-tenths {
    width: 70%; }
  .small-eight-tenths {
    width: 80%; }
  .small-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .small-one-twelfth {
    width: 8.3333333%; }
  .small-two-twelfths {
    width: 16.6666666%; }
  .small-three-twelfths {
    width: 25%; }
  .small-four-twelfths {
    width: 33.3333333%; }
  .small-five-twelfths {
    width: 41.6666666%; }
  .small-six-twelfths {
    width: 50%; }
  .small-seven-twelfths {
    width: 58.3333333%; }
  .small-eight-twelfths {
    width: 66.6666666%; }
  .small-nine-twelfths {
    width: 75%; }
  .small-ten-twelfths {
    width: 83.3333333%; }
  .small-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .small-one-twentieth {
    width: 5%; }
  .small-two-twentieths {
    width: 10%; }
  .small-three-twentieths {
    width: 15%; }
  .small-four-twentieths {
    width: 20%; }
  .small-five-twentieths {
    width: 25%; }
  .small-six-twentieths {
    width: 30%; }
  .small-seven-twentieths {
    width: 35%; }
  .small-eight-twentieths {
    width: 40%; }
  .small-nine-twentieths {
    width: 45%; }
  .small-ten-twentieths {
    width: 50%; }
  .small-eleven-twentieths {
    width: 55%; }
  .small-twelve-twentieths {
    width: 60%; }
  .small-thirteen-twentieths {
    width: 65%; } }

@media (min-width: 34.375em) {
  /*
        Whole
        -----
    */
  .medium-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .medium-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .medium-one-third {
    width: 33.3333333%; }
  .medium-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .medium-one-quarter {
    width: 25%; }
  .medium-two-quarters {
    width: 50%; }
  .medium-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .medium-one-fifth {
    width: 20%; }
  .medium-two-fifths {
    width: 40%; }
  .medium-three-fifths {
    width: 60%; }
  .medium-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .medium-one-sixth {
    width: 16.6666666%; }
  .medium-two-sixths {
    width: 33.3333333%; }
  .medium-three-sixths {
    width: 50%; }
  .medium-four-sixths {
    width: 66.6666666%; }
  .medium-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .medium-one-eighth {
    width: 12.5%; }
  .medium-two-eighths {
    width: 25%; }
  .medium-three-eighths {
    width: 37.5%; }
  .medium-four-eighths {
    width: 50%; }
  .medium-five-eighths {
    width: 62.5%; }
  .medium-six-eighths {
    width: 75%; }
  .medium-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .medium-one-ninth {
    width: 11.1111111%; }
  .medium-two-ninths {
    width: 22.2222222%; }
  .medium-four-ninths {
    width: 44.4444444%; }
  .medium-five-ninths {
    width: 55.5555555%; }
  .medium-seven-ninths {
    width: 77.7777777%; }
  .medium-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .medium-one-tenth {
    width: 10%; }
  .medium-two-tenths {
    width: 20%; }
  .medium-three-tenths {
    width: 30%; }
  .medium-four-tenths {
    width: 40%; }
  .medium-five-tenths {
    width: 50%; }
  .medium-six-tenths {
    width: 60%; }
  .medium-seven-tenths {
    width: 70%; }
  .medium-eight-tenths {
    width: 80%; }
  .medium-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .medium-one-twelfth {
    width: 8.3333333%; }
  .medium-two-twelfths {
    width: 16.6666666%; }
  .medium-three-twelfths {
    width: 25%; }
  .medium-four-twelfths {
    width: 33.3333333%; }
  .medium-five-twelfths {
    width: 41.6666666%; }
  .medium-six-twelfths {
    width: 50%; }
  .medium-seven-twelfths {
    width: 58.3333333%; }
  .medium-eight-twelfths {
    width: 66.6666666%; }
  .medium-nine-twelfths {
    width: 75%; }
  .medium-ten-twelfths {
    width: 83.3333333%; }
  .medium-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .medium-one-twentieth {
    width: 5%; }
  .medium-two-twentieths {
    width: 10%; }
  .medium-three-twentieths {
    width: 15%; }
  .medium-four-twentieths {
    width: 20%; }
  .medium-five-twentieths {
    width: 25%; }
  .medium-six-twentieths {
    width: 30%; }
  .medium-seven-twentieths {
    width: 35%; }
  .medium-eight-twentieths {
    width: 40%; }
  .medium-nine-twentieths {
    width: 45%; }
  .medium-ten-twentieths {
    width: 50%; }
  .medium-eleven-twentieths {
    width: 55%; }
  .medium-twelve-twentieths {
    width: 60%; }
  .medium-thirteen-twentieths {
    width: 65%; } }

@media (min-width: 48em) {
  /*
        Whole
        -----
    */
  .large-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .large-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .large-one-third {
    width: 33.3333333%; }
  .large-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .large-one-quarter {
    width: 25%; }
  .large-two-quarters {
    width: 50%; }
  .large-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .large-one-fifth {
    width: 20%; }
  .large-two-fifths {
    width: 40%; }
  .large-three-fifths {
    width: 60%; }
  .large-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .large-one-sixth {
    width: 16.6666666%; }
  .large-two-sixths {
    width: 33.3333333%; }
  .large-three-sixths {
    width: 50%; }
  .large-four-sixths {
    width: 66.6666666%; }
  .large-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .large-one-eighth {
    width: 12.5%; }
  .large-two-eighths {
    width: 25%; }
  .large-three-eighths {
    width: 37.5%; }
  .large-four-eighths {
    width: 50%; }
  .large-five-eighths {
    width: 62.5%; }
  .large-six-eighths {
    width: 75%; }
  .large-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .large-one-ninth {
    width: 11.1111111%; }
  .large-two-ninths {
    width: 22.2222222%; }
  .large-four-ninths {
    width: 44.4444444%; }
  .large-five-ninths {
    width: 55.5555555%; }
  .large-seven-ninths {
    width: 77.7777777%; }
  .large-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .large-one-tenth {
    width: 10%; }
  .large-two-tenths {
    width: 20%; }
  .large-three-tenths {
    width: 30%; }
  .large-four-tenths {
    width: 40%; }
  .large-five-tenths {
    width: 50%; }
  .large-six-tenths {
    width: 60%; }
  .large-seven-tenths {
    width: 70%; }
  .large-eight-tenths {
    width: 80%; }
  .large-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .large-one-twelfth {
    width: 8.3333333%; }
  .large-two-twelfths {
    width: 16.6666666%; }
  .large-three-twelfths {
    width: 25%; }
  .large-four-twelfths {
    width: 33.3333333%; }
  .large-five-twelfths {
    width: 41.6666666%; }
  .large-six-twelfths {
    width: 50%; }
  .large-seven-twelfths {
    width: 58.3333333%; }
  .large-eight-twelfths {
    width: 66.6666666%; }
  .large-nine-twelfths {
    width: 75%; }
  .large-ten-twelfths {
    width: 83.3333333%; }
  .large-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .large-one-twentieth {
    width: 5%; }
  .large-two-twentieths {
    width: 10%; }
  .large-three-twentieths {
    width: 15%; }
  .large-four-twentieths {
    width: 20%; }
  .large-five-twentieths {
    width: 25%; }
  .large-six-twentieths {
    width: 30%; }
  .large-seven-twentieths {
    width: 35%; }
  .large-eight-twentieths {
    width: 40%; }
  .large-nine-twentieths {
    width: 45%; }
  .large-ten-twentieths {
    width: 50%; }
  .large-eleven-twentieths {
    width: 55%; }
  .large-twelve-twentieths {
    width: 60%; }
  .large-thirteen-twentieths {
    width: 65%; } }

@media (min-width: 56.25em) {
  /*
        Whole
        -----
    */
  .larger-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .larger-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .larger-one-third {
    width: 33.3333333%; }
  .larger-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .larger-one-quarter {
    width: 25%; }
  .larger-two-quarters {
    width: 50%; }
  .larger-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .larger-one-fifth {
    width: 20%; }
  .larger-two-fifths {
    width: 40%; }
  .larger-three-fifths {
    width: 60%; }
  .larger-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .larger-one-sixth {
    width: 16.6666666%; }
  .larger-two-sixths {
    width: 33.3333333%; }
  .larger-three-sixths {
    width: 50%; }
  .larger-four-sixths {
    width: 66.6666666%; }
  .larger-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .larger-one-eighth {
    width: 12.5%; }
  .larger-two-eighths {
    width: 25%; }
  .larger-three-eighths {
    width: 37.5%; }
  .larger-four-eighths {
    width: 50%; }
  .larger-five-eighths {
    width: 62.5%; }
  .larger-six-eighths {
    width: 75%; }
  .larger-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .larger-one-ninth {
    width: 11.1111111%; }
  .larger-two-ninths {
    width: 22.2222222%; }
  .larger-four-ninths {
    width: 44.4444444%; }
  .larger-five-ninths {
    width: 55.5555555%; }
  .larger-seven-ninths {
    width: 77.7777777%; }
  .larger-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .larger-one-tenth {
    width: 10%; }
  .larger-two-tenths {
    width: 20%; }
  .larger-three-tenths {
    width: 30%; }
  .larger-four-tenths {
    width: 40%; }
  .larger-five-tenths {
    width: 50%; }
  .larger-six-tenths {
    width: 60%; }
  .larger-seven-tenths {
    width: 70%; }
  .larger-eight-tenths {
    width: 80%; }
  .larger-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .larger-one-twelfth {
    width: 8.3333333%; }
  .larger-two-twelfths {
    width: 16.6666666%; }
  .larger-three-twelfths {
    width: 25%; }
  .larger-four-twelfths {
    width: 33.3333333%; }
  .larger-five-twelfths {
    width: 41.6666666%; }
  .larger-six-twelfths {
    width: 50%; }
  .larger-seven-twelfths {
    width: 58.3333333%; }
  .larger-eight-twelfths {
    width: 66.6666666%; }
  .larger-nine-twelfths {
    width: 75%; }
  .larger-ten-twelfths {
    width: 83.3333333%; }
  .larger-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .larger-one-twentieth {
    width: 5%; }
  .larger-two-twentieths {
    width: 10%; }
  .larger-three-twentieths {
    width: 15%; }
  .larger-four-twentieths {
    width: 20%; }
  .larger-five-twentieths {
    width: 25%; }
  .larger-six-twentieths {
    width: 30%; }
  .larger-seven-twentieths {
    width: 35%; }
  .larger-eight-twentieths {
    width: 40%; }
  .larger-nine-twentieths {
    width: 45%; }
  .larger-ten-twentieths {
    width: 50%; }
  .larger-eleven-twentieths {
    width: 55%; }
  .larger-twelve-twentieths {
    width: 60%; }
  .larger-thirteen-twentieths {
    width: 65%; } }

@media (min-width: 80em) {
  /*
        Whole
        -----
    */
  .largest-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .largest-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .largest-one-third {
    width: 33.3333333%; }
  .largest-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .largest-one-quarter {
    width: 25%; }
  .largest-two-quarters {
    width: 50%; }
  .largest-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .largest-one-fifth {
    width: 20%; }
  .largest-two-fifths {
    width: 40%; }
  .largest-three-fifths {
    width: 60%; }
  .largest-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .largest-one-sixth {
    width: 16.6666666%; }
  .largest-two-sixths {
    width: 33.3333333%; }
  .largest-three-sixths {
    width: 50%; }
  .largest-four-sixths {
    width: 66.6666666%; }
  .largest-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .largest-one-eighth {
    width: 12.5%; }
  .largest-two-eighths {
    width: 25%; }
  .largest-three-eighths {
    width: 37.5%; }
  .largest-four-eighths {
    width: 50%; }
  .largest-five-eighths {
    width: 62.5%; }
  .largest-six-eighths {
    width: 75%; }
  .largest-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .largest-one-ninth {
    width: 11.1111111%; }
  .largest-two-ninths {
    width: 22.2222222%; }
  .largest-four-ninths {
    width: 44.4444444%; }
  .largest-five-ninths {
    width: 55.5555555%; }
  .largest-seven-ninths {
    width: 77.7777777%; }
  .largest-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .largest-one-tenth {
    width: 10%; }
  .largest-two-tenths {
    width: 20%; }
  .largest-three-tenths {
    width: 30%; }
  .largest-four-tenths {
    width: 40%; }
  .largest-five-tenths {
    width: 50%; }
  .largest-six-tenths {
    width: 60%; }
  .largest-seven-tenths {
    width: 70%; }
  .largest-eight-tenths {
    width: 80%; }
  .largest-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .largest-one-twelfth {
    width: 8.3333333%; }
  .largest-two-twelfths {
    width: 16.6666666%; }
  .largest-three-twelfths {
    width: 25%; }
  .largest-four-twelfths {
    width: 33.3333333%; }
  .largest-five-twelfths {
    width: 41.6666666%; }
  .largest-six-twelfths {
    width: 50%; }
  .largest-seven-twelfths {
    width: 58.3333333%; }
  .largest-eight-twelfths {
    width: 66.6666666%; }
  .largest-nine-twelfths {
    width: 75%; }
  .largest-ten-twelfths {
    width: 83.3333333%; }
  .largest-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .largest-one-twentieth {
    width: 5%; }
  .largest-two-twentieths {
    width: 10%; }
  .largest-three-twentieths {
    width: 15%; }
  .largest-four-twentieths {
    width: 20%; }
  .largest-five-twentieths {
    width: 25%; }
  .largest-six-twentieths {
    width: 30%; }
  .largest-seven-twentieths {
    width: 35%; }
  .largest-eight-twentieths {
    width: 40%; }
  .largest-nine-twentieths {
    width: 45%; }
  .largest-ten-twentieths {
    width: 50%; }
  .largest-eleven-twentieths {
    width: 55%; }
  .largest-twelve-twentieths {
    width: 60%; }
  .largest-thirteen-twentieths {
    width: 65%; } }

@media (min-width: 96.875em) {
  /*
        Whole
        -----
    */
  .largester-one-whole {
    width: 100%; }
  /*
        Halves
        ------
    */
  .largester-one-half {
    width: 50%; }
  /*
        Thirds
        ------
    */
  .largester-one-third {
    width: 33.3333333%; }
  .largester-two-thirds {
    width: 66.6666666%; }
  /*
        Quarters
        --------
    */
  .largester-one-quarter {
    width: 25%; }
  .largester-two-quarters {
    width: 50%; }
  .largester-three-quarters {
    width: 75%; }
  /*
        Fifths
        ------
    */
  .largester-one-fifth {
    width: 20%; }
  .largester-two-fifths {
    width: 40%; }
  .largester-three-fifths {
    width: 60%; }
  .largester-four-fifths {
    width: 80%; }
  /*
        Sixths
        ------
    */
  .largester-one-sixth {
    width: 16.6666666%; }
  .largester-two-sixths {
    width: 33.3333333%; }
  .largester-three-sixths {
    width: 50%; }
  .largester-four-sixths {
    width: 66.6666666%; }
  .largester-five-sixths {
    width: 83.3333333%; }
  /*
        Eighths
        -------
    */
  .largester-one-eighth {
    width: 12.5%; }
  .largester-two-eighths {
    width: 25%; }
  .largester-three-eighths {
    width: 37.5%; }
  .largester-four-eighths {
    width: 50%; }
  .largester-five-eighths {
    width: 62.5%; }
  .largester-six-eighths {
    width: 75%; }
  .largester-seven-eighths {
    width: 87.5%; }
  /*
        Ninths
        ------
    */
  .largester-one-ninth {
    width: 11.1111111%; }
  .largester-two-ninths {
    width: 22.2222222%; }
  .largester-four-ninths {
    width: 44.4444444%; }
  .largester-five-ninths {
    width: 55.5555555%; }
  .largester-seven-ninths {
    width: 77.7777777%; }
  .largester-eight-ninths {
    width: 88.8888888%; }
  /*
        Tenths
        ------
    */
  .largester-one-tenth {
    width: 10%; }
  .largester-two-tenths {
    width: 20%; }
  .largester-three-tenths {
    width: 30%; }
  .largester-four-tenths {
    width: 40%; }
  .largester-five-tenths {
    width: 50%; }
  .largester-six-tenths {
    width: 60%; }
  .largester-seven-tenths {
    width: 70%; }
  .largester-eight-tenths {
    width: 80%; }
  .largester-nine-tenths {
    width: 90%; }
  /*
        Twelfths
        --------
    */
  .largester-one-twelfth {
    width: 8.3333333%; }
  .largester-two-twelfths {
    width: 16.6666666%; }
  .largester-three-twelfths {
    width: 25%; }
  .largester-four-twelfths {
    width: 33.3333333%; }
  .largester-five-twelfths {
    width: 41.6666666%; }
  .largester-six-twelfths {
    width: 50%; }
  .largester-seven-twelfths {
    width: 58.3333333%; }
  .largester-eight-twelfths {
    width: 66.6666666%; }
  .largester-nine-twelfths {
    width: 75%; }
  .largester-ten-twelfths {
    width: 83.3333333%; }
  .largester-eleven-twelfths {
    width: 91.6666666%; }
  /*
        Twentieth
        --------
    */
  .largester-one-twentieth {
    width: 5%; }
  .largester-two-twentieths {
    width: 10%; }
  .largester-three-twentieths {
    width: 15%; }
  .largester-four-twentieths {
    width: 20%; }
  .largester-five-twentieths {
    width: 25%; }
  .largester-six-twentieths {
    width: 30%; }
  .largester-seven-twentieths {
    width: 35%; }
  .largester-eight-twentieths {
    width: 40%; }
  .largester-nine-twentieths {
    width: 45%; }
  .largester-ten-twentieths {
    width: 50%; }
  .largester-eleven-twentieths {
    width: 55%; }
  .largester-twelve-twentieths {
    width: 60%; }
  .largester-thirteen-twentieths {
    width: 65%; } }

/*  ==========================================================================
    Helpers:Layout
    ========================================================================== */
/*
    Contain floats
    --------------

    Make an element expand to contain floated children.
    Uses pseudo-elements (micro clearfix).

    1. The space content is one way to avoid an Opera bug when the
        `contenteditable` attribute is included anywhere else in the document.
        Otherwise it causes space to appear at the top and bottom of the
        element.
    2. The use of `table` rather than `block` is only necessary if using
        `:before` to contain the top-margins of child elements.
 */
.cf:before, #main:before, .cf:after, #main:after,
.group:before,
.group:after {
  content: "";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after, #main:after,
.group:after {
  clear: both; }

/*
    Floats
*/
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

/*  ==========================================================================
    Helpers:Rendering
    ========================================================================== */
.will-change {
  /*
        Promote item to it's own layer

        http://aerotwist.com/blog/on-translate3d-and-layer-creation-hacks/

        at some point change this to the new property will-change
        http://aerotwist.com/blog/bye-bye-layer-hacks/
    */
  transform: translateZ(0); }

/*  ==========================================================================
    Generic:Helpers:Spacing
    ========================================================================== */
/*
    add/remove margins
    ------------------
*/
.push {
  margin: 1.66667em !important; }

.push--top {
  margin-top: 1.66667em !important; }

.push--right {
  margin-right: 1.66667em !important; }

.push--bottom {
  margin-bottom: 1.66667em !important; }

.push--left {
  margin-left: 1.66667em !important; }

.push--ends {
  margin-top: 1.66667em !important;
  margin-bottom: 1.66667em !important; }

.push--sides {
  margin-right: 1.66667em !important;
  margin-left: 1.66667em !important; }

.push-half {
  margin: 0.83333em !important; }

.push-half--top {
  margin-top: 0.83333em !important; }

.push-half--right {
  margin-right: 0.83333em !important; }

.push-half--bottom {
  margin-bottom: 0.83333em !important; }

.push-half--left {
  margin-left: 0.83333em !important; }

.push-half--ends {
  margin-top: 0.83333em !important;
  margin-bottom: 0.83333em !important; }

.push-half--sides {
  margin-right: 0.83333em !important;
  margin-left: 0.83333em !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/*
    remove paddings
    ---------------
    I don't find myself wanting to add padding via a helper class so i only have classes for removing
*/
.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/* ==========================================================================
   Helpers:State
   ========================================================================== */
/*
    Indicate that interaction will result in an (in)action.
*/
.is-actionable {
  cursor: pointer !important; }

.is-disabled {
  cursor: default !important; }

.is-draggable {
  cursor: move !important; }

/*
    Completely remove from the flow and screen readers.
*/
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/*
    Completely remove from the flow but leave available to screen readers.
*/
.is-hidden-visually {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/*
    Control visibility without affecting flow.
*/
.is-invisible {
  visibility: hidden !important; }

.is-visible {
  visibility: visible !important; }

/*  ==========================================================================
    Generic:Helpers:Text
    ========================================================================== */
/*
    Text alignment
*/
.text--left {
  text-align: left  !important; }

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

.text--right {
  text-align: right !important; }

/*
    Apply capital case to an element (usually a `strong`).
*/
.caps {
  text-transform: uppercase !important; }

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

.weight--bold {
  font-weight: bold !important; }

/*
    Text truncation

    Prevent text from wrapping onto multiple lines, and truncate with an
    ellipsis.

    1.  Ensure that the node has a maximum width after which truncation can
        occur.
    2.  Fix for IE 8/9 if `word-wrap: break-word` is in effect on ancestor
        nodes.
*/
.text--truncate {
  max-width: 100%;
  /* 1 */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  /* 2 */ }

/*
    font sizes
*/
.alpha {
  font-size: 2.22222em; }

.beta {
  font-size: 1.66667em; }

.gamma {
  font-size: 1.44444em; }

.delta {
  font-size: 1.22222em; }

.epsilon {
  font-size: 1em; }

.zeta {
  font-size: 0.88889em; }

/* 9 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 24px 26px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff; }

.hamburger-box {
  width: 27px;
  height: 19px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 27px;
    height: 3px;
    background-color: #fff;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 54px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 54px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 54px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 54px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 54px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 54px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5.4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5.4px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5.4px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5.4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5.4px, -6.75px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5.4px, 6.75px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5.4px, -6.75px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5.4px, 6.75px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -54px;
      top: -54px;
      transform: translate3d(54px, 54px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -54px;
      top: -54px;
      transform: translate3d(-54px, 54px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -54px;
      top: 54px;
      transform: translate3d(54px, -54px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -54px;
      top: 54px;
      transform: translate3d(-54px, -54px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-3.85714px, -5px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(3.85714px, -5px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* 10 */
