/****** FILE: themes/css-as/css/main.css *****/
/*======Typography=======*/
/*======Colors=======*/
/*======Responsive=======*/
/*======Grid =======*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

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

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

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

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

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

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

/**
 * 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.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* small >>> large */
/* small <<< large */
/* between specified breakpoints */
/*! General Styles start here. */
.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

.content, .content--full-pad, .content--no-pad {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  zoom: 1;
}

.content:after, .content--full-pad:after, .content--no-pad:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

.content--full-pad {
  padding: 16px;
}

.content--no-pad {
  padding: 0;
}

.grid, .grid--normal, .grid--contact {
  font-size: 0;
  margin-left: -16px;
  margin-right: -16px;
}

.grid--normal {
  margin: 0;
}

.grid--contact {
  margin-left: 0;
  margin-right: 0;
}

@media only all and (min-width: 64em) {
  .grid--contact {
    margin-top: 32px;
    margin-bottom: 64px;
  }
}

.ie .grid--contact {
  margin-top: 32px;
  margin-bottom: 64px;
}

.grid__item, .grid__item--no-pad {
  display: inline-block;
  box-sizing: border-box;
  font-size: 16px;
  vertical-align: top;
  padding: 0 16px;
  width: 100%;
}

.grid__item--no-pad {
  padding: 0;
}

.seventy, .seventy__five {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .seventy, .seventy__five {
    width: 60%;
  }
}

.ie .seventy, .ie .seventy__five {
  width: 60%;
}

@media only all and (min-width: 64em) {
  .seventy, .seventy__five {
    width: 70%;
  }
}

.ie .seventy, .ie .seventy__five {
  width: 70%;
}

@media only all and (min-width: 64em) {
  .seventy__five {
    width: 75%;
  }
}

.ie .seventy__five {
  width: 75%;
}

.sixty {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .sixty {
    width: 60%;
  }
}

.ie .sixty {
  width: 60%;
}

@media only all and (min-width: 64em) {
  .sixty-five {
    width: 65%;
  }
}

.ie .sixty-five {
  width: 65%;
}

.fifty, .fifty--contact, .fifty--contact-two {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .fifty, .fifty--contact, .fifty--contact-two {
    width: 50%;
  }
}

.ie .fifty, .ie .fifty--contact, .ie .fifty--contact-two {
  width: 50%;
}

.fifty--contact {
  padding: 0;
}

@media only all and (min-width: 64em) {
  .fifty--contact-two {
    padding: 16px 32px;
  }
}

.ie .fifty--contact-two {
  padding: 16px 32px;
}

@media only all and (min-width: 64em) {
  .fifty--contact-two {
    padding: 16px 32px;
  }
}

.ie .fifty--contact-two {
  padding: 16px 32px;
}

.fourty, .fourty--contact-block {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .fourty, .fourty--contact-block {
    width: 40%;
  }
}

.ie .fourty, .ie .fourty--contact-block {
  width: 40%;
}

.fourty--contact-block {
  padding-left: 0;
}

.thirty, .thirty-three, .thirty-five, .thirty-three--people {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .thirty, .thirty-three, .thirty-five, .thirty-three--people {
    width: 40%;
  }
}

.ie .thirty, .ie .thirty-three, .ie .thirty-five, .ie .thirty-three--people {
  width: 40%;
}

@media only all and (min-width: 64em) {
  .thirty, .thirty-three, .thirty-five, .thirty-three--people {
    width: 30%;
  }
}

.ie .thirty, .ie .thirty-three, .ie .thirty-five, .ie .thirty-three--people {
  width: 30%;
}

@media only all and (min-width: 46em) {
  .thirty-three {
    width: 50%;
  }
}

.ie .thirty-three {
  width: 50%;
}

@media only all and (min-width: 64em) {
  .thirty-three {
    width: 33.33%;
  }
}

.ie .thirty-three {
  width: 33.33%;
}

@media only all and (min-width: 46em) {
  .thirty-five {
    width: 100%;
  }
}

.ie .thirty-five {
  width: 100%;
}

@media only all and (min-width: 64em) {
  .thirty-five {
    width: 35%;
  }
}

.ie .thirty-five {
  width: 35%;
}

@media only all and (min-width: 30em) {
  .thirty-three--people {
    width: 50%;
  }
}

.ie .thirty-three--people {
  width: 50%;
}

@media only all and (min-width: 64em) {
  .thirty-three--people {
    width: 33.33%;
  }
}

.ie .thirty-three--people {
  width: 33.33%;
}

.quarter {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .quarter {
    width: 25%;
  }
}

.ie .quarter {
  width: 25%;
}

.twenty {
  width: 100%;
}

@media only all and (min-width: 30em) {
  .twenty {
    width: 50%;
  }
}

.ie .twenty {
  width: 50%;
}

@media only all and (min-width: 46em) {
  .twenty {
    width: 33.33%;
  }
}

.ie .twenty {
  width: 33.33%;
}

@media only all and (min-width: 64em) {
  .twenty {
    width: 20%;
  }
}

.ie .twenty {
  width: 20%;
}

@media only all and (min-width: 30em) {
  .twenty__five {
    width: 50%;
  }
}

.ie .twenty__five {
  width: 50%;
}

@media only all and (min-width: 46em) {
  .twenty__five {
    width: 25%;
  }
}

.ie .twenty__five {
  width: 25%;
}

.ten {
  width: 100%;
}

@media only all and (min-width: 46em) {
  .ten {
    width: 10%;
  }
}

.ie .ten {
  width: 10%;
}

.button-base, form input[type=submit] {
  border: 1px solid gray;
  padding: 0.7em 1em;
  display: inline-block;
  text-decoration: none;
  color: white;
  border-radius: 50px;
}

body {
  font-family: "raleway", sans-serif, monospace;
}

.typography, .typography--contact, .typography--no-margin {
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 4em;
}

.typography > :first-child, .typography--contact > :first-child, .typography--no-margin > :first-child {
  margin-top: 0;
}

.typography h1, .typography--contact h1, .typography--no-margin h1, .typography h2, .typography--contact h2, .typography--no-margin h2, .typography h3, .typography--contact h3, .typography--no-margin h3, .typography h4, .typography--contact h4, .typography--no-margin h4 {
  font-weight: 500;
  color: #242424;
}

@media only all and (min-width: 64em) {
  .typography h4, .typography--contact h4, .typography--no-margin h4 {
    font-size: 1.2em;
  }
}

.ie .typography h4, .ie .typography--contact h4, .ie .typography--no-margin h4 {
  font-size: 1.2em;
}

@media only all and (min-width: 64em) {
  .typography h2, .typography--contact h2, .typography--no-margin h2 {
    font-size: 1.6em;
  }
}

.ie .typography h2, .ie .typography--contact h2, .ie .typography--no-margin h2 {
  font-size: 1.6em;
}

@media only all and (min-width: 64em) {
  .typography h3, .typography--contact h3, .typography--no-margin h3 {
    font-size: 1.4em;
  }
}

.ie .typography h3, .ie .typography--contact h3, .ie .typography--no-margin h3 {
  font-size: 1.4em;
}

.typography ul, .typography--contact ul, .typography--no-margin ul {
  color: #242424;
}

.typography--contact {
  margin-bottom: 1em;
}

.typography--contact p {
  font-weight: 500;
}

@media only all and (min-width: 64em) {
  .typography--contact {
    padding-right: 5em;
    margin-top: 1em;
  }
}

.ie .typography--contact {
  padding-right: 5em;
  margin-top: 1em;
}

@media only all and (min-width: 64em) {
  .typography, .typography--contact, .typography--no-margin {
    display: inline-block;
    width: 70%;
  }
}

.ie .typography, .ie .typography--contact, .ie .typography--no-margin {
  display: inline-block;
  width: 70%;
}

.typography--no-margin {
  margin: 0;
  width: 100%;
}

@media only all and (min-width: 64em) {
  .typography--no-margin {
    width: 100%;
  }
}

.ie .typography--no-margin {
  width: 100%;
}

fieldset {
  border: 0;
  padding: 0;
}

fieldset .field {
  margin-top: 1em;
}

fieldset label {
  color: #3e3e3e;
  font-weight: 600;
}

fieldset input[type=text], fieldset input[type=email], fieldset textarea {
  width: 100%;
  padding: .7em 1em;
  border: 1px solid #d0d0d0;
  background-color: #f7f7f7;
}

fieldset input.file {
  width: 100%;
  border: 1px solid #d0d0d0;
  background-color: #f7f7f7;
  padding: 1em;
  border-radius: 2px;
  color: gray;
}

form input[type=submit] {
  color: #575757;
  margin-top: 1em;
  float: right;
  font-weight: 500;
  border: 1px solid #a4a4a4;
  background-color: #d7d7d7;
}

form input[type=submit]:hover {
  background-color: #d42a00;
  color: white;
  border: 1px solid #d42a00;
}

form .error {
  background-color: #ff4b4b;
  display: block;
  color: white;
  padding: 1em;
  font-weight: 500;
}

.footer-services {
  background-color: #2D2D2D;
  color: white;
  padding: 2em 1em;
}

.footer-copyright {
  background-color: #242424;
  color: #606060;
  overflow: hidden;
  padding: 1.5em 1em;
  font-family: Arial;
  text-align: center;
}

@media only all and (min-width: 46em) {
  .footer-copyright {
    text-align: left;
  }
}

.ie .footer-copyright {
  text-align: left;
}

.footer-section__title {
  margin-bottom: 1em;
  font-size: 1.5em;
  font-weight: 100;
}

.footer-section__list {
  margin: 0;
  padding: 0;
  font-size: 0;
}

.footer-section__list > li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
}

@media only all and (min-width: 30em) {
  .footer-section__list > li {
    width: 50%;
  }
}

.ie .footer-section__list > li {
  width: 50%;
}

@media only all and (min-width: 80em) {
  .footer-section__list > li {
    width: 33.33%;
  }
}

.ie .footer-section__list > li {
  width: 33.33%;
}

.footer-section__service-icon {
  margin-right: .5em;
  color: #d42a00;
  position: absolute;
  top: .1em;
  left: 0;
}

.footer-section__service-link {
  text-decoration: none;
  color: #8a8a8a;
  font-size: .9em;
  padding: 0 2em 2em 1em;
  display: inline-block;
  transition: .1s color linear;
  line-height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.footer-section__service-link:hover {
  color: #b0b0b0;
}

.footer-section__copyright, .footer-section__social {
  font-size: .8em;
}

.footer-section__copyright {
  margin-bottom: .5em;
}

.footer-section__copyright span {
  line-height: 2em;
}

.footer-section__copyright a {
  text-decoration: none;
  color: #148ee5;
  border-bottom: 1px dotted;
}

@media only all and (min-width: 46em) {
  .footer-section__copyright {
    float: left;
    margin-bottom: 0;
  }
}

.ie .footer-section__copyright {
  float: left;
  margin-bottom: 0;
}

.footer-section__social a {
  color: white;
  font-size: 1.5em;
  margin-left: .6em;
  transition: .1s color linear;
  text-decoration: none;
}

.footer-section__social a .label {
  font-size: .9em;
}

.footer-section__social a:hover {
  color: #148ee5;
}

@media only all and (min-width: 46em) {
  .footer-section__social {
    float: right;
  }
}

.ie .footer-section__social {
  float: right;
}

.footer-section__accr p {
  line-height: 1.7;
  color: #8a8a8a;
  font-size: .9em;
}

.footer-section__accr img {
  border-radius: 5px;
  box-shadow: 0 1px 1px black;
  display: block;
  width: 90%;
}

.footer-text {
  font-family: Arial;
  line-height: 1.5em;
  color: #8a8a8a;
}

.footer-text b {
  font-family: "raleway", sans-serif, monospace;
  font-weight: 400;
  color: #d42a00;
}

header.content, header.content--full-pad, header.content--no-pad {
  padding: 1em;
}

.logo {
  max-width: 150px;
  display: inline-block;
}

.logo-fallback, .logo-regular {
  display: block;
  width: 100%;
}

.logo-fallback {
  display: none;
}

.no-svg .logo-fallback {
  display: inline-block;
}

.no-svg .logo-regular {
  display: none;
}

@media only all and (min-width: 46em) {
  .logo {
    max-width: 200px;
  }
}

.ie .logo {
  max-width: 200px;
}

@media only all and (min-width: 64em) {
  .logo-fallback, .logo-regular {
    width: 100%;
  }
}

.ie .logo-fallback, .ie .logo-regular {
  width: 100%;
}

.header-contact {
  display: none;
}

@media only all and (min-width: 30em) {
  .header-contact {
    display: inline-block;
    float: right;
    margin-top: .5em;
    font-size: .8em;
  }
}

.ie .header-contact {
  display: inline-block;
  float: right;
  margin-top: .5em;
  font-size: .8em;
}

@media only all and (min-width: 46em) {
  .header-contact {
    margin-top: 1em;
    font-size: 1em;
  }
}

.ie .header-contact {
  margin-top: 1em;
  font-size: 1em;
}

.header-contact__icon {
  border: 3px solid #d42a00;
  padding: .33em;
  display: inline-block;
  font-size: 1.4em;
  color: #bcc8cf;
  float: left;
  position: relative;
}

.header-contact__icon:before, .header-contact__icon:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #d42a00;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -10px;
}

.header-contact__icon:after {
  border-left: 10px solid white;
  right: -6px;
}

.header-contact__content {
  padding-left: 3em;
}

.header-contact__number {
  font-family: Arial;
  white-space: nowrap;
  font-size: 1.2em;
  color: #362e2d;
}

.header-contact__number span {
  color: #d42a00;
  display: inline-block;
  margin-left: .3em;
  font-size: .8em;
}

.main-nav {
  background-color: #242424;
  border-bottom: 4px solid #ba2500;
}

@media only all and (min-width: 64em) {
  .main-nav {
    background-color: #d42a00;
  }
}

.ie .main-nav {
  background-color: #d42a00;
}

.main-nav__content {
  position: relative;
}

.main-nav__content:before {
  background-color: #d42a00;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media only all and (min-width: 64em) {
  .main-nav__content:before {
    content: "";
  }
}

.ie .main-nav__content:before {
  content: "";
}

@media only all and (min-width: 80em) {
  .main-nav__content:before {
    margin-right: -2em;
    margin-left: -2em;
    -webkit-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
            transform: skew(-30deg);
  }
}

.ie .main-nav__content:before {
  margin-right: -2em;
  margin-left: -2em;
  -webkit-transform: skew(-30deg);
      -ms-transform: skew(-30deg);
          transform: skew(-30deg);
}

.main-nav__list {
  position: relative;
  margin: 0;
  padding: 0;
}

.main-nav__item, .main-nav__item--more {
  display: inline-block;
  vertical-align: top;
  display: none;
  width: 20%;
}

.main-nav__item:nth-child(-n+4), .main-nav__item--more:nth-child(-n+4) {
  display: inline-block;
}

@media only all and (min-width: 30em) {
  .main-nav__item, .main-nav__item--more {
    width: 16.66%;
  }
  .main-nav__item:nth-child(-n+5), .main-nav__item--more:nth-child(-n+5) {
    display: inline-block;
  }
}

.ie .main-nav__item, .ie .main-nav__item--more {
  width: 16.66%;
}

.ie .main-nav__item:nth-child(-n+5), .ie .main-nav__item--more:nth-child(-n+5) {
  display: inline-block;
}

@media only all and (min-width: 64em) {
  .main-nav__item, .main-nav__item--more {
    width: auto;
    display: inline-block;
  }
  .main-nav__item:hover .main-nav__dropdown, .main-nav__item--more:hover .main-nav__dropdown {
    max-height: 300px;
  }
}

.ie .main-nav__item, .ie .main-nav__item--more {
  width: auto;
  display: inline-block;
}

.ie .main-nav__item:hover .main-nav__dropdown, .ie .main-nav__item--more:hover .main-nav__dropdown {
  max-height: 300px;
}

@media only all and (min-width: 80em) {
  .main-nav__item:first-child, .main-nav__item--more:first-child {
    position: relative;
  }
  .main-nav__item:first-child:before, .main-nav__item--more:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #a72100;
  }
}

.ie .main-nav__item:first-child, .ie .main-nav__item--more:first-child {
  position: relative;
}

.ie .main-nav__item:first-child:before, .ie .main-nav__item--more:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #a72100;
}

.main-nav__item--more {
  display: inline-block;
}

@media only all and (min-width: 64em) {
  .main-nav__item--more {
    display: none;
  }
}

.ie .main-nav__item--more {
  display: none;
}

.main-nav__btn {
  display: block;
  text-decoration: none;
  color: white;
  padding: .6em 0;
  position: relative;
}

@media only all and (min-width: 64em) {
  .main-nav__btn {
    padding: 1em;
  }
  .main-nav__btn:before {
    content: "";
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: .1s background-color ease;
  }
  .main-nav__btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #a72100;
  }
  .main-nav__btn:hover:before {
    background-color: #ed2f00;
  }
}

.ie .main-nav__btn {
  padding: 1em;
}

.ie .main-nav__btn:before {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: .1s background-color ease;
}

.ie .main-nav__btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #a72100;
}

.ie .main-nav__btn:hover:before {
  background-color: #ed2f00;
}

@media only all and (min-width: 80em) {
  .main-nav__btn {
    padding: 1em 2em;
  }
}

.ie .main-nav__btn {
  padding: 1em 2em;
}

.main-nav__btn.current {
  background-color: #c52700;
}

.main-nav__btn.current .main-nav__btn-icon {
  color: #781800;
  text-shadow: none;
}

@media only all and (min-width: 64em) {
  .main-nav__btn.current {
    background-color: transparent;
  }
}

.ie .main-nav__btn.current {
  background-color: transparent;
}

.main-nav__btn-icon {
  display: block;
  text-align: center;
  font-size: 1.5em;
  margin-bottom: .2em;
  color: gray;
  text-shadow: 0 0.5px 0.5px black;
}

@media only all and (min-width: 64em) {
  .main-nav__btn-icon {
    display: none;
  }
}

.ie .main-nav__btn-icon {
  display: none;
}

.main-nav__btn-text {
  display: none;
  text-align: center;
  position: relative;
}

@media only all and (min-width: 64em) {
  .main-nav__btn-text {
    display: block;
  }
}

.ie .main-nav__btn-text {
  display: block;
}

.main-nav__btn-text--mobile {
  text-align: center;
  display: block;
  font-size: .8em;
}

@media only all and (min-width: 64em) {
  .main-nav__btn-text--mobile {
    display: none;
  }
}

.ie .main-nav__btn-text--mobile {
  display: none;
}

.main-nav__dropdown {
  display: none;
  z-index: 2;
}

@media only all and (min-width: 64em) {
  .main-nav__dropdown {
    display: inline-block;
    background: white;
    box-shadow: 0 0 2px gainsboro;
    width: 100%;
    position: absolute;
    left: 0;
    top: 107%;
    max-height: 0;
    overflow: hidden;
    transition: 100ms linear max-height;
  }
}

.ie .main-nav__dropdown {
  display: inline-block;
  background: white;
  box-shadow: 0 0 2px gainsboro;
  width: 100%;
  position: absolute;
  left: 0;
  top: 107%;
  max-height: 0;
  overflow: hidden;
  transition: 100ms linear max-height;
}

.main-nav__dropdown-list {
  margin: 1em 1em .2em;
  padding: 0;
}

.main-nav__dropdown-item {
  display: inline-block;
  width: 24%;
  vertical-align: top;
}

.main-nav__dropdown-btn {
  display: block;
  padding: .6em 1em .6em 2em;
  text-decoration: none;
  color: #362e2d;
  position: relative;
  font-weight: 600;
  font-size: .9em;
  min-height: 2em;
}

.main-nav__dropdown-btn:hover {
  color: #A12000;
}

.main-nav__dropdown-icon {
  color: #A12000;
  margin-right: .5em;
  position: absolute;
  left: 1em;
  top: .7em;
}

.more-nav {
  background-color: #242424;
  overflow: hidden;
  max-height: 0;
  transition: .3s max-height ease-in-out;
}

@media only all and (min-width: 64em) {
  .more-nav {
    display: none;
  }
}

.ie .more-nav {
  display: none;
}

.more-nav__list {
  margin: 0;
  padding: 0;
}

@media only all and (min-width: 46em) {
  .more-nav__list {
    font-size: 0;
  }
}

.ie .more-nav__list {
  font-size: 0;
}

.more-nav__item {
  list-style: none;
}

.more-nav__item:nth-child(-n+4) {
  display: none;
}

@media only all and (min-width: 30em) {
  .more-nav__item:nth-child(-n+5) {
    display: none;
  }
}

.ie .more-nav__item:nth-child(-n+5) {
  display: none;
}

@media only all and (min-width: 46em) {
  .more-nav__item {
    width: 50%;
    display: inline-block;
    font-size: 16px;
  }
}

.ie .more-nav__item {
  width: 50%;
  display: inline-block;
  font-size: 16px;
}

.more-nav__btn {
  text-decoration: none;
  color: #cccccc;
  padding: .8em 1em;
  display: block;
  border-bottom: 1px dotted #171717;
}

@media only all and (min-width: 46em) {
  .more-nav__btn {
    border-right: 1px dotted #171717;
  }
}

.ie .more-nav__btn {
  border-right: 1px dotted #171717;
}

.more-nav__btn-icon {
  margin-right: .5em;
  color: gray;
}

.more-nav--show {
  max-height: 500px;
}

.LoginPage {
  background-color: #F5F5F6;
}

.loginBlock {
  background-color: white;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 480px;
}

.loginBlock_brand {
  background: linear-gradient(120deg, #f3f3f3 0%, #f1f1f1 60%, #e6e6e6 45%, #f1f1f1 100%);
  text-align: center;
  padding: 1.5em .7em;
}

.loginBlock_brand .logo {
  display: inline-block;
  vertical-align: baseline;
  max-width: 250px;
}

.loginBlock_brand .logo img {
  display: block;
  width: 100%;
}

.loginBlock_brand .header_slogan {
  display: inline-block;
  vertical-align: baseline;
  font-size: .8em;
  margin: 1em 0 0 0;
}

.loginBlock_form {
  padding: 1.5em;
}

.loginBlock_form fieldset {
  margin: 0;
  border: 0;
  padding: 0 0 0 0;
}

.loginBlock_form [type=text], .loginBlock_form [type=password], .loginBlock_form [type=email] {
  width: 100%;
  box-sizing: border-box;
  background-color: #ececec;
  border: 1px solid #cacaca;
  padding: .5em;
}

.loginBlock_form [type=text]:focus, .loginBlock_form [type=password]:focus, .loginBlock_form [type=email]:focus {
  border: 1px solid gray;
}

.loginBlock_form [type=text]:-webkit-autofill, .loginBlock_form [type=password]:-webkit-autofill, .loginBlock_form [type=email]:-webkit-autofill {
  background-color: #ececec;
  border: 1px solid #cacaca;
}

.loginBlock_form .field {
  margin-bottom: .5em;
}

.loginBlock_form label {
  color: gray;
  margin-bottom: .3em;
  display: inline-block;
}

.loginBlock_form [type=submit] {
  background-color: #3D3D3D;
  background-image: linear-gradient(to top, #303030, #6B6B6B);
  border: 1px solid #303030;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: .5em;
  color: white;
  margin-bottom: 0;
  margin-top: 0;
}

.loginBlock_form [type=submit]:hover {
  background-image: linear-gradient(to top, #3D3D3D, #707070);
}

.loginBlock_form #ForgotPassword {
  margin: 0;
  text-align: center;
  margin-top: .4em;
}

.loginBlock_form #ForgotPassword a {
  color: gray;
  text-decoration: none;
}

.loginBlock_form #ForgotPassword a:hover {
  text-decoration: underline;
}

.loginHeader {
  height: 50%;
  width: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
}

.loginHeader img {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.home-slider__item {
  -webkit-transform: translate3d(0, 0, 0);
  height: 300px;
}

@media only all and (min-width: 46em) {
  .home-slider__item {
    height: 350px;
  }
}

.ie .home-slider__item {
  height: 350px;
}

@media only all and (min-width: 64em) {
  .home-slider__item {
    height: 450px;
  }
}

.ie .home-slider__item {
  height: 450px;
}

@media only all and (min-width: 80em) {
  .home-slider__item {
    height: 550px;
  }
}

.ie .home-slider__item {
  height: 550px;
}

.home-slider__details {
  overflow: hidden;
  background: linear-gradient(to right, black -20%, transparent 110%, transparent 110%);
  height: 100%;
}

.home-slider__text {
  color: white;
}

.home-slider__text h2 {
  font-weight: normal;
}

.home-slider__text p {
  line-height: 170%;
  margin: 0 0 15px 0;
}

@media only all and (min-width: 30em) {
  .home-slider__text {
    width: 70%;
  }
  .home-slider__text h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
}

.ie .home-slider__text {
  width: 70%;
}

.ie .home-slider__text h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

@media only all and (min-width: 46em) {
  .home-slider__text {
    width: 60%;
  }
  .home-slider__text h2 {
    font-size: 2.1em;
  }
}

.ie .home-slider__text {
  width: 60%;
}

.ie .home-slider__text h2 {
  font-size: 2.1em;
}

@media only all and (min-width: 64em) {
  .home-slider__text {
    width: 50%;
    padding-top: 1em;
  }
  .home-slider__text h2 {
    font-size: 2.6em;
    margin-bottom: 25px;
  }
  .home-slider__text p {
    margin-bottom: 25px;
  }
}

.ie .home-slider__text {
  width: 50%;
  padding-top: 1em;
}

.ie .home-slider__text h2 {
  font-size: 2.6em;
  margin-bottom: 25px;
}

.ie .home-slider__text p {
  margin-bottom: 25px;
}

@media only all and (min-width: 80em) {
  .home-slider__text h2 {
    font-size: 3em;
  }
}

.ie .home-slider__text h2 {
  font-size: 3em;
}

.home-slider__btn {
  border: 1px solid gray;
  padding: .7em 1em;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  text-decoration: none;
  color: white;
  border-radius: 50px;
}

.home-slider__btn .fa {
  margin-left: .5em;
}

@media only all and (min-width: 64em) {
  .home-slider__btn {
    position: relative;
    transition: border linear 100ms, color linear 100ms, background linear 100ms;
  }
  .home-slider__btn:hover {
    background: #d42a00;
    border: 1px solid #d42a00;
    color: white;
  }
}

.ie .home-slider__btn {
  position: relative;
  transition: border linear 100ms, color linear 100ms, background linear 100ms;
}

.ie .home-slider__btn:hover {
  background: #d42a00;
  border: 1px solid #d42a00;
  color: white;
}

.home-slider .owl-nav {
  display: none;
}

@media only all and (min-width: 96em) {
  .home-slider .owl-nav {
    display: inline-block;
    position: absolute;
    color: white;
    width: 100%;
    margin: auto;
    top: -40px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0;
    padding-right: 1em;
    padding-left: 1em;
    box-sizing: border-box;
  }
}

.home-slider .owl-next, .home-slider .owl-prev {
  border-radius: 50%;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  text-align: center;
}

.home-slider .owl-next .fa, .home-slider .owl-prev .fa {
  line-height: 38px;
  font-size: 30px;
}

.home-slider .owl-prev {
  float: left;
}

.home-slider .owl-prev i {
  margin-left: -3px;
}

.home-slider .owl-next {
  float: right;
}

.home-slider .owl-next i {
  margin-right: -3px;
}

.home-slider .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
}

.home-slider .owl-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  margin: .2em;
}

.home-slider .owl-dot.active {
  background-color: #d42a00;
}

.home-fold {
  position: relative;
}

.home-fold__all-tabs {
  position: absolute;
  bottom: 2.5em;
  width: 100%;
  z-index: 1;
  color: white;
  display: none;
}

.home-fold__all-tabs .content, .home-fold__all-tabs .content--full-pad, .home-fold__all-tabs .content--no-pad {
  font-size: 0;
}

@media only all and (min-width: 80em) {
  .home-fold__all-tabs {
    display: block;
  }
}

.ie .home-fold__all-tabs {
  display: block;
}

.home-fold__tab {
  border: 1px solid gray;
  display: inline-block;
  width: 25%;
  height: 110px;
  vertical-align: top;
  padding: 1em 1.2em;
  box-sizing: border-box;
  font-size: .8em;
  border-right-color: transparent;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color .1s linear;
  position: relative;
}

.home-fold__tab:last-child {
  border-right: 1px solid gray;
}

.home-fold__tab:hover {
  border: 1px solid;
}

.home-fold__tab .fa {
  position: absolute;
  top: 1em;
  right: 1.2em;
  color: transparent;
  transition: .1s color ease;
}

.home-fold__tab h3 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 1em;
}

.home-fold__tab p {
  font-size: 13px;
  letter-spacing: 1px;
  color: gainsboro;
  line-height: 1.5;
  max-height: 3em;
  overflow: hidden;
}

.home-fold__tab.active {
  border: 1px solid;
}

.home-fold__tab.active .fa {
  color: #d42a00;
}

.featured-section--links {
  padding-top: 2em;
  padding-bottom: 1.5em;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f3f3 0%, #f1f1f1 60%, #e6e6e6 45%, #f1f1f1 100%);
  box-shadow: 0 1px 8px #c7c7c7 inset;
}

.featured-section--services {
  position: relative;
  background: linear-gradient(to bottom, #ececec 0%, white 25%, white 100%);
  padding-bottom: 1.5em;
  border-top: 1px solid #f3f3f3;
}

.featured-section--news {
  overflow: hidden;
  padding: 2em 0 3em;
  background: linear-gradient(to bottom, #f9f9f9 0%, white 40%, white 100%);
  border-top: 1px solid whitesmoke;
}

.featured-link {
  display: block;
  text-decoration: none;
  color: white;
  padding-top: 4px;
  margin-bottom: 1.5em;
}

.featured-link img {
  display: block;
  width: 100%;
}

.featured-link__text {
  padding: 1em;
  display: block;
}

.featured-link__text h2 {
  margin: 0;
  font-weight: 100;
}

.featured-link__text p {
  line-height: 1.5;
  margin-top: .5em;
  opacity: .6;
}

@media only all and (min-width: 80em) {
  .featured-link__text {
    padding: 1em 1.5em;
  }
}

.ie .featured-link__text {
  padding: 1em 1.5em;
}

.featured-link__more {
  display: block;
  padding: 1em 1.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-link__more .fa {
  margin-left: .5em;
  color: rgba(255, 255, 255, 0.5);
}

.featured-service {
  padding: 2em 1em 2em 0;
  position: relative;
  transition: .1s box-shadow linear;
  border: 1px solid transparent;
}

.featured-service:after {
  content: "";
  border-bottom: 1px solid #ececec;
  width: 10%;
  height: 1px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 5em;
}

.featured-service__arrow {
  width: 30px;
  height: 30px;
  color: white;
  text-align: center;
  line-height: 30px;
  margin: 0 auto;
  display: block;
  display: a;
  position: absolute;
  left: 0;
  right: 0;
  top: -1em;
}

.featured-service__section-title {
  color: #b3b3b3;
  font-weight: 100;
  text-align: center;
  font-size: 2em;
  margin-top: 0;
  padding-top: 1em;
}

@media only all and (min-width: 64em) {
  .featured-service__section-title {
    font-size: 2.5em;
    padding: 1em 6em 0;
  }
}

.ie .featured-service__section-title {
  font-size: 2.5em;
  padding: 1em 6em 0;
}

.featured-service__icon {
  font-size: 2em;
  float: left;
  width: 1.5em;
  color: rgba(173, 188, 197, 0.81);
  transition: .1s color linear;
}

@media only all and (min-width: 64em) {
  .featured-service {
    padding: 2em 1em;
  }
  .featured-service__icon {
    text-align: center;
  }
  .featured-service:hover {
    box-shadow: 0 0px 7px gainsboro;
    border: 1px solid gainsboro;
  }
  .featured-service:hover:after {
    border-color: transparent;
  }
  .featured-service:hover .featured-service__icon {
    color: #148ee5;
  }
}

.ie .featured-service {
  padding: 2em 1em;
}

.ie .featured-service__icon {
  text-align: center;
}

.ie .featured-service:hover {
  box-shadow: 0 0px 7px gainsboro;
  border: 1px solid gainsboro;
}

.ie .featured-service:hover:after {
  border-color: transparent;
}

.ie .featured-service:hover .featured-service__icon {
  color: #148ee5;
}

.featured-service__content {
  overflow: hidden;
  padding-left: 1em;
}

.featured-service__title {
  margin-top: 0;
  font-size: 1.7em;
  font-weight: 600;
  color: #242424;
  margin-bottom: .5em;
  font-weight: 100;
}

.featured-service__text {
  font-size: 15px;
  line-height: 1.5;
  color: gray;
  margin-top: .1em;
  min-height: 6em;
}

@media only all and (min-width: 64em) {
  .featured-service__text {
    padding-right: 2em;
  }
}

.ie .featured-service__text {
  padding-right: 2em;
}

.featured-service__link {
  white-space: nowrap;
  text-decoration: none;
  color: #148ee5;
  font-weight: 600;
}

.featured-service__link:hover {
  border-bottom: 1px dotted;
}

.date-frame {
  font-size: 1.4em;
  font-weight: 100;
  background-color: gray;
  color: #242424;
  padding: .2em 0;
  width: 40px;
  font-size: .8em;
  text-align: center;
  line-height: 140%;
  background: linear-gradient(135deg, #f3f3f3 0%, #f1f1f1 60%, #e6e6e6 45%, #f1f1f1 100%);
  box-shadow: 0 1px 1px #ababab;
}

@media only all and (min-width: 64em) {
  .date-frame {
    width: 60px;
    font-size: 1em;
  }
}

.ie .date-frame {
  width: 60px;
  font-size: 1em;
}

.date-frame__day {
  font-size: 1.3em;
  color: #1071B6;
}

.date-frame__month {
  color: gray;
}

.featured-news, .featured-news--sidebar {
  position: relative;
}

.featured-news__section-title {
  margin-top: 0;
  font-weight: 100;
  font-size: 1.5em;
  color: gray;
}

.featured-news__icon {
  position: absolute;
  top: 0;
  left: 0;
}

.featured-news__content {
  padding-left: 5em;
}

.featured-news__title, .featured-news__title--sidebar {
  margin: 0;
  font-weight: 100;
  font-size: 1.5em;
  margin-bottom: .5em;
}

.featured-news__title--sidebar {
  font-size: 1.2em;
  margin-bottom: 0;
}

.featured-news__text {
  font-size: 15px;
  line-height: 1.5;
  color: gray;
  margin-top: .1em;
}

.featured-news--sidebar .featured-news__icon {
  width: 40px;
  font-size: .8em;
}

.featured-news--sidebar .featured-news__title, .featured-news--sidebar .featured-news__title--sidebar {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  color: gray;
}

.featured-news--sidebar .featured-news__content {
  padding-left: 3.5em;
}

.side-nav {
  background-color: #f1f1f1;
  background: linear-gradient(120deg, #f3f3f3 0%, #f1f1f1 60%, #ececec 45%, #f1f1f1 100%);
}

.Service .side-nav {
  margin-bottom: 0;
}

.side-nav__first, .side-nav__second {
  margin: 0;
  padding: 0;
}

.side-nav__first-item, .side-nav__second-item {
  list-style: none;
}

.side-nav__second {
  background-color: rgba(0, 0, 0, 0.07);
}

.side-nav__second .side-nav__link {
  padding-left: 2em;
}

.side-nav__link {
  text-decoration: none;
  padding: 1em;
  display: block;
  color: #3e3e3e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: .1s background-color linear, .1s border linear;
}

.side-nav__link .fa {
  color: gray;
  display: none;
}

@media only all and (min-width: 46em) {
  .side-nav__link .fa {
    display: inline-block;
    float: right;
  }
}

.ie .side-nav__link .fa {
  display: inline-block;
  float: right;
}

.side-nav__link.current .fa {
  color: #d42a00;
}

.side-nav__link:hover {
  background-color: rgba(36, 36, 36, 0.1);
  border-bottom: 1px solid transparent;
}

.side-nav__link-txt {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  padding-right: 1em;
  box-sizing: border-box;
}

.breadcrumbs {
  border: 1px solid #f0f0f0;
  margin: 1em 0;
}

.breadcrumbs__link, .breadcrumbs__link-active {
  text-decoration: none;
  color: gray;
  padding: .5em;
  display: inline-block;
  position: relative;
  margin-right: 1.1em;
  transition: color 0.2s ease;
  vertical-align: top;
}

.breadcrumbs__link:before, .breadcrumbs__link-active:before, .breadcrumbs__link:after, .breadcrumbs__link-active:after {
  content: "";
  border: 8px solid transparent;
  border-left: 5px solid #f0f0f0;
  position: absolute;
  top: 10px;
  right: -19px;
}

.breadcrumbs__link:after, .breadcrumbs__link-active:after {
  right: -18px;
  border-left-color: white;
}

@media only all and (min-width: 46em) {
  .breadcrumbs__link:first-child, .breadcrumbs__link-active:first-child {
    padding-left: .8em;
  }
  .breadcrumbs__link:before, .breadcrumbs__link-active:before, .breadcrumbs__link:after, .breadcrumbs__link-active:after {
    border: 18px solid transparent;
    border-left: 10px solid #f0f0f0;
    top: 0;
    right: -31px;
  }
  .breadcrumbs__link:after, .breadcrumbs__link-active:after {
    right: -30px;
    border-left-color: white;
  }
}

.ie .breadcrumbs__link:first-child, .ie .breadcrumbs__link-active:first-child {
  padding-left: .8em;
}

.ie .breadcrumbs__link:before, .ie .breadcrumbs__link-active:before, .ie .breadcrumbs__link:after, .ie .breadcrumbs__link-active:after {
  border: 18px solid transparent;
  border-left: 10px solid #f0f0f0;
  top: 0;
  right: -31px;
}

.ie .breadcrumbs__link:after, .ie .breadcrumbs__link-active:after {
  right: -30px;
  border-left-color: white;
}

.breadcrumbs__link:hover, .breadcrumbs__link-active:hover {
  color: #A12000;
}

.breadcrumbs__link-active {
  color: #A12000;
  max-width: 70px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media only all and (min-width: 46em) {
  .breadcrumbs__link-active {
    max-width: 200px;
  }
}

.ie .breadcrumbs__link-active {
  max-width: 200px;
}

@media only all and (min-width: 46em) {
  .breadcrumbs__link-active {
    max-width: 300px;
  }
}

.ie .breadcrumbs__link-active {
  max-width: 300px;
}

.page-title {
  background: linear-gradient(120deg, #f3f3f3 0%, #f1f1f1 60%, #e6e6e6 45%, #f1f1f1 100%);
  box-shadow: 0 1px 8px #c7c7c7 inset;
  overflow: hidden;
}

.page-title h1 {
  color: #9e9e9e;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

@media only all and (min-width: 46em) {
  .page-title h1 {
    font-size: 2em;
    text-align: left;
    font-weight: 100;
  }
}

.ie .page-title h1 {
  font-size: 2em;
  text-align: left;
  font-weight: 100;
}

@media only all and (min-width: 64em) {
  .page-title h1 {
    font-size: 2.5em;
    text-align: left;
    font-weight: 100;
  }
}

.ie .page-title h1 {
  font-size: 2.5em;
  text-align: left;
  font-weight: 100;
}

.NewsArticle .page-title h1 {
  text-align: left;
}

.page-image {
  margin-bottom: 1em;
}

.page-image img {
  display: block;
  width: 100%;
}

.service-block {
  background: linear-gradient(120deg, #f3f3f3 0%, #f1f1f1 74%, #ececec 45%, #f1f1f1 100%);
  padding: .7em 1em;
  box-sizing: border-box;
  margin-bottom: 2em;
  border: 1px solid transparent;
}

.service-block__title {
  font-weight: 500;
  font-size: 1.2em;
  margin-top: 0;
  color: #575757;
  display: block;
  min-height: 3.6em;
}

@media only all and (min-width: 46em) {
  .service-block {
    min-height: 10em;
  }
}

.ie .service-block {
  min-height: 10em;
}

.service-block__link {
  font-weight: 600;
  border: 1px solid #8a8a8a;
  padding: 0.7em 1em;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  text-decoration: none;
  color: #8a8a8a;
  border-radius: 50px;
  margin-top: 1em;
  display: inline-block;
  font-size: .8em;
}

@media only all and (min-width: 64em) {
  .service-block__link {
    transition: border linear 100ms, color linear 100ms, background linear 100ms;
  }
  .service-block__link:hover {
    background: #d42a00;
    border: 1px solid #d42a00;
    color: white;
  }
}

.ie .service-block__link {
  transition: border linear 100ms, color linear 100ms, background linear 100ms;
}

.ie .service-block__link:hover {
  background: #d42a00;
  border: 1px solid #d42a00;
  color: white;
}

.page-intro {
  padding: 1em 0;
  margin: 0 auto;
}

@media only all and (min-width: 30em) {
  .page-intro {
    max-width: 80%;
  }
}

.ie .page-intro {
  max-width: 80%;
}

@media only all and (min-width: 46em) {
  .page-intro {
    max-width: 60%;
    text-align: center;
    display: block;
  }
}

.ie .page-intro {
  max-width: 60%;
  text-align: center;
  display: block;
}

.large-sidenav__item {
  max-height: 0;
  overflow: hidden;
  transition: max-height ease-out 300ms;
}

@media only all and (min-width: 46em) {
  .large-sidenav__item:nth-child(n-15) {
    max-height: 60px;
  }
  .large-sidenav__item:nth-child(n+15) {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-out 300ms;
  }
}

.ie .large-sidenav__item:nth-child(n-15) {
  max-height: 60px;
}

.ie .large-sidenav__item:nth-child(n+15) {
  max-height: 0;
  overflow: hidden;
  transition: max-height ease-out 300ms;
}

.large-sidenav--show .large-sidenav__item {
  max-height: 60;
}

@media only all and (min-width: 46em) {
  .large-sidenav--show .large-sidenav__item:nth-child(n+8) {
    max-height: 60;
  }
}

.ie .large-sidenav--show .large-sidenav__item:nth-child(n+8) {
  max-height: 60;
}

.show-sidenav {
  text-align: center;
  margin-bottom: 1em;
}

@media only all and (min-width: 46em) {
  .show-sidenav--destop-hide {
    display: none;
  }
}

.ie .show-sidenav--destop-hide {
  display: none;
}

.show-sidenav__btn {
  display: block;
  background-color: #d42a00;
  padding: 0.8em 0.8em;
  color: white;
  font-size: 1em;
  font-family: Arial;
  cursor: pointer;
  text-align: left;
}

.show-sidenav__btn .fa {
  float: right;
}

.show-sidenav__btn:hover {
  background-color: #ed2f00;
}

@media only all and (min-width: 46em) {
  .show-sidenav__btn {
    text-align: center;
    display: inline-block;
    font-size: .9em;
    padding: 0.5em 0.8em;
  }
  .show-sidenav__btn .fa {
    float: none;
  }
}

.ie .show-sidenav__btn {
  text-align: center;
  display: inline-block;
  font-size: .9em;
  padding: 0.5em 0.8em;
}

.ie .show-sidenav__btn .fa {
  float: none;
}

.main-featured-news:after {
  content: "";
  border-bottom: 1px solid #f0f0f0;
  display: block;
  margin-left: 16px;
  margin-right: 16px;
}

.primary-article {
  margin-bottom: 1em;
}

.primary-article__image img {
  display: block;
  width: 100%;
}

.primary-article__title {
  font-weight: 600;
  color: #242424;
  display: block;
  margin-top: .4em;
  font-size: 1.2em;
  margin-bottom: .3em;
}

.primary-article__link {
  font-weight: 600;
  border: 1px solid #8a8a8a;
  padding: 0.7em 1em;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  text-decoration: none;
  color: #8a8a8a;
  border-radius: 50px;
  margin-top: 1em;
  display: inline-block;
  font-size: .8em;
  transition: background linear 100ms, border linear 100ms, color linear 100ms;
}

.primary-article__link:hover {
  background: #d42a00;
  border: 1px solid #d42a00;
  color: white;
}

.primary-article__date {
  color: white;
  padding: .3em .4em;
  background-color: #d42a00;
  display: inline-block;
  border-radius: 2px;
  font-size: .8em;
  font-family: Arial;
}

.primary-article__summary {
  margin-top: 1em;
  line-height: 1.5em;
  color: #8a8a8a;
}

@media only all and (min-width: 30em) {
  .primary-article__image {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
  .primary-article__content {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    padding-left: 1em;
    box-sizing: border-box;
  }
  .primary-article__title {
    margin-top: 0;
  }
  .primary-article__summary {
    display: none;
  }
}

.ie .primary-article__image {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.ie .primary-article__content {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  padding-left: 1em;
  box-sizing: border-box;
}

.ie .primary-article__title {
  margin-top: 0;
}

.ie .primary-article__summary {
  display: none;
}

@media only all and (min-width: 46em) {
  .primary-article__summary {
    display: inline-block;
  }
}

.ie .primary-article__summary {
  display: inline-block;
}

@media only all and (min-width: 80em) {
  .primary-article__title {
    font-size: 1.5em;
  }
}

.ie .primary-article__title {
  font-size: 1.5em;
}

.secondary-article {
  margin-bottom: 1em;
  display: none;
}

.secondary-article__image img {
  display: block;
  width: 100%;
}

.secondary-article__title {
  font-weight: 500;
  color: #242424;
  display: block;
  margin-bottom: .3em;
}

@media only all and (min-width: 30em) {
  .secondary-article {
    display: inline-block;
  }
  .secondary-article__image {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
  .secondary-article__content {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    padding-left: 1em;
    box-sizing: border-box;
  }
  .secondary-article__title {
    margin-top: 0;
    font-size: 1em;
    font-weight: 600;
  }
}

.ie .secondary-article {
  display: inline-block;
}

.ie .secondary-article__image {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.ie .secondary-article__content {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  padding-left: 1em;
  box-sizing: border-box;
}

.ie .secondary-article__title {
  margin-top: 0;
  font-size: 1em;
  font-weight: 600;
}

@media only all and (min-width: 46em) {
  .secondary-article {
    width: 48%;
    vertical-align: top;
  }
  .secondary-article:first-child {
    width: 50%;
  }
}

.ie .secondary-article {
  width: 48%;
  vertical-align: top;
}

.ie .secondary-article:first-child {
  width: 50%;
}

@media only all and (min-width: 64em) {
  .secondary-article {
    width: 100%;
  }
  .secondary-article:first-child {
    width: 100%;
  }
  .secondary-article__image {
    width: 46.5%;
  }
  .secondary-article__content {
    width: 52%;
  }
}

.ie .secondary-article {
  width: 100%;
}

.ie .secondary-article:first-child {
  width: 100%;
}

.ie .secondary-article__image {
  width: 46.5%;
}

.ie .secondary-article__content {
  width: 52%;
}

.news-block {
  background-color: #efefef;
  padding: 0.7em 1em;
  box-sizing: border-box;
  margin-bottom: 2em;
  border: 1px solid transparent;
}

.news-block__title {
  font-size: 1.5em;
  color: #242424;
  margin-bottom: .2em;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.news-block__title:hover {
  color: #1071B6;
}

.news-block__date {
  color: white;
  padding: .3em .4em;
  background-color: #d42a00;
  display: inline-block;
  border-radius: 2px;
  font-size: .8em;
  font-family: Arial;
}

.news-block__summary {
  line-height: 1.5;
  margin-top: 1em;
  color: #717171;
  font-weight: 500;
}

.latest-news-title, .latest-news-title--sidebar {
  color: #8a8a8a;
  font-weight: 300;
  font-size: 1.5em;
  margin: .4em 0;
}

.latest-news-title--sidebar {
  margin-top: 0;
  margin-bottom: .5em;
}

.contact-wrapper {
  background-color: #F0F0F0;
}

.contact-form {
  padding: 1.5em;
  background-color: #EBEBEB;
  box-shadow: -1px 0 1px gainsboro;
  position: relative;
  margin-bottom: 1em;
  overflow: hidden;
}

@media only all and (min-width: 64em) {
  .contact-form {
    padding: 1.5em 2em;
    margin-bottom: 0;
  }
}

.ie .contact-form {
  padding: 1.5em 2em;
  margin-bottom: 0;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form form {
  margin-bottom: 0;
}

.contact-form #Name label {
  margin-top: 0;
}

.contact-form label {
  font-size: 1.4em;
  margin-top: .5em;
  display: block;
  color: #a59e9e;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  width: 100%;
  padding: .5em 1em;
  margin-top: .2em;
  border: 1px solid gainsboro;
  background-color: white;
}

.contact-form input[type=submit] {
  font-weight: 600;
  border: 1px solid #8a8a8a;
  padding: 0.7em 1em;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  text-decoration: none;
  color: #8a8a8a;
  margin-top: 1em;
  display: inline-block;
  border-radius: 50px;
  padding: .5em 1em;
  transition: background linear 100ms, border linear 100ms, color linear 100ms;
}

.contact-form input[type=submit]:hover {
  background: #d42a00;
  border: 1px solid #d42a00;
  color: white;
}

.contact-block__info {
  display: block;
  overflow: hidden;
  margin-bottom: 1em;
}

.contact-block__text {
  overflow: hidden;
  line-height: 1.5;
  color: #6d6d6d;
  font-weight: 500;
  font-family: Arial;
}

.contact-block__text a {
  text-decoration: none;
  color: #1280cd;
}

.contact-block__title {
  font-weight: 600;
  margin-bottom: 1em;
  color: #A12000;
}

.extra-links {
  display: none;
  width: 15%;
  vertical-align: top;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

@media only all and (min-width: 64em) {
  .extra-links {
    display: inline-block;
  }
}

.ie .extra-links {
  display: inline-block;
}

.extra-links__wrapper--fixed {
  position: fixed;
  top: 1em;
}

.extra-links__title {
  font-weight: 500;
  color: #362e2d;
  font-size: .8em;
  padding: .5em .5em 1em;
  border-bottom: 1px solid #f0f0f0;
}

.extra-links__btn {
  display: block;
  text-decoration: none;
  padding: .6em .5em;
  border-bottom: 1px solid #f0f0f0;
  color: gray;
  transition: background-color linear 100ms;
  cursor: pointer;
}

.extra-links__btn:hover {
  background-color: whitesmoke;
}

.webui-popover-content {
  font-family: Arial;
}

.extra-pages {
  display: block;
  margin: auto;
  text-align: center;
}

#mack-map {
  width: 100%;
  height: 100%;
}

.mapEmbed {
  height: 400px;
}

.mapMarker {
  background: linear-gradient(120deg, #f3f3f3 0%, #f1f1f1 60%, #e6e6e6 45%, #f1f1f1 100%);
  color: gray;
  text-align: center;
  font-size: 1.5em;
  padding: .5em;
}

.member {
  background-color: #f1f1f1;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  border-bottom: 4px solid #d42a00;
}

.member__profile-pic {
  position: relative;
}

.member__image {
  border-radius: 50%;
  max-width: 100%;
}

.member__country {
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  display: inline-block;
  margin: auto;
  width: 40px;
  background-color: #f1f1f1;
  padding: .7em 0;
  border-radius: 50%;
}

.member__title {
  margin-bottom: .4em;
  font-size: 1.5em;
  font-weight: 500;
  color: #242424;
}

.member__role {
  margin-top: .5em;
  color: #d42a00;
  font-weight: 500;
}

.member__contact, .member__contact--social, .member__contact--non-active {
  padding: .5em 1em .4em;
  display: inline-block;
  background-color: gainsboro;
  border-radius: 30px;
  font-family: arial;
  color: gray;
  margin-bottom: .5em;
}

.member__contact--social {
  box-shadow: 0 1px 1px gray;
  text-decoration: none;
}

.member__contact--social:hover {
  background-color: #d42a00;
  color: white;
}

.member__contact--non-active {
  color: #b7b7b7;
  box-shadow: 0 0 5px #bfbfbf inset;
}

@media only all and (min-width: 30em) {
  .member__label {
    min-height: 5.5em;
  }
}

.ie .member__label {
  min-height: 5.5em;
}

.job-block {
  background-color: #efefef;
  margin-bottom: 2em;
}

.job-block__text {
  padding: 1em;
  min-height: 8em;
}

.job-block__title {
  color: #242424;
  font-size: 1.5em;
  margin-bottom: .6em;
}

.job-block__descr {
  color: gray;
  line-height: 1.5;
}

.job-block__footer {
  font-family: arial;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: .6em 1em;
  overflow: hidden;
  background-color: rgba(90, 90, 90, 0.1);
}

.job-block__data {
  margin-bottom: .5em;
  margin-top: .5em;
  float: left;
  margin-right: 1em;
  color: #575757;
}

.job-block__data .fa {
  color: #d42a00;
}

.job-block__btn {
  font-family: "raleway", sans-serif, monospace;
  border: 1px solid #bdbdbd;
  background-color: rgba(45, 45, 45, 0.05);
  font-size: .8em;
  font-weight: 600;
  color: #575757;
  transition: background-color 100ms linear, color 100ms linear, border 100ms linear;
}

.job-block__btn:hover {
  background-color: #d42a00;
  border: 1px solid #d42a00;
  color: white;
}

@media only all and (min-width: 64em) {
  .job-block__btn {
    float: right;
  }
}

.ie .job-block__btn {
  float: right;
}

.client-gallery {
  font-size: 0;
  padding-bottom: 32px;
}

.client-gallery__item {
  position: relative;
  width: 50%;
  display: inline-block;
  font-size: 16px;
  border: 1px solid #f0f0f0;
  border-left-color: transparent;
  box-sizing: border-box;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@media only all and (min-width: 30em) {
  .client-gallery__item {
    width: 33.33%;
  }
}

.ie .client-gallery__item {
  width: 33.33%;
}

@media only all and (min-width: 46em) {
  .client-gallery__item {
    width: 25%;
  }
}

.ie .client-gallery__item {
  width: 25%;
}

@media only all and (min-width: 64em) {
  .client-gallery__item {
    width: 20%;
  }
  .client-gallery__item:hover {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

.ie .client-gallery__item {
  width: 20%;
}

.ie .client-gallery__item:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media only all and (min-width: 80em) {
  .client-gallery__item {
    width: 14.28%;
  }
}

.ie .client-gallery__item {
  width: 14.28%;
}

.client-gallery__item:after {
  content: "";
  display: block;
  padding-top: 67%;
}

.client-gallery__item:first-child {
  border-left-color: #f0f0f0;
}

.client-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2em;
  text-align: center;
}

@media only all and (min-width: 80em) {
  .client-gallery__image {
    padding: 1em;
  }
}

.ie .client-gallery__image {
  padding: 1em;
}

.client-gallery__image:before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.client-gallery__image img {
  display: block;
  height: auto;
  width: 100%;
  opacity: .6;
}

.client-gallery__logo {
  display: inline-block;
  max-height: 100%;
  max-width: 94%;
  text-align: center;
  vertical-align: middle;
}

@media only all and (min-width: 30em) {
  .client-gallery__logo {
    width: 96%;
  }
}

.ie .client-gallery__logo {
  width: 96%;
}

@media only all and (min-width: 46em) {
  .client-gallery__logo {
    width: 98%;
  }
}

.ie .client-gallery__logo {
  width: 98%;
}

@media only all and (min-width: 64em) {
  .client-gallery__logo {
    width: 99%;
  }
}

.ie .client-gallery__logo {
  width: 99%;
}

.client-block {
  background: #F2F2F2;
  margin-bottom: 2em;
  padding: 1em;
}

.client-block__title {
  color: #242424;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: .2em;
}

.client-block__spokesperson {
  color: #d42a00;
  font-size: 1.2em;
  margin-bottom: 1em;
}

#map {
  width: 100%;
  height: 400px;
}

.ie #map {
  height: 250px;
}


/****** FILE: themes/css-as/thirdparty/webUiPopover/jquery.webui-popover.css *****/
/*  webui popover  */
.webui-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 276px;
  min-height: 32px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.webui-popover.top,
.webui-popover.top-left,
.webui-popover.top-right {
  margin-top: -10px;
}
.webui-popover.right,
.webui-popover.right-top,
.webui-popover.right-bottom {
  margin-left: 10px;
}
.webui-popover.bottom,
.webui-popover.bottom-left,
.webui-popover.bottom-right {
  margin-top: 10px;
}
.webui-popover.left,
.webui-popover.left-top,
.webui-popover.left-bottom {
  margin-left: -10px;
}
.webui-popover.pop {
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
}
.webui-popover.fade {
  transition: opacity .15s linear;
}
.webui-popover.in {
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  opacity: 1;
}
.webui-popover-inner .close {
  font-family: arial;
  margin: 5px 10px 0 0;
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
  text-decoration: none;
}
.webui-popover-inner .close:hover,
.webui-popover-inner .close:focus {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.webui-popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 5px 5px 0 0;
}
.webui-popover-content {
  padding: 9px 14px;
  overflow: auto;
}
.webui-popover-inverse {
  background-color: #333333;
  color: #eeeeee;
}
.webui-popover-inverse .webui-popover-title {
  background: #333333;
  border-bottom: 1px solid #3b3b3b;
  color: #eeeeee;
}
.webui-no-padding .webui-popover-content {
  padding: 0;
}
.webui-no-padding .list-group-item {
  border-right: none;
  border-left: none;
}
.webui-no-padding .list-group-item:first-child {
  border-top: 0;
}
.webui-no-padding .list-group-item:last-child {
  border-bottom: 0;
}
.webui-popover > .arrow,
.webui-popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.webui-popover > .arrow {
  border-width: 11px;
}
.webui-popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.webui-popover.top > .arrow,
.webui-popover.top-right > .arrow,
.webui-popover.top-left > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.webui-popover.top > .arrow:after,
.webui-popover.top-right > .arrow:after,
.webui-popover.top-left > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
}
.webui-popover.right > .arrow,
.webui-popover.right-top > .arrow,
.webui-popover.right-bottom > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.webui-popover.right > .arrow:after,
.webui-popover.right-top > .arrow:after,
.webui-popover.right-bottom > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.webui-popover.bottom > .arrow,
.webui-popover.bottom-right > .arrow,
.webui-popover.bottom-left > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
}
.webui-popover.bottom > .arrow:after,
.webui-popover.bottom-right > .arrow:after,
.webui-popover.bottom-left > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
}
.webui-popover.left > .arrow,
.webui-popover.left-top > .arrow,
.webui-popover.left-bottom > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.webui-popover.left > .arrow:after,
.webui-popover.left-top > .arrow:after,
.webui-popover.left-bottom > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.webui-popover-inverse.top > .arrow,
.webui-popover-inverse.top-left > .arrow,
.webui-popover-inverse.top-right > .arrow,
.webui-popover-inverse.top > .arrow:after,
.webui-popover-inverse.top-left > .arrow:after,
.webui-popover-inverse.top-right > .arrow:after {
  border-top-color: #333333;
}
.webui-popover-inverse.right > .arrow,
.webui-popover-inverse.right-top > .arrow,
.webui-popover-inverse.right-bottom > .arrow,
.webui-popover-inverse.right > .arrow:after,
.webui-popover-inverse.right-top > .arrow:after,
.webui-popover-inverse.right-bottom > .arrow:after {
  border-right-color: #333333;
}
.webui-popover-inverse.bottom > .arrow,
.webui-popover-inverse.bottom-left > .arrow,
.webui-popover-inverse.bottom-right > .arrow,
.webui-popover-inverse.bottom > .arrow:after,
.webui-popover-inverse.bottom-left > .arrow:after,
.webui-popover-inverse.bottom-right > .arrow:after {
  border-bottom-color: #333333;
}
.webui-popover-inverse.left > .arrow,
.webui-popover-inverse.left-top > .arrow,
.webui-popover-inverse.left-bottom > .arrow,
.webui-popover-inverse.left > .arrow:after,
.webui-popover-inverse.left-top > .arrow:after,
.webui-popover-inverse.left-bottom > .arrow:after {
  border-left-color: #333333;
}
.webui-popover i.icon-refresh:before {
  content: "";
}
.webui-popover i.icon-refresh {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-left: -15px;
  margin-right: -15px;
  background: url(../img/loading.html) no-repeat;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.webui-popover-backdrop {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}


/****** FILE: themes/css-as/thirdparty/icomoon/style.css *****/
@font-face {
	font-family: 'icomoon';
	src:url('../thirdparty/icomoon/fonts/icomoone79b.eot?nvvtfx');
	src:url('../thirdparty/icomoon/fonts/icomoone79b.eot?nvvtfx#iefix') format('embedded-opentype'),
		url('../thirdparty/icomoon/fonts/icomoone79b.ttf?nvvtfx') format('truetype'),
		url('../thirdparty/icomoon/fonts/icomoone79b.woff?nvvtfx') format('woff'),
		url('../thirdparty/icomoon/fonts/icomoone79b.svg?nvvtfx#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-stairs:before {
	content: "\e800";
}



