
/* Global */

.jBox-wrapper {
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.jBox-container {
  background: #fff;
}

.jBox-content {
  padding: 8px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

/* jBox Tooltip */

.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .25);
          box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}

.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}

.jBox-hasTitle.jBox-Tooltip .jBox-content,
.jBox-hasTitle.jBox-Mouse .jBox-content {
  padding-top: 5px;
}

.jBox-Mouse {
  pointer-events: none;
}

/* Pointer */

.jBox-pointer {
  position: absolute;
  overflow: hidden;
}

.jBox-pointer-top { top: 0; }
.jBox-pointer-bottom { bottom: 0; }
.jBox-pointer-left { left: 0; }
.jBox-pointer-right { right: 0; }

.jBox-pointer-top,
.jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}

.jBox-pointer-left,
.jBox-pointer-right {
  width: 12px;
  height: 30px;
}

.jBox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  -webkit-box-shadow: -1px -1px 2px rgba(0, 0, 0, .15);
          box-shadow: -1px -1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  -webkit-box-shadow: 1px -1px 2px rgba(0, 0, 0, .15);
          box-shadow: 1px -1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  -webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, .15);
          box-shadow: -1px 1px 2px rgba(0, 0, 0, .15);
}

/* jBox Modal */

.jBox-Modal .jBox-container {
  border-radius: 4px;
}

.jBox-Modal .jBox-content {
  padding: 15px 20px;
}

.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}

.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 55px;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
          box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
}

/* Close button */

.jBox-closeButton {
  cursor: pointer;
  position: absolute;
}

.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}

.jBox-closeButton path {
  -webkit-transition: fill .2s;
  transition: fill .2s;
}

.jBox-closeButton path {
  fill: #aaa;
}

.jBox-closeButton:hover path {
  fill: #888;
}

.jBox-closeButton:active path {
  fill: #666;
}

/* Close button in overlay */

.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}

.jBox-overlay .jBox-closeButton path,
.jBox-overlay .jBox-closeButton:active path {
  fill: #ddd;
}

.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

/* Close button in title */

.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}

.jBox-closeButton-title .jBox-closeButton svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}

/* Close button in box */

.jBox-closeButton-box .jBox-closeButton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}

.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}

.jBox-hasTitle.jBox-Modal.jBox-closeButton-box .jBox-closeButton {
  background: #fafafa;
}

.jBox-closeButton-box:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
          box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.jBox-pointerPosition-top.jBox-closeButton-box:before {
  top: 5px;
}

.jBox-pointerPosition-right.jBox-closeButton-box:before {
  right: 2px;
}

/* Overlay */

.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .82);
}

/* Footer */

.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

/* Block scrolling */

body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

/* Draggable */

.jBox-draggable {
  cursor: move;
}

/* Spinner */

@-webkit-keyframes jBoxLoading {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes jBoxLoading {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.jBox-loading .jBox-content {
  opacity: .2;
}

.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

.jBox-spinner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.jBox-spinner:before {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .2);
  border-top-color: rgba(0, 0, 0, .8);
  -webkit-animation: jBoxLoading .6s linear infinite;
          animation: jBoxLoading .6s linear infinite;
}

/* Animations */

[class^="jBox-animated-"],
[class*=" jBox-animated-"] {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes jBox-tada {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.8) rotate(-4deg);transform: scale(0.8) rotate(-4deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.2) rotate(4deg);transform: scale(1.2) rotate(4deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.2) rotate(-4deg);transform: scale(1.2) rotate(-4deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

@keyframes jBox-tada {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.8) rotate(-4deg);transform: scale(0.8) rotate(-4deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.2) rotate(4deg);transform: scale(1.2) rotate(4deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.2) rotate(-4deg);transform: scale(1.2) rotate(-4deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

.jBox-animated-tada {
  -webkit-animation: jBox-tada 1s;
          animation: jBox-tada 1s;
}

@-webkit-keyframes jBox-tadaSmall {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-2deg);transform: scale(0.9) rotate(-2deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(2deg);transform: scale(1.1) rotate(2deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-2deg);transform: scale(1.1) rotate(-2deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

@keyframes jBox-tadaSmall {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-2deg);transform: scale(0.9) rotate(-2deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(2deg);transform: scale(1.1) rotate(2deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-2deg);transform: scale(1.1) rotate(-2deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

.jBox-animated-tadaSmall {
  -webkit-animation: jBox-tadaSmall 1s;
          animation: jBox-tadaSmall 1s;
}

@-webkit-keyframes jBox-flash {
  0%, 50%, 100% {opacity: 1;}  
  25%, 75% {opacity: 0;}
}

@keyframes jBox-flash {
  0%, 50%, 100% {opacity: 1;}  
  25%, 75% {opacity: 0;}
}

.jBox-animated-flash {
  -webkit-animation: jBox-flash .5s;
          animation: jBox-flash .5s;
}

@-webkit-keyframes jBox-shake {
  0%, 100% {-webkit-transform: translateX(0);transform: translateX(0);}
  20%, 60% {-webkit-transform: translateX(-6px);transform: translateX(-6px);}
  40%, 80% {-webkit-transform: translateX(6px);transform: translateX(6px);}
}

@keyframes jBox-shake {
  0%, 100% {-webkit-transform: translateX(0);transform: translateX(0);}
  20%, 60% {-webkit-transform: translateX(-6px);transform: translateX(-6px);}
  40%, 80% {-webkit-transform: translateX(6px);transform: translateX(6px);}
}

.jBox-animated-shake {
  -webkit-animation: jBox-shake .4s;
          animation: jBox-shake .4s;
}

@-webkit-keyframes jBox-pulseUp {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.15);transform: scale(1.15);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-pulseUp {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.15);transform: scale(1.15);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-pulseUp {
  -webkit-animation: jBox-pulseUp .25s;
          animation: jBox-pulseUp .25s;
}

@-webkit-keyframes jBox-pulseDown {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(0.85);transform: scale(0.85);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-pulseDown {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(0.85);transform: scale(0.85);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-pulseDown {
  -webkit-animation: jBox-pulseDown .25s;
          animation: jBox-pulseDown .25s;
}

@-webkit-keyframes jBox-popIn {
  0% {-webkit-transform: scale(0);transform: scale(0);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-popIn {
  0% {-webkit-transform: scale(0);transform: scale(0);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-popIn {
  -webkit-animation: jBox-popIn .25s;
          animation: jBox-popIn .25s;
}

@-webkit-keyframes jBox-popOut {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(0);transform: scale(0);}
}

@keyframes jBox-popOut {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(0);transform: scale(0);}
}

.jBox-animated-popOut {
  -webkit-animation: jBox-popOut .25s;
          animation: jBox-popOut .25s;
}

@-webkit-keyframes jBox-fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes jBox-fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.jBox-animated-fadeIn {
  -webkit-animation: jBox-fadeIn .2s;
          animation: jBox-fadeIn .2s;
}

@-webkit-keyframes jBox-fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes jBox-fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.jBox-animated-fadeOut {
  -webkit-animation: jBox-fadeOut .2s;
          animation: jBox-fadeOut .2s;
}

@-webkit-keyframes jBox-slideUp {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(-300px);transform: translateY(-300px); opacity: 0;}
}

@keyframes jBox-slideUp {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(-300px);transform: translateY(-300px); opacity: 0;}
}

.jBox-animated-slideUp {
  -webkit-animation: jBox-slideUp .4s;
          animation: jBox-slideUp .4s;
}

@-webkit-keyframes jBox-slideRight {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(300px);transform: translateX(300px); opacity: 0;}
}

@keyframes jBox-slideRight {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(300px);transform: translateX(300px); opacity: 0;}
}

.jBox-animated-slideRight {
  -webkit-animation: jBox-slideRight .4s;
          animation: jBox-slideRight .4s;
}

@-webkit-keyframes jBox-slideDown {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(300px);transform: translateY(300px); opacity: 0;}
}

@keyframes jBox-slideDown {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(300px);transform: translateY(300px); opacity: 0;}
}

.jBox-animated-slideDown {
  -webkit-animation: jBox-slideDown .4s;
          animation: jBox-slideDown .4s;
}

@-webkit-keyframes jBox-slideLeft {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(-300px);transform: translateX(-300px); opacity: 0;}
}

@keyframes jBox-slideLeft {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(-300px);transform: translateX(-300px); opacity: 0;}
}

.jBox-animated-slideLeft {
  -webkit-animation: jBox-slideLeft .4s;
          animation: jBox-slideLeft .4s;
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../img/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../img/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@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) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url("../img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }
/* ---------------------------------Bootstrap------------------------------------ */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container:before, .container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

@media (min-width: 640px) {
  .container {
    width: 640px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-vl-1, .col-fh-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-vl-2, .col-fh-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-vl-3, .col-fh-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-vl-4, .col-fh-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-vl-5, .col-fh-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-vl-6, .col-fh-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-vl-7, .col-fh-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-vl-8, .col-fh-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-vl-9, .col-fh-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-vl-10, .col-fh-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-vl-11, .col-fh-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-vl-12, .col-fh-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

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

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

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

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

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

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 640px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1330px) {
  .col-vl-1, .col-vl-2, .col-vl-3, .col-vl-4, .col-vl-5, .col-vl-6, .col-vl-7, .col-vl-8, .col-vl-9, .col-vl-10, .col-vl-11, .col-vl-12 {
    float: left;
  }
  .col-vl-1 {
    width: 8.33333333%;
  }
  .col-vl-2 {
    width: 16.66666667%;
  }
  .col-vl-3 {
    width: 25%;
  }
  .col-vl-4 {
    width: 33.33333333%;
  }
  .col-vl-5 {
    width: 41.66666667%;
  }
  .col-vl-6 {
    width: 50%;
  }
  .col-vl-7 {
    width: 58.33333333%;
  }
  .col-vl-8 {
    width: 66.66666667%;
  }
  .col-vl-9 {
    width: 75%;
  }
  .col-vl-10 {
    width: 83.33333333%;
  }
  .col-vl-11 {
    width: 91.66666667%;
  }
  .col-vl-12 {
    width: 100%;
  }
  .col-vl-pull-0 {
    right: auto;
  }
  .col-vl-pull-1 {
    right: 8.33333333%;
  }
  .col-vl-pull-2 {
    right: 16.66666667%;
  }
  .col-vl-pull-3 {
    right: 25%;
  }
  .col-vl-pull-4 {
    right: 33.33333333%;
  }
  .col-vl-pull-5 {
    right: 41.66666667%;
  }
  .col-vl-pull-6 {
    right: 50%;
  }
  .col-vl-pull-7 {
    right: 58.33333333%;
  }
  .col-vl-pull-8 {
    right: 66.66666667%;
  }
  .col-vl-pull-9 {
    right: 75%;
  }
  .col-vl-pull-10 {
    right: 83.33333333%;
  }
  .col-vl-pull-11 {
    right: 91.66666667%;
  }
  .col-vl-pull-12 {
    right: 100%;
  }
  .col-vl-push-0 {
    left: auto;
  }
  .col-vl-push-1 {
    left: 8.33333333%;
  }
  .col-vl-push-2 {
    left: 16.66666667%;
  }
  .col-vl-push-3 {
    left: 25%;
  }
  .col-vl-push-4 {
    left: 33.33333333%;
  }
  .col-vl-push-5 {
    left: 41.66666667%;
  }
  .col-vl-push-6 {
    left: 50%;
  }
  .col-vl-push-7 {
    left: 58.33333333%;
  }
  .col-vl-push-8 {
    left: 66.66666667%;
  }
  .col-vl-push-9 {
    left: 75%;
  }
  .col-vl-push-10 {
    left: 83.33333333%;
  }
  .col-vl-push-11 {
    left: 91.66666667%;
  }
  .col-vl-push-12 {
    left: 100%;
  }
  .col-vl-offset-0 {
    margin-left: 0%;
  }
  .col-vl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-vl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-vl-offset-3 {
    margin-left: 25%;
  }
  .col-vl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-vl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-vl-offset-6 {
    margin-left: 50%;
  }
  .col-vl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-vl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-vl-offset-9 {
    margin-left: 75%;
  }
  .col-vl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-vl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-vl-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1890px) {
  .col-fh-1, .col-fh-2, .col-fh-3, .col-fh-4, .col-fh-5, .col-fh-6, .col-fh-7, .col-fh-8, .col-fh-9, .col-fh-10, .col-fh-11, .col-fh-12 {
    float: left;
  }
  .col-fh-1 {
    width: 8.33333333%;
  }
  .col-fh-2 {
    width: 16.66666667%;
  }
  .col-fh-3 {
    width: 25%;
  }
  .col-fh-4 {
    width: 33.33333333%;
  }
  .col-fh-5 {
    width: 41.66666667%;
  }
  .col-fh-6 {
    width: 50%;
  }
  .col-fh-7 {
    width: 58.33333333%;
  }
  .col-fh-8 {
    width: 66.66666667%;
  }
  .col-fh-9 {
    width: 75%;
  }
  .col-fh-10 {
    width: 83.33333333%;
  }
  .col-fh-11 {
    width: 91.66666667%;
  }
  .col-fh-12 {
    width: 100%;
  }
  .col-fh-pull-0 {
    right: auto;
  }
  .col-fh-pull-1 {
    right: 8.33333333%;
  }
  .col-fh-pull-2 {
    right: 16.66666667%;
  }
  .col-fh-pull-3 {
    right: 25%;
  }
  .col-fh-pull-4 {
    right: 33.33333333%;
  }
  .col-fh-pull-5 {
    right: 41.66666667%;
  }
  .col-fh-pull-6 {
    right: 50%;
  }
  .col-fh-pull-7 {
    right: 58.33333333%;
  }
  .col-fh-pull-8 {
    right: 66.66666667%;
  }
  .col-fh-pull-9 {
    right: 75%;
  }
  .col-fh-pull-10 {
    right: 83.33333333%;
  }
  .col-fh-pull-11 {
    right: 91.66666667%;
  }
  .col-fh-pull-12 {
    right: 100%;
  }
  .col-fh-push-0 {
    left: auto;
  }
  .col-fh-push-1 {
    left: 8.33333333%;
  }
  .col-fh-push-2 {
    left: 16.66666667%;
  }
  .col-fh-push-3 {
    left: 25%;
  }
  .col-fh-push-4 {
    left: 33.33333333%;
  }
  .col-fh-push-5 {
    left: 41.66666667%;
  }
  .col-fh-push-6 {
    left: 50%;
  }
  .col-fh-push-7 {
    left: 58.33333333%;
  }
  .col-fh-push-8 {
    left: 66.66666667%;
  }
  .col-fh-push-9 {
    left: 75%;
  }
  .col-fh-push-10 {
    left: 83.33333333%;
  }
  .col-fh-push-11 {
    left: 91.66666667%;
  }
  .col-fh-push-12 {
    left: 100%;
  }
  .col-fh-offset-0 {
    margin-left: 0%;
  }
  .col-fh-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-fh-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-fh-offset-3 {
    margin-left: 25%;
  }
  .col-fh-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-fh-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-fh-offset-6 {
    margin-left: 50%;
  }
  .col-fh-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-fh-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-fh-offset-9 {
    margin-left: 75%;
  }
  .col-fh-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-fh-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-fh-offset-12 {
    margin-left: 100%;
  }
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-vl {
  display: none !important;
}

.visible-fh {
  display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block,
.visible-sm-block, .visible-sm-inline, .visible-sm-inline-block,
.visible-md-block, .visible-md-inline, .visible-md-inline-block,
.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block,
.visible-vl-block, .visible-vl-inline, .visible-vl-inline-block,
.visible-fh-block, .visible-fh-inline, .visible-fh-inline-block {
  display: none !important;
}

@media (max-width: 639px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl {
    display: block !important;
  }
  table.visible-vl {
    display: table !important;
  }
  tr.visible-vl {
    display: table-row !important;
  }
  th.visible-vl,
  td.visible-vl {
    display: table-cell !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-block {
    display: block !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-inline {
    display: inline !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh {
    display: block !important;
  }
  table.visible-fh {
    display: table !important;
  }
  tr.visible-fh {
    display: table-row !important;
  }
  th.visible-fh,
  td.visible-fh {
    display: table-cell !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-block {
    display: block !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-inline {
    display: inline !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 639px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .hidden-vl {
    display: none !important;
  }
}

@media (min-width: 1890px) {
  .hidden-fh {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  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 {
  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;
}

@font-face {
  font-family: "UbuntuRegular";
  src: url("../fonts/Ubuntu/ubuntu-regular-webfont.woff2") format("woff2"), url("../fonts/Ubuntu/ubuntu-regular-webfont.woff") format("woff"), url("../fonts/Ubuntu/ubuntu-regular-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "UbuntuMedium";
  src: url("../fonts/Ubuntu/ubuntu-medium-webfont.woff2") format("woff2"), url("../fonts/Ubuntu/ubuntu-medium-webfont.woff") format("woff"), url("../fonts/Ubuntu/ubuntu-medium-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "UbuntuBold";
  src: url("../fonts/Ubuntu/ubuntu-bold-webfont.woff2") format("woff2"), url("../fonts/Ubuntu/ubuntu-bold-webfont.woff") format("woff"), url("../fonts/Ubuntu/ubuntu-bold-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "ProximaNovaRegular";
  src: url("../fonts/ProximaNova/proximanovaregular-webfont.woff2") format("woff2"), url("../fonts/ProximaNova/proximanovaregular-webfont.woff") format("woff"), url("../fonts/ProximaNova/proximanovaregular-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "ProximaNovaBold";
  src: url("../fonts/ProximaNova/proximanovabold-webfont.woff2") format("woff2"), url("../fonts/ProximaNova/proximanovabold-webfont.woff") format("woff"), url("../fonts/ProximaNova/proximanovabold-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "BeauSansPro-Regular";
  src: url("../fonts/Source_Sans_Pro/PFBeauSansPro-Regular.otf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "BeauSansPro-Bold";
  src: url("../fonts/Source_Sans_Pro/PFBeauSansPro-Bold.otf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "BeauSansPro-SemiBold";
  src: url("../fonts/Source_Sans_Pro/PFBeauSansPro-SemiBold.otf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "ProximaNovaRegular";
  src: url("../fonts/ProximaNova/ProximaNovaRegular.otf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "ProximaNovaBold";
  src: url("../fonts/ProximaNova/ProximaNovaBold.otf");
  font-style: normal;
  font-weight: normal;
}

/* ---------------------------------Grid vertical align------------------------------------ */
.g-va {
  letter-spacing: -4px;
}

.g-va:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.g-va > * {
  float: none;
  letter-spacing: 0;
  vertical-align: middle;
  display: inline-block;
}

@media (min-width: 480px) {
  .g-va-xs {
    letter-spacing: -4px;
  }
  .g-va-xs:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-xs > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

@media (min-width: 640px) {
  .g-va-sm {
    letter-spacing: -4px;
  }
  .g-va-sm:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-sm > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .g-va-md {
    letter-spacing: -4px;
  }
  .g-va-md:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-md > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .g-va-lg {
    letter-spacing: -4px;
  }
  .g-va-lg:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-lg > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

@media (min-width: 1330px) {
  .g-va-vl {
    letter-spacing: -4px;
  }
  .g-va-vl:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-vl > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

@media (min-width: 1890px) {
  .g-va-fh {
    letter-spacing: -4px;
  }
  .g-va-fh:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .g-va-fh > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

/* ---------------------------------Responsive vertical align------------------------------------ */
.top-xs {
  vertical-align: top;
}

.bottom-xs {
  vertical-align: bottom;
}

.middle-xs {
  vertical-align: middle;
}

@media (min-width: 480px) {
  .top-xs {
    vertical-align: top;
  }
  .bottom-xs {
    vertical-align: bottom;
  }
  .middle-xs {
    vertical-align: middle;
  }
}

@media (min-width: 640px) {
  .top-sm {
    vertical-align: top;
  }
  .bottom-sm {
    vertical-align: bottom;
  }
  .middle-sm {
    vertical-align: middle;
  }
}

@media (min-width: 992px) {
  .top-md {
    vertical-align: top;
  }
  .bottom-md {
    vertical-align: bottom;
  }
  .middle-md {
    vertical-align: middle;
  }
}

@media (min-width: 1200px) {
  .top-lg {
    vertical-align: top;
  }
  .bottom-lg {
    vertical-align: bottom;
  }
  .middle-lg {
    vertical-align: middle;
  }
}

@media (min-width: 1330px) {
  .top-vl {
    vertical-align: top;
  }
  .bottom-vl {
    vertical-align: bottom;
  }
  .middle-vl {
    vertical-align: middle;
  }
}

@media (min-width: 1890px) {
  .top-fh {
    vertical-align: top;
  }
  .bottom-fh {
    vertical-align: bottom;
  }
  .middle-fh {
    vertical-align: middle;
  }
}

/* ---------------------------------Responsive table------------------------------------ */
.table-xs {
  display: table;
  height: inherit;
  width: 100%;
}

.table-xs > * {
  display: table-cell;
  float: none;
}

@media (min-width: 480px) {
  .table-xs {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-xs > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 640px) {
  .table-sm {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-sm > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 992px) {
  .table-md {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-md > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1200px) {
  .table-lg {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-lg > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1330px) {
  .table-vl {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-vl > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1890px) {
  .table-fh {
    display: table;
    height: inherit;
    width: 100%;
  }
  .table-fh > * {
    display: table-cell;
    float: none;
  }
}

/* ---------------------------------Responsive horizontal align------------------------------------ */
.left-xs {
  text-align: left;
}

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

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

@media (min-width: 480px) {
  .left-xs {
    text-align: left;
  }
  .center-xs {
    text-align: center;
  }
  .right-xs {
    text-align: right;
  }
}

@media (min-width: 640px) {
  .left-sm {
    text-align: left;
  }
  .center-sm {
    text-align: center;
  }
  .right-sm {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .left-md {
    text-align: left;
  }
  .center-md {
    text-align: center;
  }
  .right-md {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .left-lg {
    text-align: left;
  }
  .center-lg {
    text-align: center;
  }
  .right-lg {
    text-align: right;
  }
}

@media (min-width: 1330px) {
  .left-vl {
    text-align: left;
  }
  .center-vl {
    text-align: center;
  }
  .right-vl {
    text-align: right;
  }
}

@media (min-width: 1890px) {
  .left-fh {
    text-align: left;
  }
  .center-fh {
    text-align: center;
  }
  .right-fh {
    text-align: right;
  }
}

/* ---------------------------------Responsive Gutters------------------------------------ */
.gutters-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.gutters-0 > * {
  padding-left: 0px;
  padding-right: 0px;
}

.gutters-5 {
  margin-left: -5px;
  margin-right: -5px;
}

.gutters-5 > * {
  padding-left: 5px;
  padding-right: 5px;
}

.gutters-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.gutters-10 > * {
  padding-left: 10px;
  padding-right: 10px;
}

.gutters-20 {
  margin-left: -20px;
  margin-right: -20px;
}

.gutters-20 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.gutters-25 {
  margin-left: -25px;
  margin-right: -25px;
}

.gutters-25 > * {
  padding-left: 25px;
  padding-right: 25px;
}

.gutters-30 {
  margin-left: -30px;
  margin-right: -30px;
}

.gutters-30 > * {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 480px) {
  .gutters-xs-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-xs-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 480px) {
  .gutters-xs-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-xs-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 480px) {
  .gutters-xs-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-xs-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 480px) {
  .gutters-xs-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-xs-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 480px) {
  .gutters-xs-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-xs-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 480px) {
  .gutters-xs-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-xs-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-sm-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-sm-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-sm-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-sm-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-sm-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 640px) {
  .gutters-sm-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-sm-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .gutters-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-md-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 992px) {
  .gutters-md-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-md-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 992px) {
  .gutters-md-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-md-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .gutters-md-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-md-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .gutters-md-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-md-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 992px) {
  .gutters-md-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-md-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-lg-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-lg-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-lg-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-lg-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-lg-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1200px) {
  .gutters-lg-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-lg-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-vl-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-vl-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-vl-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-vl-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-vl-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1330px) {
  .gutters-vl-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-vl-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .gutters-fh-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gutters-fh-5 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gutters-fh-10 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .gutters-fh-20 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutters-fh-25 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1890px) {
  .gutters-fh-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutters-fh-30 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ---------------------------------Responsive float------------------------------------ */
.float-none {
  float: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

@media (min-width: 480px) {
  .float-none-xs {
    float: none;
  }
  .float-left-xs {
    float: left;
  }
  .float-right-xs {
    float: right;
  }
}

@media (min-width: 640px) {
  .float-none-sm {
    float: none;
  }
  .float-left-sm {
    float: left;
  }
  .float-right-sm {
    float: right;
  }
}

@media (min-width: 992px) {
  .float-none-md {
    float: none;
  }
  .float-left-md {
    float: left;
  }
  .float-right-md {
    float: right;
  }
}

@media (min-width: 1200px) {
  .float-none-lg {
    float: none;
  }
  .float-left-lg {
    float: left;
  }
  .float-right-lg {
    float: right;
  }
}

@media (min-width: 1330px) {
  .float-none-vl {
    float: none;
  }
  .float-left-vl {
    float: left;
  }
  .float-right-vl {
    float: right;
  }
}

@media (min-width: 1890px) {
  .float-none-fh {
    float: none;
  }
  .float-left-fh {
    float: left;
  }
  .float-right-fh {
    float: right;
  }
}

/* ---------------------------------Responsive margin------------------------------------ */
.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .mt-0-xs {
    margin-top: 0px;
  }
  .mb-0-xs {
    margin-bottom: 0px;
  }
}

@media (min-width: 480px) {
  .mt-10-xs {
    margin-top: 10px;
  }
  .mb-10-xs {
    margin-bottom: 10px;
  }
}

@media (min-width: 480px) {
  .mt-20-xs {
    margin-top: 20px;
  }
  .mb-20-xs {
    margin-bottom: 20px;
  }
}

@media (min-width: 480px) {
  .mt-25-xs {
    margin-top: 25px;
  }
  .mb-25-xs {
    margin-bottom: 25px;
  }
}

@media (min-width: 480px) {
  .mt-30-xs {
    margin-top: 30px;
  }
  .mb-30-xs {
    margin-bottom: 30px;
  }
}

@media (min-width: 480px) {
  .mt-50-xs {
    margin-top: 50px;
  }
  .mb-50-xs {
    margin-bottom: 50px;
  }
}

@media (min-width: 640px) {
  .mt-0-sm {
    margin-top: 0px;
  }
  .mb-0-sm {
    margin-bottom: 0px;
  }
}

@media (min-width: 640px) {
  .mt-10-sm {
    margin-top: 10px;
  }
  .mb-10-sm {
    margin-bottom: 10px;
  }
}

@media (min-width: 640px) {
  .mt-20-sm {
    margin-top: 20px;
  }
  .mb-20-sm {
    margin-bottom: 20px;
  }
}

@media (min-width: 640px) {
  .mt-25-sm {
    margin-top: 25px;
  }
  .mb-25-sm {
    margin-bottom: 25px;
  }
}

@media (min-width: 640px) {
  .mt-30-sm {
    margin-top: 30px;
  }
  .mb-30-sm {
    margin-bottom: 30px;
  }
}

@media (min-width: 640px) {
  .mt-50-sm {
    margin-top: 50px;
  }
  .mb-50-sm {
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .mt-0-md {
    margin-top: 0px;
  }
  .mb-0-md {
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .mt-10-md {
    margin-top: 10px;
  }
  .mb-10-md {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .mt-20-md {
    margin-top: 20px;
  }
  .mb-20-md {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .mt-25-md {
    margin-top: 25px;
  }
  .mb-25-md {
    margin-bottom: 25px;
  }
}

@media (min-width: 992px) {
  .mt-30-md {
    margin-top: 30px;
  }
  .mb-30-md {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .mt-50-md {
    margin-top: 50px;
  }
  .mb-50-md {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .mt-0-lg {
    margin-top: 0px;
  }
  .mb-0-lg {
    margin-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .mt-10-lg {
    margin-top: 10px;
  }
  .mb-10-lg {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .mt-20-lg {
    margin-top: 20px;
  }
  .mb-20-lg {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .mt-25-lg {
    margin-top: 25px;
  }
  .mb-25-lg {
    margin-bottom: 25px;
  }
}

@media (min-width: 1200px) {
  .mt-30-lg {
    margin-top: 30px;
  }
  .mb-30-lg {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .mt-50-lg {
    margin-top: 50px;
  }
  .mb-50-lg {
    margin-bottom: 50px;
  }
}

@media (min-width: 1330px) {
  .mt-0-vl {
    margin-top: 0px;
  }
  .mb-0-vl {
    margin-bottom: 0px;
  }
}

@media (min-width: 1330px) {
  .mt-10-vl {
    margin-top: 10px;
  }
  .mb-10-vl {
    margin-bottom: 10px;
  }
}

@media (min-width: 1330px) {
  .mt-20-vl {
    margin-top: 20px;
  }
  .mb-20-vl {
    margin-bottom: 20px;
  }
}

@media (min-width: 1330px) {
  .mt-25-vl {
    margin-top: 25px;
  }
  .mb-25-vl {
    margin-bottom: 25px;
  }
}

@media (min-width: 1330px) {
  .mt-30-vl {
    margin-top: 30px;
  }
  .mb-30-vl {
    margin-bottom: 30px;
  }
}

@media (min-width: 1330px) {
  .mt-50-vl {
    margin-top: 50px;
  }
  .mb-50-vl {
    margin-bottom: 50px;
  }
}

@media (min-width: 1890px) {
  .mt-0-fh {
    margin-top: 0px;
  }
  .mb-0-fh {
    margin-bottom: 0px;
  }
}

@media (min-width: 1890px) {
  .mt-10-fh {
    margin-top: 10px;
  }
  .mb-10-fh {
    margin-bottom: 10px;
  }
}

@media (min-width: 1890px) {
  .mt-20-fh {
    margin-top: 20px;
  }
  .mb-20-fh {
    margin-bottom: 20px;
  }
}

@media (min-width: 1890px) {
  .mt-25-fh {
    margin-top: 25px;
  }
  .mb-25-fh {
    margin-bottom: 25px;
  }
}

@media (min-width: 1890px) {
  .mt-30-fh {
    margin-top: 30px;
  }
  .mb-30-fh {
    margin-bottom: 30px;
  }
}

@media (min-width: 1890px) {
  .mt-50-fh {
    margin-top: 50px;
  }
  .mb-50-fh {
    margin-bottom: 50px;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ---------------------------------Typography------------------------------------ */
html,
body {
  font-family: "UbuntuRegular", Arial, sans-serif;
  line-height: 1.2;
  font-size: 13px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* ---------------------------------Links------------------------------------ */
a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* ---------------------------------Button------------------------------------ */
button {
  background-color: transparent;
  border: none;
  padding: 0;
}

button:focus {
  outline: none;
}

/* ---------------------------------html body------------------------------------ */
html,
body {
  height: 100%;
}

body {
  position: relative;
}

/* ---------------------------------Img------------------------------------ */
img {
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

.img-full {
  width: 100%;
}

/* ---------------------------------Input------------------------------------ */
input:focus {
  outline: none;
}

/* ---------------------------------P------------------------------------ */
p {
  margin: 0;
}

/* ---------------------------------Buttons------------------------------------ */
.btn {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
  border: 3px solid #000000;
  position: relative;
  padding: 5px 40px 5px 10px;
  z-index: 1;
  /*&:before {
    left: 0;
    top: -2px;
  }

  &:after {
    bottom: -2px;
    right: 0;
  }

  &:hover {

    border-color: #4298b9;
    color: lighten(#e5c100, 50%);

    &:before,
    &:after {
      width: 100%;
    }
  }*/
}

.btn__text {
  color: #000000;
  font-size: 14px;
  font-family: "ProximaNovaBold";
  line-height: 19px;
  text-transform: uppercase;
}

.btn__arrow {
  position: absolute;
  right: 0;
  top: 0;
  border-left: 3px solid #000000;
  display: inline-block;
  padding-left: 13.5px;
  height: 100%;
  padding-right: 13.5px;
}

.btn__arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
  left: 50%;
  margin-left: -3.5px;
  width: 9px;
  height: 15px;
  display: inline-block;
  background: url("../img/icons/angle_right_black.svg") no-repeat 0;
}

.btn[aria-expanded] .btn__arrow:after {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.btn[aria-expanded='false'] .btn__arrow:after {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.btn[aria-expanded]:hover .btn__arrow:after {
  background: url("../img/icons/angle_right_white.svg") no-repeat 0;
}

.btn:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #000000;
  z-index: -2;
}

.btn:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn:hover .btn__text {
  -webkit-transition: 0.7s all ease;
  transition: 0.7s all ease;
  color: white;
}

.btn:hover .btn__arrow:after {
  -webkit-transition: background 0.7s;
  transition: background 0.7s;
  background: url("../img/icons/angle_right_white.svg") no-repeat 0;
}

.btn:hover .btn__arrow {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border-left: 3px solid #ffffff;
  height: 120%;
  top: -10%;
}

.btn-link {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
  border: 3px solid #000000;
  position: relative;
  padding: 5px 40px 5px 10px;
  z-index: 1;
  /*&:before {
    left: 0;
    top: -2px;
  }

  &:after {
    bottom: -2px;
    right: 0;
  }

  &:hover {

    border-color: #4298b9;
    color: lighten(#e5c100, 50%);

    &:before,
    &:after {
      width: 100%;
    }
  }*/
}

.btn-link__text {
  color: #000000;
  font-size: 14px;
  font-family: "ProximaNovaBold";
  line-height: 19px;
  text-transform: uppercase;
}

.btn-link__arrow {
  position: absolute;
  right: 0;
  top: 0;
  border-left: 3px solid #000000;
  display: inline-block;
  padding-left: 13.5px;
  height: 100%;
  padding-right: 13.5px;
}

.btn-link__arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
  left: 50%;
  margin-left: -3.5px;
  width: 9px;
  height: 15px;
  display: inline-block;
  background: url("../img/icons/angle_right_black.svg") no-repeat 0;
}

.btn-link[aria-expanded] .btn-link__arrow:after {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.btn-link[aria-expanded='false'] .btn-link__arrow:after {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.btn-link[aria-expanded]:hover .btn-link__arrow:after {
  background: url("../img/icons/angle_right_white.svg") no-repeat 0;
}

.btn-link:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #000000;
  z-index: -2;
}

.btn-link:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-link:hover .btn-link__text {
  -webkit-transition: 0.7s all ease;
  transition: 0.7s all ease;
  color: white;
}

.btn-link:hover .btn-link__arrow:after {
  -webkit-transition: background 0.7s;
  transition: background 0.7s;
  background: url("../img/icons/angle_right_white.svg") no-repeat 0;
}

.btn-link:hover .btn-link__arrow {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border-left: 3px solid #ffffff;
  height: 120%;
  top: -10%;
}

.btn-simple {
  display: inline-block;
  border: 3px solid #000000;
  position: relative;
  padding: 5px 10px 5px 10px;
}

.btn-simple_large {
  padding-left: 40px;
  padding-right: 40px;
  min-height: 49px;
}

.btn-simple__text {
  color: #000000;
  font-size: 14px;
  font-family: "ProximaNovaBold";
  line-height: 19px;
  text-transform: uppercase;
}

.btn-simple_large .btn-simple__text {
  font-size: 20px;
  line-height: 25px;
}

.btn-large {
  position: relative;
  display: inline-block;
  min-height: 49px;
  border: 3px solid #000000;
  padding: 5px 59px 5px 10px;
}

.btn-large__text {
  font-family: "ProximaNovaBold";
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
}

.btn-large__arrow {
  border-left: 3px solid #000000;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  width: 46px;
}

.btn-large__arrow:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/angle_right_black.svg") no-repeat 0;
  height: 22px;
  width: 14px;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  left: 50%;
  margin-left: -7px;
  background-size: cover;
}

.btn-large_full {
  width: 100%;
}

.btn-more__text {
  font-family: "ProximaNovaBold";
  font-size: 14px;
  text-transform: uppercase;
  line-height: 19px;
  display: block;
}

.btn-more__arrow {
  display: block;
  width: 14px;
  margin: 10px auto 0 auto;
  height: 8px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url(../img/icons/angle_top_black.png) no-repeat 0/cover;
}

/* ---------------------------------Textarea------------------------------------ */
textarea:focus {
  outline: none;
}

/* ---------------------------------List------------------------------------ */
ul,
ol {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

/* ---------------------------------Disable video controls on ios------------------------------------ */
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ---------------------------------Description------------------------------------ */
.description {
  font-size: 14px;
  line-height: 25px;
}

/* ---------------------------------Title------------------------------------ */
.title {
  font-size: 20px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .title {
    font-size: 24px;
    line-height: 36px;
  }
}

.title + .description {
  margin-top: 10px;
}

/* ---------------------------------Sertificate------------------------------------ */
.sertificate__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.sertificate__subtitle {
  color: #777777;
  font-size: 14px;
  line-height: 25px;
}

/* ---------------------------------no-gutters------------------------------------ */
.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.no-gutters > * {
  padding-left: 0;
  padding-right: 0;
}

/* ---------------------------------Clearfix------------------------------------ */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* ---------------------------------no-float------------------------------------ */
.no-float > [class*='col-'] {
  float: none;
}

.ttu {
  text-transform: uppercase;
}

/* ---------------------------------Hide------------------------------------ */
.hidden {
  display: none !important;
}

/* ---------------------------------Page wrapper------------------------------------ */
.page-wrapper {
  overflow-x: hidden;
}

/* ---------------------------------Page-helper------------------------------------ */
.page-helper {
  min-height: 0.1px;
}

/* ---------------------------------Page footer------------------------------------ */
/* ---------------------------------Page buffer------------------------------------ */
.page-buffer {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .page-buffer {
    margin-bottom: 80px;
  }
}

/* ---------------------------------Static Footer------------------------------------ */
@media (min-width: 640px) {
  .page-wrapper {
    min-height: 100%;
  }
}

/* ---------------------------------Footer------------------------------------ */
.footer {
  background-color: #10275f;
  background-image: linear-gradient(-45deg, transparent 49.9%, rgba(0, 0, 0, 0.25) 49.9%, rgba(0, 0, 0, 0.25) 60%, transparent 60%), linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 10%, transparent 10%);
  background-size: 10px 10px;
}

.footer__content {
  padding: 40px 0 60px 0;
}

@media (min-width: 992px) {
  .footer__content {
    padding: 60px 0 100px 0;
  }
}

.footer__copyright {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 37px 0;
}

.footer__copyright-wr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------------------------------Header------------------------------------ */
.header {
  padding-bottom: 30px;
}

.g-rectangle {
  width: 100%;
  position: relative;
}

.g-rectangle:after {
  content: '';
  display: block;
  padding-bottom: 60%;
}

.g-rectangle > * {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

.g-square {
  width: 100%;
  position: relative;
}

.g-square:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.g-square > * {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

/* ---------------------------------Block------------------------------------ */
.b-about {
  padding: 20px 0;
  /* ---------------------------------Layout------------------------------------ */
  /* ---------------------------------Circle------------------------------------ */
  /* ---------------------------------Point------------------------------------ */
  /* ---------------------------------Logo------------------------------------ */
  /* ---------------------------------Info------------------------------------ */
}

@media (min-width: 992px) {
  .b-about {
    padding: 80px 0;
  }
}

@media (min-width: 1330px) {
  .b-about {
    padding: 100px 0;
  }
}

.b-about__layout {
  margin: 0 auto;
  position: relative;
}

.b-about__layout:before, .b-about__layout:after {
  content: " ";
  display: table;
}

.b-about__layout:after {
  clear: both;
}

@media (min-width: 640px) and (max-width: 991px) {
  .b-about__layout {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 992px) {
  .b-about__layout {
    width: 330px;
    height: 330px;
  }
}

@media (min-width: 1200px) {
  .b-about__layout {
    width: 400px;
    height: 400px;
  }
}

.b-about__circle {
  display: none;
  background: url("../img/circle/circle.svg") no-repeat 0/cover;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 992px) {
  .b-about__circle {
    display: block;
  }
}

.b-about__point {
  background: url("../img/circle/pointer.svg") no-repeat 0/cover;
  position: absolute;
  width: 7.5%;
  height: 7.5%;
  opacity: 0;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}

.b-about__point.first {
  right: 7%;
  top: 16%;
}

.b-about__point.second {
  top: 50%;
  left: -3%;
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

.b-about__point.third {
  right: -3%;
  top: 50%;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.b-about__point.fourth {
  top: 80%;
  left: 10%;
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

.b-about__point.fifth {
  top: 80%;
  right: 10%;
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.b-about__point.animated {
  opacity: 1;
}

.b-about__logo {
  background: url("../img/circle/logo.svg") no-repeat 50%/cover;
  width: 100%;
  z-index: -1;
  background-size: 75%;
  height: 100%;
  position: absolute;
}

.b-about__info {
  max-width: 290px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .b-about__info {
    float: left;
    width: 50%;
    max-width: none;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .b-about__info {
    padding-left: 5px;
    padding-right: 5px;
  }
  .b-about__info.fifth {
    margin-left: 25%;
  }
}

@media (max-width: 991px) {
  .b-about__info {
    margin-top: 11px;
  }
}

@media (min-width: 992px) {
  .b-about__info {
    opacity: 0;
    -webkit-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
    width: 83%;
    height: 32%;
    position: absolute;
  }
  .b-about__info.first {
    top: -9%;
    right: -72%;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .b-about__info.second {
    left: -85%;
    top: 38%;
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }
  .b-about__info.third {
    right: -85%;
    top: 38%;
    -webkit-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .b-about__info.fourth {
    left: -72%;
    bottom: -14%;
    -webkit-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .b-about__info.fifth {
    right: -72%;
    bottom: -14%;
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms;
  }
  .b-about__info.animated {
    opacity: 1;
  }
}

.b-contacts {
  position: relative;
  /* ---------------------------------Rectangle------------------------------------ */
  /* ---------------------------------Map------------------------------------ */
  /* ---------------------------------Info------------------------------------ */
  /* ---------------------------------Text------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------Separate------------------------------------ */
}

@media (min-width: 992px) {
  .b-contacts {
    letter-spacing: -4px;
    height: 552px;
  }
  .b-contacts:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .b-contacts > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

.b-contacts__rectangle {
  background-color: #4299ba;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
}

@media (min-width: 992px) {
  .b-contacts__rectangle {
    top: 5%;
    height: 90%;
  }
}

.b-contacts__map {
  height: 300px;
}

@media (min-width: 992px) {
  .b-contacts__map {
    width: 74%;
    height: 100%;
    position: absolute !important;
    right: 0;
    top: 0;
  }
}

.b-contacts__info {
  padding: 20px;
  background-color: #ffffff;
  max-width: 549px;
  position: relative;
}

@media (max-width: 991px) {
  .b-contacts__info {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .b-contacts__info {
    padding: 80px;
    margin-left: 85px;
  }
}

.b-contacts__text {
  font-size: 17px;
  line-height: 20px;
}

@media (min-width: 992px) {
  .b-contacts__text {
    font-size: 22px;
    line-height: 25px;
  }
}

.b-contacts__text + .b-contacts__text {
  margin-top: 20px;
}

.b-contacts__link {
  font-size: 20px;
  line-height: 22px;
  display: inline-block;
}

@media (min-width: 992px) {
  .b-contacts__link {
    font-size: 22px;
    line-height: 24px;
  }
}

.b-contacts__links {
  padding-left: 35px;
  position: relative;
}

.b-contacts__links + .b-contacts__links {
  margin-top: 20px;
}

.b-contacts__links-icon {
  position: absolute;
  left: 0;
  top: 50%;
  background-repeat: no-repeat;
}

.b-contacts__links_phone .b-contacts__links-icon {
  background-image: url(../img/icons/phone.png);
  width: 23px;
  height: 31px;
  margin-top: -15.5px;
}

.b-contacts__links_mail .b-contacts__links-icon {
  background-image: url(../img/icons/mail.png);
  width: 27px;
  height: 21px;
  margin-top: -10.5px;
}

.b-contacts__separate {
  margin: 25px auto;
  width: 76px;
  height: 8px;
  background-color: #666666;
}

@media (min-width: 992px) {
  .b-contacts__separate {
    margin: 25px 0;
  }
}

.b-footer {
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------List------------------------------------ */
}

.b-footer__title {
  text-transform: uppercase;
  color: #ffffff;
  font-family: "UbuntuMedium";
  font-size: 18px;
}

.b-footer__list {
  margin-top: 18px;
}

.b-footer__list-item {
  margin-top: 10px;
}

.b-footer__list-text, .b-footer__list-link {
  color: #ffffff;
  font-size: 14px;
}

.b-header {
  position: relative;
  /* ---------------------------------Col------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Row------------------------------------ */
  /* ---------------------------------Scroll------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Fill------------------------------------ */
}

.b-header.first {
  text-align: center;
}

@media (min-width: 992px) {
  .b-header.first {
    height: 65%;
  }
}

.b-header.second {
  display: none;
}

@media (min-width: 992px) {
  .b-header.second {
    display: block;
    height: 35%;
  }
}

.b-header.third {
  display: none;
}

@media (min-width: 992px) {
  .b-header.third {
    display: block;
    height: 575px;
  }
}

@media (min-width: 992px) {
  .b-header__col {
    height: 100%;
  }
}

.b-header__content {
  text-align: left;
  position: relative;
}

.b-header.first .b-header__content {
  max-width: 500px;
  padding: 67px 20px;
  text-align: center;
}

@media (min-width: 992px) {
  .b-header__content {
    -webkit-transition: opacity linear .7s;
    transition: opacity linear .7s;
    opacity: 0;
  }
  .b-header-wr.animated .first .b-header__content {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}

.b-header__description {
  color: #ffffff;
  font-family: "UbuntuMedium";
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 640px) {
  .b-header__description {
    font-size: 27px;
    line-height: 35px;
  }
}

@media (min-width: 992px) {
  .b-header__description {
    font-size: 30px;
    line-height: 40px;
  }
}

.b-header__img {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .b-header__img {
    opacity: 0;
    -webkit-transition: opacity linear .7s;
    transition: opacity linear .7s;
  }
  .b-header-wr.animated .b-header__img {
    opacity: 1;
  }
  .b-header-wr.animated .b-header.first .b-header__img {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .b-header-wr.animated .b-header.second .b-header__col.first .b-header__img {
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
  .b-header-wr.animated .b-header.third .b-header__img {
    -webkit-transition-delay: 1.3s;
            transition-delay: 1.3s;
  }
}

@media (min-width: 992px) {
  .b-header__row {
    height: 100%;
  }
}

.b-header__scroll-wr {
  width: 23%;
  vertical-align: bottom;
  z-index: 1;
}

.b-header__scroll {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4299ba), to(#4299ba));
  background-image: linear-gradient(#4299ba, #4299ba);
  background-repeat: no-repeat;
  background-size: 0;
  background-position: 50%;
  -webkit-transition: background-size linear .5s;
  transition: background-size linear .5s;
}

.b-header__scroll-arrow {
  display: inline-block;
  width: 24px;
  opacity: 0;
  -webkit-transition: opacity linear .5s;
  transition: opacity linear .5s;
  height: 24px;
  background: url("../img/icons/arrow_down_white.svg") no-repeat 0;
}

@media (min-width: 992px) {
  .b-header-wr.animated .b-header.second .b-header__col.first .b-header__scroll {
    -webkit-transition-delay: 1.7s;
            transition-delay: 1.7s;
    background-size: 100%;
  }
  .b-header-wr.animated .b-header.second .b-header__col.first .b-header__scroll-arrow {
    -webkit-transition-delay: 2.2s;
            transition-delay: 2.2s;
    opacity: 1;
  }
}

.b-header__title {
  color: #ffffff;
  font-size: 32px;
  font-family: "UbuntuMedium";
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .b-header__title {
    font-size: 56px;
  }
}

@media (min-width: 992px) {
  .b-header__title {
    font-size: 64px;
  }
}

.b-header__fill {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4299ba), to(#4299ba));
  background-image: linear-gradient(#4299ba, #4299ba);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media (min-width: 992px) {
  .b-header__fill {
    background-size: 0;
    -webkit-transition-property: background-size;
    transition-property: background-size;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }
  .b-header.first .b-header__fill {
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
  }
  .b-header.second .b-header__col.second .b-header__fill {
    -webkit-transition-duration: .5s;
            transition-duration: .5s;
  }
  .b-header.second .b-header__col.first .b-header__fill {
    -webkit-transition-duration: .5s;
            transition-duration: .5s;
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    background-position: 0 50%;
  }
  .b-header.third .b-header__fill {
    -webkit-transition-duration: .7s;
            transition-duration: .7s;
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .b-header-wr.animated .b-header__fill {
    background-size: 100%;
  }
}

.b-main {
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
}

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

.b-main__title {
  font-size: 24px;
  line-height: 46px;
}

.b-main__description {
  font-size: 14px;
  line-height: 25px;
}

.b-produce {
  position: relative;
  padding-top: 207px;
  /* ---------------------------------Bg------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
}

@media (min-width: 992px) {
  .b-produce {
    padding: 100px 0;
  }
}

.b-produce__bg {
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  height: 100%;
}

@media (max-width: 991px) {
  .b-produce__bg {
    height: 290px;
  }
}

@media (min-width: 992px) {
  .b-produce__bg {
    width: 75%;
  }
}

.b-produce__content {
  padding: 20px;
  background-color: #ffffff;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .b-produce__content {
    -webkit-box-shadow: 3px 5px 32px rgba(31, 31, 31, 0.1);
            box-shadow: 3px 5px 32px rgba(31, 31, 31, 0.1);
  }
}

@media (min-width: 640px) {
  .b-produce__content {
    margin-left: 33px;
    margin-right: 33px;
  }
}

@media (min-width: 992px) {
  .b-produce__content {
    padding: 60px 5px 60px 75px;
    max-width: 546px;
    margin-left: auto;
    margin-right: 0;
  }
}

.b-produce__title {
  font-size: 28px;
  line-height: 34px;
}

.b-produce__description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 26px;
}

.b-produce__link {
  margin-top: 15px;
}

.b-production {
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------info------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
}

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

.b-production__title {
  font-size: 20px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .b-production__title {
    font-size: 24px;
    line-height: 46px;
  }
}

.b-production__description {
  font-size: 14px;
  line-height: 25px;
}

.b-production__info-title {
  font-size: 34px;
  line-height: 46px;
}

.b-production__info-description {
  color: #666666;
  font-size: 14px;
  line-height: 18px;
}

.b-production__content + .b-production__content {
  margin-top: 20px;
}

.b-products {
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Img------------------------------------ */
}

@media (min-width: 992px) {
  .b-products {
    width: 100%;
    display: table;
  }
}

@media (min-width: 992px) {
  .b-products_mb-negative {
    margin-bottom: -141px;
  }
}

@media (min-width: 992px) {
  .b-products__rectangle {
    background-color: #4299ba;
    height: 141px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .b-products > .row {
    display: table-row;
  }
}

@media (min-width: 992px) {
  .b-products > .row > .col {
    display: table-cell;
    float: none;
  }
}

.b-products__content-left {
  position: relative;
  height: 100%;
}

@media (min-width: 992px) {
  .b-products__content-left {
    width: 53%;
    padding: 0 75px 190px 0;
  }
}

@media (max-width: 991px) {
  .b-products__content-right {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .b-products__content-right {
    vertical-align: top;
    padding: 70px 20px 20px 77px;
    width: 58%;
  }
}

@media (min-width: 992px) {
  .b-products__img-right {
    width: 47%;
    vertical-align: bottom;
  }
}

.b-products__img-inner {
  width: 100%;
  display: block;
}

@media (min-width: 992px) {
  .b-products__img-left {
    width: 42%;
    bottom: 141px;
    position: relative;
  }
}

.b-work {
  position: relative;
  padding-top: 49px;
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Rectangle------------------------------------ */
  /* ---------------------------------Bg------------------------------------ */
}

@media (min-width: 640px) {
  .b-work {
    padding-left: 47px;
  }
}

@media (max-width: 991px) {
  .b-work {
    padding-bottom: 47px;
  }
}

.b-work__description {
  background-color: #ffffff;
  max-width: 517px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .b-work__description {
    position: absolute;
    padding: 48px 60px;
    right: 47px;
    bottom: 47px;
  }
}

.b-work__description-text {
  font-size: 14px;
  line-height: 25px;
}

@media (min-width: 992px) {
  .b-work__description-text {
    line-height: 25px;
    overflow: hidden;
    height: 100px;
    font-size: 14px;
  }
}

.b-work__content {
  position: relative;
}

.b-work__rectangle-right {
  background-color: #4299ba;
  width: 162px;
  position: absolute;
  height: 291px;
  right: 0;
  bottom: -47px;
}

@media (min-width: 992px) {
  .b-work__rectangle-right {
    bottom: 0;
  }
}

.b-work__rectangle-left-top {
  background-color: #4299ba;
  width: 163px;
  height: 175px;
  position: absolute;
  left: 0;
  top: 0;
}

.b-work__bg {
  background: url(../img/work/work-bg.jpg) no-repeat 50% 0/cover;
  height: 200px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .b-work__bg {
    height: 342px;
    background-position: 50%;
  }
}

@media (min-width: 992px) {
  .b-work__bg {
    width: 595px;
  }
}

/* ---------------------------------Components------------------------------------ */
/* ---------------------------------Form------------------------------------ */
.form-field {
  display: block;
  /* ---------------------------------Input------------------------------------ */
  /* ---------------------------------Input error------------------------------------ */
  /* ---------------------------------Text------------------------------------ */
  /* ---------------------------------File------------------------------------ */
  /* ---------------------------------File error------------------------------------ */
}

.form-field__input {
  width: 100%;
  border: 3px solid #000000;
  height: 49px;
  padding-left: 25px;
  padding-right: 5px;
  color: #999999;
  font-size: 20px;
  line-height: 26px;
  font-family: "ProximaNovaRegular";
}

.form-field_textarea .form-field__input {
  resize: none;
  height: auto;
  padding: 15px 5px 15px 25px;
}

.form-field__text + .form-field__input {
  margin-top: 5px;
}

.form-field__input.error {
  border-color: #ff0000;
}

.form-field__text {
  color: #000000;
  font-size: 24px;
  font-family: "UbuntuMedium";
  line-height: 30px;
  display: block;
}

.form-field__text + .form-field__file {
  margin-top: 10px;
}

.form-field__file {
  cursor: pointer;
}

.form-field__file.error {
  color: #ff0000;
}

.form-group {
  margin-top: 18px;
}

.form-checkbox {
  display: block;
  cursor: pointer;
  letter-spacing: -4px;
}

.form-checkbox:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.form-checkbox > * {
  float: none;
  letter-spacing: 0;
  vertical-align: middle;
  display: inline-block;
}

.form-checkbox__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.form-checkbox__check {
  width: 32px;
  position: relative;
  height: 32px;
  border: 3px solid #000000;
  margin-right: 15px;
}

.form-checkbox__input:checked ~ .form-checkbox__check:before {
  content: '';
  display: inline-block;
  width: 24px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -12px;
  height: 20px;
  background: url(../img/icons/check.svg);
}

.form-checkbox__text {
  font-size: 20px;
  line-height: 25px;
}

.form-link {
  color: #4299ba;
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
  text-transform: uppercase;
}

/* ---------------------------------Section------------------------------------ */
.section {
  margin: 30px 0;
}

.section.js-section-about-company, .section.js-section-fade-up {
  visibility: hidden;
}

/* ---------------------------------Content------------------------------------ */
.section-content {
  margin-top: 30px;
}

/* ---------------------------------Description------------------------------------ */
.section-description {
  font-size: 14px;
  line-height: 25px;
  margin-top: 10px;
}

/* ---------------------------------Quote------------------------------------ */
.section-quote {
  margin-top: 30px;
  position: relative;
  color: #000000;
  font-size: 16px;
  line-height: 28px;
  font-family: "UbuntuBold";
}

.section-quote:before {
  content: '';
  position: absolute;
  background-color: #4299ba;
}

.section-quote_left {
  padding-left: 43px;
}

.section-quote_left:before {
  content: '';
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
}

.section-quote_center {
  padding-top: 32px;
  text-align: center;
}

.section-quote_center:before {
  width: 49px;
  top: 0;
  height: 15px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------Subtitle------------------------------------ */
.section-subtitle {
  color: #767676;
  font-family: "UbuntuBold";
  font-size: 15px;
  line-height: 19px;
}

@media (max-width: 991px) {
  .section-subtitle {
    text-align: center;
  }
}

/* ---------------------------------Title------------------------------------ */
.section-subtitle + .section-title {
  margin-top: 10px;
}

.section-title {
  color: #000000;
  font-family: "UbuntuBold";
  font-size: 28px;
  line-height: 34px;
}

@media (max-width: 991px) {
  .section-title {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 38px;
    line-height: 46px;
  }
}

/* ---------------------------------Link------------------------------------ */
.section-title + .section-link-wr {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .section-link-wr {
    text-align: center;
  }
}

/* ---------------------------------Modal------------------------------------ */
.modal {
  background-color: #fefefe;
  border: 3px solid #000000;
  padding: 20px;
  width: 300px;
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
}

@media (min-width: 480px) {
  .modal {
    width: 460px;
  }
}

@media (min-width: 640px) {
  .modal {
    width: 620px;
  }
}

@media (min-width: 992px) {
  .modal {
    width: 704px;
    padding: 20px 130px 55px 130px;
  }
}

@media (min-width: 992px) {
  .modal_success {
    padding-right: 70px;
    padding-left: 70px;
  }
}

.modal__title {
  text-align: center;
  color: #000000;
  font-family: "UbuntuBold";
  font-size: 36px;
  line-height: 46px;
}

.modal__content {
  margin-top: 34px;
}

.modal__description {
  color: #000000;
  font-family: "UbuntuMedium";
  font-size: 24px;
  line-height: 30px;
}

.jBox-Modal .jBox-container {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background: none;
}

.jBox-Modal .jBox-content {
  padding: 0;
}

.jBox-overlay-Modal {
  background-color: rgba(0, 0, 0, 0.1);
}

/* ---------------------------------Carousel------------------------------------ */
.carousel-event {
  /* ---------------------------------Slide------------------------------------ */
}

.carousel-event__slide:focus {
  outline: none;
}

.carousel-events {
  padding: 0 20px;
  /* ---------------------------------slick-arrow------------------------------------ */
}

@media (min-width: 640px) {
  .carousel-events {
    padding: 0 45px;
  }
}

.carousel-events__slide {
  cursor: pointer;
  padding-right: 20px;
  position: relative;
}

.carousel-events__slide:focus {
  outline: none;
}

.carousel-events__slide_dim:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  opacity: .55;
}

.carousel-events__slide.slick-center:before {
  display: none;
}

.carousel-events .slick-arrow {
  position: absolute;
  top: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -17.5px;
}

.carousel-events .slick-arrow.slick-prev {
  left: 0;
  padding-right: 10px;
}

.carousel-events .slick-arrow.slick-next {
  right: 0;
  padding-left: 10px;
}

.carousel-events .slick-arrow:before {
  content: '';
  display: inline-block;
  background: url("../img/carousel/arrow_right_grey.svg");
  width: 13px;
  height: 12px;
}

.carousel-events .slick-arrow:hover:before {
  background: url("../img/carousel/arrow_right_black.svg");
}

.carousel-events .slick-arrow.slick-prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carousel-news {
  padding: 0 20px;
  /* ---------------------------------slick-arrow------------------------------------ */
}

@media (min-width: 640px) {
  .carousel-news {
    padding: 0 45px;
  }
}

.carousel-news__slide {
  cursor: pointer;
  padding-right: 20px;
  position: relative;
}

.carousel-news__slide:focus {
  outline: none;
}

.carousel-news__slide:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  opacity: .55;
}

.carousel-news__slide.slick-center:before {
  display: none;
}

.carousel-news .slick-arrow {
  position: absolute;
  top: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -17.5px;
}

.carousel-news .slick-arrow.slick-prev {
  left: 0;
  padding-right: 10px;
}

.carousel-news .slick-arrow.slick-next {
  right: 0;
  padding-left: 10px;
}

.carousel-news .slick-arrow:before {
  content: '';
  display: inline-block;
  background: url("../img/carousel/arrow_right_grey.svg");
  width: 13px;
  height: 12px;
}

.carousel-news .slick-arrow:hover:before {
  background: url("../img/carousel/arrow_right_black.svg");
}

.carousel-news .slick-arrow.slick-prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ---------------------------------Navbar------------------------------------ */
.navbar {
  /* ---------------------------------Header------------------------------------ */
  /* ---------------------------------Language------------------------------------ */
  /* ---------------------------------Logo------------------------------------ */
}

@media (min-width: 992px) {
  .navbar {
    margin-bottom: 70px;
  }
}

.navbar__header {
  margin: 20px 0;
}

.navbar__language-btn {
  font-family: "UbuntuMedium";
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 0;
}

.navbar__language-btn:hover, .navbar__language-btn.active {
  color: #4299ba;
}

.navbar__language-separate {
  content: '/';
  font-family: "UbuntuRegular";
  margin: 0 4px;
}

.navbar__logo {
  display: inline-block;
}

.navbar-menu {
  position: relative;
  /* ---------------------------------Item------------------------------------ */
  /* ---------------------------------Submenu------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
}

.navbar-menu:before, .navbar-menu:after {
  content: " ";
  display: table;
}

.navbar-menu:after {
  clear: both;
}

.navbar-menu .menu-highlight {
  height: 5px;
  background-color: #4299ba;
  position: absolute;
  bottom: 0;
  -webkit-transition: left linear 0.5s, width linear 0.5s;
  transition: left linear 0.5s, width linear 0.5s;
}

@media (max-width: 991px) {
  .navbar-menu .menu-highlight {
    display: none;
  }
}

.navbar-menu__item {
  position: relative;
}

@media (min-width: 991px) {
  .navbar-menu__item {
    float: left;
  }
}

@media (min-width: 992px) {
  .navbar-menu__submenu-wr {
    position: absolute;
    top: 100%;
    margin-left: 10px;
    opacity: 0;
    -webkit-transition: opacity linear 0.5s;
    transition: opacity linear 0.5s;
    visibility: hidden;
  }
}

@media (min-width: 992px) {
  .navbar-menu__item.active .navbar-menu__submenu-wr,
  .navbar-menu__item:hover .navbar-menu__submenu-wr {
    opacity: 1;
    visibility: visible;
    display: block;
    height: auto !important;
  }
}

.navbar-menu__link {
  display: block;
  position: relative;
  padding: 11px 15px;
}

@media (max-width: 991px) {
  .navbar-menu__link {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-menu__link {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .navbar-menu__link[aria-expanded]:after {
    content: '';
    position: absolute;
    background: url(../img/icons/angle_down_white.png) no-repeat 0;
    width: 16px;
    height: 8px;
    top: 50%;
    margin-top: -8px;
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .navbar-menu__link[aria-expanded="true"]:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (min-width: 992px) {
  .navbar-menu__item_first .navbar-menu__link {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .navbar-menu__link[aria-expanded="true"] {
    background-color: #347b98;
  }
}

.navbar-menu__link-text {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  font-family: "UbuntuMedium";
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .navbar-menu__link-text {
    font-size: 16px;
    color: #000000;
  }
}

@media (min-width: 992px) {
  .navbar-menu__link:hover .navbar-menu__link-text {
    color: #4299ba;
  }
}

.navbar-nav {
  position: relative;
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Toggle------------------------------------ */
  /* ---------------------------------Menu------------------------------------ */
}

.navbar-nav:before, .navbar-nav:after {
  content: " ";
  display: table;
}

.navbar-nav:after {
  clear: both;
}

@media (max-width: 991px) {
  .navbar-nav__content {
    position: absolute;
    z-index: 2;
    width: 100%;
    background-color: #4299ba;
  }
}

@media (min-width: 992px) {
  .navbar-nav__content {
    display: block !important;
    height: auto !important;
  }
}

.navbar-nav__toggle {
  display: inline-block;
  padding: 20px;
  width: 90px;
  height: 70px;
  position: relative;
}

@media (min-width: 992px) {
  .navbar-nav__toggle {
    display: none;
  }
}

.navbar-nav__toggle-sep {
  position: absolute;
  display: block;
  width: 50px;
  left: 20px;
  background-color: #ffffff;
  height: 5px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.navbar-nav__toggle-sep.first {
  top: 20px;
}

.navbar-nav__toggle-sep.second, .navbar-nav__toggle-sep.third {
  top: 32.5px;
}

.navbar-nav__toggle-sep.fourth {
  top: 45px;
}

.navbar-nav__toggle[aria-expanded="true"] .navbar-nav__toggle-sep.first {
  top: 32.5px;
  width: 0;
  left: 50%;
}

.navbar-nav__toggle[aria-expanded="true"] .navbar-nav__toggle-sep.second {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-nav__toggle[aria-expanded="true"] .navbar-nav__toggle-sep.third {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navbar-nav__toggle[aria-expanded="true"] .navbar-nav__toggle-sep.fourth {
  top: 32.5px;
  width: 0;
  left: 50%;
}

.navbar-nav__toggle-wr {
  background-color: #4299ba;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar-nav__menu-wr {
    border-bottom: 4px solid #4299ba;
  }
}

.navbar-submenu {
  /* ---------------------------------Item------------------------------------ */
  /* ---------------------------------Highlight------------------------------------ */
}

.navbar-submenu:before, .navbar-submenu:after {
  content: " ";
  display: table;
}

.navbar-submenu:after {
  clear: both;
}

@media (min-width: 992px) {
  .navbar-submenu {
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .navbar-submenu__item {
    text-align: center;
    background-color: #2e5c6f;
  }
}

@media (min-width: 992px) {
  .navbar-submenu__item {
    margin-top: 4px;
    white-space: normal;
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .navbar-menu__item.active .navbar-submenu__item.active {
    background-color: #264a58;
  }
}

.navbar-submenu__link {
  padding: 19px 15px;
  display: block;
}

.navbar-submenu__link-text {
  font-family: "UbuntuMedium";
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .navbar-submenu__link-text {
    color: #ffffff;
  }
}

@media (min-width: 992px) {
  .navbar-submenu__link.active,
  .navbar-submenu__link:hover .navbar-submenu__link-text {
    color: #4299ba;
  }
}

.navbar-submenu__highlight {
  height: 5px;
  background-color: #4299ba;
  position: absolute;
  bottom: 0;
  display: none;
  -webkit-transition: left linear 0.5s, width linear 0.5s;
  transition: left linear 0.5s, width linear 0.5s;
}

@media (min-width: 992px) {
  .navbar-menu__item.active .navbar-submenu__highlight {
    display: block;
  }
}

/* ---------------------------------Modules------------------------------------ */
/* ---------------------------------About------------------------------------ */
.about {
  position: relative;
  height: 100%;
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Inner------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Triangle------------------------------------ */
}

.about__img {
  width: 35%;
}

@media (min-width: 992px) {
  .about__img {
    width: 27%;
    margin-top: 4%;
  }
}

@media (min-width: 1200px) {
  .about__img {
    margin-top: 0;
    width: 36%;
  }
}

.about__img-inner {
  display: block;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .about__img-inner {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .about_bottom-left, .about_middle-left, .about_top-left {
    padding-left: 9%;
  }
}

@media (min-width: 992px) {
  .about_middle-right, .about_top-right {
    padding-right: 9%;
  }
}

.about__content {
  width: 65%;
}

@media (max-width: 991px) {
  .about__content {
    padding-left: 10px;
  }
}

@media (min-width: 992px) {
  .about__content {
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .about__content {
    width: 61%;
  }
}

.about__inner {
  padding: 15px;
  border-radius: 70px;
  background-color: #4299ba;
  height: 100%;
}

.about__inner:before, .about__inner:after {
  content: " ";
  display: table;
}

.about__inner:after {
  clear: both;
}

@media (min-width: 992px) {
  .about_middle-right .about__inner,
  .about_top-right .about__inner {
    padding-left: 30px;
  }
}

.about__title {
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.31px;
  font-family: "ProximaNovaBold";
  font-size: 14px;
}

@media (min-width: 992px) {
  .about__title {
    font-size: 11%;
  }
}

.about__description {
  margin-top: 5px;
  color: #ffffff;
  font-size: 13px;
  font-family: "ProximaNovaBold";
  line-height: 1;
  letter-spacing: 0.25px;
}

@media (min-width: 992px) {
  .about__description {
    font-size: 10%;
  }
}

.about__triangle {
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
  border-width: 13.5px 23px 13.5px 0;
  border-color: transparent #4298ba transparent transparent;
  display: none;
}

@media (min-width: 992px) {
  .about__triangle {
    display: block;
  }
}

.about_bottom-left .about__triangle {
  bottom: 14px;
  left: 19px;
  -webkit-transform: rotate(-33deg);
          transform: rotate(-33deg);
}

.about_middle-left .about__triangle {
  left: 10px;
  top: 50%;
  margin-top: -13.5px;
}

.about_middle-right .about__triangle {
  right: 10px;
  top: 50%;
  margin-top: -13.5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about_top-left .about__triangle {
  top: 14px;
  left: 19px;
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
}

.about_top-right .about__triangle {
  top: 14px;
  right: 19px;
  -webkit-transform: rotate(147deg);
          transform: rotate(147deg);
}

/* ---------------------------------Company------------------------------------ */
.company-use {
  padding: 15px 0;
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
}

@media (max-width: 991px) {
  .company-use {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .company-use {
    padding: 30px 0;
  }
}

.company-use__img {
  height: 63px;
}

.company-use__title {
  font-size: 20px;
  line-height: 30px;
}

.company-use__description {
  font-size: 14px;
  line-height: 25px;
}

/* ---------------------------------Lab------------------------------------ */
/* ---------------------------------Equipment------------------------------------ */
.lab-equipment {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 20px 5px;
  overflow: hidden;
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
}

@media (min-width: 992px) {
  .lab-equipment_type1 {
    height: 393px;
  }
  .lab-equipment_type2, .lab-equipment_type5 {
    height: 208px;
  }
  .lab-equipment_type3 {
    height: 189px;
  }
  .lab-equipment_type4 {
    height: 412px;
  }
}

.lab-equipment__title {
  font-size: 12px;
  line-height: 20px;
}

@media (min-width: 1330px) {
  .lab-equipment__title {
    font-size: 14px;
    line-height: 26px;
  }
}

.lab-equipment__img {
  width: 100%;
}

.lab-equipment__img-inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.lab-equipment__content {
  margin-top: 10px;
  width: 100%;
}

.lab-equipment_type5 .lab-equipment__content {
  margin-top: 0;
}

.lab-equipment__description {
  color: #888888;
  line-height: 1;
  font-size: 10px;
}

@media (min-width: 1330px) {
  .lab-equipment__description {
    font-size: 14px;
  }
}

/* ---------------------------------Control------------------------------------ */
.lab-control {
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------List------------------------------------ */
}

.lab-control__img {
  height: 64px;
  margin-bottom: 10px;
}

@media (max-width: 639px) {
  .lab-control__img {
    text-align: center;
  }
}

.lab-control__title {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}

.lab-control__description {
  font-size: 14px;
  line-height: 22px;
}

.lab-control__list-item {
  font-size: 14px;
  line-height: 25px;
  position: relative;
  padding-left: 25px;
}

.lab-control__list-item:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 1px;
  top: 6px;
  background-color: #4299ba;
}

/* ---------------------------------News------------------------------------ */
.news-event {
  /* ---------------------------------Slide------------------------------------ */
  position: relative;
  padding-top: 207px;
  /* ---------------------------------Bg------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Subtitle------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
}

@media (max-width: 991px) {
  .news-event {
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .news-event {
    padding: 100px 0;
  }
}

.news-event:focus {
  outline: none;
}

.news-event__bg {
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  height: 100%;
}

@media (max-width: 991px) {
  .news-event__bg {
    height: 290px;
  }
}

@media (min-width: 992px) {
  .news-event__bg {
    width: 75%;
  }
}

.news-event__content {
  padding: 20px;
  background-color: #ffffff;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .news-event__content {
    -webkit-box-shadow: 3px 5px 32px rgba(31, 31, 31, 0.1);
            box-shadow: 3px 5px 32px rgba(31, 31, 31, 0.1);
  }
}

@media (min-width: 640px) {
  .news-event__content {
    margin-left: 33px;
    margin-right: 33px;
  }
}

@media (min-width: 992px) {
  .news-event__content {
    padding: 60px 5px 60px 75px;
    max-width: 546px;
    margin-left: auto;
    margin-right: 0;
  }
}

.news-event__subtitle {
  color: #7c7c7c;
  font-family: "UbuntuBold";
  font-size: 14px;
  line-height: 26px;
}

.news-event__title {
  font-size: 28px;
  margin-top: 10px;
  font-family: "UbuntuBold";
  line-height: 34px;
}

.news-event__description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 26px;
}

.news-event__link {
  margin-top: 15px;
}

.slick-slide .news-event__link {
  z-index: 5;
}

.news-link {
  position: relative;
  display: block;
  margin-top: 50px;
  overflow: hidden;
}

.news-link__content {
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 0;
  min-height: 70px;
  padding-right: 10px;
  width: 100%;
  padding-bottom: 7px;
}

@media (min-width: 992px) {
  .news-link__content {
    width: 70%;
  }
}

.news-link__date {
  display: block;
  font-family: "UbuntuBold";
  font-size: 12px;
  color: #a7a7a7;
}

.news-link__title {
  margin-top: 5px;
  display: block;
  font-family: "UbuntuBold";
  font-size: 12px;
  line-height: 16px;
}

.news-link__img {
  display: block;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.news-link:hover .news-link__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-preview {
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Date------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
}

.news-preview__img {
  float: left;
}

.news-preview__content {
  padding-top: 5px;
  padding-left: 95px;
}

.news-preview__date {
  color: #a7a7a7;
  font-family: "UbuntuBold";
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.news-preview__title {
  color: #a7a7a7;
  font-family: "UbuntuBold";
  margin-top: 5px;
  line-height: 16px;
  overflow: hidden;
  height: 48px;
  font-size: 11px;
}

.slick-center .news-preview__title {
  color: #000000;
}

.news-preview-apart {
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Date------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
}

.news-preview-apart__img {
  float: left;
}

.news-preview-apart__content {
  padding-left: 115px;
}

.news-preview-apart__date {
  color: #a7a7a7;
  font-family: "UbuntuBold";
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.news-preview-apart__title {
  color: #a7a7a7;
  font-family: "UbuntuBold";
  margin-top: 5px;
  line-height: 16px;
  overflow: hidden;
  height: 80px;
  font-size: 11px;
}

.slick-center .news-preview-apart__title {
  color: #000000;
}

.news-item__content {
  padding-top: 20px;
  font-size: 14px;
  line-height: 25px;
  font-family: "UbuntuRegular";
}

.news-item__content p {
  padding-top: 10px;
}

.news-item__content img {
  max-width: 100%;
}

.news-item__image {
  max-width: 100%;
}

.news-item__date {
  padding-top: 20px;
  font-size: 16px;
  font-family: "UbuntuBold";
}

/* ---------------------------------Partner------------------------------------ */
.partner {
  margin-top: 10px;
  text-align: center;
  background-color: #f4f4f4;
  display: block;
  height: 100%;
  padding: 10px;
  letter-spacing: -4px;
}

.partner:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.partner > * {
  float: none;
  letter-spacing: 0;
  vertical-align: middle;
  display: inline-block;
}

@media (min-width: 640px) {
  .partner {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .partner {
    margin-top: 25px;
  }
}

.partner:hover {
  background-color: #000000;
}

.partner:hover .partner__img {
  display: none;
}

.partner:hover .partner__img_hover {
  display: inline-block;
}

.partner__img_hover {
  display: none;
}

/* ---------------------------------Product------------------------------------ */
.product {
  /* ---------------------------------Header------------------------------------ */
  /* ---------------------------------Subtitle------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Img------------------------------------ */
  /* ---------------------------------Info------------------------------------ */
  /* ---------------------------------List------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Tech------------------------------------ */
}

.product + .product {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .product + .product {
    margin-top: 40px;
  }
}

.product__header {
  padding: 20px 10px;
  background-color: #f1f1f1;
}

@media (min-width: 992px) {
  .product__header {
    padding: 45px;
  }
}

.product__subtitle {
  color: #767676;
  font-family: "UbuntuBold";
  font-size: 15px;
  line-height: 19px;
}

.product__title {
  font-size: 20px;
  line-height: 26px;
  font-family: "UbuntuBold";
}

@media (min-width: 992px) {
  .product__title {
    font-size: 38px;
    line-height: 46px;
  }
}

.product__description {
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .product__description {
    font-size: 14px;
    line-height: 22px;
  }
}

.product__img {
  text-align: center;
}

@media (max-width: 992px) {
  .product__info-wr {
    margin: 15px 10px 0px 10px;
  }
}

.product__info {
  background-color: #6a92c7;
  padding: 20px;
}

@media (min-width: 992px) {
  .product__info {
    padding: 35px 45px;
  }
}

.product__info-title {
  color: #ffffff;
  font-size: 16px;
  font-family: "UbuntuBold";
  line-height: 17px;
}

.product__list {
  margin-top: 15px;
}

.product__list-item {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  line-height: 13px;
  padding-left: 10px;
}

.product__list-item:before {
  content: '-';
  position: absolute;
  left: 0;
}

.product__list-item + .product__list-item {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .product__content {
    width: 100%;
    display: table;
  }
}

@media (min-width: 992px) {
  .product__content-inner {
    display: table-row;
  }
}

@media (min-width: 992px) {
  .product__content-inner > * {
    display: table-cell;
    vertical-align: top;
    float: none;
  }
}

.product__tech-wr {
  background-color: #f8f8f8;
}

.product__tech {
  padding: 20px 10px;
}

@media (min-width: 992px) {
  .product__tech {
    padding: 30px 45px;
  }
}

.product__tech-title {
  font-family: "UbuntuBold";
  font-size: 16px;
  line-height: 17px;
}

.product__tech-table {
  margin-top: 15px;
  width: 100%;
}

.product__tech-table th {
  color: #909090;
  padding: 5px;
  font-size: 11px;
  line-height: 14px;
  width: 33.333%;
  text-align: left;
}

@media (min-width: 992px) {
  .product__tech-table th {
    font-size: 14px;
    line-height: 17px;
    padding: 0 5px 0 0;
  }
}

.product__tech-table td {
  font-size: 11px;
  line-height: 18px;
  padding: 5px;
  vertical-align: top;
}

@media (min-width: 992px) {
  .product__tech-table td {
    font-size: 14px;
    line-height: 22px;
    padding: 0 5px 0 0;
  }
}

.product__tech-table tbody tr:nth-child(odd) {
  background-color: #f1f1f1;
}

/* ---------------------------------Production------------------------------------ */
.production-control {
  /* ---------------------------------Num------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Arrow------------------------------------ */
}

@media (max-width: 991px) {
  .production-control {
    text-align: center;
  }
}

.production-control__num {
  color: #6a92c7;
  font-family: "UbuntuBold";
  font-size: 72px;
  line-height: 1;
}

.production-control__description {
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}

.production-control__arrow {
  background: url(../img/production/control/arrow-right.png) no-repeat 100%/contain;
  width: 100%;
  height: 23px;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .production-control__arrow {
    display: none;
  }
}

.production-product {
  border: 1px solid #ebebeb;
  padding: 20px;
  /* ---------------------------------Img------------------------------------ */
}

@media (min-width: 992px) {
  .production-product {
    padding: 40px;
  }
}

.production-product__title {
  font-family: "UbuntuBold";
  font-size: 20px;
  line-height: 26px;
}

.production-product__description {
  font-size: 12px;
  margin-top: 10px;
  line-height: 18px;
}

.production-product__list-title {
  margin-bottom: 10px;
  font-family: "UbuntuBold";
  color: #717171;
  font-size: 16px;
}

.production-product__list-item {
  line-height: 18px;
  font-size: 12px;
}

.production-product__list-item:before {
  content: '- ';
}

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

.production-line {
  padding-left: 50px;
  padding-top: 5px;
  position: relative;
  /* ---------------------------------Num------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Img------------------------------------ */
}

.production-line__num {
  color: #767676;
  font-size: 40px;
  font-family: "UbuntuBold";
  position: absolute;
  line-height: 1;
  left: 0;
  top: 0;
}

.production-line__title {
  font-size: 24px;
  font-family: "UbuntuBold";
  line-height: 34px;
  text-transform: uppercase;
}

.production-line__description {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 30px;
}

.production-line__img + .production-line__img {
  margin-top: 30px;
}

.certificates {
  padding-left: 50px;
  padding-right: 50px;
  /* ---------------------------------slick-arrow------------------------------------ */
}

.certificates .slick-arrow {
  position: absolute;
  top: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -17.5px;
  z-index: 10;
}

.certificates .slick-arrow.slick-prev {
  left: 0;
  padding-right: 10px;
}

.certificates .slick-arrow.slick-next {
  right: 0;
  padding-left: 10px;
}

.certificates .slick-arrow:before {
  content: '';
  display: inline-block;
  background: url("../img/carousel/arrow_right_grey.svg");
  width: 39px;
  height: 36px;
}

.certificates .slick-arrow:hover:before {
  background: url("../img/carousel/arrow_right_black.svg");
}

.certificates .slick-arrow.slick-prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ---------------------------------Vacancy------------------------------------ */
.vacancy {
  /* ---------------------------------Header------------------------------------ */
  /* ---------------------------------Info------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
}

.vacancy + .vacancy {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .vacancy + .vacancy {
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .vacancy__header {
    letter-spacing: -4px;
  }
  .vacancy__header:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .vacancy__header > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

.vacancy__info {
  background-color: #4299ba;
  padding: 25px;
}

@media (min-width: 992px) {
  .vacancy__info {
    padding: 30px 40px;
  }
}

.vacancy__info-title {
  color: #ffffff;
  font-size: 34px;
  line-height: 36px;
  margin-top: 11px;
}

.vacancy__info-subtitle {
  color: #ffffff;
  font-size: 16px;
  font-family: "UbuntuBold";
  line-height: 17px;
}

.vacancy__info_salary {
  background-color: transparent;
}

.vacancy__info_salary .vacancy__info-subtitle {
  color: #737373;
}

.vacancy__info_salary .vacancy__info-title {
  color: #4299ba;
}

.vacancy__links {
  padding: 10px 0;
}

@media (max-width: 991px) {
  .vacancy__links {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .vacancy__links {
    letter-spacing: -4px;
  }
  .vacancy__links:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .vacancy__links > * {
    float: none;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
  }
}

.vacancy__link + .vacancy__link {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .vacancy__link + .vacancy__link {
    margin-top: 0;
    margin-left: 40px;
  }
}

.vacancy__content {
  background-color: #f8f8f8;
  padding: 25px;
}

@media (min-width: 992px) {
  .vacancy__content {
    padding: 30px 40px;
  }
}

.vacancy__content-title {
  font-size: 16px;
  font-family: "UbuntuBold";
  line-height: 17px;
}

.vacancy__content-list {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .vacancy__content-list ul {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

.vacancy__content-list li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding-left: 10px;
}

.vacancy__content-list li:before {
  content: '-';
  left: 0;
  position: absolute;
}

.vacancy__content-description {
  margin-top: 10px;
}

/* ---------------------------------Loading------------------------------------ */
.loading {
  display: none;
  z-index: 100;
  position: relative;
}

.loading__inner {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  text-align: center;
}

.loading__logo {
  display: inline;
  width: 100px;
  height: 100px;
  -webkit-animation: 6s Rotate360 linear infinite;
          animation: 6s Rotate360 linear infinite;
}

.loading__info {
  display: block;
  margin-top: 20px;
  -webkit-animation: 1s LoadingBlink ease-in-out infinite alternate;
          animation: 1s LoadingBlink ease-in-out infinite alternate;
}

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

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

@-webkit-keyframes LoadingBlink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes LoadingBlink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
