@charset "UTF-8";
/*! 
==============================================================

Project  	: evodnik
Author  	: Vitalij Petras
Author URI	: www.html-factory.cz
Created 	: 28.08.2017

----------------------------------------
---------------- POZOR! ----------------
----------------------------------------

Stylopis byl vygenerovan pomoci CSS preprocesoru.
Nikdy needitujte primo .css soubor!
Viz readme.txt

============================================================== 
*/
@import url("https://fonts.googleapis.com/css?family=Overpass:300,400,700&subset=latin-ext");
/*
------------------------------------
| 300 	| Light						|
------------------------------------
| 400 	| Regular					|
------------------------------------
------------------------------------
| 700 	| Bold						|
------------------------------------
*/
/*-----------------------------------------------------------------------------------*/
/*  CSS reset
/*-----------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, time {
  display: block;
}

body {
  line-height: 1;
}

html, body {
  height: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a, button {
  outline: none;
}

a[href] img {
  cursor: pointer;
}

/* Corrects inline-block display not defined in IE6/7/8/9 & FF3 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* Prevents modern browsers from displaying 'audio' without controls */
audio:not([controls]) {
  display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}

/*
 *  Prevents iOS text size adjust after orientation change, without disabling user zoom
 *  www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Improves readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*
 *    Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/* Corrects overflow displayed oddly in IE9 */
svg:not(:root) {
  overflow: hidden;
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3/4, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
  padding: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Corrects inner spacing displayed oddly in IE7 without effecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}

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

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/* checkboxy v defaultni verzi se nezobrazuji v chromu a safari  - nasledujici fix to opravi */
input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof) (zakomentováno kvůli přepisování nastavení BEM)
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
}

/* Removes inner padding and search cancel button in S5, Chrome on OS X */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
  resize: vertical;
  /* TK */
}

hr {
  height: 1px;
  border: 0;
}

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

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

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

/*-----------------------------------------------------------------------------------*/
/*  TYPOGRAPHY
/*-----------------------------------------------------------------------------------*/
body {
  color: #00377F;
  line-height: 1.2777777778;
  font-family: "Overpass", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1, .list-references__title, .box-intro__title,
h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title,
h3, .h3, .list-questions__title, .list-history__title, .list-items--secondary .list-items__title, .box-text--secondary .box-text__title,
h4, .h4,
h5, .h5,
h6, .h6 {
  text-rendering: optimizelegibility;
  font-weight: 700;
}

.h1, .list-references__title, .box-intro__title, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title, .h3, .list-questions__title, .list-history__title, .list-items--secondary .list-items__title, .box-text--secondary .box-text__title, .h4, .h5, .h6 {
  display: block;
}

h1, .h1, .list-references__title, .box-intro__title {
  font-size: 48px;
  line-height: 61px;
}
@media screen and (max-width: 63.9375em) {
  h1, .h1, .list-references__title, .box-intro__title {
    font-size: 44px;
    line-height: 52px;
  }
}
@media screen and (max-width: 59.9375em) {
  h1, .h1, .list-references__title, .box-intro__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  h1, .h1, .list-references__title, .box-intro__title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 39.9375em) {
  h1, .h1, .list-references__title, .box-intro__title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media screen and (max-width: 39.9375em) {
  h1, .h1, .list-references__title, .box-intro__title {
    font-size: 24px;
    line-height: 34px;
  }
}

h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
  font-size: 36px;
  line-height: 37px;
}
@media screen and (max-width: 85.3125em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 34px;
    line-height: 35px;
  }
}
@media screen and (max-width: 79.9375em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 32px;
    line-height: 33px;
  }
}
@media screen and (max-width: 63.9375em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 30px;
    line-height: 31px;
  }
}
@media screen and (max-width: 59.9375em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 26px;
    line-height: 27px;
  }
}
@media screen and (max-width: 47.9375em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 24px;
    line-height: 25px;
  }
}
@media screen and (max-width: 29.9375em) {
  h2, .h2, .in-title, .wrap-section__title, .list-items__title, .box-text__title {
    font-size: 22px;
    line-height: 23px;
  }
}

h3, .h3, .list-questions__title, .list-history__title, .list-items--secondary .list-items__title, .box-text--secondary .box-text__title {
  font-size: 24px;
  line-height: 27px;
}
@media screen and (max-width: 29.9375em) {
  h3, .h3, .list-questions__title, .list-history__title, .list-items--secondary .list-items__title, .box-text--secondary .box-text__title {
    font-size: 21px;
    line-height: 24px;
  }
}

h4, .h4 {
  font-size: 21px;
  line-height: 24px;
}

strong, b {
  font-weight: 700;
}

small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #767676;
}

.box-shadow, .list-questions__in, .box-faq__list__item {
  box-shadow: 0 7px 27px 0 rgba(0, 55, 127, 0.3);
}

/*-----------------------------------------------------------------------------------*/
/*  LINKS
/*-----------------------------------------------------------------------------------*/
a {
  text-decoration: underline;
  color: #84BD23;
  cursor: pointer;
  outline: none;
  transition-duration: 200ms;
  transition-property: color;
}
a:hover {
  text-decoration: none;
  color: #84BD23;
}

.no-link-styles {
  color: inherit;
  text-decoration: none;
}

/*************************************************************************************
*  Grid system 
**************************************************************************************/
.row {
  clear: both;
  margin: 0 -1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.row .col {
  float: left;
  padding: 0 1px;
}
.row .col--1 {
  width: 8.3333333333%;
}
.row .col--2 {
  width: 16.6666666667%;
}
.row .col--3 {
  width: 25%;
}
.row .col--4 {
  width: 33.3333333333%;
}
.row .col--5 {
  width: 41.6666666667%;
}
.row .col--6 {
  width: 50%;
}
.row .col--7 {
  width: 58.3333333333%;
}
.row .col--8 {
  width: 66.6666666667%;
}
.row .col--9 {
  width: 75%;
}
.row .col--10 {
  width: 83.3333333333%;
}
.row .col--11 {
  width: 91.6666666667%;
}
.row .col--12 {
  width: 100%;
}
@media screen and (max-width: 39.9375em) {
  .row .col--m-1 {
    width: 8.3333333333%;
  }
  .row .col--m-2 {
    width: 16.6666666667%;
  }
  .row .col--m-3 {
    width: 25%;
  }
  .row .col--m-4 {
    width: 33.3333333333%;
  }
  .row .col--m-5 {
    width: 41.6666666667%;
  }
  .row .col--m-6 {
    width: 50%;
  }
  .row .col--m-7 {
    width: 58.3333333333%;
  }
  .row .col--m-8 {
    width: 66.6666666667%;
  }
  .row .col--m-9 {
    width: 75%;
  }
  .row .col--m-10 {
    width: 83.3333333333%;
  }
  .row .col--m-11 {
    width: 91.6666666667%;
  }
  .row .col--m-12 {
    width: 100%;
  }
}
@media screen and (max-width: 29.9375em) {
  .row .col--s-1 {
    width: 8.3333333333%;
  }
  .row .col--s-2 {
    width: 16.6666666667%;
  }
  .row .col--s-3 {
    width: 25%;
  }
  .row .col--s-4 {
    width: 33.3333333333%;
  }
  .row .col--s-5 {
    width: 41.6666666667%;
  }
  .row .col--s-6 {
    width: 50%;
  }
  .row .col--s-7 {
    width: 58.3333333333%;
  }
  .row .col--s-8 {
    width: 66.6666666667%;
  }
  .row .col--s-9 {
    width: 75%;
  }
  .row .col--s-10 {
    width: 83.3333333333%;
  }
  .row .col--s-11 {
    width: 91.6666666667%;
  }
  .row .col--s-12 {
    width: 100%;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  KEYFRAMES ANIMACE
/*-----------------------------------------------------------------------------------*/
.animated {
  animation-duration: 0.75s;
  animation-fill-mode: both;
}
.animated:nth-child(2) {
  animation-delay: 0.25s;
}
.animated:nth-child(3) {
  animation-delay: 0.5s;
}
.animated:nth-child(4) {
  animation-delay: 0.75s;
}
.animated:nth-child(5) {
  animation-delay: 1s;
}
.animated:nth-child(6) {
  animation-delay: 1.25s;
}
.animated:nth-child(7) {
  animation-delay: 1.5s;
}
.animated:nth-child(8) {
  animation-delay: 1.75s;
}
.animated:nth-child(9) {
  animation-delay: 2s;
}
.animated:nth-child(10) {
  animation-delay: 2.25s;
}
.animated:nth-child(11) {
  animation-delay: 2.5s;
}
.animated:nth-child(12) {
  animation-delay: 2.75s;
}
@media screen and (max-width: 39.9375em) {
  .animated:nth-child(2), .animated:nth-child(3), .animated:nth-child(4), .animated:nth-child(5), .animated:nth-child(6), .animated:nth-child(7), .animated:nth-child(8), .animated:nth-child(9), .animated:nth-child(10), .animated:nth-child(11), .animated:nth-child(12), .animated:nth-child(13) {
    animation-delay: 0s;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes windowIn {
  0% {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes windowOut {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.4, 0.4, 0.4);
    transform: scale3d(0.4, 0.4, 0.4);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInTop {
  animation-name: fadeInTop;
}

.no-js .lazyload {
  display: none;
}

.js .js-animate {
  visibility: hidden;
}
.js .js-animate.animated {
  visibility: visible;
}

.window-popup .js, .window-popup .js-animate {
  visibility: visible;
}

img[data-src], img[data-lazy] {
  width: 100%;
  height: 100%;
}

.imgToBg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-indent: -99999px;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  -ms-background-size: contain;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.box-faq__list__title:after, .icon__arrow-faq {
  width: 33px;
  height: 11px;
}

.icon__close {
  width: 16px;
  height: 16px;
}

.icon__favicon {
  width: 100px;
  height: 82px;
}

.icon__fb {
  width: 39px;
  height: 39px;
}

.icon__in {
  width: 39px;
  height: 39px;
}

.box-intro__menu__mute:after, .icon__muted {
  width: 18px;
  height: 18px;
}

.list-references .slick-arrow.slick-next:before, .icon__next {
  width: 11px;
  height: 33px;
}

.icon__play {
  width: 15px;
  height: 19px;
}

.list-references .slick-arrow.slick-prev:before, .icon__prev {
  width: 11px;
  height: 33px;
}

.icon__scroll {
  width: 46px;
  height: 46px;
}

.icon__stop {
  width: 47px;
  height: 46px;
}

.icon__touch {
  width: 512px;
  height: 512px;
}

.box-intro__menu__mute:before, .icon__volume {
  width: 12px;
  height: 18px;
}

.icon__yt {
  width: 39px;
  height: 38px;
}

.list-gallery__in:before, .icon__zoom {
  width: 26px;
  height: 26px;
}

/*-----------------------------------------------------------------------------------*/
/*  BUTTONS
/*-----------------------------------------------------------------------------------*/
.button {
  width: auto;
  min-width: 214px;
  padding: 0 28px;
  height: 46px;
  line-height: 42px;
  vertical-align: middle;
  display: inline-block;
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
  text-align: center;
  border: 2px solid #00377F;
  color: #00377F;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border-radius: 100px;
  transition-duration: 200ms;
  transition-property: background-color, color, border-color;
}
.button:hover {
  color: #00377F;
  background: #F5F9FF;
}
.button--loading {
  position: relative;
  color: transparent !important;
  cursor: wait;
  pointer-events: none;
}
.button--loading:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 5px solid #000;
  border-color: #ffffff transparent #ffffff transparent;
  animation: loading 1.3s linear infinite;
}
.button--secondary, .wrap-section--bg .button, .wrap-section--secondary .button {
  background: #F5F9FF;
}
.button--secondary:hover, .wrap-section--bg .button:hover, .wrap-section--secondary .button:hover {
  background: #c2daff;
}
.button--primary {
  background: #00377F;
  color: #fff;
}
.button--primary:hover {
  color: #00377F;
  border-color: #00377F;
  background: #fff;
}

/*
	varianty bez nutnosti psát ke každému inputu v html třídu
	--- jinak je možno přidat třídy jako .input-field pro specifické inputy a BEM bude fungovat skvěle
*/
.input {
  display: block;
  height: 50px;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 2px;
  font-size: 18px;
  font-family: inherit;
  font-weight: 300;
  line-height: 48px;
  color: #00377F;
  background: #F5F9FF;
  border: 1px solid transparent;
  transition-duration: 200ms;
  transition-property: background-color, color, border-color;
}
.input:focus {
  background: #dceaff;
  border-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 59.9375em) {
  .input {
    padding: 0 10px;
  }
}

textarea {
  display: block;
  height: 185px;
  min-height: 50px;
  padding: 5px 20px;
  width: 100%;
  margin-bottom: 2px;
  font-size: 18px;
  font-family: inherit;
  font-weight: 300;
  line-height: 33.3333333333px;
  color: #00377F;
  background: #F5F9FF;
  border: 1px solid transparent;
  transition-duration: 200ms;
  transition-property: background-color, color, border-color;
}
textarea:focus {
  background: #dceaff;
  border-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 59.9375em) {
  textarea {
    padding: 0 10px;
  }
}

select {
  display: block;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 2px;
  font-size: 18px;
  font-family: inherit;
  font-weight: 300;
  line-height: 48px;
  color: #00377F;
  background: #F5F9FF;
  border: 1px solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: "";
  text-indent: 0.01px;
}
select::-ms-expand {
  display: none;
}
@media screen and (max-width: 59.9375em) {
  select {
    padding: 0 10px;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  FORMS BASIC SETTINGS
/*-----------------------------------------------------------------------------------*/
input, select, textarea {
  vertical-align: middle;
  box-shadow: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
}
input:focus:-moz-placeholder, select:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder, select:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}
input:focus::-webkit-input-placeholder, select:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder, select:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}
input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/*************************************************************************************
*  STYLED SELECT
**************************************************************************************/
.select {
  position: relative;
  margin-bottom: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select ul {
  cursor: pointer;
  list-style: none;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  background: #F5F9FF;
}
.select ul:before {
  display: block;
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  transition-duration: 200ms;
  transition-property: transform;
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #00377F transparent transparent transparent;
}
.select li {
  padding: 14px 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #00377F;
}
.select li:first-child {
  padding-right: 35px;
  padding-top: 16px;
  line-height: 20px;
  /*white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  line-height: $input-height - ($input-border-width*2);*/
}
.select.open {
  height: 50px;
  z-index: 300 !important;
}
.select.open ul {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  max-height: 250px;
  height: auto;
  overflow: auto;
  max-height: 210px;
}
.select.open ul:before {
  transform: rotate(180deg);
}
.select.open .selected {
  background: #dceaff;
}
.select.open .selected:hover {
  color: #00377F;
}
.select.open li {
  border-top: 1px solid transparent;
  background: #fff;
  transition-duration: 200ms;
  transition-property: background, color;
}
.select.open li:hover {
  color: #84BD23;
}
.select.open li:first-child {
  padding: 14px 20px;
  white-space: normal;
  text-overflow: normal;
  border: 0;
  line-height: 23px;
}
@media screen and (max-width: 59.9375em) {
  .select li {
    padding: 14px 10px;
  }
  .select.open li:first-child {
    padding: 13px 10px 14px;
  }
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

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

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.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;
}

.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr;
}

.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #000;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #767676;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}

.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slider-wrap, .fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide--image {
  overflow: hidden;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 46px auto;
  padding: 0;
  border: 0;
  width: 100%;
  height: calc(100% - 92px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-image, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a, .fancybox-caption button {
  pointer-events: all;
}

.fancybox-caption a {
  color: #000;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 46px;
  height: 46px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #000;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
  border: 1px solid #767676;
  border-top: 0;
  margin-right: -1px;
}
@media all and (max-width: 767px) {
  .fancybox-button--thumbs, .fancybox-button--fullscreen {
    display: none !important;
  }
}
@media all and (max-width: 479px) {
  .fancybox-button--play {
    display: none !important;
  }
}

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body, .fancybox-button {
  background: white;
  transition-duration: 300ms;
  transition-property: background;
}

.fancybox-button:hover {
  background: #f2f2f2;
}

.fancybox-button::before, .fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #000;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button--disabled::before, .fancybox-button--disabled::after {
  opacity: 0.5;
}

.fancybox-button--left::after {
  left: 20px;
  top: 17px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  top: 17px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close {
  float: right;
}

.fancybox-button--close::before, .fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 767px) {
  .fancybox-controls {
    text-align: left;
  }

  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}

.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}

/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px;
}

.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap, .fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 767px) {
  .fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap, .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}
body {
  background-color: #fff;
}
body.overflow, body.test-overflow {
  height: 100%;
  overflow: hidden;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 146px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.2777777778;
}
.layout__center {
  margin: 0 auto;
  position: relative;
  width: 960px;
}
.layout__center:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 62.4375em) {
  .layout__center {
    width: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .layout__center {
    padding: 0 10px;
  }
}
.layout__content {
  flex-grow: 100;
}
.layout__footer {
  margin-top: auto;
}
@media screen and (max-width: 79.9375em) {
  .layout {
    padding-top: 100px;
  }
}
@media screen and (max-width: 29.9375em) {
  .layout {
    padding-top: 80px;
    font-size: 17px;
  }
}
@media screen and (max-width: 22.4375em) {
  .layout {
    font-size: 16px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  padding: 5px 35px;
  color: #fff;
  transition-duration: 200ms;
  transition-property: box-shadow;
  background: #00377F;
}
.header--homepage {
  background: transparent;
  transition-duration: 300ms;
  transition-property: background;
}
.header__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  transition-duration: 200ms;
  transition-property: height;
}
.fixed .header__in {
  height: 60px;
}
.header__logo {
  display: block;
  position: relative;
  width: 140px;
  height: 38px;
}
.header__logo img {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  max-width: 100%;
  right: auto;
  max-height: 100%;
}
.header__login {
  display: none;
  float: right;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid #fff;
}
.header__login svg, .header__login i {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  height: 16px;
}
.header.fixed {
  box-shadow: 0px 1px 10px 2px rgba(147, 146, 147, 0.4);
  background: #00377F;
}
.header--opened:before {
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 89.9375em) {
  .header__in {
    height: 60px;
  }
}
@media screen and (min-width: 60em) {
  .header__nav {
    display: block !important;
  }
}
@media screen and (max-width: 59.9375em) {
  .header {
    padding: 5px 20px;
  }
  .header__in {
    padding-right: 118px;
  }
  .header__nav {
    display: none;
    overflow: auto;
    z-index: 500;
    height: 100vh;
    width: 400px;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 62px 20px 10px;
    color: #fff;
    background: #00377F;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition-duration: 300ms;
    transition-property: transform;
    transform: translateX(100%);
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .header__login {
    display: block;
  }
}
@media screen and (max-width: 47.9375em) {
  .header {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .header__in {
    padding-right: 110px;
  }
  .header__nav {
    width: 320px;
  }
}
@media screen and (max-width: 29.9375em) {
  .header__in {
    padding-right: 100px;
    height: 54px;
  }
  .fixed .header__in {
    height: 54px;
  }
  .header__nav {
    width: 260px;
  }
  .header__logo {
    width: 100px;
    height: 36px;
  }
  .header--homepage {
    background: #00377F;
  }
}
@media screen and (max-width: 22.4375em) {
  .header__in {
    padding-right: 94px;
  }
}

.menu {
  list-style: none;
  margin: 0 -15px;
}
.menu:after {
  content: "";
  display: table;
  clear: both;
}
.menu__item {
  float: left;
}
.menu__in {
  position: relative;
  display: block;
  line-height: 40px;
  padding: 0 15px;
  color: #fff;
  text-decoration: none;
}
.menu__in:after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  bottom: 2px;
  background: #fff;
  border-radius: 100px;
  transition-duration: 200ms;
  transition-property: width;
}
.menu__in:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  height: 60px;
}
.menu__in:hover {
  color: #fff;
}
.menu__in:hover:after {
  width: calc(100% - 30px);
}
.menu .current {
  color: #84BD23;
  pointer-events: none;
}
.menu .current:after {
  width: calc(100% - 30px);
  background: #84BD23;
}
@media screen and (max-width: 63.9375em) {
  .menu__in {
    padding: 0 13px;
  }
}
@media screen and (max-width: 59.9375em) {
  .menu {
    float: none;
    margin: 0 -20px;
    padding-left: 0;
  }
  .menu__item {
    float: none;
    font-size: 24px;
  }
  .menu__item--login {
    display: none;
  }
  .menu__in {
    padding: 20px;
    line-height: 28px;
  }
  .menu__in:after {
    width: calc(100% - 40px);
    height: 1px;
    opacity: 0.6;
  }
  .menu__in:hover:after {
    width: calc(100% - 40px);
  }
  .menu .current:after {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 39.9375em) {
  .menu__in {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 29.9375em) {
  .menu__in {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 22px;
  }
}

.toggle-nav {
  display: none;
  z-index: 2;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 20px;
  top: 0;
  outline: none;
  cursor: pointer;
  z-index: 505;
  background: #fff;
  border: 1px solid #fff;
  border-left: 0;
  border-radius: 0 2px 2px 0;
}
.toggle-nav__span {
  display: block;
  position: absolute;
  height: 4px;
  left: 4px;
  right: 4px;
  border-radius: 2px;
  background: #00377F;
  transition-duration: 300ms;
  transition-property: transform, top, bottom, margin, opacity;
}
.toggle-nav__span--top {
  top: 8px;
}
.toggle-nav__span--middle {
  top: 50%;
  margin-top: -2px;
  transition-duration: 300ms;
  transition-property: opacity;
}
.toggle-nav__span--bottom {
  bottom: 8px;
}
.toggle-nav__text {
  position: absolute;
  right: 100%;
  top: -1px;
  width: 64px;
  padding: 0 10px 0 8px;
  height: 38px;
  line-height: 37px;
  font-weight: 700;
  font-size: 20px;
  color: #00377F;
  border: 1px solid #fff;
  border-right: 0;
  background: #fff;
  border-radius: 2px 0 0 2px;
}
.toggle-nav.active .toggle-nav__span--top {
  top: 50%;
  transform: rotate(45deg);
  margin-top: -2px;
}
.toggle-nav.active .toggle-nav__span--middle {
  opacity: 0;
  transition-duration: 300ms;
  transition-property: opacity;
}
.toggle-nav.active .toggle-nav__span--bottom {
  bottom: 50%;
  transform: rotate(-45deg);
  margin-bottom: -2px;
}
@media screen and (max-width: 59.9375em) {
  .toggle-nav {
    display: block;
  }
}
@media screen and (max-width: 47.9375em) {
  .toggle-nav {
    right: 10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .toggle-nav__text {
    width: 58px;
    padding: 0 8px;
    font-size: 17px;
  }
}
@media screen and (max-width: 29.9375em) {
  .toggle-nav {
    height: 36px;
  }
  .toggle-nav__text {
    width: 50px;
    padding: 0 5px;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
  }
}
@media screen and (max-width: 22.4375em) {
  .toggle-nav__text {
    width: 44px;
    font-size: 14px;
  }
}

.footer {
  padding: 68px 0;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  background: #00377F;
}
.footer__title {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer__logo {
  display: block;
  margin: 15px 0;
  max-width: 100%;
  max-height: 80px;
}
.footer__list {
  list-style: none;
  margin-left: -15px;
}
.footer__list:after {
  content: "";
  display: table;
  clear: both;
}
.footer__list__item {
  float: left;
  padding-left: 15px;
  width: 20%;
}
.footer__list__item:first-child {
  width: 40%;
}
.footer__list__item:last-child {
  padding: 0;
}
@media screen and (max-width: 160em) and (min-width: 60em) {
  .footer__list {
    display: flex;
    justify-content: space-between;
  }
  .footer__list__item {
    float: none;
  }
  .footer__list__item:first-child {
    order: 1;
  }
  .footer__list__item:nth-child(2) {
    order: 3;
  }
  .footer__list__item:nth-child(3) {
    order: 4;
  }
  .footer__list__item:nth-child(4) {
    order: 5;
  }
  .footer__list__item:last-child {
    order: 2;
  }
}
.footer__contact {
  list-style: none;
  margin-left: -10px;
}
.footer__contact li {
  float: left;
  width: 50%;
  padding-left: 10px;
}
.footer a {
  display: table;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.footer a:before {
  display: block;
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  margin: auto;
  bottom: -10px;
  top: -10px;
  top: -3px;
  bottom: -3px;
}
.footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 59.9375em) {
  .footer {
    padding: 50px 0 40px;
    font-size: 16px;
    line-height: 28px;
  }
  .footer__list__item {
    width: 25%;
  }
  .footer__list__item:nth-child(2) {
    padding-left: 25px;
  }
  .footer__list__item--social {
    display: block;
    width: 25%;
    margin-top: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
  }
  .footer__list__item--social h2 {
    display: none;
  }
  .footer__list__item:first-child {
    width: 50%;
  }
  .footer__logo {
    margin-top: -5px;
    margin-left: auto;
  }
  .footer__contact li {
    width: 54%;
  }
  .footer__contact li:first-child {
    width: 46%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer {
    padding: 40px 0 30px;
  }
  .footer__list {
    margin-left: -10px;
  }
  .footer__list__item {
    width: 30%;
    padding-left: 10px;
  }
  .footer__list__item:first-child {
    width: 40%;
  }
  .footer__list__item--social {
    right: 10px;
  }
}
@media screen and (max-width: 47.9375em) and (min-width: 30em) {
  .footer__contact {
    margin: 0;
  }
  .footer__contact li {
    float: none;
    width: 100%;
    padding: 0;
  }
  .footer__contact li:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) {
  .footer__logo {
    margin-top: 5px;
  }
  .footer__title {
    margin-bottom: 15px;
  }
  .footer__list__item:nth-child(2) {
    padding-left: 15px;
  }
}
@media screen and (max-width: 29.9375em) {
  .footer {
    padding: 25px 0 20px;
  }
  .footer__logo {
    margin-top: -5px;
  }
  .footer__contact {
    display: flex;
    align-items: center;
  }
  .footer__contact:after {
    content: "";
    display: table;
    clear: both;
  }
  .footer__contact li a {
    float: right;
    display: flex;
    overflow-y: hidden;
    max-width: 100%;
    letter-spacing: -0.015em;
  }
  .footer__contact li a:before {
    left: 0;
    right: 0;
  }
  .footer__list {
    margin-top: -30px;
  }
  .footer__list__item {
    width: 50%;
    padding-top: 30px;
  }
  .footer__list__item:first-child {
    width: 100%;
  }
  .footer__list__item:first-child:after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.15);
  }
}

.social {
  list-style: none;
  font-size: 0;
  margin-left: -10px;
  margin-top: -10px;
}
.social li {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  padding-top: 10px;
}
.social a {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
.social a:before {
  display: block;
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  margin: auto;
  bottom: -10px;
  top: -10px;
  left: -5px;
  right: -5px;
}
.social a i {
  width: 40px;
  height: 40px;
  transform: translateY(0);
  transition-duration: 200ms;
  transition-property: transform;
}
.social a:hover i {
  transform: translateY(-5px);
}
@media screen and (max-width: 59.9375em) {
  .social a:hover i {
    transform: translateY(0);
  }
}

.box-contact:after {
  content: "";
  display: table;
  clear: both;
}
.box-contact__content {
  float: left;
  width: 30%;
  list-style: none;
}
.box-contact__content li {
  margin-bottom: 24px;
}
.box-contact__content li span {
  display: block;
}
.box-contact__content li p {
  margin: 0;
}
.box-contact__content li.gps strong {
  display: block;
  font-weight: 400;
}
.box-contact p {
  margin-bottom: 24px;
}
.box-contact__map {
  float: right;
  position: relative;
  width: 68.5%;
  height: 276px;
  z-index: 2;
  margin-bottom: 35px;
  background: #d2d2d2;
}
.box-contact__map iframe {
  height: 100%;
}
@media screen and (max-width: 59.9375em) {
  .box-contact__content {
    width: 32%;
  }
  .box-contact__map {
    width: 65%;
  }
}
@media screen and (max-width: 47.9375em) {
  .box-contact__content, .box-contact__map {
    width: 100%;
    float: none;
  }
  .box-contact__content {
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .box-contact__content:after {
    content: "";
    display: table;
    clear: both;
  }
  .box-contact__content li {
    padding-left: 10px;
  }
}
@media screen and (max-width: 47.9375em) and (min-width: 40em) {
  .box-contact {
    margin-bottom: 100px;
  }
  .box-contact__content li.gps {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    top: 100%;
    text-align: center;
    color: #767676;
  }
  .box-contact__content li.gps strong {
    display: inline-block;
    font-weight: 700;
  }
}
@media screen and (max-width: 39.9375em) {
  .box-contact__content li {
    font-size: 17px;
    width: 50%;
  }
}
@media screen and (max-width: 39.9375em) {
  .box-contact__content li {
    font-size: 16px;
    width: auto;
  }
}
@media screen and (max-width: 29.9375em) {
  .box-contact {
    margin-bottom: 65px;
  }
  .box-contact__content li.gps {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    top: 100%;
    text-align: center;
    color: #767676;
  }
  .box-contact__content li.gps strong {
    display: inline-block;
    font-weight: 700;
  }
  .box-contact__content li.ic-dic {
    width: 100%;
  }
}
@media screen and (max-width: 29.9375em) and (min-width: 22.5em) {
  .box-contact__content li.ic-dic span {
    display: inline-block;
    margin-left: 36px;
    padding-left: 36px;
    border-left: 1px dashed #ccc;
  }
  .box-contact__content li.ic-dic span:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}
@media screen and (max-width: 22.4375em) {
  .box-contact {
    margin-bottom: 100px;
  }
  .box-contact__content li {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .box-contact__content li span {
    display: inline-block;
    margin-left: 10px;
  }
  .box-contact__content li.gps strong {
    display: block;
  }
}

.box-desc {
  max-width: 800px;
  margin: 0 auto 35px;
}
.box-desc h1, .box-desc h2, .box-desc h3, .box-desc h4, .box-desc h5 {
  margin-top: 38px;
  margin-bottom: 10px;
}
.box-desc h1.line:after, .box-desc h2.line:after, .box-desc h3.line:after, .box-desc h4.line:after, .box-desc h5.line:after {
  margin-bottom: 20px;
}
.box-desc h1 {
  margin: 0 0 20px;
}
.box-desc b {
  color: #84BD23;
}
.box-desc p {
  margin-bottom: 20px;
}
.box-desc figure {
  margin: 30px auto;
}
.box-desc img {
  display: block;
  max-width: 100%;
  margin: 15px 0;
}
.box-desc hr {
  position: relative;
  margin: 35px 0;
}
.box-desc hr:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  top: 100%;
  height: 1px;
  left: 0;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(237, 237, 237, 0.8);
}
.box-desc .button {
  margin: 15px 0 25px;
}
.box-desc .align-right {
  float: right;
  margin: 5px 0 5px 20px;
}
.box-desc .align-left {
  float: left;
  margin: 5px 20px 5px 0;
}
.box-desc ul {
  list-style: none;
  margin: 15px 0;
}
.box-desc ul li {
  position: relative;
  padding-left: 15px;
  margin: 8px 0;
}
.box-desc ul li:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #00377F;
  border-radius: 2px;
}
.box-desc ul li li {
  margin: 6px 0;
}
.box-desc ol {
  margin: 15px 0;
  padding-left: 25px;
}
.box-desc ol li {
  margin: 8px 0;
}
.box-desc ol li ol {
  margin-bottom: 0;
}
@media screen and (max-width: 62.4375em) {
  .box-desc hr:after {
    min-width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .box-desc .align-right, .box-desc .align-left {
    float: none;
    margin: 15px 0;
  }
}
@media screen and (max-width: 29.9375em) {
  .box-desc h2, .box-desc h3, .box-desc h4, .box-desc h5 {
    margin-top: 25px;
  }
  .box-desc hr {
    margin: 20px 0;
  }
}

.box-intro {
  position: relative;
  margin-top: -146px;
  max-height: 100vh;
  overflow: hidden;
  text-align: center;
  background-image: linear-gradient(-174deg, #00377F 0%, #23B8BD 100%);
}
.box-intro:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  bottom: 0;
  border-bottom: 44px solid rgba(132, 189, 35, 0.23);
}
.box-intro__image {
  position: relative;
  overflow: hidden;
}
.box-intro__image:before {
  display: block;
  content: "";
  padding-bottom: 56.25%;
}
.box-intro__image img {
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -100%;
  top: -100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}
.box-intro__image video {
  position: absolute;
  top: -1000%;
  right: -1000%;
  bottom: -1000%;
  left: -1000%;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}
.box-intro__image img, .box-intro__image div, .box-intro__image video {
  transition-duration: 200ms;
  transition-property: opacity;
}
.box-intro .video-playing img, .box-intro .video-playing div {
  opacity: 0 !important;
}
.box-intro .video-playing video {
  opacity: 0.3;
}
.box-intro__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 130px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.box-intro .layout__center {
  max-width: 800px;
}
.box-intro__title {
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}
.box-intro__title span {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.box-intro__title span:nth-child(1) {
  animation-delay: 0.5s;
}
.box-intro__title span:nth-child(2) {
  animation-delay: 0.75s;
}
.box-intro__title span:nth-child(3) {
  animation-delay: 1s;
}
.box-intro__title span:nth-child(4) {
  animation-delay: 1.25s;
}
.box-intro__title span:nth-child(5) {
  animation-delay: 1.5s;
}
.box-intro__title span:nth-child(6) {
  animation-delay: 2s;
}
.box-intro__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 70px;
  right: 25px;
}
.box-intro__menu__in {
  position: relative;
  margin-left: 14px;
  display: block;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.box-intro__menu__in i {
  width: 46px;
  height: 46px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  border: 2px solid #fff;
  border-radius: 50px;
  transition-duration: 200ms;
  transition-property: border-color;
}
.box-intro__menu__in:after {
  display: block;
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  margin: auto;
  bottom: -8px;
  top: -8px;
}
.box-intro__menu__in:hover i {
  border-color: #ccc;
}
.box-intro__menu__mute:before, .box-intro__menu__mute:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  @exntend %icon;
  transition-duration: 200ms;
  transition-property: opacity;
}
.box-intro__menu__mute:after {
  opacity: 0;
}
.muted .box-intro__menu__mute:before {
  opacity: 0;
}
.muted .box-intro__menu__mute:after {
  opacity: 1;
}
.box-intro__menu__play {
  width: 46px;
  height: 46px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}
.box-intro__menu__play:before, .box-intro__menu__play:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  transition: all 0.3s ease;
}
.play .box-intro__menu__play:before {
  left: 15px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
}
.pause .box-intro__menu__play:before, .pause .box-intro__menu__play:after {
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  border-left: 5px solid #FFF;
}
.pause .box-intro__menu__play:after {
  left: 23px;
}
.box-intro__scroll {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  bottom: 0;
  z-index: 6;
}
.box-intro__scroll i {
  width: 46px;
  height: 46px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  animation: bounce 2s infinite;
}
@media screen and (max-width: 79.9375em) {
  .box-intro {
    margin-top: -100px;
  }
}
@media screen and (max-width: 59.9375em) {
  .box-intro__content {
    padding: 110px 0;
  }
  .box-intro:after {
    border-width: 34px;
  }
  .box-intro__menu {
    bottom: 50px;
  }
  .box-intro__scroll {
    bottom: -8px;
  }
  .box-intro__scroll i {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 47.9375em) {
  .box-intro__menu {
    right: 10px;
  }
  .box-intro__image:before {
    padding-bottom: 64.2857142857%;
  }
}
@media screen and (max-width: 39.9375em) {
  .box-intro__menu__in {
    width: 38px;
    height: 38px;
    margin-left: 10px;
  }
  .box-intro__menu__in i {
    width: 38px;
    height: 38px;
  }
  .box-intro__menu__play {
    width: 38px;
    height: 38px;
  }
  .box-intro__menu__play:before, .box-intro__menu__play:after {
    left: 11px;
    top: 9px;
  }
  .play .box-intro__menu__play:before {
    top: 9px;
    left: 13px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #FFF;
  }
  .pause .box-intro__menu__play:before, .pause .box-intro__menu__play:after {
    border-top: 8px solid #FFF;
    border-bottom: 8px solid #FFF;
    border-left: 4px solid #FFF;
  }
  .pause .box-intro__menu__play:after {
    left: 20px;
  }
}
@media screen and (max-width: 29.9375em) {
  .box-intro {
    margin-top: -26px;
  }
  .box-intro__content {
    padding-top: 60px;
  }
  .box-intro__image:before {
    padding-bottom: 75%;
  }
  .box-intro__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }
}

.box-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4A4A4A;
  text-align: left;
}
.box-text p {
  margin-top: 15px;
}
.box-text p:first-child {
  margin-top: 0;
}
.box-text__title {
  margin-bottom: 20px;
}
.box-text__in, .box-text__image {
  width: 50%;
}
.box-text__content {
  max-width: 470px;
  padding-left: 20px;
}
.box-text img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.box-text--secondary {
  align-items: flex-start;
  color: #00377F;
}
.box-text--secondary .box-text__content {
  padding-top: 15px;
}
@media screen and (max-width: 39.9375em) {
  .box-text {
    display: block;
    margin: -15px 0;
    text-align: center;
  }
  .box-text__in, .box-text__image {
    width: 100%;
    margin: 15px 0;
  }
  .box-text__content {
    padding-left: 0;
    max-width: 100%;
    padding-top: 20px;
  }
}

.box-faq__list {
  list-style: none;
  padding: 20px 0 50px;
}
.box-faq__list__title {
  position: relative;
  padding: 24px 75px 20px 20px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.2777777778;
  letter-spacing: -0.008em;
  transition-duration: 300ms;
  transition-property: color, background, padding;
}
.box-faq__list__title:after {
  display: block;
  content: "";
  position: absolute;
  top: 28px;
  right: 30px;
  transition-duration: 200ms;
  transition-property: transform;
}
.box-faq__list__title:hover {
  background: #f2f2f2;
}
.current .box-faq__list__title:hover {
  color: #84BD23;
  background: transparent;
}
.current .box-faq__list__title:after {
  transform: rotate(180deg);
}
.box-faq__list__content {
  display: none;
  padding: 0 20px 20px;
  font-weight: 300;
  color: #4A4A4A;
}
.box-faq__list__content img {
  display: block;
  max-width: 100%;
  margin: 10px 0;
}
.box-faq__list__content p {
  margin-top: 24px;
}
.box-faq__list__content p:first-child {
  margin-top: 0;
}
.box-faq__list__content h2, .box-faq__list__content h3, .box-faq__list__content h4, .box-faq__list__content h5 {
  margin-bottom: 10px;
}
.box-faq__list__item {
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}
.box-faq__list__item.hidden {
  display: none;
}
@media screen and (max-width: 59.9375em) {
  .box-faq__list__title {
    padding-right: 60px;
  }
  .box-faq__list__title:after {
    right: 20px;
  }
  .box-faq__list__title:hover {
    background: transparent;
  }
  .current .box-faq__list__title:hover {
    color: #00377F;
  }
  .box-faq__list__content {
    font-size: 17px;
    padding-bottom: 20px;
  }
  .box-faq__list__content p {
    margin-top: 15px;
  }
}
@media screen and (max-width: 47.9375em) {
  .box-faq__title svg, .box-faq__title i {
    margin-left: 0;
    margin-right: 12px;
  }
  .box-faq__list__title {
    padding-right: 55px;
    padding-left: 15px;
  }
  .box-faq__list__title:after {
    right: 15px;
  }
  .box-faq__list__content {
    padding: 0 15px 20px;
  }
}
@media screen and (max-width: 39.9375em) {
  .box-faq__list__title {
    padding: 20px 55px 16px 15px;
  }
  .box-faq__list__title:after {
    top: 25px;
  }
}
@media screen and (max-width: 29.9375em) {
  .box-faq__list__item {
    border-radius: 6px;
  }
  .box-faq__list__title {
    padding: 16px 45px 12px 15px;
    letter-spacing: -0.02em;
    font-size: 17px;
  }
  .box-faq__list__title:after {
    background-size: 26px;
    width: 26px;
    height: 14px;
    right: 12px;
    top: 18px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .box-faq__list__content {
    font-size: 16px;
    line-height: 23px;
  }
  .box-faq__list__content p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 22.4375em) {
  .box-faq__list__item {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;
    box-shadow: 0 4px 10px 0 rgba(0, 55, 127, 0.3);
  }
  .box-faq__list__title {
    font-size: 16px;
    padding: 16px 40px 12px 12px;
  }
  .box-faq__list__title:after {
    right: 8px;
  }
  .box-faq__list__content {
    padding: 0 12px 15px;
    font-size: 15px;
    line-height: 22px;
  }
}

.list-items {
  list-style: none;
  font-size: 0;
  text-align: center;
  margin: -70px -35px 0;
}
.list-items__item {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 60px 35px 10px;
  width: 33.3333333333%;
  font-size: 18px;
}
.list-items__title {
  margin: 0 -8px 10px;
}
.list-items__title a {
  text-decoration: none;
  color: inherit;
}
.list-items__title a:hover {
  color: #84BD23;
}
.list-items__image {
  position: relative;
  margin: 0 auto 15px;
}
.list-items__image:before {
  display: block;
  content: "";
  padding-bottom: 51%;
}
.list-items__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}
.list-items p {
  margin-top: 10px;
}
.list-items p:first-child {
  margin-top: 0;
}
.list-items--secondary .list-items__title {
  margin-bottom: 15px;
}
.list-items--secondary .list-items__image {
  margin-bottom: 35px;
}
.list-items--secondary .list-items__image:before {
  padding-bottom: 61%;
}
.list-items--secondary .list-items__image img {
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -100%;
  top: -100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 79.9375em) {
  .list-items {
    margin: -40px -20px 0;
  }
  .list-items__item {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 59.9375em) {
  .list-items {
    margin: -20px -10px 0;
  }
  .list-items__item {
    padding: 20px 10px 0;
    font-size: 16px;
    letter-spacing: -0.018em;
  }
  .list-items__title {
    margin: 0 -4px 10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .list-items {
    margin: -25px 0 0;
  }
  .list-items__item {
    width: 100%;
    padding: 25px 0 0;
  }
  .list-items__title {
    margin: 0 0 10px;
  }
  .list-items__content {
    max-width: 340px;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 30em) {
  .list-items__item {
    display: flex;
    align-items: center;
  }
  .list-items__image {
    width: 30%;
    margin: 0 5px 0 0;
    flex-shrink: 0;
  }
  .list-items__content {
    text-align: left;
  }
  .list-items--secondary .list-items__title {
    margin-bottom: 10px;
  }
  .list-items--secondary .list-items__image {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-items__image:before {
    padding-bottom: 34%;
  }
  .list-items__item {
    padding-top: 40px;
    max-width: 300px;
  }
  .list-items__content {
    margin: 0 auto;
    padding: 0 20px;
  }
  .list-items--secondary .list-items__image {
    margin-bottom: 15px;
  }
}

.list-customers {
  list-style: none;
  text-align: center;
  width: 100%;
  margin-top: -15px;
  float: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.list-customers li {
  float: left;
  max-height: 120px;
  flex-grow: 1;
}
.list-customers img {
  display: block;
  margin: 0 auto;
  padding: 15px;
  max-width: 200px;
  max-height: 120px;
}
@media screen and (max-width: 59.9375em) {
  .list-customers {
    justify-content: space-around;
  }
  .list-customers li {
    flex: auto;
    max-height: 100px;
  }
  .list-customers img {
    max-width: 160px;
    max-height: 100px;
  }
}
@media screen and (max-width: 47.9375em) {
  .list-customers img {
    padding: 10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .list-customers {
    margin-top: 0;
  }
  .list-customers li {
    max-height: 80px;
  }
  .list-customers img {
    max-width: 130px;
    max-height: 80px;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-customers li {
    max-height: 70px;
  }
  .list-customers img {
    max-width: 120px;
    max-height: 70px;
  }
}

.list-references {
  list-style: none;
  max-width: 690px;
  margin: auto;
  padding: 0 40px;
  position: relative;
}
.list-references__title {
  line-height: 1;
  font-weight: 400;
}
.list-references__object {
  display: block;
  margin-bottom: 8px;
}
.list-references__desc {
  color: #4A4A4A;
}
.list-references__desc p {
  margin-bottom: 10px;
}
.list-references__author i {
  font-size: 14px;
}
.list-references__item {
  display: none;
}
.list-references__item:first-child {
  display: block;
}
.list-references .slick-arrow {
  position: absolute;
  outline: none;
  top: 60px;
  margin: auto;
  height: 100px;
  z-index: 5;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  transform: translateZ(0);
}
.list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
  width: 100px;
}
.list-references .slick-arrow.slick-prev:before, .list-references .slick-arrow.slick-next:before {
  transform: translateZ(0);
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  transition-duration: 200ms;
  transition-property: transform;
}
.list-references .slick-arrow.slick-prev:hover:before, .list-references .slick-arrow.slick-next:hover:before {
  transform: scale(1.24);
}
.list-references .slick-arrow.slick-prev {
  right: 100%;
}
.list-references .slick-arrow.slick-next {
  left: 100%;
}
@media screen and (max-width: 160em) and (min-width: 40em) {
  .list-references .slick-arrow {
    text-indent: -99999px;
  }
}
@media screen and (max-width: 59.9375em) {
  .list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
    width: 70px;
  }
  .list-references .slick-arrow.slick-prev:hover:before, .list-references .slick-arrow.slick-next:hover:before {
    transform: scale(1);
  }
  .list-references .slick-arrow.slick-prev {
    right: auto;
    left: -34px;
  }
  .list-references .slick-arrow.slick-next {
    left: auto;
    right: -34px;
  }
}
@media screen and (max-width: 47.9375em) {
  .list-references {
    padding: 0 60px;
  }
  .list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
    width: 60px;
  }
  .list-references .slick-arrow.slick-prev {
    left: -10px;
  }
  .list-references .slick-arrow.slick-next {
    right: -10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .list-references {
    padding: 0 0 100px;
  }
  .list-references__object {
    padding: 9px 6px 5px;
    margin: 0 5px 0 0;
    line-height: 1;
    flex-shrink: 0;
    background: #F5F9FF;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .list-references__title {
    margin-top: 4px;
  }
  .list-references__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .list-references .slick-arrow {
    top: calc(100% - 80px);
    height: 46px;
  }
  .list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
    width: 48%;
    line-height: 44px;
    font-size: 15px;
    text-align: center;
    background: #F5F9FF;
    border-radius: 8px;
    border: 1px solid #00377F;
  }
  .list-references .slick-arrow.slick-prev:before, .list-references .slick-arrow.slick-next:before {
    background-size: 8px;
    width: 8px;
    height: 25px;
    background-repeat: no-repeat;
  }
  .list-references .slick-arrow.slick-prev {
    left: 0;
    padding-left: 10px;
  }
  .list-references .slick-arrow.slick-prev:before {
    right: auto;
    left: 15px;
  }
  .list-references .slick-arrow.slick-next {
    right: 0;
    padding-right: 10px;
  }
  .list-references .slick-arrow.slick-next:before {
    left: auto;
    right: 15px;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-references .slick-arrow {
    height: 44px;
  }
  .list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
    width: 49%;
    font-size: 14px;
    line-height: 42px;
    letter-spacing: -0.02em;
  }
  .list-references .slick-arrow.slick-prev:before {
    left: 10px;
  }
  .list-references .slick-arrow.slick-next:before {
    right: 10px;
  }
}
@media screen and (max-width: 22.4375em) {
  .list-references .slick-arrow.slick-prev, .list-references .slick-arrow.slick-next {
    width: calc(50% + 4px);
    border-radius: 4px;
  }
  .list-references .slick-arrow.slick-prev {
    left: -6px;
  }
  .list-references .slick-arrow.slick-prev:before {
    left: 8px;
  }
  .list-references .slick-arrow.slick-next {
    right: -6px;
  }
  .list-references .slick-arrow.slick-next:before {
    right: 8px;
  }
}

.list-history {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
}
.list-history:after, .list-history:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  height: 2px;
  bottom: 1px;
  background: #00377F;
  box-shadow: 0 2px 4px 0 rgba(0, 55, 127, 0.25);
}
.list-history:before {
  left: auto;
  margin: 0;
  width: 100vw;
  right: 50%;
  margin-right: -50vw;
}
.list-history__item {
  padding: 0 10px;
  flex-shrink: 0;
}
.list-history span {
  position: relative;
  display: block;
  padding-bottom: 15px;
  font-size: 18px;
  color: #00377F;
}
.list-history span:hover:after {
  transform: scale(1.28);
}
.list-history span:after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  top: 100%;
  z-index: 2;
  margin-top: -8px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 2px solid #265A9F;
  box-shadow: 0 2px 4px 0 rgba(0, 55, 127, 0.25);
  transition-duration: 200ms;
  transition-property: transform, border-color;
}
.list-history span:before {
  display: block;
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  margin: auto;
  bottom: -8px;
  top: -8px;
  bottom: -30px;
  z-index: 2;
  cursor: pointer;
}
.list-history span.isCurrent {
  color: #84BD23;
}
.list-history span.isCurrent:after {
  border-color: #84BD23;
  border-width: 3px;
  transform: scale(1.5);
}
.list-history__title {
  margin-bottom: 15px;
  text-align: center;
}
.list-history--content {
  max-width: 800px;
  margin: 0 auto;
}
.list-history--content p {
  margin-top: 15px;
}
.list-history--content p:first-child {
  margin-top: 0;
}
.list-history--content:after, .list-history--content:before {
  display: none;
}
.list-history--content li {
  width: 100%;
  padding: 40px 0 0;
  display: none;
}
.list-history--content li:first-child {
  display: block;
}
@media screen and (max-width: 59.9375em) {
  .list-history {
    margin-top: 35px;
    overflow-y: visible;
    overflow-x: auto;
    justify-content: space-between;
  }
  .list-history:after, .list-history:before {
    display: none;
    bottom: 15px;
  }
  .list-history__item {
    position: relative;
  }
  .list-history__item:before, .list-history__item:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 15px;
    height: 2px;
    background: #00377F;
  }
  .list-history__item:before {
    width: 500%;
    right: 100%;
  }
  .list-history__item:last-child:after {
    width: 500%;
    right: 0;
  }
  .list-history span {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  .list-history span:hover:after {
    transform: scale(1);
  }
  .list-history span:after {
    bottom: -20px;
  }
  .list-history span:before {
    bottom: -10px;
  }
}
.list-history--content {
  margin-bottom: 30px;
}
.list-history--content li:last-child:after {
  display: none;
}
@media screen and (max-width: 39.9375em) {
  .list-history--content li {
    padding-top: 30px;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-history {
    margin-top: 20px;
  }
  .list-history span {
    font-size: 16px;
  }
  .list-history__item:first-child {
    padding-left: 0;
  }
  .list-history__item:last-child {
    padding-right: 0;
  }
  .list-history--content li {
    padding-top: 25px;
  }
}

.list-questions {
  list-style: none;
  margin-left: -14px;
  padding: 55px 0 30px;
  height: 620px;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}
.list-questions:after {
  content: "";
  display: table;
  clear: both;
}
.list-questions__item {
  float: left;
  width: 33.3333333333%;
  padding-left: 14px;
  padding-bottom: 14px;
}
.list-questions__title {
  font-weight: 400;
  margin-bottom: 20px;
}
.list-questions__image {
  position: relative;
  display: block;
  margin: auto;
  width: 94px;
  height: 94px;
}
.list-questions__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}
.list-questions__in {
  display: flex;
  flex-direction: column;
  height: 360px;
  padding: 45px 40px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
}
@media screen and (max-width: 63.9375em) {
  .list-questions__in {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .list-questions {
    height: 440px;
  }
  .list-questions__title {
    font-size: 18px;
    line-height: 20px;
  }
  .list-questions__in {
    height: 250px;
  }
}
@media screen and (max-width: 39.9375em) {
  .list-questions {
    margin: 0 -50px;
    padding: 30px 0;
    height: 400px;
  }
  .list-questions__item {
    padding-left: 0;
    width: 40%;
  }
  .list-questions__wrapper {
    margin: 0 -10px;
    overflow: hidden;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-questions {
    margin: 0 -100px;
  }
}

.list-gallery {
  list-style: none;
  font-size: 0;
  margin: 0 -10px 50px;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.list-gallery__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 25%;
  padding: 20px 10px 0;
  font-size: 18px;
}
.list-gallery__image {
  position: relative;
  overflow: hidden;
  background: #ececec;
}
.list-gallery__image:after {
  display: block;
  content: "";
  padding-bottom: 80%;
}
.list-gallery__image img {
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -100%;
  top: -100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.list-gallery__in {
  position: relative;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  color: #fff;
  background: transparent;
  transition-duration: 200ms;
  transition-property: box-shadow, background;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.list-gallery__in:before, .list-gallery__in:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  transition-duration: 300ms;
  transition-property: opacity, background;
}
.list-gallery__in:after {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  background: rgba(0, 55, 127, 0.5);
}
.list-gallery__in:before {
  right: 10px;
  bottom: 10px;
  z-index: 2;
}
.list-gallery__in:hover:after, .list-gallery__in:hover:before {
  opacity: 1;
}
@media screen and (max-width: 63.9375em) {
  .list-gallery {
    margin: 0 -10px 50px;
  }
  .list-gallery__item {
    padding: 20px 10px 0;
  }
  .list-gallery__in:hover:after {
    opacity: 0;
  }
  .list-gallery__in:before {
    opacity: 1;
    bottom: 0;
    right: 0;
    border-radius: 3px 0 0 0;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .list-gallery {
    margin: 0 -7px 50px;
  }
  .list-gallery__item {
    padding: 14px 7px 0;
  }
}
@media screen and (max-width: 39.9375em) {
  .list-gallery {
    margin: 0 -10px 50px;
  }
  .list-gallery__item {
    width: 50%;
    padding: 20px 10px 0;
  }
}
@media screen and (max-width: 29.9375em) {
  .list-gallery {
    margin: 0 -5px 40px;
  }
  .list-gallery__item {
    padding: 10px 5px 0;
  }
}

.table-water {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  font-size: 14px;
  border-radius: 8px;
  background: #F5F9FF;
}
.table-water__touch {
  display: none;
  width: 34px;
  height: 34px;
}
.table-water td, .table-water th {
  vertical-align: middle;
  text-align: left;
  padding: 15px 15px 15px 30px;
}
.table-water td:first-child, .table-water th:first-child {
  padding-left: 15px;
}
.table-water thead {
  font-size: 18px;
}
.table-water thead td, .table-water thead th {
  border-left: 1px solid #dae2ec;
}
.table-water thead td:first-child, .table-water thead th:first-child {
  border-left: 0;
}
.table-water tbody tr:first-child td, .table-water tbody tr:first-child th {
  background: #E9F3FF;
  border-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.table-water tbody tr:nth-child(2) td, .table-water tbody tr:nth-child(2) th {
  padding-top: 30px;
}
.table-water tbody td, .table-water tbody th {
  border-bottom: 1px solid #dae2ec;
  padding-top: 11px;
  padding-bottom: 11px;
}
.table-water tbody td:nth-child(2n), .table-water tbody th:nth-child(2n) {
  border-left: 1px solid #dae2ec;
}
.table-water tbody tr:last-child td, .table-water tbody tr:last-child th {
  border-bottom: 0;
}
@media screen and (max-width: 59.9375em) {
  .table-water {
    margin-bottom: 30px;
  }
  .table-water thead {
    font-size: 16px;
  }
  .table-water tbody tr:first-child td, .table-water tbody tr:first-child th {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .table-water tbody tr:nth-child(2) td, .table-water tbody tr:nth-child(2) th {
    padding-top: 15px;
  }
  .table-water td, .table-water th {
    padding-left: 12px;
    padding-right: 5px;
  }
  .table-water td:first-child, .table-water th:first-child {
    padding-left: 12px;
  }
}
@media screen and (max-width: 47.9375em) {
  .table-water {
    font-size: 13px;
    line-height: 15px;
  }
  .table-water thead {
    font-size: 14px;
  }
  .table-water thead tr:first-child td, .table-water thead tr:first-child th {
    font-size: 15px;
    line-height: 17px;
  }
  .table-water tbody tr:first-child td, .table-water tbody tr:first-child th {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 39.9375em) {
  .table-water {
    min-width: 640px;
  }
  .table-water__touch {
    position: relative;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    bottom: 30px;
  }
  .table-water__wrapper {
    overflow-x: auto;
  }
}

.window-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 20px;
  z-index: 9999;
  font-family: inherit;
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateZ(0);
  color: #4A4A4A;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  background-color: #00377F;
  background-color: rgba(0, 55, 127, 0.7);
}
.window-popup:after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  height: 100%;
}
.window-popup__title {
  font-size: 18px;
  margin-bottom: 8px;
  color: #00377F;
  font-weight: 400;
}
.window-popup__in {
  margin: 20px 0;
  padding: 60px;
  display: inline-block;
  vertical-align: middle;
  width: 720px;
  position: relative;
  max-width: 100%;
  font-size: 18px;
  white-space: normal;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 27px 0 rgba(0, 55, 127, 0.3);
  animation-duration: 0.5s;
  animation-name: windowOut;
  animation-fill-mode: both;
}
.window-popup__in__close {
  display: block;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.window-popup__in__close path {
  transition-duration: 200ms;
  transition-property: fill;
}
.window-popup__in__close i {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}
.window-popup__in__close:hover path {
  fill: #D0021B;
}
.opened .window-popup__in {
  animation-name: windowIn;
}
@media screen and (max-width: 59.9375em) {
  .window-popup__title {
    font-size: 24px;
    line-height: 28px;
  }
  .window-popup__in__close {
    background: #F5F9FF;
    border: 1px solid #eee;
    border-top: 0;
    border-radius: 0 8px 0 8px;
  }
}
@media screen and (max-width: 47.9375em) {
  .window-popup__in {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .window-popup {
    padding: 0;
  }
  .window-popup__in {
    margin: 0;
    font-size: 17px;
    padding: 45px 20px 35px;
    border-radius: 0;
  }
  .window-popup__in__close {
    border-radius: 0;
  }
}

.form-newsletter {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-newsletter label {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 2;
  font-weight: 300;
}
.form-newsletter .button {
  margin-left: 30px;
  padding: 0 8px;
}
.form-newsletter .input {
  position: relative;
  width: 60%;
  padding-left: 78px;
  margin-bottom: 0;
}
.form-newsletter .in-form .input:focus {
  padding-top: 0;
}
@media screen and (max-width: 47.9375em) and (min-width: 40em) {
  .form-newsletter .button {
    display: block;
    width: 100%;
    margin-left: 20px;
    min-width: 1px;
  }
}
@media screen and (max-width: 39.9375em) {
  .form-newsletter {
    display: block;
  }
  .form-newsletter .input {
    width: 100%;
  }
  .form-newsletter .button {
    margin-top: 20px;
    margin-left: 0;
  }
}

.form-main {
  margin: 28px auto 0;
  text-align: left;
}
.form-main__error, .form-main__servererror {
  display: none;
  width: 100%;
  padding: 15px;
  font-size: 22px;
  line-height: 28px;
  max-width: 460px;
  margin: 20px auto 0;
  color: #D0021B;
  border: 2px solid #D0021B;
  border-radius: 8px;
  text-align: center;
}
.form-main .error {
  color: #D0021B;
}
.form-main__success {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.form-main__success .button {
  display: table;
  margin: 0 auto;
}
.form-main__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 300;
}
.form-main__footer p span {
  font-size: 18px;
  color: #84BD23;
}
.form-main__footer .button {
  margin-left: 40px;
}
.wrap-section .form-main__footer .button {
  margin-top: 0;
}
@media screen and (max-width: 39.9375em) {
  .form-main__error, .form-main__servererror {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 5px;
    max-width: 380px;
  }
  .form-main input, .form-main textarea, .form-main .select {
    margin-bottom: 10px;
  }
  .form-main__footer {
    margin-top: 15px;
  }
  .form-main__footer .button {
    margin-left: 10px;
    min-width: 180px;
    padding: 0 14px;
  }
}
@media screen and (max-width: 29.9375em) {
  .form-main__error, .form-main__servererror {
    letter-spacing: -0.035em;
    max-width: 350px;
  }
  .form-main__footer {
    margin-top: 10px;
  }
}
@media screen and (max-width: 22.4375em) {
  .form-main__error, .form-main__servererror {
    margin-top: 15px;
    font-size: 16px;
    line-height: 22px;
    border-width: 1px;
  }
}

.wrap-section {
  margin: 100px 0;
  text-align: center;
}
.wrap-section__title {
  margin-bottom: 60px;
}
.wrap-section__desc p {
  max-width: 780px;
  margin: 0 auto 15px;
}
.wrap-section--bg, .wrap-section--secondary {
  margin: 0;
  padding: 100px 0;
  background: #F5F9FF;
}
.wrap-section--bg .wrap-section__title, .wrap-section--secondary .wrap-section__title {
  margin-bottom: 15px;
}
.wrap-section--secondary {
  padding: 58px 0;
}
.wrap-section--secondary .wrap-section__desc p {
  max-width: 460px;
}
.wrap-section--left {
  text-align: left;
}
.wrap-section--left .wrap-section__title {
  margin-bottom: 20px;
}
.wrap-section .button {
  margin-top: 25px;
}
.wrap-section__footer {
  margin-top: 35px;
}
@media screen and (max-width: 79.9375em) {
  .wrap-section__footer small {
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    bottom: -40px;
  }
}
@media screen and (max-width: 59.9375em) {
  .wrap-section {
    margin: 65px 0;
  }
  .wrap-section__title {
    margin-bottom: 40px;
  }
  .wrap-section--bg, .wrap-section--secondary {
    margin: 0;
    padding: 65px 0;
  }
  .wrap-section--secondary {
    margin: 0;
    padding: 58px 0;
  }
  .wrap-section__footer small {
    bottom: -30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrap-section {
    margin: 50px 0;
  }
  .wrap-section--bg, .wrap-section--secondary {
    margin: 0;
    padding: 50px 0;
  }
  .wrap-section--secondary {
    margin: 0;
    padding: 50px 0;
  }
  .wrap-section__title {
    margin-bottom: 30px;
  }
  .wrap-section .button {
    margin-top: 20px;
  }
  .wrap-section__footer small {
    bottom: -20px;
  }
}
@media screen and (max-width: 29.9375em) {
  .wrap-section {
    margin: 35px 0;
  }
  .wrap-section--bg, .wrap-section--secondary {
    margin: 0;
    padding: 35px 0;
  }
  .wrap-section--secondary {
    margin: 0;
    padding: 35px 0;
  }
  .wrap-section__title {
    margin-bottom: 20px;
  }
  .wrap-section .button {
    margin-top: 15px;
  }
}
.wrap-section--horizontal-padding {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 59.9375em) {
  .wrap-section--horizontal-padding {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.in-form {
  position: relative;
  background: #F5F9FF;
  font-weight: 300;
}
.in-form .input {
  position: relative;
  z-index: 2;
  color: transparent;
  background: transparent;
  transition-duration: 200ms;
  transition-property: padding-top, line-height, color;
}
.in-form .input:focus {
  padding-top: 17px;
  line-height: 28px;
  background: transparent;
  color: #4A4A4A;
}
.in-form .input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #F5F9FF inset;
}
.in-form textarea {
  position: relative;
  z-index: 2;
  color: transparent;
  background: transparent;
  transition-duration: 200ms;
  transition-property: padding-top, color;
}
.in-form textarea:focus {
  padding-top: 20px;
  background: transparent;
  color: #4A4A4A;
}
.in-form .select ul li:first-child:after {
  content: "*";
  color: #84BD23;
}
.in-form__text {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  top: 0;
  left: 20px;
  right: 20px;
  line-height: 50px;
  transition-duration: 200ms;
  transition-property: transform;
  color: #00377F;
  font-size: 18px;
  pointer-events: none;
  transform-origin: top left;
}
.js-required + .in-form__text:after {
  content: "*";
  color: #84BD23;
}
.input:focus + .in-form__text, textarea:focus + .in-form__text {
  transform: scale(0.8) translateY(-5px);
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .in-form__text {
    z-index: 2;
  }
}
.in-form--focused .input {
  padding-top: 17px;
  line-height: 28px;
  color: #4A4A4A;
}
.in-form--focused textarea {
  padding-top: 20px;
  color: #4A4A4A;
}
.in-form--focused .in-form__text {
  transform: scale(0.8) translateY(-5px);
}
.in-form--focused .select ul li:first-child:after {
  content: "";
}
.in-form.error {
  background: #FFF5F5;
}
.in-form.error .in-form__text {
  color: #D0021B;
}
.in-form.error .select ul {
  background: #FFF5F5;
}
.in-form.error .select li:first-child {
  color: #D0021B;
}
.in-form.error .select.open li:first-child {
  color: #00377F;
}
@media screen and (max-width: 59.9375em) {
  .in-form__text {
    left: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 39.9375em) {
  .in-form textarea {
    height: 150px;
  }
}

.in-video {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 3px 8px 0 #BFBFBF;
}
.in-video:before {
  display: block;
  content: "";
  padding-bottom: 56.25%;
}
.in-video__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .in-video__content {
    flex: 1;
  }
}
.in-video__content p {
  width: 100%;
  margin-top: 20px;
}
.in-video__content p:first-child {
  margin-top: 0;
}
.in-video button {
  margin-top: 20px;
}
.in-video button i {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
}
.in-video img {
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -100%;
  top: -100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 39.9375em) {
  .in-video__content {
    padding: 20px 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 29.9375em) {
  .in-video:before {
    padding-bottom: 60%;
  }
  .in-video__content {
    font-size: 18px;
  }
  .in-video button {
    margin-top: 10px;
    height: 40px;
    line-height: 36px;
    min-width: 1px;
    padding: 0 20px;
    font-size: 16px;
  }
  .in-video button i {
    margin-right: 10px;
  }
}
@media screen and (max-width: 22.4375em) {
  .in-video__content {
    font-size: 17px;
  }
}

.in-title {
  display: none;
  margin-bottom: 60px;
  text-align: center;
}
.in-title--desktop {
  display: block;
}
@media screen and (max-width: 59.9375em) {
  .in-title {
    display: block;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 42px;
  }
}

.in-anotation {
  margin-bottom: 4rem;
  text-align: center;
}
.in-anotation h2,
.in-anotation h3,
.in-anotation h4,
.in-anotation h6 {
  margin: 3rem 0 1rem;
}
.in-anotation h2:first-child,
.in-anotation h3:first-child,
.in-anotation h4:first-child,
.in-anotation h6:first-child {
  margin-top: 0;
}
.in-anotation p {
  margin: 1rem 0;
}

/*-----------------------------------------------------------------------------------*/
/*  HELPERS
/*-----------------------------------------------------------------------------------*/
.h-text-right {
  text-align: right;
}

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

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

.h-text-no-wrap {
  white-space: nowrap;
}

.h-m0 {
  margin: 0px;
}

.h-mt0 {
  margin-top: 0px;
}

.h-mt10 {
  margin-top: 10px;
}

.h-mt20 {
  margin-top: 20px;
}

.h-mt30 {
  margin-top: 30px;
}

.h-mb0 {
  margin-bottom: 0px;
}

.h-mb10 {
  margin-bottom: 10px;
}

.h-mb20 {
  margin-bottom: 20px;
}

.h-mb30 {
  margin-bottom: 30px;
}

.h-p0 {
  padding: 0px;
}

.h-pt0 {
  padding-top: 0px;
}

.h-pt10 {
  padding-top: 10px;
}

.h-pt20 {
  padding-top: 20px;
}

.h-pt30 {
  padding-top: 30px;
}

.h-pb0 {
  padding-bottom: 0px;
}

.h-pb10 {
  padding-bottom: 10px;
}

.h-pb20 {
  padding-bottom: 20px;
}

.h-pb30 {
  padding-bottom: 30px;
}

.h-display-block {
  display: block;
}

.h-display-none {
  display: none;
}

.content-404 {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.form-newsletter .input {
  width: 100%;
}

/*# sourceMappingURL=global.css.map */
