/* -----------------------------------------------------------------------
Version: 0.1

SMACSS [Scalable Modular Architecture for CSS]
Reference: http://smacss.com/

Categorizing:
1. Base  - Defaults elements, attribute selectors, pseudo-class selectors styling [example: body, form, a]
2. Layout  - Divide the page into sections [example: header, footer] [prefix: l-]
3. Modules - Reusable, Modular parts of design [example: sidebar, popup] [prefix: module-]
4. State - How our module or layouts look in particular state [example: expanded, active] [prefix: is-]
5. Theme - Look and feel of subcomponent based on theme [example: dark, light] [prefix: theme-]
6. Pages   - Page specific styles. [prefix: page-]
----------------------------------------------------------------------- */
/*-------------------------------------------------
MASTER: IMPORTING STYLESHEETS
-------------------------------------------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*-------------------------------------------------
SMACSS: VARIABLES
-------------------------------------------------*/
/*!* Colors *!
$color-white: #fff;
$color-black: #000;

//Main color
$main-color: rgb(1, 109, 62);

//Navigation hover backgraund
$nav-bg: #008048;
$nav-bg-hover: #016D3E;
//Navigation active
$active: #00D779;

//Footer background
$footer-bg: #004125;*/
/* Colors */
/* Font */
@font-face {
  font-family: 'roboto_condensedbold';
  src: url("../fonts/fonts/robotocondensed-bold.eot");
  src: url("../fonts/robotocondensed-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/robotocondensed-bold.woff2") format("woff2"), url("../fonts/robotocondensed-bold.woff") format("woff"), url("../fonts/robotocondensed-bold.ttf") format("truetype"), url("../fonts/robotocondensed-bold.svg#roboto_condensedbold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'roboto_condensedlight';
  src: url("../fonts/robotocondensed-light.eot");
  src: url("../fonts/robotocondensed-light.eot?#iefix") format("embedded-opentype"), url("../fonts/robotocondensed-light.woff2") format("woff2"), url("../fonts/robotocondensed-light.woff") format("woff"), url("../fonts/robotocondensed-light.ttf") format("truetype"), url("../fonts/robotocondensed-light.svg#roboto_condensedlight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'roboto_condensedregular';
  src: url("../fonts/robotocondensed-regular.eot");
  src: url("../fonts/robotocondensed-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/robotocondensed-regular.woff2") format("woff2"), url("../fonts/robotocondensed-regular.woff") format("woff"), url("../fonts/robotocondensed-regular.ttf") format("truetype"), url("../fonts/robotocondensed-regular.svg#roboto_condensedregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.title, .title--medium, .subtitle, .footer__container .contact-phone .phone-wrapper .phone__number, .footer__container .address address, .footer__container .asf-a-question__form a span, .home__page .footer__container .address address,
.contacts__page .footer__container .address address,
.service__page .footer__container .address address,
.about-us__page .footer__container .address address,
.vacancies__page .footer__container .address address, .animatedModal-on .modal-content h1,
.animatedModal-off .modal-content h1, .animatedModal-on .modal-content .contact-form input[type="submit"],
.animatedModal-off .modal-content .contact-form input[type="submit"], .service__page .l-service-choice .wrapper .warranty .warranty-overlay h2, .service__page .l-service-choice .wrapper .warranty .warranty-overlay h5, .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay h2, .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay h5 {
  font-family: 'roboto_condensedbold'; }

body, .animatedModal-on .modal-content .contact-form textarea,
.animatedModal-off .modal-content .contact-form textarea, .about-us__page .l-about-us, .l-contacts {
  font-family: 'roboto_condensedregular'; }

/*
TODO ::
[] Integrate Bourbon to make use of most mixins - http://bourbon.io/docs/
*/
/*-------------------------------------------------
 MIXIN :: CLEARFIX
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: PIXEL TO EM CONVERTOR
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: BORDER RADIUS
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: TRANSITION
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: BOX SHADOW
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: SCALE - TRANSFORM
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: ROTATE - TRANSFORM
-------------------------------------------------*/
/*-------------------------------------------------
 MIXIN :: FONT STYLE
-------------------------------------------------*/
/*-------------------------------------------------
SMACSS: BASE
-------------------------------------------------*/
/*====Box sizing====*/
html {
  box-sizing: border-box; }

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

svg,
img {
  box-sizing: content-box;
  max-width: 100%;
  height: auto; }

body {
  font-size: 1rem;
  color: #fff;
  min-height: 100%;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; }

::selection {
  background: #4fc4c7;
  color: #fff; }

a {
  color: currentColor; }

ul {
  list-style: disc;
  margin-left: 10%;
  text-align: left;
  width: 90%; }
  ul li {
    line-height: 1.5;
    color: #f15c58; }
    ul li span {
      color: #000; }

sub {
  vertical-align: sub;
  font-size: smaller; }

/*-------------------------------------------------
SMACSS: LAYOUT - COMMON
-------------------------------------------------*/
/*-------------------------------------------------
SMACSS: LAYOUT - MAIN NAVIGATION
-------------------------------------------------*/
.main-nav {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  height: 100vh;
  width: 8.4375rem;
  top: 0;
  left: 0;
  background-color: #4fc4c7;
  transition: all .5s; }
  @media (max-width: 87.5rem) {
    .main-nav {
      width: 6.25rem; } }
  @media (min-width: 48rem) {
    .main-nav.nav-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      position: fixed !important;
      clip: auto !important;
      max-height: 624.9375rem !important; } }
  @media (max-width: 47.9375rem) {
    .main-nav {
      width: 100%;
      height: auto;
      z-index: 10;
      position: relative;
      display: block; } }

.main-nav__container__link {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  width: 8.4375rem;
  height: 8.4375rem;
  margin: auto;
  padding: 1.25rem 0;
  color: #fff;
  background-color: #4fc4c7;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-top: none; }
  .main-nav__container__link:hover {
    background-color: #3EA6A9; }
  @media (max-width: 87.5rem) {
    .main-nav__container__link {
      width: 6.25rem;
      height: 6.25rem;
      padding: 0.9375rem 0; } }
  @media (max-width: 47.9375rem) {
    .main-nav__container__link {
      width: 100%;
      height: 3.125rem; } }

.container__link__icon__container {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.3125rem;
  width: 100%; }
  @media (max-width: 47.9375rem) {
    .container__link__icon__container {
      display: none; } }

.main-nav__container__link__title {
  display: block;
  font-size: 0.75rem;
  line-height: 2;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all .5s; }
  @media (max-width: 87.5rem) {
    .main-nav__container__link__title {
      font-size: 0.625rem; } }
  @media (max-width: 47.9375rem) {
    .main-nav__container__link__title {
      font-size: 1rem; } }

.toogle_icon {
  display: none; }
  @media (max-width: 47.9375rem) {
    .toogle_icon {
      display: inline-block; } }

/*-------------------------------------------------
SMACSS: MAIN CONTAINER
-------------------------------------------------*/
.main__content {
  width: calc(100% - 135px);
  margin-left: 8.4375rem;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%; }
  @media (max-width: 87.5rem) {
    .main__content {
      width: calc(100% - 100px);
      margin-left: 6.25rem; } }
  @media (max-width: 47.9375rem) {
    .main__content {
      width: 100%;
      margin-left: 0; } }

.title {
  font-size: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.125rem solid #f15c58;
  display: inline-block; }
  @media (max-width: 23.75rem) {
    .title {
      font-size: 1.875rem;
      line-height: 1.875rem; } }
  .title--medium {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
    padding-top: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.9375rem; }
    .title--medium:before {
      position: absolute;
      content: '';
      left: 50%;
      bottom: 0;
      height: 0.125rem;
      background-color: #f15c58;
      width: 70%;
      transform: translateX(-50%); }
  .title--small {
    color: #000;
    font-size: 1rem;
    line-height: 1rem;
    padding: 0.625rem 0; }

.subtitle {
  text-transform: uppercase;
  color: #f15c58;
  font-size: 1.875rem;
  line-height: 1.875rem; }
  @media (max-width: 23.75rem) {
    .subtitle {
      font-size: 1.3125rem;
      line-height: 1.3125rem; } }

.description--medium {
  color: #000;
  font-size: 1rem;
  line-height: 1.5rem; }

/*-------------------------------------------------
SMACSS: FOOTER
-------------------------------------------------*/
.footer__container {
  width: calc(100% - 135px);
  margin-left: 8.4375rem;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  height: 15vh;
  background-color: #3EA6A9;
  padding: 0.9375rem; }
  @media (max-width: 87.5rem) {
    .footer__container {
      width: calc(100% - 100px);
      margin-left: 6.25rem; } }
  @media (max-width: 85rem) {
    .footer__container {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  @media (max-width: 47.9375rem) {
    .footer__container {
      width: 100%;
      margin-left: 0; } }
  .footer__container .vismedic-footer,
  .footer__container .contact-phone,
  .footer__container .address,
  .footer__container .asf-a-question__form {
    height: 100%;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1.875rem;
    /*width: calc(100%/5);
    flex-basis: calc(100%/5);*/ }
  .footer__container .vismedic-footer,
  .footer__container .contact-phone,
  .footer__container .address {
    border-right: 0.125rem solid #23b5b9; }
    @media (max-width: 63.9375rem) {
      .footer__container .vismedic-footer,
      .footer__container .contact-phone,
      .footer__container .address {
        border: 0; } }
  .footer__container .vismedic-footer {
    text-align: center; }
    .footer__container .vismedic-footer a {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-align: center;
      align-items: center;
      text-transform: none;
      text-decoration: none; }
  .footer__container .contact-phone .phone-wrapper {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center; }
    .footer__container .contact-phone .phone-wrapper .phone {
      width: 100%;
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-align: center;
      align-items: center; }
    .footer__container .contact-phone .phone-wrapper .phone__number__wrapper {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: distribute;
      justify-content: space-around; }
      @media (max-width: 78.75rem) {
        .footer__container .contact-phone .phone-wrapper .phone__number__wrapper {
          -ms-flex-direction: column;
          flex-direction: column; } }
    .footer__container .contact-phone .phone-wrapper .phone__number {
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      white-space: pre;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      text-align: right;
      font-size: 1.25rem;
      line-height: 1.5; }
      @media (max-width: 83.75rem) {
        .footer__container .contact-phone .phone-wrapper .phone__number {
          font-size: 1rem; } }
      .footer__container .contact-phone .phone-wrapper .phone__number:not(:first-child) {
        padding-left: 20px; }
        @media (max-width: 78.75rem) {
          .footer__container .contact-phone .phone-wrapper .phone__number:not(:first-child) {
            padding-left: 0; } }
  .footer__container .address {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center; }
    .footer__container .address address {
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      white-space: nowrap;
      text-align: right;
      font-size: 1rem;
      line-height: 1.5; }
  .footer__container .asf-a-question__form a {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-transform: none;
    text-decoration: none; }
    .footer__container .asf-a-question__form a span {
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      white-space: nowrap;
      color: #fff;
      text-transform: uppercase;
      text-align: right;
      font-size: 1.25rem;
      line-height: 1.5;
      padding-left: 1.875rem; }
      @media (max-width: 83.75rem) {
        .footer__container .asf-a-question__form a span {
          font-size: 1rem; } }
      @media (max-width: 87.5rem) {
        .footer__container .asf-a-question__form a span {
          padding-left: 0.9375rem; } }

.home__page .vismedic-footer,
.home__page .contact-phone,
.home__page .address,
.contacts__page .vismedic-footer,
.contacts__page .contact-phone,
.contacts__page .address,
.service__page .vismedic-footer,
.service__page .contact-phone,
.service__page .address,
.about-us__page .vismedic-footer,
.about-us__page .contact-phone,
.about-us__page .address,
.vacancies__page .vismedic-footer,
.vacancies__page .contact-phone,
.vacancies__page .address {
  border-right: 0.125rem solid #23b5b9; }
  @media (max-width: 63.9375rem) {
    .home__page .vismedic-footer,
    .home__page .contact-phone,
    .home__page .address,
    .contacts__page .vismedic-footer,
    .contacts__page .contact-phone,
    .contacts__page .address,
    .service__page .vismedic-footer,
    .service__page .contact-phone,
    .service__page .address,
    .about-us__page .vismedic-footer,
    .about-us__page .contact-phone,
    .about-us__page .address,
    .vacancies__page .vismedic-footer,
    .vacancies__page .contact-phone,
    .vacancies__page .address {
      border: 0; } }

@media (max-width: 27.5rem) {
  .home__page .vismedic-footer,
  .home__page .contact-phone,
  .home__page .address,
  .home__page .asf-a-question__form,
  .contacts__page .vismedic-footer,
  .contacts__page .contact-phone,
  .contacts__page .address,
  .contacts__page .asf-a-question__form,
  .service__page .vismedic-footer,
  .service__page .contact-phone,
  .service__page .address,
  .service__page .asf-a-question__form,
  .about-us__page .vismedic-footer,
  .about-us__page .contact-phone,
  .about-us__page .address,
  .about-us__page .asf-a-question__form,
  .vacancies__page .vismedic-footer,
  .vacancies__page .contact-phone,
  .vacancies__page .address,
  .vacancies__page .asf-a-question__form {
    margin: 0.9375rem 0; } }

.home__page .footer__container,
.contacts__page .footer__container,
.service__page .footer__container,
.about-us__page .footer__container,
.vacancies__page .footer__container {
  background-color: #fff; }
  .home__page .footer__container .vismedic-footer,
  .contacts__page .footer__container .vismedic-footer,
  .service__page .footer__container .vismedic-footer,
  .about-us__page .footer__container .vismedic-footer,
  .vacancies__page .footer__container .vismedic-footer {
    color: #f15c58; }
    .home__page .footer__container .vismedic-footer a,
    .contacts__page .footer__container .vismedic-footer a,
    .service__page .footer__container .vismedic-footer a,
    .about-us__page .footer__container .vismedic-footer a,
    .vacancies__page .footer__container .vismedic-footer a {
      color: #f15c58; }
  .home__page .footer__container .contact-phone .phone-wrapper .phone__number,
  .contacts__page .footer__container .contact-phone .phone-wrapper .phone__number,
  .service__page .footer__container .contact-phone .phone-wrapper .phone__number,
  .about-us__page .footer__container .contact-phone .phone-wrapper .phone__number,
  .vacancies__page .footer__container .contact-phone .phone-wrapper .phone__number {
    color: #f15c58; }
  .home__page .footer__container .address address,
  .contacts__page .footer__container .address address,
  .service__page .footer__container .address address,
  .about-us__page .footer__container .address address,
  .vacancies__page .footer__container .address address {
    color: #f15c58; }
  .home__page .footer__container .asf-a-question__form a span,
  .contacts__page .footer__container .asf-a-question__form a span,
  .service__page .footer__container .asf-a-question__form a span,
  .about-us__page .footer__container .asf-a-question__form a span,
  .vacancies__page .footer__container .asf-a-question__form a span {
    color: #f15c58; }
  .home__page .footer__container .icon--phone,
  .home__page .footer__container .icon--map,
  .contacts__page .footer__container .icon--phone,
  .contacts__page .footer__container .icon--map,
  .service__page .footer__container .icon--phone,
  .service__page .footer__container .icon--map,
  .about-us__page .footer__container .icon--phone,
  .about-us__page .footer__container .icon--map,
  .vacancies__page .footer__container .icon--phone,
  .vacancies__page .footer__container .icon--map {
    fill: #f15c58; }
  .home__page .footer__container .icon--question,
  .contacts__page .footer__container .icon--question,
  .service__page .footer__container .icon--question,
  .about-us__page .footer__container .icon--question,
  .vacancies__page .footer__container .icon--question {
    fill: #000; }

/*-------------------------------------------------
SVG: ICON - COMMON
-------------------------------------------------*/
/*===MAIN MENU ICON===*/
.icon--home {
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10;
  fill: none; }

.icon--service {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: miter;
  stroke-miterlimit: 10; }

.icon--about-us {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10; }

.icon--contacts {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10; }

.icon--vacancies {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10; }

.icon--home,
.icon--service,
.icon--about-us,
.icon--contacts,
.icon--vacancies {
  max-width: 4rem;
  max-height: 4rem;
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 87.5rem) {
    .icon--home,
    .icon--service,
    .icon--about-us,
    .icon--contacts,
    .icon--vacancies {
      max-height: 3rem; } }

.icon--personal-area {
  fill: #fff;
  width: 40%;
  max-height: 4rem;
  margin: 0 auto; }

/*===MAIN MENU ICON===*/
/*===HEADER ICON===*/
.icon-header--clock,
.icon-header--equipment,
.icon-header--list {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  stroke: #f15c58; }

/*===HEADER ICON===*/
/*===HOME PAGE ICON===*/
.icon--microscope {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-miterlimit: 10; }

.icon--list {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-miterlimit: 10; }

/*===HOME PAGE ICON===*/
/*==FOOTER ICON===*/
.icon--vismedic {
  max-width: 15.625rem;
  max-height: 4.6875rem;
  width: 100%; }
  @media (max-width: 85rem) {
    .icon--vismedic {
      max-width: 11.25rem; } }

.icon--phone {
  max-width: 5rem;
  max-height: 5rem;
  width: 100%;
  fill: #fff; }

.icon--map {
  max-width: 5rem;
  max-height: 5rem;
  width: 100%;
  fill: #fff; }

.icon--question {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  fill: #fff; }
  @media (max-width: 87.5rem) {
    .icon--question {
      max-width: 3.125rem;
      max-height: 3.125rem; } }

/*==MODAL ICON===*/
.icon--close-modal {
  max-width: 3.125rem;
  width: 100%;
  max-height: 3.125rem;
  fill: none;
  stroke: #f15c58;
  stroke-width: 2;
  stroke-miterlimit: 10; }

.icon--write {
  max-width: 7.5rem;
  max-height: 7.5rem;
  width: 100%;
  fill: #fff; }
  @media (max-width: 87.5rem) {
    .icon--write {
      max-width: 5.625rem;
      max-height: 5.625rem; } }
  @media (max-width: 47.9375rem) {
    .icon--write {
      max-width: 3.125rem;
      max-height: 3.125rem; } }

/*-------------------------------------------------
SMACSS: FORMS - COMMON
-------------------------------------------------*/
form {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="search"],
textarea {
  color: #666;
  border: 2px solid #23b5b9;
  outline: 0;
  background-color: #fff;
  padding: 0.2rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.25rem; }
  input[type="text"]:hover,
  input[type="email"]:hover,
  input[type="tel"]:hover,
  input[type="password"]:hover,
  input[type="date"]:hover,
  input[type="search"]:hover,
  textarea:hover {
    border-color: #4fc4c7; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    border-color: #4fc4c7; }

textarea {
  resize: none;
  font-size: 18px; }

.row-box {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media (max-width: 62.5rem) {
    .row-box {
      display: block; } }

.column-box {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.full-container {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  width: 100%; }

.full-container__half--one,
.full-container__half--two {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  width: 50%; }
  @media (max-width: 62.5rem) {
    .full-container__half--one,
    .full-container__half--two {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      width: 100%; } }

.button-scroll-container {
  display: none;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center; }
  @media (max-width: 41.875rem) {
    .button-scroll-container {
      display: none; } }

.button--scroll-down,
.button--scroll-down:before {
  position: absolute;
  left: 50%;
  bottom: 5%; }

.button--scroll-down {
  width: 2.5rem;
  height: 4.375rem;
  margin-left: -1.25rem;
  margin-top: -2.1875rem;
  box-shadow: inset 0 0 0 0.125rem #23b5b9;
  border-radius: 1.5625rem; }
  .button--scroll-down a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block; }
  .button--scroll-down:before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #f15c58;
    margin-left: -0.25rem;
    top: 0.5rem;
    border-radius: 0.25rem;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll; }

@keyframes scroll {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(2.875rem); } }

.animatedModal-on,
.animatedModal-off {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 8.4375rem;
  width: calc(100% - 135px) !important; }
  @media (max-width: 87.5rem) {
    .animatedModal-on,
    .animatedModal-off {
      width: calc(100% - 100px) !important;
      margin-left: 6.25rem; } }
  @media (max-width: 47.9375rem) {
    .animatedModal-on,
    .animatedModal-off {
      width: 100% !important;
      margin-left: 0; } }
  .animatedModal-on .close-animatedModal,
  .animatedModal-off .close-animatedModal {
    max-width: 3.125rem;
    max-height: 3.125rem;
    position: absolute;
    right: 0;
    top: 0;
    margin: 1.25rem;
    transition: all 0.2s;
    z-index: 10; }
    .animatedModal-on .close-animatedModal:hover,
    .animatedModal-off .close-animatedModal:hover {
      cursor: pointer;
      transform: rotate(90deg); }
  .animatedModal-on .modal-content,
  .animatedModal-off .modal-content {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: center;
    align-self: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 37.5rem;
    width: 100%;
    padding: 0 0.9375rem; }
    @media (max-width: 47.9375rem) and (orientation: landscape) {
      .animatedModal-on .modal-content,
      .animatedModal-off .modal-content {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-top: 25rem; } }
    .animatedModal-on .modal-content h1,
    .animatedModal-off .modal-content h1 {
      font-size: 3.125rem;
      line-height: 3.125rem;
      padding: 1.875rem 0;
      color: #fff;
      text-align: center; }
      @media (max-width: 87.5rem) {
        .animatedModal-on .modal-content h1,
        .animatedModal-off .modal-content h1 {
          font-size: 1.875rem;
          line-height: 1.875rem; } }
      @media (max-width: 47.9375rem) {
        .animatedModal-on .modal-content h1,
        .animatedModal-off .modal-content h1 {
          font-size: 1.5rem;
          line-height: 1.5rem; } }
    .animatedModal-on .modal-content .contact-form,
    .animatedModal-off .modal-content .contact-form {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-direction: column;
      flex-direction: column;
      /*Animation placeholder*/
      /*Animation placeholder*/ }
      .animatedModal-on .modal-content .contact-form input[type="text"],
      .animatedModal-on .modal-content .contact-form input[type="email"],
      .animatedModal-on .modal-content .contact-form input[type="submit"],
      .animatedModal-on .modal-content .contact-form textarea,
      .animatedModal-off .modal-content .contact-form input[type="text"],
      .animatedModal-off .modal-content .contact-form input[type="email"],
      .animatedModal-off .modal-content .contact-form input[type="submit"],
      .animatedModal-off .modal-content .contact-form textarea {
        box-shadow: none;
        margin-top: 0.3125rem; }
      .animatedModal-on .modal-content .contact-form input[type="text"],
      .animatedModal-on .modal-content .contact-form input[type="email"],
      .animatedModal-on .modal-content .contact-form input[type="submit"],
      .animatedModal-off .modal-content .contact-form input[type="text"],
      .animatedModal-off .modal-content .contact-form input[type="email"],
      .animatedModal-off .modal-content .contact-form input[type="submit"] {
        text-align: center; }
      .animatedModal-on .modal-content .contact-form input[type="submit"],
      .animatedModal-off .modal-content .contact-form input[type="submit"] {
        background: #fff;
        color: #23b5b9;
        border: 2px solid #23b5b9;
        outline: 0;
        padding: 0.5rem;
        cursor: pointer;
        transition: all .5s;
        width: 100%;
        font-size: 1.25rem; }
        .animatedModal-on .modal-content .contact-form input[type="submit"]:hover,
        .animatedModal-off .modal-content .contact-form input[type="submit"]:hover {
          background: #23b5b9;
          color: #fff; }
      .animatedModal-on .modal-content .contact-form input[type]::-webkit-input-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]::-webkit-input-placeholder {
        line-height: 20px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]::-moz-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]::-moz-placeholder {
        line-height: 20px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:-moz-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:-moz-placeholder {
        line-height: 20px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:-ms-input-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:-ms-input-placeholder {
        line-height: 20px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:focus::-webkit-input-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:focus::-webkit-input-placeholder {
        line-height: 100px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:focus::-moz-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:focus::-moz-placeholder {
        line-height: 100px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:focus:-moz-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:focus:-moz-placeholder {
        line-height: 100px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form input[type]:focus:-ms-input-placeholder,
      .animatedModal-off .modal-content .contact-form input[type]:focus:-ms-input-placeholder {
        line-height: 100px;
        transition: line-height 0.5s ease; }
      .animatedModal-on .modal-content .contact-form ::-webkit-input-placeholder,
      .animatedModal-off .modal-content .contact-form ::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #f15c58;
        opacity: 1; }
      .animatedModal-on .modal-content .contact-form ::-moz-placeholder,
      .animatedModal-off .modal-content .contact-form ::-moz-placeholder {
        /* Firefox 19+ */
        color: #f15c58;
        opacity: 1; }
      .animatedModal-on .modal-content .contact-form :-ms-input-placeholder,
      .animatedModal-off .modal-content .contact-form :-ms-input-placeholder {
        /* IE 10+ */
        color: #f15c58;
        opacity: 1; }
      .animatedModal-on .modal-content .contact-form :-moz-placeholder,
      .animatedModal-off .modal-content .contact-form :-moz-placeholder {
        /* Firefox 18- */
        color: #f15c58;
        opacity: 1; }
      .animatedModal-on .modal-content .contact-form :placeholder-shown,
      .animatedModal-off .modal-content .contact-form :placeholder-shown {
        color: #f15c58;
        opacity: 1; }
      @media (max-width: 47.9375rem) and (orientation: landscape) {
        .animatedModal-on .modal-content .contact-form,
        .animatedModal-off .modal-content .contact-form {
          margin-bottom: 6.25rem; } }

.svg__container {
  width: 100%;
  text-align: center; }

/*-------------------------------------------------
SMACSS: MOBILE NAVIGATION
-------------------------------------------------*/
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none; }

.nav-collapse li {
  width: 100%;
  display: block; }

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1; }

.nav-collapse.opened {
  max-height: 9999px; }

.nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

@media screen and (min-width: 48em) {
  .js .nav-collapse {
    position: relative; }
  .js .nav-collapse.closed {
    max-height: none; }
  .nav-toggle {
    display: none; } }

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #f15c58; }

.hamburger {
  text-align: right;
  float: right;
  position: relative;
  background-color: #fff;
  z-index: 10; }
  .hamburger:hover {
    opacity: 1; }

/*-------------------------------------------------
SMACSS: PAGE - HOME
-------------------------------------------------*/
.home__page__header {
  position: relative;
  height: 100vh;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 47.9375rem) {
    .home__page__header {
      padding: 12.5rem 0.9375rem;
      height: auto; } }
  @media (max-width: 63.9375rem) {
    .home__page__header {
      padding: 9.375rem 0.9375rem; } }
  @media (max-width: 23.75rem) {
    .home__page__header {
      padding: 4.6875rem 0.9375rem; } }

.header__logo {
  color: #23b5b9;
  z-index: 50;
  -ms-flex-item-align: start;
  align-self: flex-start; }
  .header__logo .svg__container {
    text-align: left; }
    @media (max-width: 41.875rem) {
      .header__logo .svg__container {
        text-align: center; } }
  .header__logo .icon--vismedic {
    max-width: 18.75rem; }
    @media (max-width: 23.75rem) {
      .header__logo .icon--vismedic {
        max-width: 12.5rem; } }
  .header__logo a {
    color: #23b5b9;
    text-decoration: none; }
  .header__logo p {
    line-height: 1.5;
    color: #000; }

.header__content {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #23b5b9; }
  @media (max-width: 41.875rem) {
    .header__content {
      text-align: center; } }
  .header__content .icon--tiger {
    height: 35.625rem;
    width: 50rem; }
    @media (max-width: 68.75rem) {
      .header__content .icon--tiger {
        height: 25rem;
        width: auto; } }
    @media (max-width: 41.875rem) {
      .header__content .icon--tiger {
        display: none; } }

.header__content__info {
  width: 55%;
  -ms-flex-preferred-size: 55%;
  flex-basis: 55%; }
  @media (max-width: 41.875rem) {
    .header__content__info {
      width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      padding: 0 0.9375rem; } }
  .header__content__info .title {
    font-size: 5.625rem;
    line-height: 6.25rem; }
    @media (max-width: 75rem) {
      .header__content__info .title {
        font-size: 1.875rem;
        line-height: 1.875rem; } }
  .header__content__info .subtitle {
    margin-bottom: 2.1875rem; }
    @media (max-width: 75rem) {
      .header__content__info .subtitle {
        margin-bottom: 1.25rem; } }
    @media (max-width: 35.3125rem) {
      .header__content__info .subtitle {
        margin-bottom: 0; } }
  .header__content__info .adventages {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row; }
    .header__content__info .adventages p {
      font-size: 1.25rem;
      line-height: 1.5rem; }
      @media (max-width: 68.75rem) {
        .header__content__info .adventages p {
          font-size: 1rem; } }
    @media (max-width: 35.3125rem) {
      .header__content__info .adventages {
        display: none; } }
    .header__content__info .adventages--item {
      color: #000;
      text-align: center;
      padding: 0 0.9375rem 0 0; }
      @media (max-width: 63.9375rem) {
        .header__content__info .adventages--item {
          padding: 0 0.9375rem; } }

.header__content__image {
  width: 35%;
  display: inline-block; }

.header__content__description {
  font-size: 1.3125rem;
  line-height: 1.875rem;
  color: #000;
  margin: 1.5625rem 0 2.8125rem 0; }
  @media (max-width: 75rem) {
    .header__content__description {
      margin: 0.9375rem 0 1.5625rem 0; } }
  @media (max-width: 23.75rem) {
    .header__content__description {
      font-size: 1.125rem;
      line-height: 1.3125rem; } }

.l-description {
  background: #23b5b9;
  width: 100%; }
  @media (max-width: 62.5rem) {
    .l-description {
      height: auto; } }
  .l-description .banner {
    height: 50vh;
    background: url("../../images/image10.jpg") left center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1; }
    .l-description .banner:before {
      background-color: rgba(64, 64, 64, 0.4);
      content: '';
      display: block;
      height: 100%;
      position: absolute;
      width: 100%;
      z-index: 1; }
    .l-description .banner h3 {
      text-align: center;
      position: relative;
      z-index: 3;
      top: 50%;
      width: 80%;
      margin: 0 auto;
      line-height: 1.5;
      transform: translateY(-50%); }
      @media (max-width: 62.5rem) {
        .l-description .banner h3 {
          padding: 3.125rem 0.9375rem;
          top: auto;
          transform: translateY(0);
          line-height: 1.2;
          font-size: 1.3125rem; } }
      @media (max-width: 47.9375rem) {
        .l-description .banner h3 {
          width: 100%; } }
      .l-description .banner h3.subtitle {
        color: #fff; }
    @media (max-width: 62.5rem) {
      .l-description .banner {
        height: auto; } }
  .l-description .full-container__half--one,
  .l-description .full-container__half--two {
    height: 50vh;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 62.5rem) {
      .l-description .full-container__half--one,
      .l-description .full-container__half--two {
        padding: 3.125rem 0.9375rem;
        height: auto;
        width: 100%; } }
  .l-description .full-container__half--one {
    background-color: #fff;
    color: #23b5b9; }
  @media (max-width: 62.5rem) {
    .l-description .full-container__half--two {
      display: none; } }

.l-service-lab {
  height: 100vh;
  background: #23b5b9;
  width: 100%;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 62.5rem) {
    .l-service-lab {
      height: auto;
      display: block; } }
  .l-service-lab .full-container__half--one {
    width: 50%;
    height: 100vh;
    position: relative;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 62.5rem) {
      .l-service-lab .full-container__half--one {
        padding: 3.125rem 0rem;
        height: auto;
        width: 100%; } }
    .l-service-lab .full-container__half--one .overlay-wrapper {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-line-pack: center;
      align-content: center;
      -ms-flex-direction: column;
      flex-direction: column; }
      .l-service-lab .full-container__half--one .overlay-wrapper .content {
        text-align: center; }
        .l-service-lab .full-container__half--one .overlay-wrapper .content .list {
          display: -moz-groupbox;
          display: inline-block; }
        .l-service-lab .full-container__half--one .overlay-wrapper .content ul li {
          color: #fff; }
  .l-service-lab .full-container__half--two {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
    height: 100vh;
    position: relative; }
    @media (max-width: 62.5rem) {
      .l-service-lab .full-container__half--two {
        height: auto;
        width: 100%; } }
    .l-service-lab .full-container__half--two .section-one,
    .l-service-lab .full-container__half--two .section-two {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center; }
    .l-service-lab .full-container__half--two .section-one {
      height: 50vh;
      position: relative;
      background-color: #fff;
      color: #23b5b9;
      text-align: center; }
      @media (max-width: 62.5rem) {
        .l-service-lab .full-container__half--two .section-one {
          padding: 3.125rem 0.9375rem;
          height: auto;
          width: 100%; } }
      .l-service-lab .full-container__half--two .section-one a {
        color: #23b5b9;
        text-decoration: none; }
      .l-service-lab .full-container__half--two .section-one p {
        color: #000;
        text-align: center;
        position: relative;
        line-height: 1.5rem;
        z-index: 3; }
    .l-service-lab .full-container__half--two .section-two {
      height: 50vh;
      position: relative;
      color: #fff;
      background: url("../../images/2.jpg") left center no-repeat;
      background-size: cover;
      z-index: 1; }
      @media (max-width: 62.5rem) {
        .l-service-lab .full-container__half--two .section-two {
          padding: 3.125rem 0.9375rem;
          height: auto;
          width: 100%; } }
      .l-service-lab .full-container__half--two .section-two:before {
        background-color: rgba(64, 64, 64, 0.4);
        content: '';
        display: block;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 1; }
      .l-service-lab .full-container__half--two .section-two .wrapper {
        background-color: rgba(79, 196, 199, 0.8);
        position: relative;
        z-index: 1;
        padding: 0.9375rem;
        text-align: center; }
        .l-service-lab .full-container__half--two .section-two .wrapper .phone-wrapper {
          -js-display: flex;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-direction: row;
          flex-direction: row;
          -ms-flex-pack: center;
          justify-content: center; }
          @media (max-width: 63.9375rem) {
            .l-service-lab .full-container__half--two .section-two .wrapper .phone-wrapper {
              -ms-flex-direction: column;
              flex-direction: column; } }
          .l-service-lab .full-container__half--two .section-two .wrapper .phone-wrapper .phone {
            padding-left: 0.9375rem;
            line-height: 1.5; }
            @media (max-width: 63.9375rem) {
              .l-service-lab .full-container__half--two .section-two .wrapper .phone-wrapper .phone {
                padding-left: 0; } }
        .l-service-lab .full-container__half--two .section-two .wrapper .time {
          line-height: 1.5; }

.l-equipment {
  background: #fff;
  width: 100%;
  height: 80vh;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 62.5rem) {
    .l-equipment {
      position: relative;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      height: auto;
      width: 100%;
      min-height: 100vh; } }
  .l-equipment .full-container__half--one,
  .l-equipment .full-container__half--two {
    width: 50%;
    height: 80vh;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 62.5rem) {
      .l-equipment .full-container__half--one,
      .l-equipment .full-container__half--two {
        padding: 3.125rem 0.9375rem;
        height: auto;
        min-height: 100vh;
        width: 100%; } }
  .l-equipment .full-container__half--one {
    background: url("../../images/header-bg.jpg") left center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1; }
    .l-equipment .full-container__half--one:before {
      background-color: rgba(64, 64, 64, 0.4);
      content: '';
      display: block;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      z-index: 1; }
    .l-equipment .full-container__half--one article {
      position: relative;
      z-index: 1;
      background-color: rgba(79, 196, 199, 0.8);
      padding: 0.9375rem; }
      .l-equipment .full-container__half--one article p {
        position: relative;
        line-height: 1.5rem;
        z-index: 3; }
  .l-equipment .full-container__half--two {
    color: #23b5b9;
    text-align: center; }
    .l-equipment .full-container__half--two ul {
      list-style: inherit; }

.home__page .container__link__home {
  color: #f15c58;
  background-color: #fff;
  pointer-events: none;
  border-right: 0.1875rem solid #f15c58; }
  .home__page .container__link__home .icon--home {
    stroke: #f15c58; }

.home__page .wrapper {
  width: 80%; }
  @media (max-width: 47.9375rem) {
    .home__page .wrapper {
      width: 100%; } }

.home__page .footer__container {
  width: 100%;
  margin-left: 0; }

/*-------------------------------------------------
SMACSS: PAGE - SERVICE
-------------------------------------------------*/
.service__page .l-service-choice {
  width: 100%;
  background: #fff;
  position: relative;
  padding-left: 0;
  padding-right: 0; }
  .service__page .l-service-choice .wrapper {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center; }
    .service__page .l-service-choice .wrapper .warranty {
      background: url("../images/image9.jpg") left center no-repeat;
      background-size: cover;
      position: relative;
      z-index: 1; }
      .service__page .l-service-choice .wrapper .warranty:before {
        background-color: rgba(64, 64, 64, 0.4);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 1; }
      .service__page .l-service-choice .wrapper .warranty .warranty-overlay {
        position: relative;
        z-index: 2;
        padding: 10% 0 10% 5%; }
        .service__page .l-service-choice .wrapper .warranty .warranty-overlay svg {
          vertical-align: middle;
          max-width: 1.25rem;
          width: 100%;
          max-height: 1.25rem; }
          .service__page .l-service-choice .wrapper .warranty .warranty-overlay svg path {
            fill: #f15c58; }
        .service__page .l-service-choice .wrapper .warranty .warranty-overlay h2 {
          font-size: 2.375rem;
          line-height: 3rem; }
        .service__page .l-service-choice .wrapper .warranty .warranty-overlay h5 {
          font-size: 1rem;
          line-height: 1.5rem; }
    .service__page .l-service-choice .wrapper .service-offers {
      position: relative;
      max-width: 800px;
      width: 100%;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      padding: 0 0.9375rem; }
      .service__page .l-service-choice .wrapper .service-offers .collapse-card {
        color: #4fc4c7;
        border-bottom: 1px solid #4fc4c7; }
        .service__page .l-service-choice .wrapper .service-offers .collapse-card .collapse-card__heading:after {
          display: none; }
        .service__page .l-service-choice .wrapper .service-offers .collapse-card .collapse-card__heading .collapse-card__title {
          white-space: normal; }
          .service__page .l-service-choice .wrapper .service-offers .collapse-card .collapse-card__heading .collapse-card__title svg {
            vertical-align: middle;
            margin-right: 1rem;
            max-width: 1.25rem;
            width: 100%;
            max-height: 1.25rem; }
            .service__page .l-service-choice .wrapper .service-offers .collapse-card .collapse-card__heading .collapse-card__title svg path {
              fill: #f15c58; }
        .service__page .l-service-choice .wrapper .service-offers .collapse-card .collapse-card__body {
          padding: 1rem 1rem 2rem 1rem; }
      .service__page .l-service-choice .wrapper .service-offers h3 {
        font-size: 16px;
        color: #008B8B;
        margin: 20px; }
      .service__page .l-service-choice .wrapper .service-offers p {
        font-size: 16px;
        color: #000;
        margin: 20px;
        padding-left: 20px; }
    .service__page .l-service-choice .wrapper .download_price .fixed_wrapper {
      position: fixed;
      top: 2rem;
      right: 1rem;
      color: #fff;
      background: #4fc4c7;
      border: 1rem solid #4fc4c7;
      transition: all .5s; }
      .service__page .l-service-choice .wrapper .download_price .fixed_wrapper:hover {
        color: #fff;
        background: #23b5b9;
        border: 1rem solid #23b5b9; }
        .service__page .l-service-choice .wrapper .download_price .fixed_wrapper:hover svg path {
          fill: #fff; }
      .service__page .l-service-choice .wrapper .download_price .fixed_wrapper p {
        white-space: normal;
        text-align: center; }
      .service__page .l-service-choice .wrapper .download_price .fixed_wrapper a {
        text-align: center;
        color: #fff;
        display: block; }
        .service__page .l-service-choice .wrapper .download_price .fixed_wrapper a svg {
          max-width: 3.125rem;
          max-height: 3.125rem;
          width: 100%;
          height: auto; }
          .service__page .l-service-choice .wrapper .download_price .fixed_wrapper a svg path {
            fill: #fff; }

.service__page .container__link__service {
  color: #f15c58;
  background-color: #fff;
  pointer-events: none;
  border-right: 0.1875rem solid #f15c58; }
  .service__page .container__link__service .icon--service {
    stroke: #f15c58; }

/*-------------------------------------------------
SMACSS: PAGE - ABOUT US
-------------------------------------------------*/
.about-us__page .l-about-us {
  background: #fff;
  color: #23b5b9;
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 85vh; }
  .about-us__page .l-about-us .wrapper {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 50rem;
    width: 100%;
    padding: 0 0.9375rem;
    text-align: center; }
    .about-us__page .l-about-us .wrapper p {
      font-size: 1.125rem;
      line-height: 1.5;
      color: #000; }
      @media (max-width: 47.9375rem) {
        .about-us__page .l-about-us .wrapper p {
          font-size: 1rem; } }

.about-us__page .container__link__about-us {
  color: #f15c58;
  background-color: #fff;
  pointer-events: none;
  border-right: 0.1875rem solid #f15c58; }
  .about-us__page .container__link__about-us .icon--about-us {
    stroke: #f15c58; }

/*-------------------------------------------------
SMACSS: PAGE - CONTACTS
-------------------------------------------------*/
.l-contacts {
  background: #fff;
  color: #23b5b9;
  position: relative; }
  .l-contacts .r-tabs {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
    .l-contacts .r-tabs .r-tabs-accordion-title {
      display: none; }
    .l-contacts .r-tabs .r-tabs-nav {
      -js-display: flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
      z-index: 99;
      background-color: #4fc4c7;
      width: 100%; }
      .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab {
        text-align: center;
        width: calc(100%/9);
        -ms-flex-preferred-size: calc(100%/9);
        flex-basis: calc(100%/9);
        transition: all .5s; }
        @media (max-width: 75rem) {
          .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab {
            width: calc(100%/3);
            -ms-flex-preferred-size: calc(100%/3);
            flex-basis: calc(100%/3); } }
        @media (max-width: 37.5rem) {
          .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab {
            width: 100%;
            -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
        .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab:hover {
          background-color: #23b5b9; }
        .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab a {
          height: 6.25rem;
          color: #fff;
          text-decoration: none;
          line-height: 1.5;
          -js-display: flex;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: center;
          justify-content: center;
          -ms-flex-align: center;
          align-items: center; }
        .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active {
          background-color: #fff;
          border-bottom: 0.125rem solid #f15c58; }
          .l-contacts .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active a {
            color: #23b5b9; }
    .l-contacts .r-tabs .r-tabs-panel {
      padding: 0;
      display: none; }
  .l-contacts .phone-wrapper {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 15.625rem;
    right: 3.125rem;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 2.5rem;
    color: #fff; }
    @media (max-width: 75rem) {
      .l-contacts .phone-wrapper {
        top: 70%; } }
    @media (max-width: 62.5rem) {
      .l-contacts .phone-wrapper {
        bottom: 0;
        right: 0;
        width: 100%;
        top: auto;
        transform: translateY(0);
        background-color: #f15c58; }
        .l-contacts .phone-wrapper ul li {
          color: #fff; } }
  .l-contacts .map_canvas {
    width: 100%;
    height: calc(85vh - 105px);
    background-color: #fff !important; }
    @media (max-width: 37.5rem) {
      .l-contacts .map_canvas {
        height: 120vh; } }

.contacts__page .container__link__contacts {
  color: #f15c58;
  background-color: #fff;
  pointer-events: none;
  border-right: 0.1875rem solid #f15c58; }
  .contacts__page .container__link__contacts .icon--contacts {
    stroke: #f15c58; }

/*-------------------------------------------------
SMACSS: PAGE - SERVICE
-------------------------------------------------*/
.vacancies__page .l-vacancies-choice {
  width: 100%;
  height: 85vh;
  background: #fff;
  position: relative;
  padding-left: 0;
  padding-right: 0; }
  .vacancies__page .l-vacancies-choice .wrapper {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center; }
    .vacancies__page .l-vacancies-choice .wrapper .warranty {
      background: url("../images/image9.jpg") left center no-repeat;
      background-size: cover;
      position: relative;
      z-index: 1; }
      .vacancies__page .l-vacancies-choice .wrapper .warranty:before {
        background-color: rgba(64, 64, 64, 0.4);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 1; }
      .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay {
        position: relative;
        z-index: 2;
        padding: 10% 0 10% 5%; }
        .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay svg {
          vertical-align: middle;
          max-width: 1.25rem;
          width: 100%;
          max-height: 1.25rem; }
          .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay svg path {
            fill: #f15c58; }
        .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay h2 {
          font-size: 2.375rem;
          line-height: 3rem; }
        .vacancies__page .l-vacancies-choice .wrapper .warranty .warranty-overlay h5 {
          font-size: 1rem;
          line-height: 1.5rem; }
    .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers {
      position: relative;
      max-width: 800px;
      width: 100%;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      padding: 0 0.9375rem; }
      .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card {
        color: #4fc4c7;
        border-bottom: 1px solid #4fc4c7; }
        .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card .collapse-card__heading:after {
          display: none; }
        .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card .collapse-card__heading .collapse-card__title {
          white-space: normal; }
          .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card .collapse-card__heading .collapse-card__title svg {
            vertical-align: middle;
            margin-right: 1rem;
            max-width: 1.25rem;
            width: 100%;
            max-height: 1.25rem; }
            .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card .collapse-card__heading .collapse-card__title svg path {
              fill: #f15c58; }
        .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers .collapse-card .collapse-card__body {
          padding: 1rem 1rem 2rem 1rem; }
      .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers h3 {
        font-size: 16px;
        color: #008B8B;
        margin: 20px; }
      .vacancies__page .l-vacancies-choice .wrapper .vacancies-offers p {
        font-size: 16px;
        color: #000;
        margin: 20px;
        padding-left: 20px; }
    .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper {
      position: fixed;
      top: 2rem;
      right: 1rem;
      color: #fff;
      background: #4fc4c7;
      border: 1rem solid #4fc4c7;
      transition: all .5s; }
      .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper:hover {
        color: #fff;
        background: #23b5b9;
        border: 1rem solid #23b5b9; }
        .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper:hover svg path {
          fill: #fff; }
      .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper p {
        white-space: normal;
        text-align: center; }
      .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper a {
        text-align: center;
        color: #fff;
        display: block; }
        .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper a svg {
          max-width: 3.125rem;
          max-height: 3.125rem;
          width: 100%;
          height: auto; }
          .vacancies__page .l-vacancies-choice .wrapper .download_price .fixed_wrapper a svg path {
            fill: #fff; }

.vacancies__page .container__link__vacancies {
  color: #f15c58;
  background-color: #fff;
  pointer-events: none;
  border-right: 0.1875rem solid #f15c58; }
  .vacancies__page .container__link__vacancies .icon--vacancies {
    stroke: #f15c58; }
