/* !Styles (Author: mail@jandousek.cz) */

/*
  Bodies
  ***
*/

html {
  background-color: #00636d;
}
body {
  position: relative;
  margin: 0 auto;
  padding-top: 127px;
  background-color: #fff;
  letter-spacing: -0.02em;
  font: 400 18px 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0f2325;
}

/*
  Links
  ***
*/

a {
  color: #00636d;
}
a:hover {
  color: #0f2325;
}

/*
  Forms
  ***
*/

input, textarea, select, button {
  font: 400 18px 'Montserrat', Arial, Helvetica, sans-serif;
}

/*
  - color
  ***
*/

.--color-green {
  color: #77A15E;
}

/*
  badge
  ***
*/

.badge {
  display: inline-block;
  background: url('../img/badge.svg') center center no-repeat;
  background-size: contain;
  text-align: center;
  font-size: 14px;
  color: #251f22;
}

/*
  SPAN
  ---
*/

.badge span {
  width: 120px;
  display: inline-block;
  padding: 42px 32px 32px 32px;
  line-height: 1.7;
  text-transform: 1px 1px 0 rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

/*
  rating
  ***
*/

.rating {
  width: 460px;
  display: table;
  margin: 0 auto;
  font-size: 17px;
}

/*
  IMG
  ---
*/

.rating img {
  float: left;
  margin-bottom: 16px;
}

/*
  ITALIC
  ---
*/

.rating i {
  float: right;
  margin: 12px 0 0 0;
  font-style: normal;
  font-size: 32px;
  color: #00636d;
}

/*
  SPAN
  ---
*/

.rating span {
  display: block;
  clear: both;
  line-height: 1.8;
}

/*
  + SPAN
  ---
*/

.rating span + span {
  margin-top: 12px;
  font-size: 75%;
}

/*
  modal
  ***
*/

.modal {
  width: 880px;
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  margin-left: -440px;
}
.modal__inset {
  height: 100%;
}

/*
  content
  ---
*/

.modal__content {
  max-height: calc(100% - 42px - 22px);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 42px 52px 22px 52px;
  background-color: #fff;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/*
  lexybox
  ***
*/

.lexybox--theme-modal {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 250ms linear;
}

/* - visible */

.lexybox--theme-modal.lexybox--visible {
  opacity: 1;
}

/*
  content
  ---
*/

.lexybox--theme-modal .lexybox-content {
  transform: scale(0.8);
  transition: transform 250ms ease-in-out;
}

/* - visible */

.lexybox--theme-modal.lexybox--visible .lexybox-content {
  transform: scale(1);
}

/*
  control
  ---
*/

.lexybox--theme-modal .lexybox-control--close {
  position: absolute;
  right: 4%;
  top: 6%;
  padding: 10px 11px;
  background: #D84949 10px center no-repeat;
  background-size: 10px auto;
  border-radius: 24px;
  text-decoration: none;
  font-size: 26px;
  color: #fff;
}

/* hover */

.lexybox--theme-modal .lexybox-control--close:hover {
  background-color: #B71616;
}

/*
  strip
  ***
*/

.strip {
  width: 100%;
  height: 70px;
  position: absolute;
  transform: scaleX(1);
  left: 0;
  display: block;
}

/*
  SVG
  ---
*/

.strip svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.strip path {
  fill: #fff;
}

/*
  - color
  ---
*/

.strip--color-blue path {
  fill: #ECF9FA;
}
.strip--color-lightyellow path {
  fill: #FFFAE9;
}
.strip--color-yellow path {
  fill: #FDF4D5;
}
.strip--color-pink path {
  fill: #FFECF1;
}
.strip--color-green path {
  fill: #FAFFF0;
}

/*
  reverse
  ...
*/

.strip--reverse svg {
  transform: scaleX(-1);
}

/*
  illustration
  ***
*/

.illustration {
  display: inline-block;
  background: center center no-repeat;
  background-size: contain;
}

/*
  input
  ***
*/

.input {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 16px;
  background: #F1F1F1 right 17px center no-repeat;
  background-color: rgba(0, 0, 0, 0.1);
  background-size: 17px auto;
  border: 1px solid #F1F1F1;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 15px;
  transition: 150ms linear;
}

/* focus */

.input:focus {
  background-color: #fff;
  box-shadow: 1px 1px 4px #F1F1F1;
  border-color: #979598;
  outline: none;
}

/* - error */

.input--error {
  border-color: #E20E1A;
}

/*
  select
  ---
*/

select.input {
  padding-right: 42px;
  background-image: url('../img/select.svg');
}

/*
  checkbox, radio
  ---
*/

.input[type="checkbox"], .input[type="radio"] {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: -1px 6px 0 0;
  padding: 0;
}
.input[type="checkbox"]:before, .input[type="radio"]:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* checked */

.input[type="checkbox"]:checked:before, .input[type="radio"]:checked:before {
  display: block;
}

/*
  radio
  ...
*/

.input[type="radio"], .input[type="radio"]:before {
  border-radius: 50%;
}
.input[type="radio"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #00636d;
}

/*
  button
  ***
*/

.button {
  display: inline-block;
  padding: 9px 22px 10px 22px;
  background-color: #3D4145;
  border: 2px solid #3D4145;
  border-radius: 32px;
  line-height: 1.7;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  transition: 150ms linear;
}

/* hover */

.button:hover {
  background-color: #5F666C;
  border-color: #5F666C;
  color: #fff;
}

/* hover */

.button:focus {
  background-color: #2D2F32;
  border-color: #2D2F32;
  color: #fff;
}

/*
  - color
  ---
*/

.button--color-info {
  background-color: #01636D;
  border-color: #01636D;
}
.button--color-success {
  background-color: #799F57;
  border-color: #799F57;
}
.button--color-warning {
  background-color: #F9BC0B;
  border-color: #F9BC0B;
  color: #332c18;
}

/*
  - color-trans
  ...
*/

.button--color-info.button--color-trans {
  background-color: transparent !important;
  color: #01636D;
}
.button--color-success.button--color-trans {
  background-color: transparent !important;
  color: #799F57;
}
.button--color-warning.button--color-trans {
  background-color: transparent !important;
  color: #332c18;
}

/* hover */

.button--color-info:hover {
  background-color: #158a97;
  border-color: #158a97;
}
.button--color-success:hover {
  background-color: #90BD68;
  border-color: #90BD68;
}
.button--color-warning:hover {
  background-color: #ffd452;
  border-color: #ffd452;
  color: #332c18;
}

/*
  field
  ***
*/

.field {
  margin-bottom: 20px;
  text-align: left;;
}

/*
  - contain-checkboxes
  ---
*/

.field--contain-checkboxes {
  padding: 12px 0 4px 12px;
  border: 1px dashed #F1F1F1;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/*
  LABEL
  ...
*/

.field--contain-checkboxes label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 16px 8px 0;
  font-size: 16px;
}

/*
  label
  ---
*/

.field__label {
  display: inline-block;
  margin-bottom: 8px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-weight: 500;
  font-size: 16px;
}
.field__label strong {
  color: #E20E1A;
}

/* - error */

.field--error .field__label {
  color: #E20E1A;
}

/*
  error
  ---
*/

.field__error {
  position: relative;
  display: inline-block;
  margin-top: 3px;
  padding: 2px 8px;
  background-color: #E20E1A;
  border-radius: 4px;
  line-height: 1.6;
  font-size: 12px;
  color: #fff;
}

/*
  Arrow
  ...
*/

.field__error:before {
  content: '';
  width: 9px;
  height: 9px;
  position: absolute;
  left: 14px;
  top: -4px;
  transform: rotate(45deg);
  background-color: inherit;
  border-radius: 2px;
}

/*
  flash
  ***
*/

.flash {
  position: relative;
  margin-bottom: 32px;
  padding: 14px 20px 14px 42px;
  background-color: #fff;
  box-shadow: 1px 1px 4px #F1F1F1;
  border: 1px dashed #222;
  border-radius: 6px;
  line-height: 1.5;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: #222;
}
.flash + .flash {
  margin-top: -16px;
}

/*
  type-*
  ---
*/

.flash--type-info {
  border-color: #3699C1;
  color: #3699C1;
}
.flash--type-error {
  border-color: #E20E1A;
  color: #E20E1A;
}
.flash--type-warning {
  border-color: #E49050;
  color: #E49050;
}
.flash--type-success {
  border-color: #91AD38;
  color: #91AD38;
}

/*
  adjust uil
  ---
*/

.flash .uil {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 130%;
}

/*
  LINK
  ---
*/

.flash a {
  color: inherit;
}

/*
  BOLD
  ---
*/

.flash b {
  font-size: 110%;
}

/*
  form
  ***
*/

.form {
  display: block;
}

/*
  gdpr
  ---
*/

.form__gdpr {
  margin: 0 0 20px 0;
  font-size: 14px;
}


/*
  list-reasons
  ***
*/

.list-reasons {
  display: block;
}

/*
  list
  ---
*/

.list-reasons__list {
  overflow: hidden;
  margin: 0 -16px -32px -16px;
  list-style: none;
  text-align: center;
  font-size: 0;
}

/*
  item
  ---
*/

.list-reasons__item {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 32px;
}
.list-reasons__item__inset {
  margin: 0 16px;
  line-height: 1.7;
  font-size: 17px;
}

/*
  - cols
  ---
*/

.list-reasons--cols-1 .list-reasons__item {
  width: 100%;
}
.list-reasons--cols-2 .list-reasons__item {
  width: 50%;
}
.list-reasons--cols-3 .list-reasons__item {
  width: 33.33%;
}
.list-reasons--cols-4 .list-reasons__item {
  width: 25%;
}

/*
  adjust illustration
  ---
*/

.list-reasons__item .illustration {
  width: 160px;
  height: 150px;
  display: block;
  margin: 0 auto 24px auto;
}

/*
  title
  ---
*/

.list-reasons__item__title {
  display: block;
  margin-bottom: 12px;
  line-height: inherit;
  font-size: 110%;
  color: #00636d;
}

/*
  list-benefits
  ***
*/

.list-benefits {
  margin: 0 -16px 0 -16px;
  list-style: none;
  text-align: center;
  font-size: 0;
}
.list-benefits > li {
  display: inline-block;
  vertical-align: top;
}

/*
  - cols
  ---
*/

.list-benefits--cols-1 > li {
  width: 100%;
}
.list-benefits--cols-2 > li {
  width: 50%;
}
.list-benefits--cols-3 > li {
  width: 33.33%;
}
.list-benefits--cols-4 > li {
  width: 25%;
}

/*
  SPAN
  ---
*/

.list-benefits span {
  position: relative;
  display: block;
  margin: 24px 16px 0 16px;
  padding: 28px 24px 18px 24px;
  border: 1px solid #5BCC63;
  border-radius: 6px;
  line-height: 1.8;
  font-size: 15px;
}

/*
  Icon
  ...
*/

.list-benefits span:before {
  content: '\e9c3';
  position: absolute;
  left: 50%;
  left: 50%;
  top: -24px;
  margin-left: -24px;
  padding: 1px 4px;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05);
  border: 1px solid #5BCC63;
  border-radius: 50%;
  font: 34px 'unicons-line';
  color: #5BCC63;
}

/*
  list-terms
  ***
*/

.list-terms {
  display: block;
}

/*
  list
  ---
*/

.list-terms__list {
  margin: 0 -12px -24px -12px;
  list-style: none;
  font-size: 0;
}

/*
  item
  ---
*/

.list-terms__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 24px 0;
  padding: 0;
  font-size: 16px;
}
.list-terms__item__inset {
  display: block;
  margin: 0 12px;
  padding: 18px 26px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgb(0, 0, 0, 0.05);
  border: 1px dashed #0F74AD;
  border-top: 3px solid #0F74AD;
}

/*
  - cols
  ...
*/

.list-terms--cols-1 .list-terms__item {
  width: 100%;
}
.list-terms--cols-2 .list-terms__item {
  width: 50%;
}
.list-terms--cols-3 .list-terms__item {
  width: 33.33%;
}
.list-terms--cols-4 .list-terms__item {
  width: 25%;
}

/*
  start
  ...
*/

.list-terms__item__start {
  float: left;
  margin-bottom: 8px;
  line-height: inherit;
}

/*
  end
  ...
*/

.list-terms__item__end {
  float: right;
  margin-bottom: 8px;
  line-height: inherit;
}

/*
  excerpt
  ...
*/

.list-terms__item__excerpt {
  display: block;
  clear: both;
  line-height: inherit;
}

/*
  list-progress
  ***
*/

.list-progress {
  overflow: hidden;
  padding-bottom: 44px;
}

/*
  list
  ---
*/

.list-progress__list {
  position: relative;
  margin: 0 0 -32px 0;
  list-style: none;
}

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

  /*
    Line
    ---
  */

  .list-progress__list:before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #eee;
  }

}

/*
  item
  ---
*/

.list-progress__item {
  position: relative;
  margin: 0 0 32px 0;
  font-size: 17px;
}

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

  /*
    odd
    ...
  */

  .list-progress__item:nth-child(odd) {
    margin-right: 50%;
    padding-right: 62px;
    text-align: right;
  }

  /*
    even
    ...
  */

  .list-progress__item:nth-child(even) {
    margin-left: 50%;
    padding-left: 62px;
    text-align: left;
  }

}

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

  /*
    adjust illustration
    ...
  */

  .list-progress__item .illustration {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    background-color: #fff;
  }
  
  /*
    Borders
  */

  .list-progress__item .illustration:before, 
  .list-progress__item .illustration:after {
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    left: 0;
    background: #fff;
  }
  .list-progress__item .illustration:before {
    top: -12px;
  }
  .list-progress__item .illustration:after {
    top: 60px;
  }

  /*
    odd
    ...
  */

  .list-progress__item:nth-child(odd) .illustration {
    right: -40px;
  }

  /*
    even
    ...
  */

  .list-progress__item:nth-child(even) .illustration {
    left: -40px;
  }

  /*
    first
    ...
  */

  .list-progress__item:first-child .illustration:after {
    height: 1000px;
    top: auto;
    bottom: 100%;
  }

  /*
    last
    ...
  */

  .list-progress__item:last-child .illustration:after {
    height: 1000px;
    top: 100%;
    bottom: auto;
  }

  /*
    adjust flash
    ...
  */

  .list-progress__item .flash {
    width: 60%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /*
    odd
    ...
  */

  .list-progress__item:nth-child(odd) .flash {
    left: 100%;
    margin-left: 64px;
  }

  /*
    even
    ...
  */

  .list-progress__item:nth-child(even) .flash {
    right: 100%;
    margin-right: 64px;
  }


}

/*
  title
  ...
*/

.list-progress__item__title {
  margin: 0;
}

/*
  excerpt
  ...
*/

.list-progress__item__excerpt {
  margin: 12px 0 0 0;
}

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

  /*
    nav-drop
    ***
  */

  .nav-drop {
    width: 240px;
    position: absolute;
    left: 50%;
    top: 100%;
    display: none;
    margin: 0 0 0 -126px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px dashed #0F74AD;
    border-top: 3px solid #0F74AD;
    border-radius: 6px;
    list-style: none;
    text-align: center;
    font-size: 16px;
  }

  /* hover */

  li:hover > .nav-drop {
    display: block;
  }

  /*
    Arrow
    ---
  */

  .nav-drop:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: -8px;
    margin-left: -3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #0F74AD;
  }

  /*
    Structure
    ---
  */

  .nav-drop > li {
    margin: 0;
    line-height: 1;
  }
  .nav-drop > li > a {
    display: block;
    padding: 2px 12px;
    text-decoration: none;
    line-height: 1.6;
  }

  /*
    Gaps
    ---
  */

  .nav-drop > li:first-child > a {
    padding-top: 12px;
  }
  .nav-drop > li:last-child > a {
    padding-bottom: 16px;
  }

  /* hover */

  .nav-drop > li:hover > a {
    text-decoration: underline;
    color: #0f2325;  
  }

  /* active */

  .nav-drop > li.--active > a {
    font-weight: 700;
    color: #0f2325;  
  }

}

/*
  accordion
  ***
*/

.accordion {
  display: block;
  margin: 32px 0;
}
.accordion + .accordion {
  margin-top: -16px;
}

/*
  title
  ---
*/

.accordion__title {
  position: relative;
  padding: 14px 64px 14px 24px;
  border: 1px solid #E6E6E6;
  border-color: rgba(0, 0, 0, 0.1);
  line-height: 1.7;
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 150ms linear;
}

/* - active */

.accordion.--active .accordion__title {
  background-color: #fff;
  border-bottom-color: transparent;
  font-weight: 700;
  color: #00636d;
}

/*
  Icon
  ...
*/

.accordion__title:before,
.accordion__title:after {
  content: '';
  width: 14px;
  height: 2px;
  position: absolute;
  right: 22px;
  top: 27px;
  background-color: #36312B;
}
.accordion__title:after {
  transform: rotate(90deg);
}

/* - active */

.accordion.--active .accordion__title:after {
  opacity: 0;
}

/*
  adjust illustration
  ...
*/

.accordion__title .illustration {
  width: 40px;
  height: 40px;
  position: absolute;
  left: -60px;
  top: 50%;
  margin-top: -20px;
}

/*
  content
  ---
*/

.accordion__content {
  padding: 24px 24px 0 24px;
  border: 1px solid #E6E6E6;
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

/*
  item-pricelist
  ***
*/

.item-pricelist__inset {
  position: relative;
  padding: 22px 26px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgb(0, 0, 0, 0.05);
  border: 1px dashed #0F74AD;
  border-top: 3px solid #0F74AD;
  border-radius: 6px;
  font-size: 16px;
}

/*
  adjust button
  ---
*/

.item-pricelist .button {
  margin: 16px 0 0 0
}

/*
  title
  ---
*/

.item-pricelist__title {
  margin: 0;
}

/*
  params
  ---
*/

.item-pricelist__params {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
}
.item-pricelist__params li {
  line-height: 1.7;
}

/*
  club
  ---
*/

.item-pricelist__club {
  display: table;
  margin: 16px 0 0 -27px;
  padding: 10px 20px 10px 26px;
  background-color: #F9DAE8;
  border-left: 1px dashed #af99a3;
  border-radius: 0 24px 24px 0;
  font-weight: 700;
  font-size: 15px;
  color: #57464e;
}

/*
  price
  ---
*/

.item-pricelist__price {
  margin: 16px 0 0 0;
  font-weight: 700;
  font-size: 20px;
  color: #00636d;
}

/*
  SMALL
  ...
*/

.item-pricelist__price small {
  display: block;
  line-height: 1.6;
  font-weight: 400;
  font-size: 14px;
}

/*
  label
  ---
*/

.item-pricelist__label {
  position: absolute;
  top: -17px;
  right: -1px;
  padding: 4px 14px;
  background-color: #333;
  border-radius: 24px 24px 0 24px;
  line-height: 1.6;
  font-size: 15px;
  color: #fff;
}


/*
  item-review
  ***
*/

.item-review {
  margin-bottom: 24px;
}
.item-review__inset {
  padding: 24px 32px;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05);
  border: 3px solid #0F74AD;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
}

/*
  image
  ---
*/

.item-review__image {
  display: block;
  margin: 0 auto 12px auto;
  border: 5px solid #ECF9FA;
  border-radius: 50%;
}

/*
  title
  ---
*/

.item-review__title {
  margin: 0;
}

/*
  note
  ---
*/

.item-review__note {
  max-width: 220px;
  margin: 0 auto 16px auto;
  font-style: italic;
  font-size: 70%;
  color: #585858;
}

/*
  Decorations
  ...
*/

.item-review__title:before, .item-review__title:after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url('../img/icons/blue/quote.svg') no-repeat;
}
.item-review__title:before {
  transform: scale(1, 1);
  vertical-align: super;
}
.item-review__title:after {
  transform: scale(-1, -1);
  vertical-align: sub;
}

/*
  excerpt
  ---
*/

.item-review__excerpt {
  margin: 12px 0 0 0;
}

/*
  item---list
  ***
*/

.item---list__inset {
  margin: 0 -16px -32px -16px;
  font-size: 0;
}

/*
  item
  ---
*/

.item---list__item {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 32px;
}
.item---list__item__inset {
  margin: 0 16px;
}

/*
  - cols
  ...
*/

.item---list--cols-1 .item---list__item {
  width: 100%;
}
.item---list--cols-2 .item---list__item {
  width: 50%;
}
.item---list--cols-3 .item---list__item {
  width: 33.33%;
}
.item---list--cols-4 .item---list__item {
  width: 25%;
}

/*
  detail-page
  ***
*/

.detail-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 6% 130px 6%;
}

/*
  title
  ---
*/

.detail-page__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.detail-page__excerpt {
  margin: 12px 0 0 0;
}

/*
  image
  ---
*/

.detail-page__image {
  display: block;
  margin: 32px 0 0 0;
}

/*
  content
  ---
*/

.detail-page__content {
  margin: 32px 0 0 0;
}

/*
  detail-error
  ***
*/

.detail-error {
  padding: 80px 6% 140px 6%;
  text-align: center;
}

/*
  adjust button
  ---
*/

.detail-error .button {
  margin: 24px 12px 0 12px;
}

/*
  title
  ---
*/

.detail-error__title {
  margin: 0;
}
.detail-error__title small {
  display: block;
  margin-top: 2px;
  line-height: inherit;
  font-weight: 400;
  font-size: 40%;
}

/*
  excerpt
  ---
*/

.detail-error__excerpt {
  margin: 16px 0 0 0;
}

/*
  site-wrap
  ***
*/

.site-wrap {
  overflow: hidden;
}

/*
  site-head
  ***
*/

.site-head {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 0 6%;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}
.site-head__inset {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 0;
}

/*
  adjust button
  ---
*/

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

/*
  adjust burger
  ---
*/

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

/*
  logo
  ---
*/

.site-head__logo {
  float: left;
  margin: 20px 38px 0 0;
}

/*
  langs
  ---
*/

.site-head__langs {
  position: relative;
  float: right;
  margin: 38px 0 0 24px;
  padding-bottom: 12px;
  font-size: 15px;
}

/*
  IMG
  ...
*/

.site-head__langs img {
  display: inline-block;
  vertical-align: middle;
  border-radius: 24px;
}

/*
  current
  ...
*/

.site-head__langs__current {
  display: block;
}

/*
  IMG
*/

.site-head__langs__current img {
  position: relative;
  top: -3px;
  margin-right: 6px;
}

/*
  list
  ...
*/

.site-head__langs__list {
  width: 160px;
  position: absolute;
  left: 50%;
  top: 100%;
  overflow: hidden;
  display: none;
  margin-left: -80px;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgb(0, 0, 0, 0.05);
  border: 1px dashed #0F74AD;
  border-top: 3px solid #0F74AD;
  border-radius: 6px;
}

/* actions */

.site-head__langs:hover .site-head__langs__list {
  display: block;
}

/*
  LINK
*/

.site-head__langs__list a {
  display: block;
  padding: 3px 12px 3px 12px;
  white-space: nowrap;
  text-decoration: none;
}

/*
  IMG
*/

.site-head__langs__list img {
  position: relative;
  top: -2px;
  margin-right: 6px;
}

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

  /*
    nav
    ---
  */

  .site-head__nav {
    margin: 0;
  }

  /*
    list
    ...
  */

  .site-head__nav__list {
    margin: 0;
    list-style: none;
    font-size: 0;
  }
  .site-head__nav__list > li {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1;
  }
  .site-head__nav__list > li > a {
    display: block;
    padding: 32px 14px 32px 18px;
    line-height: 1.7;
    text-decoration: none;
    font-size: 18px;
  }

  /* hover */
  
  .site-head__nav__list > li:hover > a > span {
    text-decoration: underline;
    color: #0f2325;  
  }
  
  /* active */
  
  .site-head__nav__list > li.--active > a > span {
    font-weight: 700;
    color: #0f2325;  
  }

}


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

  .site-head__nav .uil {
    display: none;
  }

}

/*
  site-promo
  ***
*/

.site-promo, .site-promo__inset {
  position: relative;
}
.site-promo {
  padding: 0 6%;
  background: #eee center center no-repeat;
  background-size: cover;
}
.site-promo__inset {
  width: 1140px;
  z-index: 1;
  display: table;
  margin: 0 auto;
  padding: 130px 0 240px 0;
}

/*
  Decorations
  ---
*/

.site-promo:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%,rgba(255, 255, 255, 0.8) 41%,rgba(255, 255, 255, 0) 100%);
}

/*
  adjust badge
  ---
*/

.site-promo .badge {
  position: absolute;
  right: 35%;
  bottom: 120px;
  transform: rotate(14deg);
}

/*
  adjust button
  ---
*/

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

/*
  adjust strip
  ---
*/

.site-promo .strip {
  bottom: -1px;
  transform: scaleY(-1);
}

/*
  col
  ---
*/

.site-promo__col {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

/*
  - align-right
  ...
*/

.site-promo__col--align-right {
  width: 360px;
  padding-left: 62px;
}

/*
  title
  ---
*/

.site-promo__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.site-promo__excerpt {
  max-width: 700px;
  margin: 24px 0 0 0;
  font-size: 20px;
}

/*
  site-content
  ***
*/

.site-content {
  position: relative;
  margin-top: 60px;
  padding: 0 6%;
}
.site-content__inset {
  max-width: 952px;
  overflow: hidden;
  margin: 0 auto;  
  padding: 48px 54px 32px 54px;
  background-color: #F9BC0B;
  border-radius: 8px;
}

/*
  site-section
  ***
*/

.site-section {
  position: relative;
  padding: 0 6%;
}
.site-section__inset {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 160px 0 60px 0;
}

/*
  - size
  ---
*/

.site-section--size-small .site-section__inset {
  max-width: 840px;
}

/*
  - color
  ---
*/

.site-section--color-blue {
  background-color: #ECF9FA;
}
.site-section--color-lightyellow {
  background-color: #FFFAE9;
}
.site-section--color-yellow {
  background-color: #FDF4D5;
}
.site-section--color-pink {
  background-color: #FFECF1;
}
.site-section--color-green {
  background-color: #FAFFF0;
}

/*
  adjust strip
  ---
*/

.site-section .strip {
  bottom: -69px;
}

/*
  head
  ---
*/

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

/*
  content
  ---
*/

.site-section__content {
  margin: 42px 0 -24px 0;
}
.site-section__content + .site-section__content {
  margin: 92px 0 -24px 0;
}

/*
  format
  ---
*/

.site-section__format {
  margin: 62px 0 0 0;
}

/*
  col
  ---
*/

.site-section__col {
  width: 45%;
  width: calc(50% - 24px);
  text-align: center;
}

/*
  - align
  ...
*/

.site-section__col--align-left {
  float: left;
}
.site-section__col--align-right {
  float: right;
}
.site-section__col--align-center {
  margin: 0 auto;
}

/*
  adjust button
  ...
*/

.site-section__col--align-center .button, 
.site-section__col--align-left .button {
  margin-bottom: 24px;
}

/*
  title
  ...
*/

.site-section__title {
  margin: 0;
}

/*
  excerpt
  ...
*/

.site-section__excerpt {
  margin: 12px 0 0 0;
}

/*
  note
  ...
*/

.site-section__note {
  clear: both;
  margin: 62px 0 0 0;
  text-align: center;
  font-size: 14px;
}

/*
  site-section--list
  ***
*/

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

/*
  adjust site---section
  ---
*/

.site-section---list .site-section:first-child .site-section__inset {
  padding-top: 60px;
}
.site-section---list .site-section:last-child .site-section__inset {
  padding-bottom: 140px;
}
.site-section---list .site-section:last-child .strip {
  display: none;
}

/*
  site-foot
  ***
*/

.site-foot {
  position: relative;
  z-index: 100;
  padding: 0 6%;
  background-color: #00636d;
  color: #fff;
}
.site-foot__inset {
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 0 26px 0;
}

/*
  adjust strip
  ---
*/

.site-foot .strip {
  top: -69px;
  transform: scale(-1, -1);
}
.site-foot .strip path {
  fill: #00636d;
}

/*
  right
  ---
*/

.site-foot__right {
  float: right;
  margin-top: -12px;
  text-align: right;
  font-size: 15px;
}

/*
  contacts
  ---
*/

.site-foot__contacts {
  float: left;
  margin: 0;
  list-style: none;
}
.site-foot__contacts li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}

/*
  adjust icon
  ...
*/

.site-foot__contacts .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.site-foot__contacts .icon path {
  fill: #71C6CE;
}

/*
  SMALL
  ...
*/

.site-foot__contacts small {
  display: block;
  margin: 4px 0 0 1px;
  line-height: inherit;
}

/*
  socials
  ---
*/

.site-foot__socials {
  margin: 16px 0;
  font-size: 0;
}

/*
  LINK
  ...
*/

.site-foot__socials a {
  display: inline-block;
  margin-left: 10px;
}

/*
  adjust icon
  ...
*/

.site-foot__socials .icon path {
  fill: #71C6CE;
  transition: fill 150ms linear;
}

/* hover */

.site-foot__socials .icon:hover path {
  fill: #fff;
}

/*
  copy
  ---
*/

.site-foot__copy {
  margin: 12px 0 0 0;
}

/*
  critical
  ...
*/

.site-foot__copy span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}
.site-foot__copy span a {
  position: relative;
  bottom: -4px;
  margin-left: 2px;
}