@charset "UTF-8";
/******************************************************************
	
Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.0
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%); }

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%); }

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  animation-name: shake-7; }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%); } }

.spin-cw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn); }
  100% {
    transform: rotate(0); } }

.spin-ccw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(1turn); } }

.wiggle {
  animation-name: wiggle-7deg; }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    transform: rotate(0); } }

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms; }

.infinite {
  animation-iteration-count: infinite; }

.slow {
  animation-duration: 750ms !important; }

.fast {
  animation-duration: 250ms !important; }

.linear {
  animation-timing-function: linear !important; }

.ease {
  animation-timing-function: ease !important; }

.ease-in {
  animation-timing-function: ease-in !important; }

.ease-out {
  animation-timing-function: ease-out !important; }

.ease-in-out {
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  animation-delay: 300ms !important; }

.long-delay {
  animation-delay: 700ms !important; }

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0; }

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block; }

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px; }

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit; }

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic; }

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000; }

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block; }

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none; }

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden; }

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible; }

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none; }

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto; }

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item; }

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block; }

/**
     * Add the correct display in IE.
     */
template {
  display: none; }

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none; }

.foundation-mq {
  font-family: "small=0em&medium=48em&large=64em&xlarge=80em&xxlarge=90em"; }

html {
  box-sizing: border-box;
  font-size: 100%; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  width: 100%;
  border-radius: 0; }

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto; }
  .row::before, .row::after {
    display: table;
    content: ' '; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 48em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 48em) {
    .column, .columns {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.33333%; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.66667%; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.28571%; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

.small-collapse .row {
  margin-right: 0;
  margin-left: 0; }

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

.small-centered {
  margin-right: auto;
  margin-left: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0; }

@media print, screen and (min-width: 48em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .medium-centered {
    margin-right: auto;
    margin-left: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 48em) {
    .column-block {
      margin-bottom: 1.875rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #cacaca; }

h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

@media print, screen and (min-width: 48em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.5rem; }
  h3 {
    font-size: 1.9375rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #1468a0; }
  a img {
    border: 0; }

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0; }

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6; }

li {
  font-size: inherit; }

ul {
  margin-left: 1.25rem;
  list-style-type: disc; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #8a8a8a; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: "— "; }

abbr {
  border-bottom: 1px dotted #0a0a0a;
  color: #0a0a0a;
  cursor: help; }

figure {
  margin: 0; }

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a; }

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

@media print, screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
    cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem; }

.input-group .input-group-button {
  display: table-cell; }

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

legend {
  max-width: 100%;
  margin-bottom: 0.5rem; }

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #fefefe; }

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37; }

.is-invalid-label {
  color: #cc4b37; }

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #14679e;
    color: #fefefe; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #1779ba;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #126195;
      color: #fefefe; }
  .button.secondary {
    background-color: #767676;
    color: #fefefe; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5e5e5e;
      color: #fefefe; }
  .button.success {
    background-color: #3adb76;
    color: #0a0a0a; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #0a0a0a; }
  .button.warning {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button.alert {
    background-color: #cc4b37;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button.hollow {
    border: 1px solid #1779ba;
    color: #1779ba; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0c3d5d;
      color: #0c3d5d; }
    .button.hollow.primary {
      border: 1px solid #1779ba;
      color: #1779ba; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0c3d5d;
        color: #0c3d5d; }
    .button.hollow.secondary {
      border: 1px solid #767676;
      color: #767676; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3b3b3b;
        color: #3b3b3b; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #1779ba;
      color: #fefefe; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #1779ba;
        color: #fefefe; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #767676;
        color: #fefefe; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #fefefe; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #fefefe; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #fefefe; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none; }

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0; }

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba; }
  :last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0 0 0 0; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #e6e6e6; }
  .accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+'; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #e6e6e6; }

.is-accordion-submenu-parent > a {
  position: relative; }
  .is-accordion-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 1rem; }

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%; }

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe; }
  .badge.primary {
    background: #1779ba;
    color: #fefefe; }
  .badge.secondary {
    background: #767676;
    color: #fefefe; }
  .badge.success {
    background: #3adb76;
    color: #0a0a0a; }
  .badge.warning {
    background: #ffae00;
    color: #0a0a0a; }
  .badge.alert {
    background: #cc4b37;
    color: #fefefe; }

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none; }
  .breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    font-size: 0.6875rem;
    color: #0a0a0a;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      position: relative;
      top: 1px;
      margin: 0 0.75rem;
      opacity: 1;
      content: "/";
      color: #cacaca; }
  .breadcrumbs a {
    color: #1779ba; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #cacaca;
    cursor: not-allowed; }

.button-group {
  margin-bottom: 1rem;
  font-size: 0; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' '; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: -1px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: calc(50% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: calc(33.33333% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: calc(25% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: calc(20% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: calc(16.66667% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
        margin-right: -6px; }
  .button-group.primary .button {
    background-color: #1779ba;
    color: #fefefe; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #126195;
      color: #fefefe; }
  .button-group.secondary .button {
    background-color: #767676;
    color: #fefefe; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #5e5e5e;
      color: #fefefe; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #0a0a0a; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #0a0a0a; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button-group.alert .button {
    background-color: #cc4b37;
    color: #fefefe; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%; }
    .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
      margin-bottom: 0; }
  @media print, screen and (min-width: 48em) {
    .button-group.stacked-for-small .button {
      width: auto;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      width: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 47.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #d7ecfa;
    color: #0a0a0a; }
  .callout.secondary {
    background-color: #eaeaea;
    color: #0a0a0a; }
  .callout.success {
    background-color: #e1faea;
    color: #0a0a0a; }
  .callout.warning {
    background-color: #fff3d9;
    color: #0a0a0a; }
  .callout.alert {
    background-color: #f7e4e1;
    color: #0a0a0a; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.card {
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  padding: 1rem;
  background: #e6e6e6; }
  .card-divider > :last-child {
    margin-bottom: 0; }

.card-section {
  padding: 1rem; }
  .card-section > :last-child {
    margin-bottom: 0; }

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #0a0a0a; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li, .menu.horizontal > li {
    display: table-cell; }
  .menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.vertical > li {
    display: block; }
  @media print, screen and (min-width: 48em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.medium-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.medium-vertical > li {
      display: block; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.large-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    display: inline-block;
    margin-right: 1rem;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: #1779ba;
    color: #fefefe; }
  .menu.menu-bordered li {
    border: 1px solid #e6e6e6; }
    .menu.menu-bordered li:not(:first-child) {
      border-top: 0; }
  .menu.menu-hover li:hover {
    background-color: #e6e6e6; }

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block; }

.no-js [data-responsive-menu] ul {
  display: none; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
    content: ''; }
  .menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''; }
  .menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block; }
  .is-drilldown.animate-height {
    transition: height 0.5s; }

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear; }
  .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }

.drilldown-submenu-cover-previous {
  min-height: 100%; }

.is-drilldown-submenu-parent > a {
  position: relative; }
  .is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0; }

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem; }
  .dropdown-pane.is-open {
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 200px; }

.dropdown-pane.large {
  width: 400px; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  margin-top: -3px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba; }

@media print, screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba; } }

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -6px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.responsive-embed, .flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden; }
  .responsive-embed iframe,
  .responsive-embed object,
  .responsive-embed embed,
  .responsive-embed video, .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .responsive-embed.widescreen, .flex-video.widescreen {
    padding-bottom: 56.25%; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe; }
  .label.primary {
    background: #1779ba;
    color: #fefefe; }
  .label.secondary {
    background: #767676;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #0a0a0a; }
  .label.warning {
    background: #ffae00;
    color: #0a0a0a; }
  .label.alert {
    background: #cc4b37;
    color: #fefefe; }

.media-object {
  display: block;
  margin-bottom: 1rem; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 47.9375em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.is-off-canvas-open {
  overflow: hidden; }

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.is-transition-overlap {
    z-index: 10; }
    .off-canvas.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas.is-open {
    transform: translate(0, 0); }

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0; }
  .off-canvas-absolute.is-transition-overlap {
    z-index: 10; }
    .off-canvas-absolute.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

.position-left {
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transform: translateX(-250px);
  overflow-y: auto; }
  .position-left.is-open ~ .off-canvas-content {
    transform: translateX(250px); }
  .position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-right {
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  transform: translateX(250px);
  overflow-y: auto; }
  .position-right.is-open ~ .off-canvas-content {
    transform: translateX(-250px); }
  .position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto; }
  .position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px); }
  .position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto; }
  .position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px); }
  .position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.off-canvas-content {
  transition: transform 0.5s ease;
  backface-visibility: hidden; }

@media print, screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-medium ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-medium ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-large ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-large ~ .off-canvas-content {
      margin-bottom: 250px; } }

.orbit {
  position: relative; }

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden; }

.orbit-slide {
  width: 100%; }
  .orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0; }

.orbit-figure {
  margin: 0; }

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0; }

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.5);
  color: #fefefe; }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe; }
  [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0; }
  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous {
  left: 0; }

.orbit-next {
  left: auto;
  right: 0; }

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center; }
  [data-whatinput='mouse'] .orbit-bullets {
    outline: 0; }
  .orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #cacaca; }
    .orbit-bullets button:hover {
      background-color: #8a8a8a; }
    .orbit-bullets button.is-active {
      background-color: #8a8a8a; }

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' '; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.0625rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media print, screen and (min-width: 48em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #0a0a0a; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #1779ba;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #cacaca;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: '\2026';
    color: #0a0a0a; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab'; }

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb'; }

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca; }
  .progress.primary .progress-meter {
    background-color: #1779ba; }
  .progress.secondary .progress-meter {
    background-color: #767676; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #cc4b37; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba; }

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #14679e; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.sticky-container {
  position: relative; }

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

body.is-reveal-open {
  overflow: hidden; }

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll; }

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media print, screen and (min-width: 48em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 48em) {
    .reveal {
      width: 600px;
      max-width: 75rem; } }
  @media print, screen and (min-width: 48em) {
    .reveal .reveal {
      right: auto;
      left: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media print, screen and (min-width: 48em) {
    .reveal.tiny {
      width: 30%;
      max-width: 75rem; } }
  @media print, screen and (min-width: 48em) {
    .reveal.small {
      width: 50%;
      max-width: 75rem; } }
  @media print, screen and (min-width: 48em) {
    .reveal.large {
      width: 90%;
      max-width: 75rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 47.9375em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      max-width: none;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0; }

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #fefefe;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #1779ba; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem; }
  .switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem; }
  .switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem; }

.switch.small {
  height: 1.75rem; }
  .switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem; }
  .switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem; }
  .switch.small input:checked ~ .switch-paddle::after {
    left: 2rem; }

.switch.large {
  height: 2.5rem; }
  .switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem; }
  .switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem; }
  .switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem; }

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  thead, tbody, tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold; }
  thead {
    background: #f8f8f8;
    color: #0a0a0a; }
  tfoot {
    background: #f1f1f1;
    color: #0a0a0a; }
  thead tr, tfoot tr {
    background: transparent; }
  thead th, thead td, tfoot th, tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left; }
  tbody th, tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }
  tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1; }
  table.unstriped tbody {
    background-color: #fefefe; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f1f1f1;
      background-color: #fefefe; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover thead tr:hover {
  background-color: #f3f3f3; }

table.hover tfoot tr:hover {
  background-color: #ececec; }

table.hover tbody tr:hover {
  background-color: #f9f9f9; }

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll table {
    width: auto; }

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' '; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #1779ba; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #1673b1; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #1779ba; }
    .tabs-title > a:hover {
      background: #fefefe;
      color: #1468a0; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #e6e6e6;
      color: #1779ba; }

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel[aria-hidden="false"] {
    display: block; }

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0; }

a.thumbnail {
  transition: box-shadow 200ms ease-out; }
  a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe; }
  .title-bar::before, .title-bar::after {
    display: table;
    content: ' '; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

.title-bar-left {
  float: left; }

.title-bar-right {
  float: right;
  text-align: right; }

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold; }

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help; }

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe; }
  .tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #0a0a0a;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a;
    top: 50%;
    bottom: auto;
    left: 100%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem; }
  .top-bar::before, .top-bar::after {
    display: table;
    content: ' '; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: #e6e6e6; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media print, screen and (min-width: 48em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 79.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.45rem 1rem 0 1rem; }
  .top-bar-title .menu-icon {
    bottom: 2px; }

.top-bar-left {
  float: left; }

.top-bar-right {
  float: right; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 47.9375em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important; } }

@media print, screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 47.9375em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 47.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 80em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.clearfix::after {
  clear: both; }

/************************************************

Stylesheet: Main Stylesheet

*************************************************/
body {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif; }

.row {
  max-width: 100rem; }

/*********************
GENERAL STYLES
*********************/
@font-face {
  font-family: "FuturaStd-Bold";
  src: url("../fonts/FuturaStd-Bold.otf"); }

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/Avenir-Next-Regular.otf"); }

@font-face {
  font-family: "FuturaStd-Book";
  src: url("../fonts/FuturaStd-Book.otf"); }

@font-face {
  font-family: "LucidaGrande";
  src: url("../fonts/Lucida.ttf"); }

/*********************
LINK STYLES
*********************/
a, a:visited {
  transition: all .2s ease-in-out; }
  a:link, a:visited:link {
    -webkit-tap-highlight-color: transparent; }

.separator-line-sml {
  border-bottom: 1px solid #dfdfdf; }

.acf-map {
  width: 100%;
  height: 700px;
  margin: 0; }

.hide-desc {
  display: none; }

.tab-desc-hide {
  display: none; }

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important; }

input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease; }

input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease; }

input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease; }

input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease; }

input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease; }

input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease; }

input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease; }

input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease; }

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus {
  border: none;
  background-color: none;
  box-shadow: none; }

/*********************
modall STYLES
*********************/
.modal_div {
  width: 100%;
  max-width: 890px;
  border-radius: 5px;
  background: #f9a51a;
  position: fixed;
  display: none;
  opacity: 0;
  z-index: 9999;
  top: 50%;
  Left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }

/* Кнoпкa зaкрыть для тех ктo в тaнке) */
.modal_div .modal_close {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 14px;
  right: 10px;
  cursor: pointer;
  display: block;
  z-index: 10; }

.logo-modal-abs {
  padding: 20px;
  position: relative;
  z-index: 3; }
  .logo-modal-abs img {
    width: 135px; }

.modal-content-box {
  font-family: LucidaGrande, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0px;
  color: #676767;
  position: relative; }
  .modal-content-box:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: #dcd7cf;
    opacity: 0.66;
    z-index: 1;
    top: 0;
    left: 0; }
  .modal-content-box h2 {
    font-family: LucidaGrande, Roboto, Arial, sans-serif;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 0.1px;
    color: #676767; }
  .modal-content-box .modal-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 110px 20px 50px; }

.modal-content-forms {
  padding: 50px 0 40px;
  margin-top: -15px;
  background: #f9a51a;
  z-index: 5;
  position: relative;
  -webkit-clip-path: polygon(50% 3%, 52% 0, 100% 0, 100% 100%, 0 100%, 0 0, 48% 0);
  clip-path: polygon(50% 3%, 52% 0, 100% 0, 100% 100%, 0 100%, 0 0, 48% 0); }
  .modal-content-forms .gform_confirmation_message {
    text-align: center;
    color: #fff;
    font-size: 18px; }
  .modal-content-forms .gform_wrapper {
    margin: 0 auto;
    max-width: 100%;
    width: 75%;
    position: relative; }
    .modal-content-forms .gform_wrapper label.gfield_label + div.ginput_container {
      margin-top: 0; }
    .modal-content-forms .gform_wrapper ul li.gfield {
      clear: none; }
    .modal-content-forms .gform_wrapper .top_label .name-modal-form,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form {
      float: left;
      width: 48%;
      /* Firefox 19+ */
      /* Firefox 18- */ }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form label,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form label,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form label,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form label {
        display: none; }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form input,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form input {
        width: 100%;
        height: 50px;
        text-align: left;
        padding-left: 15px;
        font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
        font-size: 18px;
        margin: 0;
        color: #676767;
        box-shadow: none;
        border: 1px solid rgba(255, 0, 0, 0); }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form ::-webkit-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form ::-webkit-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form ::-webkit-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form ::-webkit-input-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form ::-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form ::-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form ::-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form ::-moz-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form :-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form :-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form :-moz-placeholder,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form :-moz-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .name-modal-form :-ms-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form :-ms-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .telephone-modal-form :-ms-input-placeholder,
      .modal-content-forms .gform_wrapper .top_label .email-modal-form :-ms-input-placeholder {
        color: #676767; }
    .modal-content-forms .gform_wrapper .top_label .message-modal-form {
      float: right;
      width: 48%;
      right: 0;
      top: 0;
      clear: none;
      /* Firefox 19+ */
      /* Firefox 18- */ }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form label {
        display: none; }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form textarea {
        width: 100%;
        height: 180px;
        text-align: left;
        padding: 15px;
        font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
        font-size: 18px;
        color: #676767;
        border: 1px solid rgba(255, 0, 0, 0); }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form ::-webkit-input-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form ::-moz-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form :-moz-placeholder {
        color: #676767; }
      .modal-content-forms .gform_wrapper .top_label .message-modal-form :-ms-input-placeholder {
        color: #676767; }
    .modal-content-forms .gform_wrapper .top_label .gform_button {
      width: 100%;
      text-align: center;
      font-size: 18px;
      height: 50px;
      background-color: #676767;
      font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
      margin: 0; }
      .modal-content-forms .gform_wrapper .top_label .gform_button:hover {
        background: #292929; }
    .modal-content-forms .gform_wrapper .top_label .gfield_error input.large,
    .modal-content-forms .gform_wrapper .top_label .gfield_error select.large,
    .modal-content-forms .gform_wrapper .top_label .gfield_error textarea.textarea {
      width: 100%;
      border: 1px solid #676767; }
    .modal-content-forms .gform_wrapper .top_label .gfield_error .ginput_container {
      max-width: 100% !important;
      margin: 0 !important; }
    .modal-content-forms .gform_wrapper .top_label .email-modal-form {
      clear: left; }
    .modal-content-forms .gform_wrapper .top_label .captch-dlit {
      width: 100%;
      float: left;
      margin-top: 0;
      margin-bottom: 10px; }
      .modal-content-forms .gform_wrapper .top_label .captch-dlit .gfield_label {
        display: none; }
    .modal-content-forms .gform_wrapper .gform_footer {
      padding: 0;
      margin: 0; }
    .modal-content-forms .gform_wrapper li.gfield.gfield_error,
    .modal-content-forms .gform_wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
      background: none;
      margin-bottom: 0;
      border: none;
      width: 48%;
      margin: 0 !important; }
    .modal-content-forms .gform_wrapper .validation_message {
      color: #fff;
      text-align: center;
      width: 100%; }
    .modal-content-forms .gform_wrapper div.validation_error {
      color: #fff;
      font-size: 16px;
      text-align: center;
      font-weight: 500;
      border: none;
      margin: 0;
      width: 100%; }

/* Пoдлoжкa */
#overlay {
  z-index: 9998;
  /* пoдлoжкa дoлжнa быть выше слoев элементoв сaйтa, нo ниже слoя мoдaльнoгo oкнa */
  position: fixed;
  /* всегдa перекрывaет весь сaйт */
  background-color: #000;
  /* чернaя */
  opacity: 0.8;
  /* нo немнoгo прoзрaчнa */
  -moz-opacity: 0.8;
  /* фикс прозрачности для старых браузеров */
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  /* рaзмерoм вo весь экрaн */
  top: 0;
  /* сверху и слевa 0, oбязaтельные свoйствa! */
  left: 0;
  cursor: pointer;
  display: none;
  /* в oбычнoм сoстoянии её нет) */ }

/*********************
end modal styles
*********************/
/******* CUSTOM SLICK AROWW ************/
/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none; }

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
  z-index: 1; }

.off-canvas-list ul {
  margin-left: 0; }
  .off-canvas-list ul li a {
    border-bottom: 0px; }
  .off-canvas-list ul .dropdown {
    margin-left: 20px; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 1rem 0rem; }

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both; }

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.menu .active > a {
  background: none;
  color: #f8b13c; }

.menu li:last-child a {
  padding-right: 0px; }

.blog-header-single.header-fixed {
  background-image: linear-gradient(111deg, rgba(152, 152, 152, 0.6), rgba(226, 226, 226, 0.6)); }

.blog-header-single.header-hide {
  background-image: linear-gradient(111deg, rgba(152, 152, 152, 0.6), rgba(226, 226, 226, 0.6)); }

.blog-header-single .menu > li > a {
  color: #000; }

.blog-header-single .menu-mobile li a:before, .blog-header-single .menu-mobile li a:after {
  background: #000; }

.menu > li > a {
  background: none;
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 60px;
  padding: 30px 30px 0 30px;
  text-align: center;
  color: #ffffff;
  transition: all .2s ease-in-out; }
  .menu > li > a:hover {
    color: #f8b13c; }

.header-fixed {
  transform: translateY(0);
  will-change: transform;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-image: linear-gradient(111deg, rgba(152, 152, 152, 0), rgba(62, 62, 62, 0)); }

.header-fixed.add-bg-menu.header-hide {
  transform: translateY(-100%);
  will-change: transform;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out; }

.header-fixed.add-bg-menu {
  transform: translateY(-33px);
  background-image: linear-gradient(111deg, rgba(152, 152, 152, 0.6), rgba(62, 62, 62, 0.6)); }

.header .top-bar, .header .top-bar ul {
  background: transparent; }

.header .top-bar {
  padding-bottom: 0px; }

.off-canvas-content .top-bar-left {
  padding-top: 30px; }

.off-canvas-content .logo-header {
  margin: 0 20px 0 0;
  height: 60px;
  width: 200px;
  display: block;
  position: relative;
  line-height: 0; }
  .off-canvas-content .logo-header .logo {
    line-height: 0;
    font-size: 60px; }
  .off-canvas-content .logo-header img {
    width: 100%; }

.footer {
  background: #f4f3f3;
  padding-top: 55px; }
  .footer ul#menu-footer-menu {
    padding-left: 35%; }
  .footer .footer-box-one {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px; }
    .footer .footer-box-one:after {
      content: '';
      width: 150%;
      left: -25%;
      height: 2px;
      background: #dfdfdf;
      position: absolute;
      bottom: 0; }
  .footer .footer-logo-social {
    position: relative; }
    .footer .footer-logo-social .logo-description {
      padding-top: 20px;
      padding-bottom: 20px;
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 15px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.33;
      letter-spacing: 0.2px;
      text-align: justify;
      color: #5c5c5c; }
  .footer .social-footer {
    list-style-type: none;
    margin: 0px;
    padding-bottom: 5px; }
    .footer .social-footer li {
      display: inline-block;
      text-align: center; }
      .footer .social-footer li a {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        border-radius: 50%;
        color: #fff;
        background: #f8b13c;
        margin-bottom: 10px; }
        .footer .social-footer li a:hover {
          background: #292929; }
  .footer .menu .menu-item {
    width: 100%;
    display: block; }
    .footer .menu .menu-item a {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 16px;
      letter-spacing: 0.3px;
      text-align: left;
      color: #5c5c5c;
      display: block;
      width: 100%;
      line-height: normal;
      padding: 0 0 20px 0; }
      .footer .menu .menu-item a:hover {
        color: #f8b13c; }
  .footer .phone-adress .title-footer {
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.3px;
    text-align: left;
    color: #5c5c5c;
    padding-bottom: 30px; }
  .footer .phone-adress .telphone-footer-wrapper a,
  .footer .phone-adress .email-footer-wrapper a,
  .footer .phone-adress .adress-footer-wrapper a {
    color: #5c5c5c; }
    .footer .phone-adress .telphone-footer-wrapper a:hover,
    .footer .phone-adress .email-footer-wrapper a:hover,
    .footer .phone-adress .adress-footer-wrapper a:hover {
      color: #f8b13c; }
  .footer .phone-adress .telphone-footer-wrapper,
  .footer .phone-adress .email-footer-wrapper,
  .footer .phone-adress .adress-footer-wrapper {
    display: block;
    padding-left: 35px;
    position: relative;
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.43;
    text-align: left;
    color: #5c5c5c;
    padding-bottom: 30px; }
    .footer .phone-adress .telphone-footer-wrapper:before,
    .footer .phone-adress .email-footer-wrapper:before,
    .footer .phone-adress .adress-footer-wrapper:before {
      font-family: FontAwesome;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 20px;
      color: #676767;
      line-height: 1;
      width: 20px; }
  .footer .phone-adress .telphone-footer-wrapper:before {
    font-size: 22px; }
  .footer .phone-adress .adress-footer-wrapper:before {
    font-size: 22px;
    text-align: center; }
  .footer .footer-form-title {
    font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-align: right;
    color: #676767;
    margin-bottom: 35px; }
  .footer .contact-us-form .open_modal {
    font-family: LucidaGrande, Roboto, Arial, sans-serif;
    font-size: 22px;
    letter-spacing: 0.3px;
    text-align: center;
    color: #fff;
    background: #f9a51a;
    display: block;
    width: 270px;
    height: 70px;
    line-height: 70px;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0 -2px 19px 0 rgba(255, 255, 255, 0.5); }
    .footer .contact-us-form .open_modal:hover {
      background: #292929; }
  .footer .source-org {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: left;
    color: #999999;
    margin-bottom: 35px;
    float: left; }
  .footer .made-by {
    float: right;
    text-align: right;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #999999; }
    .footer .made-by .k-3soft {
      font-family: 'Roboto', sans-serif;
      font-size: 16px;
      margin-bottom: 35px;
      color: #272727; }
      .footer .made-by .k-3soft:hover {
        color: #f9a51a; }
  .footer .copy-menu {
    float: right; }
  .footer #menu-copyright-menu-footer {
    float: right; }
    .footer #menu-copyright-menu-footer li {
      float: left;
      width: auto; }
      .footer #menu-copyright-menu-footer li a {
        color: #272727;
        padding: 0 0 0 15px; }

.gform_body ul {
  list-style: none outside none;
  margin: 0; }

header.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%; }

.sub-row-section {
  padding-left: 150px;
  padding-right: 140px; }

.title-home {
  font-family: FuturaStd-Book;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #888888;
  padding-left: 55px;
  position: relative; }
  .title-home:after {
    content: '';
    width: 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    background: #888888; }

section.slider-home {
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  position: relative; }
  section.slider-home .slick-list.draggable {
    max-height: 100%;
    height: 100vh; }
  section.slider-home .slider-images-box {
    height: 100vh;
    max-height: 100%; }
    section.slider-home .slider-images-box img {
      display: block;
      float: right;
      height: 100%;
      width: auto; }
  section.slider-home .slider-home-wrapper {
    position: relative; }
    section.slider-home .slider-home-wrapper:before {
      content: '';
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      background: url("../images/mask.png") repeat; }
    section.slider-home .slider-home-wrapper:after {
      content: '';
      position: absolute;
      top: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(111deg, #989898, #3e3e3e);
      opacity: 0.8; }
  section.slider-home .slider-text-content {
    position: absolute;
    top: 60%;
    left: 49%;
    max-width: 1065px;
    z-index: 10;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  section.slider-home h2.slider-home-title {
    font-size: 38px;
    font-weight: bold;
    font-family: 'Futura-Bold', Roboto, Arial, sans-serif;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: left;
    color: #ffffff; }
    section.slider-home h2.slider-home-title:after {
      content: '';
      display: block;
      height: 1px;
      width: 40%;
      background: #fff;
      margin-top: 35px; }
  section.slider-home .sub-title-slider-home {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: left;
    color: #f8b13c; }
  section.slider-home .slick-dots {
    position: absolute;
    width: inherit;
    top: 50%;
    right: 120px;
    bottom: inherit;
    z-index: 5; }
    section.slider-home .slick-dots li {
      display: block; }
  section.slider-home .utp-social-block {
    position: absolute;
    right: 105px;
    bottom: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center; }
    section.slider-home .utp-social-block .telephone-utp {
      float: left;
      margin-right: 180px; }
      section.slider-home .utp-social-block .telephone-utp a {
        font-family: 'Roboto', sans-serif;
        padding-left: 30px;
        font-size: 16px;
        color: #fff; }
        section.slider-home .utp-social-block .telephone-utp a:before {
          font: normal normal normal 14px/1 FontAwesome;
          position: absolute;
          left: 0;
          font-size: 21px; }
  section.slider-home ul.social-block {
    list-style: none;
    float: right;
    margin: 0px;
    text-align: right;
    display: block; }
    section.slider-home ul.social-block li {
      float: left; }
      section.slider-home ul.social-block li a {
        color: #fff;
        font-size: 21px;
        margin-right: 15px; }

@keyframes timing {
  100% {
    top: 100%;
    margin-top: -5.6em; } }
  section.slider-home .scroll-down {
    position: absolute;
    left: 75px;
    bottom: 7%; }
    section.slider-home .scroll-down .scroll-animate {
      position: relative;
      height: 250px;
      width: 20px; }
    section.slider-home .scroll-down a {
      content: 'SCROLL DOWN';
      display: inline-block;
      position: absolute;
      left: 0;
      top: .2em;
      width: 9em;
      height: 27px;
      font-size: 15px;
      letter-spacing: 0.3px;
      animation: timing 5s infinite;
      color: #FFF;
      transform: rotate(-90deg);
      animation-direction: alternate-reverse; }
      section.slider-home .scroll-down a:before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        position: absolute;
        top: 35%;
        left: -50%;
        background: linear-gradient(to left, #969696, #ffffff); }
  section.slider-home .counter-number {
    display: block;
    margin-bottom: 60px;
    z-index: 3;
    color: #ffffff;
    font-size: 55px;
    line-height: 1;
    font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif; }
    section.slider-home .counter-number span.number-cc {
      float: left;
      display: block; }
    section.slider-home .counter-number span.number-cc-end {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 22px;
      float: right;
      padding: 5px; }

.home-tabs .tabs-dual {
  display: table;
  width: 100%;
  margin: 0;
  list-style-type: none; }

.home-tabs .dual-title {
  float: none;
  display: table-cell;
  vertical-align: middle;
  width: 480px;
  height: 130px;
  /* line-height: 200px; */
  text-align: left;
  background: #f6eee2;
  position: relative; }
  .home-tabs .dual-title:before {
    position: absolute;
    content: '';
    z-index: 2;
    top: 0;
    /* left: 0; */
    right: -60px;
    width: 0;
    height: 0;
    border-top: 65px solid transparent;
    border-left: 60px solid #f6eee2;
    border-bottom: 65px solid transparent; }
  .home-tabs .dual-title:after {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    /* left: 0; */
    right: -62px;
    width: 0;
    height: 0;
    border-top: 65px solid transparent;
    border-left: 60px solid #fff;
    border-bottom: 65px solid transparent; }
  .home-tabs .dual-title a {
    font-family: 'AvenirNext';
    font-size: 22px;
    font-weight: 600;
    height: 100%;
    display: block;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 4;
    color: #444446;
    text-transform: uppercase; }
  .home-tabs .dual-title .t-text {
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }
  .home-tabs .dual-title img {
    height: 75px;
    width: 30%;
    max-width: 100px;
    position: absolute;
    top: 50%; }

.home-tabs .dual-title.selected {
  background: #f8b13d;
  color: #fff; }
  .home-tabs .dual-title.selected a {
    color: #fff; }
  .home-tabs .dual-title.selected:before {
    border-left: 60px solid #f8b13d; }
  .home-tabs .dual-title.selected:after {
    border-left: 60px solid #fff; }

.home-tabs .tabs-wrapper {
  display: block;
  position: relative; }

.home-tabs .image-tab-wrapper {
  position: relative;
  max-width: 1200px;
  width: 45%;
  float: left; }
  .home-tabs .image-tab-wrapper:before {
    content: '';
    width: 20px;
    height: 600px;
    position: absolute;
    display: block;
    background: #fff;
    right: 90px;
    bottom: 47.2%;
    /* top: -9px; */
    z-index: 12;
    transform: rotate(-18deg);
    box-shadow: 3px 4px 18px 0 rgba(226, 226, 226, 0.5); }
  .home-tabs .image-tab-wrapper:after {
    content: '';
    width: 20px;
    height: 600px;
    position: absolute;
    display: block;
    background: #fff;
    right: 90px;
    top: 47.2%;
    /* top: -9px; */
    z-index: 12;
    transform: rotate(18deg);
    box-shadow: 3px 4px 18px 0 rgba(226, 226, 226, 0.5); }
  .home-tabs .image-tab-wrapper .border-top-tabs {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-top: 315px solid #fff;
    border-left: 120px solid transparent;
    z-index: 11;
    right: 0;
    top: 0; }
  .home-tabs .image-tab-wrapper .border-bottom-tabs {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-bottom: 315px solid #fff;
    border-left: 120px solid transparent;
    z-index: 11;
    right: 0;
    bottom: 0px; }
  .home-tabs .image-tab-wrapper .img-tab-content {
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 630px; }
  .home-tabs .image-tab-wrapper img {
    position: absolute;
    bottom: 0;
    display: block;
    width: auto;
    max-width: none;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }

.home-tabs .tab-content-wrapper {
  position: relative;
  width: 55%;
  padding-left: 40px;
  padding-right: 125px;
  float: right; }
  .home-tabs .tab-content-wrapper .tab-content-box {
    height: 100%;
    position: relative;
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: right;
    align-items: right;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 50px 0; }
  .home-tabs .tab-content-wrapper .tab-top-box {
    position: relative;
    margin-bottom: 50px;
    padding-right: 70px;
    font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.11;
    letter-spacing: 0.4px;
    text-align: right;
    color: #888888;
    white-space: nowrap; }
    .home-tabs .tab-content-wrapper .tab-top-box:after {
      width: 55px;
      height: 2px;
      background: #888888;
      content: '';
      display: block;
      position: absolute;
      right: 0;
      bottom: 7px; }
  .home-tabs .tab-content-wrapper .tab-mid-box {
    position: relative;
    width: 100%;
    padding-bottom: 50px; }
    .home-tabs .tab-content-wrapper .tab-mid-box p {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 22px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.09;
      letter-spacing: 0.4px;
      text-align: right;
      color: #838383; }
  .home-tabs .tab-content-wrapper .tab-bottom-box {
    position: relative;
    padding-top: 25px; }
    .home-tabs .tab-content-wrapper .tab-bottom-box a {
      font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
      font-size: 16px;
      font-weight: bold;
      line-height: 2.25;
      letter-spacing: 0.2px;
      color: #f8b13c;
      position: relative; }
      .home-tabs .tab-content-wrapper .tab-bottom-box a:before {
        content: '';
        width: 300%;
        height: 1px;
        top: -25px;
        position: absolute;
        background: #d9d9d9; }

.about-duallayer .about-dll-left {
  padding: 0 80px 0 125px; }
  .about-duallayer .about-dll-left .abt-sub-title {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.2px;
    text-align: left;
    color: #888888;
    position: relative;
    padding: 10px 50px 20px 0px; }
    .about-duallayer .about-dll-left .abt-sub-title .abt-sub-box {
      position: relative;
      padding-left: 55px; }
      .about-duallayer .about-dll-left .abt-sub-title .abt-sub-box:before {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background: #888888;
        position: absolute;
        left: 0;
        bottom: 16px; }
  .about-duallayer .about-dll-left .abt-title-content {
    font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
    font-size: 38px;
    line-height: 1.13;
    letter-spacing: 0.1px;
    text-align: left;
    color: #000000;
    padding: 20px 0 40px; }
  .about-duallayer .about-dll-left .abt-dll-content {
    padding: 0px 0 50px; }
  .about-duallayer .about-dll-left .abt-dll-content, .about-duallayer .about-dll-left .abt-dll-content p {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.09;
    letter-spacing: 0.3px;
    text-align: justify;
    color: #787878; }
  .about-duallayer .about-dll-left .abt-dll-link {
    padding-bottom: 30px; }
    .about-duallayer .about-dll-left .abt-dll-link a {
      position: relative;
      font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
      font-size: 18px;
      font-weight: bold;
      line-height: 2.25;
      letter-spacing: 0.2px;
      color: #f8b13c; }
      .about-duallayer .about-dll-left .abt-dll-link a:before {
        content: '';
        display: block;
        left: -200%;
        position: absolute;
        width: 300%;
        height: 1px;
        top: -5px;
        background: #d9d9d9; }

.about-duallayer .about-dll-right {
  position: relative;
  text-align: left;
  min-height: 750px;
  overflow: hidden; }
  .about-duallayer .about-dll-right img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0; }

section.our-team-testimonials {
  overflow: hidden; }
  section.our-team-testimonials .home-title-box {
    padding: 70px 0;
    z-index: 2;
    position: relative; }
  section.our-team-testimonials .bg-our-team {
    height: 100%;
    display: table;
    position: relative;
    z-index: 0;
    padding: 0 100px 0px 125px; }
    section.our-team-testimonials .bg-our-team:before {
      content: '';
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%;
      background: url(../images/mask.png) repeat;
      top: 0;
      left: 0;
      opacity: 0.6;
      /* IE 8 */
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
      /* IE 5-7 */
      filter: alpha(opacity=60);
      /* Netscape */
      -moz-opacity: 0.6;
      /* Safari 1.x */
      -khtml-opacity: 0.6; }
    section.our-team-testimonials .bg-our-team:after {
      content: '';
      width: 100%;
      height: 100%;
      z-index: 0;
      background: rgba(236, 156, 23, 0.9);
      display: block;
      position: absolute;
      top: 0;
      left: 0; }
  section.our-team-testimonials .title-our-team .title-home {
    color: #fff; }
    section.our-team-testimonials .title-our-team .title-home:after {
      background: #fff; }
  section.our-team-testimonials .sc-our-team-content {
    display: table-row;
    vertical-align: middle; }
  section.our-team-testimonials .sc-our-team-content,
  section.our-team-testimonials .sc-our-team-content p {
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    z-index: 2;
    position: relative; }
  section.our-team-testimonials .our-team-link {
    position: absolute;
    bottom: 60px;
    left: 125px;
    z-index: 2; }
    section.our-team-testimonials .our-team-link a {
      font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
      font-size: 18px;
      line-height: 2;
      letter-spacing: 0.2px;
      text-align: left;
      color: #fff; }
      section.our-team-testimonials .our-team-link a:before {
        width: 300%;
        height: 1px;
        background: #fff;
        content: '';
        display: block;
        position: absolute;
        left: -200%; }
  section.our-team-testimonials .home-testimonials-box {
    overflow: hidden;
    padding-left: 20px;
    padding-right: 125px;
    position: relative; }
    section.our-team-testimonials .home-testimonials-box .home-title-box {
      padding-left: 30px; }
    section.our-team-testimonials .home-testimonials-box .home-testimonials {
      padding-left: 30px;
      padding-right: 60px; }
      section.our-team-testimonials .home-testimonials-box .home-testimonials:before {
        content: '’’';
        display: block;
        font-family: 'LucidaGrande';
        font-size: 60px;
        line-height: 1;
        height: 25px;
        padding-bottom: 70px;
        font-weight: bold;
        letter-spacing: -6px;
        text-align: left;
        color: #888888; }
    section.our-team-testimonials .home-testimonials-box .wrapper-testimonials {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 28px;
      line-height: 1.07;
      letter-spacing: 0.4px;
      text-align: left;
      color: #787878;
      padding-bottom: 60px;
      margin-bottom: 45px;
      position: relative; }
      section.our-team-testimonials .home-testimonials-box .wrapper-testimonials .testimonial-name {
        position: absolute;
        right: -60px;
        bottom: 0;
        font-size: 17px;
        line-height: 1;
        letter-spacing: 0.4px;
        color: #888888; }
    section.our-team-testimonials .home-testimonials-box .slider-testtimonial {
      margin-bottom: 50px;
      padding-bottom: 70px; }
    section.our-team-testimonials .home-testimonials-box .slick-dots {
      bottom: 15px;
      width: 27%;
      right: 50px; }
      section.our-team-testimonials .home-testimonials-box .slick-dots li {
        display: inline-block;
        margin: 0 5px; }
        section.our-team-testimonials .home-testimonials-box .slick-dots li button {
          margin: auto; }
    section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow,
    section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow {
      bottom: 0px;
      border-radius: 50%;
      background: #f8b13d;
      top: inherit;
      transform: none;
      left: inherit; }
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:after, section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:before,
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:after,
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:before {
        content: '';
        width: 20px;
        height: 2px;
        position: absolute;
        background: #fff;
        display: block; }
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:hover,
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:hover {
        background: #272727; }
    section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow {
      right: 0; }
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:before {
        transform: rotate(45deg);
        top: 36%;
        left: 35%; }
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:after {
        transform: rotate(-45deg);
        top: 62%;
        left: 35%; }
    section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow {
      right: 35%; }
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:before {
        transform: rotate(-45deg);
        top: 36%;
        left: 30%; }
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:after {
        transform: rotate(45deg);
        top: 62%;
        left: 30%; }
    section.our-team-testimonials .home-testimonials-box .testimonials-home-link {
      position: absolute;
      bottom: 60px;
      left: 50px; }
      section.our-team-testimonials .home-testimonials-box .testimonials-home-link a {
        font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
        font-size: 18px;
        line-height: 2;
        letter-spacing: 0.2px;
        text-align: left;
        color: #f8b13c; }
        section.our-team-testimonials .home-testimonials-box .testimonials-home-link a:before {
          width: 200%;
          height: 1px;
          background: #d9d9d9;
          content: '';
          display: block;
          position: absolute;
          left: -100%; }

section.progress-section .progress-wrapper {
  padding: 90px 0 200px; }

section.progress-section ul.number-progress-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  list-style: none; }
  section.progress-section ul.number-progress-box .number-wrapper {
    padding: 80px 30px;
    text-align: center;
    max-width: 380px; }
    section.progress-section ul.number-progress-box .number-wrapper:hover {
      box-shadow: 0 0 7px 0 #dec396; }
  section.progress-section ul.number-progress-box .number-box span {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 2.2px;
    color: #f5a623; }
  section.progress-section ul.number-progress-box .number-title-box {
    font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
    font-size: 27px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.4px;
    color: #000000;
    position: relative;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 25px; }
    section.progress-section ul.number-progress-box .number-title-box:after {
      content: '';
      display: block;
      position: absolute;
      margin: auto;
      width: 160px;
      height: 1px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #e2e2e2; }
  section.progress-section ul.number-progress-box .number-content-box {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.12;
    letter-spacing: -0.4px;
    text-align: center;
    color: #818181; }

section.home-new {
  box-shadow: 0 0 14px 0 rgba(236, 236, 236, 0.5);
  position: relative;
  padding-bottom: 100px; }
  section.home-new .title-home-new {
    margin: 50px 15px 50px; }
  section.home-new .home-news-box {
    float: left;
    display: block;
    width: 25%; }
    section.home-new .home-news-box .news-time-publish {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 14px;
      line-height: 1.86;
      letter-spacing: normal;
      text-align: left;
      color: #969696;
      padding: 35px 0; }
    section.home-new .home-news-box h2.title-home-news {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 28px;
      line-height: 1.04;
      letter-spacing: 1px;
      text-align: left;
      color: #000000; }
  section.home-new .home-news-images {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    height: 465px;
    box-shadow: 0 0 8px 0 rgba(218, 218, 218, 0.5); }
    section.home-new .home-news-images img {
      height: 465px;
      display: block;
      position: absolute;
      top: 50%;
      Left: 50%;
      transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      max-width: inherit;
      margin: auto; }
  section.home-new span.line-vertivale {
    width: 1px;
    position: absolute;
    height: 100%;
    display: block;
    background: rgba(220, 220, 220, 0.3);
    top: 0; }
  section.home-new .line-vertivale-01 {
    left: 25%; }
  section.home-new .line-vertivale-02 {
    left: 50%; }
  section.home-new .line-vertivale-03 {
    left: 75%; }
  section.home-new .news-home-link {
    text-align: right;
    position: relative; }
    section.home-new .news-home-link a {
      font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
      font-size: 18px;
      font-weight: bold;
      line-height: 2;
      letter-spacing: 0.2px;
      text-align: left;
      color: #f8b13c;
      position: relative;
      right: 0; }
      section.home-new .news-home-link a:before {
        content: '';
        width: 200%;
        height: 1px;
        background: #d9d9d9;
        position: absolute;
        right: -100%; }
  section.home-new .scrollme {
    perspective: 600px;
    position: relative;
    height: 100%;
    overflow: hidden;
    padding-bottom: 50px; }

section.dll-partners-home {
  position: relative; }
  section.dll-partners-home .title-home-partners {
    margin: 75px 15px 50px; }
  section.dll-partners-home .partners-home-wrapper {
    list-style-type: none;
    margin: auto;
    border-top: 1px solid rgba(220, 220, 220, 0.3);
    border-bottom: 1px solid rgba(220, 220, 220, 0.3);
    position: relative;
    margin-bottom: 60px; }
    section.dll-partners-home .partners-home-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      background: rgba(220, 220, 220, 0.3);
      width: 100%;
      height: 1px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
    section.dll-partners-home .partners-home-wrapper .partners-box {
      text-align: center;
      line-height: 100px;
      margin: 0;
      padding: 20px; }
      section.dll-partners-home .partners-home-wrapper .partners-box:hover {
        background: #f8b13d; }
        section.dll-partners-home .partners-home-wrapper .partners-box:hover .pt-no-hover {
          height: 0;
          position: absolute; }
        section.dll-partners-home .partners-home-wrapper .partners-box:hover .pt-hover {
          height: inherit;
          position: relative; }
    section.dll-partners-home .partners-home-wrapper .partners-link {
      display: block;
      margin: auto;
      position: relative; }
      section.dll-partners-home .partners-home-wrapper .partners-link .pt-hover {
        height: 0px;
        position: absolute; }
  section.dll-partners-home span.line-vertivale {
    width: 1px;
    position: absolute;
    height: 100%;
    display: block;
    background: rgba(220, 220, 220, 0.3);
    top: 0; }
  section.dll-partners-home .line-vertivale-01 {
    left: 25%; }
  section.dll-partners-home .line-vertivale-02 {
    left: 50%; }
  section.dll-partners-home .line-vertivale-03 {
    left: 75%; }

.line-vertivale {
  width: 1px;
  position: absolute;
  height: 100%;
  display: block;
  background: rgba(220, 220, 220, 0.3);
  top: 0;
  z-index: -1; }

.line-vertivale-01 {
  left: 25%; }

.line-vertivale-02 {
  left: 50%; }

.line-vertivale-03 {
  left: 75%; }

section.section-remote-support {
  padding-top: 150px;
  padding-bottom: 75px; }
  section.section-remote-support .title-sc-one {
    padding-bottom: 60px; }

.content-text {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 0.9px;
  text-align: justify;
  color: #595959; }

.page-navigation {
  margin: 0;
  padding-bottom: 55px; }

.pagination li.current {
  position: relative;
  background: none;
  color: #5b5b5b; }
  .pagination li.current:after {
    content: '';
    height: 3px;
    width: 20px;
    background: #f7a41a;
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }

.pagination li {
  font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.2px;
  text-align: left;
  color: #5b5b5b;
  position: relative; }
  .pagination li:first-child, .pagination li:last-child {
    display: none; }
  .pagination li a {
    font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.2px;
    text-align: left;
    color: #5b5b5b;
    position: relative; }
    .pagination li a:after {
      transition: all .2s ease-in-out; }
    .pagination li a:hover {
      background: none; }
      .pagination li a:hover:after {
        content: '';
        height: 3px;
        width: 20px;
        background: #f7a41a;
        position: absolute;
        top: 50%;
        Left: 50%;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%); }

section.section-header-other-page .background-section-other-page {
  height: 700px;
  position: relative;
  z-index: 1; }
  section.section-header-other-page .background-section-other-page:after {
    background-image: linear-gradient(104deg, #989898, #3e3e3e);
    opacity: 0.8;
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1; }

section.section-header-other-page .other-header-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

section.section-header-other-page .other-header-title {
  font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0.1px;
  text-align: left;
  color: #ffffff;
  padding-bottom: 30px;
  margin: 0; }

section.section-header-other-page .other-header-sub-title {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #ffffff;
  padding-top: 25px; }

.title-other-page {
  font-family: FuturaStd-Book;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #313131;
  padding-left: 55px;
  position: relative; }
  .title-other-page:after {
    content: '';
    width: 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    background: #313131; }

.slick-dots-arrow .slick-prev:hover,
.slick-dots-arrow .slick-prev:focus,
.slick-dots-arrow .slick-next:hover,
.slick-dots-arrow .slick-next:focus {
  background: #292929; }

.slick-dots-arrow .slick-arrow {
  border-radius: 50%;
  background: #f8b13d;
  bottom: -160px; }
  .slick-dots-arrow .slick-arrow:after, .slick-dots-arrow .slick-arrow:before {
    content: '';
    width: 20px;
    height: 2px;
    position: absolute;
    background: #fff;
    display: block; }

.slick-dots-arrow .slick-prev {
  top: inherit;
  transform: none;
  left: inherit;
  right: 35%; }
  .slick-dots-arrow .slick-prev:before {
    transform: rotate(-45deg);
    top: 36%;
    left: 30%; }
  .slick-dots-arrow .slick-prev:after {
    transform: rotate(45deg);
    top: 62%;
    left: 30%; }

.slick-dots-arrow .slick-next {
  top: inherit;
  transform: none;
  left: inherit;
  right: 0; }
  .slick-dots-arrow .slick-next:before {
    transform: rotate(45deg);
    top: 36%;
    left: 35%; }
  .slick-dots-arrow .slick-next:after {
    transform: rotate(-45deg);
    top: 62%;
    left: 35%; }

.slick-dots-arrow .slick-dots {
  width: 28%;
  height: 35px;
  right: 50px;
  bottom: -160px; }
  .slick-dots-arrow .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    vertical-align: top; }

section.section-company {
  position: relative;
  padding-top: 150px;
  padding-bottom: 130px; }
  section.section-company .title-sc-company {
    padding-top: 60px; }
  section.section-company .title-home {
    color: #313131; }
    section.section-company .title-home:after {
      background: #313131; }
  section.section-company .section-cc-slider {
    position: relative;
    padding-left: 0; }
    section.section-company .section-cc-slider .cc-sl-wrap-box {
      padding: 100px 100px 0 0px; }
    section.section-company .section-cc-slider .cc-slider-wrapper {
      padding-bottom: 160px; }
      section.section-company .section-cc-slider .cc-slider-wrapper .slick-dots,
      section.section-company .section-cc-slider .cc-slider-wrapper .slick-arrow {
        bottom: 0; }
  section.section-company .cc-slider-content {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.27;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #595959; }
  section.section-company .section-cc-image {
    text-align: right;
    padding-right: 0; }

section.section-our-team-company {
  position: relative;
  padding: 170px 0 140px 0;
  overflow: hidden; }
  section.section-our-team-company .title-other-page {
    color: #fff; }
    section.section-our-team-company .title-other-page:after {
      background: #fff; }
  section.section-our-team-company .our-team-block {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #ffffff; }
  section.section-our-team-company .title-sc-our-team {
    padding-bottom: 100px; }
  section.section-our-team-company .left-block-company-our-team {
    padding-left: 0; }
  section.section-our-team-company .right-block-company-our-team {
    padding-right: 0; }
  section.section-our-team-company .right-block-testimonials {
    position: relative; }
  section.section-our-team-company .our-team-falsh-block {
    background: #ec9c17;
    opacity: 0.92;
    position: absolute;
    height: 100%;
    width: 75%;
    top: 0;
    right: 0;
    z-index: -1; }
  section.section-our-team-company .slider-our-team-wrapper {
    margin: 0; }
  section.section-our-team-company .slick-dots-arrow .slick-arrow {
    background: rgba(255, 255, 255, 0.75);
    bottom: -100px; }
    section.section-our-team-company .slick-dots-arrow .slick-arrow:before, section.section-our-team-company .slick-dots-arrow .slick-arrow:after {
      background: rgba(245, 166, 35, 0.75); }
  section.section-our-team-company .slick-dots-arrow .slick-dots {
    bottom: -100px; }
    section.section-our-team-company .slick-dots-arrow .slick-dots li button {
      background: #fff; }
    section.section-our-team-company .slick-dots-arrow .slick-dots .slick-active button {
      background: #fff; }
      section.section-our-team-company .slick-dots-arrow .slick-dots .slick-active button:before {
        border-color: #fff; }
  section.section-our-team-company .line-vertivale {
    z-index: -2; }

section.section-our-commitment {
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding: 140px 0 170px 0;
  background: #fff;
  box-shadow: 0 0 14px 0 rgba(236, 236, 236, 0.5); }
  section.section-our-commitment .block-commitment,
  section.section-our-commitment .our-commitment-box {
    display: inline-block;
    vertical-align: middle; }
  section.section-our-commitment .our-commitment-wrapper {
    display: table;
    vertical-align: middle; }
  section.section-our-commitment .our-commitment-content-wrapper {
    display: table-cell;
    vertical-align: middle; }
  section.section-our-commitment .title-sc-our-commitment {
    padding-bottom: 70px; }
  section.section-our-commitment .content-box {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.27;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #5a5a5a; }

.sr-content-box-goal,
.content-services-box {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 0.9px;
  text-align: justify;
  color: #595959; }

section.section-services-goal {
  padding-top: 160px;
  padding-bottom: 30px; }
  section.section-services-goal .title-sc-goal {
    padding-top: 80px;
    padding-bottom: 50px; }
  section.section-services-goal .sr-content-box-goal {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.27;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #595959; }

section.services-our-services .wrapper-srs-content {
  padding-top: 130px;
  padding-bottom: 245px; }

section.services-our-services .title-sc-our-services {
  padding-top: 50px;
  padding-bottom: 50px; }

section.services-our-services .services-box-repeater {
  margin: 0 auto; }
  section.services-our-services .services-box-repeater:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0; }

section.services-our-services .services-wrapper {
  width: 32%;
  height: 425px;
  float: left;
  position: relative;
  box-shadow: 0 0 8px 0 rgba(189, 189, 189, 0.5);
  margin: 1%; }
  section.services-our-services .services-wrapper a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'AvenirNext';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: 0.4px;
    text-align: center;
    color: #f0a832;
    text-transform: uppercase;
    transition: all .2s ease-in-out; }
    section.services-our-services .services-wrapper a:before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      display: block;
      background: rgba(33, 26, 8, 0.6);
      transition: all .2s ease-in-out; }
    section.services-our-services .services-wrapper a:hover:before {
      background: rgba(249, 165, 26, 0.6); }
    section.services-our-services .services-wrapper a:hover .icon-title-services-wrapper {
      opacity: 0;
      visibility: hidden; }
    section.services-our-services .services-wrapper a:hover .add-description-services {
      opacity: 1;
      visibility: visible; }
  section.services-our-services .services-wrapper .ser-hover {
    display: none; }

section.services-our-services .services-1,
section.services-our-services .services-4,
section.services-our-services .services-6,
section.services-our-services .services-9,
section.services-our-services .services-12 {
  margin-left: 0; }

section.services-our-services .services-8,
section.services-our-services .services-11,
section.services-our-services .services-14 {
  margin-right: 0;
  float: right; }

section.services-our-services .services-3 {
  height: 884px;
  float: right;
  margin-right: 0; }
  section.services-our-services .services-3 span.icon-title-services-wrapper {
    top: 50%; }

section.services-our-services span.icon-title-services-wrapper {
  opacity: 1;
  position: absolute;
  width: 100%;
  padding: 0 20px;
  top: 60%;
  Left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  transition: all .2s ease-in-out; }

section.services-our-services span.add-description-services {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-weight: normal;
  opacity: 0;
  position: absolute;
  width: 100%;
  padding: 0 20px;
  top: 50%;
  font-size: 18px;
  Left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  text-transform: none;
  color: #fff;
  transition: all .2s ease-in-out; }

section.services-our-services .icon-services-box {
  display: block;
  padding-bottom: 60px; }

section.services-our-services .icon-services-box,
section.services-our-services .title-services-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center; }

section.section-what-we-do {
  padding: 150px 0 85px; }
  section.section-what-we-do .section-what-we-do-image img {
    box-shadow: 0 0 8px 0 rgba(218, 218, 218, 0.5); }
  section.section-what-we-do .title-sc-what-we-do {
    padding: 10px 0 100px; }
  section.section-what-we-do .what-we-do-content {
    max-width: 830px; }
  section.section-what-we-do .link-services-sin-pg-box {
    padding-top: 140px;
    position: relative; }
  section.section-what-we-do .link-services-sin-pg {
    position: relative;
    font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 2.25;
    letter-spacing: 0.2px;
    color: #f8b13c; }
    section.section-what-we-do .link-services-sin-pg:before {
      content: '';
      display: block;
      left: -200%;
      position: absolute;
      width: 300%;
      height: 1px;
      top: -5px;
      background: #d9d9d9; }

section.section-singl-services-2 {
  position: relative;
  padding: 100px 0 100px 0;
  overflow: hidden; }
  section.section-singl-services-2 .left-block-singl-services-3 {
    position: relative;
    z-index: 2; }
  section.section-singl-services-2 .right-block-singl-services-3 {
    position: relative;
    z-index: 4; }
  section.section-singl-services-2 .our-falsh-block2 {
    position: absolute;
    height: 100%;
    width: 75%;
    top: 0;
    right: 0;
    z-index: 3; }
    section.section-singl-services-2 .our-falsh-block2:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0.92; }
    section.section-singl-services-2 .our-falsh-block2 .falsh-box-1 {
      display: block;
      position: absolute;
      width: 33.5%;
      height: 100%;
      top: 0;
      left: 0; }
      section.section-singl-services-2 .our-falsh-block2 .falsh-box-1:before, section.section-singl-services-2 .our-falsh-block2 .falsh-box-1:after {
        position: absolute;
        top: 0;
        content: '';
        display: block;
        height: 100%; }
      section.section-singl-services-2 .our-falsh-block2 .falsh-box-1:before {
        left: -1px;
        width: 100%;
        background: #c38216;
        -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 100%, 100% 100%); }
      section.section-singl-services-2 .our-falsh-block2 .falsh-box-1:after {
        background: #f5a623;
        background-image: url(../images/Rectangle-sing.png);
        width: 100%;
        height: 100%;
        -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 100%, 100% 100%); }
  section.section-singl-services-2 .our-falsh-block-1 {
    position: absolute;
    height: 100%;
    width: 75%;
    top: 0;
    right: 0;
    z-index: 0;
    background: #f5a623;
    box-shadow: 0 0 8px 0 rgba(183, 183, 183, 0.5); }
    section.section-singl-services-2 .our-falsh-block-1:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-image: url("../images/Rectangle-sing.png");
      opacity: 0.92; }
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2 {
      left: 33.4%; }
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3 {
      left: 66.7%; }
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2,
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3 {
      display: block;
      position: absolute;
      width: 33.5%;
      height: 100%;
      top: 0; }
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2:before, section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2:after,
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3:before,
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3:after {
        position: absolute;
        top: 0;
        content: '';
        display: block;
        height: 100%; }
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2:before,
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3:before {
        left: -1px;
        width: 100%;
        background: #c38216;
        -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 100%, 100% 100%); }
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2:after,
      section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3:after {
        background: #f5a623;
        background-image: url(../images/Rectangle-sing.png);
        width: 100%;
        height: 100%;
        -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 100%, 100% 100%); }
  section.section-singl-services-2 .sight-block-singl-services-3 {
    position: relative; }
  section.section-singl-services-2 .singl-page-services-content-3 {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #ffffff; }

section.section-singl-services-part-2 {
  padding: 100px 0;
  margin-top: 100px;
  position: relative;
  z-index: 1;
  color: #fff; }
  section.section-singl-services-part-2:before {
    position: absolute;
    /* background: rgba(0, 0, 0, 0.9); */
    background-image: url(../images/Rectangle-sing.png);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1; }
  section.section-singl-services-part-2:after {
    position: absolute;
    /* background: rgba(0, 0, 0, 0.9); */
    left: 0;
    background: rgba(249, 165, 26, 0.9);
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -2; }
  section.section-singl-services-part-2 .services-part-2-wrapper {
    padding: 25px 0; }
  section.section-singl-services-part-2 .content-block-sss-p-2 {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: 0.9px;
    color: #ffffff;
    padding-top: 20px; }

section.section-our-services {
  padding-top: 180px; }
  section.section-our-services .singl-services-wrapper {
    list-style-type: none;
    margin: auto;
    border-top: 1px solid rgba(220, 220, 220, 0.3);
    border-bottom: 1px solid rgba(220, 220, 220, 0.3);
    position: relative;
    margin-top: 95px;
    margin-bottom: 150px; }
    section.section-our-services .singl-services-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      background: rgba(220, 220, 220, 0.3);
      width: 100%;
      height: 1px;
      top: 50%;
      transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
    section.section-our-services .singl-services-wrapper .services-box {
      position: relative;
      text-align: center;
      line-height: 100px;
      margin: 0; }
      section.section-our-services .singl-services-wrapper .services-box:hover {
        background: #f8b13d; }
        section.section-our-services .singl-services-wrapper .services-box:hover:after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          background: #f8b13d;
          position: absolute;
          top: 0;
          left: 0;
          z-index: -1; }
    section.section-our-services .singl-services-wrapper .services-singl-1:hover:after,
    section.section-our-services .singl-services-wrapper .services-singl-5:hover:after,
    section.section-our-services .singl-services-wrapper .services-singl-10:hover:after {
      left: -100%; }
    section.section-our-services .singl-services-wrapper .services-singl-4:hover:after,
    section.section-our-services .singl-services-wrapper .services-singl-8:hover:after,
    section.section-our-services .singl-services-wrapper .services-singl-12:hover:after {
      right: -100%;
      left: inherit; }
    section.section-our-services .singl-services-wrapper a.singl-services-link {
      display: inline-block;
      margin: auto;
      position: relative;
      line-height: 140px;
      width: 100%;
      height: 100%;
      color: #444446;
      text-align: left; }
      section.section-our-services .singl-services-wrapper a.singl-services-link:hover {
        color: #fff; }
        section.section-our-services .singl-services-wrapper a.singl-services-link:hover .services-no-hover {
          display: none; }
        section.section-our-services .singl-services-wrapper a.singl-services-link:hover .services-hover {
          display: inline-block; }
    section.section-our-services .singl-services-wrapper .services-hover {
      display: none; }
  section.section-our-services span.title-other-services-page {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    padding-left: 10px;
    font-family: AvenirNext;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.4px; }

.article-wrapper {
  padding: 120px 0 80px 0;
  overflow: hidden; }

.blog-post-title {
  margin-bottom: 50px; }

.blog-post-header a {
  box-shadow: 0 0 8px 0 rgba(218, 218, 218, 0.5); }

.blog-post-title,
.blog-post-title a {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: 1.2px;
  color: #282828; }

.blog-post-content {
  position: relative; }

.blog-post-wrapper {
  position: absolute;
  width: 100%;
  padding: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

.blog-post-content-box {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 1.6px;
  text-align: justify;
  color: #666666;
  margin-bottom: 50px; }

a.blog-link-page {
  font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: 0.2px;
  color: #f7a41a;
  position: relative;
  padding-left: 51%;
  display: block; }
  a.blog-link-page:before {
    content: '';
    display: block;
    position: absolute;
    width: 49%;
    height: 1px;
    background: #f7a41a;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all .2s ease-in-out; }
  a.blog-link-page:hover {
    color: #282828; }
    a.blog-link-page:hover:before {
      background: #282828; }

#main .article-wrapper:nth-child(even) .blog-post-header {
  float: right; }

#main .article-wrapper:nth-child(even) .blog-post-content {
  float: left; }

.single-post div#content {
  padding-top: 100px; }

.single-content-22 {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 1.1px;
  text-align: justify;
  color: #666666; }

section.single-page-sc-one {
  overflow: hidden;
  padding-bottom: 100px; }
  section.single-page-sc-one .singl-post-image {
    box-shadow: 0 0 8px 0 rgba(218, 218, 218, 0.5);
    position: relative; }
  section.single-page-sc-one .sing-post-entry-content-wrapper {
    width: 47%; }
  section.single-page-sc-one .navigation-single-page {
    background: #f9a51a;
    height: 100px;
    position: absolute;
    right: 0px;
    bottom: 0;
    z-index: 2; }
    section.single-page-sc-one .navigation-single-page .pre-post-sing-page {
      font-size: 0px;
      display: block;
      float: left;
      width: 145px;
      height: 100px; }
      section.single-page-sc-one .navigation-single-page .pre-post-sing-page a {
        font-size: 0px;
        height: 100%;
        width: 100%;
        display: block;
        position: relative;
        background: #f9a51a; }
        section.single-page-sc-one .navigation-single-page .pre-post-sing-page a:before {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          background: url(../images/if_Arrow_Forward_pre.png) 50% 50% no-repeat; }
        section.single-page-sc-one .navigation-single-page .pre-post-sing-page a:hover {
          background: #272727; }
    section.single-page-sc-one .navigation-single-page .next-post-sing-page {
      font-size: 0px;
      display: block;
      float: left;
      width: 145px;
      height: 100px; }
      section.single-page-sc-one .navigation-single-page .next-post-sing-page a {
        font-size: 0px;
        height: 100%;
        width: 100%;
        display: block;
        position: relative;
        background: #f9a51a; }
        section.single-page-sc-one .navigation-single-page .next-post-sing-page a:before {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          background: url(../images/if_Arrow_Forward_next.png) 50% 50% no-repeat; }
        section.single-page-sc-one .navigation-single-page .next-post-sing-page a:hover {
          background: #272727; }
  section.single-page-sc-one .title-crate-time-singl {
    background: #353535;
    width: 100%;
    position: relative;
    margin-top: 55px; }
    section.single-page-sc-one .title-crate-time-singl .title-absolut {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      padding-left: 80px;
      padding-top: 30px;
      left: -25%;
      background: #353535;
      z-index: 0; }
  section.single-page-sc-one .sing-post-entry-content-wrapper {
    position: relative; }
  section.single-page-sc-one .single-title {
    font-family: 'FuturaStd-Bold', Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.9px;
    text-align: left;
    color: #ffffff;
    margin-bottom: 22px; }
  section.single-page-sc-one .post-info {
    overflow: hidden;
    padding: 129px 0 30px 0;
    z-index: 1;
    position: relative; }
    section.single-page-sc-one .post-info, section.single-page-sc-one .post-info a {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 16px;
      font-weight: normal;
      line-height: normal;
      letter-spacing: 1px;
      text-align: justify;
      color: #f6f6f6; }
  section.single-page-sc-one .sing-sc-1-content {
    padding-top: 70px; }

section.single-page-sc-two {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 30px 0; }
  section.single-page-sc-two:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(222, 146, 19, 0.92);
    z-index: -1; }
  section.single-page-sc-two .single-content-22 {
    color: #fff; }
  section.single-page-sc-two .sc-sing-page-two-right,
  section.single-page-sc-two .sc-sing-page-two-left {
    width: 47%; }
  section.single-page-sc-two .sc-sing-quote-text {
    font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: 0.9px;
    text-align: justify;
    color: #ffffff;
    display: block;
    padding: 40px 0 54px; }
    section.single-page-sc-two .sc-sing-quote-text:before {
      content: '’’';
      display: block;
      font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
      font-size: 49px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: -1px;
      text-align: justify;
      color: #ffffff;
      height: 30px; }

footer.singl-post-footer {
  padding: 45px 0 5px; }
  footer.singl-post-footer .text-share {
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.9px;
    color: #666666;
    display: block;
    float: left;
    padding-top: 5px; }
  footer.singl-post-footer .share-it {
    line-height: 1; }
    footer.singl-post-footer .share-it a {
      font-size: 28px;
      color: #6a6a6a;
      text-align: center;
      padding: 0 10px;
      display: block;
      float: left; }
      footer.singl-post-footer .share-it a:hover {
        color: #f8b13c; }
  footer.singl-post-footer .all-news {
    text-align: right; }
    footer.singl-post-footer .all-news a {
      font-family: LucidaGrande, Roboto, Arial, sans-serif;
      font-size: 18px;
      line-height: normal;
      letter-spacing: 1.1px;
      color: #6a6a6a;
      position: relative; }
      footer.singl-post-footer .all-news a:after {
        content: '';
        display: block;
        width: 200%;
        height: 2px;
        background: #6a6a6a;
        right: -200%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transition: all .2s ease-in-out; }
      footer.singl-post-footer .all-news a:hover {
        color: #f8b13c; }
        footer.singl-post-footer .all-news a:hover:after {
          background: #f8b13c; }

section.section-testimonials .testimonials-box {
  padding: 50px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center; }

section.section-testimonials .tesimonials-image {
  text-align: center; }

section.section-testimonials .page-navigation {
  text-align: right;
  padding-top: 100px;
  padding-bottom: 45px; }

section.section-testimonials .testimonials-content-box:before {
  content: '’’';
  display: block;
  height: 80px;
  font-family: LucidaGrande;
  font-size: 80px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: -9px;
  text-align: left;
  color: #272727; }

section.section-testimonials .content-box-testim {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0.9px;
  text-align: justify;
  color: #434343; }

section.section-testimonials .author-title-testimonials {
  font-size: 18px;
  line-height: 1.06;
  letter-spacing: 0.5px;
  text-align: right;
  color: #434343; }

section.section-contact-tel-adress {
  padding: 125px 0 130px; }
  section.section-contact-tel-adress .title-sc-contact-adress {
    padding-top: 15px; }
  section.section-contact-tel-adress .contact-wrapper-content {
    position: relative; }
  section.section-contact-tel-adress .box-contact-ph-em-loc {
    margin-top: 110px;
    padding: 80px 30px;
    position: absolute;
    width: 112%;
    z-index: 1;
    left: -3%;
    background: #fff;
    top: 0;
    box-shadow: 0 0 8px 0 rgba(181, 181, 181, 0.5); }
  section.section-contact-tel-adress .telphone-contact-wrapper,
  section.section-contact-tel-adress .email-contact-wrapper,
  section.section-contact-tel-adress .adress-contact-wrapper {
    display: block;
    padding-left: 40px;
    position: relative;
    text-align: left;
    margin-bottom: 40px;
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.24;
    letter-spacing: normal;
    text-align: left;
    color: #323232; }
    section.section-contact-tel-adress .telphone-contact-wrapper:before,
    section.section-contact-tel-adress .email-contact-wrapper:before,
    section.section-contact-tel-adress .adress-contact-wrapper:before {
      font-family: 'FontAwesome';
      position: absolute;
      left: 0;
      font-size: 22px;
      color: #323232;
      line-height: 1;
      width: 20px;
      top: 50%;
      transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
    section.section-contact-tel-adress .telphone-contact-wrapper a,
    section.section-contact-tel-adress .email-contact-wrapper a,
    section.section-contact-tel-adress .adress-contact-wrapper a {
      font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
      font-size: 17px;
      line-height: 1.24;
      letter-spacing: normal;
      text-align: left;
      color: #323232; }
      section.section-contact-tel-adress .telphone-contact-wrapper a:hover,
      section.section-contact-tel-adress .email-contact-wrapper a:hover,
      section.section-contact-tel-adress .adress-contact-wrapper a:hover {
        color: #f9a51a; }
  section.section-contact-tel-adress .adress-contact-wrapper {
    margin-bottom: 0; }
  section.section-contact-tel-adress .telphone-contact-wrapper:before,
  section.section-contact-tel-adress .adress-contact-wrapper:before {
    font-size: 25px;
    left: 3px; }

section.form-contact-us {
  background: #efefef;
  padding:10px 0 20px; 
  margin:0 0 50px 0px;
    
}
.address-group{
    padding:100px 0 200px 0;
}

.contact-form-dlit .gform_wrapper {
  max-width: 100%; }
  .contact-form-dlit .gform_wrapper form {
    overflow: hidden;
    position: relative; }
  .contact-form-dlit .gform_wrapper .top_label .gfield_error {
    width: 48%;
    position: relative;
    z-index: 1; }
  .contact-form-dlit .gform_wrapper li.gfield.gfield_error.gfield_contains_required.cont-us-mail {
    margin-bottom: 100px !important; }
  .contact-form-dlit .gform_wrapper li.gfield.gfield_error,
  .contact-form-dlit .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: none;
    border: none; }
  .contact-form-dlit .gform_wrapper .captcha-contact-us {
    width: 48%;
    float: left;
    clear: none;
    margin-top: 0;
    margin-bottom: 20px; }
    .contact-form-dlit .gform_wrapper .captcha-contact-us .gfield_label {
      display: none; }

.contact-form-dlit .gform_fields {
  overflow: hidden; }

.contact-form-dlit .cont-form label {
  display: none; }

.contact-form-dlit .cont-form input {
  width: 100% !important;
  height: 80px;
  margin-bottom: 20px; }

.contact-form-dlit .gform_wrapper input[type=email],
.contact-form-dlit .gform_wrapper input[type=number],
.contact-form-dlit .gform_wrapper input[type=password],
.contact-form-dlit .gform_wrapper input[type=tel],
.contact-form-dlit .gform_wrapper input[type=text],
.contact-form-dlit .gform_wrapper input[type=url],
.contact-form-dlit .gform_wrapper textarea {
  font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: left;
  color: #9d9d9d;
  border: 1px solid rgba(202, 202, 202, 0);
  box-shadow: none;
  padding: 25px !important; }

.contact-form-dlit [type='text']:focus,
.contact-form-dlit [type='password']:focus,
.contact-form-dlit [type='date']:focus,
.contact-form-dlit [type='datetime']:focus,
.contact-form-dlit [type='datetime-local']:focus,
.contact-form-dlit [type='month']:focus,
.contact-form-dlit [type='week']:focus,
.contact-form-dlit [type='email']:focus,
.contact-form-dlit [type='number']:focus,
.contact-form-dlit [type='search']:focus,
.contact-form-dlit [type='tel']:focus,
.contact-form-dlit [type='time']:focus,
.contact-form-dlit [type='url']:focus,
.contact-form-dlit [type='color']:focus,
.contact-form-dlit textarea:focus {
  border: 1px solid rgba(202, 202, 202, 0); }

.contact-form-dlit .cont-us-name {
  width: 48%;
  float: left;
  clear: none !important; }
  .contact-form-dlit .cont-us-name label.gfield_label {
    display: none; }

.contact-form-dlit .cont-us-telphone {
  width: 48%;
  float: left;
  clear: none !important; }
  .contact-form-dlit .cont-us-telphone label.gfield_label {
    display: none; }

.contact-form-dlit .cont-us-mail {
  float: left;
  width: 48%;
  clear: none !important; }
  .contact-form-dlit .cont-us-mail label.gfield_label {
    display: none; }

.contact-form-dlit .cont-us-mesage {
  float: right;
  width: 48%;
  clear: none !important; }
  .contact-form-dlit .cont-us-mesage label.gfield_label {
    display: none; }
  .contact-form-dlit .cont-us-mesage .textarea {
    height: 440px;
    width: 100%; }

.contact-form-dlit .gform_wrapper .gform_footer.top_label {
  width: 48%;
  padding: 0;
  bottom: 0;
  margin-top: 0; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
    width: 100%;
    height: 90px;
    background: #f9a51a;
    box-shadow: 0 -2px 19px 0 rgba(255, 255, 255, 0.5);
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.6px;
    color: #ffffff; }
    .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button:hover {
      background-color: #fef0d9;
      color: #f9a51a; }

.section-careers-one {
  padding-top: 155px; }
  .section-careers-one li.tabs-title.is-active .careers-box-img-content:after {
    background: rgba(255, 255, 255, 0);
    border: 2px solid #f9a51a; }
  .section-careers-one li.tabs-title.is-active span.text-careers-box {
    opacity: 0; }
  .section-careers-one .careers-box-img-content {
    height: 380px;
    position: relative;
    padding: 30px;
    transition: all .2s ease-in-out; }
    .section-careers-one .careers-box-img-content:after {
      content: '';
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      background: rgba(255, 255, 255, 0.62);
      z-index: 1;
      border: 2px solid rgba(249, 165, 26, 0);
      transition: all .2s ease-in-out; }
  .section-careers-one .text-careers-box {
    font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
    font-size: 31px;
    line-height: 1.23;
    letter-spacing: 0.8px;
    color: #474747;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    transition: all .2s ease-in-out; }
  .section-careers-one .content-box-text {
    line-height: 1.41;
    letter-spacing: 0.6px; }
  .section-careers-one .tabs-nav {
    padding-top: 100px;
    padding-bottom: 100px; }
    .section-careers-one .tabs-nav .tabs {
      border: none; }
  .section-careers-one .tabs-content {
    border: none; }
  .section-careers-one .tabs-panel {
    padding-top: 0;
    margin-bottom: 40px; }
  .section-careers-one .title-sc-one {
    padding-bottom: 60px; }
  .section-careers-one .title-sc-two {
    padding-bottom: 20px; }
  .section-careers-one span.mob-more-dateils {
    display: none; }

section.section-header-faq.section-header-other-page .other-header-title {
  font-family: 'LucidaGrande', Roboto, Arial, sans-serif; }

section.section-faq-one .sr-faq-wrapper-one {
  padding-top: 50px; }

section.section-faq-one .section-faq-wrapper {
  padding-top: 80px; }

section.section-faq-one .accordion {
  background: #fff;
  padding-bottom: 80px; }

section.section-faq-one .accordion-item {
  float: left;
  padding: 0 20px; }
  section.section-faq-one .accordion-item:nth-child(1) .accordion-title, section.section-faq-one .accordion-item:nth-child(2) .accordion-title {
    border-top: 1px solid #e8e8e8; }

section.section-faq-one .accordion-item.is-active .accordion-title {
  border-bottom: 0px; }
  section.section-faq-one .accordion-item.is-active .accordion-title:before {
    transform: rotate(90deg); }

section.section-faq-one .accordion-title {
  font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 0.7px;
  text-align: left;
  color: #6d6d6d;
  padding: 2rem 1.6rem;
  border-bottom: 1px solid #e8e8e8;
  border-top: 0;
  border-left: 0;
  border-right: 0; }
  section.section-faq-one .accordion-title:before {
    font-family: FontAwesome;
    content: '\f105';
    font-size: 30px;
    margin-top: -1rem;
    right: 0;
    transition: all .2s ease-in-out; }
  section.section-faq-one .accordion-title:focus {
    background: none; }
  section.section-faq-one .accordion-title:hover {
    background: none;
    color: #f9a51a; }

section.section-faq-one .accordion-content {
  border-bottom: 1px solid #e8e8e8;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: #fff;
  padding: 2rem 1rem;
  color: #919191; }

section.form-faq-section {
  background: #efefef; }
  section.form-faq-section .title-faq-page {
    font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.6px;
    text-align: left;
    color: #313131; }
  section.form-faq-section .title-sc-faq-form {
    padding-top: 50px;
    padding-bottom: 20px; }
  section.form-faq-section .contact-form-dlit {
    padding-bottom: 90px; }
    section.form-faq-section .contact-form-dlit .cont-form input {
      height: 75px; }
    section.form-faq-section .contact-form-dlit .cont-us-mesage .textarea {
      height: 375px; }
    section.form-faq-section .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 75px; }
    section.form-faq-section .contact-form-dlit .captcha-contact-us {
      width: 48%;
      float: left;
      clear: none;
      margin-top: 0;
      margin-bottom: 10px; }
      section.form-faq-section .contact-form-dlit .captcha-contact-us .gfield_label {
        display: none; }

@media screen and (min-width: 1925px) {
  .home-tabs .image-tab-wrapper img {
    height: auto;
    width: 100%; }
  .home-tabs .image-tab-wrapper .border-top-tabs {
    border-top: 335px solid white !important; }
  .home-tabs .image-tab-wrapper .border-bottom-tabs {
    border-bottom: 335px solid white !important; } }

@media screen and (min-width: 768px) and (max-width: 2600px) {
  section.single-page-sc-two .sc-sing-page-two-left {
    background: none !important; } }

@media screen and (min-width: 1600px) and (max-width: 2600px) {
  .row {
    max-width: 105rem; } }

@media screen and (min-width: 1280px) and (max-width: 1600px) {
  .row {
    max-width: 85rem; }
  section.slider-home .slick-dots,
  section.slider-home .utp-social-block {
    right: 6%; }
  section.slider-home .counter-number {
    font-size: 48px;
    margin-bottom: 60px; }
  section.slider-home h2.slider-home-title {
    font-size: 32px; }
  .home-tabs .tab-content-wrapper {
    padding-right: 110px; }
  .home-tabs .dual-title a {
    font-size: 18px; }
  .home-tabs .image-tab-wrapper img {
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  .about-duallayer .about-dll-right img {
    top: 0;
    height: 100%;
    width: auto;
    max-width: inherit; }
  section.progress-section .progress-wrapper {
    padding-bottom: 150px; }
  section.section-company .section-cc-slider {
    padding-left: 0; }
  section.section-company .section-cc-image {
    padding-right: 0; }
  section.section-our-services .singl-services-wrapper a.singl-services-link {
    text-align: left; }
    section.section-our-services .singl-services-wrapper a.singl-services-link img {
      max-height: 50px;
      width: auto; }
  section.section-our-services span.title-other-services-page {
    font-size: 18px; } }

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .row {
    max-width: 80rem; }
  .about-duallayer .about-dll-left {
    padding-left: 80px; }
  .home-tabs .tab-content-wrapper {
    padding-right: 80px; }
  .home-tabs .image-tab-wrapper img {
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  section.our-team-testimonials .bg-our-team {
    padding-left: 80px; }
  section.our-team-testimonials .home-testimonials-box {
    padding-right: 80px; }
  section.progress-section .progress-wrapper {
    padding-bottom: 100px; }
  section.services-our-services .services-wrapper {
    height: 360px; }
  section.services-our-services .services-3 {
    height: 745px; }
  section.section-our-services .singl-services-wrapper a.singl-services-link {
    text-align: left; }
    section.section-our-services .singl-services-wrapper a.singl-services-link img {
      max-height: 45px;
      width: auto; }
  section.section-our-services span.title-other-services-page {
    font-size: 16px; } }

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .header .top-bar {
    padding: 5px 80px 0; }
    .header .top-bar .menu li:last-child a {
      padding-right: 0px; }
  .menu > li > a {
    padding: 30px 20px 0; }
  section.slider-home .slick-dots {
    right: 80px; }
  section.slider-home .utp-social-block {
    right: 80px; }
  section.slider-home .counter-number {
    font-size: 48px;
    margin-bottom: 60px; }
  section.slider-home h2.slider-home-title {
    font-size: 32px; }
  .home-tabs .image-tab-wrapper img {
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  .home-tabs .dual-title.selected:before {
    border-left: 40px solid #f8b13d; }
  .home-tabs .dual-title.selected:after {
    border-left: 40px solid #fff; }
  .home-tabs .dual-title:before {
    right: -40px;
    border-left: 40px solid #f6eee2; }
  .home-tabs .dual-title:after {
    right: -42px;
    border-left: 40px solid #fff; }
  .home-tabs .dual-title a.tab-pp {
    font-size: 16px;
    background-size: 50px; }
  .home-tabs .dual-title .t-text {
    left: 43%; }
  .home-tabs .tab-content-wrapper {
    padding-left: 30px;
    padding-right: 80px; }
    .home-tabs .tab-content-wrapper .tab-top-box {
      padding-right: 50px; }
      .home-tabs .tab-content-wrapper .tab-top-box:after {
        width: 40px;
        bottom: 5px; }
    .home-tabs .tab-content-wrapper .tab-mid-box p {
      font-size: 16px; }
    .home-tabs .tab-content-wrapper .tab-bottom-box a:before {
      top: -10px; }
  .about-duallayer .about-dll-left {
    padding: 0 60px 0 80px; }
    .about-duallayer .about-dll-left .abt-sub-title {
      padding: 80px 50px 25px 0px; }
    .about-duallayer .about-dll-left .abt-title-content {
      font-size: 32px;
      padding: 50px 0 25px; }
    .about-duallayer .about-dll-left .abt-dll-content {
      padding: 50px 0 25px; }
      .about-duallayer .about-dll-left .abt-dll-content p {
        font-size: 18px; }
    .about-duallayer .about-dll-left .abt-dll-link {
      padding-bottom: 25px; }
  .about-duallayer .about-dll-right img {
    height: inherit;
    width: auto;
    left: 0;
    top: 0;
    position: absolute; }
  section.our-team-testimonials .bg-our-team {
    padding: 0 60px 0px 80px; }
  section.our-team-testimonials .sc-our-team-content, section.our-team-testimonials .sc-our-team-content p {
    font-size: 18px; }
  section.our-team-testimonials .our-team-link a {
    font-size: 16px; }
  section.our-team-testimonials .home-testimonials-box {
    padding-right: 40px; }
    section.our-team-testimonials .home-testimonials-box .wrapper-testimonials {
      font-size: 24px; }
    section.our-team-testimonials .home-testimonials-box .testimonial-title {
      padding-left: 30px; }
    section.our-team-testimonials .home-testimonials-box .testimonials-home-link a {
      font-size: 16px; }
    section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow {
      right: 200px; }
    section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow {
      right: 40px; }
    section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow,
    section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow {
      bottom: 10px; }
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:after, section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:before,
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:after,
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:before {
        width: 13px; }
    section.our-team-testimonials .home-testimonials-box .slick-dots {
      bottom: 15px;
      width: 130px;
      right: 70px; }
  section.progress-section .progress-wrapper {
    padding: 60px 0 100px; }
  section.progress-section ul.number-progress-box {
    padding: 0 40px; }
    section.progress-section ul.number-progress-box .number-wrapper {
      padding: 40px 20px; }
    section.progress-section ul.number-progress-box .number-box, section.progress-section ul.number-progress-box .number-box span {
      font-size: 50px; }
    section.progress-section ul.number-progress-box .number-title-box {
      font-size: 24px;
      padding-top: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px; }
    section.progress-section ul.number-progress-box .number-content-box {
      font-size: 16px; }
  section.home-new .title-home-new {
    padding-left: 80px; }
  section.home-new .news-home-link a {
    padding-right: 80px;
    font-size: 16px; }
  section.home-new .scrollme {
    padding: 0 65px 50px; }
  section.home-new .home-news-images {
    height: 350px; }
    section.home-new .home-news-images img {
      height: inherit;
      max-height: 350px;
      width: auto; }
  section.home-new .home-news-box h2.title-home-news {
    font-size: 24px; }
  section.home-new .home-news-box .news-time-publish {
    padding: 20px 0; }
  section.dll-partners-home .title-home-partners {
    padding-left: 80px; }
  section.dll-partners-home .partners-home-wrapper {
    padding: 0 80px; }
    section.dll-partners-home .partners-home-wrapper .partners-link img {
      max-width: 180px; }
  .footer {
    padding: 55px 80px 0; }
    .footer .footer-form-title {
      text-align: center; }
    .footer .contact-us-form .open_modal {
      width: 100%; }
  section.section-header-other-page .other-header-box {
    padding: 0 95px; }
  section.section-company .section-cc-slider {
    padding-left: 80px; }
  section.section-company .slick-dots-arrow .slick-arrow {
    bottom: -80px; }
  section.section-company .slick-dots-arrow .slick-dots {
    bottom: -93px;
    right: 30px; }
  section.section-company .section-cc-slider .title-sc-company {
    padding-top: 20px; }
  section.section-company .section-cc-slider .cc-sl-wrap-box {
    padding: 50px 50px 0 0px; }
  section.section-company .section-cc-image {
    padding-right: 80px; }
  section.section-company .cc-slider-content {
    font-size: 18px; }
  section.section-our-team-company {
    padding-top: 100px; }
    section.section-our-team-company .title-sc-our-team {
      padding-bottom: 50px; }
    section.section-our-team-company .our-team-block {
      font-size: 18px; }
    section.section-our-team-company .right-block-company-our-team {
      padding-right: 80px; }
    section.section-our-team-company .slick-dots-arrow .slick-arrow {
      bottom: -80px; }
    section.section-our-team-company .slick-dots-arrow .slick-dots {
      bottom: -93px;
      right: 30px; }
  section.section-our-commitment .title-sc-our-commitment {
    padding-bottom: 50px; }
  section.section-our-commitment .our-commitment-left-images {
    padding-right: 40px; }
  section.section-our-commitment .content-box {
    font-size: 18px; }
  section.section-our-commitment .our-commitment-wrapper {
    width: 45%; }
  section.section-services-goal {
    padding-top: 100px; }
    section.section-services-goal .sr-box-left {
      padding-left: 95px; }
    section.section-services-goal .sr-content-box-goal {
      font-size: 18px; }
  section.services-our-services .services-wrapper {
    height: 280px; }
    section.services-our-services .services-wrapper a {
      font-size: 18px; }
  section.services-our-services .services-3 {
    height: 578px; }
  section.services-our-services .title-sc-our-services {
    padding-left: 95px;
    padding-right: 95px; }
  section.services-our-services .content-services-box {
    padding-left: 95px;
    padding-right: 95px;
    font-size: 18px; }
  section.services-our-services .wrapper-srs-content {
    padding: 50px 95px 100px; }
  section.services-our-services .services-box-repeater {
    grid-template-columns: 31.5% 31.5% 31.5%;
    grid-template-rows: 320px 320px 320px;
    grid-row-gap: 30px; }
  section.services-our-services span.add-description-services {
    font-size: 16px; }
  section.services-our-services .icon-services-box {
    padding-bottom: 0; }
  section.services-our-services .services-3 span.icon-title-services-wrapper {
    top: 50%; }
  section.section-what-we-do {
    padding: 80px 0 90px; }
    section.section-what-we-do .column-what-we {
      padding-left: 95px; }
    section.section-what-we-do .title-sc-what-we-do {
      padding: 5px 0 40px; }
    section.section-what-we-do .section-what-we-do-image {
      padding-right: 95px; }
    section.section-what-we-do .content-text {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      max-width: 455px; }
    section.section-what-we-do .link-services-sin-pg-box {
      padding-top: 50px; }
  section.section-singl-services-2 {
    padding: 80px 0 65px 0; }
    section.section-singl-services-2 .left-block-singl-services-3 {
      padding-left: 95px; }
    section.section-singl-services-2 .right-block-singl-services-3 {
      padding-left: 0; }
    section.section-singl-services-2 .singl-page-services-content-3 {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      padding-right: 80px; }
  section.section-our-services .title-services-singl {
    padding-left: 95px; }
  section.section-our-services .singl-services-wrapper {
    margin-top: 70px;
    margin-bottom: 60px; }
    section.section-our-services .singl-services-wrapper .services-box {
      line-height: 80px; }
    section.section-our-services .singl-services-wrapper a.singl-services-link {
      line-height: 80px;
      text-align: left; }
      section.section-our-services .singl-services-wrapper a.singl-services-link img {
        max-height: 35px;
        width: auto; }
  section.section-our-services span.title-other-services-page {
    font-size: 13px; }
  .article-wrapper {
    padding: 50px 80px 50px 80px; }
    .article-wrapper:nth-child(odd) .blog-post-header a {
      margin-right: 10px; }
    .article-wrapper:nth-child(odd) .blog-post-wrapper {
      padding-left: 25px; }
    .article-wrapper:nth-child(even) .blog-post-header a {
      margin-left: 10px; }
    .article-wrapper:nth-child(even) .blog-post-wrapper {
      padding-right: 25px; }
  .blog-post-title {
    margin-bottom: 30px; }
    .blog-post-title, .blog-post-title a {
      font-size: 24px;
      line-height: 1.13;
      letter-spacing: 0.9px; }
  .blog-post-content-box {
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.9px;
    margin-bottom: 30px; }
  a.blog-link-page {
    font-size: 12px; }
  .blog-post-header a {
    display: block;
    position: relative;
    height: 310px;
    overflow: hidden; }
  .blog-post-header img {
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  .page-navigation {
    padding: 0 85px 5px; }
  .single-content-22 {
    font-size: 14px;
    line-height: 1.36;
    letter-spacing: 0.7px; }
  section.single-page-sc-one .singl-wrapper-image {
    padding-left: 95px; }
  section.single-page-sc-one .image-postition {
    min-height: 600px;
    overflow: hidden;
    position: relative; }
    section.single-page-sc-one .image-postition img {
      height: 100%;
      width: auto;
      max-width: none;
      position: absolute;
      top: 50%;
      Left: 50%;
      transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); }
  section.single-page-sc-one .sing-post-entry-content-wrapper {
    width: 50%;
    padding-right: 95px; }
  section.single-page-sc-one .single-title {
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: 0.9px;
    margin-bottom: 39px; }
  section.single-page-sc-one .post-info {
    margin-top: -27px;
    padding: 0; }
    section.single-page-sc-one .post-info, section.single-page-sc-one .post-info a {
      font-size: 12px;
      letter-spacing: 0.7px; }
  section.single-page-sc-one .title-crate-time-singl {
    margin-top: 40px;
    background: none; }
    section.single-page-sc-one .title-crate-time-singl .title-absolut {
      position: relative;
      display: block;
      width: 120%;
      height: 100%;
      padding-left: 15px;
      padding-top: 15px;
      transform: translateX(-17%);
      left: inherit; }
  section.single-page-sc-one .navigation-single-page {
    height: 50px;
    right: 0px; }
    section.single-page-sc-one .navigation-single-page .next-post-sing-page {
      width: 80px;
      height: 50px; }
      section.single-page-sc-one .navigation-single-page .next-post-sing-page a:before {
        background-size: 18px; }
    section.single-page-sc-one .navigation-single-page .pre-post-sing-page {
      width: 80px;
      height: 50px; }
      section.single-page-sc-one .navigation-single-page .pre-post-sing-page a:before {
        background-size: 18px; }
  section.single-page-sc-two .sc-sing-page-two-left {
    width: 48.5%;
    padding-left: 95px; }
  section.single-page-sc-two .sc-sing-page-two-right {
    width: 50%;
    padding-right: 95px; }
  section.single-page-sc-two .sc-sing-quote-text {
    font-size: 22px; }
    section.single-page-sc-two .sc-sing-quote-text:before {
      font-size: 36px;
      letter-spacing: -1px; }
    section.single-page-sc-two .sc-sing-quote-text p {
      line-height: 1.36;
      letter-spacing: 0.7px; }
  footer.singl-post-footer {
    padding: 30px 80px 5px; }
    footer.singl-post-footer .all-news a {
      font-size: 12px; }
      footer.singl-post-footer .all-news a:after {
        display: none; }
    footer.singl-post-footer .text-share {
      padding-top: 2px;
      font-size: 12px; }
    footer.singl-post-footer .share-it a {
      font-size: 14px;
      padding: 0 5px; }
  .title-other-page {
    font-size: 16px;
    padding-left: 35px; }
    .title-other-page:after {
      width: 30px; }
  section.section-testimonials .testimonials-box {
    padding: 50px 80px; }
  section.section-testimonials .content-box-testim {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px; }
  section.section-testimonials .testimonials-content-box:before {
    font-size: 72px; }
  section.section-testimonials .author-title-testimonials {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px; }
  section.section-testimonials .page-navigation {
    padding-top: 35px;
    padding-bottom: 15px; }
  section.section-contact-tel-adress {
    padding: 75px 80px 50px; }
    section.section-contact-tel-adress .box-contact-ph-em-loc {
      padding: 25px 30px;
      margin-top: 65px;
      left: 5%; }
    section.section-contact-tel-adress .telphone-contact-wrapper,
    section.section-contact-tel-adress .email-contact-wrapper,
    section.section-contact-tel-adress .adress-contact-wrapper {
      font-size: 14px;
      margin-bottom: 20px;
      padding-left: 30px; }
      section.section-contact-tel-adress .telphone-contact-wrapper:before,
      section.section-contact-tel-adress .email-contact-wrapper:before,
      section.section-contact-tel-adress .adress-contact-wrapper:before {
        font-size: 18px; }
      section.section-contact-tel-adress .telphone-contact-wrapper a,
      section.section-contact-tel-adress .email-contact-wrapper a,
      section.section-contact-tel-adress .adress-contact-wrapper a {
        font-size: 14px; }
    section.section-contact-tel-adress .acf-map {
      height: 400px; }
  section.form-contact-us {
    padding: 60px 80px 40px; }
  .contact-form-dlit .cont-form input {
    height: 50px;
    margin-bottom: 10px; }
  .contact-form-dlit .gform_wrapper input[type=email],
  .contact-form-dlit .gform_wrapper input[type=number],
  .contact-form-dlit .gform_wrapper input[type=password],
  .contact-form-dlit .gform_wrapper input[type=tel],
  .contact-form-dlit .gform_wrapper input[type=text],
  .contact-form-dlit .gform_wrapper input[type=url],
  .contact-form-dlit .gform_wrapper textarea {
    font-size: 16px;
    border: none; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label {
    width: 48.4%; }
    .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px; }
  .contact-form-dlit .cont-us-mesage .textarea {
    height: 180px; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label,
  .contact-form-dlit .cont-us-mail,
  .contact-form-dlit .cont-us-mesage,
  .contact-form-dlit .cont-us-name {
    width: 48.4%; }
  section.section-faq-one .accordion-title {
    font-size: 16px;
    padding: 13px 0; }
    section.section-faq-one .accordion-title:before {
      font-size: 26px;
      margin-top: -0.8rem; }
  section.section-faq-one .accordion-content {
    padding: 1rem 0; }
  section.section-faq-one .sr-faq-wrapper-one {
    padding-top: 65px; }
    section.section-faq-one .sr-faq-wrapper-one .title-faq-one {
      padding: 0 95px; }
  section.section-faq-one .section-faq-wrapper {
    padding: 40px 75px 0px; }
  section.section-faq-one .accordion {
    padding-bottom: 45px; }
  section.section-faq-one .content-text {
    font-size: 14px; }
  section.form-faq-section .title-sc-faq-form {
    padding: 35px 95px 20px; }
  section.form-faq-section .contact-form-dlit {
    padding: 0 80px 55px; }
    section.form-faq-section .contact-form-dlit .ginput_container {
      margin-top: 0 !important; }
    section.form-faq-section .contact-form-dlit .cont-form input {
      height: 50px;
      margin-bottom: 15px; }
    section.form-faq-section .contact-form-dlit .cont-us-mesage .textarea {
      height: 180px; }
    section.form-faq-section .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px; }
  .section-careers-one {
    padding-top: 85px; }
    .section-careers-one .tabs-nav {
      padding: 65px 80px 65px; }
    .section-careers-one .title-sc-one {
      padding: 0px 95px 30px; }
    .section-careers-one .careers-box-img-content {
      max-height: 215px; }
    .section-careers-one .sr-content-box-one {
      padding: 0 95px; }
    .section-careers-one .text-careers-box {
      font-size: 28px; }
    .section-careers-one .tabs-panel {
      padding: 0 80px 0; }
    .section-careers-one .content-text {
      font-size: 14px; } }

@media screen and (min-width: 1024px) and (max-width: 1152px) {
  .menu > li > a {
    padding: 30px 10px 0;
    font-size: 14px; }
  .home-tabs .tab-content-wrapper .tab-top-box {
    font-size: 22px; }
  section.home-new .home-news-images {
    height: 300px; }
    section.home-new .home-news-images img {
      height: inherit;
      max-height: 300px;
      width: auto; }
  section.home-new .home-news-box h2.title-home-news {
    font-size: 22px; }
  .footer .footer-form-title {
    font-size: 24px;
    text-align: center; }
  .footer .contact-us-form .open_modal {
    width: 100%;
    font-size: 20px; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .custom-padding-row {
    padding-left: 50px;
    padding-right: 50px; }
  .logo-modal-abs {
    padding: 15px; }
    .logo-modal-abs img {
      max-width: 100px; }
  .modal_div {
    max-width: 600px; }
  .modal-content-box {
    font-size: 16px; }
    .modal-content-box h2 {
      font-size: 36px; }
    .modal-content-box .modal-content-wrapper {
      padding: 30px 20px 20px; }
  .modal-content-forms {
    padding: 30px 0 20px; }
    .modal-content-forms .gform_wrapper .top_label .name-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .gform_button {
      height: 50px;
      font-size: 16px; }
    .modal-content-forms .gform_wrapper .top_label .message-modal-form textarea {
      font-size: 16px;
      height: 180px;
      padding: 15px; }
    .modal-content-forms .validation_message,
    .modal-content-forms div.validation_error {
      font-size: 14px; }
  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    width: 28px;
    height: 28px; }
  .slick-slider .slick-dots li {
    width: 10px; }
    .slick-slider .slick-dots li button {
      height: 6px;
      width: 6px; }
      .slick-slider .slick-dots li button:before {
        width: 12px;
        height: 12px;
        top: 2px;
        left: -1px; }
  .off-canvas-content .top-bar-left {
    padding-top: 20px; }
  .off-canvas-content .logo-header {
    width: 115px;
    height: 32px;
    margin-left: 40px; }
  .off-canvas-content .top-bar-right {
    padding-right: 50px; }
  .menu > li > a {
    font-size: 12px;
    line-height: 30px;
    padding: 20px 10px 0 10px; }
  section.section-header-other-page .background-section-other-page {
    height: 380px; }
  section.section-header-other-page .other-header-title {
    font-size: 32px;
    padding-bottom: 10px; }
  section.section-header-other-page .other-header-sub-title {
    padding-top: 10px; }
  .title-home {
    font-size: 14px;
    padding-left: 35px; }
    .title-home:after {
      width: 30px; }
  section.slider-home .slider-text-content {
    top: 55%;
    max-width: 600px; }
  section.slider-home h2.slider-home-title {
    font-size: 28px; }
  section.slider-home .utp-social-block .telephone-utp {
    margin-right: 50px; }
    section.slider-home .utp-social-block .telephone-utp a {
      padding-left: 25px; }
  .home-tabs .dual-title {
    height: 110px;
    max-width: 270px; }
    .home-tabs .dual-title:before {
      right: -30px;
      border-top: 55px solid transparent;
      border-left: 30px solid #F6EEE1;
      border-bottom: 55px solid transparent; }
    .home-tabs .dual-title:after {
      border-top: 55px solid transparent;
      border-left: 30px solid #fff;
      border-bottom: 55px solid transparent;
      right: -32px; }
    .home-tabs .dual-title a.tab-pp {
      background-size: 45px;
      font-size: 14px;
      letter-spacing: 0.2px;
      background-repeat: no-repeat;
      background-position: 20% 50%; }
    .home-tabs .dual-title .t-text {
      left: 40%; }
  .home-tabs .dual-title.selected:before {
    border-left: 30px solid #f8b13d; }
  .home-tabs .dual-title.selected:after {
    border-left: 30px solid #fff; }
  .home-tabs .tab-content-wrapper {
    padding-left: 5px;
    padding-right: 50px; }
    .home-tabs .tab-content-wrapper .tab-top-box {
      font-size: 18px;
      padding-right: 40px; }
      .home-tabs .tab-content-wrapper .tab-top-box:after {
        width: 30px;
        top: 50%;
        bottom: inherit; }
    .home-tabs .tab-content-wrapper .tab-mid-box p {
      font-size: 13px; }
    .home-tabs .tab-content-wrapper .tab-bottom-box a {
      font-size: 12px; }
      .home-tabs .tab-content-wrapper .tab-bottom-box a:before {
        top: -15px; }
  .home-tabs .image-tab-wrapper:before {
    right: 115px;
    bottom: 44.2%;
    transform: rotate(-24deg); }
  .home-tabs .image-tab-wrapper:after {
    right: 115px;
    top: 44.2%;
    transform: rotate(24deg); }
  .home-tabs .image-tab-wrapper .img-tab-content {
    position: relative;
    min-height: inherit; }
  .home-tabs .image-tab-wrapper img {
    left: inherit;
    width: auto; }
  .about-duallayer .about-dll-left {
    padding: 0 40px 0 60px; }
    .about-duallayer .about-dll-left .abt-sub-title {
      font-size: 14px;
      padding: 50px 0 0 0px; }
    .about-duallayer .about-dll-left .abt-title-content {
      font-size: 28px;
      padding: 20px 0 15px; }
    .about-duallayer .about-dll-left .abt-dll-content {
      font-size: 12px;
      padding: 15px 0 50px; }
      .about-duallayer .about-dll-left .abt-dll-content p {
        font-size: 12px; }
  .about-duallayer .about-dll-right {
    min-height: 600px; }
    .about-duallayer .about-dll-right img {
      top: 0;
      height: 100%;
      width: auto;
      max-width: initial; }
  section.our-team-testimonials .home-title-box {
    padding: 30px 0; }
  section.our-team-testimonials .sc-our-team-content, section.our-team-testimonials .sc-our-team-content p {
    font-size: 13px;
    line-height: 1.46; }
  section.our-team-testimonials .bg-our-team {
    padding: 0 40px 0 60px; }
  section.our-team-testimonials .our-team-link {
    bottom: 35px; }
    section.our-team-testimonials .our-team-link a {
      font-size: 12px; }
      section.our-team-testimonials .our-team-link a:before {
        top: -6px; }
  section.our-team-testimonials .home-testimonials-box {
    padding-left: 30px;
    padding-right: 50px; }
    section.our-team-testimonials .home-testimonials-box .home-testimonials {
      padding: 0px; }
      section.our-team-testimonials .home-testimonials-box .home-testimonials:before {
        font-size: 40px;
        letter-spacing: -4px;
        padding-bottom: 25px; }
    section.our-team-testimonials .home-testimonials-box .wrapper-testimonials {
      font-size: 18px;
      padding-bottom: 20px;
      margin-bottom: 15px; }
      section.our-team-testimonials .home-testimonials-box .wrapper-testimonials .testimonial-name {
        font-size: 12px; }
    section.our-team-testimonials .home-testimonials-box .testimonials-home-link {
      bottom: 35px;
      left: 30px; }
      section.our-team-testimonials .home-testimonials-box .testimonials-home-link a {
        font-size: 12px; }
        section.our-team-testimonials .home-testimonials-box .testimonials-home-link a:before {
          top: -6px; }
    section.our-team-testimonials .home-testimonials-box .slider-testtimonial {
      margin-bottom: 30px;
      padding-bottom: 50px; }
    section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow,
    section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow {
      bottom: 8px; }
      section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:after, section.our-team-testimonials .home-testimonials-box .slick-prev.slick-arrow:before,
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:after,
      section.our-team-testimonials .home-testimonials-box .slick-next.slick-arrow:before {
        width: 11px;
        height: 1px; }
    section.our-team-testimonials .home-testimonials-box .slick-dots {
      bottom: 9px;
      width: 27%;
      right: 27px; }
  section.progress-section .progress-wrapper {
    padding: 90px 0; }
  section.progress-section ul.number-progress-box .number-wrapper {
    max-width: 230px;
    padding: 50px 25px 40px; }
  section.progress-section ul.number-progress-box .number-box, section.progress-section ul.number-progress-box .number-box span {
    font-size: 50px; }
  section.progress-section ul.number-progress-box .number-title-box {
    font-size: 19px;
    padding: 10px 0 20px;
    margin-bottom: 20px; }
    section.progress-section ul.number-progress-box .number-title-box:after {
      width: 100px; }
  section.progress-section ul.number-progress-box .number-content-box {
    font-size: 13px; }
  section.home-new {
    padding-bottom: 40px; }
    section.home-new .title-home-new {
      margin: 70px 0 40px; }
    section.home-new .home-news-box {
      padding: 0 6px; }
      section.home-new .home-news-box .news-time-publish {
        padding: 10px 0 5px; }
      section.home-new .home-news-box h2.title-home-news {
        font-size: 19px;
        letter-spacing: 0.7px; }
    section.home-new .home-news-images {
      height: 280px; }
      section.home-new .home-news-images img {
        height: 280px;
        width: auto; }
    section.home-new .news-home-link a {
      font-size: 12px; }
  section.dll-partners-home .title-home-partners {
    margin-top: 40px;
    margin-bottom: 20px; }
  section.dll-partners-home .partners-home-wrapper {
    margin-bottom: 50px;
    padding: 0 50px 0px 50px;
    border-bottom: 1px solid rgba(220, 220, 220, 0.3); }
    section.dll-partners-home .partners-home-wrapper .partners-box {
      line-height: 50px;
      padding-top: 15px;
      padding-bottom: 15px; }
      section.dll-partners-home .partners-home-wrapper .partners-box .partners-link img {
        max-width: 120px; }
  section.dll-partners-home span.line-vertivale {
    height: 100%; }
  .title-other-page {
    font-size: 16px;
    padding-left: 37px; }
    .title-other-page:after {
      width: 30px; }
  .content-text {
    font-size: 14px; }
  .contact-form-dlit .gform_wrapper input[type=email],
  .contact-form-dlit .gform_wrapper input[type=number],
  .contact-form-dlit .gform_wrapper input[type=password],
  .contact-form-dlit .gform_wrapper input[type=tel],
  .contact-form-dlit .gform_wrapper input[type=text],
  .contact-form-dlit .gform_wrapper input[type=url],
  .contact-form-dlit .gform_wrapper textarea {
    font-size: 14px;
    padding: 15px; }
  section.section-faq-one .accordion-title {
    font-size: 16px;
    padding: 13px 0; }
    section.section-faq-one .accordion-title:before {
      font-size: 26px;
      margin-top: -0.8rem; }
  section.section-faq-one .accordion-content {
    padding: 1rem 0; }
  section.section-faq-one .sr-faq-wrapper-one {
    padding-top: 75px; }
    section.section-faq-one .sr-faq-wrapper-one .title-faq-one {
      padding: 0 60px; }
  section.section-faq-one .section-faq-wrapper {
    padding: 30px 40px 0px; }
  section.section-faq-one .accordion {
    padding-bottom: 45px; }
  section.form-faq-section .title-sc-faq-form {
    padding: 35px 60px 20px; }
  section.form-faq-section .contact-form-dlit {
    padding: 0 45px 45px; }
    section.form-faq-section .contact-form-dlit .ginput_container {
      margin-top: 0 !important; }
    section.form-faq-section .contact-form-dlit .cont-form input {
      height: 50px;
      margin-bottom: 15px; }
    section.form-faq-section .contact-form-dlit .cont-us-mesage .textarea {
      height: 180px; }
    section.form-faq-section .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px; }
  .section-careers-one {
    padding-top: 85px; }
    .section-careers-one .tabs-nav {
      padding: 65px 45px 65px; }
    .section-careers-one .title-sc-one {
      padding: 0px 60px 30px; }
    .section-careers-one .careers-box-img-content {
      max-height: 215px; }
    .section-careers-one .sr-content-box-one {
      float: left !important;
      padding-left: 60px; }
    .section-careers-one .text-careers-box {
      font-size: 28px; }
    .section-careers-one .tabs-panel {
      padding: 0 45px 0; }
  .footer {
    padding-top: 40px; }
    .footer .footer-logo-social {
      padding-left: 60px;
      padding-right: 0; }
      .footer .footer-logo-social .logo-description {
        font-size: 12px;
        padding-top: 15px; }
    .footer .logo-header {
      height: 40px;
      width: 137px;
      margin-left: 0; }
    .footer .contact-us-form {
      padding-right: 60px; }
    .footer .social-footer li {
      padding-right: 5px; }
      .footer .social-footer li a {
        width: 23px;
        height: 23px;
        font-size: 14px;
        line-height: 23px;
        border-radius: 50%;
        color: #fff;
        background: #f8b13c; }
    .footer .menu .menu-item a {
      font-size: 12px;
      padding-bottom: 10px; }
    .footer .phone-adress .title-footer {
      font-size: 12px;
      padding-bottom: 10px; }
    .footer .phone-adress .telphone-footer-wrapper,
    .footer .phone-adress .email-footer-wrapper,
    .footer .phone-adress .adress-footer-wrapper {
      font-size: 12px;
      padding-left: 25px; }
      .footer .phone-adress .telphone-footer-wrapper:before,
      .footer .phone-adress .email-footer-wrapper:before,
      .footer .phone-adress .adress-footer-wrapper:before {
        font-size: 16px; }
    .footer .phone-adress .email-footer-wrapper:before {
      font-size: 15px; }
    .footer .footer-form-title {
      font-size: 24px;
      text-align: center; }
    .footer .contact-us-form .open_modal {
      font-size: 18px;
      width: 100%;
      height: 45px;
      line-height: 45px; }
    .footer .made-by, .footer .made-by .k-3soft {
      font-size: 12px;
      margin-bottom: 20px; }
    .footer .source-org {
      font-size: 12px;
      margin-bottom: 20px; }
    .footer .footer-box-one {
      margin-bottom: 20px; }
  section.section-header-other-page .other-header-box {
    padding: 0 60px; }
  section.section-header-other-page .other-header-title {
    font-size: 28px; }
  section.section-header-other-page .other-header-sub-title {
    font-size: 16px; }
  section.section-company {
    padding-top: 80px;
    padding-bottom: 70px; }
    section.section-company .title-sc-company {
      padding-top: 0px; }
    section.section-company .section-cc-slider {
      padding-left: 60px; }
      section.section-company .section-cc-slider .cc-sl-wrap-box {
        padding: 40px 0 0 0; }
      section.section-company .section-cc-slider .cc-slider-wrapper {
        padding-bottom: 60px; }
        section.section-company .section-cc-slider .cc-slider-wrapper .slick-dots {
          height: 22px; }
    section.section-company .cc-slider-content {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-company .slick-dots-arrow .slick-arrow {
      bottom: -80px; }
    section.section-company .slick-dots-arrow .slick-dots {
      right: 29px;
      bottom: -94px; }
    section.section-company .section-cc-image {
      padding-right: 60px; }
      section.section-company .section-cc-image img {
        max-height: 425px;
        width: auto; }
  section.section-our-team-company {
    padding: 45px 0 50px 0; }
    section.section-our-team-company .title-sc-our-team {
      padding-bottom: 40px; }
    section.section-our-team-company .our-team-block {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-our-team-company .slider-our-team-wrapper {
      padding-bottom: 80px; }
    section.section-our-team-company .slick-dots-arrow .slick-arrow {
      bottom: 0px; }
    section.section-our-team-company .slick-dots-arrow .slick-dots {
      bottom: 0;
      height: 22px; }
      section.section-our-team-company .slick-dots-arrow .slick-dots li button {
        margin-left: 1px; }
    section.section-our-team-company .left-block-company-our-team {
      padding-left: 60px;
      padding-top: 45px; }
    section.section-our-team-company .right-block-company-our-team {
      padding-right: 60px; }
  section.section-our-commitment {
    padding: 70px 0;
    box-shadow: none; }
    section.section-our-commitment .title-sc-our-commitment {
      padding-bottom: 40px; }
    section.section-our-commitment .content-box {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-our-commitment .our-commitment-left-images {
      min-height: 260px; }
      section.section-our-commitment .our-commitment-left-images img {
        height: 100%;
        width: auto;
        position: absolute;
        left: 0;
        top: 0; }
    section.section-our-commitment .our-commitment-right-images {
      min-height: 260px; }
      section.section-our-commitment .our-commitment-right-images img {
        height: 100%;
        width: auto;
        position: absolute;
        left: 15px;
        top: 0; }
    section.section-our-commitment .our-commitment-wrapper {
      display: block;
      padding-left: 0; }
  section.section-our-clients .title-home-partners {
    padding-left: 60px; }
  section.section-services-goal {
    padding-top: 80px;
    padding-bottom: 0; }
    section.section-services-goal .sr-box-left {
      padding-left: 60px; }
    section.section-services-goal .title-sc-goal {
      padding: 40px 0 30px; }
    section.section-services-goal .sr-content-box-goal {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-services-goal .sr-box-right {
      padding-right: 60px; }
  section.services-our-services .services-wrapper {
    height: 225px; }
  section.services-our-services .services-3 {
    height: 466px; }
  section.services-our-services .title-sc-our-services {
    padding: 40px 60px 20px; }
  section.services-our-services .content-services-box {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px;
    padding: 0 60px; }
  section.services-our-services .wrapper-srs-content {
    padding: 25px 60px 70px; }
  section.services-our-services .services-wrapper a {
    font-size: 16px;
    letter-spacing: 0.5px; }
  section.services-our-services span.icon-title-services-wrapper {
    padding: 0 10px; }
  section.services-our-services .services-box-repeater {
    grid-template-columns: 31% 31% 31%;
    grid-template-rows: 225px 225px 225px; }
  section.services-our-services .icon-services-box {
    padding-bottom: 0px; }
  section.services-our-services .title-services-box {
    -ms-flex-align: end;
    align-items: flex-end; }
  section.services-our-services span.add-description-services {
    font-size: 13px;
    max-height: 100%;
    text-overflow: ellipsis;
    font-family: 'FuturaStd-Book', Roboto, Arial, sans-serif;
    font-weight: normal;
    padding: 0 5px;
    overflow: hidden;
    letter-spacing: 0.6px; }
  section.section-what-we-do {
    padding: 80px 0 90px; }
    section.section-what-we-do .column-what-we {
      padding-left: 60px; }
    section.section-what-we-do .title-sc-what-we-do {
      padding: 5px 0 40px; }
    section.section-what-we-do .section-what-we-do-image {
      padding-right: 60px; }
    section.section-what-we-do .content-text {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      max-width: 455px; }
    section.section-what-we-do .link-services-sin-pg-box {
      padding-top: 50px; }
    section.section-what-we-do .link-services-sin-pg {
      font-size: 12px; }
  section.section-singl-services-2 {
    padding: 80px 0 65px 0; }
    section.section-singl-services-2 .left-block-singl-services-3 {
      padding-left: 60px; }
    section.section-singl-services-2 .right-block-singl-services-3 {
      padding-left: 0; }
    section.section-singl-services-2 .singl-page-services-content-3 {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      padding-right: 80px; }
  section.section-our-services {
    padding-top: 100px; }
    section.section-our-services .title-services-singl {
      padding-left: 60px; }
    section.section-our-services .singl-services-wrapper {
      margin-top: 70px;
      margin-bottom: 60px; }
      section.section-our-services .singl-services-wrapper .services-box {
        line-height: 80px; }
      section.section-our-services .singl-services-wrapper a.singl-services-link {
        line-height: 80px;
        text-align: left; }
        section.section-our-services .singl-services-wrapper a.singl-services-link img {
          max-height: 35px;
          width: auto; }
    section.section-our-services span.title-other-services-page {
      font-size: 13px;
      padding-left: 2px; }
    section.section-our-services .services-singl-1,
    section.section-our-services .services-singl-5 {
      padding-left: 60px;
      padding-right: 0; }
  .article-wrapper {
    padding: 50px 45px 50px 45px; }
    .article-wrapper:nth-child(odd) .blog-post-header a {
      margin-right: 10px; }
    .article-wrapper:nth-child(odd) .blog-post-wrapper {
      padding-left: 25px; }
    .article-wrapper:nth-child(even) .blog-post-header a {
      margin-left: 10px; }
    .article-wrapper:nth-child(even) .blog-post-wrapper {
      padding-right: 25px; }
  .blog-post-title {
    margin-bottom: 30px; }
    .blog-post-title, .blog-post-title a {
      font-size: 24px;
      line-height: 1.13;
      letter-spacing: 0.9px; }
  .blog-post-content-box {
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.9px;
    margin-bottom: 30px; }
  a.blog-link-page {
    font-size: 12px; }
  .blog-post-header a {
    display: block;
    position: relative;
    height: 310px;
    overflow: hidden; }
  .blog-post-header img {
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: inherit; }
  .page-navigation {
    padding: 0 85px 5px; }
  .single-content-22 {
    font-size: 14px;
    line-height: 1.36;
    letter-spacing: 0.7px; }
  section.single-page-sc-one {
    padding-bottom: 50px; }
    section.single-page-sc-one .singl-wrapper-image {
      padding-left: 60px; }
    section.single-page-sc-one .image-postition {
      min-height: 600px;
      overflow: hidden;
      position: relative; }
      section.single-page-sc-one .image-postition img {
        height: 100%;
        width: auto;
        max-width: none;
        position: absolute;
        top: 50%;
        Left: 50%;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%); }
    section.single-page-sc-one .sing-post-entry-content-wrapper {
      width: 50%;
      padding-right: 60px; }
    section.single-page-sc-one .single-title {
      font-size: 24px;
      line-height: 1.21;
      letter-spacing: 0.9px;
      margin-bottom: 39px; }
    section.single-page-sc-one .post-info {
      margin-top: -27px;
      padding: 0; }
      section.single-page-sc-one .post-info, section.single-page-sc-one .post-info a {
        font-size: 12px;
        letter-spacing: 0.7px; }
    section.single-page-sc-one .title-crate-time-singl {
      margin-top: 40px;
      background: none; }
      section.single-page-sc-one .title-crate-time-singl .title-absolut {
        position: relative;
        display: block;
        width: 120%;
        height: 100%;
        padding-left: 15px;
        padding-top: 15px;
        transform: translateX(-17%);
        left: inherit; }
    section.single-page-sc-one .navigation-single-page {
      height: 50px;
      right: 0px; }
      section.single-page-sc-one .navigation-single-page .next-post-sing-page {
        height: 50px; }
        section.single-page-sc-one .navigation-single-page .next-post-sing-page a:before {
          background-size: 18px; }
      section.single-page-sc-one .navigation-single-page .pre-post-sing-page {
        height: 50px; }
        section.single-page-sc-one .navigation-single-page .pre-post-sing-page a:before {
          background-size: 18px; }
  section.single-page-sc-two .sc-sing-page-two-left {
    width: 48.5%;
    padding-left: 60px; }
  section.single-page-sc-two .sc-sing-page-two-right {
    width: 50%;
    padding-right: 60px; }
  section.single-page-sc-two .sc-sing-quote-text {
    font-size: 22px; }
    section.single-page-sc-two .sc-sing-quote-text:before {
      font-size: 36px;
      letter-spacing: -1px; }
    section.single-page-sc-two .sc-sing-quote-text p {
      line-height: 1.36;
      letter-spacing: 0.7px; }
  footer.singl-post-footer {
    padding: 30px 45px 5px; }
    footer.singl-post-footer .all-news a {
      font-size: 12px; }
      footer.singl-post-footer .all-news a:after {
        display: none; }
    footer.singl-post-footer .text-share {
      padding-top: 2px;
      font-size: 12px; }
    footer.singl-post-footer .share-it a {
      font-size: 14px;
      padding: 0 5px; }
  section.section-testimonials .testimonials-box {
    padding: 50px 45px; }
  section.section-testimonials .content-box-testim {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px; }
  section.section-testimonials .testimonials-content-box:before {
    font-size: 72px; }
  section.section-testimonials .author-title-testimonials {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.5px; }
  section.section-testimonials .page-navigation {
    padding: 35px 45px 0; }
  section.section-contact-tel-adress {
    padding: 75px 45px 50px; }
    section.section-contact-tel-adress .box-contact-ph-em-loc {
      padding: 25px 30px;
      margin-top: 65px;
      left: 5%; }
    section.section-contact-tel-adress .telphone-contact-wrapper,
    section.section-contact-tel-adress .email-contact-wrapper,
    section.section-contact-tel-adress .adress-contact-wrapper {
      font-size: 14px;
      margin-bottom: 20px;
      padding-left: 30px; }
      section.section-contact-tel-adress .telphone-contact-wrapper:before,
      section.section-contact-tel-adress .email-contact-wrapper:before,
      section.section-contact-tel-adress .adress-contact-wrapper:before {
        font-size: 18px; }
      section.section-contact-tel-adress .telphone-contact-wrapper a,
      section.section-contact-tel-adress .email-contact-wrapper a,
      section.section-contact-tel-adress .adress-contact-wrapper a {
        font-size: 14px; }
    section.section-contact-tel-adress .acf-map {
      height: 400px; }
  section.form-contact-us {
    padding: 60px 80px 40px; }
  .contact-form-dlit .cont-form input {
    height: 50px;
    margin-bottom: 10px; }
  .contact-form-dlit .gform_wrapper input[type=email],
  .contact-form-dlit .gform_wrapper input[type=number],
  .contact-form-dlit .gform_wrapper input[type=password],
  .contact-form-dlit .gform_wrapper input[type=tel],
  .contact-form-dlit .gform_wrapper input[type=text],
  .contact-form-dlit .gform_wrapper input[type=url],
  .contact-form-dlit .gform_wrapper textarea {
    font-size: 16px;
    border: none; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label {
    width: 48.4%; }
    .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px; }
  .contact-form-dlit .cont-us-mesage .textarea {
    height: 180px; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label,
  .contact-form-dlit .cont-us-mail,
  .contact-form-dlit .cont-us-mesage,
  .contact-form-dlit .cont-us-name {
    width: 48.4%; } }

@media screen and (min-width: 768px) and (max-width: 980px) {
  section.section-our-services .singl-services-wrapper a.singl-services-link {
    text-align: center; }
    section.section-our-services .singl-services-wrapper a.singl-services-link img {
      max-height: 45px;
      width: auto; }
  section.section-our-services span.title-other-services-page {
    display: block;
    text-align: center; }
  section.section-our-services .services-singl-1,
  section.section-our-services .services-singl-5 {
    padding-right: 0.9375rem; }
  section.section-our-services .services-singl-4,
  section.section-our-services .services-singl-8 {
    padding-right: 60px; } }

@media screen and (max-width: 767px) {
  .logo-modal-abs {
    padding: 15px; }
    .logo-modal-abs img {
      max-width: 100px; }
  .modal_div {
    max-width: 90%; }
  .modal-content-box {
    font-size: 16px; }
    .modal-content-box h2 {
      font-size: 36px; }
    .modal-content-box .modal-content-wrapper {
      padding: 5px 20px 10px; }
  .modal-content-forms {
    padding: 30px 0 20px; }
    .modal-content-forms .gform_wrapper .top_label .name-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .gform_button {
      height: 50px;
      font-size: 14px; }
    .modal-content-forms .gform_wrapper .top_label .message-modal-form textarea {
      font-size: 14px;
      padding: 15px; }
    .modal-content-forms .validation_message,
    .modal-content-forms div.validation_error {
      font-size: 14px; }
  .obmanka {
    background: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    z-index: 1;
    left: 0;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 52%, 50% 100%, 0 52%);
    clip-path: polygon(0% 0%, 100% 0, 100% 52%, 50% 100%, 0 52%); }
  .off-canvas-content .logo-header {
    margin-left: 45px; }
  .hide-for-mob {
    display: none !important; }
  .show-for-mob {
    display: block !important; }
  .mob-hide {
    display: none; }
  .custom-padding-mob-row {
    padding-left: 60px;
    padding-right: 60px; }
  .mob-home-btn {
    font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #f8b13c; }
  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    width: 28px;
    height: 28px; }
  .slick-slider .slick-dots li {
    width: 25px;
    margin: 0; }
    .slick-slider .slick-dots li button {
      height: 8px;
      width: 8px; }
      .slick-slider .slick-dots li button:before {
        width: 14px;
        height: 14px;
        top: 2px;
        left: 6px; }
  .off-canvas-content .top-bar-left {
    padding-top: 20px;
    padding-bottom: 10px;
    width: 80%; }
  .top-bar-right.menu-gamburger-box {
    position: relative;
    height: 40px;
    width: 20%; }
  .menu-gamburger {
    position: absolute;
    right: 45px;
    width: 40px;
    height: 40px;
    top: 25px; }
  .off-canvas {
    background: #f9a51a; }
  .mobile-menu-canvas .menu a {
    font-size: 20px;
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0.4px;
    text-align: left;
    padding-left: 65px;
    outline: none; }
    .mobile-menu-canvas .menu a:hover {
      background: rgba(255, 255, 255, 0.84); }
  .mobile-menu-canvas .menu .active a {
    background: rgba(255, 255, 255, 0.84); }
  .position-left {
    width: 80%;
    max-width: 485px;
    transform: translateX(-100%);
    z-index: 902; }
  .position-left.is-open ~ .off-canvas-content {
    transform: none;
    z-index: 900;
    position: relative; }
  .menu-mobile {
    list-style: none;
    margin: 0; }
    .menu-mobile li a {
      position: relative;
      font-size: 0;
      height: 40px;
      width: 40px;
      display: block;
      transition: all 0.5s ease; }
      .menu-mobile li a:hover, .menu-mobile li a:focus {
        background: none;
        color: inherit; }
      .menu-mobile li a:before, .menu-mobile li a:after {
        content: '';
        display: block;
        position: absolute;
        width: 33px;
        height: 1px;
        background: #fff;
        margin: auto;
        left: 0;
        right: 0;
        transition: all 0.5s ease;
        transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%); }
      .menu-mobile li a:before {
        top: 15px; }
      .menu-mobile li a:after {
        top: 25px; }
    .menu-mobile li a[aria-expanded="true"]:before {
      transform: rotate(45deg) translateZ(0);
      top: 50%; }
    .menu-mobile li a[aria-expanded="true"]:after {
      transform: rotate(-45deg) translateZ(0);
      top: 50%; }
  .header-hide {
    transform: translateY(-20px); }
  .off-canvas-content .top-bar-left {
    padding-top: 20px;
    padding-bottom: 10px; }
  .off-canvas-content .logo-header {
    width: 166px;
    height: 47px; }
  .social-menu .social-menu-text {
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    text-align: left;
    color: #ffffff;
    padding-top: 17px;
    display: block;
    margin-left: 65px; }
  .social-menu ul {
    list-style: none;
    text-align: center;
    margin: 0;
    position: relative;
    padding-top: 0px;
    margin-left: 65px;
    margin-top: 5px; }
    .social-menu ul:before {
      content: '';
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      position: absolute;
      top: 0;
      left: 0; }
    .social-menu ul li {
      display: block;
      text-align: center;
      float: left;
      padding-top: 10px; }
      .social-menu ul li a {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        border-radius: 50%;
        color: #f8b13c;
        background: #fff;
        margin: 0 10px; }
  .title-home {
    padding-left: 0; }
    .title-home:after {
      top: inherit;
      bottom: -20px;
      width: 30px; }
  section.slider-home .slider-text-content {
    left: 10%;
    max-width: 480px;
    top: inherit;
    bottom: 15%;
    transform: inherit;
    -o-transform: inherit;
    -moz-transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit; }
  section.slider-home h2.slider-home-title {
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: left; }
  section.slider-home .slick-dots {
    top: inherit;
    bottom: 30px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); }
    section.slider-home .slick-dots li {
      float: left; }
  .accordion-title {
    background: #f6eee2;
    height: 90px;
    padding-top: 1.5rem; }
    .accordion-title:before {
      content: '\f107';
      font-family: 'FontAwesome';
      font-size: 30px;
      right: 11%;
      color: #454547;
      position: absolute;
      top: 56%;
      transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out; }
    .accordion-title:hover, .accordion-title:focus {
      background-color: #f6eee2; }
  .accordion-home .vertical-box {
    display: inline-block;
    width: 100%;
    height: 100%; }
  .accordion-home .accordion-item {
    margin-bottom: 5px; }
  .accordion-home span.accord-icon-box {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: center;
    width: 100px; }
  .accordion-home .accord-icon-hover {
    height: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out; }
  .accordion-home .accord-text {
    display: inline-block;
    vertical-align: middle;
    font-family: AvenirNext;
    font-size: 19px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #444446;
    max-width: 300px; }
    .accordion-home .accord-text br {
      display: none; }
  .accordion-home .is-active .accordion-title {
    background: #f8b13c; }
    .accordion-home .is-active .accordion-title:before {
      content: '\f107';
      font-family: 'FontAwesome';
      transform: scaleY(-1);
      top: 42%;
      color: #fff; }
  .accordion-home .is-active .accord-text {
    color: #fff; }
  .accordion-home .is-active .accord-icon-no-hover {
    height: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out; }
  .accordion-home .is-active .accord-icon-hover {
    height: inherit;
    position: relative; }
  .accordion-home .accord-content-wrapper {
    margin-bottom: 15px; }
  .accordion-home .accordion-content {
    padding: 0; }
  .accordion-home .image-accord-wrapper {
    padding: 0 30px 43px;
    position: relative;
    overflow: hidden; }
    .accordion-home .image-accord-wrapper:before, .accordion-home .image-accord-wrapper:after {
      position: absolute;
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      z-index: 0;
      bottom: 42%; }
    .accordion-home .image-accord-wrapper:before {
      left: -36%;
      transform: rotate(24deg);
      background: #fff;
      box-shadow: 0 0 18px 0 rgba(226, 226, 226, 0.5); }
    .accordion-home .image-accord-wrapper:after {
      right: -36%;
      transform: rotate(-24deg);
      background: #fff;
      box-shadow: 0 0 18px 0 rgba(226, 226, 226, 0.5); }
  .accordion-home .img-accord-content {
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 52%, 50% 100%, 0 52%);
    clip-path: polygon(0% 0%, 100% 0, 100% 52%, 50% 100%, 0 52%);
    max-height: 320px;
    position: relative;
    z-index: 2; }
  .accordion-home .accord-top-box {
    float: left;
    width: 50%;
    font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: 0.3px;
    text-align: left;
    color: #595959;
    position: relative; }
    .accordion-home .accord-top-box:after {
      content: '';
      display: block;
      position: absolute;
      width: 45px;
      height: 2px;
      left: 0;
      bottom: -25px;
      background: #595959; }
  .accordion-home .accord-mid-box {
    float: right;
    width: 50%;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.54;
    letter-spacing: 0.2px;
    text-align: right;
    color: #838383; }
    .accordion-home .accord-mid-box p {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.2px; }
  .accordion-home .accord-bottom-box {
    width: 100%;
    float: left; }
  .about-duallayer {
    padding-top: 100px; }
    .about-duallayer .about-dll-left {
      padding: 0 0 0 60px; }
      .about-duallayer .about-dll-left .abt-sub-title {
        font-size: 18px;
        text-align: left;
        color: #000000;
        padding: 20px 0 50px 0; }
        .about-duallayer .about-dll-left .abt-sub-title .abt-sub-box {
          padding-left: 0; }
          .about-duallayer .about-dll-left .abt-sub-title .abt-sub-box:before {
            bottom: -20px;
            background: #000; }
      .about-duallayer .about-dll-left .abt-title-content {
        display: none; }
      .about-duallayer .about-dll-left .abt-dll-content {
        padding: 0 20px 0 0;
        font-size: 14px;
        line-height: 1.36;
        letter-spacing: 0.2px;
        text-align: left; }
        .about-duallayer .about-dll-left .abt-dll-content p {
          font-size: 14px;
          line-height: 1.36;
          letter-spacing: 0.2px;
          text-align: left; }
    .about-duallayer .about-dll-right {
      max-height: 410px; }
      .about-duallayer .about-dll-right img {
        height: 100%;
        width: auto;
        max-width: initial;
        left: 0;
        top: 0;
        position: absolute; }
    .about-duallayer .abt-dll-link-mob {
      font-family: FuturaStd-Bold, Roboto, Arial, sans-serif;
      font-size: 15px;
      letter-spacing: 0.2px;
      text-align: right;
      padding: 40px 60px 80px 0;
      color: #f8b13c; }
      .about-duallayer .abt-dll-link-mob a {
        color: #f8b13c; }
        .about-duallayer .abt-dll-link-mob a:hover {
          color: #292929; }
  section.our-team-testimonials .home-title-box {
    padding: 40px 0 50px; }
  section.our-team-testimonials .bg-our-team {
    padding: 0 60px; }
  section.our-team-testimonials .sc-our-team-content, section.our-team-testimonials .sc-our-team-content p {
    font-size: 14px;
    line-height: 1.43; }
  section.our-team-testimonials .our-team-link {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 20px 0 60px; }
    section.our-team-testimonials .our-team-link a {
      font-size: 16px; }
      section.our-team-testimonials .our-team-link a:before {
        display: none; }
  section.our-team-testimonials .home-testimonials-box {
    padding: 0 0 30px; }
    section.our-team-testimonials .home-testimonials-box .home-title-box {
      padding: 50px 60px 50px; }
    section.our-team-testimonials .home-testimonials-box .title-home {
      color: #000; }
    section.our-team-testimonials .home-testimonials-box .wrapper-testimonials {
      font-size: 18px;
      line-height: 1.33;
      letter-spacing: 0.3px;
      padding-bottom: 30px;
      margin-bottom: 10px; }
      section.our-team-testimonials .home-testimonials-box .wrapper-testimonials .testimonial-name {
        font-size: 12px;
        right: 0; }
    section.our-team-testimonials .home-testimonials-box .home-testimonials {
      padding: 0 60px; }
      section.our-team-testimonials .home-testimonials-box .home-testimonials:before {
        font-size: 40px;
        padding-bottom: 40px;
        letter-spacing: -3px; }
    section.our-team-testimonials .home-testimonials-box .slider-testtimonial {
      margin-bottom: 0;
      padding-bottom: 15px; }
    section.our-team-testimonials .home-testimonials-box .testimonials-home-link {
      bottom: 0;
      left: 0;
      position: relative;
      padding-left: 60px; }
      section.our-team-testimonials .home-testimonials-box .testimonials-home-link a {
        font-size: 16px; }
        section.our-team-testimonials .home-testimonials-box .testimonials-home-link a:before {
          display: none; }
  section.progress-section {
    background-color: #fafafa;
    box-shadow: 0 0 8px 0 rgba(226, 226, 226, 0.5); }
    section.progress-section .title-number-mob {
      font-size: 18px;
      letter-spacing: 0.4px;
      text-align: center;
      color: #000000;
      padding-bottom: 20px; }
    section.progress-section .progress-wrapper {
      padding: 35px 60px 20px; }
    section.progress-section ul.number-progress-box .number-wrapper {
      max-width: 50%;
      padding: 25px 20px; }
    section.progress-section ul.number-progress-box .number-box, section.progress-section ul.number-progress-box .number-box span {
      font-size: 72px;
      letter-spacing: 0px; }
    section.progress-section ul.number-progress-box .number-title-box {
      font-size: 19px;
      letter-spacing: -0.3px;
      padding-top: 0;
      padding-bottom: 20px;
      margin-bottom: 20px; }
      section.progress-section ul.number-progress-box .number-title-box:after {
        width: 100px; }
    section.progress-section ul.number-progress-box .number-content-box {
      font-size: 13px;
      line-height: 1.46;
      letter-spacing: -0.3px; }
  section.home-new {
    box-shadow: none;
    padding-bottom: 20px; }
    section.home-new span.line-vertivale {
      display: none; }
    section.home-new .title-home-new {
      padding: 0 60px; }
      section.home-new .title-home-new .title-home {
        color: #000; }
        section.home-new .title-home-new .title-home:after {
          background: #000; }
    section.home-new .home-news-box {
      width: 50%;
      display: inline-block;
      float: none;
      padding-bottom: 30px; }
      section.home-new .home-news-box:nth-child(even) {
        float: right; }
      section.home-new .home-news-box .news-time-publish {
        font-size: 14px;
        padding: 10px 0 5px; }
      section.home-new .home-news-box h2.title-home-news {
        font-size: 19px;
        line-height: 1.32;
        letter-spacing: 0.7px; }
    section.home-new .scrollme {
      padding: 0 60px 0; }
    section.home-new .home-news-images {
      height: 265px; }
      section.home-new .home-news-images img {
        height: 400px;
        width: auto; }
    section.home-new .news-home-link {
      text-align: left;
      padding-left: 60px; }
      section.home-new .news-home-link a {
        font-size: 15px; }
        section.home-new .news-home-link a:before {
          display: none; }
  section.dll-partners-home .title-home-partners {
    margin-top: 25px;
    margin-bottom: 60px;
    padding: 0 60px; }
  section.dll-partners-home span.line-vertivale {
    display: none; }
  section.dll-partners-home .partners-home-wrapper {
    margin-bottom: 40px; }
    section.dll-partners-home .partners-home-wrapper:before {
      display: none; }
    section.dll-partners-home .partners-home-wrapper .partners-box {
      padding: 0;
      border-bottom: 1px solid rgba(220, 220, 220, 0.3);
      line-height: 90px; }
    section.dll-partners-home .partners-home-wrapper .partners-link img {
      max-width: 180px; }
  section.section-header-other-page .background-section-other-page {
    height: 370px; }
  section.section-header-other-page .other-header-box {
    padding: 0 60px; }
  section.section-header-other-page .other-header-title {
    font-size: 30px;
    padding-bottom: 5px;
    font-family: FuturaStd-Book, Roboto, Arial, sans-serif; }
  section.section-header-other-page .other-header-sub-title {
    font-size: 16px;
    padding-top: 5px; }
  .title-other-page {
    padding-left: 0;
    padding-bottom: 20px; }
    .title-other-page:after {
      width: 30px;
      top: inherit;
      bottom: 0px; }
  .content-text {
    font-size: 14px; }
  section.section-faq-one .accordion-title {
    font-size: 15px;
    padding: 13px 0;
    height: 50px;
    background: none; }
    section.section-faq-one .accordion-title:before {
      font-size: 26px;
      margin-top: -0.1rem;
      color: #6d6d6d; }
  section.section-faq-one .accordion-item.is-active .accordion-title:before {
    margin-top: -0.8rem; }
  section.section-faq-one .accordion-item:nth-child(2) .accordion-title {
    border-top: none; }
  section.section-faq-one .accordion-content {
    padding: 1rem 0; }
  section.section-faq-one .sr-faq-wrapper-one {
    padding-top: 75px; }
    section.section-faq-one .sr-faq-wrapper-one .title-faq-one {
      padding: 0 60px; }
  section.section-faq-one .section-faq-wrapper {
    padding: 30px 40px 0; }
  section.section-faq-one .accordion-item:nth-child(even) {
    float: right; }
  section.section-faq-one .accordion {
    padding-bottom: 45px; }
  section.section-faq-one .content-text {
    font-size: 13px; }
  section.form-faq-section .title-sc-faq-form {
    padding: 35px 60px 20px; }
  section.form-faq-section .contact-form-dlit {
    padding: 0 50px 20px; }
    section.form-faq-section .contact-form-dlit .ginput_container {
      margin-top: 0 !important; }
    section.form-faq-section .contact-form-dlit .cont-form input {
      height: 50px;
      margin-bottom: 15px; }
    section.form-faq-section .contact-form-dlit .cont-us-mesage .textarea {
      height: 180px; }
    section.form-faq-section .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px; }
    section.form-faq-section .contact-form-dlit .gform_fields {
      position: relative;
      height: 330px; }
      section.form-faq-section .contact-form-dlit .gform_fields .cont-us-mail {
        position: absolute;
        top: 67px;
        left: 0; }
      section.form-faq-section .contact-form-dlit .gform_fields .cont-us-mesage {
        position: absolute;
        bottom: 0;
        left: 0; }
    section.form-faq-section .contact-form-dlit .cont-us-name,
    section.form-faq-section .contact-form-dlit .cont-us-mail,
    section.form-faq-section .contact-form-dlit .cont-us-mesage {
      width: 100%; }
    section.form-faq-section .contact-form-dlit .gform_wrapper .gform_footer.top_label {
      display: block;
      position: relative;
      width: 100%;
      margin-top: 20px; }
  .section-careers-one {
    padding-top: 60px; }
    .section-careers-one .title-sc-one {
      padding: 0 60px 30px; }
    .section-careers-one .sr-content-box-one {
      padding: 0 60px; }
    .section-careers-one .tabs-panel {
      margin-bottom: 0;
      padding: 0 50px; }
    .section-careers-one .tabs-nav {
      padding: 30px 50px 10px; }
    .section-careers-one .tabs-title {
      padding-bottom: 60px;
      max-width: 480px;
      width: 100%;
      margin: auto;
      left: 0;
      right: 0;
      float: none; }
      .section-careers-one .tabs-title:last-child {
        float: none; }
    .section-careers-one .careers-box-img-content {
      max-height: 360px; }
    .section-careers-one .text-careers-box {
      display: block;
      text-align: center;
      position: absolute;
      width: 100%;
      top: 50%;
      Left: 50%;
      transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); }
      .section-careers-one .text-careers-box br {
        display: none; }
      .section-careers-one .text-careers-box span.mob-more-dateils {
        display: block;
        font-family: LucidaGrande, Roboto, Arial, sans-serif;
        font-size: 18px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 2.11;
        letter-spacing: 0.5px;
        color: #f9a51a;
        max-width: 220px;
        left: 0;
        right: 0;
        margin: 20px auto 0;
        background: #fff;
        padding: 9px 5px 8px 5px; }
  .footer {
    padding-top: 30px; }
    .footer .contact-us-form {
      max-height: 150px; }
    .footer .footer-form-title {
      font-family: 'LucidaGrande', Roboto, Arial, sans-serif;
      font-size: 24px;
      font-weight: bold;
      line-height: 1.5;
      letter-spacing: 0.3px;
      color: #000000;
      text-align: center;
      margin-bottom: 15px; }
    .footer .contact-us-form .open_modal {
      height: 45px;
      line-height: 45px;
      margin: auto;
      width: 100%;
      max-width: 430px;
      font-size: 18px; }
    .footer ul#menu-footer-menu {
      padding: 0 0 30px 0; }
      .footer ul#menu-footer-menu li a {
        text-align: center; }
    .footer #menu-copyright-menu-footer {
      width: 100%;
      text-align: center;
      padding-top: 10px;
      padding-bottom: 10px; }
      .footer #menu-copyright-menu-footer li {
        text-align: center;
        display: inline-block;
        float: none; }
    .footer .footer-box-one {
      margin-bottom: 0px;
      padding-bottom: 30px; }
    .footer .made-by {
      text-align: center;
      padding: 15px; }
      .footer .made-by, .footer .made-by .k-3soft {
        font-size: 14px; }
    .footer .source-org {
      display: block;
      position: relative;
      float: left;
      text-align: center;
      z-index: 1;
      margin-bottom: 0;
      padding: 15px 0 18px; }
      .footer .source-org:after {
        display: block;
        content: '';
        height: 100%;
        position: absolute;
        width: 150%;
        background: #fff;
        bottom: 0;
        left: -25%;
        z-index: -1;
        border-top: 1px solid #dfdfdf; }
    .footer ul.social-footer.mob-visible {
      display: block;
      position: relative;
      text-align: center;
      bottom: 0; }
  section.section-company {
    padding: 40px 0; }
    section.section-company .title-sc-company {
      padding-top: 0; }
    section.section-company .section-cc-slider {
      padding-left: 60px; }
      section.section-company .section-cc-slider .cc-sl-wrap-box {
        padding: 30px 0 30px 0; }
      section.section-company .section-cc-slider .cc-slider-wrapper {
        padding-bottom: 60px;
        margin-bottom: 0; }
    section.section-company .cc-slider-content {
      font-size: 14px;
      line-height: 1.43;
      letter-spacing: 0.6px;
      text-align: left;
      padding-right: 20px; }
    section.section-company .section-cc-image {
      padding-right: 0;
      padding-top: 80px; }
      section.section-company .section-cc-image img {
        max-height: 370px;
        width: auto; }
    section.section-company .slick-dots-arrow .slick-prev {
      left: 0;
      right: inherit; }
    section.section-company .slick-dots-arrow .slick-next {
      right: 20%; }
    section.section-company .slick-dots-arrow .slick-dots {
      right: inherit;
      left: 0;
      width: 80%;
      height: 22px; }
  section.section-our-team-company {
    padding: 80px 0 60px; }
    section.section-our-team-company .title-sc-our-team {
      padding-bottom: 20px; }
    section.section-our-team-company .our-team-block {
      font-size: 14px;
      line-height: 1.43;
      letter-spacing: 0.6px;
      padding-bottom: 30px; }
    section.section-our-team-company .left-block-company-our-team {
      padding-left: 0;
      position: relative; }
      section.section-our-team-company .left-block-company-our-team img {
        position: absolute;
        left: 0;
        display: block;
        width: auto;
        height: 270px; }
    section.section-our-team-company .right-block-company-our-team {
      padding-right: 60px; }
    section.section-our-team-company .slick-dots-arrow .slick-prev {
      left: 0;
      right: inherit; }
    section.section-our-team-company .slick-dots-arrow .slick-arrow {
      bottom: 0; }
    section.section-our-team-company .slick-dots-arrow .slick-dots {
      bottom: -13px;
      width: 80%; }
  section.section-our-commitment {
    box-shadow: none;
    padding: 115px 0 120px 0; }
    section.section-our-commitment .title-sc-our-commitment {
      padding-bottom: 20px; }
    section.section-our-commitment .our-commitment-wrapper {
      float: right;
      padding-right: 60px; }
    section.section-our-commitment .our-commitment-right-images {
      float: left;
      padding-left: 0;
      margin-top: 45px;
      min-height: 280px;
      overflow: hidden;
      position: relative; }
      section.section-our-commitment .our-commitment-right-images img {
        max-height: 280px;
        position: absolute;
        max-width: 100%;
        padding-right: 10px;
        left: 0;
        display: block; }
    section.section-our-commitment .our-commitment-content-wrapper {
      display: block; }
    section.section-our-commitment .content-box {
      font-size: 14px;
      line-height: 1.43;
      letter-spacing: 0.6px; }
  section.section-services-goal {
    padding-top: 40px;
    padding-bottom: 40px; }
    section.section-services-goal .sr-box-left {
      padding-left: 60px;
      padding-right: 60px; }
    section.section-services-goal .title-sc-goal {
      padding: 0px 0 30px; }
    section.section-services-goal .sr-content-box-goal {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-services-goal .sr-box-right {
      text-align: center;
      padding-left: 60px;
      padding-right: 60px; }
  section.services-our-services .title-sc-our-services {
    padding: 40px 60px 60px; }
  section.services-our-services .content-services-box {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px;
    padding: 0 60px; }
  section.services-our-services .wrapper-srs-content {
    padding: 25px 0px 70px; }
  section.services-our-services .services-wrapper {
    width: 48%;
    margin: 1%;
    height: 360px; }
    section.services-our-services .services-wrapper a {
      font-size: 16px;
      letter-spacing: 0.5px; }
  section.services-our-services span.icon-title-services-wrapper {
    padding: 0 10px;
    top: 50%; }
  section.services-our-services .icon-services-box {
    padding-bottom: 0px; }
  section.services-our-services span.add-description-services {
    font-size: 13px;
    max-height: 100%;
    text-overflow: ellipsis;
    /* white-space: pre-wrap; */
    padding: 10px;
    /* line-height: 1.54; */
    overflow: hidden;
    letter-spacing: 0.6px; }
  section.section-what-we-do {
    padding: 40px 0 80px;
    position: relative; }
    section.section-what-we-do .column-what-we {
      padding-left: 60px;
      padding-right: 20px; }
    section.section-what-we-do .title-sc-what-we-do {
      padding: 0px 0 30px; }
    section.section-what-we-do .section-what-we-do-image {
      padding-right: 0px;
      position: absolute;
      right: -15%;
      padding-top: 80px; }
    section.section-what-we-do .content-text {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      text-align: left;
      max-width: 455px; }
    section.section-what-we-do .link-services-sin-pg-box {
      padding-top: 50px;
      text-align: right;
      float: right;
      padding-right: 60px; }
    section.section-what-we-do .link-services-sin-pg {
      font-size: 15px; }
      section.section-what-we-do .link-services-sin-pg:before {
        display: none; }
  section.section-singl-services-2 {
    padding: 80px 0 65px 0; }
    section.section-singl-services-2 .left-block-singl-services-3 {
      padding-left: 0px;
      position: absolute;
      left: -30%;
      overflow: hidden; }
      section.section-singl-services-2 .left-block-singl-services-3 img {
        max-height: 300px; }
    section.section-singl-services-2 .right-block-singl-services-3 {
      padding-left: 0; }
    section.section-singl-services-2 .singl-page-services-content-3 {
      font-size: 14px;
      line-height: 1.54;
      letter-spacing: 0.6px;
      padding-right: 60px;
      display: block;
      transform: none;
      top: 0;
      position: relative;
      padding-top: 30px; }
    section.section-singl-services-2 .our-falsh-block2 .falsh-box-1 {
      width: 36%; }
      section.section-singl-services-2 .our-falsh-block2 .falsh-box-1:before {
        display: none; }
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-2:before,
    section.section-singl-services-2 .our-falsh-block-1 .falsh-box-3:before {
      display: none; }
  section.section-our-services {
    padding-top: 100px; }
    section.section-our-services .title-services-singl {
      padding-left: 60px; }
    section.section-our-services .singl-services-wrapper {
      margin-top: 70px;
      margin-bottom: 60px;
      border-bottom: none; }
      section.section-our-services .singl-services-wrapper:before {
        display: none; }
      section.section-our-services .singl-services-wrapper .services-box {
        line-height: 95px;
        border-bottom: 1px solid rgba(220, 220, 220, 0.3); }
        section.section-our-services .singl-services-wrapper .services-box:nth-child(odd) {
          padding-left: 60px; }
        section.section-our-services .singl-services-wrapper .services-box:nth-child(even) {
          padding-right: 60px; }
      section.section-our-services .singl-services-wrapper a.singl-services-link {
        line-height: 95px;
        text-align: left; }
        section.section-our-services .singl-services-wrapper a.singl-services-link img {
          max-height: 50px;
          width: auto;
          max-width: 50px; }
    section.section-our-services span.title-other-services-page {
      font-size: 16px;
      padding-left: 2px; }
  .article-wrapper {
    padding: 0;
    position: relative;
    margin: 60px 0 60px; }
  .blog-post-header {
    position: absolute;
    left: -57%;
    top: 0;
    text-align: right; }
    .blog-post-header img {
      max-height: 310px;
      width: auto; }
  .blog-post-wrapper {
    display: block;
    position: relative;
    top: 0;
    transform: none;
    padding: 0; }
  .article-wrapper:nth-child(odd) .blog-post-content {
    padding-right: 60px; }
  .article-wrapper:nth-child(odd) a.blog-link-page {
    text-align: right;
    padding-left: inherit; }
  .article-wrapper:nth-child(even) .blog-post-header {
    right: -57%;
    left: inherit;
    text-align: left; }
  .article-wrapper:nth-child(even) .blog-post-content {
    padding-left: 60px; }
  .article-wrapper:nth-child(even) a.blog-link-page {
    padding-left: inherit;
    text-align: left; }
    .article-wrapper:nth-child(even) a.blog-link-page:before {
      left: inherit;
      right: 0; }
  .blog-post-title {
    margin-bottom: 30px; }
    .blog-post-title, .blog-post-title a {
      font-size: 18px; }
  .blog-post-content-box {
    font-size: 14px;
    line-height: 1.36;
    letter-spacing: 0.2px;
    margin-bottom: 20px; }
  a.blog-link-page {
    font-size: 15px; }
    a.blog-link-page:before {
      width: 55%; }
  .single-post div#content,
  .single-post #content #inner-content {
    padding-top: 0; }
  .single-content-22 {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.6px; }
  section.single-page-sc-one {
    padding-bottom: 30px; }
    section.single-page-sc-one .sing-post-entry-content-wrapper {
      width: 100%;
      padding: 0; }
    section.single-page-sc-one .title-crate-time-singl {
      margin-top: 0; }
      section.single-page-sc-one .title-crate-time-singl .title-absolut {
        position: relative;
        left: 0;
        padding: 130px 60px 0; }
    section.single-page-sc-one .single-title {
      position: relative;
      margin-bottom: 0;
      padding-bottom: 20px; }
      section.single-page-sc-one .single-title:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100px;
        height: 1px;
        background: #fff; }
    section.single-page-sc-one .post-info {
      padding: 20px 60px 15px; }
      section.single-page-sc-one .post-info, section.single-page-sc-one .post-info a {
        font-size: 13px; }
    section.single-page-sc-one .post-author {
      text-align: right; }
    section.single-page-sc-one .sing-sc-1-content {
      padding: 50px 60px 0; }
  section.single-page-sc-two {
    background: none !important;
    padding: 0; }
    section.single-page-sc-two:after {
      display: none; }
    section.single-page-sc-two .sc-sing-page-two-left {
      position: relative;
      z-index: 0;
      padding: 60px 60px 30px;
      width: 100%; }
      section.single-page-sc-two .sc-sing-page-two-left:after {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(222, 146, 19, 0.92);
        z-index: -1; }
    section.single-page-sc-two .sc-sing-page-two-right {
      width: 100%;
      padding: 50px 60px 40px; }
      section.single-page-sc-two .sc-sing-page-two-right .sc-sing-part1 {
        color: #787878; }
    section.single-page-sc-two .sc-sing-quote-text {
      font-size: 22px;
      line-height: 1.09;
      letter-spacing: 0.3px;
      padding: 5px 0 0; }
      section.single-page-sc-two .sc-sing-quote-text:before {
        letter-spacing: -2px;
        height: 25px; }
  .navigation-single-page-mobile .pre-post-sing-page {
    border-right: 1px solid #fff; }
    .navigation-single-page-mobile .pre-post-sing-page a {
      padding-left: 60px; }
      .navigation-single-page-mobile .pre-post-sing-page a:before {
        left: 0;
        background: url(../images/if_Arrow_Forward_pre.png) 70% 50% no-repeat; }
  .navigation-single-page-mobile .next-post-sing-page {
    border-left: 1px solid #fff; }
    .navigation-single-page-mobile .next-post-sing-page a {
      padding-right: 60px; }
      .navigation-single-page-mobile .next-post-sing-page a:before {
        right: 0;
        background: url(../images/if_Arrow_Forward_next.png) 30% 50% no-repeat; }
  .navigation-single-page-mobile .pre-post-sing-page,
  .navigation-single-page-mobile .next-post-sing-page {
    padding: 0;
    font-size: 0;
    display: block;
    height: 50px; }
    .navigation-single-page-mobile .pre-post-sing-page a,
    .navigation-single-page-mobile .next-post-sing-page a {
      font-size: 0px;
      height: 100%;
      width: 100%;
      display: block;
      position: relative;
      background: #f9a51a; }
      .navigation-single-page-mobile .pre-post-sing-page a:before,
      .navigation-single-page-mobile .next-post-sing-page a:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        background-size: 21px; }
      .navigation-single-page-mobile .pre-post-sing-page a:hover,
      .navigation-single-page-mobile .next-post-sing-page a:hover {
        background: #292929; }
  .navigation-single-page-mobile .all-news-mob-post {
    padding: 0;
    height: 50px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff; }
    .navigation-single-page-mobile .all-news-mob-post a {
      height: 100%;
      width: 100%;
      display: block;
      background: #f9a51a;
      text-align: center;
      line-height: 50px;
      letter-spacing: 0.9px;
      color: #fff;
      font-size: 14px; }
      .navigation-single-page-mobile .all-news-mob-post a:hover {
        background: #292929; }
  footer.singl-post-footer {
    padding: 35px 50px 30px; }
    footer.singl-post-footer .text-share {
      font-size: 14px; }
    footer.singl-post-footer .share-it a {
      font-size: 20px;
      padding: 0 5px; }
  section.section-testimonials .testimonials-box {
    padding: 50px 60px 0px;
    display: block; }
  section.section-testimonials .tesimonials-image {
    margin-bottom: 30px; }
  section.section-testimonials .content-box-testim {
    font-size: 14px;
    line-height: 1.54;
    letter-spacing: 0.6px; }
  section.section-testimonials .author-title-testimonials {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.5px; }
  section.section-testimonials .page-navigation {
    padding: 35px 45px 0;
    text-align: center; }
    section.section-testimonials .page-navigation li {
      display: inline-block; }
      section.section-testimonials .page-navigation li:first-child, section.section-testimonials .page-navigation li:last-child {
        display: none; }
  section.section-testimonials .testimonials-content-box {
    padding: 0 0 50px;
    border-bottom: 1px solid #d7d7d7; }
    section.section-testimonials .testimonials-content-box:before {
      display: none; }
  section.section-contact-tel-adress {
    padding: 60px 50px 85px; }
    section.section-contact-tel-adress .box-contact-ph-em-loc {
      padding: 25px 30px;
      margin-top: 40px;
      position: relative;
      width: 80%;
      left: -5%; }
    section.section-contact-tel-adress .contact-wrapper-content {
      margin-bottom: 60px; }
    section.section-contact-tel-adress .telphone-contact-wrapper,
    section.section-contact-tel-adress .email-contact-wrapper,
    section.section-contact-tel-adress .adress-contact-wrapper {
      font-size: 16px;
      margin-bottom: 10px;
      padding-left: 30px; }
      section.section-contact-tel-adress .telphone-contact-wrapper:before,
      section.section-contact-tel-adress .email-contact-wrapper:before,
      section.section-contact-tel-adress .adress-contact-wrapper:before {
        font-size: 18px; }
      section.section-contact-tel-adress .telphone-contact-wrapper a,
      section.section-contact-tel-adress .email-contact-wrapper a,
      section.section-contact-tel-adress .adress-contact-wrapper a {
        font-size: 16px; }
    section.section-contact-tel-adress .acf-map {
      height: 320px; }
  section.form-contact-us {
    padding: 45px 50px 30px; }
  .contact-form-dlit .gform_fields {
    height: 400px;
    position: relative; }
  .contact-form-dlit .cont-form input {
    height: 50px;
    margin-bottom: 10px; }
  .contact-form-dlit .gform_wrapper .cont-us-mesage {
    position: absolute;
    left: 0px;
    bottom: 65px; }
  .contact-form-dlit .gform_wrapper .cont-us-mail {
    position: absolute;
    left: 0px;
    top: 65px; }
  .contact-form-dlit .gform_wrapper input[type=email],
  .contact-form-dlit .gform_wrapper input[type=number],
  .contact-form-dlit .gform_wrapper input[type=password],
  .contact-form-dlit .gform_wrapper input[type=tel],
  .contact-form-dlit .gform_wrapper input[type=text],
  .contact-form-dlit .gform_wrapper input[type=url],
  .contact-form-dlit .gform_wrapper textarea {
    font-size: 16px;
    border: none; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label {
    width: 100%; }
    .contact-form-dlit .gform_wrapper .gform_footer.top_label .gform_button {
      height: 50px;
      margin: 0; }
  .contact-form-dlit .cont-us-mesage .textarea {
    height: 180px; }
  .contact-form-dlit .gform_wrapper .gform_footer.top_label,
  .contact-form-dlit .cont-us-mail,
  .contact-form-dlit .cont-us-mesage,
  .contact-form-dlit .cont-us-name {
    width: 100%; }
  .text-form-mob-ct {
    font-size: 18px;
    color: #313131;
    font-family: LucidaGrande, Roboto, Arial, sans-serif;
    padding: 0 15px;
    margin-bottom: 15px; } }

@media screen and (max-width: 670px) {
  section.section-our-services span.title-other-services-page {
    font-size: 13px;
    padding-left: 2px; }
  section.section-our-services .singl-services-wrapper a.singl-services-link img {
    max-height: 50px;
    width: auto;
    max-width: 45px; } }

@media screen and (max-width: 580px) {
  .modal-content-box h2 {
    font-size: 26px;
    line-height: 1.2; }
  .modal-content-box {
    font-size: 14px; }
  .modal-content-forms .gform_wrapper .top_label .name-modal-form input,
  .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
  .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
  .modal-content-forms .gform_wrapper .top_label .email-modal-form input {
    margin-bottom: 15px; }
    .modal-content-forms .gform_wrapper .top_label .name-modal-form input, .modal-content-forms .gform_wrapper .top_label .name-modal-form input .gform_button,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input .gform_button,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input .gform_button,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form input .gform_button {
      font-size: 14px; }
  .modal-content-forms .gform_wrapper .top_label .message-modal-form textarea {
    font-size: 14px;
    height: 180px; }
  .obmanka {
    top: -15px; }
  .accordion-home .image-accord-wrapper:before {
    left: -27.6%;
    bottom: 37%;
    transform: rotate(30deg); }
  .accordion-home .image-accord-wrapper:after {
    right: -27.6%;
    bottom: 37%;
    transform: rotate(-30deg); }
  section.slider-home h2.slider-home-title {
    font-size: 20px; }
  .accordion-home .accord-top-box {
    font-size: 20px; }
  .mob-home-btn {
    font-size: 13px; }
  section.home-new .home-news-images img {
    height: 300px;
    width: auto; }
  section.section-company .section-cc-slider {
    width: 70%; }
  section.section-company .section-cc-image {
    width: 100%;
    position: absolute;
    right: -70%;
    overflow: hidden; }
    section.section-company .section-cc-image img {
      position: absolute;
      width: auto;
      height: auto;
      left: 0; }
  section.section-our-team-company {
    position: relative; }
    section.section-our-team-company .left-block-company-our-team {
      width: 100%;
      position: absolute;
      left: -70%;
      overflow: hidden; }
      section.section-our-team-company .left-block-company-our-team img {
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%); }
    section.section-our-team-company .right-block-company-our-team {
      width: 70%; }
  section.section-our-services .singl-services-wrapper .services-box {
    width: 100%; }
    section.section-our-services .singl-services-wrapper .services-box:nth-child(odd) {
      padding-left: 60px;
      padding-right: 60px; }
    section.section-our-services .singl-services-wrapper .services-box:nth-child(even) {
      padding-left: 60px;
      padding-right: 60px; }
  section.section-our-services span.line-vertivale.line-vertivale-02 {
    display: none; }
  section.services-our-services .services-wrapper {
    height: 280px; } }

@media screen and (max-width: 480px) {
  section.slider-home .slider-text-content {
    max-width: 380px; }
  .obmanka {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    z-index: 1;
    left: 0; }
  .accordion-home .image-accord-wrapper:before {
    left: -20%;
    bottom: 35%;
    transform: rotate(35deg); }
  .accordion-home .image-accord-wrapper:after {
    right: -20%;
    bottom: 35%;
    transform: rotate(-35deg); }
  .accordion-home .accord-text {
    font-size: 14px; }
    .accordion-home .accord-text br {
      display: block; }
  .accordion-home span.accord-icon-box {
    width: 60px; }
  .accordion-home .accord-top-box {
    width: 100%;
    margin-bottom: 50px; }
  .accordion-home .accord-mid-box {
    width: 100%;
    text-align: left; }
  .about-duallayer {
    position: relative;
    padding-top: 50px; }
    .about-duallayer .about-dll-left {
      width: 80%;
      padding: 0 20px 0 60px; }
      .about-duallayer .about-dll-left .abt-dll-content {
        padding: 0; }
    .about-duallayer .about-dll-right {
      width: 100%;
      height: 400px;
      position: absolute;
      right: -80%; }
    .about-duallayer .abt-dll-link-mob {
      padding-bottom: 40px; }
  section.progress-section ul.number-progress-box .number-wrapper {
    max-width: 100%; }
  section.home-new .home-news-box {
    width: 100%; }
  section.home-new .home-news-images img {
    width: 100%;
    height: auto; }
  section.dll-partners-home .partners-home-wrapper .partners-box {
    width: 100%; }
  section.section-services-goal {
    padding-top: 40px;
    padding-bottom: 40px; }
    section.section-services-goal .sr-box-left {
      padding-left: 60px;
      padding-right: 60px; }
    section.section-services-goal .title-sc-goal {
      padding: 0px 0 30px; }
    section.section-services-goal .sr-content-box-goal {
      font-size: 13px;
      line-height: 1.54;
      letter-spacing: 0.6px; }
    section.section-services-goal .sr-box-right {
      text-align: center;
      padding-left: 60px;
      padding-right: 60px; }
  section.services-our-services .title-sc-our-services {
    padding: 40px 60px 60px; }
  section.services-our-services .content-services-box {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px;
    padding: 0 60px; }
  section.services-our-services .wrapper-srs-content {
    padding: 0px 0px 50px; }
  section.services-our-services .services-wrapper {
    width: 100%;
    margin: 15px 0;
    float: none; }
    section.services-our-services .services-wrapper a {
      font-size: 16px;
      letter-spacing: 0.5px; }
  section.services-our-services .services-box-repeater {
    padding: 0 15px; }
  section.services-our-services span.icon-title-services-wrapper {
    padding: 0 10px;
    top: 50%; }
  section.services-our-services .icon-services-box {
    padding-bottom: 0px; }
  section.section-contact-tel-adress .box-contact-ph-em-loc {
    width: 100%;
    left: 0; }
  section.section-contact-tel-adress .contact-wrapper-content {
    margin-bottom: 30px; }
  .modal-content-forms {
    padding: 20px 0 15px; }
  .modal-content-box {
    font-size: 12px; }
    .modal-content-box h2 {
      font-size: 22px;
      line-height: 1.2; }
  .modal-content-forms .gform_wrapper .top_label .name-modal-form,
  .modal-content-forms .gform_wrapper .top_label .telephone-modal-form,
  .modal-content-forms .gform_wrapper .top_label .telephone-modal-form,
  .modal-content-forms .gform_wrapper .top_label .email-modal-form {
    width: 100%; }
    .modal-content-forms .gform_wrapper .top_label .name-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .telephone-modal-form input,
    .modal-content-forms .gform_wrapper .top_label .email-modal-form input {
      height: 30px;
      font-size: 12px;
      padding: 0 0 0 10px;
      margin-bottom: 10px; }
  .modal-content-forms .gform_wrapper .top_label .gform_button {
    padding: 0;
    font-size: 14px;
    height: 30px; }
  .modal-content-forms .gform_wrapper .top_label .message-modal-form {
    width: 100%;
    position: relative; }
    .modal-content-forms .gform_wrapper .top_label .message-modal-form textarea {
      font-size: 12px;
      height: 80px;
      padding: 10px; } }

@media screen and (max-width: 380px) {
  .menu-gamburger {
    right: 0; }
  .obmanka {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    z-index: 1;
    left: 0; }
  section.slider-home .slider-text-content {
    max-width: 280px; }
  section.section-header-other-page .other-header-box {
    padding: 0 30px; }
  .accordion-home .image-accord-wrapper:before {
    left: -20%;
    bottom: 35%;
    transform: rotate(35deg); }
  .accordion-home .image-accord-wrapper:after {
    right: -20%;
    bottom: 35%;
    transform: rotate(-35deg); }
  .custom-padding-mob-row {
    padding-left: 30px;
    padding-right: 30px; }
  .off-canvas-content .logo-header {
    margin-left: 13px; }
  .mobile-menu-canvas .menu a {
    padding-left: 30px; }
  .social-menu span.social-menu-text {
    margin-left: 30px; }
  .social-menu ul {
    margin-left: 30px; }
  section.home-new .home-news-box {
    width: 100%; }
  .about-duallayer .about-dll-left {
    padding-left: 30px; }
  .about-duallayer .abt-dll-link-mob {
    padding-right: 60px; }
  section.our-team-testimonials .bg-our-team {
    padding: 0 30px; }
  section.our-team-testimonials .home-testimonials-box .home-title-box {
    padding-left: 30px;
    padding-right: 30px; }
  section.our-team-testimonials .home-testimonials-box .home-testimonials {
    padding: 0 30px; }
  section.progress-section .progress-wrapper {
    padding-left: 30px;
    padding-right: 30px; }
  section.home-new .title-home-new {
    padding: 0 30px; }
  section.home-new .scrollme {
    padding: 0 30px; }
  section.dll-partners-home .title-home-partners {
    padding-left: 30px;
    padding-right: 30px; }
  section.section-company .section-cc-slider {
    width: 100%;
    padding: 0 30px; }
  section.section-company .section-cc-image {
    display: none; }
  section.section-company .cc-slider-content {
    padding-right: 0;
    text-align: justify; }
  section.section-company .slick-dots-arrow .slick-next {
    right: 0; }
  section.section-company .slick-dots-arrow .slick-dots {
    left: 28px; }
  section.section-our-team-company .right-block-company-our-team {
    padding-right: 30px; }
  section.section-our-commitment .our-commitment-wrapper {
    padding-right: 0;
    padding-left: 30px;
    width: 65%;
    float: left; }
  section.section-our-commitment .our-commitment-right-images {
    position: absolute;
    width: 100%;
    right: -70%;
    float: none; }
  section.section-services-goal {
    padding-top: 40px;
    padding-bottom: 40px; }
    section.section-services-goal .sr-box-left {
      padding-left: 30px;
      padding-right: 30px; }
    section.section-services-goal .sr-box-right {
      padding-left: 30px;
      padding-right: 30px; }
  section.services-our-services .title-sc-our-services {
    padding: 20px 30px 30px; }
  section.services-our-services .content-services-box {
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.6px;
    padding: 0 30px; }
  section.services-our-services .wrapper-srs-content {
    padding: 25px 0px 50px; }
  section.section-what-we-do .column-what-we {
    padding-left: 30px;
    padding-right: 10px; }
  section.section-what-we-do .section-what-we-do-image {
    padding-right: 0px;
    position: absolute;
    right: -67%;
    padding-top: 80px;
    width: 100%; }
  section.section-singl-services-2 .singl-page-services-content-3 {
    padding-right: 20px; }
  section.section-singl-services-2 .left-block-singl-services-3 img {
    max-height: 300px;
    height: 100%; }
  section.section-singl-services-2 .right-block-singl-services-3 {
    width: 70%; }
  section.section-singl-services-2 .our-falsh-block2 {
    width: 95%; }
    section.section-singl-services-2 .our-falsh-block2:after {
      position: absolute;
      top: 0;
      content: '';
      display: block;
      right: -9%;
      width: 80%;
      height: 100%;
      background: #f5a623;
      background-image: url(../images/Rectangle-sing.png); }
    section.section-singl-services-2 .our-falsh-block2 .falsh-box-1 {
      width: 30%; }
  section.section-singl-services-2 .our-falsh-block-1 {
    width: 95%; }
  section.section-our-services {
    padding-top: 50px; }
    section.section-our-services .title-services-singl {
      padding-left: 30px; }
    section.section-our-services .singl-services-wrapper .services-box:nth-child(odd) {
      padding-left: 30px;
      padding-right: 30px; }
    section.section-our-services .singl-services-wrapper .services-box:nth-child(even) {
      padding-left: 30px;
      padding-right: 30px; }
  .article-wrapper .blog-post-content {
    width: 70%; }
  .article-wrapper .blog-post-header {
    left: -70%; }
  .article-wrapper:nth-child(odd) .blog-post-content {
    padding-right: 30px; }
  .article-wrapper:nth-child(odd) a.blog-link-page {
    text-align: right;
    padding-left: inherit; }
  .article-wrapper:nth-child(even) .blog-post-header {
    right: -70%;
    left: inherit;
    text-align: left; }
  .article-wrapper:nth-child(even) .blog-post-content {
    padding-left: 30px; }
  .article-wrapper:nth-child(even) a.blog-link-page {
    padding-left: inherit;
    text-align: left; }
    .article-wrapper:nth-child(even) a.blog-link-page:before {
      left: inherit;
      right: 0; }
  section.single-page-sc-one .single-title {
    font-size: 22px; }
  section.single-page-sc-one .title-crate-time-singl .title-absolut {
    padding: 130px 30px 0; }
  section.single-page-sc-one .post-info {
    padding: 20px 30px 15px; }
  section.single-page-sc-one .sing-sc-1-content {
    padding: 50px 30px 0; }
  section.single-page-sc-two .sc-sing-page-two-left {
    padding: 60px 30px 30px; }
  section.single-page-sc-two .sc-sing-page-two-right {
    padding: 50px 30px 40px; }
  .navigation-single-page-mobile .pre-post-sing-page a {
    padding-left: 30px; }
  .navigation-single-page-mobile .next-post-sing-page a {
    padding-right: 30px; }
  footer.singl-post-footer {
    padding: 35px 20px 30px; }
  section.section-testimonials .row .testimonials-box {
    padding: 50px 30px 0px; }
  section.section-contact-tel-adress {
    padding: 30px 25px 45px; }
    section.section-contact-tel-adress .telphone-contact-wrapper, section.section-contact-tel-adress .telphone-contact-wrapper a,
    section.section-contact-tel-adress .email-contact-wrapper,
    section.section-contact-tel-adress .email-contact-wrapper a,
    section.section-contact-tel-adress .adress-contact-wrapper,
    section.section-contact-tel-adress .adress-contact-wrapper a {
      font-size: 14px; }
  section.form-contact-us {
    padding: 45px 20px 30px; }
  .footer .footer-box-one {
    padding: 0 30px 30px; }
  section.section-faq-one .sr-faq-wrapper-one .title-faq-one {
    padding: 0 30px; }
  section.section-faq-one .section-faq-wrapper {
    padding: 30px 10px 0; }
  section.form-faq-section .contact-form-dlit {
    padding: 0 20px 20px; }
  section.form-faq-section .title-sc-faq-form {
    padding: 35px 30px 20px; }
  .section-careers-one .title-sc-one {
    padding: 0 30px 30px; }
  .section-careers-one .sr-content-box-one {
    padding: 0 30px; }
  .section-careers-one .tabs-nav {
    padding: 30px 20px 10px; }
  .section-careers-one .tabs-panel {
    padding: 0 20px; } }

/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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 {
  transform: translate3d(0, 0, 0); }

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

.slick-slide {
  outline: none;
  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; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  z-index: 101;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "FontAwesome";
    font-size: 50px;
    line-height: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 10px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 10px; }
  .slick-prev:before {
    content: ""; }
    [dir="rtl"] .slick-prev:before {
      content: ""; }

.slick-next {
  right: 10px; }
  [dir="rtl"] .slick-next {
    left: 10px;
    right: auto; }
  .slick-next:before {
    content: ""; }
    [dir="rtl"] .slick-next:before {
      content: ""; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: block;
    height: 20px;
    width: 20px;
    margin: 0 0 15px 0;
    padding: 5px 0 0 1px;
    cursor: pointer; }
    .slick-dots li button {
      background: #a0a0a0;
      display: block;
      height: 11px;
      width: 11px;
      outline: none;
      line-height: 0px;
      margin: auto;
      font-size: 0px;
      color: transparent;
      cursor: pointer;
      border-radius: 100%; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none;
        background: #f8b13d; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1;
          border: 1px solid #ffcea5; }
      .slick-dots li button:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        border-radius: 100%;
        width: 21px;
        height: 21px; }
    .slick-dots li.slick-active button:before {
      border: 1px solid #ffcea5; }
  .slick-dots li.slick-active button {
    background: #f5a623;
    border-radius: 100%; }

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px; }
  .slick-dots-arrow .slick-arrow:after, .slick-dots-arrow .slick-arrow:before {
    width: 12px;
    height: 2px; }
  .slick-dots li {
    height: 16px;
    width: 16px;
    padding-top: 4px; }
    .slick-dots li button {
      height: 8px;
      width: 8px; }
      .slick-dots li button:before {
        width: 16px;
        height: 16px; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .slick-dots-arrow .slick-arrow {
    bottom: -80px; }
    .slick-dots-arrow .slick-arrow:before, .slick-dots-arrow .slick-arrow:after {
      width: 11px;
      height: 1px; }
  .slick-dots-arrow .slick-dots {
    right: 29px;
    bottom: -94px; } }

@media screen and (max-width: 767px) {
  .slick-dots-arrow .slick-arrow {
    bottom: -50px; }
    .slick-dots-arrow .slick-arrow:before, .slick-dots-arrow .slick-arrow:after {
      width: 11px;
      height: 1px; }
  .slick-dots-arrow .slick-dots {
    right: 29px;
    bottom: -63px; } }

/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }

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

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

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

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

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

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

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

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

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

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

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

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

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

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

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

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

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

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

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

.fa-spin {
  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(359deg); } }

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

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

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

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

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

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

.fa-inverse {
  color: #fff; }

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

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

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

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

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

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

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

.fa-th:before {
  content: ""; }

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

.fa-check:before {
  content: ""; }

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

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

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

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

.fa-signal:before {
  content: ""; }

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

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

.fa-home:before {
  content: ""; }

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

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

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

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

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

.fa-inbox:before {
  content: ""; }

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

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

.fa-refresh:before {
  content: ""; }

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

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

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

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

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

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

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

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

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

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

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

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

.fa-list:before {
  content: ""; }

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

.fa-indent:before {
  content: ""; }

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

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

.fa-pencil:before {
  content: ""; }

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

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

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

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

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

.fa-arrows:before {
  content: ""; }

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

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

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

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

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

.fa-eject:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-crosshairs:before {
  content: ""; }

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

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

.fa-ban:before {
  content: ""; }

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

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

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

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

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

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

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

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

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

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

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

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

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

.fa-retweet:before {
  content: ""; }

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

.fa-folder:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-key:before {
  content: ""; }

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

.fa-comments:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-trophy:before {
  content: ""; }

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

.fa-upload:before {
  content: ""; }

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

.fa-phone:before {
  content: ""; }

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

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

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

.fa-twitter:before {
  content: ""; }

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

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

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

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

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

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

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

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

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

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

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

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

.fa-paperclip:before {
  content: ""; }

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

.fa-square:before {
  content: ""; }

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

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

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

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

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

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

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

.fa-money:before {
  content: ""; }

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

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

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

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

.fa-columns:before {
  content: ""; }

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

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

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

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

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

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

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

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

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

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

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

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

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

.fa-exchange:before {
  content: ""; }

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

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

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

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

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

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

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

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

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

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

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

.fa-beer:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

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

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

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

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

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

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

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-gamepad:before {
  content: ""; }

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

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

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

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

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

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

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

.fa-crop:before {
  content: ""; }

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

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

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

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

.fa-microphone:before {
  content: ""; }

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

.fa-shield:before {
  content: ""; }

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

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

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

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

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

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

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

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

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

.fa-bullseye:before {
  content: ""; }

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

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

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

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

.fa-ticket:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-compass:before {
  content: ""; }

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

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

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

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

.fa-gbp:before {
  content: ""; }

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

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

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

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

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

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

.fa-file:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

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

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

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

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

.fa-dropbox:before {
  content: ""; }

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

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

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

.fa-tumblr:before {
  content: ""; }

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

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

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

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

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

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

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

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

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

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

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

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

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

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

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

.fa-wheelchair:before {
  content: ""; }

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

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

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

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

.fa-slack:before {
  content: ""; }

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

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

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

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

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

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

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

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

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

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

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

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

.fa-steam:before {
  content: ""; }

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

.fa-recycle:before {
  content: ""; }

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

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

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

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

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

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

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

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

.fa-git:before {
  content: ""; }

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

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

.fa-qq:before {
  content: ""; }

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

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

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

.fa-history:before {
  content: ""; }

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

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

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

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

.fa-bomb:before {
  content: ""; }

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

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

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

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

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

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

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

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

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

.fa-lastfm:before {
  content: ""; }

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

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

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

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

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

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

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

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

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

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

.fa-motorcycle:before {
  content: ""; }

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

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

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

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

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

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

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

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

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

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

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

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-clone:before {
  content: ""; }

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

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

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

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

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

.fa-hourglass:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

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

.fa-gg:before {
  content: ""; }

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

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

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

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

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

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

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

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

.fa-contao:before {
  content: ""; }

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

.fa-amazon:before {
  content: ""; }

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

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

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

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

.fa-industry:before {
  content: ""; }

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

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

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

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

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

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

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

.fa-fonticons:before {
  content: ""; }

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

.fa-edge:before {
  content: ""; }

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

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

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

.fa-usb:before {
  content: ""; }

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

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

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

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

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

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

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

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

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

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

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

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

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

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

.fa-blind:before {
  content: ""; }

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

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

.fa-braille:before {
  content: ""; }

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

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

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

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

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

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

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

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

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

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

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

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }
