@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
    ------
*/
/*
    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
 */
/* 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: Arial, sans-serif !important;
}

/*
    1. Remove default margin. - Normalize:v2.1.0
*/
body {
  color: #3c3c3c;
  margin: 0;
  font-family: Arial, 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: proxima-nova, sans-serif !important;
  font-weight: 600;
  font-style: normal !important;
  color: #3c3c3c;
}

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: #F59D24;
  background: transparent;
  /* 1 */
}
a:hover, a:focus {
  color: #ab6608;
}

/*  ==========================================================================
    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 */
}

/*  ==========================================================================
    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: "“" "”" "‘" "’";
  /* 1 */
}

/*
    1. Address inconsistent and variable font size in all browsers. - Normalize:v3.0.1
*/
small {
  font-size: 0.5555555556em;
  /* 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: Arial, 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: proxima-nova, sans-serif !important;
  font-weight: 600;
  font-style: normal !important;
}

.wp-block-buttons .wp-block-button .wp-block-button__link {
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: none;
  padding: 12px 25px;
  font-weight: 800 !important;
  font-style: italic !important;
}
input[type=submit] {
  background: linear-gradient(10deg, #D51317, #F59D24) !important;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: italic !important;
  font-size: 14px !important;
  width: 108px !important;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  margin: 10px 0px;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}
input[type=submit]:hover {
  background-color: #D85C01 !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;
}

#gform_wrapper_3 {
  text-align: left;
}
#gform_wrapper_3 * {
  box-sizing: border-box !important;
}
#gform_wrapper_3 .gf_progressbar_title {
  color: #767676;
  font-size: 13px;
  line-height: 1 !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  clear: both;
  opacity: 0.6;
  font-weight: 400;
  border: none;
  background: 0 0;
  letter-spacing: -0.0415625em;
  text-align: left;
}
#gform_wrapper_3 .gf_progressbar_percentage {
  height: 21px;
  text-align: right;
  border-radius: 10.5px;
  vertical-align: middle;
  font-family: helvetica, arial, sans-serif;
  font-size: 13px !important;
  z-index: 999;
}
#gform_wrapper_3 .gsection_title {
  font-weight: 700;
  font-size: 1.25em;
  margin: 0 !important;
  margin-top: 10px !important;
  padding: 0 !important;
  letter-spacing: normal !important;
  border: none;
  background: 0 0;
}
#gform_wrapper_3 .gfield_label {
  font-weight: 700;
  font-size: 21px;
}
#gform_wrapper_3 #gform_submit_button_3 {
  padding: 0.7em 1.44em;
  height: auto;
  font-size: 16px !important;
}

#gform_wrapper_7 h3.gsection_title {
  display: block;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  text-align: inherit;
  line-height: 1.25;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-style: normal !important;
  color: #3c3c3c;
  font-family: proxima-nova, sans-serif !important;
  background: none;
  border: none;
  letter-spacing: normal !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.25em;
  font-weight: 700;
}

/*  ==========================================================================
    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 */
}

.pricetable_v1 table {
  border: 3px solid black;
  color: black;
  font-weight: bolder;
}
.pricetable_v1 table tr:first-of-type td {
  font-weight: 900;
  background-color: #f6c142;
}
.pricetable_v1 table td {
  border: 2px solid black;
}
.pricetable_v1 table td:nth-child(2n) {
  background-color: #bfbfbf;
}
.pricetable_v1 table td:nth-child(2n+1) {
  background-color: #f2f2f2;
}
.pricetable_v1 table td:first-child {
  font-weight: 900;
  background-color: #ec534c;
}
.pricetable_v1 table tr:nth-child(1) td:nth-child(1) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(2) td:nth-child(2) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(3) td:nth-child(3) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(4) td:nth-child(4) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(5) td:nth-child(5) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(6) td:nth-child(6) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(7) td:nth-child(7) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(8) td:nth-child(8) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(9) td:nth-child(9) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(10) td:nth-child(10) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(11) td:nth-child(11) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(12) td:nth-child(12) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(13) td:nth-child(13) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(14) td:nth-child(14) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(15) td:nth-child(15) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(16) td:nth-child(16) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(17) td:nth-child(17) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(18) td:nth-child(18) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(19) td:nth-child(19) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(20) td:nth-child(20) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(21) td:nth-child(21) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(22) td:nth-child(22) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(23) td:nth-child(23) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(24) td:nth-child(24) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(25) td:nth-child(25) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(26) td:nth-child(26) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(27) td:nth-child(27) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(28) td:nth-child(28) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(29) td:nth-child(29) {
  background-color: #808080;
}
.pricetable_v1 table tr:nth-child(30) td:nth-child(30) {
  background-color: #808080;
}
.pricetable_v1.orange table tr:first-of-type td {
  background-color: #f59c00;
}
.pricetable_v1.orange table td:first-child {
  background-color: #f59c00;
}
.pricetable_v1.orange table tr:nth-child(1) td:nth-child(1) {
  background-color: #808080;
}
.pricetable_v1.red table tr:first-of-type td {
  background-color: #d41217;
}
.pricetable_v1.red table td:first-child {
  background-color: #d41217;
}
.pricetable_v1.red table tr:nth-child(1) td:nth-child(1) {
  background-color: #808080;
}
.pricetable_v1.blue table tr:first-of-type td {
  background-color: #273582;
}
.pricetable_v1.blue table td:first-child {
  background-color: #273582;
}
.pricetable_v1.blue table tr:nth-child(1) td:nth-child(1) {
  background-color: #808080;
}

.pricetable_v2 table {
  border: unset;
  color: black;
  font-weight: bolder;
}
.pricetable_v2 table tr:first-of-type td {
  font-weight: 900;
  border-bottom: 4px solid black;
}
.pricetable_v2 table tr:nth-child(2n) {
  background-color: #f6c142;
}
.pricetable_v2 table tr:nth-child(2n+1) {
  background-color: #ec534c;
}
.pricetable_v2 table td {
  border: unset;
}
.pricetable_v2 table td:first-child {
  font-weight: 900;
  border-right: 3px solid black;
}
.pricetable_v2 table tr:nth-child(1) td:nth-child(1) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(2) td:nth-child(2) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(3) td:nth-child(3) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(4) td:nth-child(4) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(5) td:nth-child(5) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(6) td:nth-child(6) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(7) td:nth-child(7) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(8) td:nth-child(8) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(9) td:nth-child(9) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(10) td:nth-child(10) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(11) td:nth-child(11) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(12) td:nth-child(12) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(13) td:nth-child(13) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(14) td:nth-child(14) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(15) td:nth-child(15) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(16) td:nth-child(16) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(17) td:nth-child(17) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(18) td:nth-child(18) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(19) td:nth-child(19) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(20) td:nth-child(20) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(21) td:nth-child(21) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(22) td:nth-child(22) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(23) td:nth-child(23) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(24) td:nth-child(24) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(25) td:nth-child(25) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(26) td:nth-child(26) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(27) td:nth-child(27) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(28) td:nth-child(28) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(29) td:nth-child(29) {
  background-color: #a6a6a6;
}
.pricetable_v2 table tr:nth-child(30) td:nth-child(30) {
  background-color: #a6a6a6;
}

/*  ==========================================================================
    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-button__link,
.wp-block-file .wp-block-file__button,
input[type=button],
input[type=reset],
input[type=submit] {
  background: #453e43;
}

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

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

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

/* 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.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

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

.fa-sm {
  font-size: 0.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: 0.1em;
  padding: 0.2em 0.25em 0.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: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.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.6666666667em;
}

/*
    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.6666666667em;
}

/*
    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.6666666667em;
}

/*
    Reversed image location (right instead of left).
*/
.media__img--rev {
  float: right;
  margin-left: 1.6666666667em;
}

.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: 600px !important;
}
.mega-three-columns-menu > ul > li > ul {
  width: 560px !important;
}
.mega-three-columns-menu > ul > li > ul li {
  padding: 0 !important;
  max-width: 93% !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;
}
.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);
  }
}

#site-header .hamburger {
  position: absolute;
  top: 0;
  left: 0;
}
#site-header .hamburger.hamburger--elastic {
  padding-top: 30px;
}
#site-header .hamburger.hamburger--search {
  left: auto;
  right: 0;
}
#site-header .hamburger.hamburger--search svg {
  fill: #F59D24;
}
#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: #F59D24;
  height: 5px;
}
@media (min-width: 48em) {
  #site-header .hamburger {
    display: none;
  }
}
#site-header .site-title a {
  color: #fff;
}
#site-header .site-logo {
  margin: 0 auto;
  width: 70%;
}
@media (min-width: 48em) {
  #site-header .site-logo {
    width: inherit;
  }
}
@media (min-width: 80em) {
  #site-header .site-logo {
    margin: 0;
  }
}
#site-header .site-logo img {
  max-height: 6rem;
}
#site-header .header-top {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding: 25px 0 12px;
}
@media (min-width: 48em) {
  #site-header .header-top {
    padding: 17px 0 12px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 120rem;
  }
}
#site-header .header-top > div {
  width: auto;
}
#site-header .header-top > div.search {
  padding: 0 31px;
  display: none;
}
#site-header .header-top > div.search .asp_w_container {
  width: 100%;
}
@media (min-width: 48em) {
  #site-header .header-top > div.search {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
@media (min-width: 80em) {
  #site-header .header-top > div.search {
    width: 30%;
  }
}
#site-header .header-top > div.header-links {
  display: none;
}
@media (min-width: 48em) {
  #site-header .header-top > div.header-links {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
  }
}
@media (min-width: 80em) {
  #site-header .header-top > div.header-links {
    justify-content: flex-end;
    width: auto;
  }
}
#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: 40px;
}
#site-header .header-top > div.header-links li a {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #3c3c3c;
  text-decoration: none;
  padding: 0;
}
@media (min-width: 48em) {
  #site-header .header-top > div.header-links li a {
    font-family: Arial, sans-serif;
    font-size: 15px;
  }
}
@media (min-width: 80em) {
  #site-header .header-top > div.header-links li a {
    font-size: 15px;
  }
}
#site-header .header-top > div.header-links li a:before {
  display: none;
}
#site-header .header-top > div.header-links li.log_in_link a::after {
  content: "";
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/Icon_user_solid.svg") no-repeat center;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  left: 5px;
  top: 6px;
}
#site-header .header-top > div.header-links li.faq a {
  padding: 10px 15px;
  border-radius: 5px;
  background: linear-gradient(10deg, #D51317, #F59D24);
  color: white;
}
#site-header .header-inner {
  display: block;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
#site-header .header-inner .header-titles-wrapper {
  margin: 0;
  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;
  }
}
@media (min-width: 48em) {
  #site-header .header-navigation-wrapper .primary-menu-wrapper {
    display: block;
    width: 100%;
  }
}

header.entry-header {
  display: none;
}

.search-modal-inner {
  padding: 10px 20px;
}
.search-modal-inner .asp_w_container {
  width: 100%;
}

.top-sub-menu {
  margin: 0 auto;
  max-width: 800px;
  padding: 12px 0 !important;
  display: none;
}
@media (min-width: 48em) {
  .top-sub-menu {
    display: flex;
  }
}
.top-sub-menu .wp-block-column {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (min-width: 48em) {
  .top-sub-menu .wp-block-column:last-of-type {
    display: none;
  }
}
@media (min-width: 80em) {
  .top-sub-menu .wp-block-column:last-of-type {
    display: block;
  }
}
.top-sub-menu .wp-block-column .wp-block-media-text {
  margin: 0 auto;
  width: fit-content;
  grid-template-columns: 19px 1fr;
}
@media (min-width: 80em) {
  .top-sub-menu .wp-block-column .wp-block-media-text {
    width: 100%;
  }
}
.top-sub-menu .wp-block-column .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 10px;
}
.top-sub-menu .wp-block-column .wp-block-media-text .wp-block-media-text__content p {
  font-size: 13px;
}

#site-footer {
  color: #fff;
  border: none;
  padding: 20px 0;
  text-align: center;
  background-color: #3c3c3c;
  margin-top: 80px;
}
@media (min-width: 80em) {
  #site-footer {
    padding: 40px;
    text-align: left;
  }
}
#site-footer .footer-row.section-inner {
  display: block;
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner {
    max-width: 1280px;
  }
}
#site-footer .footer-row.section-inner:first-of-type {
  display: flex;
  flex-direction: column;
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner:first-of-type {
    flex-direction: row;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper {
  padding: 0;
  border-bottom: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper {
    flex-direction: row;
    margin: auto;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper {
    padding: 0 20px;
    width: 50%;
    margin-top: 0;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper {
  width: 100%;
  margin-left: 0;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper {
    margin-top: 40px;
  }
}
@media (min-width: 65.625em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper {
    margin-top: 0;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 0 15px;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget {
    padding: 0;
  }
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget:nth-child(n+2) {
    margin-left: 53px;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .widget-title {
  text-transform: uppercase;
  font-size: 15px;
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.25;
  display: block;
  padding-bottom: 15px;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .widget-title {
    text-align: left;
    margin-bottom: 0.6em;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap {
  overflow: hidden;
  transition: all 0.5s;
  border-bottom: 1px solid #585858;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap {
    border-bottom: none;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap.active {
  height: auto !important;
  padding-left: 20px;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap ul {
    display: flex !important;
    flex-direction: column;
  }
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap ul .mega-menu-item {
    vertical-align: unset !important;
    max-width: 85% !important;
  }
}
#site-footer .footer-row.section-inner .footer-widgets-wrapper .column-wrapper .widget .mega-menu-wrap ul .mega-menu-item a {
  padding: 0 !important;
  height: unset !important;
}
#site-footer .footer-row.section-inner .footer-right {
  width: 100%;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-right {
    margin: auto;
    margin-top: 50px;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right {
    width: 40%;
    margin-top: 0;
  }
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper {
  padding: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper {
    margin-top: 0;
  }
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_heading {
  margin-bottom: 16px;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_heading .gform_title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-style: italic !important;
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_heading .gform_title {
    text-align: left;
    margin-top: 0;
  }
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body {
    width: auto;
    display: block;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body {
    display: inline-block;
  }
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body ul {
  list-style: none;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body ul li {
  margin-top: 0;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body ul li .gfield_label {
  display: none;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body ul li input {
  width: 280px;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  margin: 0 auto auto;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_body ul li:first-child {
  margin-bottom: 10px;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_footer {
  padding: 0;
  width: auto;
  margin-top: 30px;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_footer {
    display: block;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_footer {
    margin-top: 0;
    display: inline-block;
  }
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .gform_wrapper .gform_footer input {
  display: block;
  margin: auto;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .widget.widget_a2a_follow_widget {
  width: 100%;
  text-align: center;
}
#site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .widget.widget_a2a_follow_widget svg g, #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .widget.widget_a2a_follow_widget svg path {
  fill: #ffffff !important;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .widget.widget_a2a_follow_widget {
    width: auto;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner .footer-right .newsletter-wrapper .widget.widget_a2a_follow_widget {
    width: auto;
    text-align: left;
  }
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner:last-of-type {
    margin-top: 50px;
  }
}
@media (min-width: 80em) {
  #site-footer .footer-row.section-inner:last-of-type {
    margin-top: 125px;
  }
}
#site-footer .footer-row.section-inner:last-of-type .row-wrapper {
  text-align: center;
}
#site-footer .footer-row.section-inner:last-of-type .row-wrapper a {
  color: #959595;
}
#site-footer .footer-row.section-inner:last-of-type .row-wrapper a:hover {
  text-decoration: none;
}
#site-footer .footer-row.section-inner:last-of-type .row-wrapper:first-of-type {
  display: none;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner:last-of-type .row-wrapper:first-of-type {
    display: block;
  }
}
#site-footer .footer-row.section-inner:last-of-type .row-wrapper:last-of-type {
  margin: auto;
  margin-top: 17px;
  color: #959595;
  font-family: Arial, sans-serif;
  font-size: 11px;
  width: 60vw;
}
@media (min-width: 48em) {
  #site-footer .footer-row.section-inner:last-of-type .row-wrapper:last-of-type {
    width: 100%;
  }
}

.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: rgb(10, 56, 102) !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: rgb(10, 56, 102);
}

.wm_casestudies p.tw-heading-style {
  font-size: 30px !important;
  font-family: "poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: -1.24688px;
  color: rgb(10, 56, 102) !important;
}

.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;
}

html {
  overflow-x: hidden;
}

.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;
  }
}

.is-type-video {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0 !important;
}
@media (min-width: 80em) {
  .is-type-video {
    width: 1280px;
    height: 400px;
    max-width: unset;
  }
}
.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: #D85C01;
}

.has-theme-orange-color {
  color: #FD8D25;
}

.has-theme-dark-orange-background-color {
  background-color: #D85C01;
}

.has-theme-dark-orange-color {
  color: #D85C01;
}

.has-theme-alice-blue-background-color {
  background-color: #F8F9FA;
}

.has-theme-alice-blue-color {
  color: #F8F9FA;
}

.has-theme-brand-blue-background-color {
  background-color: #F59D24;
  color: #fff;
}

a.has-theme-brand-blue-background-color:hover {
  background-color: #ab6608;
}

.has-theme-brand-blue-color {
  color: #F59D24;
}

.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: #3c3c3c;
}

.header-navigation-wrapper {
  display: block;
  width: 100%;
  background-color: rgb(240, 238, 236);
}
.header-navigation-wrapper .bg-wrapper {
  margin: 0 auto;
  max-width: 800px;
}
@media (min-width: 48em) {
  .header-navigation-wrapper .bg-wrapper {
    max-width: 100%;
  }
}
@media (min-width: 80em) {
  .header-navigation-wrapper .bg-wrapper {
    max-width: 120rem;
  }
}
.header-navigation-wrapper ul.primary-menu {
  display: block;
  margin: 0;
}

#mega-menu-wrap-primary #mega-menu-primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  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 {
  height: 44px;
  margin: 5px 0;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 800 !important;
}
@media (min-width: 80em) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    transform: skew(10deg) !important;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:first-of-type, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:last-of-type {
  padding: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
  font-weight: 800;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link {
  font-weight: 800 !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 {
  color: #F59D24;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.book-a-demo > a.mega-menu-link {
  background-color: #FD8D25;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  width: 155px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 30px;
  margin: 10px 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.book-a-demo > a.mega-menu-link:hover {
  background-color: #D85C01;
  color: #fff !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: #F59D24;
    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.mega-toggle-on > ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid.mega-toggle-on > ul.mega-sub-menu {
  position: absolute;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout .mega-menu-row > .mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid .mega-menu-row > .mega-sub-menu {
  display: flex !important;
  justify-content: space-around;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout .mega-menu-row > .mega-sub-menu > li,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid .mega-menu-row > .mega-sub-menu > li {
  float: none !important;
}
#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: 100vw;
  padding: 20px;
  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);
}
@media (min-width: 80em) {
  #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 {
    transform: skew(10deg) !important;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li {
  padding: 0 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li a,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li a {
  text-align: left !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-row,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li.mega-menu-row {
  position: relative;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-row > ul.mega-sub-menu > li,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu li.mega-menu-row > ul.mega-sub-menu > li {
  max-width: 20%;
}
#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: #3c3c3c !important;
}
#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: #F59D24 !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu .mega-menu-column:first-of-type,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-grid > ul.mega-sub-menu .mega-menu-column:first-of-type {
  padding-right: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  border-left: none !important;
  box-shadow: none;
  flex-grow: 2;
}
@media (min-width: 80em) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:not(:last-of-type) {
    border-right: 3px solid white;
  }
}
@media (min-width: 80em) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    transform: skew(-10deg);
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
  color: #F59D24 !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item a {
  text-align: center !important;
}
@media (min-width: 80em) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:first-of-type > a {
    text-align: left !important;
  }
}
@media (min-width: 80em) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:last-of-type > a {
    text-align: right !important;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(1) > .mega-sub-menu > .mega-menu-row.mega-sub_5 > .mega-sub-menu > .mega-menu-column > .mega-sub-menu > .mega-menu-item:first-of-type > .mega-sub-menu > .mega-menu-item {
  padding-left: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:nth-child(2) > .mega-sub-menu > .mega-menu-row.mega-sub_5 > .mega-sub-menu > .mega-menu-column > .mega-sub-menu > .mega-menu-item:first-of-type > .mega-menu-link {
  font-weight: bold !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  margin-bottom: 5px;
}

#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: 80em) {
  .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: #3c3c3c;
}
@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: 80em) {
  .blog-content-area main {
    width: 1275px;
  }
}
.blog-content-area main .top-mobile-section {
  text-align: center;
}
@media (min-width: 80em) {
  .blog-content-area main .top-mobile-section {
    display: none;
  }
}
.blog-content-area main .top-mobile-section .title {
  display: block;
  margin-top: 0;
  font-size: 26px;
  margin-bottom: 13px;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 800;
}
.blog-content-area main .left-column {
  width: 100%;
}
@media (min-width: 48em) {
  .blog-content-area main .left-column {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column {
    display: block;
    width: 25%;
    margin-right: 50px;
    float: left;
  }
}
@media (min-width: 48em) {
  .blog-content-area main .left-column .woocommerce-breadcrumb.mobile {
    display: none;
  }
}
.blog-content-area main .left-column .search {
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .blog-content-area main .left-column .search {
    flex-grow: 1;
    max-width: calc((100vw - 80px) * 0.3);
    margin-bottom: 0;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .search {
    max-width: unset;
    margin-bottom: 30px;
  }
}
@media (min-width: 48em) {
  .blog-content-area main .left-column .filters-wrapper {
    display: flex;
    flex-direction: row;
    flex-grow: 2;
    justify-content: space-between;
    max-width: calc((100vw - 80px) * 0.67);
    align-items: center;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper {
    display: block;
    padding: 18px 24px;
    background-color: #F7F6F4;
    border-radius: 15px;
  }
}
.blog-content-area main .left-column .filters-wrapper .main-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  display: none;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .main-title {
    display: block;
  }
}
@media (min-width: 48em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section {
    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 {
    width: calc(50% - 25px);
    margin-bottom: 0;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block {
    width: 100%;
    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) .category-title {
    margin-top: 15px;
  }
}
@media (min-width: 48em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block:nth-child(n+3) {
    display: block;
  }
}
.blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block .category-title {
  font-size: 15px;
  display: block;
  text-transform: unset;
  font-weight: bold;
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block .category-title {
    margin-top: 20px;
  }
}
.blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block .category-title:after {
  content: "";
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-orange.svg");
  width: 16px;
  height: 10px;
  margin-top: 5px;
  background-size: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  float: right;
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block .category-title:after {
    display: none;
  }
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block .category-title {
    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: 80em) {
  .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: #E8A143;
  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 .category-title {
  margin-bottom: 18px;
}
.blog-content-area main .left-column .filters-wrapper .category-filter-section .category-block.active .category-title: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: 80em) {
  .blog-content-area main .left-column .side-wrapper {
    margin: 0;
  }
}
.blog-content-area main .left-column .side-wrapper .main_title {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  display: block;
}
.blog-content-area main .left-column .side-wrapper .main_title:after {
  content: "";
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/down-orange.svg");
  width: 16px;
  height: 10px;
  margin-top: 5px;
  background-size: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  float: right;
}
@media (min-width: 80em) {
  .blog-content-area main .left-column .side-wrapper .main_title:after {
    display: none;
  }
}
.blog-content-area main .left-column .side-wrapper ul {
  margin: 20px 0 0;
  list-style: none;
  display: none;
}
@media (min-width: 80em) {
  .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;
  color: #3c3c3c;
}
.blog-content-area main .left-column .side-wrapper ul li a:after {
  content: "";
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/blog_contents_arrow_right.svg");
  width: 21px;
  height: 21px;
  background-size: 21px;
  display: inline-block;
  background-repeat: no-repeat;
  float: right;
}
.blog-content-area main .left-column .side-wrapper.active .main_title:after {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/up-orange.svg");
  background-size: 16px;
  background-repeat: no-repeat;
}
.blog-content-area main .left-column .side-wrapper.active ul {
  display: block;
}
@media (min-width: 80em) {
  .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: proxima-nova, sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #3c3c3c;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.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;
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: uppercase;
}
.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: #F59D24;
  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 .a2a_kit {
  display: flex;
  width: 150px;
  justify-content: space-between;
}
.blog-content-area main .main-column .blog-content .addtoany_shortcode a {
  border: 2px solid #E8A143;
  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 .wp-block-group,
.blog-content-area main .main-column .blog-content .alignfull {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-content-area main .main-column .blog-content .fullwidth {
  width: calc(100% - 62px);
  margin: auto;
}
@media (min-width: 80em) {
  .blog-content-area main .main-column .blog-content .fullwidth {
    width: 1275px;
    position: relative;
    left: calc(-1275px + 100%);
  }
}
.blog-content-area main .main-column .top-section {
  display: none;
}
@media (min-width: 80em) {
  .blog-content-area main .main-column .top-section {
    display: block;
  }
}
.blog-content-area main .main-column .top-section .title {
  display: block;
  margin-top: 0;
  font-size: 26px;
  margin-bottom: 13px;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 800;
}
.blog-content-area main .main-column .top-section p {
  font-size: 16px;
  margin-bottom: 45px;
}
@media (min-width: 48em) {
  .blog-content-area main .main-column .blog-wrapper-section {
    margin-top: 20px;
  }
}
.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: #F7F6F4;
}
@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 {
    height: 315px;
    width: 216px;
  }
}
@media (min-width: 80em) {
  .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 .title {
  display: block;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 19px;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 800;
}
.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: unset;
  margin-top: 37px;
  font-size: 15px;
  padding: 7px 18px;
  border-radius: 5px;
  width: fit-content;
  font-weight: 800;
  position: initial;
  display: block;
}
.blog-content-area main .main-column .pagination-wrapper {
  display: flex;
  justify-content: space-between;
  height: 38px;
  margin: 30px auto auto;
  align-items: center;
}
@media (min-width: 48em) {
  .blog-content-area main .main-column .pagination-wrapper {
    width: 310px;
  }
}
.blog-content-area main .main-column .pagination-wrapper .arrow-box {
  width: 38px;
  height: 38px;
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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: 38px;
  height: 100%;
  margin: 0 auto;
}
.blog-content-area main .main-column .pagination-wrapper .middle-wrapper select {
  margin: 0 10px;
  padding: 5px 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: 13px;
  -webkit-appearance: none;
  width: 50px;
  border-radius: 5px;
  border: unset;
  background-color: #F7F6F4;
}

body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .section-heading {
  text-align: center;
}
@media (min-width: 80em) {
  body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .section-heading {
    text-align: left;
  }
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-prev {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/gallery_arrow_left.svg") no-repeat center;
  border-radius: 20px;
  width: 38px;
  height: 38px;
  left: 0;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-prev:before {
  display: none;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-next {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/gallery_arrow_right.svg") no-repeat center;
  border-radius: 20px;
  width: 38px;
  height: 38px;
  right: 0;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-next:before {
  display: none;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-arrow {
  top: -6.5%;
}
@media (min-width: 48em) {
  body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-arrow {
    display: none;
    top: -9%;
  }
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slick-slide .article-row-wrapper {
  margin-bottom: 0;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slideMe {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slideMe {
    margin-top: 25px;
  }
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slideMe .article-row-wrapper {
  background-color: transparent;
  max-width: unset !important;
}
body.post-template-template-blog-content .blog-content-area #site-content .main-column .blog-content .row-articles-wrapper .slideMe .article-row-wrapper .inner-wrapper {
  background-color: #F0EEEC;
  border-radius: 8px;
  overflow: hidden;
  width: calc(100% - 15px);
}

.side-areas {
  display: none;
}
@media (min-width: 80em) {
  .side-areas {
    display: block;
  }
}
.side-areas.mobile {
  display: block;
}
@media (min-width: 80em) {
  .side-areas.mobile {
    display: none;
  }
}
.side-areas.mobile .main_title {
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 19px;
  margin-top: 20px;
}
.side-areas.mobile .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.side-areas.mobile .content-wrapper a {
  width: 48%;
}
.side-areas.mobile .content-wrapper a .area {
  height: 124px;
}
@media (min-width: 48em) {
  .side-areas.mobile .content-wrapper a .area {
    height: 200px;
  }
}
.side-areas.mobile .content-wrapper a .area .title_wrapper {
  text-transform: capitalize;
}
.side-areas .main_title {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 30px;
  display: block;
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: italic;
}
.side-areas .area {
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
}
.side-areas .area .bkg_wrapper {
  background: linear-gradient(transparent 50%, #3C3C3C);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.side-areas .area .bkg_wrapper .title_wrapper {
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bolder;
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-transform: capitalize;
}
.side-areas .area .bkg_wrapper .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;
}

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: 32px;
  margin-bottom: 53px;
  max-width: 1280px;
  padding: 0 16px;
  position: absolute;
  z-index: 1;
  color: white;
  font-family: Arial, sans-serif;
}
@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 .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: 26px;
  text-align: center;
  margin: 3.5rem 0 2rem;
  display: block;
  font-family: proxima-nova, sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
  text-transform: uppercase;
}
.faqs-section .wp-block-columns .wp-block-column ul.faqs-ul {
  margin: 0;
  padding: 0;
  color: #3c3c3c;
  list-style: none;
}
.faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers {
  max-height: 0;
  opacity: 0;
  font-size: 14px;
  font-weight: normal;
  padding: 20px 0 0 0;
  font-family: Arial, sans-serif;
  font-style: normal;
  transition: max-height 2s ease-in-out, opacity 2s ease-in-out;
}
.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: 16px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}
.faqs-section .wp-block-columns .wp-block-column ul.faqs-ul .faq-answers.active {
  max-height: 100vh;
  opacity: 1;
}
.faqs-section .wp-block-columns .wp-block-column ul.faqs-ul li {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  padding: 20px 0px;
  border-bottom: 1px solid #E0E0E0;
  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");
  transition: height 1s ease-in-out;
}
.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;
}
@media (min-width: 48em) {
  .trusted-slider .wp-block-columns .wp-block-column:first-child,
.our-credentials .wp-block-columns .wp-block-column:first-child {
    margin-bottom: 32px;
  }
}
.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;
  }
}

.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: Arial, sans-serif;
}
.entry-content > .wp-block-group {
  margin-top: 0 !important;
  margin-bottom: 0px;
}
@media (min-width: 48em) {
  .entry-content > .wp-block-group {
    margin-top: 0 !important;
    margin-bottom: 0px;
  }
}
@media (min-width: 1312px) {
  .entry-content > .wp-block-group:not(.banner) {
    padding-left: 0;
    padding-right: 0;
  }
}
.entry-content p, .entry-content li {
  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,
.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),
.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,
.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,
.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,
.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,
.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,
.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,
.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,
.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;
  }
}

.contact-us-page .gform_wrapper .gform_footer .gform_button {
  background: #FD8D25;
  border: 2px solid #FD8D25;
  padding: 8px 62px;
  width: auto !important;
}

.gform_previous_button, .gform_next_button {
  background: linear-gradient(10deg, #D51317, #F59D24) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  font-style: italic !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}

.form-popup-wrap {
  display: none;
  margin: 22px;
}
.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: proxima-nova, 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: #fef4e7;
  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;
  width: calc(100% - 44px);
  max-height: calc(100vh - 44px);
  overflow-y: scroll;
  z-index: 9999;
}
.form-popup-wrap.active .form-popup {
  max-width: 350px;
  border-radius: 5px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  position: relative;
  height: fit-content;
}
.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;
}

.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: rgba(6, 28, 50, 0.4862745098);
  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: #F59D24;
}

.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: #F59D24;
  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: #F59D24;
  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;
}

.entry-content .h1,
.entry-content .h2,
.entry-content .h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: proxima-nova, sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  color: #3c3c3c;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
  text-transform: uppercase;
}
.entry-content .h1 {
  font-size: 26px;
}
.entry-content .h2 {
  font-size: 22px;
}
.entry-content .h3 {
  font-size: 18px;
}
@media (min-width: 48em) {
  .entry-content > .alignwide.wp-block-columns:not(.wp-block-group.has-background) {
    margin-bottom: 80px;
  }
}
.entry-content .title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: proxima-nova, sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  color: #3c3c3c;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
}

.entry-content::after {
  display: none !important;
}

@media (min-width: 48em) {
  .entry-content .wp-block-columns.alignwide:not(.pins-row) {
    flex-direction: column;
  }
}
@media (min-width: 80em) {
  .entry-content .wp-block-columns.alignwide:not(.pins-row) {
    flex-direction: row;
  }
}
.entry-content .wp-block-columns.alignwide:not(.pins-row) .column_figure {
  border-radius: 10px;
  overflow: hidden;
}
.entry-content .wp-block-columns.alignwide:not(.pins-row) .wp-block-column:nth-child(2) {
  margin-top: 30px;
}
@media (min-width: 80em) {
  .entry-content .wp-block-columns.alignwide:not(.pins-row) .wp-block-column:nth-child(2) {
    margin-top: 0;
  }
}
@media (min-width: 48em) {
  .entry-content .wp-block-columns.alignwide:not(.pins-row) .column_content {
    margin-left: 0;
  }
}
@media (min-width: 80em) {
  .entry-content > .wp-block-group:not(.rating-section) {
    max-width: 1280px;
  }
}

.bus-icon img {
  min-height: 50px;
  max-width: unset;
}

/*.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;
}

[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.full-width {
  max-width: 100% !important;
  width: 100% !important;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .hero-wrap.full-width {
    min-height: 450px;
  }
}
.hero-wrap.full-width .inner-content {
  max-height: 160px;
  padding: 20px;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  background-size: cover;
  text-align: center;
  background-position: 70%;
  background-repeat: no-repeat;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content {
    max-height: unset;
    min-height: 450px;
    text-align: left;
    padding: 40px;
    background-position: 45%;
  }
}
.hero-wrap.full-width .inner-content .hero-wrap-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 210px;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .hero-wrap-inner {
    position: initial;
  }
}
.hero-wrap.full-width .inner-content .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 {
    flex-direction: row;
  }
}
.hero-wrap.full-width .inner-content .hero-inner {
  background-color: #F7F6F4 !important;
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
  padding: 35px;
  text-align: center;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .hero-inner {
    background-color: rgba(255, 255, 255, 0.85) !important;
    max-width: 400px;
    text-align: left;
  }
}
.hero-wrap.full-width .inner-content .hero-inner .home-banner {
  font-size: 21px;
  line-height: 1.138888889;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic !important;
  display: block;
  margin: 0 0 20px 0;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .hero-inner .home-banner {
    font-size: 31px;
  }
}
.hero-wrap.full-width .inner-content .hero-inner .home-banner-logo {
  margin: 0;
}
.hero-wrap.full-width .inner-content .hero-inner .home-text {
  font-size: 14px;
  margin: 0 0 20px 0;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .hero-inner .home-text {
    font-size: 16px;
  }
}
.hero-wrap.full-width .inner-content .hero-inner .home-text a {
  color: inherit;
}
.hero-wrap.full-width .inner-content .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 {
    flex-direction: row;
  }
}
.hero-wrap.full-width .inner-content .hero-inner .home-button .main-button {
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(10deg, #D51317, #F59D24);
  text-transform: uppercase;
  color: #fff;
  border: none;
  height: 42px;
  width: 136px;
  border-radius: 5px;
  font-size: 14px;
  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 {
  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 {
    margin-bottom: 0;
  }
}
.hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.secondary-button {
  /*corretto*/
  background: linear-gradient(10deg, #D51317, #F59D24);
  color: #fff;
}
.hero-wrap.full-width .inner-content .hero-inner .home-button .main-button.secondary-button:hover {
  background: #D85C01;
  border: 2px solid #D85C01;
}
.hero-wrap.full-width .inner-content .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 {
  margin: auto;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .form-wrapper.mobile {
    display: none;
  }
}
.hero-wrap.full-width .inner-content .form-wrapper.desktop {
  display: none;
}
@media (min-width: 48em) {
  .hero-wrap.full-width .inner-content .form-wrapper.desktop {
    display: block;
  }
}
.hero-wrap.full-width .inner-content .form-wrapper .form-title {
  margin-top: 0;
}
.hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper input.medium {
  width: 100%;
}
.hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper .gform_footer {
  padding: 0;
}
.hero-wrap.full-width .inner-content .form-wrapper .gform_wrapper input[type=submit] {
  font-family: proxima-nova, 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 {
  background-color: #D85C01;
  border: 2px solid #D85C01;
}
.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;
}

.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: Arial, sans-serif !important;
  font-size: 14px !important;
}
.banner-block-wrapper .banner-block .right-content .gfield_label {
  font-family: Arial, 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: Arial, 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: proxima-nova, 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 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-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: #D85C01;
  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 rgba(0, 0, 0, 0.1019607843);
}
.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: #fcdeb6;
}
.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: linear-gradient(10deg, #D51317, #F59D24);
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  height: 35px;
  border-radius: 4px;
  font-weight: 800;
  font-style: italic !important;
  white-space: nowrap;
  display: block;
  margin: 31px auto auto;
  text-align: center;
  position: absolute;
  bottom: 20px;
}
@media (min-width: 48em) {
  .content-read-more {
    display: inline;
  }
}
.content-read-more:hover {
  color: #fff;
}

.testimonials-block-wrapper {
  width: 100%;
  background-color: #E8A143;
  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: #D85C01;
  color: #fff !important;
}
.row-articles-wrapper {
  max-width: 100%;
  width: 100% !important;
  margin-bottom: 0 !important;
}
@media (min-width: 80em) {
  .row-articles-wrapper {
    margin-bottom: 50px;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
}
.row-articles-wrapper .section-heading {
  font-family: proxima-nova, sans-serif !important;
  font-weight: 800;
  font-style: italic !important;
  color: #3c3c3c;
  font-size: 19px !important;
  text-transform: uppercase;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
  margin: 0 auto 20px;
  text-align: left;
}
@media (min-width: 48em) {
  .row-articles-wrapper .section-heading {
    font-size: 26px !important;
  }
}
.row-articles-wrapper .row-section-wrapper {
  display: flex;
  justify-content: start;
  gap: 2.2rem;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper {
    flex-direction: row;
    margin: auto;
  }
}
@media (min-width: 80em) {
  .row-articles-wrapper .row-section-wrapper {
    margin-bottom: 30px;
  }
}
.row-articles-wrapper .row-section-wrapper.count2 {
  justify-content: space-around;
}
.row-articles-wrapper .row-section-wrapper .article-row-wrapper {
  background-color: #F0EEEC;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  width: auto;
  height: auto;
}
@media (min-width: 80em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count1 {
    max-width: 49%;
    width: 49%;
  }
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count2 {
    max-width: 49%;
    width: 49%;
  }
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count3 {
    max-width: 32%;
    width: 32%;
  }
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper.count4 {
    max-width: 24%;
    width: 24%;
  }
}
.row-articles-wrapper .row-section-wrapper .article-row-wrapper img {
  height: 201px;
  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-family: Arial, sans-serif;
  font-weight: bold;
  text-transform: none;
  font-size: 16px;
}
@media (min-width: 48em) {
  .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-title {
    font-size: 19px;
    font-family: proxima-nova, sans-serif;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
  }
}
.row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-text {
  margin-top: 19px;
  font-size: 14px !important;
  margin-bottom: 50px;
}
.row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section .content-read-more {
  margin-top: 0;
}

.home .row-articles-wrapper .row-section-wrapper .article-row-wrapper .content-section {
  background-color: #fff;
}

.rating-section {
  box-shadow: 0px 0px 5px 0px #808080;
  padding: 45px 0;
  margin: 5px 0 !important;
}
.rating-section .slick-prev {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/rating_arrow_left.svg") no-repeat center;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
}
.rating-section .slick-next {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/rating_arrow_right.svg") no-repeat center;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
}
.rating-section .slider-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}
.rating-section .slider-wrapper .single-review {
  display: block;
  position: relative;
  padding: 10px;
}
.rating-section .slider-wrapper .single-review .stars-wrapper {
  display: block;
  width: 130px;
  height: 25px;
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/rating_stars.png") no-repeat center;
}
.rating-section .slider-wrapper .single-review .date-wrapper {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 15px;
}
.rating-section .slider-wrapper .single-review .title-wrapper {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 11px;
}
.rating-section .slider-wrapper .single-review .content-wrapper {
  display: block;
  font-size: 15px;
  width: 80%;
  margin-bottom: 14px;
}
.rating-section .slider-wrapper .single-review .name-wrapper {
  display: block;
  font-size: 13px;
}

.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 #E8A143;
}
@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 #E8A143;
  width: calc(100% + 4px);
  margin-left: -24px;
}
.prices-area .top-wrapper .plan-block-wrapper span.mp {
  position: absolute;
  color: #fff;
  background-color: #E8A143;
  width: 145px;
  height: 32px;
  font-size: 15px;
  font-family: proxima-nova, 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: proxima-nova, sans-serif;
  font-size: 30px;
  color: #E8A143;
  margin-top: 27px;
  margin-bottom: 20px;
}
.prices-area .top-wrapper .plan-block-wrapper .description {
  width: 254px;
  font-family: proxima-nova, 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 #E8A143;
  font-size: 15px;
  text-decoration: none;
  color: #E8A143;
  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: #E8A143;
}
.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: Arial, 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: #E8A143;
}
.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: proxima-nova, 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: Arial, 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: #F0EEEC;
  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 .promo-title {
  margin-top: 30px;
  margin-bottom: 30px !important;
  font-size: 26px !important;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: italic;
}
.promo-block-wrapper .content p {
  font-size: 15px;
  margin-bottom: 30px;
}
.promo-block-wrapper .content a {
  margin: auto;
  margin-top: 37px;
  background: linear-gradient(10deg, #D51317, #F59D24);
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  width: 122px;
  font-weight: 800;
  font-style: italic;
  display: block;
}
.promo-block-wrapper .content a:hover {
  background-color: #D85C01;
  cursor: pointer;
}

#modalBkg {
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.8666666667);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}

#form-popup-wrap-timed {
  z-index: 102;
  background-color: #fefefe;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 20px;
  text-align: center;
  display: none;
  border-radius: 10px;
  margin: 0;
}
@media (min-width: 56.25em) {
  #form-popup-wrap-timed {
    left: 25vw;
    width: 50vw;
  }
}
#form-popup-wrap-timed .form-popup-close {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  color: #231f20;
  text-align: right;
  border-bottom: 0;
  order: 1;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  background: url(/content/themes/wired-media-ecommerce-theme/images/icons/icon_popup_close.svg);
  width: 12px;
  height: 12px;
}
#form-popup-wrap-timed .popup-heading {
  font-size: 22px;
  margin: 0 auto 1rem;
  color: inherit !important;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  line-height: 27.5px;
  letter-spacing: -0.914375px;
}

.image-ctas-section .wp-block-columns {
  margin: 0 !important;
}
@media (min-width: 48em) {
  .image-ctas-section .wp-block-columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.2rem;
  }
}
@media (min-width: 80em) {
  .image-ctas-section .wp-block-columns {
    padding: 0;
    justify-content: space-between;
  }
}
.image-ctas-section .wp-block-columns .wp-block-column {
  overflow: hidden;
  margin-bottom: 3.2rem !important;
}
@media (min-width: 48em) {
  .image-ctas-section .wp-block-columns .wp-block-column {
    max-width: 31.5%;
    margin: 0 !important;
  }
}
.image-ctas-section .wp-block-columns .wp-block-column a {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.image-ctas-section .wp-block-columns .wp-block-column a img {
  object-fit: cover;
  width: 100%;
}
@media (min-width: 48em) {
  .image-ctas-section .wp-block-columns .wp-block-column a img {
    min-height: 273px;
  }
}
.image-ctas-section .wp-block-columns .wp-block-column a > span {
  display: block;
  position: absolute;
  bottom: 20px;
  left: -10px;
  padding: 5px 10px 5px 20px;
  color: white;
  background: linear-gradient(10deg, #D51317, #F59D24);
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 19px;
  transform: skew(-20deg);
  border-radius: 5px;
}
@media (min-width: 48em) {
  .image-ctas-section .wp-block-columns .wp-block-column a > span {
    max-width: 89%;
  }
}
.image-ctas-section .wp-block-columns .wp-block-column a > span > span {
  display: block;
  transform: skew(20deg);
}
.image-ctas-section .wp-block-columns .wp-block-column a > span > span::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 13px;
  background-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right_arrow.svg");
  margin-left: 10px;
}

.pins-row {
  margin-top: 0;
  margin-bottom: 0;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .pins-row {
    margin-top: 60px !important;
    margin-bottom: 70px !important;
  }
}
@media (min-width: 80em) {
  .pins-row {
    max-width: 60% !important;
  }
}
.pins-row .wp-block-column {
  max-width: 100%;
}
@media (min-width: 48em) {
  .pins-row .wp-block-column {
    max-width: 25%;
    margin: 0 !important;
  }
}
@media (min-width: 80em) {
  .pins-row .wp-block-column {
    max-width: unset;
  }
}
.pins-row .wp-block-column .wp-block-image {
  margin: 0 !important;
}
.pins-row .wp-block-column p:not(.title) {
  font-size: 14px;
  margin: 0 5px !important;
}
@media (min-width: 48em) {
  .pins-row .wp-block-column p:not(.title) {
    font-size: 16px;
  }
}
.pins-row .title {
  margin: 10px 20px !important;
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: uppercase;
  font-size: 16px !important;
  letter-spacing: 0.03125em;
  line-height: 1.25;
}
@media (min-width: 48em) {
  .pins-row .title {
    font-size: 19px !important;
  }
}
@media (min-width: 80em) {
  .pins-row .title {
    margin: 10px auto !important;
  }
}

.categories-grid-wrapper {
  display: none;
  grid-template: 2/3;
  gap: 30px 30px;
}
@media (min-width: 48em) {
  .categories-grid-wrapper {
    display: grid;
    margin: auto;
  }
}
@media (min-width: 80em) {
  .categories-grid-wrapper {
    max-width: 1280px !important;
  }
}
.categories-grid-wrapper .single-category-wrapper {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.categories-grid-wrapper .single-category-wrapper:nth-child(1) {
  grid-column: 1/1;
  grid-row: 1/span 2;
}
.categories-grid-wrapper .single-category-wrapper:nth-child(2) {
  grid-column: 2/2;
  grid-row: 1/1;
}
.categories-grid-wrapper .single-category-wrapper:nth-child(3) {
  grid-column: 2/2;
  grid-row: 2/2;
}
.categories-grid-wrapper .single-category-wrapper:nth-child(4) {
  grid-column: 3/3;
  grid-row: 1/span 2;
}
.categories-grid-wrapper .single-category-wrapper a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.categories-grid-wrapper .single-category-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories-grid-wrapper .single-category-wrapper a > span {
  display: block;
  position: absolute;
  bottom: 20px;
  left: -10px;
  padding: 5px 10px;
  padding-left: 20px;
  color: white;
  background: linear-gradient(10deg, #D51317, #F59D24);
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  font-family: proxima-nova, sans-serif;
  transform: skew(-20deg);
  border-radius: 5px;
}
.categories-grid-wrapper .single-category-wrapper a > span > span {
  display: block;
  transform: skew(20deg);
}
.categories-grid-wrapper .single-category-wrapper a > span > span::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 13px;
  background-image: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/right_arrow.svg");
  margin-left: 10px;
}

.gallery-section {
  padding-bottom: 45px;
}
@media (min-width: 48em) {
  .gallery-section {
    padding-bottom: 0;
    max-width: calc(100% - 100px) !important;
    margin: auto;
  }
}
@media (min-width: 80em) {
  .gallery-section {
    max-width: 1280px !important;
  }
}
.gallery-section .slick-prev {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/gallery_arrow_left.svg") no-repeat center;
  border-radius: 20px;
  width: 38px;
  height: 38px;
  left: 30%;
}
@media (min-width: 48em) {
  .gallery-section .slick-prev {
    left: -50px;
  }
}
.gallery-section .slick-prev:before {
  display: none;
}
.gallery-section .slick-next {
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/arrows/gallery_arrow_right.svg") no-repeat center;
  border-radius: 20px;
  width: 38px;
  height: 38px;
  right: 30%;
}
@media (min-width: 48em) {
  .gallery-section .slick-next {
    right: -50px;
  }
}
.gallery-section .slick-next:before {
  display: none;
}
.gallery-section .slick-arrow {
  top: 110%;
}
@media (min-width: 48em) {
  .gallery-section .slick-arrow {
    top: 50%;
  }
}
@media (min-width: 48em) {
  .gallery-section .slider-wrapper .slide-wrapper img {
    width: 95% !important;
  }
}
.gallery-section .slider-wrapper .slick-slide img {
  transition: all 0.5s;
}

#bookingWidget {
  background-color: #F0EEEC;
  position: relative;
  border-radius: 8px;
}
@media (min-width: 48em) {
  #bookingWidget {
    width: calc(100% - 80px);
    max-width: unset;
  }
}
@media (min-width: 80em) {
  #bookingWidget {
    width: 1280px;
    height: 124px;
    max-width: 120rem;
    top: -107px;
    margin-bottom: -110px;
  }
}
#bookingWidget .left-border {
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(10deg, #D51317, #F59D24);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#bookingWidget .content-wrapper {
  margin-left: 8px;
  flex-direction: column;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 28.125em) {
  #bookingWidget .content-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 28.125em) {
  #bookingWidget .content-wrapper {
    height: 124px;
    padding: 0;
  }
}
#bookingWidget .content-wrapper .widget_title {
  font-family: proxima-nova, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 28.125em) {
  #bookingWidget .content-wrapper .widget_title {
    margin-bottom: 0;
    text-align: center;
  }
}
@media (min-width: 48em) {
  #bookingWidget .content-wrapper .widget_title {
    max-width: unset;
  }
}
#bookingWidget .content-wrapper .submit {
  width: 136px;
  height: 44px;
  background: linear-gradient(10deg, #D51317, #F59D24);
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic !important;
  padding: 0;
  border-radius: 4px;
  text-decoration: none;
}

.wmimageandtextcolumns {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 80em) {
  .wmimageandtextcolumns {
    flex-direction: row;
    max-width: 1280px;
  }
}
.wmimageandtextcolumns > * {
  width: 100%;
}
@media (min-width: 80em) {
  .wmimageandtextcolumns > * {
    width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    flex-grow: 0;
  }
}
@media (min-width: 80em) {
  .wmimageandtextcolumns .column_figure_mobile {
    display: none;
  }
}
.wmimageandtextcolumns .column_figure {
  margin-left: 0 !important;
}
.wmimageandtextcolumns .column_figure.right {
  display: none;
}
@media (min-width: 80em) {
  .wmimageandtextcolumns .column_figure.right {
    display: block;
  }
}
.wmimageandtextcolumns .column_content {
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 80em) {
  .wmimageandtextcolumns .column_content.left {
    padding-left: 32px;
  }
}
@media (min-width: 80em) {
  .wmimageandtextcolumns .column_content.right {
    padding-right: 40px;
  }
}
.wmimageandtextcolumns .column_content .title {
  font-size: 26px;
  text-transform: uppercase;
}
.wmimageandtextcolumns .column_content .wp-block-button__link {
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 25px;
  font-weight: 800 !important;
  font-style: italic !important;
  background: linear-gradient(10deg, rgb(213, 19, 23) 0%, rgb(245, 157, 36) 100%);
}

.wmimageandtextcarousel {
  width: 100%;
  max-width: 1280px;
}
.wmimageandtextcarousel .wmimageandtextcarousel-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 2rem;
}
@media (min-width: 34.375em) {
  .wmimageandtextcarousel .wmimageandtextcarousel-wrapper {
    padding: 0px;
  }
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel .wmimageandtextcarousel-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel.right {
    flex-direction: row-reverse;
  }
}
.wmimageandtextcarousel > * {
  width: 100%;
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel > * {
    flex-grow: 0;
  }
}
.wmimageandtextcarousel .column_figure {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  margin-left: 0 !important;
  height: 480px !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel .column_figure {
    width: 66% !important;
    max-width: 66% !important;
    flex: 0 0 66% !important;
  }
}
.wmimageandtextcarousel .column_figure .slick-prev {
  left: 10px;
  top: 240px;
  z-index: 100;
}
.wmimageandtextcarousel .column_figure .slick-next {
  right: 10px;
  top: 240px;
  z-index: 100;
}
.wmimageandtextcarousel .column_figure .column_figure_carousel {
  width: 100%;
}
.wmimageandtextcarousel .column_figure .column_figure_carousel .column_figure_carousel_single .alignfull {
  margin: 0px !important;
}
.wmimageandtextcarousel .column_figure figure {
  height: 480px !important;
}
.wmimageandtextcarousel .column_figure figure img {
  height: 480px !important;
  min-width: 100%;
  object-fit: cover;
}
.wmimageandtextcarousel .column_figure .column_figure_overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 10%;
  height: 480px !important;
  width: 100%;
  position: relative;
  bottom: 480px;
  left: 0;
  z-index: 100;
  padding-top: 2rem;
}
@media (min-width: 34.375em) {
  .wmimageandtextcarousel .column_figure .column_figure_overlay {
    padding-top: 100px;
  }
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel .column_figure .column_figure_overlay {
    padding-top: 200px;
  }
}
.wmimageandtextcarousel .column_figure .column_figure_overlay .title {
  color: white;
  font-size: 24px;
  text-transform: uppercase;
  text-align: left;
}
.wmimageandtextcarousel .column_figure .column_figure_overlay .content_wrapper {
  color: white;
  font-size: 18px;
}
.wmimageandtextcarousel .column_figure .column_figure_overlay .wp-block-button__link {
  margin-top: 20px;
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 25px;
  font-weight: 800 !important;
  font-style: italic !important;
  background: linear-gradient(10deg, rgb(213, 19, 23) 0%, rgb(245, 157, 36) 100%);
}
.wmimageandtextcarousel .column_content {
  height: 480px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 2rem !important;
  margin-bottom: 0px !important;
  background: #F0EEEC;
  padding: 30px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 10px;
}
@media (min-width: 56.25em) {
  .wmimageandtextcarousel .column_content {
    width: 33% !important;
    max-width: 33% !important;
    flex: 0 0 33% !important;
    margin-top: 0px !important;
  }
}
.wmimageandtextcarousel .column_content .title {
  margin-top: 0px;
  font-size: 24px;
  text-transform: uppercase;
}
.wmimageandtextcarousel .column_content .content_wrapper {
  font-size: 18px;
}
.wmimageandtextcarousel .column_content .wp-block-button__link {
  margin-top: 20px;
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 25px;
  font-weight: 800 !important;
  font-style: italic !important;
  background: linear-gradient(10deg, rgb(213, 19, 23) 0%, rgb(245, 157, 36) 100%);
}

.wmimageandtexttiles {
  width: 100%;
  max-width: 1280px;
}
.wmimageandtexttiles .wmimageandtexttiles-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2rem;
}
@media (min-width: 34.375em) {
  .wmimageandtexttiles .wmimageandtexttiles-wrapper {
    padding: 0px;
  }
}
.wmimageandtexttiles > * {
  width: 100%;
}
@media (min-width: 56.25em) {
  .wmimageandtexttiles > * {
    flex-grow: 0;
  }
}
.wmimageandtexttiles .column_content {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0px !important;
  margin-bottom: 60px !important;
  background: white;
  padding: 0px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 10px;
}
@media (min-width: 34.375em) {
  .wmimageandtexttiles .column_content {
    width: 49% !important;
    max-width: 49% !important;
    flex: 0 0 49% !important;
  }
}
@media (min-width: 56.25em) {
  .wmimageandtexttiles .column_content {
    width: 32% !important;
    max-width: 32% !important;
    flex: 0 0 32% !important;
  }
}
.wmimageandtexttiles .column_content figure {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  height: 240px !important;
}
.wmimageandtexttiles .column_content figure img {
  height: 240px !important;
  min-width: 100%;
  object-fit: cover;
  border-radius: 10px !important;
}
.wmimageandtexttiles .column_content .title {
  margin-top: 1rem;
  font-size: 22px;
  text-transform: uppercase;
}
.wmimageandtexttiles .column_content .content_wrapper {
  font-size: 15px;
}
.wmimageandtexttiles .column_content .wp-block-button__link {
  margin-top: 20px;
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 25px;
  font-weight: 800 !important;
  font-style: italic !important;
  background: linear-gradient(10deg, rgb(213, 19, 23) 0%, rgb(245, 157, 36) 100%);
}

.wmimageandfaqscolumns {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 80em) {
  .wmimageandfaqscolumns {
    flex-direction: row;
    max-width: 1280px;
  }
}
.wmimageandfaqscolumns > * {
  width: 100%;
}
@media (min-width: 80em) {
  .wmimageandfaqscolumns > * {
    width: 50%;
    min-width: 50%;
    flex-grow: 0;
  }
}
@media (min-width: 80em) {
  .wmimageandfaqscolumns .column_figure_mobile {
    display: none;
  }
}
.wmimageandfaqscolumns .column_figure {
  margin-left: 0 !important;
}
.wmimageandfaqscolumns .column_figure.right {
  display: none;
}
@media (min-width: 80em) {
  .wmimageandfaqscolumns .column_figure.right {
    display: block;
  }
}
.wmimageandfaqscolumns .column_content {
  margin-left: 0 !important;
}
@media (min-width: 80em) {
  .wmimageandfaqscolumns .column_content.right {
    padding-right: 40px;
  }
}
.wmimageandfaqscolumns .column_content .title {
  font-size: 26px;
  text-transform: uppercase;
}
.wmsimplecontent {
  padding-top: 50px;
  text-align: center;
}
.wmsimplecontent .title {
  font-size: 26px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.wmmapsection .column_figure.map-wrapper-mobile {
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 80em) {
  .wmmapsection .column_figure.map-wrapper-mobile {
    display: none;
  }
}
.wmmapsection .column_figure.map-wrapper-mobile > * {
  width: 100% !important;
}
@media (min-width: 80em) {
  .wmmapsection .column_figure.map-wrapper-mobile > * {
    max-height: 100%;
  }
}
.wmmapsection .column_content {
  flex-basis: 33.33% !important;
}
@media (min-width: 80em) {
  .wmmapsection .column_content {
    padding-top: 50px;
  }
}
.wmmapsection .column_content .title {
  font-size: 26px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}
.wmmapsection .column_content .content_wrapper {
  padding-right: 40px;
}
.wmmapsection .column_figure.map-wrapper {
  display: none;
  flex-basis: 66.66% !important;
  margin: 0;
  max-height: 400px;
  margin-left: 11px !important;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 80em) {
  .wmmapsection .column_figure.map-wrapper {
    display: block;
  }
}
.wmmapsection .column_figure.map-wrapper > * {
  width: 100% !important;
}
@media (min-width: 80em) {
  .wmmapsection .column_figure.map-wrapper > * {
    max-height: 100%;
  }
}

@media (min-width: 48em) {
  .timetableWidget {
    width: calc(100% - 80px) !important;
    max-width: unset !important;
  }
}
@media (min-width: 80em) {
  .timetableWidget {
    width: 1280px !important;
    max-width: 120rem !important;
  }
}
.timetableWidget .first-space {
  background-color: #3c3c3c;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 20px;
  border-bottom: 2px solid #fff;
}
.timetableWidget .first-space .text {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.timetableWidget .first-space select {
  background-color: #F0EEEC;
  color: #3c3c3c;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  padding: 5px;
  border-radius: 4px;
}
.timetableWidget .second-space .header-wrapper {
  background-color: #3c3c3c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #fff;
}
.timetableWidget .second-space .header-wrapper .headings-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.timetableWidget .second-space .header-wrapper .headings-wrapper .title {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}
.timetableWidget .second-space .header-wrapper .headings-wrapper .subtitle {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper {
  padding: 10px;
  display: none;
}
@media (min-width: 48em) {
  .timetableWidget .second-space .header-wrapper .locations-wrapper {
    display: flex;
  }
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .location-wrapper {
  background-color: #F0EEEC;
  color: #3c3c3c;
  border-radius: 8px;
  margin-right: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 144px;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .location-wrapper .city {
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .location-wrapper .location {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .location-wrapper .location:before {
  position: absolute;
  left: 0;
  margin: 0 auto;
  width: 16px;
  height: 22px;
  display: block;
  content: "";
  background: url("/content/themes/wired-media-ecommerce-theme/images/icons/orange_pin.svg") no-repeat center;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .fares-wrapper {
  background-color: #F0EEEC;
  color: #3c3c3c;
  border-radius: 8px;
  width: 144px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .fares-wrapper .first-row {
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  padding: 10px 15px;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .fares-wrapper .second-row {
  display: flex;
  border-top: 1px solid #3c3c3c;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .fares-wrapper .second-row .section {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 19px;
}
.timetableWidget .second-space .header-wrapper .locations-wrapper .fares-wrapper .second-row .section:first-of-type {
  border-right: 1px solid #3c3c3c;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .headings-row {
  background-color: #F0EEEC;
  border-left: 6px solid #F59D24;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F0EEEC;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 48em) {
  .timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row {
    flex-direction: row;
    align-items: center;
  }
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .text {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  padding-left: 20px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper {
  align-items: center;
  display: none;
}
@media (min-width: 48em) {
  .timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper {
    display: flex;
  }
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper .timetable_link {
  display: inline-block;
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: unset;
  color: #fff;
  background: linear-gradient(10deg, #D51317, #F59D24);
  padding: 5px 15px;
  border-radius: 5px;
  margin-right: 30px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper .timetable_link:hover {
  cursor: pointer;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper .fares-wrapper {
  width: 144px;
  display: flex;
  justify-content: space-around;
  margin-right: 10px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper .fares-wrapper .single-fare {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 48em) {
  .timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile {
    display: none;
  }
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper {
  width: 100%;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .timetable_link_mobile {
  display: inline-block;
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: unset;
  color: #fff;
  background: linear-gradient(10deg, #D51317, #F59D24);
  padding: 5px 15px;
  border-radius: 5px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-header-mobile {
  background-color: #F0EEEC;
  border: 1px solid #3c3c3c;
  color: #3c3c3c;
  border-radius: 8px;
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-header-mobile .single-fare-header-mobile {
  padding: 10px;
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  width: 33%;
  text-align: center;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-header-mobile .single-fare-header-mobile:first-of-type {
  text-transform: uppercase;
  border-right: 1px solid #3c3c3c;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-header-mobile .single-fare-header-mobile:last-of-type {
  border-left: 1px solid #3c3c3c;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-mobile {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-right: 10px;
}
.timetableWidget .second-space .schedules-wrapper .day-wrapper .schedule-row .schedule-contents-wrapper-mobile .single-timing-mobile-wrapper .fares-wrapper-mobile .single-fare-mobile {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  width: 33%;
  text-align: center;
}

.timetableIframe {
  border: 1px solid #efefef;
  width: calc(120rem + 16px) !important;
  max-width: 100% !important;
  min-height: 500px;
  overflow-x: scroll;
  /* Show horizontal scrollbar */
}

.wmimageandthreecolumns {
  display: flex;
  flex-direction: column;
}
.wmimageandthreecolumns .image_wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 50vh;
  border-radius: 10px;
}
.wmimageandthreecolumns .columns_wrapper {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .wmimageandthreecolumns .columns_wrapper {
    flex-direction: row;
  }
}
@media (min-width: 56.25em) {
  .wmimageandthreecolumns .columns_wrapper .single_column_wrapper {
    max-width: 33.33333%;
    display: flex;
  }
}
.wmimageandthreecolumns .columns_wrapper .single_column_wrapper .icon-wrapper {
  padding: 10px;
}
.wmimageandthreecolumns .columns_wrapper .single_column_wrapper .icon-wrapper .column_icon {
  max-width: 50px;
  min-width: 50px;
  margin: auto;
}
.wmimageandthreecolumns .columns_wrapper .single_column_wrapper .column_content_wrapper {
  text-align: center;
}
@media (min-width: 56.25em) {
  .wmimageandthreecolumns .columns_wrapper .single_column_wrapper .column_content_wrapper {
    padding: 0 20px;
    text-align: left;
  }
}
.wmimageandthreecolumns .columns_wrapper .single_column_wrapper .column_content_wrapper .column_title {
  color: #3c3c3c;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
  font-family: proxima-nova, sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
}

.gaq-block {
  background: #f2f2f2 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.gaq-block .wp-block-columns .wp-block-column {
  text-align: center;
}
@media (min-width: 34.375em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: center;
  }
}
@media (min-width: 40em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: center;
  }
}
@media (min-width: 48em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: center;
  }
}
@media (min-width: 56.25em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: center;
  }
}
@media (min-width: 76.875em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: left;
  }
}
@media (min-width: 80em) {
  .gaq-block .wp-block-columns .wp-block-column {
    text-align: left;
  }
}
.gaq-block .wp-block-columns .wp-block-column figure {
  margin-bottom: 0px !important;
}
@media (min-width: 40em) {
  .gaq-block .wp-block-columns .wp-block-column figure {
    margin-bottom: 3rem !important;
  }
}
.gaq-block .wp-block-columns .wp-block-column figure.wp-block-image {
  margin-block-start: 0;
  margin-top: 0px !important;
}
.gaq-block .wp-block-columns .wp-block-column figure img {
  margin: auto auto;
  max-width: 50px;
}
@media (min-width: 40em) {
  .gaq-block .wp-block-columns .wp-block-column figure img {
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (min-width: 34.375em) {
  .gaq-block .wp-block-columns .wp-block-column figure img {
    margin: 0 auto;
  }
}
@media (min-width: 28.125em) {
  .gaq-block .wp-block-columns .wp-block-column figure img {
    margin: 0 auto;
  }
}
.gaq-block .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button {
  width: 100%;
}
.gaq-block .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button .wp-block-button__link {
  width: 100%;
}
.barCTAWidget {
  background-color: #F0EEEC;
  position: relative;
  border-radius: 8px;
}
@media (min-width: 48em) {
  .barCTAWidget {
    width: calc(100% - 80px) !important;
    max-width: unset !important;
  }
}
@media (min-width: 80em) {
  .barCTAWidget {
    width: 1280px !important;
    height: 124px;
    max-width: 120rem !important;
    top: -107px;
    margin-bottom: -110px;
  }
}
.barCTAWidget .left-border {
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(10deg, #D51317, #F59D24);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.barCTAWidget .content-wrapper {
  margin-left: 8px;
  flex-direction: column;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 28.125em) {
  .barCTAWidget .content-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 28.125em) {
  .barCTAWidget .content-wrapper {
    height: 124px;
    padding: 0;
  }
}
.barCTAWidget .content-wrapper .widget_title {
  font-family: proxima-nova, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 28.125em) {
  .barCTAWidget .content-wrapper .widget_title {
    margin-bottom: 0;
    text-align: center;
  }
}
@media (min-width: 48em) {
  .barCTAWidget .content-wrapper .widget_title {
    max-width: unset;
  }
}
.barCTAWidget .content-wrapper .submit {
  width: auto;
  height: 44px;
  background: linear-gradient(10deg, #D51317, #F59D24);
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic !important;
  padding: 0 20px;
  border-radius: 4px;
  text-decoration: none;
}

.accreditations-block {
  width: 100%;
}
.accreditations-block .title {
  font-size: 26px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.accreditations-block .images-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 34px;
}
.accreditations-block .images-wrapper.single {
  justify-content: center;
}
.accreditations-block .images-wrapper .accreditation-single {
  background-color: #F7F6F4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accreditations-block .images-wrapper .accreditation-single.small {
  width: 274px;
  height: 274px;
}
.accreditations-block .images-wrapper .accreditation-single.normal {
  width: 375px;
  height: 383px;
}
/* 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.6666666667em !important;
}

.push--top {
  margin-top: 1.6666666667em !important;
}

.push--right {
  margin-right: 1.6666666667em !important;
}

.push--bottom {
  margin-bottom: 1.6666666667em !important;
}

.push--left {
  margin-left: 1.6666666667em !important;
}

.push--ends {
  margin-top: 1.6666666667em !important;
  margin-bottom: 1.6666666667em !important;
}

.push--sides {
  margin-right: 1.6666666667em !important;
  margin-left: 1.6666666667em !important;
}

.push-half {
  margin: 0.8333333333em !important;
}

.push-half--top {
  margin-top: 0.8333333333em !important;
}

.push-half--right {
  margin-right: 0.8333333333em !important;
}

.push-half--bottom {
  margin-bottom: 0.8333333333em !important;
}

.push-half--left {
  margin-left: 0.8333333333em !important;
}

.push-half--ends {
  margin-top: 0.8333333333em !important;
  margin-bottom: 0.8333333333em !important;
}

.push-half--sides {
  margin-right: 0.8333333333em !important;
  margin-left: 0.8333333333em !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.2222222222em;
}

.beta {
  font-size: 1.6666666667em;
}

.gamma {
  font-size: 1.4444444444em;
}

.delta {
  font-size: 1.2222222222em;
}

.epsilon {
  font-size: 1em;
}

.zeta {
  font-size: 0.8888888889em;
}

/* 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.8571428571px, -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.8571428571px, -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 */