@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url(/builds/dev/font/Roboto-Light.woff2) format("woff2"), url(/builds/dev/font/Roboto-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(/builds/dev/font/Roboto-Regular.woff2) format("woff2"), url(/builds/dev/font/Roboto-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url(/builds/dev/font/Roboto-Medium.woff2) format("woff2"), url(/builds/dev/font/Roboto-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url(/builds/dev/font/Roboto-Bold.woff2) format("woff2"), url(/builds/dev/font/Roboto-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url(/builds/dev/font/Roboto-Black.woff2) format("woff2"), url(/builds/dev/font/Roboto-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 300;
  src: url(/builds/dev/font/SourceSansPro-Light.woff2) format("woff2"), url(/builds/dev/font/SourceSansPro-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 400;
  src: url(/builds/dev/font/SourceSansPro-Regular.woff2) format("woff2"), url(/builds/dev/font/SourceSansPro-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 600;
  src: url(/builds/dev/font/SourceSansPro-SemiBold.woff2) format("woff2"), url(/builds/dev/font/SourceSansPro-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 700;
  src: url(/builds/dev/font/SourceSansPro-Bold.woff2) format("woff2"), url(/builds/dev/font/SourceSansPro-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 900;
  src: url(/builds/dev/font/SourceSansPro-Black.woff2) format("woff2"), url(/builds/dev/font/SourceSansPro-Black.woff) format("woff");
  font-display: swap;
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted currentColor;
          text-decoration: underline dotted currentColor;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 20px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #231f20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

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

.is-hidden {
  display: none !important;
}

html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  font-size: 20px;
}
@media (min-width: 320px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 450px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 540px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1640px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1840px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 20px;
  }
}

html.no-scroll,
html.no-scroll body {
  overflow: hidden !important;
}

body {
  display: flex;
  min-width: 320px;
}
body * {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body * {
    -ms-overflow-style: none;
  }
  body *::-webkit-scrollbar {
    display: none;
  }
}

h1,
.h1,
.c-h1 {
  font-weight: 300;
  font-size: 30px;
  line-height: 2rem;
}
@media (min-width: 769px) {
  h1,
.h1,
.c-h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

h2,
.h2,
.c-h2 {
  color: #231f20;
  font-weight: 400;
  line-height: 1;
}

h3,
.h3,
.c-h3 {
  color: #000;
  font-weight: 400;
}

big,
.big,
.c-big {
  color: #000;
  font-size: 30px;
}

b,
strong {
  font-weight: 700;
}

hr {
  border: none;
  border-bottom: 2px solid #000;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  margin-bottom: 10px;
}

ol {
  padding-left: 30px;
}
ol li {
  margin: 10px 0;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.c-right {
  float: right;
  margin: 0 0 10px 10px;
}

.c-left {
  float: left;
  margin: 0 10px 10px 0;
}

.c-black {
  color: #000;
}

.c-gray {
  color: #eef4f2;
}

.c-hidden {
  display: none;
}

.c-green-title {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 3.25rem;
  color: #4d897c;
}
@media (min-width: 769px) {
  .c-green-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-top: 0;
  }
}

.c-green-btn {
  background-color: #4d897c;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  padding: 18px 30px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  border: 1px solid #4d897c;
  transition: 0.2s linear;
}
.c-green-btn:hover {
  color: #4d897c;
  background-color: #fff;
}

.c-link-with-arrow {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  color: #4d897c;
  font-family: "Roboto";
  position: relative;
  padding-right: 110px;
}
.c-link-with-arrow:hover::after {
  right: 10px;
}
.c-link-with-arrow::after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("/images/site/link-arrow-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.c-link-with-arrow::before {
  position: absolute;
  content: "";
  width: 3.25rem;
  height: 1px;
  opacity: 0.5;
  background: #4d897c;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .c-link-with-arrow {
    font-size: 18px;
  }
}

.c-content {
  margin-bottom: 45px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #2b2a29;
}
@media (min-width: 451px) {
  .c-content {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1241px) {
  .c-content {
    font-size: 20px;
    line-height: 30px;
  }
}
.c-content p {
  margin-bottom: 20px;
}
.c-content ul {
  margin-bottom: 20px;
}
.c-content ul.green {
  color: #388776;
}
.c-content li {
  margin-top: 10px;
}
.c-content a {
  color: #000;
  text-decoration: underline;
}
.c-content a:hover {
  text-decoration: none;
}

input {
  outline: none;
}

textarea {
  outline: none;
}

@media print, screen and (max-width: 39.99875em) {
  .c-small-hidden {
    display: none;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .c-medium-hidden {
    display: none;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .c-large-hidden {
    display: none;
  }
}

@media screen and (min-width: 75em) and (max-width: 89.99875em) {
  .c-xlarge-hidden {
    display: none;
  }
}

@media screen and (min-width: 90em) {
  .c-xxlarge-hidden {
    display: none;
  }
}

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

.grecaptcha-badge {
  display: none !important;
}

.l-content-max-width {
  width: 100%;
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .l-content-max-width {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-content-max-width {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-content-max-width {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-content-max-width {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-content-max-width {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-content-max-width {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-content-max-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-content-max-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-content-max-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-content-max-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-content-max-width {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}

@media (max-width: 1920px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left {
    margin-left: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left .l-stretch-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left .l-stretch-content-margin {
    margin-left: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right {
    margin-right: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right .l-stretch-content {
    padding-right: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right .l-stretch-content-margin {
    margin-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all .l-stretch-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all .l-stretch-content-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-stretch-left-all {
    margin-left: -7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left-all {
    margin-left: -4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left-all {
    margin-left: -4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left-all {
    margin-left: -4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left-all {
    margin-left: -2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left-all {
    margin-left: -1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left-all {
    margin-left: -1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left-all {
    margin-left: -1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left-all {
    margin-left: -1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left-all {
    margin-left: -1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left-all {
    margin-left: -7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left-all .l-stretch-content {
    padding-left: 7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-left-all .l-stretch-content-margin {
    margin-left: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-stretch-right-all {
    margin-right: -7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right-all {
    margin-right: -4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right-all {
    margin-right: -4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right-all {
    margin-right: -4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right-all {
    margin-right: -2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right-all {
    margin-right: -1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right-all {
    margin-right: -1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right-all {
    margin-right: -1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right-all {
    margin-right: -1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right-all {
    margin-right: -1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right-all {
    margin-right: -7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right-all .l-stretch-content {
    padding-right: 7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-right-all .l-stretch-content-margin {
    margin-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-stretch-all-all {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all-all {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all-all {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all-all {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all-all {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all-all {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all-all {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all-all {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all-all {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all-all {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all-all {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all-all .l-stretch-content {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}
@media (max-width: 1920px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-stretch-all-all .l-stretch-content-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}

.l-stretch-global-all {
  width: 100vw !important;
  margin-left: calc((50vw - 50%) * -1) !important;
  margin-right: calc((50vw - 50%) * -1) !important;
}
.l-stretch-global-all .l-stretch-content {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-all .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.l-stretch-global-all .l-stretch-content-margin {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-all .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}

.l-stretch-global-left {
  width: calc(100% + ((100vw - 100%) / 2)) !important;
  margin-left: calc((50vw - 50%) * -1) !important;
}
.l-stretch-global-left .l-stretch-content {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-left .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.l-stretch-global-left .l-stretch-content-margin {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-left .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}

.l-stretch-global-right {
  width: calc(100% + ((100vw - 100%) / 2)) !important;
  margin-right: calc((50vw - 50%) * -1) !important;
}
.l-stretch-global-right .l-stretch-content {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-right .l-stretch-content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.l-stretch-global-right .l-stretch-content-margin {
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 1920px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 320px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .l-stretch-global-right .l-stretch-content-margin {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}

@media (max-width: 1920px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left {
    padding-left: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left-margin {
    margin-left: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-left-content {
    padding-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left-content {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left-content {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left-content {
    padding-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left-content {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left-content {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left-content {
    padding-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left-content {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left-content {
    padding-left: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-left-content-margin {
    margin-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left-content-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left-content-margin {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left-content-margin {
    margin-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left-content-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left-content-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left-content-margin {
    margin-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left-content-margin {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left-content-margin {
    margin-left: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-left-all {
    padding-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left-all {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left-all {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left-all {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left-all {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left-all {
    padding-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left-all {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left-all {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left-all {
    padding-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left-all {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left-all {
    padding-left: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-left-all-margin {
    margin-left: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-left-all-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-left-all-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-left-all-margin {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-left-all-margin {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-left-all-margin {
    margin-left: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-left-all-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-left-all-margin {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-left-all-margin {
    margin-left: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-left-all-margin {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-left-all-margin {
    margin-left: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right {
    padding-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right-margin {
    margin-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right-content {
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right-content {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right-content {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right-content {
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right-content {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right-content {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right-content {
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right-content {
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right-content {
    padding-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right-content-margin {
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right-content-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right-content-margin {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right-content-margin {
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right-content-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right-content-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right-content-margin {
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right-content-margin {
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right-content-margin {
    margin-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right-all {
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right-all {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right-all {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right-all {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right-all {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right-all {
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right-all {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right-all {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right-all {
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right-all {
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right-all {
    padding-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-right-all-margin {
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-right-all-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-right-all-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-right-all-margin {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-right-all-margin {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-right-all-margin {
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-right-all-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-right-all-margin {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-right-all-margin {
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-right-all-margin {
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-right-all-margin {
    margin-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all-content {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all-content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all-content {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all-content {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all-content {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all-content-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all-content-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all-content-margin {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all-content-margin {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all-content-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all-content-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all-content-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all-content-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all-content-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all-all {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all-all {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all-all {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all-all {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all-all {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all-all {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all-all {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all-all {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all-all {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all-all {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all-all {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}

@media (max-width: 1920px) {
  .l-indent-all-all-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}
@media (max-width: 1840px) {
  .l-indent-all-all-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1640px) {
  .l-indent-all-all-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1440px) {
  .l-indent-all-all-margin {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 1240px) {
  .l-indent-all-all-margin {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 960px) {
  .l-indent-all-all-margin {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}
@media (max-width: 768px) {
  .l-indent-all-all-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .l-indent-all-all-margin {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 450px) {
  .l-indent-all-all-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 320px) {
  .l-indent-all-all-margin {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (min-width: 1920px) {
  .l-indent-all-all-margin {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}

.search {
  margin-top: 60px;
}
@media (min-width: 769px) {
  .search {
    margin-top: 40px;
  }
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-page-winners__content-table .ps__rail-y {
  opacity: 1;
}

.ps__thumb-y {
  background-color: #4d897c;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #4d897c;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eef4f2;
  border-radius: 6px;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#cboxLoadedContent {
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 3rem;
}

#cboxLoadedContent .colorbox-form-body > *:last-child {
  margin-bottom: 0;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: none !important;
  margin: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.cboxPhoto {
  display: block;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  width: 25px;
  height: 25px;
  background: url("/images/site/colorbox/border1.png") no-repeat 0 0;
}

#cboxTopCenter {
  height: 25px;
  background: url("/images/site/colorbox/border1.png") repeat-x 0 -50px;
}

#cboxTopRight {
  width: 25px;
  height: 25px;
  background: url("/images/site/colorbox/border1.png") no-repeat -25px 0;
}

#cboxBottomLeft {
  width: 25px;
  height: 25px;
  background: url("/images/site/colorbox/border1.png") no-repeat 0 -25px;
}

#cboxBottomCenter {
  height: 25px;
  background: url("/images/site/colorbox/border1.png") repeat-x 0 -75px;
}

#cboxBottomRight {
  width: 25px;
  height: 25px;
  background: url("/images/site/colorbox/border1.png") no-repeat -25px -25px;
}

#cboxMiddleLeft {
  width: 25px;
  background: url("/images/site/colorbox/border2.png") repeat-y 0 0;
}

#cboxMiddleRight {
  width: 25px;
  background: url("/images/site/colorbox/border2.png") repeat-y -25px 0;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
  height: 500px;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

#cboxTitle {
  position: absolute;
  bottom: calc(2rem - 1px);
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto 2rem;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

#cboxCurrent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#cboxLoadingOverlay {
  background: #fff url("/images/site/colorbox/loading.gif") no-repeat 5px 5px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 0;
  right: 42px;
  color: #444;
}

#cboxPrevious {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #4d897c;
}
#cboxPrevious::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
}

#cboxNext {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #4d897c;
}
#cboxNext::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  color: #444;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.colorbox--no-title #cboxTitle {
  display: none !important;
}

.colorbox--full-screen #cboxTopLeft, .colorbox--full-screen #cboxTopRight, .colorbox--full-screen #cboxTopCenter, .colorbox--full-screen #cboxMiddleLeft, .colorbox--full-screen #cboxMiddleRight, .colorbox--full-screen #cboxBottomLeft, .colorbox--full-screen #cboxBottomRight, .colorbox--full-screen #cboxBottomCenter {
  display: none;
}
.colorbox--full-screen #cboxContent, .colorbox--full-screen #cboxLoadingOverlay {
  background: none;
  background-color: none;
}
.colorbox--full-screen #cboxContent {
  width: 100% !important;
}
.colorbox--full-screen #cboxLoadedContent {
  width: 100% !important;
}
.colorbox--full-screen #cboxLoadedContent {
  padding-top: 3rem;
}
.colorbox--full-screen #cboxClose {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 50%;
  right: auto;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background: url("/images/site/colorbox/ico__close.svg") left center no-repeat;
  background-size: contain;
  height: 2rem;
  padding-left: 2rem;
  font-size: 0.9rem;
  color: red;
  transform: translateX(-50%);
}

.colorbox-form-body {
  width: 100%;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-header {
  background: #fff;
}
.b-header--lookbook .b-header__logo_10years {
  display: none !important;
}
.b-header--lookbook .b-header__right {
  display: none !important;
}
.b-header--lookbook .b-header__place {
  display: none !important;
}
.b-header--lookbook .b-header__menu-hamburger {
  display: none !important;
}
.b-header--lookbook .b-header__left {
  display: flex !important;
  align-items: center !important;
  position: inherit !important;
}
.b-header--lookbook .b-header__inner-content {
  padding-top: 20px !important;
}
.b-header__up-bg {
  display: flex;
  background-image: url("/images/up-bg/city-bg.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 49%;
  width: 100%;
  height: 30px;
  margin-bottom: 15px;
  color: #231f20;
  padding: 6px 0;
}
.b-header__cont-wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  max-width: 930px;
}
@media screen and (min-width: 60.625em) {
  .b-header__cont-wrapper {
    justify-content: space-between;
  }
}
.b-header__logo-wrapper {
  display: none;
  height: 20px;
}
.b-header__logo-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  vertical-align: top;
}
@media screen and (min-width: 60.625em) {
  .b-header__logo-wrapper {
    display: block;
  }
}
.b-header__title-wrapper {
  height: 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
}
@media screen and (min-width: 36.25em) {
  .b-header__title-wrapper {
    font-size: 16px;
    font-weight: 800;
  }
}
.b-header__right-wrapper {
  display: none;
}
@media screen and (min-width: 60.625em) {
  .b-header__right-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    height: 20px;
  }
}
.b-header__title-link {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #231f20;
}
.b-header__img-cursor {
  height: 20px;
}
.b-header__img-cursor img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  vertical-align: top;
  height: 20px;
}
.b-header__inner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (min-width: 1241px) {
  .b-header__inner-content {
    height: 150px;
  }
}
.b-header__left {
  display: flex;
  align-items: center;
}
@media (max-width: 1240px) {
  .b-header__left {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    display: block;
  }
}
@media (max-width: 450px) {
  .b-header__left {
    position: static;
  }
}
.b-header__logo {
  position: relative;
  width: 67px;
  height: 50px;
  margin-right: 0.5rem;
  top: -16px;
}
@media (min-width: 541px) {
  .b-header__logo {
    margin-right: 1rem;
    top: -15px;
  }
}
@media (min-width: 1241px) {
  .b-header__logo {
    margin-right: 2rem;
    width: auto;
    min-width: 67px;
    height: auto;
    top: -5px;
  }
}
.b-header__logo_10years {
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  padding-left: 0;
  padding-top: 16px;
  line-height: 18px;
  text-align: left;
}
@media (min-width: 769px) {
  .b-header__logo_10years {
    padding-left: 40px;
    padding-top: 18px;
    background: url("/images/trashFromAdminka/logo_10years.png") left top no-repeat;
  }
}
@media (min-width: 1241px) {
  .b-header__logo_10years {
    display: block;
    margin-right: 1rem;
    width: auto;
    height: 80px;
    top: 12px;
  }
}
.b-header__10years_first {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #4d897c;
  display: none;
}
@media (min-width: 541px) {
  .b-header__10years_first {
    display: inline-block;
  }
}
.b-header__10years_second {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #4d897c;
  display: none;
}
@media (min-width: 541px) {
  .b-header__10years_second {
    display: inline-block;
  }
}
.b-header__10years_mobile {
  font-family: "SourseSansPro";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #4d897c;
  display: inline-block;
}
@media (min-width: 541px) {
  .b-header__10years_mobile {
    display: none;
  }
}
.b-header__place {
  color: #4d897c;
  font-size: 0.9rem;
  line-height: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  align-items: center;
  font-family: "SourseSansPro";
  display: none;
  position: relative;
  flex: 0 0 auto;
  margin: 0 15px;
}
@media (min-width: 1441px) {
  .b-header__place {
    display: flex;
  }
}
.b-header__place-comment {
  position: absolute;
  top: 160%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05), -4px 0 4px rgba(0, 0, 0, 0.05), 4px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  line-height: 1.1rem;
}
.b-header__good-regions {
  background-color: #4d897c;
  color: #fff;
  padding: 0.05rem 1rem;
  margin-right: 0.75rem;
  cursor: pointer;
}
.b-header__good-regions:hover {
  color: #4d897c;
  background-color: #eef4f2;
}
.b-header__bad-regions {
  background-color: #4d897c;
  opacity: 0.7;
  color: #fff;
  padding: 0.05rem 1rem;
  cursor: pointer;
}
.b-header__bad-regions:hover {
  color: #4d897c;
  background-color: #eef4f2;
}
.b-header__place-marker {
  margin-right: 0.75rem;
}
.b-header__place-city {
  border-bottom: 1px dashed #4d897c;
  display: none;
}
.b-header__place-city:hover {
  border: none;
}
@media (min-width: 1700px) {
  .b-header__place-city {
    display: block;
  }
}
.b-header__right {
  display: flex;
  align-items: center;
  z-index: 100;
}
.b-header__menu-hamburger {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 100;
}
@media (min-width: 1241px) {
  .b-header__menu-hamburger {
    display: none;
  }
}
.b-header__menu-hamburger:focus {
  outline: none;
}
.b-header__menu-hamburger span {
  display: block;
  position: absolute;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  background: #4d897c;
}
.b-header__menu-hamburger span::before {
  top: 0.5rem;
  transition-property: top, transform;
}
.b-header__menu-hamburger span::after {
  bottom: 0.5rem;
  transition-property: bottom, transform;
}
.b-header__menu-hamburger span::before, .b-header__menu-hamburger span::after {
  border-radius: 2px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4d897c;
  content: "";
  transition-duration: 0.1s, 0.1s;
  transition-delay: 0.1s, 0s;
}
.b-header__menu-hamburger--active span {
  background: none;
}
.b-header__menu-hamburger--active span::after {
  top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.1s;
}
.b-header__menu-hamburger--active span::before {
  bottom: 0;
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.1s;
}
.b-header__menu {
  display: none;
}
@media (min-width: 1241px) {
  .b-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: -5px;
  }
}
.b-header__menu-mobile {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  display: none;
}
.b-header__menu-mobile--active {
  display: flex;
  height: auto;
  opacity: 1;
}
@media (min-width: 769px) {
  .b-header__menu-mobile--active {
    height: 150px;
  }
}
@media (min-width: 1241px) {
  .b-header__menu-mobile {
    display: none;
  }
}
.b-header__menu-item {
  display: inline-block;
  color: #3e3e3e;
  font-size: 18px;
  line-height: 1.2rem;
  width: 100%;
  margin-bottom: 1rem;
  white-space: nowrap;
  position: relative;
}
.b-header__menu-item a.b-header__menu-item-link {
  color: #3e3e3e;
  line-height: 1.2rem;
  white-space: nowrap;
}
.b-header__menu-item:hover, .b-header__menu-item--active, .b-header__menu-item.selected {
  color: #4d897c;
}
.b-header__menu-item:hover a.b-header__menu-item-link, .b-header__menu-item--active a.b-header__menu-item-link, .b-header__menu-item.selected a.b-header__menu-item-link {
  position: relative;
  color: #4d897c;
}
@media (min-width: 769px) {
  .b-header__menu-item {
    width: auto;
    margin-right: 25px;
  }
}
@media (min-width: 1241px) {
  .b-header__menu-item {
    margin-bottom: 10px;
  }
}
@media (min-width: 1641px) {
  .b-header__menu-item {
    margin-right: 30px;
  }
}
@media (min-width: 1841px) {
  .b-header__menu-item {
    font-size: 1rem;
    margin-right: 40px;
  }
}
.b-header__menu-item:hover div.b-header__submenu {
  display: flex;
  flex-direction: column;
}
.b-header__menu-item.withsub:hover::after {
  content: "";
  width: 2px;
  height: 85px;
  background-color: #4d897c;
  position: absolute;
  left: -11px;
  top: 0;
  z-index: 100;
}
.b-header__submenu {
  position: absolute;
  display: none;
  left: 0;
  top: 100%;
  width: 100%;
  flex-direction: column;
  padding: 0;
  color: #3e3e3e;
  padding-top: 5px;
}
.b-header__submenu-item {
  text-decoration: none;
  line-height: 140%;
  text-align: left;
  cursor: pointer;
}
.b-header__submenu-item:hover {
  color: #4d897c;
}
.b-header__search {
  cursor: pointer;
  display: none;
  margin-right: 1.25rem;
}
@media (min-width: 769px) {
  .b-header__search {
    display: block;
  }
}
@media (min-width: 1241px) {
  .b-header__search {
    display: block;
    margin-right: 2rem;
  }
}
.b-header__mobile-search {
  text-align: center;
  display: none;
}
.b-header__mobile-search--active {
  display: block;
}
@media (min-width: 769px) {
  .b-header__mobile-search {
    display: none;
  }
}
.b-header__mobile-search-input {
  flex: 1 1 auto;
  background: none;
  margin-bottom: 1rem;
  padding: 1rem 0 0.5rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #eef4f2;
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
}
.b-header__mobile-search-submit {
  flex: 0 0 auto;
  flex-grow: 0;
  width: 1rem;
  height: 1rem;
  background-image: url("/images/site/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  text-align: right;
  font-size: 2rem;
  transition: all 0.5s linear;
}
.b-header__icons {
  display: flex;
  align-items: center;
}
.b-header__icon {
  cursor: pointer;
  margin-right: 0.5rem;
  position: relative;
}
@media (min-width: 321px) {
  .b-header__icon {
    margin-right: 1.25rem;
  }
}
.b-header__icon--3d {
  display: none;
}
@media (min-width: 1241px) {
  .b-header__icon--3d {
    display: block;
  }
}
.b-header__icon:last-child {
  margin-right: 0;
}
.b-header__icon:hover path {
  fill: #4d897c;
}
.b-header__icon:hover .b-header__basket-count {
  color: #4d897c;
}
.b-header__basket-count {
  position: absolute;
  font-weight: 700;
  font-size: 0.55rem;
  line-height: 0.5rem;
  color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-footer {
  margin-bottom: 0 !important;
}
.b-footer {
  background: #4d897c;
  margin-top: 5rem;
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 3.25rem;
}
.b-footer--lookbook {
  background: transparent !important;
  margin-top: 0 !important;
}
.b-footer--lookbook .b-footer__top-bg {
  display: none !important;
}
.b-footer--lookbook .b-footer__categories {
  display: none !important;
}
.b-footer--lookbook .b-footer__socials {
  display: none !important;
}
.b-footer--lookbook .b-footer__copyright {
  color: #808284 !important;
}
.b-footer--lookbook .b-footer__techart-mark a {
  color: #808284 !important;
}
.b-footer--lookbook .b-footer__logo {
  color: #808284 !important;
}
.b-footer--lookbook .b-footer__content {
  margin-top: 0 !important;
}
.b-footer__top-bg {
  height: 144px;
  background-image: url("/images/site/footer-bg.png");
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  background-position: center;
  top: -3.75rem;
  background-size: 100%;
}
.b-footer__content {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.b-footer__block {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.b-footer__block:first-child {
  flex: 1 1 auto;
}
.b-footer__categories {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 1241px) {
  .b-footer__categories {
    max-width: 1600px;
  }
}
.b-footer__category {
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
@media (min-width: 541px) {
  .b-footer__category {
    width: calc(100% / 2 - 1rem);
    margin-right: 1rem;
  }
}
@media (min-width: 1241px) {
  .b-footer__category {
    width: calc(100% / 4 - 3rem);
    margin-bottom: 0;
    margin-right: 3rem;
  }
}
.b-footer__category a {
  color: #fff;
}
.b-footer__category a:hover {
  text-decoration: underline;
}
.b-footer__category-item {
  font-weight: 300;
  display: inline-block;
  color: #fff;
}
.b-footer__category-item:hover {
  text-decoration: underline;
  cursor: pointer;
}
.b-footer__category-item-text {
  font-weight: 300;
  display: inline-block;
  color: #fff;
}
.b-footer__socials {
  display: flex;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 1241px) {
  .b-footer__socials {
    width: auto;
    margin-bottom: 0;
  }
}
.b-footer__socials-item {
  cursor: pointer;
}
.b-footer__socials-item:not(:last-child) {
  margin-right: 2.75rem;
}
.b-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.b-footer__copyright, .b-footer__techart-mark {
  font-size: 0.6rem;
  line-height: 0.8rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.b-footer__copyright.bottom, .b-footer__techart-mark.bottom {
  width: 100%;
}
@media (min-width: 769px) {
  .b-footer__copyright.bottom, .b-footer__techart-mark.bottom {
    width: 50%;
  }
}
[dir="ltr"] .b-footer__techart-mark{
  text-align: right;
}
[dir="rtl"] .b-footer__techart-mark{
  text-align: left;
}
.b-footer__techart-mark a {
  color: #fff;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-header-search__ico {
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("/images/site/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.5s linear;
}
.b-header-search__ico:hover {
  transform: scale(1.3);
}
.b-header-search__ico--active {
  background-image: url("/images/site/ico__close.svg");
}
.b-header-search__body {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(73, 77, 97, 0.25), 0 0 3px rgba(73, 77, 97, 0.1);
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.5s ease-in-out;
}
.b-header-search__body--active {
  transform: translateY(150px);
  opacity: 0.95;
}
@media (min-width: content-width-mobile) {
  .b-header-search__body--active {
    transform: translateY(150px);
  }
}
.b-header-search__form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 3rem;
}
.b-header-search__form-input {
  flex: 1 1 auto;
  background: none;
  margin: 0 2rem 1rem 0;
  padding: 1rem 0 0.5rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #eef4f2;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
}
.b-header-search__form-submit {
  flex: 0 0 auto;
  flex-grow: 0;
  width: 2rem;
  height: 1rem;
  margin-right: 1rem;
  background-image: url("/images/site/ico-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  text-align: right;
  font-size: 2rem;
  transition: all 0.5s linear;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/*
	Скриптик называется selectator, смотреть тут: https://github.com/QODIO/selectator
	Его нету в npm и плюс надо было допилить для нашеё формы. А поэтому подключаем вот так.
*/
/**
 * Selectator jQuery Plugin
 * A plugin for select elements
 * version 3.2, Apr 9th, 2020
 * by Ingi á Steinamørk
*/
.options-visible {
  z-index: 999 !important;
}

#selectator_mask {
  display: none !important;
}

#selectator_mask {
  background-color: transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: 100;
}

#selectator_mask.selectator_mask_dimmed {
  background-color: rgba(0, 0, 0, 0.1);
}

/*
spinner keyframes
main element
*/
.selectator_element {
  position: relative;
  z-index: 101;
  border-bottom: 1px solid #eef4f2;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1em;
  line-height: 1;
  padding: 0.5em 0;
}

.b-form__element--has-error .selectator_element {
  border-bottom: 1px solid red !important;
}

.b-form__field:hover .selectator_element {
  border-bottom: 1px solid #4d897c;
}

.selectator_element * {
  box-sizing: border-box;
  text-decoration: none;
}

.selectator_element img {
  display: block;
}

.selectator_element.focused {
  border-bottom: 1px solid #4d897c;
  z-index: 15;
}

.selectator_element::after {
  position: absolute;
  cursor: pointer;
  content: "▼";
  font-size: 70%;
  transform: scaleY(0.75);
  right: 4px;
  color: #eef4f2;
  top: 50%;
  line-height: 0;
}

.selectator_element.loading::before {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 14px;
  line-height: 0;
  height: 14px;
  margin-top: -10px;
  -webkit-animation: selectator_spinner 500ms linear infinite;
          animation: selectator_spinner 500ms linear infinite;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
}

/* selected items */
.selectator_selected_items .selectator_placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

.single .selectator_selected_items {
  display: block;
}

.multiple .selectator_selected_items {
  display: inline-block;
  min-height: 1em;
}

.selectator_selected_items .selectator_selected_item {
  color: rgba(0, 0, 0, 0.75);
  position: relative;
  vertical-align: top;
}

.single .selectator_selected_items .selectator_selected_item {
  background-color: transparent;
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  text-decoration: none;
}

.multiple .selectator_selected_items .selectator_selected_item {
  background-color: #fafafa;
  display: inline-block;
  margin: 5px 0 0 5px;
  padding: 3px 20px 2px 5px;
  font-size: 80%;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
}

.selectator_selected_items .selectator_selected_item .selectator_selected_item_left {
  float: left;
}

.single .selectator_selected_items .selectator_selected_item .selectator_selected_item_left {
  float: left;
  width: 30px;
  margin-top: -2px;
}

.single .selectator_selected_items .selectator_selected_item .selectator_selected_item_left img {
  height: 22px;
  border-radius: 2px;
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_left {
  float: left;
  width: 22px;
  margin-top: -1px;
  margin-left: -2px;
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_left img {
  height: 18px;
  border-radius: 2px;
}

.single .selectator_selected_items .selectator_selected_item .selectator_selected_item_title {
  height: auto;
  line-height: 1.3;
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_title {
  float: left;
  padding-top: 1px;
  padding-bottom: 1px;
}

.selectator_selected_items .selectator_selected_item .selectator_selected_item_subtitle {
  display: none;
}

.single .selectator_selected_items .selectator_selected_item .selectator_selected_item_right {
  float: right;
  background-color: #ac6;
  color: #fff;
  font-weight: bold;
  font-size: 80%;
  text-align: center;
  line-height: 16px;
  border-radius: 12px;
  padding: 2px 12px;
  margin-right: 40px;
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_right {
  display: none;
}

.single .selectator_selected_items .selectator_selected_item .selectator_selected_item_remove {
  display: block;
  position: absolute;
  right: 16px;
  cursor: pointer;
  font-size: 75%;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.75);
  padding: 2px;
  line-height: 0;
  top: 50%;
  transform: scaleX(1.2);
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_remove {
  display: inline-block;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.75);
  margin: 0 0 0 5px;
  cursor: pointer;
  font-size: 60%;
  line-height: 10px;
  vertical-align: top;
  border-radius: 0 2px 2px 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 7px 5px 4px;
}

.multiple .selectator_selected_items .selectator_selected_item .selectator_selected_item_remove:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* input field */
.selectator_input,
.selectator_textlength {
  border: 0;
  display: inline-block;
  margin: 0;
  background-color: transparent;
  font-size: 13px;
  outline: none;
}

.multiple .selectator_input,
.multiple .selectator_textlength {
  padding: 3px 0 0;
  margin: 7px 0 2px 5px;
}

.single .selectator_input {
  border: 1px solid #7f9db9;
  position: absolute;
  top: 100%;
  z-index: 101;
  padding: 0.5em 1em;
  width: 100%;
  border-bottom: 0;
  background-color: #f6f6f6;
  color: #333;
  font-size: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.single.options-hidden .selectator_input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.single.options-visible .selectator_input {
  opacity: 1;
}

.disable_search .selectator_input {
  padding: 0 1px 1px 0 !important;
}

.disable_search .selectator_input {
  opacity: 0;
}

/* options */
.selectator_options {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
  display: block;
  overflow: hidden;
  width: 100%;
  max-height: 6rem;
  margin: 0;
  padding: 0;
  border: 1px solid #7f9db9;
  border-radius: 0 0 3px 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #fff;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.disable_search .selectator_options {
  border-top: 1px solid #7f9db9;
}

.single.disable_search .selectator_options {
  padding-top: 0;
}

.options-hidden .selectator_options {
  display: none;
}

.selectator_options .selectator_group {
  padding: 5px;
  font-weight: bold;
}

.selectator_options .selectator_option {
  margin: 0;
  padding: 0.5em;
  cursor: pointer;
  color: inherit;
  min-height: 1em;
}

.selectator_options .selectator_option.selectator_group_option {
  padding-left: 20px;
}

.selectator_options .selectator_option::before,
.selectator_options .selectator_option::after {
  content: "";
  display: table;
}

.selectator_options .selectator_option::after {
  clear: both;
}

.selectator_options .selectator_option .selectator_option_left {
  float: left;
}

.selectator_options .selectator_option .selectator_option_left img {
  height: 30px;
  border-radius: 2px;
}

.selectator_options .selectator_option .selectator_option_title {
  margin: 0 0.5em;
}

.selectator_options .selectator_option .selectator_option_subtitle {
  font-size: 70%;
  color: rgba(0, 0, 0, 0.5);
  margin-top: -4px;
  margin-bottom: -1px;
  margin-left: 40px;
}

.selectator_options .selectator_option .selectator_option_right {
  float: right;
  background-color: #ac6;
  color: #fff;
  font-weight: bold;
  font-size: 80%;
  text-align: center;
  line-height: 16px;
  border-radius: 12px;
  padding: 2px 12px;
  margin-top: 4px;
}

.selectator_options .selectator_option.active {
  background-color: #eef4f2;
  color: #fff;
}

.selectator_options .selectator_option.active .selectator_option_subtitle {
  color: rgba(255, 255, 255, 0.6);
}
@-webkit-keyframes selectator_spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes selectator_spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #4d897c;
  padding: 2rem 1rem;
}
@media (min-width: 769px) {
  .b-form {
    padding: 4rem 1rem;
  }
}
.b-form__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 47.5rem;
}
.b-form__ok {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}
.b-form__error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  color: #c44141;
}
.b-form__fast-result {
  width: 100%;
}
.b-form__fast-ok {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.b-form__fast-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  color: #c44141;
}
.b-form__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.b-form__title {
  margin-top: 0 !important;
}
.b-form__title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto";
  margin-bottom: 2rem;
}
.b-form__line {
  flex: 0 0 auto;
}
.b-form__element {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
  margin-bottom: 1.5rem;
}
.b-form__element--line {
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: ) {
  .b-form__element {
    width: 100% !important;
  }
}
.b-form--disabled .b-form__element {
  opacity: 0.5;
}
.b-form__line--last .b-form__element {
  margin-bottom: 0;
}
.b-form__field {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.b-form__field--checkbox {
  justify-content: center;
  font-size: 0.78rem;
}
.b-form__label {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 105;
  width: 100%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.2s linear;
}
.b-form__label--line {
  position: relative !important;
  top: auto !important;
  top: initial !important;
  transform: none !important;
}
.b-form__element--type_checkbox .label {
  cursor: pointer;
  flex: 1 1 auto;
}
.b-form__element--type_radio .label {
  cursor: pointer;
}
.b-form__field--focus .b-form__label {
  top: 0;
  font-size: 0.7rem;
  color: #eef4f2;
  transform: translateY(-100%);
}
.b-form__field--focus .b-form__label--line {
  font-size: inherit !important;
  transform: none !important;
}
.b-form__marker {
  color: #c44141;
}
.b-form__input {
  width: 100%;
  max-height: 2.75rem;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #4d897c;
  border-left: 0;
  font-family: "SourseSansPro";
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 0;
  padding: 0.5rem 1rem 0.5rem 1rem;
  line-height: 1;
  color: #4d897c;
  outline: none;
}
.b-form__input:focus {
  border-bottom: 1px solid #4d897c !important;
}
.b-form__input::-moz-placeholder {
  opacity: 1 !important;
}
.b-form__input::placeholder {
  opacity: 1 !important;
}
.b-form__input::-moz-placeholder {
  color: inherit;
  outline: none;
  font-size: 16px;
}
.b-form__input::placeholder {
  color: inherit;
  outline: none;
  font-size: 16px;
}
@media (min-width: 769px) {
  .b-form__input::-moz-placeholder {
    font-size: 18px;
  }
  .b-form__input::placeholder {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .b-form__input {
    padding: 1.25rem 1rem 1rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 18px;
  }
}
.b-form__input[readonly=readonly] {
  opacity: 0.4;
}
.b-form__input--transparent {
  border-bottom: 1px solid #4d897c !important;
}
.b-form__input--transparent {
  background: transparent;
}
.b-form__element--has-error .b-form__input::-moz-placeholder {
  color: #c44141 !important;
}
.b-form__element--has-error .b-form__input::placeholder {
  color: #c44141 !important;
}
.b-form__text {
  width: 100%;
  height: 7em;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #4d897c;
  border-left: 0;
  border-right: 0;
  padding: 0.5em 0;
  padding-left: 0.5rem;
  line-height: 1.5rem;
  font-weight: 300;
  font-size: 18px;
  font-size: 1em;
  color: inherit;
  outline: none;
}
.b-form__text:focus {
  border-bottom: 1px solid #4d897c !important;
}
.b-form__text::-moz-placeholder {
  opacity: 1 !important;
}
.b-form__text::placeholder {
  opacity: 1 !important;
}
.b-form__text::-moz-placeholder {
  color: inherit;
  outline: none;
}
.b-form__text::placeholder {
  color: inherit;
  outline: none;
}
.b-form__text[readonly=readonly] {
  opacity: 0.4;
}
.b-form__text--transparent {
  border-bottom: 1px solid #4d897c !important;
}
.b-form__text--transparent {
  background: transparent;
}
.b-form__element--has-error .b-form__text {
  border-bottom: 1px solid #c44141 !important;
}
.b-form__element--has-error .b-form__text::-moz-placeholder {
  color: #c44141 !important;
}
.b-form__element--has-error .b-form__text::placeholder {
  color: #c44141 !important;
}
.b-form__descr {
  width: 100%;
  font-size: 14px;
  margin-top: 0.5rem;
  color: #eef4f2;
}
.b-form__field-error {
  width: 100%;
  font-size: 14px;
  color: #c44141;
  margin-top: 10px;
}
.b-form__submit {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 580) {
  .b-form__submit {
    flex-direction: row;
    align-items: flex-start;
  }
}
.b-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2rem;
  color: #fff;
  padding: 1rem;
  border: 0.25rem solid #fff;
  transition: 0.3s ease;
  text-align: center;
  margin-top: 1rem;
}
.b-form__button:hover {
  background: #fff;
  color: #4d897c;
}
@media (min-width: 451px) {
  .b-form__button {
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  .b-form__button {
    padding: 1.5rem 1rem;
    margin-top: 3rem;
  }
}
.b-form--disabled .b-form__button {
  cursor: default;
}
.b-form--disabled .b-form__button:hover {
  background-color: transparent;
  background-color: initial;
  color: inherit;
}
.b-form__politics {
  font-family: "SourseSansPro";
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2rem;
  color: #fff;
  margin-top: 1rem;
}
.b-form__politics a {
  color: #fff;
}
.b-form__politics a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .b-form__politics {
    font-size: 0.9rem;
    line-height: 1.35rem;
    margin-top: 2rem;
  }
}
.b-form__comment {
  font-family: "SourseSansPro";
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 0.8rem;
  color: #afc1bb;
}
@media (min-width: 580) {
  .b-form__comment {
    padding-left: 1rem;
  }
}
@media (min-width: 769px) {
  .b-form__comment {
    font-size: 0.9rem;
  }
}
.b-form__comment p {
  margin-bottom: 0.5rem !important;
}
.b-form__comment a {
  color: #4d897c;
  text-decoration: none;
}
.b-form__comment a:hover {
  border-bottom: 1px solid #4d897c;
}
.b-form__comment:last-child > * {
  margin-bottom: 0;
}
.b-form .selectator_option.active {
  background-color: #4d897c;
}
.b-form__reset {
  display: none;
}

.b-form--formbasket {
  padding: 0 !important;
  background: transparent !important;
}
.b-form--formbasket .b-form__element {
  margin-bottom: 1rem !important;
}
.b-form--formbasket .b-form__field--focus label {
  color: #a5a5a5;
}
.b-form--formbasket .b-form__label {
  margin-bottom: 1rem !important;
  font-size: 0.9rem !important;
}
.b-form--formbasket .b-form__marker {
  color: #4d897c !important;
}
.b-form--formbasket .b-form__input {
  background-color: #eef4f2 !important;
  border-bottom: 1px solid #eef4f2 !important;
}
.b-form--formbasket .b-form__text {
  background-color: #eef4f2 !important;
  border-bottom: 1px solid #eef4f2 !important;
}
.b-form--formbasket .b-form__comment {
  color: inherit !important;
}
.b-form--formbasket .b-form__politics {
  color: #4d897c !important;
  margin-top: 15px !important;
}
.b-form--formbasket .b-form__politics a {
  color: #4d897c !important;
}
.b-form--formbasket .b-form__element--has-error input {
  margin-bottom: 0.25rem;
}

.b-form--formgeoip {
  padding: 0;
  background: none;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-geo-form {
  position: relative;
}
.b-geo-form p {
  font-weight: 700;
  font-family: "Roboto";
  line-height: 2rem;
  cursor: pointer;
}
.b-geo-form p:hover {
  color: #4d897c;
}
.b-geo-form p.active {
  color: #4d897c;
}
.b-geo-form__scrollbox {
  position: relative;
  overflow: hidden;
  height: 12rem;
}
.b-geo-form .selectator_selected_items {
  padding: 0.5em 1em;
  line-height: 1.15;
}
.b-geo-form .selectator_selected_item_title {
  color: #4d897c;
  cursor: pointer;
}
.b-geo-form .selectator_element {
  border-color: #4d897c;
}
.b-geo-form .selectator_element::after {
  content: none;
}
.b-geo-form .selectator_input {
  top: 0 !important;
}
.b-geo-form .selectator_input {
  border: none;
  box-shadow: none;
  background: #fff;
  color: #4d897c;
}
.b-geo-form .selectator_options {
  top: 100% !important;
}
.b-geo-form .selectator_options {
  display: none;
  border-color: #4d897c;
}
.b-geo-form .b-form__politics {
  display: none;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-layout {
  background-color: #fff;
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  font-size: 1rem;
}
.b-layout--no-scroll {
  overflow: hidden;
}
.b-layout--no-cursor, .b-layout--no-cursor * {
  cursor: none !important;
}
.b-layout__content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .b-layout__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .b-layout__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .b-layout__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .b-layout__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .b-layout__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .b-layout__content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .b-layout__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .b-layout__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .b-layout__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .b-layout__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .b-layout__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.b-layout__header {
  order: 1;
  z-index: 11;
  flex: 0 0 auto;
  width: 100%;
  height: 80px;
  margin-bottom: 0;
}
@media (min-width: 1241px) {
  .b-layout__header {
    height: 150px;
  }
}
.b-layout__header--fixed .b-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.b-layout__header--fixed .b-header__content {
  width: 100%;
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .b-layout__header--fixed .b-header__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.b-layout__header--absolute .b-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.b-layout__header--absolute .b-header__content {
  width: 100%;
  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1920px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1840px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1640px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1440px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1240px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 960px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 540px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1920px) {
  .b-layout__header--absolute .b-header__content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.b-layout__main {
  order: 2;
  flex: 1 1 auto;
  position: relative;
  z-index: 9;
  width: 100%;
  min-height: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1920px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1840px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1640px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1240px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 540px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 450px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 320px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1920px) {
  .b-layout__main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .b-layout__main {
    height: 100%;
  }
}
.b-layout__main-content {
  position: relative;
  z-index: 5;
  max-width: 100%;
  max-height: 100%;
  margin: 0 0;
}
.b-layout__main-global {
  position: absolute;
  z-index: 999;
  margin-top: -150px;
}
.b-layout__footer {
  order: 3;
  position: relative;
  z-index: 10;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
  padding: 0 0;
  font-size: 0.65rem;
}

.b-layout--fix-height {
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .b-layout--fix-height .b-layout__content {
    height: 100%;
  }
}
.b-layout--fix-height .b-layout__main-content {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 1920px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 1840px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 1640px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 1440px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 1240px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 960px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 768px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 540px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 450px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (max-width: 320px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@media (min-width: 2020px) {
  .b-layout--fix-height .b-layout__main-content {
    width: calc(100% - 0 * 2);
  }
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-show_cookies {
  position: fixed;
  bottom: 0;
  width: 410px;
  height: 215px;
  z-index: 500;
  background-color: #fff;
  padding: 30px 40px;
  border: 1px solid #93beb5;
}
.b-show_cookies__text {
  font-family: "SourseSansPro";
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.b-show_cookies__text p {
  padding: 6px 0 12px;
}
.b-show_cookies__text a {
  color: #4d897c;
  text-decoration: underline;
}
.b-show_cookies__text a:hover {
  text-decoration: none;
}
.b-show_cookies__btn {
  width: 160px;
  height: 32px;
  padding: 10px 0;
  background: #4d897c;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 100%;
  cursor: pointer;
  margin-top: 18px;
}
.b-show_cookies__btn:hover {
  background: #4d897c;
}
@charset "UTF-8";
/*
Задаёт минимальный размер текста.

Зачем это нужно?

Если задавать размер меньше базового, то часто бывает, что на миналке он получается уж слишком маленьким.

Например:
- нужно задать 16px
- базовый размер 20px
- значит размер пишем как 0.8rem

Но если на минималке базовый размер 14px, то тогда:
14 * 0,8 = 11,2px - что выглядит весьма убого...

Вариант 1 - писать другой размер на брекпоинтах. Муторно и бесит :(
Вариант 2 - эта функция.

Она считает, что минимальный размер шрифта на сайте - 14px и от этого пляшет.
Если $fs >= базовому размеру (1.1rem например), то выводит переданный $fs.
Если $fs для большой версии <= 14px, то выводит 14px.
Если $fs для минимальной версии < 14px, то выводит формулу типа calc(10px + 0.2rem)

10px - подобранный фиксированный размер
0.2rem - сколько нужно к нему прибавить (от базового размера), чтобы на биг версии получился нужный $fs.

Например:

mfs($fs-16) выведет calc(10px + 0.3rem)
Что на биг версии будет 10px + 20 * 0.3 = 16px
А на минималке будет 10px + 14 * 0.3 = 14.2px

mfs($fs-18) выведет calc(10px + 0.4rem)
Что на биг версии будет 10px + 20 * 0.4 = 18px
А на минималке будет 10px + 14 * 0.4 = 15.6px

mfs($fs-14) выведет 14px

mfs($fs-30) выведет 1.5rem
Хотя, если заранее известно, что размер больше базового, то использовать mfs вообще не надо.
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт контейнеру отрицательные боковые маржины равные половине $gutter
$top - даст отрицательный margin-top равный $gutter, чтобы подтянуть элементы (если у них есть отступы по вертикале)
$gutter-output - задавать отступы или нет
*/
/*
Миксин сетки, который работает по типу миксина foundation:
- даёт элементу ширину за вычетом $gutter
- даёт элементу боковые маржины равные половине $gutter

$size - кол-во ячеек (можно указать как: 2 | 20% | 300px | 3 of 12 | stretch)
$gutter - пустое пространство между ячейками (в любых единицах)
$gutter-output - нужно выводить отступы или нет. Если false, то боковые маржины не даются, а из ширины вычитается ($gutter / 4)
$top - нужно давать отступ с верху или нет. нужно, чтобы сделать отступы у элементов по вертикале. тогда тут и в grid-container пишется $top: true.
$max-width: если true, то вместо width поставится max-width

Например:

	@include grid-cell(2); - две ячейки (по 50%)
	@include grid-cell(20%); - пять ячеек (по 20%)
	@include grid-cell(300px); - ячейки по 300px (сколько влезет)
	@include grid-cell(3 of 12); - 4 ячейки (по 25%)
	@include grid-cell('stretch'); - растянуть с помощью flex: 1 1 auto;

	Две ячейки (первая 20%, а вторая 80%):
	&__item {
		@include grid-cell(20%);
	}
	&__item:nth-child(even) {
		@include grid-cell(80%);
	}
*/
/*
Просто выполняет grid-cell с уже указанным $max-width: true.
Для удобства замены в коде.
*/
/*
Миксин даёт блоку стандартные стили
*/
/*
Вычисляет ширину в зависимости от переданных данных:

get-width(2); - 50%
get-width(20%); - 20%
get-width(300px); - 300px
get-width(1 of 12); - 8.333%
*/
/*
Функция для перевода значения $value в пикселях в значение в ремах на основе $base-value
*/
/*
Функция для перевода значения $value в пикселях в значение в емах на основе $base-value
*/
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.b-breadcrumbs {
  display: flex;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.b-breadcrumbs__separator {
  margin: 0 3px;
}
.b-breadcrumbs__link, .b-breadcrumbs__separator {
  font-family: "SourseSansPro";
  font-size: 14px;
  color: #231f20;
  line-height: 0.8rem;
  font-weight: 300;
}
@media (min-width: 769px) {
  .b-breadcrumbs__link, .b-breadcrumbs__separator {
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
  }
}

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