.grid {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.grid--flex {
  display: -webkit-box;
  display: flex;
}

.grid--inline {
  display: -webkit-inline-box;
  display: inline-flex;
}

.grid--items-start {
  -webkit-box-align: start;
  align-items: flex-start;
}

.grid--items-end {
  -webkit-box-align: end;
  align-items: flex-end;
}

.grid--items-center {
  -webkit-box-align: center;
  align-items: center;
}

.grid--items-stretch {
  -webkit-box-align: stretch;
  align-items: stretch;
}

.grid--justify-start {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.grid--justify-end {
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.grid--justify-center {
  -webkit-box-pack: center;
  justify-content: center;
}

.grid--justify-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.grid--justify-around {
  justify-content: space-around;
}

.grid--nowrap {
  flex-wrap: nowrap;
}

.grid--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.grid--1 > .grid__cell {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}

.grid--2 > .grid__cell {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
}

.grid--3 > .grid__cell {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
}

.grid--4 > .grid__cell {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
}

.grid--5 > .grid__cell {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
}

.grid--6 > .grid__cell {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
}

.grid--7 > .grid__cell {
  width: 14.28571%;
  max-width: 14.28571%;
  flex-basis: 14.28571%;
}

.grid--8 > .grid__cell {
  width: 12.5%;
  max-width: 12.5%;
  flex-basis: 12.5%;
}

.grid--9 > .grid__cell {
  width: 11.11111%;
  max-width: 11.11111%;
  flex-basis: 11.11111%;
}

.grid--10 > .grid__cell {
  width: 10%;
  max-width: 10%;
  flex-basis: 10%;
}

.grid--11 > .grid__cell {
  width: 9.09091%;
  max-width: 9.09091%;
  flex-basis: 9.09091%;
}

.grid--12 > .grid__cell {
  width: 8.33333%;
  max-width: 8.33333%;
  flex-basis: 8.33333%;
}

.grid--space {
  margin: -10px;
}

.grid--space > .grid__cell {
  padding: 10px;
}

.grid--space-x2 {
  margin: -20px;
}

.grid--space-x2 > .grid__cell {
  padding: 20px;
}

.grid--space-x3 {
  margin: -30px;
}

.grid--space-x3 > .grid__cell {
  padding: 30px;
}

.grid__cell {
  display: inline-block;
  min-width: 1px;
}

.grid__cell--start {
  align-self: flex-start;
}

.grid__cell--end {
  align-self: flex-end;
}

.grid__cell--center {
  -ms-grid-row-align: center;
  align-self: center;
}

.grid__cell--stretch {
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.grid__cell--nogrow {
  -webkit-box-flex: 0;
  flex-grow: 0;
}

.grid__cell--grow {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.grid__cell--shrink {
  flex-shrink: 1;
}

.grid__cell--noshrink {
  flex-shrink: 0;
}

.grid__cell--order-start {
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.grid__cell--order-end {
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.grid__cell--noorder {
  -webkit-box-ordinal-group: 1;
  order: 0;
}

.grid__cell--nobasis {
  flex-basis: 0;
}

.grid__cell--1 {
  -webkit-box-flex: 0;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.grid__cell--2 {
  -webkit-box-flex: 0;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.grid__cell--3 {
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
}

.grid__cell--4 {
  -webkit-box-flex: 0;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.grid__cell--5 {
  -webkit-box-flex: 0;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.grid__cell--6 {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.grid__cell--7 {
  -webkit-box-flex: 0;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.grid__cell--8 {
  -webkit-box-flex: 0;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.grid__cell--9 {
  -webkit-box-flex: 0;
  flex: 0 0 75%;
  max-width: 75%;
}

.grid__cell--10 {
  -webkit-box-flex: 0;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.grid__cell--11 {
  -webkit-box-flex: 0;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.grid__cell--12 {
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

.grid__box {
  height: 100%;
  min-height: 100%;
}

@media only screen and (min-width: 481px) {
  .grid--sm-items-start {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .grid--sm-items-end {
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .grid--sm-items-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .grid--sm-items-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  .grid--sm-justify-start {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .grid--sm-justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  .grid--sm-justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }
  .grid--sm-justify-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .grid--sm-justify-around {
    justify-content: space-around;
  }
  .grid--sm-nowrap {
    flex-wrap: nowrap;
  }
  .grid--sm-wrap {
    flex-wrap: wrap;
  }
  .grid--sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .grid--sm-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .grid--sm-1 > .grid__cell {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid--sm-2 > .grid__cell {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid--sm-3 > .grid__cell {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid--sm-4 > .grid__cell {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid--sm-5 > .grid__cell {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .grid--sm-6 > .grid__cell {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid--sm-7 > .grid__cell {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .grid--sm-8 > .grid__cell {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .grid--sm-9 > .grid__cell {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .grid--sm-10 > .grid__cell {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .grid--sm-11 > .grid__cell {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .grid--sm-12 > .grid__cell {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid--sm-space {
    margin: -10px;
  }
  .grid--sm-space > .grid__cell {
    padding: 10px;
  }
  .grid--sm-space-x2 {
    margin: -20px;
  }
  .grid--sm-space-x2 > .grid__cell {
    padding: 20px;
  }
  .grid--sm-space-x3 {
    margin: -30px;
  }
  .grid--sm-space-x3 > .grid__cell {
    padding: 30px;
  }
  .grid--sm-nospace {
    margin: 0;
  }
  .grid--sm-nospace > .grid__cell {
    padding: 0;
  }
  .grid__cell--sm-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid__cell--sm-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid__cell--sm-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid__cell--sm-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid__cell--sm-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .grid__cell--sm-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid__cell--sm-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .grid__cell--sm-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .grid__cell--sm-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .grid__cell--sm-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .grid__cell--sm-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .grid__cell--sm-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid__cell--sm-auto {
    width: auto;
    max-width: 100%;
    flex-basis: auto;
  }
  .grid__cell--sm-start {
    align-self: flex-start;
  }
  .grid__cell--sm-end {
    align-self: flex-end;
  }
  .grid__cell--sm-center {
    -ms-grid-row-align: center;
    align-self: center;
  }
  .grid__cell--sm-stretch {
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .grid__cell--sm-nogrow {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }
  .grid__cell--sm-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  .grid__cell--sm-shrink {
    flex-shrink: 1;
  }
  .grid__cell--sm-noshrink {
    flex-shrink: 0;
  }
  .grid__cell--sm-order-start {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .grid__cell--sm-order-end {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .grid__cell--sm-noorder {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .grid__cell--sm-nobasis {
    flex-basis: 0;
  }
}

@media only screen and (min-width: 769px) {
  .grid--md-items-start {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .grid--md-items-end {
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .grid--md-items-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .grid--md-items-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  .grid--md-justify-start {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .grid--md-justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  .grid--md-justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }
  .grid--md-justify-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .grid--md-justify-around {
    justify-content: space-around;
  }
  .grid--md-nowrap {
    flex-wrap: nowrap;
  }
  .grid--md-wrap {
    flex-wrap: wrap;
  }
  .grid--md-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .grid--md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .grid--md-1 > .grid__cell {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid--md-2 > .grid__cell {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid--md-3 > .grid__cell {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid--md-4 > .grid__cell {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid--md-5 > .grid__cell {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .grid--md-6 > .grid__cell {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid--md-7 > .grid__cell {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .grid--md-8 > .grid__cell {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .grid--md-9 > .grid__cell {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .grid--md-10 > .grid__cell {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .grid--md-11 > .grid__cell {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .grid--md-12 > .grid__cell {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid--md-space {
    margin: -10px;
  }
  .grid--md-space > .grid__cell {
    padding: 10px;
  }
  .grid--md-space-x2 {
    margin: -20px;
  }
  .grid--md-space-x2 > .grid__cell {
    padding: 20px;
  }
  .grid--md-space-x3 {
    margin: -30px;
  }
  .grid--md-space-x3 > .grid__cell {
    padding: 30px;
  }
  .grid--md-nospace {
    margin: 0;
  }
  .grid--md-nospace > .grid__cell {
    padding: 0;
  }
  .grid__cell--md-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid__cell--md-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid__cell--md-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid__cell--md-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid__cell--md-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .grid__cell--md-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid__cell--md-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .grid__cell--md-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .grid__cell--md-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .grid__cell--md-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .grid__cell--md-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .grid__cell--md-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid__cell--md-auto {
    width: auto;
    max-width: 100%;
    flex-basis: auto;
  }
  .grid__cell--md-start {
    align-self: flex-start;
  }
  .grid__cell--md-end {
    align-self: flex-end;
  }
  .grid__cell--md-center {
    -ms-grid-row-align: center;
    align-self: center;
  }
  .grid__cell--md-stretch {
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .grid__cell--md-nogrow {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }
  .grid__cell--md-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  .grid__cell--md-shrink {
    flex-shrink: 1;
  }
  .grid__cell--md-noshrink {
    flex-shrink: 0;
  }
  .grid__cell--md-order-start {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .grid__cell--md-order-end {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .grid__cell--md-noorder {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .grid__cell--md-nobasis {
    flex-basis: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .grid--lg-items-start {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .grid--lg-items-end {
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .grid--lg-items-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .grid--lg-items-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  .grid--lg-justify-start {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .grid--lg-justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  .grid--lg-justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }
  .grid--lg-justify-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .grid--lg-justify-around {
    justify-content: space-around;
  }
  .grid--lg-nowrap {
    flex-wrap: nowrap;
  }
  .grid--lg-wrap {
    flex-wrap: wrap;
  }
  .grid--lg-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .grid--lg-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .grid--lg-1 > .grid__cell {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid--lg-2 > .grid__cell {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid--lg-3 > .grid__cell {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid--lg-4 > .grid__cell {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid--lg-5 > .grid__cell {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .grid--lg-6 > .grid__cell {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid--lg-7 > .grid__cell {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .grid--lg-8 > .grid__cell {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .grid--lg-9 > .grid__cell {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .grid--lg-10 > .grid__cell {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .grid--lg-11 > .grid__cell {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .grid--lg-12 > .grid__cell {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid--lg-space {
    margin: -10px;
  }
  .grid--lg-space > .grid__cell {
    padding: 10px;
  }
  .grid--lg-space-x2 {
    margin: -20px;
  }
  .grid--lg-space-x2 > .grid__cell {
    padding: 20px;
  }
  .grid--lg-space-x3 {
    margin: -30px;
  }
  .grid--lg-space-x3 > .grid__cell {
    padding: 30px;
  }
  .grid--lg-nospace {
    margin: 0;
  }
  .grid--lg-nospace > .grid__cell {
    padding: 0;
  }
  .grid__cell--lg-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid__cell--lg-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid__cell--lg-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid__cell--lg-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid__cell--lg-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .grid__cell--lg-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid__cell--lg-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .grid__cell--lg-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .grid__cell--lg-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .grid__cell--lg-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .grid__cell--lg-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .grid__cell--lg-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid__cell--lg-auto {
    width: auto;
    max-width: 100%;
    flex-basis: auto;
  }
  .grid__cell--lg-start {
    align-self: flex-start;
  }
  .grid__cell--lg-end {
    align-self: flex-end;
  }
  .grid__cell--lg-center {
    -ms-grid-row-align: center;
    align-self: center;
  }
  .grid__cell--lg-stretch {
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .grid__cell--lg-nogrow {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }
  .grid__cell--lg-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  .grid__cell--lg-shrink {
    flex-shrink: 1;
  }
  .grid__cell--lg-noshrink {
    flex-shrink: 0;
  }
  .grid__cell--lg-order-start {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .grid__cell--lg-order-end {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .grid__cell--lg-noorder {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .grid__cell--lg-nobasis {
    flex-basis: 0;
  }
}

@media only screen and (min-width: 1281px) {
  .grid--xl-items-start {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .grid--xl-items-end {
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .grid--xl-items-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .grid--xl-items-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  .grid--xl-justify-start {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .grid--xl-justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  .grid--xl-justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }
  .grid--xl-justify-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .grid--xl-justify-around {
    justify-content: space-around;
  }
  .grid--xl-nowrap {
    flex-wrap: nowrap;
  }
  .grid--xl-wrap {
    flex-wrap: wrap;
  }
  .grid--xl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .grid--xl-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .grid--xl-1 > .grid__cell {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid--xl-2 > .grid__cell {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid--xl-3 > .grid__cell {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid--xl-4 > .grid__cell {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid--xl-5 > .grid__cell {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .grid--xl-6 > .grid__cell {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid--xl-7 > .grid__cell {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .grid--xl-8 > .grid__cell {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .grid--xl-9 > .grid__cell {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .grid--xl-10 > .grid__cell {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .grid--xl-11 > .grid__cell {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .grid--xl-12 > .grid__cell {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid--xl-space {
    margin: -10px;
  }
  .grid--xl-space > .grid__cell {
    padding: 10px;
  }
  .grid--xl-space-x2 {
    margin: -20px;
  }
  .grid--xl-space-x2 > .grid__cell {
    padding: 20px;
  }
  .grid--xl-space-x3 {
    margin: -30px;
  }
  .grid--xl-space-x3 > .grid__cell {
    padding: 30px;
  }
  .grid--xl-nospace {
    margin: 0;
  }
  .grid--xl-nospace > .grid__cell {
    padding: 0;
  }
  .grid__cell--xl-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .grid__cell--xl-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .grid__cell--xl-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .grid__cell--xl-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .grid__cell--xl-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .grid__cell--xl-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .grid__cell--xl-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .grid__cell--xl-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .grid__cell--xl-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .grid__cell--xl-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .grid__cell--xl-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .grid__cell--xl-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .grid__cell--xl-auto {
    width: auto;
    max-width: 100%;
    flex-basis: auto;
  }
  .grid__cell--xl-start {
    align-self: flex-start;
  }
  .grid__cell--xl-end {
    align-self: flex-end;
  }
  .grid__cell--xl-center {
    -ms-grid-row-align: center;
    align-self: center;
  }
  .grid__cell--xl-stretch {
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .grid__cell--xl-nogrow {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }
  .grid__cell--xl-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  .grid__cell--xl-shrink {
    flex-shrink: 1;
  }
  .grid__cell--xl-noshrink {
    flex-shrink: 0;
  }
  .grid__cell--xl-order-start {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .grid__cell--xl-order-end {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .grid__cell--xl-noorder {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .grid__cell--xl-nobasis {
    flex-basis: 0;
  }
}

._color-inherit {
  color: inherit !important;
}

._color-inherit-hover:hover {
  color: inherit !important;
}

._color-black {
  color: #000 !important;
}

._color-black-hover:hover {
  color: #000 !important;
}

._bg-black {
  background-color: #000 !important;
}

._bg-black-hover:hover {
  background-color: #000 !important;
}

._fill-black {
  fill: #000 !important;
}

._fill-black-hover:hover {
  fill: #000 !important;
}

._color-white {
  color: #fff !important;
}

._color-white-hover:hover {
  color: #fff !important;
}

._bg-white {
  background-color: #fff !important;
}

._bg-white-hover:hover {
  background-color: #fff !important;
}

._fill-white {
  fill: #fff !important;
}

._fill-white-hover:hover {
  fill: #fff !important;
}

._color-primary {
  color: #6395c4 !important;
}

._color-primary-hover:hover {
  color: #6395c4 !important;
}

._bg-primary {
  background-color: #6395c4 !important;
}

._bg-primary-hover:hover {
  background-color: #6395c4 !important;
}

._fill-primary {
  fill: #6395c4 !important;
}

._fill-primary-hover:hover {
  fill: #6395c4 !important;
}

._color-secondary {
  color: #6395c4 !important;
}

._color-secondary-hover:hover {
  color: #6395c4 !important;
}

._bg-secondary {
  background-color: #6395c4 !important;
}

._bg-secondary-hover:hover {
  background-color: #6395c4 !important;
}

._fill-secondary {
  fill: #354f5e !important;
}

._fill-secondary-hover:hover {
  fill: #354f5e !important;
}

._color-success {
  color: green !important;
}

._color-success-hover:hover {
  color: green !important;
}

._bg-success {
  background-color: green !important;
}

._bg-success-hover:hover {
  background-color: green !important;
}

._fill-success {
  fill: green !important;
}

._fill-success-hover:hover {
  fill: green !important;
}

._color-info {
  color: blue !important;
}

._color-info-hover:hover {
  color: blue !important;
}

._bg-info {
  background-color: blue !important;
}

._bg-info-hover:hover {
  background-color: blue !important;
}

._fill-info {
  fill: blue !important;
}

._fill-info-hover:hover {
  fill: blue !important;
}

._color-danger {
  color: red !important;
}

._color-danger-hover:hover {
  color: red !important;
}

._bg-danger {
  background-color: red !important;
}

._bg-danger-hover:hover {
  background-color: red !important;
}

._fill-danger {
  fill: red !important;
}

._fill-danger-hover:hover {
  fill: red !important;
}

._color-trans {
  color: transparent !important;
}

._color-trans-hover:hover {
  color: transparent !important;
}

._bg-trans {
  background-color: transparent !important;
}

._bg-trans-hover:hover {
  background-color: transparent !important;
}

._fill-trans {
  fill: transparent !important;
}

._fill-trans-hover:hover {
  fill: transparent !important;
}

._m {
  margin: 20px !important;
}

._m-x2 {
  margin: 40px !important;
}

._m-x3 {
  margin: 60px !important;
}

._mt {
  margin-top: 20px !important;
}

._mt-x2 {
  margin-top: 40px !important;
}

._mt-x3 {
  margin-top: 60px !important;
}

._mt-none {
  margin-top: 0 !important;
}

._mr {
  margin-right: 20px !important;
}

._mr-x2 {
  margin-right: 40px !important;
}

._mr-x3 {
  margin-right: 60px !important;
}

._mr-none {
  margin-right: 0 !important;
}

._mb {
  margin-bottom: 20px !important;
}

._mb-x2 {
  margin-bottom: 40px !important;
}

._mb-x3 {
  margin-bottom: 60px !important;
}

._mb-none {
  margin-bottom: 0 !important;
}

._ml {
  margin-left: 20px !important;
}

._ml-x2 {
  margin-left: 40px !important;
}

._ml-x3 {
  margin-left: 60px !important;
}

._ml-none {
  margin-left: 0 !important;
}

._m-none {
  margin: 0 !important;
}

._p {
  padding: 20px !important;
}

._p-x2 {
  padding: 40px !important;
}

._p-x3 {
  padding: 60px !important;
}

._pt {
  padding-top: 20px !important;
}

._pt-x2 {
  padding-top: 40px !important;
}

._pt-x3 {
  padding-top: 60px !important;
}

._pt-none {
  padding-top: 0 !important;
}

._pr {
  padding-right: 20px !important;
}

._pr-x2 {
  padding-right: 40px !important;
}

._pr-x3 {
  padding-right: 60px !important;
}

._pr-none {
  padding-right: 0 !important;
}

._pb {
  padding-bottom: 20px !important;
}

._pb-x2 {
  padding-bottom: 40px !important;
}

._pb-x3 {
  padding-bottom: 60px !important;
}

._pb-none {
  padding-bottom: 0 !important;
}

._pl {
  padding-left: 20px !important;
}

._pl-x2 {
  padding-left: 40px !important;
}

._pl-x3 {
  padding-left: 60px !important;
}

._pl-none {
  padding-left: 0 !important;
}

._p-none {
  padding: 0 !important;
}

._m-auto {
  margin: auto !important;
}

._ml-auto {
  margin-left: auto !important;
}

._mr-auto {
  margin-right: auto !important;
}

@media only screen and (min-width: 481px) {
  ._sm-m {
    margin: 20px !important;
  }
  ._sm-m-x2 {
    margin: 40px !important;
  }
  ._sm-m-x3 {
    margin: 60px !important;
  }
  ._sm-mt {
    margin-top: 20px !important;
  }
  ._sm-mt-x2 {
    margin-top: 40px !important;
  }
  ._sm-mt-x3 {
    margin-top: 60px !important;
  }
  ._sm-mt-none {
    margin-top: 0 !important;
  }
  ._sm-mr {
    margin-right: 20px !important;
  }
  ._sm-mr-x2 {
    margin-right: 40px !important;
  }
  ._sm-mr-x3 {
    margin-right: 60px !important;
  }
  ._sm-mr-none {
    margin-right: 0 !important;
  }
  ._sm-mb {
    margin-bottom: 20px !important;
  }
  ._sm-mb-x2 {
    margin-bottom: 40px !important;
  }
  ._sm-mb-x3 {
    margin-bottom: 60px !important;
  }
  ._sm-mb-none {
    margin-bottom: 0 !important;
  }
  ._sm-ml {
    margin-left: 20px !important;
  }
  ._sm-ml-x2 {
    margin-left: 40px !important;
  }
  ._sm-ml-x3 {
    margin-left: 60px !important;
  }
  ._sm-ml-none {
    margin-left: 0 !important;
  }
  ._sm-m-none {
    margin: 0 !important;
  }
  ._sm-p {
    padding: 20px !important;
  }
  ._sm-p-x2 {
    padding: 40px !important;
  }
  ._sm-p-x3 {
    padding: 60px !important;
  }
  ._sm-pt {
    padding-top: 20px !important;
  }
  ._sm-pt-x2 {
    padding-top: 40px !important;
  }
  ._sm-pt-x3 {
    padding-top: 60px !important;
  }
  ._sm-pt-none {
    padding-top: 0 !important;
  }
  ._sm-pr {
    padding-right: 20px !important;
  }
  ._sm-pr-x2 {
    padding-right: 40px !important;
  }
  ._sm-pr-x3 {
    padding-right: 60px !important;
  }
  ._sm-pr-none {
    padding-right: 0 !important;
  }
  ._sm-pb {
    padding-bottom: 20px !important;
  }
  ._sm-pb-x2 {
    padding-bottom: 40px !important;
  }
  ._sm-pb-x3 {
    padding-bottom: 60px !important;
  }
  ._sm-pb-none {
    padding-bottom: 0 !important;
  }
  ._sm-pl {
    padding-left: 20px !important;
  }
  ._sm-pl-x2 {
    padding-left: 40px !important;
  }
  ._sm-pl-x3 {
    padding-left: 60px !important;
  }
  ._sm-pl-none {
    padding-left: 0 !important;
  }
  ._sm-p-none {
    padding: 0 !important;
  }
  ._sm-m-auto {
    margin: auto !important;
  }
  ._sm-ml-auto {
    margin-left: auto !important;
  }
  ._sm-mr-auto {
    margin-right: auto !important;
  }
}

@media only screen and (min-width: 769px) {
  ._md-m {
    margin: 20px !important;
  }
  ._md-m-x2 {
    margin: 40px !important;
  }
  ._md-m-x3 {
    margin: 60px !important;
  }
  ._md-mt {
    margin-top: 20px !important;
  }
  ._md-mt-x2 {
    margin-top: 40px !important;
  }
  ._md-mt-x3 {
    margin-top: 60px !important;
  }
  ._md-mt-none {
    margin-top: 0 !important;
  }
  ._md-mr {
    margin-right: 20px !important;
  }
  ._md-mr-x2 {
    margin-right: 40px !important;
  }
  ._md-mr-x3 {
    margin-right: 60px !important;
  }
  ._md-mr-none {
    margin-right: 0 !important;
  }
  ._md-mb {
    margin-bottom: 20px !important;
  }
  ._md-mb-x2 {
    margin-bottom: 40px !important;
  }
  ._md-mb-x3 {
    margin-bottom: 60px !important;
  }
  ._md-mb-none {
    margin-bottom: 0 !important;
  }
  ._md-ml {
    margin-left: 20px !important;
  }
  ._md-ml-x2 {
    margin-left: 40px !important;
  }
  ._md-ml-x3 {
    margin-left: 60px !important;
  }
  ._md-ml-none {
    margin-left: 0 !important;
  }
  ._md-m-none {
    margin: 0 !important;
  }
  ._md-p {
    padding: 20px !important;
  }
  ._md-p-x2 {
    padding: 40px !important;
  }
  ._md-p-x3 {
    padding: 60px !important;
  }
  ._md-pt {
    padding-top: 20px !important;
  }
  ._md-pt-x2 {
    padding-top: 40px !important;
  }
  ._md-pt-x3 {
    padding-top: 60px !important;
  }
  ._md-pt-none {
    padding-top: 0 !important;
  }
  ._md-pr {
    padding-right: 20px !important;
  }
  ._md-pr-x2 {
    padding-right: 40px !important;
  }
  ._md-pr-x3 {
    padding-right: 60px !important;
  }
  ._md-pr-none {
    padding-right: 0 !important;
  }
  ._md-pb {
    padding-bottom: 20px !important;
  }
  ._md-pb-x2 {
    padding-bottom: 40px !important;
  }
  ._md-pb-x3 {
    padding-bottom: 60px !important;
  }
  ._md-pb-none {
    padding-bottom: 0 !important;
  }
  ._md-pl {
    padding-left: 20px !important;
  }
  ._md-pl-x2 {
    padding-left: 40px !important;
  }
  ._md-pl-x3 {
    padding-left: 60px !important;
  }
  ._md-pl-none {
    padding-left: 0 !important;
  }
  ._md-p-none {
    padding: 0 !important;
  }
  ._md-m-auto {
    margin: auto !important;
  }
  ._md-ml-auto {
    margin-left: auto !important;
  }
  ._md-mr-auto {
    margin-right: auto !important;
  }
}

@media only screen and (min-width: 1025px) {
  ._lg-m {
    margin: 20px !important;
  }
  ._lg-m-x2 {
    margin: 40px !important;
  }
  ._lg-m-x3 {
    margin: 60px !important;
  }
  ._lg-mt {
    margin-top: 20px !important;
  }
  ._lg-mt-x2 {
    margin-top: 40px !important;
  }
  ._lg-mt-x3 {
    margin-top: 60px !important;
  }
  ._lg-mt-none {
    margin-top: 0 !important;
  }
  ._lg-mr {
    margin-right: 20px !important;
  }
  ._lg-mr-x2 {
    margin-right: 40px !important;
  }
  ._lg-mr-x3 {
    margin-right: 60px !important;
  }
  ._lg-mr-none {
    margin-right: 0 !important;
  }
  ._lg-mb {
    margin-bottom: 20px !important;
  }
  ._lg-mb-x2 {
    margin-bottom: 40px !important;
  }
  ._lg-mb-x3 {
    margin-bottom: 60px !important;
  }
  ._lg-mb-none {
    margin-bottom: 0 !important;
  }
  ._lg-ml {
    margin-left: 20px !important;
  }
  ._lg-ml-x2 {
    margin-left: 40px !important;
  }
  ._lg-ml-x3 {
    margin-left: 60px !important;
  }
  ._lg-ml-none {
    margin-left: 0 !important;
  }
  ._lg-m-none {
    margin: 0 !important;
  }
  ._lg-p {
    padding: 20px !important;
  }
  ._lg-p-x2 {
    padding: 40px !important;
  }
  ._lg-p-x3 {
    padding: 60px !important;
  }
  ._lg-pt {
    padding-top: 20px !important;
  }
  ._lg-pt-x2 {
    padding-top: 40px !important;
  }
  ._lg-pt-x3 {
    padding-top: 60px !important;
  }
  ._lg-pt-none {
    padding-top: 0 !important;
  }
  ._lg-pr {
    padding-right: 20px !important;
  }
  ._lg-pr-x2 {
    padding-right: 40px !important;
  }
  ._lg-pr-x3 {
    padding-right: 60px !important;
  }
  ._lg-pr-none {
    padding-right: 0 !important;
  }
  ._lg-pb {
    padding-bottom: 20px !important;
  }
  ._lg-pb-x2 {
    padding-bottom: 40px !important;
  }
  ._lg-pb-x3 {
    padding-bottom: 60px !important;
  }
  ._lg-pb-none {
    padding-bottom: 0 !important;
  }
  ._lg-pl {
    padding-left: 20px !important;
  }
  ._lg-pl-x2 {
    padding-left: 40px !important;
  }
  ._lg-pl-x3 {
    padding-left: 60px !important;
  }
  ._lg-pl-none {
    padding-left: 0 !important;
  }
  ._lg-p-none {
    padding: 0 !important;
  }
  ._lg-m-auto {
    margin: auto !important;
  }
  ._lg-ml-auto {
    margin-left: auto !important;
  }
  ._lg-mr-auto {
    margin-right: auto !important;
  }
}

@media only screen and (min-width: 1281px) {
  ._xl-m {
    margin: 20px !important;
  }
  ._xl-m-x2 {
    margin: 40px !important;
  }
  ._xl-m-x3 {
    margin: 60px !important;
  }
  ._xl-mt {
    margin-top: 20px !important;
  }
  ._xl-mt-x2 {
    margin-top: 40px !important;
  }
  ._xl-mt-x3 {
    margin-top: 60px !important;
  }
  ._xl-mt-none {
    margin-top: 0 !important;
  }
  ._xl-mr {
    margin-right: 20px !important;
  }
  ._xl-mr-x2 {
    margin-right: 40px !important;
  }
  ._xl-mr-x3 {
    margin-right: 60px !important;
  }
  ._xl-mr-none {
    margin-right: 0 !important;
  }
  ._xl-mb {
    margin-bottom: 20px !important;
  }
  ._xl-mb-x2 {
    margin-bottom: 40px !important;
  }
  ._xl-mb-x3 {
    margin-bottom: 60px !important;
  }
  ._xl-mb-none {
    margin-bottom: 0 !important;
  }
  ._xl-ml {
    margin-left: 20px !important;
  }
  ._xl-ml-x2 {
    margin-left: 40px !important;
  }
  ._xl-ml-x3 {
    margin-left: 60px !important;
  }
  ._xl-ml-none {
    margin-left: 0 !important;
  }
  ._xl-m-none {
    margin: 0 !important;
  }
  ._xl-p {
    padding: 20px !important;
  }
  ._xl-p-x2 {
    padding: 40px !important;
  }
  ._xl-p-x3 {
    padding: 60px !important;
  }
  ._xl-pt {
    padding-top: 20px !important;
  }
  ._xl-pt-x2 {
    padding-top: 40px !important;
  }
  ._xl-pt-x3 {
    padding-top: 60px !important;
  }
  ._xl-pt-none {
    padding-top: 0 !important;
  }
  ._xl-pr {
    padding-right: 20px !important;
  }
  ._xl-pr-x2 {
    padding-right: 40px !important;
  }
  ._xl-pr-x3 {
    padding-right: 60px !important;
  }
  ._xl-pr-none {
    padding-right: 0 !important;
  }
  ._xl-pb {
    padding-bottom: 20px !important;
  }
  ._xl-pb-x2 {
    padding-bottom: 40px !important;
  }
  ._xl-pb-x3 {
    padding-bottom: 60px !important;
  }
  ._xl-pb-none {
    padding-bottom: 0 !important;
  }
  ._xl-pl {
    padding-left: 20px !important;
  }
  ._xl-pl-x2 {
    padding-left: 40px !important;
  }
  ._xl-pl-x3 {
    padding-left: 60px !important;
  }
  ._xl-pl-none {
    padding-left: 0 !important;
  }
  ._xl-p-none {
    padding: 0 !important;
  }
  ._xl-m-auto {
    margin: auto !important;
  }
  ._xl-ml-auto {
    margin-left: auto !important;
  }
  ._xl-mr-auto {
    margin-right: auto !important;
  }
}

/* Text helpers
==================================================================================================== */
/* Visibility helpers
==================================================================================================== */
/* Base
==================================================================================================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  display: block;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 12px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  min-width: 320px;
  line-height: 1.5em;
  font-size: 100%;
  color: #606060;
  background: #f1f1f1;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

svg {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

a.inverseLink {
  text-decoration: underline;
}

a.inverseLink:hover {
  text-decoration: none;
}

b {
  color: #000;
}

hr {
  margin: 2.5rem 0 2.5rem;
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0 0 1px 0;
}

@media only screen and (min-width: 481px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

/* Layout
==================================================================================================== */
/* pageWrapper
---------------------------------------------------------------------------------------------------- */
.pageWrapper {
  display: -webkit-box;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
}

/* pageMain
---------------------------------------------------------------------------------------------------- */
.pageContainer {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

/* pageSize
---------------------------------------------------------------------------------------------------- */
.pageSize {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.625rem;
}

/* pageFotoer
---------------------------------------------------------------------------------------------------- */
.pageFooter {
  -webkit-box-ordinal-group: 1000000;
  order: 999999;
}

/* pageFotoer
---------------------------------------------------------------------------------------------------- */
.pageCenter {
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 769px) {
  .pageCenter {
    margin-bottom: 0;
  }
}

/* pageSection
---------------------------------------------------------------------------------------------------- */
.pageSection {
  padding: 2.5rem 1.25rem 0rem;
    /*padding: 4.75rem 4.85rem 0rem; 14.08.21*/
}

.pageSection__topText {
  font-size: 1rem;
  text-align: center;
  color: #606060;
  max-height: 4.5em;
  overflow: hidden;
}

.pageSection__footer {
  margin-top: 60px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.pageSection--bg-gray {
  background: #fafafa;
}

.pageSection--bg-primary {
  background: #354f5e;
}

.pageSection--partialBg {
  position: relative;
  padding-bottom: 60px !important;
}

.pageSection--partialBg:before {
  content: '';
  display: block;
  background: #6395c4;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: calc(100% - 265px);
}

.pageSection--feedback-button {
  /*margin-bottom: 15px;
  margin-right: 90px;*/
  padding-top: 26px;
  padding-left: 60%;
}

@media only screen and (max-width: 768px) {
  .pageSection--partialBg:before {
    height: calc(100% - 145px);
  }
}

.sectionTitle {
  padding-bottom: 2.1875rem;
  margin-bottom: 3.125rem;
  color: #000;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2em;
 /* text-transform: uppercase;*/
  text-align: center;
  position: relative;
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif" ;
    font-style: italic;
}

.sectionTitle:after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #6395c4;
  position: absolute;
}

.sectionTitle--small {
  font-size: 1.5625rem;
  padding: 2.1875rem 0;
  margin: 0;
  text-transform: none;
  letter-spacing: 2px;
}

.sectionTitle--small:after {
  display: none;
}

.sectionTitle--white {
  color: #fff;
}

.sectionTitle--white:after {
  background: #fff;
}

.sectionTitle--inner {
  text-align: left;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.sectionTitle--inner:after {
  margin-left: 0;
}

.sectionTitle--in-aside {
  font-size: 1rem;
  padding-bottom: 1.5625rem;
  margin-bottom: 1.875rem;
}

.pageSeoText {
  -webkit-box-ordinal-group: 1001;
  order: 1000;
}

.pageAside {
  margin: 0 0.625rem;
}

@media only screen and (min-width: 769px) {
  .pageAside {
    width: 240px;
    flex-basis: 240px;
    margin-right: 45px;
  }
}

.pageHeader {
  position: relative;
}

.pageHeader__top {
  background: #fafafa;
  height: 2.1875rem;
  display: none;
}
.header-logo-text{
  max-width: 41%;
}
@media only screen and (max-width: 769px) {
  .header-logo-text {
    max-width: 100%;
  }
}


@media only screen and (min-width: 769px) {
  .pageHeader__top {
    display: block;
  }
}

.pageHeader__top .grid, .pageHeader__top .pageSize {
  position: relative;
  height: 100%;
}

.pageHeader__main {
  margin-top: 55px;
  padding: 0.9375rem 0 0.5rem;
  background-color: #354f5e;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  position: relative;
}

@media only screen and (max-width: 769px) {
.pageHeader__main {
  padding: 0.9375rem 0 1.125rem;
  display: none;
}
.pageContainer {
  margin-top: 55px;
}
}

.pageHeader__main:after {
  content: '';
  background: #354f5e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  opacity: .7;
}

@media only screen and (min-width: 769px) {
  .pageHeader__main {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .pageHeader__main {
    background-position: top;
  }
  .indexPage .pageHeader__main {
    background-image: none !important;
  }
}

.pageHeader__main .pageSize {
  position: relative;
  z-index: 1;
}

.pageHeader__mobile {
  padding: 5px 0;
  z-index: 10;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background: #354f5e;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (min-width: 769px) {
  .pageHeader__mobile {
    display: none;
  }
}

.copyright {
  color: #354f5e;
  font-size: 10px;
  text-transform: uppercase;
}

.languageLinks {
  display: -webkit-box;
  display: flex;
  height: 100%;
}

.languageLink {
  display: inline-block;
  padding: 0 8px;
  border-left: 1px solid #e1e1e1;
  color: #354f5e;
  text-decoration: none !important;
  font-size: 10px;
  border: none;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  .languageLink--adaptive {
    text-align: left;
    border-left: 1px solid #e1e1e1;
  }
}

@media only screen and (min-width: 769px) {
  .languageLink--adaptive {
    border: none !important;
    text-align: center;
  }
}

.languageLink:last-child {
  border-right: none;
}

@media only screen and (min-width: 1025px) {
  .languageLink:last-child {
    border-right: 1px solid #e1e1e1;
  }
}

.languageLink__icon {
  display: inline-block;
  vertical-align: middle;
  height: 15px;
  width: 15px;
  background-size: cover;
  border: 1px solid #e1e1e1;
}

.languagecurrent__icon {
  height: 100%;
  width: 100%;
}

.languageLink__text {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

@media only screen and (min-width: 1025px) {
  .languageLink__text {
    color: #354f5e;
  }
}

@media only screen and (min-width: 769px) {
  .languageLink__text {
    color: #354f5e;
  }
}

.logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1.25rem;
  text-decoration: none !important;
}

.logo__link:hover {
  text-decoration: none;
}

.logo__image {
  width: 65px;
  height: 70px;
  margin-right: 20px;
  fill: #fff;
}

.logo__image--phone {
  width: 40px;
  height: 45px;
  margin: 0 10px;
}

.logo__text big {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.logo__text small {
  text-transform: none;
  display: block;
  font-size: 0.90625rem;
  color: #fff;
  letter-spacing: .5px;
}

.logo__copyright {
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: rgba(255, 255, 255, 0.3);
}

.logo--small {
  padding-top: 1.875rem;
}

.logo--small .logo__image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.logo--small .logo__text {
  font-size: 1.125rem;
}

.logo--small .logo small {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
}

.logo:hover .logo__image {
  fill: #6395c4;
}
.logo:hover .logo__text small {
    color: #6395c4;
}
.contactsBlock {
  display: none;
}

@media only screen and (min-width: 769px) {
  .contactsBlock {
    display: -webkit-box;
    display: flex;
  }
}

.contactItem {
  font-size: 1rem;
  display: -webkit-box;
  display: flex;
}

.contactItem__key {
  margin-right: 0.5rem;
  color: #6395c4;
  fill: #6395c4;
}

.contactItem__key svg {
  height: 1em;
  width: 1em;
}

.contactItem__value {
  color: #fff;
}

.heroBlock {
  display: -webkit-box;
  display: flex;
  margin-top: 0.5rem;
  margin-left: 0.625rem;
    margin-bottom: 3.5rem;
}

@media only screen and (max-width: 481px) {
  .heroBlock {
    display:none;
  }
}

@media only screen and (max-width: 1024px) {
  .heroBlock {
    display:none;
  }

  .heroBlock__text {
    display:none;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .pageHeader__main {
    padding-bottom: 30px;
  }
}

.heroBlock__text {
 padding: 0.9375rem 0 0 1.5625rem;
 /* border-left: 2px solid #6395c4;*/
  text-transform: uppercase;
  font-size: 1.625rem;
  line-height: 1.2em;
  color: #6395c4;
  font-weight: 700;
    /*font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";*/
}

.heroBlock__text small {
  font-size: .7em;
  color: #fff;
}

.headerSlider__slide .heroBlock {
  margin-top: 0;
  padding-top: 100px;
}

@media only screen and (min-width: 989px) {
  .heroBlock {
    margin-left: 1.875rem;
  }
  .heroBlock .heroBlock__text {
    font-size: 2.3rem;
  }
}

@media only screen and (min-width: 1025px) {
  .heroBlock--mobile {
    visibility: hidden;
  }
}

.pageHeader__menu {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
}

.topMenu {
  background: #fff;
  height: 50px;
  margin: auto;
  border-bottom: 3px solid #6395c4;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0;
  display: none;
}

@media only screen and (min-width: 769px) {
  .topMenu {
    display: -webkit-box;
    display: flex;
  }
}

.topMenu > li {
  display: block;
  font-size: 0.75rem;
  color: #354f5e;
  background: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: color,background .3s;
}

.topMenu > li > a {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0 20px;
  line-height: 47px;
  height: 47px;
}

.topMenu > li.is-active, .topMenu > li:hover {
  color: #fff;
  background: #6395c4;
}

.headerSlider {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: none;
  opacity: 0;
}

@media only screen and (min-width: 1025px) {
  .headerSlider {
    display: block;
  }
}

.headerSlider__slide {
  height: 100%;
  background-position: center center;
}

/*wBreadcrumbs.scss*/
.breadcrumbs {
  font-size: 0.75rem;
  margin-bottom: 1.5625rem;
}

.breadcrumbs > span {
  color: #000;
}

.breadcrumbs > span:after {
  content: '-';
  display: inline-block;
  vertical-align: top;
  margin: 0 .5em;
}

.breadcrumbs > span:last-child:after {
  display: none;
}

.breadcrumbs > span > a {
  color: #919191;
  text-decoration: none;
}

.breadcrumbs > span > a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 620px) {
  .breadcrumbs {
    display: block;
  }
  .breadcrumbs > span {
    display: none;
  }
  .breadcrumbs > span:before {
    display: none;
  }
  .breadcrumbs > span:nth-last-child(2) {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    background: none;
    margin: 0;
  }
  .breadcrumbs > span:nth-last-child(2):before {
    content: '<';
    display: inline-block;
    margin: 0 5px 0 3px;
  }
}

/* Menu
==================================================================================================== */
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  cursor: default;
}

.menu__item {
  display: inline-block;
  vertical-align: top;
}

.menu__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu--large {
  font-family: "Arial", sans-serif;
  font-size: 1.125rem;
  /* 18px */
  padding-bottom: 0.55556em;
  /* 10px*/
}

.menu--large .menu__item {
  padding: 0.55556em;
  /* 10px */
}

.menu--large .menu__link {
  line-height: 1;
}

.menu--large .menu__link:hover, .menu--large .menu__link.is-active {
  color: #6395c4;
}

.menu--bordered {
  border-bottom: 1px solid #ccc;
}

.menu--buttoned {
  font-size: 0.75rem;
  /* 12px */
  text-transform: uppercase;
}

.menu--buttoned .menu__item {
  margin-bottom: 0.33333em;
  /* 4px */
}

.menu--buttoned .menu__link {
  line-height: 1;
  padding: 0.83333em 1.25em;
  /* 10px 15px */
  border: 1px solid transparent;
  border-radius: 2em;
}

.menu--buttoned .menu__link:hover, .menu--buttoned .menu__link.is-active {
  color: #000;
  border-color: #000;
}

.menu--buttoned .menu__link:active {
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

.menu--secondary-in-pageHeader {
  margin-bottom: 0.55556em;
  /* 10px */
}

/* Button
==================================================================================================== */
.button {
  display: -webkit-inline-box;
  display: inline-flex;
  outline: 0;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  background: transparent;
  transition: all .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button {
  height: 2.125rem;
  font-size: 0.875rem;
}

.button:hover {
  text-decoration: none;
}

.button:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.button--primary {
  color: #fff;
  background: #6395c4;
  border: 2px solid #6395c4;
  min-width: 200px;
}

.button--primary:hover {
  color: #6395c4;
  background: #fff;
}

.button--inverse {
  color: #6395c4;
  background: transparent;
  border: 2px solid rgba(99, 149, 196, 0.25);
  min-width: 200px;
}

.button--inverse:hover {
  color: #fff;
  background: #6395c4;
}

.button--inverse-white {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  min-width: 200px;
}

.button--inverse-white:hover {
  color: #6395c4;
  background: #fff;
  border: 2px solid #6395c4;
}
.button--expand {
  min-width: 0px;
  width: 100%;
}

.button--in-sectionFooter {
  margin-bottom: 20px;
  font-size: 1rem;
  height: 45px;
  min-width: 305px;
}

.button--in-aside {
  margin: 3.125rem 0 3.75rem;
}

.button--link {
  background: none;
  border: none;
  color: #6395c4;
  position: relative;
}

.button--link:after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1px dashed;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(0.7em);
  transform: translateY(0.7em);
}

.buttonsArray .button {
  display: -webkit-box;
  display: flex;
}

.button--in-header {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #6395c4;
  background: #354f5e;
  fill: #fff;
  padding: 5px;
}

/* wTxt
==================================================================================================== */
.wTxt {
  position: relative;
  display: block;
  margin: 1.5625rem 0;
  color: #606060;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2em;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}

.wTxt a {
  text-decoration: underline;
  color: #6395c4;
}

.wTxt a:visited {
 /* text-decoration: inherit; */
  color: #a6a6a6;
}

.wTxt a:hover {
  text-decoration: underline;
  color: #354f5e;
}

.wTxt a[href^="http"], .wTxt a[href^="www."] {
  cursor: pointer;
  cursor: alias;
}

.wTxt h1, .wTxt h2, .wTxt h3 {
  line-height: 1.6;
}

.wTxt h4, .wTxt h5, .wTxt h6 {
  line-height: 1.4;
}

.wTxt h1, .wTxt h2, .wTxt h3, .wTxt h4, .wTxt h5, .wTxt h6 {
  margin: 0.6em 0;
}

.wTxt h1 a, .wTxt h2 a, .wTxt h3 a, .wTxt h4 a, .wTxt h5 a, .wTxt h6 a {
  text-decoration: none;
}

.wTxt h1:before, .wTxt h2:before, .wTxt h3:before, .wTxt h4:before, .wTxt h5:before, .wTxt h6:before {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

.wTxt h1:first-child, .wTxt h2:first-child, .wTxt h3:first-child, .wTxt h4:first-child, .wTxt h5:first-child, .wTxt h6:first-child {
  margin-top: 0;
}

.wTxt h1 {
  font-size: 1.5rem;
}

.wTxt h2 {
  font-size: 1.5rem;
}

.wTxt h3 {
  font-size: 1.4rem;
}

.wTxt h4 {
  font-size: 1.4rem;
}

.wTxt h5 {
  font-size: 1.2rem;
}

.wTxt h6 {
  font-size: 1.2rem;
}

.wTxt ul, .wTxt ol, .wTxt dl, .wTxt pre, .wTxt p, .wTxt table, .wTxt blockquote, .wTxt address, .wTxt .iframeHolder {
  margin: 1em 0;
}

.wTxt ul:first-child, .wTxt ol:first-child, .wTxt dl:first-child, .wTxt pre:first-child, .wTxt p:first-child, .wTxt table:first-child, .wTxt blockquote:first-child, .wTxt address:first-child, .wTxt .iframeHolder:first-child {
  margin-top: 0;
}

.wTxt ul:last-child, .wTxt ol:last-child, .wTxt dl:last-child, .wTxt pre:last-child, .wTxt p:last-child, .wTxt table:last-child, .wTxt blockquote:last-child, .wTxt address:last-child, .wTxt .iframeHolder:last-child {
  margin-bottom: 0;
}

.wTxt blockquote {
  padding: 1em;
  font-style: italic;
  background-color: #f6f6f6;
  border-left: 3px solid #d8d8d8;
}

.wTxt ul, .wTxt ol, .wTxt dl, .wTxt dd {
  margin-left: 1em;
}

.wTxt ul ul, .wTxt ul ol, .wTxt ol ul, .wTxt ol ol {
  margin: 10px 0 !important;
}

.wTxt li {
  /*list-style-position: inside;*/
  margin: 0.2em 0;
}

.wTxt ul, .wTxt ol {
  padding: 0;
  margin: 0;
}

.wTxt ul li, .wTxt ol li {
  list-style-type: inherit;
}

.wTxt ul {
  list-style-type: disc;
}

.wTxt ul ul {
  list-style-type: circle;
}

.wTxt ul ul ul {
  list-style-type: square;
}

.wTxt ol {
  list-style-type: decimal;
}

.wTxt dl dt {
  font-style: italic;
}

.wTxt table {
  width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #606060;
}

.wTxt table caption {
  margin-bottom: 0.5em;
  caption-side: top;
}

.wTxt table tbody, .wTxt table tfoot, .wTxt table thead,
.wTxt table tr, .wTxt table th, .wTxt table td {
  border: inherit;
}

.wTxt table th, .wTxt table td {
  padding: 10px;
  line-height: 1em;
  text-align: left;
  vertical-align: top;
}

.wTxt table th {
  text-align: center;
  font-weight: bold;
}

.wTxt table.table-null,
.wTxt table.table-null th,
.wTxt table.table-null td {
  border-color: transparent;
}

.wTxt table.table-zebra,
.wTxt table.table-zebra th,
.wTxt table.table-zebra td {
  border-color: transparent;
}

.wTxt table.table-zebra tr:nth-child(even) {
  background-color: #f8f8f8;
}

.wTxt pre, .wTxt code, .wTxt kbd, .wTxt samp {
  font-style: normal;
  border-radius: 2px;
  border: 1px solid;
}

.wTxt pre {
  line-height: 1em;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  padding: 1em;
}

.wTxt code, .wTxt kbd, .wTxt samp {
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  font-weight: bold;
  display: inline-block;
  vertical-align: inherit;
  padding: 0 0.375em;
}

.wTxt code {
  background-color: #5088bd;
}

.wTxt kbd {
  background-color: #006700;
}

.wTxt samp {
  background-color: #23343d;
}

.wTxt audio {
  display: block;
  width: 100%;
}

.wTxt ul {
  padding: 0;
  list-style-type: none;
}

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

@media only screen and (min-width: 481px) {
  .wTxt img {
    width: auto;
    box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
    margin-bottom: 2em;
  }
}

.wTxt img[style*="float: right"] {
  margin-left: 1em;
}

.wTxt img[style*="float: left"] {
  margin-right: 1em;
}

.iframeHolder {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.iframeHolder > iframe, .iframeHolder > video {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wTxt ul {
  padding: 0;
}

.wTxt ul > li {
  position: relative;
  margin: 0;
  padding: 5px 0 0 20px;
  line-height: 1em;
  overflow: hidden;
}

.wTxt ul > li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../css/pic/customList-marker.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.wTxt ul > li:last-child {
  margin-bottom: 0;
}

.wTxt ol {
  padding: 0;
  counter-reset: order-list;
  list-style-type: none;
}

.wTxt ol > li {
  position: relative;
  margin: 0;
  padding: 5px 0 0 30px;
  line-height: 1.125em;
  overflow: hidden;
}

.wTxt ol > li:before {
  content: counter(order-list) "";
  counter-increment: order-list;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  min-width: 1.83333em;
  padding: 0.66667em 0;
  background-image: url("../css/pic/customOl-marker.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  text-align: center;
}

.wTxt ol > li:last-child {
  margin-bottom: 0;
}

.advantage {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid #fafafa;
  padding: 1.875rem 0;
  transition: box-shadow .2s;
}

.advantage__icon {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #354f5e;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0.625rem;
  transition: box-shadow .3s;
  margin-bottom: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}

.advantage__icon svg {
  width: 80%;
  height: 80%;
}

.advantage__title {
  font-size: 1.125rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.advantage__text {
  font-size: 0.75rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  color: #9a9a9a;
  max-height: 10em;
  overflow: hidden;
}

@media only screen and (min-width: 481px) {
  .advantage {
    padding: 1.875rem;
  }
}

@media only screen and (min-width: 769px) {
  .advantage .advantage__title {
    margin-bottom: 1.875rem;
  }
  .advantage .advantage__text {
    margin-bottom: 1.5em;
  }
}

@media only screen and (min-width: 1281px) {
  .advantage {
    padding: 60px 50px 50px;
  }
}

.advantage:hover {
  box-shadow: 0px 20px 50px 10px rgba(13, 12, 13, 0.13);
}

.advantage:hover .advantage__icon {
  box-shadow: 0 0 0 10px rgba(99, 149, 196, 0.2), 0 0 0 3px #6395c4;
}

.advantage--lite:hover {
  background: #fff;
}

.advantage--lite {
  padding: 2rem 1.25rem;
  border: none;
}

.advantage--lite .advantage__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #252525;
  margin-bottom: 0;
  text-transform: none !important;
}

.advantage--lite .advantage__text {
  max-height: 2.8em !important;
  overflow: hidden !important;
  font-size: 1rem;
  color: #8c8c8c;
  margin-bottom: 0;
}

.advantage--mini:hover {
  background: #fff;
}

.advantage--mini {
  padding: 2.5rem 1.25rem 3.125rem;
  border: none;
}

.advantage--mini .advantage__icon {
  background: none;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 10px rgba(99, 149, 196, 0.2);
}

.advantage--mini .advantage__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #252525;
  margin-bottom: 0;
  text-transform: none !important;
}

.advantage--mini .advantage__text {
  max-height: 2.8em !important;
  overflow: hidden !important;
  font-size: 0.875rem;
  color: #8c8c8c;
  margin-bottom: 0;
}

@media only screen and (min-width: 1025px) {
  .personal--graphics {
    height: 450px;
    -webkit-box-align: start;
    align-items: flex-start;
  }
}

.person {
  box-shadow: 0 0px 5px rgba(13, 12, 13, 0.24);
  background: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 1.875rem 10px;
  transition: background .2s;
}

@media only screen and (min-width: 1025px) {
  .personal--graphics .person:nth-child(odd) {
    align-self: flex-end;
  }
}

.person__image {
  background-size: cover;
  height: 8.75rem;
  width: 8.75rem;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(99, 149, 196, 0.2);
  margin-bottom: 4.375rem;
  transition: box-shadow .2s;
}

.person__name {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9375rem;
  margin-bottom: 1.5625rem;
  transition: color .2s;
  text-align: center;
}

.person__position {
  font-size: 0.875rem;
  color: #9a9a9a;
  font-family: "Arial", sans-serif;
  font-style: italic;
  transition: color .2s;
}

.person:hover {
  background: #354f5e;
}

.person:hover .person {
  text-decoration: none !important;
}

.person:hover .person__name, .person:hover .person__position {
  color: #fff;
}

.person:hover .person__image {
  box-shadow: 0 0 0 10px rgba(99, 149, 196, 0.2), 0 0 0 3px #6395c4;
}

.videoLink {
  display: block;
  position: relative;
  height: 0;
  padding-top: 73.3333%;
  background-position: 50% 50%;
  background-size: cover;
}

.videoLink:before, .videoLink:after {
  content: '';
  opacity: 1;
  transition: opacity .2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.videoLink:before {
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}

.videoLink:after {
  height: 35px;
  width: 40px;
  background: url("../css/pic/play.svg") center no-repeat;
  background-size: contain;
}

.videoLink:hover:before {
  opacity: 0;
}

.priceSection {
  height: 375px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  text-align: center;
}

@media only screen and (max-width: 1316px) {
  .priceSection {
    background-image: url("pic/price_bg_2.jpg") !important;
  }
}

.priceSection__text {
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1.875rem;
  margin-bottom: 2.5rem;
}

.textReviews--full .textReview + .textReview {
  margin-top: 2.1875rem;
}

@media only screen and (min-width: 1025px) {
  .textReviews--small {
    height: 310px;
    -webkit-box-align: start;
    align-items: flex-start;
  }
}

.textReview {
  position: relative;
  box-shadow: 0 50px 67px rgba(13, 12, 13, 0.24);
  background: #fff;
  transition: background .2s;
}

@media only screen and (min-width: 1025px) {
  .textReview:nth-child(odd) {
    align-self: flex-end;
  }
}

.textReview__name, .textReview__subtitle, .textReview__text, .textReview__moreLink, .textReview__place {
  transition: color .2s;
}

.textReview__name {
  color: #4c4c4c;
  padding: 2.5rem 6.25rem 0 1.875rem;
  font-size: 1rem;
}

.textReview__subtitle {
  min-height: 64px;
  font-size: 0.875rem;
  font-family: "Arial", sans-serif;
  font-style: italic;
  color: #9b9b9b;
  padding: 0 6.25rem 2.5rem 1.875rem;
}

.textReview__overflow {
  max-height: 10em;
  overflow: hidden;
  margin: 0;
}

.textReview__text {
  color: #4c4c4c;
  padding: 1.25rem 1.875rem 1.875rem;
  font-size: 0.8125rem;
  line-height: 1.375rem;
}

.textReview__textInner {
  max-height: 5.5rem;
  overflow: hidden;
  transition: max-height .3s;
}

.is-expand .textReview__textInner {
  max-height: 275rem;
}

.textReview__arrow {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 12px;
  background: url(pic/arrow-reviews-standart.png) no-repeat center center;
}

.textReview .textReview__footer {
  padding: 0rem 2.5rem 0.9375rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.textReview__icon {
  transition: fill .2s;
  fill: #fff;
  position: absolute;
  top: 35px;
  right: 30px;
  width: 50px;
  height: 40px;
}

.textReview__divider {
  height: 2px;
  width: 80px;
  margin-right: auto;
  background: #6395c4;
}

.textReview__moreLink {
  font-size: 0.75rem;
  text-decoration: underline;
  color: #797979;
}

.textReview__place {
  color: #4c4c4c;
  font-size: 0.75rem;
}

.textReview__rating {
  position: absolute;
  right: 2.5rem;
  top: 7.1875rem;
}

.textReview:hover {
  background: #354f5e;
}

.textReview:hover .textReview__name, .textReview:hover .textReview__subtitle, .textReview:hover .textReview__text, .textReview:hover .textReview__place, .textReview:hover .textReview__moreLink {
  color: #fff;
}

.textReview:hover .textReview__arrow {
  height: 11px;
  width: 9px;
  background: url(pic/arrow-reviews.png) no-repeat center center;
}

.textReview:hover .textReview__icon {
  fill: #6395c4;
}

.textReview:hover .textReview__moreLink {
  cursor: pointer;
  text-decoration: none;
}

.mediaBlock {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.mediaBlock:hover {
  box-shadow: 0px 20px 50px 10px rgba(13, 12, 13, 0.13);
}

@media only screen and (min-width: 1025px) {
  .mediaBlock {
    flex-wrap: nowrap;
  }
}

.mediaBlock__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.mediaBlock__image {
  display: block;
  width: 100%;
  height: 200px;
  flex-basis: 100%;
  max-width: 100%;
  margin: auto;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-color: gray;
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

@media only screen and (min-width: 1025px) {
  .mediaBlock__image {
    max-width: 50%;
    margin-right: 30px;
    width: 300px;
    height: 200px;
    flex-basis: 300px;
  }
}

.mediaBlock__title {
  color: #3d3d3d;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  overflow: hidden;
}

.mediaBlock__overflow {
  display: block;
  overflow: hidden;
  line-height: 1.5rem;
  max-height: 3rem;
}

.mediaBlock__text {
  color: #636363;
  font-size: 0.875rem;
  line-height: 1.125rem;
  padding: 1em 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.mediaBlock__date {
  z-index:1;
  height: 3.4375rem;
  width: 3.4375rem;
  background: #6395c4;
  color: #fff;
  font-size: 1.375rem;
  position: absolute;
  left: 1.25rem;
  top: -0.625rem;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1.25rem;
}

.mediaBlock__date small {
  text-transform: uppercase;
  font-size: 1.0625rem;
  font-family: "Arial", sans-serif;
}

.mediaBlock__link {
  font-size: 0.75rem;
  color: #6395c4;
}

.mediaBlock__textInner {
  overflow: hidden;
}

.mediaBlock--inverse:hover {
  box-shadow: 0px 20px 50px 10px rgba(255, 255, 255, 0.13);
}

.mediaBlock--inverse .mediaBlock__title {
  color: #fff;
}

.mediaBlock--inverse .mediaBlock__text {
  color: #e9e9e9;
}

.mediaBlock--in-aside {
  display: block;
  margin-bottom: 3.125rem;
}

.mediaBlock--in-aside .mediaBlock__image {
  margin: 0 0 10px;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-top: 42%;
  box-shadow: none;
  flex-shrink: 1;
}

.mediaBlock--in-aside .mediaBlock__title {
  color: #3d3d3d;
  font-size: 0.6875rem;
  line-height: 1rem;
  margin-bottom: 10px;
  text-decoration: underline;
}

.mediaBlock--in-aside .mediaBlock__date {
  height: 1.875rem;
  width: 1.875rem;
  left: 1.5625rem;
  font-size: 1rem;
  line-height: 0.9375rem;
}

.mediaBlock--in-aside .mediaBlock__date small {
  font-size: 0.6875rem;
}

.mediaBlock--in-aside:last-child {
  margin-bottom: 1.875rem;
}

.mediaBlock--air {
  height: 220px;
  position: relative;
  margin: 0 auto;
  max-width: 306px;
  box-shadow: none !important;
}

@media only screen and (min-width: 769px) {
  .mediaBlock--air {
    height: 250px;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1025px) {
  .mediaBlock--air {
    height: 250px;
    max-width: 450px;
  }
}

.mediaBlock--air .mediaBlock__title, .mediaBlock--air .mediaBlock__text {
  font-size: 0.75rem;
  line-height: 1.5em;
  max-height: 4.5em;
  overflow: hidden;
  padding: 0;
}

.mediaBlock--air .mediaBlock__text {
  margin: 1em 0;
}

.mediaBlock--air .mediaBlock__image {
  margin: 0;
  max-width: 100%;
  width: 250px;
  flex-basis: 250px;
  height: 155px;
}

@media only screen and (min-width: 769px) {
  .mediaBlock--air .mediaBlock__image {
    width: 300px;
    height: 200px;
    flex-basis: 300px;
  }
}

@media only screen and (min-width: 1025px) {
  .mediaBlock--air .mediaBlock__image {
    width: 300px;
    height: 200px;
    flex-basis: 300px;
  }
}

.mediaBlock--air .mediaBlock__content {
  position: absolute;
  display: block;
  background: #fff;
  padding: 1.25rem;
  max-width: 230px;
  bottom: 25px;
  left: 75px;
}

@media only screen and (min-width: 769px) {
  .mediaBlock--air .mediaBlock__content {
    bottom: 0;
    left: 200px;
    max-width: 240px;
  }
}

@media only screen and (min-width: 1025px) {
  .mediaBlock--air .mediaBlock__content {
    max-width: 240px;
    bottom: 0;
    left: 125px;
  }
}

.mediaBlock--air .categoryLink__title {
  margin-bottom: 1em;
}

.mediaBlock--air .categoryLink__title:after {
  margin-left: 0;
}

.mediaBlock--equipment {
  box-shadow: none !important;
}

.pageFooter {
 /* background: #354f5e; */
    background: #6395c4;
      padding: 1.75rem 0 1rem;
}
@media screen and (max-width: 769px){
  .pageFooter{
    padding-bottom: 1em;
  }
}

.columnCaption {
  font-size: 0.75rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  line-height: 0.9375rem;
  height: 1.6rem;
  padding-left: 1.125rem;
  border-left: 2px solid #222;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-bottom: 0.8rem;
}

.columnContent {
  font-size: 0.75rem;
  line-height: 1.25rem;
  padding-left: 1.25rem;
 /* color: rgba(255, 255, 255, 0.6);*/
    color: #222;
}

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

.columnContent ul a:hover {
  text-decoration: underline;
    color: white;
}

.showContacts__link {
  font-size: 0.875rem;
}

ul.asideMenu {
  background: #354f5e;
  padding: 0;
  margin: 0;
}

ul.asideMenu ul {
  padding: 0;
  display: none;
}

ul.asideMenu > .has-subMenu.is-open:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  right: 100%;
  border-left: 5px solid #6395c4;
}

ul.asideMenu .has-subMenu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

ul.asideMenu .has-subMenu > ul {
  flex-basis: 100%;
}

ul.asideMenu .has-subMenu > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-basis: calc(100% - 40px);
}

ul.asideMenu .has-subMenu .trigger {
  width: 40px;
  border: none;
  background: none;
  flex-shrink: 0;
  flex-basis: 40px;
  position: relative;
  height: 40px;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  cursor: pointer;
}

ul.asideMenu .has-subMenu .trigger:after {
  content: '';
  display: block;
  flex-shrink: 0;
  height: .7em;
  width: .7em;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-30%) rotate(-45deg);
  transform: translate(-30%) rotate(-45deg);
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

ul.asideMenu .has-subMenu.is-open > .trigger {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

ul.asideMenu .is-active > a {
  color: #6395c4;
}

ul.asideMenu > li {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1em;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

ul.asideMenu > li > a {
  -webkit-box-flex: 1;
  flex-grow: 1;
  padding: 1.25rem 0 1.25rem 1.25rem;
  text-transform: uppercase;
}

ul.asideMenu > li:last-child {
  border-bottom: none;
}

ul.asideMenu > li > ul {
  flex-basis: 100%;
  margin-top: 1.25rem;
  padding: 0 1.25rem;
}

.mobilemenu li ul.asideMenu {
  flex-basis: 100%;
  margin-top: 0rem;
  padding: 0 1.25rem;
}

ul.asideMenu > li > ul > li {
  list-style: none;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

ul.asideMenu > li > ul > li.is-active > a {
  text-decoration: underline;
}

ul.asideMenu > li > ul > li > ul {
  margin-top: 0.625rem;
  padding-left: .2em;
  list-style-type: none;
}

ul.asideMenu > li > ul > li > ul > li:before {
  content: '- ';
}

.asideMenu__cell {
  flex-basis: 240px;
}

.pagination {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 3.125rem;
}

.pagination__link {
  padding: 0 10px;
  height: 25px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  transition: background, color .2s;
  background: transparent;
  border: none;
}

.pagination__link--next {
  margin-left: 10px;
}

.pagination__link--prev {
  margin-right: 10px;
}

.pagination__link:hover, .pagination__link .is-active {
  background: #6395c4;
  color: #fff;
  cursor: pointer;
}

.categoryLink {
  display: block;
  padding-top: 75.86207%;
  position: relative;
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

.categoryLink__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 11.875rem;
  height: 3.125rem;
  position: absolute;
  left: -5%;
  bottom: 22.7%;
  max-width: 100%;
  background: #fff;
  padding: 0.9375rem;
  transition: background .2s;
}

.categoryLink__content--bigger {
  height: 5.625rem;
  bottom: -10px;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.categoryLink__content--bigger .categoryLink__title:after {
  margin-left: 0;
}

.categoryLink__overflow {
  overflow: hidden;
  max-height: 4em;
  margin: 0;
}

.categoryLink__overflow--photo {
  margin: 0;
  max-height: 1.4em;
  overflow: hidden;
}

.categoryLink__title {
  color: #000;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .2s;
  overflow: hidden;
}

.categoryLink__title:after {
  content: '';
  display: block;
  margin: auto;
  width: 30px;
  height: 2px;
  margin-top: 5px;
  background: #6395c4;
  transition: background .2s;
}

.categoryLink:hover .categoryLink__content {
  background: #6395c4;
}

.categoryLink:hover .categoryLink__title {
  color: #fff;
}

.categoryLink:hover .categoryLink__title:after {
  background: #fff;
}

.shareBlock {
  position: relative;
  min-width: 300px;
}

.shareBlock__title {
  font-size: 1.875rem;
  color: #6395c4;
  margin-bottom: 1.25rem;
}

.shareBlock__arrow {
  right: 0;
  fill: #dfdfdf;
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 140px;
}

@media only screen and (min-width: 769px) {
  .shareBlock__arrow {
    right: 50px;
  }
}

.modelPreviews {
  margin-bottom: 1em;
}

@media only screen and (min-width: 540px) {
  .modelPreviews {
    width: 510px;
    max-width: 40%;
    float: left;
    margin-right: 1em;
  }
}

.modelPreview {
  display: block;
  padding-top: 61.53846%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.modelPreview:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-image: url("../css/pic/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .2s;
}

.modelPreview:hover:after {
  opacity: 1;
}

.imagePreview {
  display: block;
  width: fit-content;
  margin:auto;
  position: relative;
}

.imagePreview:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-image: url("../css/pic/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .2s;
}

.imagePreview:hover:after {
  opacity: 1;
}

.form .grid__cell {
  position: relative;
}

.form__input {
  font-size: 0.8125rem;
  height: 2.125rem;
  border: 1px solid #e1e1e1;
  padding: 0.5rem;
  width: 100%;
}

.form__input--textarea {
  resize: vertical;
  min-height: 8.75rem;
}

.form__label {
  font-size: 0.8125rem;
  color: #4c4c4c;
  display: inline-block;
  vertical-align: middle;
}

.form label.error {
  z-index: 3;
  position: absolute;
  top: calc(100% - 10px);
  left: 10px;
  padding: 2px 8px;
  max-width: 100%;
  border: 1px solid #EB4F1F;
  text-align: center;
  font-size: 0.625rem;
  line-height: 0.75rem;
  background: #fff;
  cursor: help;
  color: #354f5e;
  font-family: Arial,sans-serif;
  border-radius: 0 0 0.625rem 0.625rem;
}

.reviewsForm {
  background: #fff;
  padding: 1.5625rem 1.25rem;
}

.reviewsForm__decor {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  fill: #6395c4;
  height: 2.5rem;
  width: 3.125rem;
}

.rating {
  margin-bottom: 1em;
  padding: 1em 0;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.rating__stars {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.rating__stars input,
.rating__stars i {
  font-size: 12px;
  float: right;
  width: 1.9em;
  height: 1.7em;
}

.rating__stars input {
  position: relative;
  z-index: 10;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.rating__stars input:hover ~ i svg {
  fill: #eed593 !important;
}

.rating__stars input:checked ~ i svg {
  fill: #E0B33B;
}

.rating__stars input + i {
  margin-right: -1.9em;
}

.rating__stars i {
  position: relative;
}

.rating__stars i svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  left: 0;
  max-width: 1.7em;
  max-height: 1.5em;
  stroke: #E0B33B;
  stroke-width: 1px;
  fill: transparent;
}

.rating__stars[data-rating="1"] i:nth-last-of-type(1) svg,
.rating__stars[data-rating="2"] i:nth-last-of-type(-n+2) svg,
.rating__stars[data-rating="3"] i:nth-last-of-type(-n+3) svg,
.rating__stars[data-rating="4"] i:nth-last-of-type(-n+4) svg,
.rating__stars[data-rating="5"] i:nth-last-of-type(-n+5) svg {
  fill: #E0B33B;
}

.rating__count {
  display: inline-block;
  vertical-align: bottom;
  line-height: 1em;
  color: #E0B33B;
}

.rating__count ins {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.2em;
  text-decoration: none;
  max-width: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating--large input,
.rating--large i {
  width: 2.9em;
  height: 2.6em;
}

.rating--large input svg,
.rating--large i svg {
  max-width: 2.7em;
  max-height: 2.4em;
}

.rating--large input ~ i {
  margin-right: -2.7em;
}

.rating--large .rating__count {
  font-size: 1.6em;
}

/* Dropdown
==================================================================================================== */
.dropdown {
  position: relative;
}

.dropdown--dib {
  display: inline-block;
  vertical-align: top;
}

.dropdown__header {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown__header--default {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 34px;
  padding-left: 10px;
  padding-right: 30px;
  border: 1px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  transition: border .2s;
}

.dropdown__header--default:hover {
  border-color: #354f5e;
}

.dropdown__header--default::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -2px;
  margin-right: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
}

.dropdown__content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: opacity .2s, visibility .2s, -webkit-transform .2s;
  transition: transform .2s, opacity .2s, visibility .2s;
  transition: transform .2s, opacity .2s, visibility .2s, -webkit-transform .2s;
  background: #354f5e;
  border: 1px solid #fff;
  max-height: 80vh;
  overflow-y: auto;
}

.dropdown.is-active .dropdown__content,
.dropdown--hover:hover .dropdown__content {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.dropdown__content--left {
  left: 0;
}

.dropdown__content--right {
  right: 0;
}

.dropdown__content--top {
  top: auto;
  bottom: 100%;
}

.dropdown__content--small {
  width: 80px;
}

.dropdown__content--narrow {
  width: 120px;
}

.dropdown__content--medium {
  width: 180px;
}

.dropdown__content--wide {
  width: 240px;
}

.wSitemap ul li:before, .wSitemap ul li a {
  padding: 5px 8px;
  border-radius: 5px;
}

.wSitemap ul li:hover > a, .wSitemap ul li:hover:before {
  color: #fff;
  text-shadow: #000;
}

.wSitemap ul li:before, .wSitemap ul li:after, .wSitemap ul li a {
  transition: background-color 0.1s ease, color 0.1s ease;
}

.wSitemap {
  font-family: Arial;
  font-size: 14px;
  margin: 0 0 5px;
}

.wSitemap > ul {
  padding-left: 10px;
  overflow: hidden;
}

.wSitemap ul {
  counter-reset: sitemap;
  list-style-type: none;
}

.wSitemap ul ul {
  margin-left: 10px;
}

.wSitemap ul li {
  position: relative;
  margin: 5px 0;
}

.wSitemap ul li:before {
  float: left;
  background-color: #354f5e;
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  counter-increment: sitemap;
  content: counters(sitemap, ".") " ";
}

.wSitemap ul li:after {
  content: '|-';
  position: absolute;
  right: 100%;
  margin-right: 10px;
  top: 0;
  width: auto;
  height: 100%;
  white-space: nowrap;
  text-align: right;
  opacity: .3;
  border-bottom-left-radius: 4px;
}

.wSitemap ul li a {
  text-decoration: none;
  color: #354f5e;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-shadow: 0 -1px #fff;
  background-color: #fff;
  display: block;
  overflow: hidden;
}

.wSitemap ul li:hover > a {
  text-decoration: underline;
  background-color: #40677d;
}

.wSitemap ul li:hover:after {
  color: #40677d;
}

.wSitemap ul li:hover:before, .wSitemap ul li:hover:after {
  background-color: #8c8c8c;
}

.wSitemap ul li li:hover > a {
  background-color: #35535e;
}

.wSitemap ul li li:hover:before, .wSitemap ul li li:hover:after {
  background-color: #35535e;
}

.wSitemap ul li li li:hover > a {
  background-color: #3a4365;
}

.wSitemap ul li li li:hover:before, .wSitemap ul li li li:hover:after {
  background-color: #35635e;
}

.wSitemap ul li li li li:hover > a {
  background-color: #3a4365;
}

.wSitemap ul li li li li:hover:before, .wSitemap ul li li li li:hover:after {
  background-color: #3f3f4e;
}

.wSitemap ul li li li li li:hover > a {
  background-color: #35535a;
}

.wSitemap ul li li li li li:hover:before, .wSitemap ul li li li li li:hover:after {
  background-color: #37525e;
}

.mfiModal {
  position: relative;
}

.mfiModal p {
  margin: 0;
}

.mfiModal--md {
  max-width: 590px;
  margin: 0 auto;
}

.mfiModal__header {
  padding: 36px 36px 33px;
  background: #6395c4;
}

@media only screen and (max-width: 480px) {
  .mfiModal__header {
    padding: 10px;
  }
}

.mfiModal__title {
  position: relative;
  text-align: center;
  color: white;
  font-family: Verdana;
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  max-width: 80%;
  margin: 0 auto 10px;
  padding-bottom: 18px;
}

.mfiModal__title:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -16px;
  width: 32px;
  height: 2px;
  background: #fff;
}

@media only screen and (max-width: 480px) {
  .mfiModal__title {
    font-size: 14px;
    line-height: 15px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }
}

.mfiModal__subtitle {
  color: white;
  font-family: Arial;
  font-size: 16px;
  font-style: italic;
  line-height: 18px;
}

.mfiModal__body {
  padding: 25px 36px 36px;
  background: #fff;
  box-shadow: inset 0 39px 48px rgba(0, 0, 0, 0.12);
}

.mfiModal .button--primary {
  max-width: 100%;
  width: 100%;
  height: 44px;
  text-transform: uppercase;
  text-align: center;
}

.mfiModal label span {
  color: #6395c4;
}

.mfiModal .notate_mfi {
  font-style: italic;
}

.mfiModal .notate_mfi span {
  color: #6395c4;
  display: inline-block;
  vertical-align: middle;
  padding-top: 5px;
}

@media only screen and (max-height: 730px) {
  .mfiModal .mfiModal__header {
    padding: 15px;
  }
  .mfiModal .mfiModal__body {
    padding: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .priceForm .grid__cell label {
    width: 35%;
  }
  .priceForm .grid__cell:not(:last-child) {
    padding-top: 0;
  }
}

.compatibilityImage {
  display: block;
}

@media only screen and (min-width: 1025px) {
  .compatibilityImage {
    right: -1.75rem;
    bottom: 0.67rem;
    z-index: 1;
    position: absolute;
  }
}
/* Стили для новогоднего баннера*/
.fake {
  padding:2rem 0 0 0;
  text-align: center;
  color: white;
}

.fake_head {
  text-transform: uppercase;
  background-color: #e64622;
}

.fake_body {
  background-color: #bd2911;
}
/* Стили для новогоднего баннера */
.bg-newyear {
  position: relative;
  min-height: 340px;
}

.bg-newyear {
  width: 100%;
  height: 400px;
  background: url("../css/pic/newyear.png") no-repeat;
  background-size: contain;
  z-index: -1;
}

.newyear {
 padding-bottom:0px;
  margin: -100px 0px 0px 0px;
  height: 376px;
}

.newyear .layeredBlock__top {
  position: relative;
  background: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 1.875rem 2.5rem 3.125rem;
  box-shadow: none;
}

@font-face {
font-family: "12517";
src: url("../css/pic/12517.otf") format("opentype");
}

.nytext .layeredBlock__description {
font-family: "12517";
  font-style: italic;
  text-align: center;
color: yellow;
font-size: 30px;
background:rgba(80,80,80, 0.6);
border-radius: 10%;
max-height: 20em;
line-height: 30px;
}

.bg-newyear .layeredBlock {
  margin-top: 40px;
  max-width: 600px;
}

@media only screen and (max-width: 1125px) {
  .bg-newyear .layeredBlock {
    margin-right: 0;
  }
}

@media only screen and (max-width: 987px) {
  .bg-newyear .layeredBlock {
    max-width: 100%;
  }
  .bg-newyear .layeredBlock__description {
    margin: 33% 0px 0px 0px;
    color: #fff;
  }
}

@media only screen and (max-width: 688px) {
.bg-newyear .layeredBlock__description {
    font-size: 150%;
  }
}

.bg-doctor {
  position: relative;
  min-height: 340px;
}

.bg-doctor:before {
  content: '';
  width: 400px;
  height: 400px;
  background: url("../css/pic/workdoc.png") no-repeat;
  background-position: /* left  20px */ bottom 0;
  background-clip: content-box;
  background-size: contain;
  position: absolute;
  bottom: -3.75rem;
  left: 0px;
  display: none;
  z-index: -1;
}

@media only screen and (min-width: 1025px) {
  .bg-doctor:before {
    left: 0px;
    display: block;
  }
}

@media only screen and (min-width: 1281px) {
  .bg-doctor:before {
    left: 60px;
  }
}

.layeredBlock {
  margin: auto;
  margin-top: 50px;
  max-width: 500px;
  position: relative;
}

.layeredBlock__top {
  position: relative;
  background: #6395c4;
  color: #fff;
  font-size: 1rem;
  padding: 2.5rem 1.875rem 2.5rem 3.125rem;
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

.layeredBlock__arrow {
  fill: #dfdfdf;
  position: absolute;
  top: 10px;
  right: calc(100% - 30px);
  display: none;
}

@media only screen and (min-width: 1281px) {
  .layeredBlock__arrow {
    display: block;
  }
}

.layeredBlock__description {
  max-height: 6em;
  overflow: hidden;
}

.layeredBlock__bottom {
  display: block;
  position: absolute;
  width: calc(100% + 50px);
  height: calc(100% + 20px);
  top: 25px;
  right: -25px;
  background: #fff;
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

@media only screen and (min-width: 1025px) {
  .layeredBlock__bottom {
    right: 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .layeredBlock {
    margin-right: 0;
  }
}

.article__image {
  position: relative;
  margin-bottom: 2em;
}

.article__image img {
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

@media only screen and (min-width: 481px) {
  .article__image {
    max-width: 50%;
    float: left;
    margin-right: 2em;
  }
}

.googlemap {
  position: relative;
  height: 420px;
  max-height: 70vh;
  box-shadow: 0px 53px 67px 0px rgba(13, 12, 13, 0.24);
}

.contactColumn__caption {
  font-weight: 700;
  font-size: 0.75rem;
  color: #000;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.contactColumn__content {
  font-size: 0.875rem;
}

.contactColumn__content a {
  color: #6395c4;
  text-decoration: underline;
}

.contactColumn__content a:hover {
  text-decoration: none;
}

.region {
  max-width: 800px;
}

.region__caption {
  width: 200px;
  padding: 0.9375rem;
  background: #fff;
  box-shadow: 0px 20px 67px 0px rgba(13, 12, 13, 0.24);
  margin-bottom: 2em;
  min-height: 70px;
}

.region__caption:after {
  margin-left: 0;
}

.region__link {
  width: 100%;
  height: 2.75rem;
  font-size: 0.75rem;
  line-height: 1.5em;
  color: #4c4c4c;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
  text-align: center;
  transition: color, background .2s;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.region__link:hover {
  color: #fff;
  background: #6395c4;
}

._wb {
  word-wrap: break-word;
}

.priceForm .grid__cell {
  width: 100%;
}

.priceForm .grid__cell label {
  float: left;
  vertical-align: top;
}

.priceForm .grid__cell input {
  float: right;
  vertical-align: top;
  box-shadow: -30px 20px 160px rgba(0, 0, 0, 0.32);
}

.grid__cell--contacts {
  flex-basis: 180px;
  padding: 10px 0;
}

@media only screen and (min-width: 769px) {
  .grid__cell--contacts {
    flex-basis: 225px;
  }
}

@media only screen and (min-width: 1025px) {
  .grid__cell--contacts {
    flex-basis: auto;
  }
}

.priceForm label.error {
  left: 0 !important;
  top: 100% !important;
}

.priceForm .form__input--textarea {
  resize: none;
  width: 100%;
  padding: 0.5rem;
  float: right;
  height: 92px;
  min-height: 92px;
  font-size: 0.8125rem;
  border: 1px solid #e1e1e1;
  box-shadow: -30px 20px 160px rgba(0, 0, 0, 0.32);
}

.slider_else_universal .advantage {
  display: block;
  text-align: center;
}

.slider_else_universal .advantage:hover {
  box-shadow: none !important;
}

.slider_else_universal .advantage__icon {
  margin: 0 auto 30px;
}

.slider_else_universal .items_universal {
  display: inline-block;
  vertical-align: top;
  width: 230px;
  height: 275px;
}

.features__menu .items_universal {
  display: inline-block;
  vertical-align: top;
  width: 220px;
  height: 275px;
}

.features__menu {
  text-align: center;
}

.slider_about .items_about {
  display: inline-block;
  vertical-align: top;
  width: 230px;
  height: 275px;
}

.slider_about .advantage {
  box-shadow: none !important;
  display: block;
  text-align: center;
}

.slider_about .advantage:hover {
  box-shadow: none !important;
}

.slider_about .advantage__icon {
  margin: 0 auto 30px;
}

.form__dib {
  float: right;
  width: 55%;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .form__dib {
    width: 65%;
  }
}

.description_range {
  width: 42%;
  font-weight: bold;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
       its values is > 50%. */
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 38px;
  height: 38px;
  left: -17px;
  top: -10px;
  background: #5783ac;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

/* Styling;
 */
.noUi-background {
  background: #f0f0f0;
}

.noUi-connect {
  background: #5d8cb8;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
  transition: background 450ms;
}

.noUi-origin {
  border-radius: 9px;
  color: #fff;
}

.noUi-target {
  border-radius: 9px;
  border: 1px solid #5d8cb8;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-target.noUi-connect {
  width: 90%;
  margin: 0 auto;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #BBB;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

.noUi-handle {
  border: 3px solid #5783ac;
  border-radius: 50%;
  background: #FFF;
  cursor: default;
  box-shadow: 0 0 2px #FFF, inset 0 0 2px #FFF;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF,
 inset 0 1px 7px #DDD,
 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 50%;
}

.noUi-handle:after {
  left: -4px;
  top: -4px;
  width: 40px;
  height: 40px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-origin,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.mobile__text {
  color: #fff;
  text-transform: uppercase;
}

.mobile__txt {
  color: #fff;
  text-transform: none;
  font-size: 68%;
  display:none;
}

.is-visible {
  display: block !important;
}

.scrollerUp {
  font-size: 0;
  display: none;
  position: fixed;
  bottom: 55px;
  right: -10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  border-radius: 6px;
  line-height: 50px;
  background: #354f5e;
  color: #fff;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  border: 1px solid #354f5e;
}

@media only screen and (max-width: 767px) {
.scrollerUp {
  bottom: 23px;
}
}

.scrollerUp:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 50%;
  width: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(-45deg) translate(20%, 20%);
  transform: rotate(-45deg) translate(20%, 20%);
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.scrollerUp:hover {
  background: #fff;
}

.scrollerUp:hover:after {
  border-color: #354f5e;
}

.slider-wrapper {
  position: relative;
}

.slider-arrow {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 100%;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all .2s;
  cursor: pointer;
}

.slider-arrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 20px;
  width: 20px;
  -webkit-transform-origin: center;
  transform-origin: center;
 /* border-top: 3px solid #354f5e;
  border-left: 3px solid #354f5e;*/
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.slider-arrow:hover {
  background: #6395c4;
  border-color: #6395c4;
}

.slider-arrow:hover:after {
  border-right-color: #fff;
}

.slider-arrow--prev {
  right: 40px;
}

.slider-arrow--prev:after {
  -webkit-transform: rotate(-45deg) translate(15%, 15%);
  transform: rotate(-45deg) translate(15%, 15%);
}

.slider-arrow--next {
  right: 0px;
}

.slider-arrow--next:after {
  -webkit-transform: rotate(135deg) translate(15%, 15%);
  transform: rotate(135deg) translate(15%, 15%);
}

.headerSlider .slider-arrow {
  height: 70px;
  width: 70px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  right: auto;
  z-index: 2;
}

.headerSlider .slider-arrow--prev {
  right: 50%;
  -webkit-transform: translateX(-600px);
  transform: translateX(-600px);
}

.headerSlider .slider-arrow--next {
  left: 50%;
  -webkit-transform: translateX(600px);
  transform: translateX(600px);
}

@media only screen and (max-width: 1360px) {
  .headerSlider .slider-arrow--prev {
    left: 0;
    right: auto;
    -webkit-transform: none;
    transform: none;
  }
  .headerSlider .slider-arrow--next {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.headerSlider:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.button-header-price {
  background: #5DC8A2;
  border-color: #5DC8A2;
  font-size: 1.175rem;
  margin: 0;
  position: absolute;
  height: 45px;
  width: 25%;
  bottom: 30px;
  right: 10px;
}

.button-header-price:hover {
  color: #5DC8A2;
}

.price--mobile {
  display:none;
  margin: 10px auto;
  position: inherit;
  height: 45px;
  width: 100%;
  bottom: 0;
  right: 0;
  font-size: 2.175rem;
}

@media only screen and (max-width: 767px) {
.price--mobile {
  display: inline-flex;
}
.button--header--price--mobile {
  display: none;
}
}


.button--header--price--mobile {
    position: fixed;
    height: 50px;
    font-size: 1.675rem;
    bottom: 0px;
    right: 0;
    width: 70%;
    margin: 0 5% 10px 5%;
}

@media screen and (max-width: 1024px) and (min-width: 767px) {
  .button--header--price--mobile {
      bottom: 0px;
      left: 0;
      width: 95%;
      margin: 0 2.5% 10px 2.5%;
  }
}

.button-aside-price {
  font-size: 1.075rem;
  height: 2.925rem;
}

.button-contacts-price {
  background: #6395c4;
  border-color: #6395c4;
  font-size: 1.075rem;
  margin: 0;
  height: 2.925rem;
  width: 100%;
}

.video-container {
	position:relative;
	padding-bottom:56.25%;
	/** padding-top:25px; */
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.pluso-110010011001-14 .pluso-wrap a{
  background-image: url(http://share.pluso.ru/img/pluso-like/round/medium/04.png)!important;
  background-repeat: no-repeat!important;
  background-size: contain;
  margin:0!important;
  height: 25px;
  position: relative;
}
.pluso-110010011001-14 .pluso-wrap a:after{
  content: '';
  position: absolute;
  display: inline-block;
  top: 2px;
  right: 0;
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.5);
}
.pluso-110010011001-14 .pluso-wrap .pluso-more{
  display: none;
}
.pluso-110010011001-14 .pluso-wrap a.pluso-twitter {
  background-position: -31px 0;
}
.pluso-110010011001-14 .pluso-wrap a.pluso-google {
  background-position: -186px 0;
}
.pluso-110010011001-14 .pluso-wrap div b{
  padding: 0 10px!important;
}



/* FOOTER SOCIALS
==================================================================================================== */

.page-footer-line{
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: 15px;
}
.footer-socials{
  display: flex;
  margin-top: 15px;
}

.footer-socials a{
  text-decoration: none;
}

.footer-socials .socials-title{
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: auto auto;
  text-transform: uppercase;
}

.footer-socials .footer-social-icon{
  width: 27px;
  height: 27px;
  fill:#fff;
  transition: .7s;
  margin-left: 7px;
}


.footer-icon_instagram:hover{
  fill:#b4a794;
}
.footer-icon_facebook:hover{
  fill:#4065b5;
}
/* END FOOTER SOCIALS
==================================================================================================== */


/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 15px 12px 6px 12px;
    /*border: 1px solid #ccc; Style the tab content */
    border-top: none;
}

.tabs .region_title {
  padding: 5px 5px;
  text-align: -webkit-center;
}

.tabs {
}

.tablinks {
    padding: 10px;
    background: white;
    cursor: pointer;
    width: 100%;
}

.tablinks:hover {
    background: #6395c4;
    color: #ffffff;
}

.tabs .active{
    background: #6395c4;
    color: #ffffff;
}

.world_region {
    height: 108px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Region spoiler */

.spoilersregions {
  display:none;
}

@media only screen and (max-width: 768px) {
.spoilersregions {
  display: block;
}
.tabregions {
  display: none;
}
}

input[id^="spoiler"]{
 display: none;
}
input[id^="spoiler"] + label {
 display: block;
 margin: 0 auto;
 padding: 10px 20px;
 background: #6395c4;
 color: #fff;
 text-align: center;
 font-size: 24px;
 cursor: pointer;
 transition: all .6s;
}
input[id^="spoiler"]:checked + label {
 color: #333;
 background: #ccc;
}
input[id^="spoiler"] ~ .spoiler {
 height: 0;
 overflow: hidden;
 opacity: 0;
 margin: 0px auto 10px; 
 padding: 10px; 
 background: #eee;
 border: 1px solid #ccc;
 transition: all .6s;
}
input[id^="spoiler"]:checked + label + .spoiler{
 height: auto;
 opacity: 1;
 padding: 10px;
}


details summary {
  border:1px solid #6395c4;
  padding:10px;
}

details summary::-webkit-details-marker {
  color:#6395c4;
}
