/**
 * Styles
 *
 * @author Lex Lexter <hi@leximo.cz>
 * @version 1.0.0
 * @website https://leximo.cz/
 */

@font-face {
  font-family: 'Clear Sans Fallback';
  size-adjust: 100%;
  src: local('Arial');
}

/*
  Bodies
  ***
*/

body {
  min-width: 360px;
  background-color: #fff;
  font: 400 18px 'Clear Sans Bk', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #656B66;
}

/*
  Links
  ***
*/

a {
  color: #00A0E4;
}
a:hover {
  color: #000000;
}

/*
  Forms
  ***
*/

input, textarea, select, button {
  font: 400 18px 'Clear Sans Bk', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
}

/*
  elem
  ***
*/

.--admin .elem {
  position: relative;
}

/*
  Border
  ---
*/

.--admin .elem:before {
  content: '';
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px dashed transparent;
  border-radius: 4px;
  transition: 150ms linear;
}

/* hover */

.--admin .elem:hover:before {
  border-color: #333;
}

/*
  Label
  ---
*/

.--admin .elem[data-style]:after {
  content: attr(data-style);
  pointer-events: none;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%) rotate(-6deg);
  padding: 5px 8px 5px 8px;
  background-color: #333;
  border-radius: 24px;
  font-size: 12px;
  color: #fff;
  opacity: 0;
  transition: 150ms linear;
}

/* hover */

.--admin .elem[data-style]:hover:after {
  opacity: 1;
}

/*
  icon
  ***
*/

.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: center center no-repeat;
  text-decoration: none;
  font-size: 0;
}

/*
  button
  ***
*/

.button {
  display: inline-block;
  margin: 16px 16px 0 0;
  padding: 12px 23px;
  background-color: transparent;
  border: 2px solid #00A0E4;
  outline: none;
  border-radius: 36px;
  line-height: 1.6;
  text-decoration: none;
  font: 400 16px 'Clear Sans SBd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #00A0E4;
  transition: 150ms linear;
}
.button br {
  display: none;
}

/* hover */

a.button:hover, 
input.button:hover, 
button.button:hover {
  background-color: #00A0E4;
  box-shadow: 0 10px 32px #3a88aa59;
  color: #fff;
}

/* hover */

a:hover .button {
  background-color: #00A0E4;
  box-shadow: 0 10px 32px #3a88aa59;
  color: #fff;
}

/*
  - color
  ---
*/

.button--color-primary {
  background-color: #00A0E4;
  color: #fff;
}
.button--color-red {
  border-color: #ed000a;
  color: #ed000a;
}

/* hover */

a.button--color-red:hover, 
input.button--color-red:hover, 
button.button--color-red:hover {
  background-color: #ed000a !important;
  box-shadow: 0 10px 32px #ed000c59;
  color: #fff;
}

/* hover */

a:hover .button--color-red {
  background-color: #ed000a !important;
  box-shadow: 0 10px 32px #ed000c59;
  color: #fff;
}

/*
  - size
  ---
*/

.button--size-small {
  padding: 8px 16px;
  font-size: 15px;
}

/*
  input
  ***
*/

.input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 14px 20px 15px 20px;
  background: #fff right 16px center no-repeat;
  background-size: 14px auto;
  border: 1px solid #D6D4D0;
  border-radius: 4px;
  outline: none;
  font: 400 16px 'Clear Sans Bk', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
}

/* focus */

.input:focus {
  border-color: #00A0E4;
}

/*
  - size
  ---
*/

.input--size-small {
  padding: 12px 16px;
  background-position: right 16px center;
}

/*
  textarea
  ---
*/

textarea.input {
  height: 115px;
  resize: none;
  line-height: 1.7;
  font-size: 16px;
}

/*
  select
  ---
*/

select.input {
  background-image: url('../img/icons/grey/down.svg');
}

/*
  field
  ***
*/

.field {
  margin-bottom: 30px;
}

/*
  label
  ---
*/

.field__label {
  display: block;
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 14px;
}

/*
  STRONG
  ...
*/

.field__label strong {
  color: #00A0E4;
}

/*
  excerpt
  ---
*/

.field__excerpt {
  display: block;
  margin-top: 6px;
  line-height: 1.6;
  font-style: italic;
  font-size: 14px;
}

/*
  label
  ---
*/

.field__error {
  display: inline-block;
  margin: 6px 0 0 12px;
  padding: 2px 8px 1px 8px;
  background-color: #DF0606;
  border-radius: 24px;
  line-height: 1.6;
  font-size: 12px;
  color: #fff;
}

/*
  flash
  ***
*/

.flash {
  position: relative;
  display: block;
  margin-bottom: 32px;
  padding: 12px 32px;
  background-color: #0089A7;
  border-radius: 24px;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
}

/*
  - type
  ---
*/

.flash--type-warning {
  background-color: #E2A329;
}
.flash--type-success {
  background-color: #00A70F;
}
.flash--type-error {
  background-color: #DF0606;
}

/*
  Arrow
  ---
*/

/*

.flash:before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 36px;
  bottom: -6px;
  transform: rotate(45deg);
  background-color: inherit;
}

*/

/*
  form
  ***
*/

.form {
  display: block;
}

/*
  Adjust button
  ---
*/

.form .button {
  float: left;
  margin: 10px 0 0 0;
}

/*
  gdpr
  ---
*/

.form__gdpr {
  margin: 0 0 0 200px;
  padding-top: 10px;
  text-align: right;
  font-size: 14px;
}

/*
  LINK
  ...
*/

.form__gdpr a {
  color: #000;
}

/*
  head
  ---
*/

.form__head {
  margin-bottom: 36px;
  font-size: 19px;
}

/*
  Adjust subtitle
  ---
*/

.form__head .subtitle {
  margin: 0 0 36px 0;
}

/*
  title
  ---
*/

.form__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.form__excerpt {
  margin: 16px 0 0 0;
  line-height: 1.55;
}

/*
  scroll
  ***
*/

.scroll {
  display: inline-block;
}

/*
  IMG
  ---
*/

.scroll img {
  display: block;
}

/*
  caption
  ***
*/

.caption {
  display: none;
}

/*
  figure
  ***
*/

.figure {
  position: relative;
}

/*
  image
  ---
*/

.figure__image {
  width: 100%;
  display: block;
}

/*
  title
  ---
*/

.figure__title {
  border-bottom: 1px solid #D6D4D0;
  font-size: 14px;
}
.figure__title__inset {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 0;
  line-height: 1.6;
}

/*
  subtitle
  ***
*/

.subtitle {
  display: inline-block;
  margin: 0;
  padding-left: 32px;
  background: url('../img/icons/blue/pictogram.svg') left 5px no-repeat;
  text-transform: uppercase;
  letter-spacing: 0.29em;
  font: 400 14px 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #00A0E4;
}

/*
  - blank
  ---
*/

.subtitle-blank {
  padding-left: 0;
  background-position: -10000px;
}

/*
  LINK
  ---
*/

.subtitle a {
  text-decoration: none;
}

/*
  call
  ***
*/

.call {
  display: block;
  margin: 42px 0 0 0;
}

/*
  title
  ---
*/

.call__title {
  display: block;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.29em;
  font-size: 14px;
}

/*
  data
  ---
*/

.call__data {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
  text-decoration: none;
  font-size: 32px;
}

/*
  address
  ***
*/

.address {
  box-sizing: border-box;
  padding: 32px 6%;
  border: 1px solid #D6D4D0;
  line-height: 1.6;
  text-align: center;
}

/*
  - layout
  ---
*/

.--layout-contact .address {
  max-width: 1140px;
  margin: 180px auto 0 auto;
}

/*
  line
  ---
*/

.address__line {
  line-height: inherit;
}
.address__line + .address__title {
  display: inline-block;
  margin-top: 12px;
}

/*
  SPAN
  ...
*/

.address__line span {
  position: relative;
  top: -1px;
  display: inline-block;
  margin: 0 2px 0 4px;
  font-size: 65%;
}

/*
  highlight
  ***
*/

.highlight {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #656B66;
}

/*
  - type
  ---
*/

.highlight--type-icon {
  padding: 64px 32px 0 32px;
  border-top: 1px solid #EFEFEF;
  text-align: center;
}

/*
  Adjust icon
  ---
*/

.highlight .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 32px;
}

/*
  Adjust button
  ---
*/

.highlight .button {
  margin-top: 24px;
}

/*
  image
  ---
*/

.highlight__image {
  margin-bottom: 26px;
}

/*
  IMG
  ...
*/

.highlight__image img {
  width: 100%;
  display: block;
}

/*
  title
  ---
*/

.highlight__title {
  line-height: 1.3;
  font-size: 24px;
  color: #000;
}

/*
  excerpt
  ---
*/

.highlight__excerpt {
  margin: 12px 0 0 0;
  line-height: 1.6;
}

/*
  list-socials
  ***
*/

.list-socials {
  margin: 0;
  line-height: 1;
  font-size: 0;
}

/*
  Adjust icon
  ---
*/

.list-socials .icon {
  display: inline-block;
  margin: 0 6px;
}

/*
  Caps
  ...
*/

.list-socials .icon:first-child {
  margin-left: 0;
}
.list-socials .icon:last-child {
  margin-right: 0;
}

/*
  SVG
  ...
*/

.list-socials .icon svg {
  fill: #00A0E4;
  transition: 150ms linear;
}

/* hover */

.list-socials .icon:hover svg {
  fill: #000;
}

/*
  list-numerize
  ***
*/

.list-numerize {
  margin: 42px 0;
  list-style: none;
  counter-reset: numerize;
}

/*
  Adjust titles
  ---
*/

.list-numerize h1, 
.list-numerize h2, 
.list-numerize h3, 
.list-numerize h4, 
.list-numerize h5, 
.list-numerize h6 {
  margin-bottom: 12px;
}

/*
  ITEM
  ---
*/

.list-numerize > li {
  position: relative;
  margin-bottom: 40px;
  padding-left: 50px;
  counter-increment: numerize;
}

/*
  number
  ...
*/

.list-numerize li:before {
  content: '0' counter(numerize);
  width: 42px;
  position: absolute;
  left: 0;
  top: 2px;
  text-align: center;
  font-size: 18px;
  color: #656B66;
}

/*
  list-search
  ***
*/

.list-search {
  margin: 0;
  list-style: none;
  counter-reset: search;
}

/*
  item
  ---
*/

.list-search__item {
  position: relative;
  margin: 0 0 -1px 0;
  padding: 40px 24px 37px 73px;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  counter-increment: search;
}
.list-search__item__inset {
  display: block;
  line-height: inherit;
  text-decoration: none;
  color: inherit;
}

/* hover */

a.list-search__item__inset:hover {
  color: #00A0E4;
}

/*
  number
  ...
*/

.list-search__item:before {
  content: '0' counter(search);
  width: 42px;
  position: absolute;
  left: 18px;
  top: 48px;
  text-align: center;
  font-size: 18px;
  color: #656B66;
}

/*
  title
  ...
*/

.list-search__item__title {
  margin: 0 0 15px 0;
}

/*
  gallery
  ***
*/

.gallery {
  margin: 42px -4px 34px -4px;
  font-size: 0;
}

/*
  item
  ---
*/

.gallery-item {
  width: 25%;
  display: inline-block;
  margin-bottom: 8px;
}

/*
  LINK, IMG
  ...
*/

.gallery-item a, 
.gallery-item a img {
  display: block;
}
.gallery-item a {
  overflow: hidden;
  margin: 0 4px;
}
.gallery-item a img {
  width: 100%;
  transition: transform 150ms ease-in-out;
}

/* hover */

.gallery-item a:hover img {
  transform: scale(1.1);
}

/*
  map-regions
  ***
*/

.map-regions {
  position: relative;
}

/*
  SVG
  ---
*/

.map-regions svg {
  max-width: 100%;
  height: auto;
}

/*
  PATH
  ...
*/

.map-regions svg path {
  position: relative;
  fill: #DEDEDE;
  transition: fill 150ms linear;
}

/* - active */

.map-regions svg path.--active {
  fill: #00A0E4;
}

/*
  pin
  ---
*/

.map-regions__pin {
  width: 32px;
  height: 32px;
  position: absolute;
  text-decoration: none;
  font: 400 14px 'Clear Sans SBd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #fff;
}

/* hover */

.map-regions__pin:hover {
  color: #fff;
}

/*
  [data-region]
  ...
*/

.map-regions__pin[data-region="4"] {
  left: 32%;
  top: 35.5%;
}
.map-regions__pin[data-region="18"] {
  right: 15.5%;
  bottom: 25%;
}
.map-regions__pin[data-region="12"] {
  left: 22%;
  top: 18%;
}
.map-regions__pin[data-region="11"] {
  left: 40%;
  top: 40%;
}
.map-regions__pin[data-region="10"] {
  left: 12%;
  top: 52%;
}
.map-regions__pin[data-region="16"] {
  left: 58%;
  top: 42.5%;
}
.map-regions__pin[data-region="17"] {
  right: 23%;
  top: 52%;
}
.map-regions__pin[data-region="9"] {
  right: 8%;
  top: 45.5%;
}
.map-regions__pin[data-region="8"] {
  left: 39%;
  top: 7%;
}
.map-regions__pin[data-region="7"] {
  left: 53%;
  top: 23%;
}
.map-regions__pin[data-region="13"] {
  left: 51%;
  bottom: 32%;
}
.map-regions__pin[data-region="6"] {
  left: 7%;
  top: 31%;
}
.map-regions__pin[data-region="15"] {
  right: 31%;
  bottom: 20%;
}
.map-regions__pin[data-region="5"] {
  left: 31%;
  bottom: 19%;
}

/*
  Arrow
  ...
*/

.map-regions__pin:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  left: 35%;
  bottom: 2px;
  transform: rotate(45deg);
  background-color: #000;
  transition: bottom 150ms ease-in-out;
}

/*
  SPAN
  ...
*/

.map-regions__pin span {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  padding: 9px 0;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  transition: top 150ms ease-in-out;
}

/* - active */

.map-regions__pin.--active span {
  top: -4px;
}

/*
  accordion
  ***
*/

.accordion {
  margin: 42px 0;
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
}

/*
  Next accordion
  ---
*/

.accordion + .accordion {
  margin-top: -43px;
}

/*
  title
  ---
*/

.accordion__title {
  position: relative;
  margin: 0;
  padding: 24px 84px 24px 42px;
  line-height: 1.3;
  font: 400 22px 'Clear Sans Md', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
  cursor: pointer;
}

/*
  content
  ---
*/

.accordion__content {
  padding: 0 42px 24px 42px;
}

/*
  trigger
  ---
*/

.accordion__trigger {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 42px;
  top: 22px;
  border: 2px solid #00A0E4;
  border-radius: 50%;
}

/* - active */

.accordion.--active .accordion__trigger {
  border-color: #000000;
}

/*
  Icon
  ...
*/

.accordion__trigger:before, 
.accordion__trigger:after {
  content: '';
  width: 14px;
  height: 2px;
  position: absolute;
  left: 7px;
  top: 13px;
  background-color: #00A0E4;
}
.accordion__trigger:before {
  transform: rotate(90deg);
  transition: opacity 150ms linear;
}

/* - active */

.accordion.--active .accordion__trigger:before, 
.accordion.--active .accordion__trigger:after {
  background-color: #000000;
}
.accordion.--active .accordion__trigger:before {
  opacity: 0;
}

/*
  item-branch
  ***
*/

.item-branch__inset {
  display: block;
  padding: 30px 31px 31px 31px;
  border: 1px solid #EFEFEF;
  text-decoration: none;
  font-size: 18px;
  color: #656B66;
}

/*
  Adjust button
  ---
*/

.item-branch .button {
  margin: 24px 0 0 0;
}

/*
  title
  ---
*/

.item-branch__title {
  margin: 0;
  transition: color 150ms linear;
}

/* hover */

.item-branch__inset:hover .item-branch__title {
  color: #00A0E4;
}

/*
  address
  ---
*/

.item-branch__address {
  margin: 0;
}

/*
  title
  ---
*/

.item-branch__title {
  margin: 0;
}

/*
  item-contact
  ***
*/

.item-contact__inset {
  min-height: 98px;
  display: block;
  padding: 29px 32px 29px 32px;
  border: 1px solid #D6D4D0;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  color: #656B66;
}

/*
  data
  ---
*/

.item-contact__data {
  display: block;
  margin: 12px 0 0 0;
  line-height: 1.6;
  text-decoration: none;
  letter-spacing: 0.005em;
  font-size: 20px;
  color: #000;
}

/* hover */

a.item-contact__data:hover {
  color: #00A0E4;
}

@media only screen and (min-width: 1251px) {

  /*
    - size
    ---
  */

  .item-contact__data--size-large {
    margin-top: 13px;
    line-height: 1.3;
    font-size: 36px;
  }

}

/*
  Next SAME
  ...
*/

.item-contact__data + .item-contact__data {
  margin-top: 0;
}

/*
  SMALL
  ...
*/

.item-contact__data small {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  padding: 5px 4px 2px 4px;
  background-color: #eee;
  border-radius: 3px;
  font-size: 12px;
}

/*
  link
  ---
*/

.item-contact__link {
  display: block;
  margin: 14px 0 -3px 0;
  line-height: 1.35;
  font-family: 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #00A0E4;
}

/*
  section-split
  ***
*/

.section-split__inset {
  position: relative;
  overflow: hidden;
}

/*
/*
  - layout
  ---
*/

.--layout-contact .section-split--contain-career {
  margin-top: 120px;
}
.--layout-contact .section-split--contain-form {
  margin-top: 200px;
}
.--layout-career .section-split--contain-form {
  margin-top: 160px;
}
.--layout-landing .section-split--contain-form {
  margin-top: 156px;
}
.--layout-branch .section-split--contain-content {
  margin-top: 144px;
}
.--layout-branch .section-split--contain-form {
  margin-top: 120px;
}
.--layout-home .section-split--contain-search {
  margin-top: 200px;
}

/*
  Adjust item-person
  ---
*/

.section-split .item-person {
  margin-top: 54px;
  padding-top: 55px;
  border-top: 1px solid #D6D4D0;
}

/*
  image
  ---
*/

.section-split__image {
  width: 49.5%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background: #141414 center center no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 901px) {

  /*
    - align
    ...
  */

  .section-split--align-right .section-split__image {
    left: 0;
    right: auto;
  }

}

/*
  content
  ---
*/

.section-split__content {
  box-sizing: border-box;
  width: 50.5%;
  min-height: 658px;
  float: left;
  display: table;
  padding: 77px 111px 79px 187px;
}
.section-split__content__inset {
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (min-width: 901px) {

  /*
    - height
    ---
  */

  .section-split__content--height-small {
    min-height: 540px;
  }

  /*
    - padding
    ---
  */

  .section-split__content--padding-small {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-split__content--padding-none {
    padding-top: 11px;
    padding-bottom: 11px;
  }

}

@media only screen and (min-width: 901px) {

  /*
    - align
    ...
  */

  .section-split--align-right .section-split__content {
    float: right;
    padding-left: 111px;
    padding-right: 187px;
  }

  @media only screen and (max-width: 1350px) {

    .section-split--align-right .section-split__content {
      padding-left: 6%;
      padding-right: 6%;
    }

  }

}

/*
  - contain
  ...
*/

.section-split--contain-form .section-split__content {
  width: auto;
  max-width: 900px;
  float: none;
  display: block;
  margin: 0 auto;
  padding: 0;
}
.section-split--contain-form .section-split__content__inset {
  display: block;
}

/*
  head
  ---
*/

.section-split__head {
  margin-bottom: 38px;
}

/*
  -- list
  ---
*/

.section-split---list {
  display: block;
}

/*
  - layout
  ...
*/

.--layout-home .section-split---list {
  margin-top: 120px;
}

/*
  Adjust section-split
  ...
*/

.section-split---list .section-split {
  margin-bottom: 120px;
}

/*
  Gaps
*/

.section-split---list .section-split:last-child {
  margin-bottom: 0;
}

/*
  item-person
  ***
*/

.item-person__inset {
  position: relative;
  overflow: hidden;
  padding: 7px 0 8px 123px;
}

/*
  image
  ---
*/

.item-person__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

/*
  title
  ---
*/

.item-person__title {
  margin: 0;
}

/*
  contacts
  ---
*/

.item-person__contacts {
  margin: 13px 0 0 0;
  list-style: none;
}

/*
  ITEM
  ...
*/

.item-person__contacts li {
  margin-bottom: 2px;
}

/*
  Gaps
*/

.item-person__contacts li:last-child {
  margin-bottom: 0;
}

/*
  LINK
  ...
*/

.item-person__contacts li a {
  letter-spacing: 0;
  text-decoration: none;
  color: #656B66;
}

/* hover */

.item-person__contacts li a:hover {
  text-decoration: underline;
  color: #00A0E4;
}

/*
  item-dir
  ***
*/

.item-dir__inset {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  color: #656B66;
}

/* hover */

.item-dir__inset:hover {
  color: #656B66;
}

/*
  Adjust icon
  ---
*/

.item-dir .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 32px;
}

/*
  Adjust button
  ---
*/

.item-dir .button {
  margin: 18px 0 0 0;
}

/*
  title
  ---
*/

.item-dir__title {
  margin: 0;
}

/*
  BOLD
  ...
*/

.item-dir__title b {
  font-weight: 400;
  font-family: 'Clear Sans Bk', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #00A0E4;
}

/*
  excerpt
  ---
*/

.item-dir__excerpt {
  margin: 14px 0 0 0;
}

/*
  image
  ---
*/

.item-dir__image {
  display: block;
  margin-bottom: 33px;
}

/*
  item-team
  ***
*/

.item-team__inset {
  position: relative;
  display: block;
  padding: 0 16px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  color: #656B66;
}

/*
  image
  ---
*/

.item-team__image {
  max-width: 180px;
  display: block;
  margin: 0 auto 24px auto;
  border-radius: 50%;
}

/*
  title
  ---
*/

.item-team__title {
  margin: 0;
}

/*
  - detail
  ...
*/

.item-team__title--detail {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: #00A0E4;
  cursor: pointer;
}

/* hover */

.item-team__title--detail:hover {
  color: #000000;
}

/*
  excerpt
  ---
*/

.item-team__excerpt {
  margin: 8px 0 0 0;
}

/*
  position
  ---
*/

.item-team__position {
  margin: 4px 0 0 0;
  text-transform: uppercase;
  font-size: 80%;
}

/*
  contacts
  ---
*/

.item-team__contacts {
  margin: 8px 0 0 0;
  line-height: 1.8;
}

/*
  LINK
  ...
*/

.item-team__contacts a {
  display: block;
  word-break: break-all;
  line-height: inherit;
}

/*
  detail
  ---
*/

.item-team__detail {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: 150ms opacity linear;
}
.item-team__detail__inset {
  box-sizing: border-box;
  width: 460px;
  position: absolute;
  left: 50%;
  top: 10%;
  margin-left: -230px;
  padding: 32px 46px 16px 46px;
  background-color: #fff;
  box-shadow: 16px 16px 42px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 15px;
}

/* - active */

.item-team.--active .item-team__detail {
  pointer-events: all;
  opacity: 1;
}

/*
  IMG
  ...
*/

.item-team__detail img {
  max-width: 160px;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 50%;
}

/*
  close
  ...
*/

.item-team__detail__close {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 24px;
  top: 24px;
  transform: rotate(45deg);
  font-size: 0;
}

/*
  Icon
*/

.item-team__detail__close:before, 
.item-team__detail__close:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background-color: #000;
}
.item-team__detail__close:before {
  transform: rotate(90deg);
}
.item-team__detail__close:after {
  transform: rotate(0deg);
}

/*
  item-post
  ***
*/

.item-post__inset {
  position: relative;
  display: block;
  padding: 54px 24px 24px 24px;
  text-decoration: none;
  font-size: 16px;
  color: #656B66;
}

/* hover */

.item-post__inset:hover {
  color: #656B66;
}

/*
  - image
  ---
*/

.item-post--image .item-post__inset {
  padding: 32px 42px 32px 284px;
}

/*
  Line
  ---
*/

.item-post__inset:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #EFEFEF;
  transition: background-color 150ms linear, 
              height 150ms ease-in-out;
}

/* hover */

.item-post__inset:hover:before {
  height: 2px;
  background-color: #00A0E4;
}

/*
  - image
  ---
*/

.item-post--image .item-post__inset:before {
  display: none;
}

/*
  Adjust button
  ...
*/

.item-post .button {
  margin: 28px 0 0 0;
}

/*
  date
  ---
*/

.item-post__date {
  display: block;
  margin-bottom: 30px;
}

/*
  title
  ---
*/

.item-post__title {
  margin: 0;
}

/* hover */

.item-post__inset:hover .item-post__title {
  color: #00A0E4;
}

/*
  link
  ---
*/

.item-post__link {
  display: block;
  margin-top: 22px;
  text-decoration: underline;
  color: #00A0E4;
  transition: color 150ms linear;
}

/* hover */

.item-post__inset:hover .item-post__link {
  color: #000000;
}

/*
  image
  ---
*/

.item-post__image {
  width: 232px;
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  background: #141414 center center no-repeat;
  background-size: cover;
}

/*
  IMG
  ...
*/

.item-post__image img {
  display: block;
  opacity: 0;
}

/*
  list
  ***
*/

.list__inset {
  margin: 0 -8px -16px -8px;
  list-style: none;
  font-size: 0;
}

/*
  - layout
  ---
*/

.--layout-category .list--contain-stickies {
  max-width: 1252px;
  margin: 100px auto 0 auto;
}
.--layout-category .list--contain-posts {
  max-width: 1140px;
  margin: 120px auto 0 auto;
}
.--layout-post .list--contain-posts {
  max-width: 1352px;
  margin: 120px auto 0 auto;
}
.--layout-home .list--contain-posts {
  max-width: 1140px;
  margin: 200px auto 0 auto;
}
.--layout-home .list--contain-dirs {
  max-width: 1140px;
  margin: 150px auto 0 auto;
}
.--layout-landing .list--contain-posts {
  max-width: 1100px;
  margin: 140px auto 0 auto;
}
.--layout-landing .list--contain-posts + .list--contain-posts {
  margin-top: 84px;
}
.--layout-landing .list--contain-dirs {
  max-width: 1140px;
  margin: 120px auto 0 auto;
}

/*
  - gaps
  ---
*/

.list--gaps-01 .list__inset {
  margin: 0 -16px -32px -16px;
}

@media only screen and (min-width: 1251px) {

  /*
    - table
    ---
  */

  .list--table .list__inset {
    width: calc(100% + 16px);
    position: relative;
    left: -8px;
    display: table;
    border-collapse: collapse;
    margin: 0;
  }

  /*
    - fixed
    ...
  */

  .list--table--fixed .list__inset {
    table-layout: fixed;
  }

}

/*
  border
  ---
*/

.list__border {
  padding: 120px 6% 0 6%;
  border-top: 1px solid #D6D4D0;
}

/*
  head
  ---
*/

.list__head {
  margin-bottom: 52px;
}

@media only screen and (min-width: 951px) {

  /*
    - contain
    ...
  */

  .--layout-home .list--contain-dirs .list__head {
    margin-bottom: 126px;
  }
  .--layout-home .list--contain-posts .list__head {
    margin-bottom: 72px;
  }

}

/*
  title, subtitle
  ---
*/

.list__title, 
.list__subtitle {
  margin: 0 0 48px 0;
}

/*
  item
  ---
*/

.list__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1;
}
.list__item__inset {
  margin: 0 8px;
}

/*
  - gaps
  ...
*/

.list--gaps-01 .list__item {
  margin: 0 0 32px 0;
}
.list--gaps-01 .list__item__inset {
  margin: 0 16px;
}

@media only screen and (min-width: 1251px) {

  /*
    - table
    ...
  */

  .list--table .list__item {
    display: table-cell;
    margin: 0;
  }

}

/*
  foot
  ---
*/

.list__foot {
  margin-top: 56px;
}

/*
  Adjust nav-pagination
  ...
*/

.list__foot .nav-pagination {
  float: left;
  margin: 9px -8px 0 0;
  padding-left: 24px;
}

/*
  nav-pagination
  ***
*/

.nav-pagination {
  font-size: 0;
}

/*
  SPAN, LINK
  ---
*/

.nav-pagination span, 
.nav-pagination a {
  display: inline-block;
  vertical-align: middle;
  padding: 4px 8px;
  font-size: 18px;
}
.nav-pagination span {
  font-family: 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
}




/*
  Adjust button
  ...
*/

.list__foot .button {
  float: left;
  margin: 0 0 16px 0;
}

/*
  head
  ***
*/

.head {
  position: relative;
}

/*
  Adjust subtitle
  ---
*/

.head .subtitle {
  margin-bottom: 46px;
}

/*
  Gaps
  ...
*/

.head .subtitle:last-child {
  margin-bottom: 0;
}

/*
  button
  ---
*/

.head__button {
  margin: 38px 0 0 0;
}

/*
  more
  ---
*/

.head__more {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}

/*
  title
  ---
*/

.head__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.head__excerpt {
  margin: 16px 0 0 0;
  line-height: 1.2;
  line-height: 1.6;
  letter-spacing: 0.001em;
  font-size: 20px;
}

/*
  format
  ---
*/

.head__format {
  margin-top: 32px;
}

/*
  PRAGRAPH
  ...
*/

.head__table .head__format p {
  margin-bottom: -4px;
}

@media only screen and (min-width: 1151px) {

  /*
    table
    ---
  */

  .head__table {
    width: 100%;
    display: table;
  }

  /*
    Adjust title
    ...
  */

  .head__table .head__title {
    display: table-cell;
    vertical-align: bottom;
  }

  /*
    Adjust format
    ...
  */

  .head__table .head__format {
    width: 466px;
    display: table-cell;
    vertical-align: bottom;
    margin: 0;
    padding: 0 0 0 64px;
  }

}

/*
  detail-content
  ***
*/

.detail-content {
  margin-top: 120px;
}
.--layout-home .detail-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}


/*
  Adjust center
  ---
*/

.detail-content .center {
  max-width: 1140px;
  margin: 0 auto;
}

/*
  Adjust highlight
  ---
*/

.detail-content .highlight {
  margin: 24px 0;
}

/*
  Adjust figure
  ---
*/

.detail-content .figure {
  max-width: 1512px;
  margin: 0 auto;
}

/*
  detail-contact
  ***
*/

.detail-contact {
  padding-top: 82px;
}

/*
  - layout
  ---
*/

.--layout-branch .detail-contact {
  padding-top: 43px;
}

/*
  Adjust map-google
  ---
*/

.detail-contact .map-google {
  max-width: 1352px;
  margin: 80px auto 0 auto;
}

/*
  map-google
  ***
*/

.map-google {
  position: relative;
  z-index: 2;
  font-size: 0;
}

/*
  Adjust button
  ---
*/

.map-google .button {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  white-space: nowrap;
}

/*
  image
  ---
*/

.map-google__image {
  display: block;
}

/*
  canvas
  ---
*/

.map-google__canvas {
  height: 420px;
  background-color: #eee;
}

/*
  content
  ---
*/

.detail-contact__content {
  max-width: 1140px;
  margin: 84px auto 0 auto;
}

/*
  Adjust list
  ---
*/

.detail-contact .list--contain-contacts {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 6%;
}

/*
  Adjust regions
  ---
*/

.detail-contact .regions {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 6%;
}

/*
  Adjust regions
  ---
*/

.detail-contact .regions {
  margin-top: 120px;
}

/*
  regions
  ***
*/

.regions {
  position: relative;
}
.regions__inset {
  padding: 76px 64px 96px 80px;
  background-color: #F7F7F7;
}

/*
  Adjust map-regions
  ---
*/

.regions .map-regions {
  margin-top: 40px;
}

/*
  Adjust list
  ---
*/

.regions .list--contain-branches {
  margin-top: 56px;
}

/*
  title
  ---
*/

.regions__title {
  margin: 0 0 56px 0;
}

/*
  col
  ---
*/

.regions__col--align-left {
  width: 249px;
  float: left;
}
.regions__col--align-right {
  margin-left: 305px;
}

/*
  title
  ...
*/

.regions__col__title {
  margin: 0;
  font-size: 16px;
  color: #656B66;
}

/*
  nav
  ---
*/

.regions__nav {
  margin: 28px 0 0 0;
  list-style: none;
}

/*
  ITEM
  ...
*/

.regions__nav li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/*
  LINK
*/

.regions__nav li a {
  position: relative;
  display: block;
  padding: 12px 0 12px 0;
  line-height: 1.7;
  text-decoration: none;
  font: 400 14px 'Clear Sans SBd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
  transition: color 150ms linear;
}
.regions__nav li a:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #E9E9E9;
  transition: background-color 150ms linear, 
              height 150ms ease-in-out;
}

/* hover */

.regions__nav li.--active a {
  color: #00A0E4;
}
.regions__nav li.--active a:after {
  height: 2px;
  background-color: #00A0E4;
}

/*
  SMALL
  ...
*/

.regions__nav small {
  font-size: 100%;
  font-family: 'Clear Sans Bk', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #B3B7B4;
}

/*
  detail-post
  ***
*/

.detail-post {
  max-width: 1140px;
  margin: 84px auto 0 auto;
}

/*
  figure
  ---
*/

.detail-post__figure {
  position: relative;
  margin: 0 -106px;
}

/*
  date
  ---
*/

.detail-post__date {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 16px;
}

/*
  head
  ---
*/

.detail-post__head {
  position: relative;
  margin-bottom: -1px;
  padding-bottom: 118px;
  border-bottom: 1px solid #EFEFEF;
}

/*
  Adjust scroll
  ---
*/

.detail-post__head .scroll {
  position: absolute;
  right: 0;
  bottom: 124px;
}

/*
  Adjust head
  ---
*/

.detail-post__head .head {
  max-width: 755px;
}

/*
  content
  ---
*/

.detail-post__content {
  max-width: 754px;
  margin: 112px auto 0 auto;
}

@media only screen and (min-width: 1001px) {

  /*
    Adjust RULE
    ...
  */

  .detail-post__content hr {
    margin-left: -96px;
    margin-right: -96px;
  }

  /*
    Adjust table
    ...
  */

  .detail-post__content .table {
    margin-left: -96px;
    margin-right: -96px;
  }

  /*
    Adjust gallery
    ...
  */

  .detail-post__content .gallery {
    margin-left: -100px;
    margin-right: -100px;
  }

  /*
    Adjust accordion
    ...
  */

  .detail-post__content .accordion {
    margin-left: -96px;
    margin-right: -96px;
  }

}

/*
  site-wrap
  ***
*/

.site-wrap {
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
  padding-top: 143px;
}
.site-wrap__inset {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 6%;
}

/*
  - admin
  ---
*/

/*

.--admin .site-wrap {
  border-left: 1px dashed red;
  border-right: 1px dashed red;
}

*/

/*
  - snap
  ---
*/

.site-wrap--snap {
  padding-top: 0 !important;
}

/*
  site-head
  ***
*/

.site-head {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 0 6%;
  transition: 150ms linear;
}
.site-head__inset {
  max-width: 1352px;
  margin: 0 auto;
  padding: 24px 0 24px 0;
  text-align: center;
  transition: 150ms ease-in-out;
}

/*
  - pin
*/

.site-head--pin {
  background-color: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}
.site-head--pin .site-head__inset {
  padding: 10px 0;
  
}

/*
  Adjust burger
  ---
*/

.site-head .burger {
  float: right;
  display: none;
  margin: 9px 0 0 16px;
}

/*
  Adjust button
  ---
*/

.site-head .button {
  float: right;
  margin: 22px 0 0 0;
}

/*
  - pin
  ...
*/

.site-head--pin .button {
  margin-top: 4px;
}

/*
  logo
  ---
*/

.site-head__logo {
  overflow: hidden;
  float: left;
  text-decoration: none;
}

/*
  - pin
  ...
*/

.site-head--pin .site-head__logo {
  width: 193px;
  height: 32px;
  margin-top: 14px;
  background: url('../img/ci/logotype-color-h.svg') center center no-repeat;
  background-size: contain;
}

/*
  IMG
  ...
*/

.site-head__logo img {
  display: block;
}

/*
  - pin
*/

.site-head--pin .site-head__logo img {
  opacity: 0;
}

/*
  nav
  ---
*/

.site-head__nav {
  display: block;
  margin-top: 19px;
  transition: 150ms ease-in-out;
}

/*
  - pin
  ...
*/

.site-head--pin .site-head__nav {
  margin-top: 0;
}

/*
  LINK
  ...
*/

.site-head__nav a {
  display: inline-block;
  padding: 0 14px;
  text-transform: uppercase;
  text-decoration: none;
  font: 400 16px 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #000;
  transition: color 150ms linear;
}

/*
  - light
*/

.site-head--light:not(.site-head--pin) .site-head__nav a {
  color: #fff;
}

/* hover */

.site-head__nav a:hover {
  color: #00A0E4 !important;
}

/* - active */

.site-head__nav a.--active {
  color: #00A0E4 !important;
}

/*
  SPAN
*/

.site-head__nav a span {
  position: relative;
  display: block;
  padding: 16px 0;
  line-height: inherit;
}

/* Line */

.site-head__nav a span:after {
  content: '';
  width: 4px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #00A0E4;
  opacity: 0;
  transition: width 150ms ease-in-out, 
              height 150ms ease-in-out, 
              opacity 150ms linear;
}

/* hover */

.site-head__nav a:hover span:after {
  width: 100%;
  height: 2px;
  opacity: 1;
}

/* - active */

.site-head__nav a.--active span:after {
  width: 100%;
  height: 2px;
  opacity: 1;
}

/*
  site-promo
  ***
*/

.site-promo {
  width: 100%;
  height: 100vh;
  position: relative;
  display: table;
  background: #000000 center center no-repeat;
  background-size: cover;
}
.site-promo__inset {
  position: relative;
  z-index: 2;
  display: table-cell;
  vertical-align: bottom;
}

/*
  Overlay
  ---
*/

.--layout-home .site-promo:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  box-shadow: inset 0 0 800px rgba(0, 0, 0, 0.5), 
              inset 0 0 800px rgba(0, 0, 0, 0.5);
}

/*
  - layout-landing
  ...
*/

.--layout-landing .site-promo:before {
  box-shadow: inset 0 0 1000px rgba(0, 0, 0, 0.7), 
              inset 0 0 1000px rgba(0, 0, 0, 0.7), 
              inset 0 0 1000px rgba(0, 0, 0, 0.7), 
              inset 0 0 1000px rgba(0, 0, 0, 0.7);
}

/*
  Adjust scroll
  ---
*/

.site-promo .scroll {
  position: absolute;
  right: 64px;
  bottom: 104px;
  z-index: 2;
}

/*
  Adjust head
  ---
*/

.site-promo .head {
  box-sizing: border-box;
  max-width: 1512px;
  margin: 0 auto;
  padding: 200px 6% 104px 5.4%;
}

/*
  Adjust subtitle
  ...
*/

.site-promo .head .subtitle {
  margin-bottom: 39px;
}

/*
  title
  ...
*/

.site-promo .head__title {
  text-transform: uppercase;
  font-size: 64px;
  color: #fff;
}

/*
  video
  ---
*/

.site-promo__video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  opacity: 0.75;
}

/*
  site-promo-simple
  ***
*/

.site-promo-simple {
  padding: 220px 6% 0 6%;
  text-align: center;
}

/*
  site-inquiry
  ***
*/

.site-inquiry {
  width: 1920px;
  height: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 200;
  margin-left: -960px;
  background-color: rgba(0, 0, 0, 0.1);
}
.site-inquiry__inset {
  box-sizing: border-box;
  width: 720px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 72px 80px;
  background-color: #fff;
  border-right: 1px solid #F7F7F7;
}

/*
  close
  ---
*/

.site-inquiry__close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 40px;
  top: 40px;
  transform: rotate(45deg);
  font-size: 0;
}

/*
  Icon
  ...
*/

.site-inquiry__close:before, 
.site-inquiry__close:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background-color: #000;
}
.site-inquiry__close:before {
  transform: rotate(90deg);
}
.site-inquiry__close:after {
  transform: rotate(0deg);
}

/*
  site-foot
  ***
*/

.site-foot {
  position: relative;
  margin-top: 184px;
  padding: 0 6%;
}
.site-foot__inset {
  max-width: 1140px;
  position: relative;
  margin: 0 auto;
  padding-bottom: 64px;
}

/*
  Background
  ---
*/

.site-foot:before {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 0;
  background-color: #EFEFEF;
}

/*
  Adjust list-socials
  ---
*/

.site-foot .list-socials {
  float: right;
}

/*
  banner
  ---
*/

.site-foot__banner {
  margin-bottom: 144px;
  padding: 0 7.7% 64px 7.7%;
  background-color: #fff;
}

/*
  Adjust button
  ...
*/

.site-foot__banner .button {
  position: relative;
  z-index: 1;
  float: right;
  margin: 0;
}

/*
  title
  ...
*/

.site-foot__banner__title {
  margin: 0;
  padding-top: 4px;
}

/*
  logo
  ---
*/

.site-foot__logo {
  float: left;
  margin-left: 80px;
}

/*
  nav
  ---
*/

.site-foot__nav {
  margin: 0 382px 0 374px;
  padding-top: 8px;
}

/*
  list
  ...
*/

.site-foot__nav__list {
  width: 100%;
  display: table;
  margin: 0;
  list-style: none;
}
.site-foot__nav__list > li {
  display: table-cell;
  vertical-align: top;
  margin: 0;
  padding-right: 32px;
  line-height: 1;
}
.site-foot__nav__list > li:last-child {
  padding-right: 0;
}
.site-foot__nav__list > li > a {
  display: block;
  line-height: 1.4;
  text-decoration: none;
  font-size: 16px;
  color: #656B66;
}

/* hover, - active */

.site-foot__nav__list > li > a:hover, 
.site-foot__nav__list > li.--active > a {
  text-decoration: underline;
  color: #00A0E4;
}

/*
  2nd level
*/

.site-foot__nav__list > li > ul {
  margin: 29px 0 0 0;
  list-style: none;
  font-size: 0;
}
.site-foot__nav__list > li > ul > li {
  margin: 0 0 0 -2px;
  line-height: 1;
}
.site-foot__nav__list > li > ul > li > a {
  display: block;
  padding: 6px 0 6px 0;
  line-height: 1.6;
  text-decoration: none;
  font-size: 16px;
  font: 400 18px 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
}

/* hover, - active */

.site-foot__nav__list > li > ul > li > a:hover, 
.site-foot__nav__list > li > ul > li.--active > a {
  text-decoration: underline;
  color: #00A0E4;
}

/*
  contacts
  ---
*/

.site-foot__contacts {
  width: 273px;
  float: right;
  padding-top: 8px;
}

/*
  title
  ...
*/

.site-foot__contacts__title {
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
  color: #656B66;
}

/*
  list
  ...
*/

.site-foot__contacts__list {
  margin: 32px 0 0 0;
  list-style: none;
}

/*
  ITEM
*/

.site-foot__contacts__list li {
  margin-bottom: 4px;
}

/* Gaps */

.site-foot__contacts__list li:last-child {
  margin-bottom: 0;
}

/* LINK */

.site-foot__contacts__list li a {
  text-decoration: none;
  font-size: 24px;
  color: #000000;
}

/* hover */

.site-foot__contacts__list li a:hover {
  text-decoration: underline;
  color: #00A0E4;
}

/*
  separator
  ---
*/

.site-foot__separator {
  height: 1px;
  display: block;
  margin: 90px 0 33px 0;
  background-color: #E2E2E2;
}

/*
  copy
  ---
*/

.site-foot__copy {
  float: left;
  margin: 0;
  letter-spacing: 0;
  font-size: 16px;
}

/*
  IMG
  ...
*/

.site-foot__copy img {
  position: relative;
  bottom: -3px;
  margin-left: 1px;
}

/*
  links
  ---
*/

.site-foot__links {
  float: right;
  margin: 2px -20px 0 0;
  font-size: 0;
}

/*
  LINK
  ...
*/

.site-foot__links a {
  display: inline-block;
  margin: 0 20px;
  line-height: 1.6;
  font-size: 16px;
  font: 400 16px 'Clear Sans Bd', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  color: #000;
}

/* hover */

.site-foot__links a:hover {
  color: #00A0E4;
}

/*
  site-message
  ***
*/

.site-message {
  max-width: 740px;
  margin: 0 auto;
  padding: 120px 6% 0 6%;
  text-align: center;
}

/*
  Adjust button
  ---
*/

.site-message .button {
  margin: 32px 8px 0 8px;
}

/*
  Adjust flash
  ---
*/

.site-message .flash {
  margin-top: 42px;
}

/*
  title
  ---
*/

.site-message__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.site-message__excerpt {
  margin: 24px 0 0 0;
  font-size: 18px;
}

/*
  site-loader
  ***
*/

.site-loader {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 150ms linear;
}

/* - active */

.site-loader.--active {
  pointer-events: all;
  opacity: 1;
}

/*
  Icon
  ---
*/

.site-loader:before {
  content: '';
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -24px 0 0 -24px;
  background:  url('../img/site-loader.gif') center center no-repeat;
}

/*
  grecaptcha-badge
  ***
*/

.grecaptcha-badge {
  visibility: collapse;
}
