
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
/* для элемента input c type="checkbox" */
    .custom-checkbox {
      position: absolute;
      z-index: -1;
      opacity: 0;
    }

    /* для элемента label, связанного с .custom-checkbox */
    .custom-checkbox+label {
      display: inline-flex;
      align-items: flex-start;
      user-select: none;
    }

    /* создание в label псевдоэлемента before со следующими стилями */
    .custom-checkbox+label::before {
      content: '';
      display: inline-block;
      width: 1em;

      height: 1em;
      flex-shrink: 0;
      flex-grow: 0;
      border: 1px solid #fff;
      border-radius: 0.25em;
      margin-right: 0.5em;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%;
    }

    /* стили при наведении курсора на checkbox */
    .custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
      border-color: #ffe4bb;
    }

    /* стили для активного чекбокса (при нажатии на него) */
    .custom-checkbox:not(:disabled):active+label::before {
      background-color: #ffe4bb;
      border-color: #ffe4bb;
    }

    /* стили для чекбокса, находящегося в фокусе */
    .custom-checkbox:focus+label::before {
      box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
    }

    /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
    .custom-checkbox:focus:not(:checked)+label::before {
      border-color: #ffe4bb;
    }

    /* стили для чекбокса, находящегося в состоянии checked */
    .custom-checkbox:checked+label::before {
      border-color: #ff9900;
      background-color: #ff9900;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    }

    /* стили для чекбокса, находящегося в состоянии disabled */
    .custom-checkbox:disabled+label::before {
      background-color: #e9ecef;
    }
    .ussr input[type="checkbox"] {
	width: 10px!important;
	position: absolute!important;
	left: 0!important;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
.hide{
  display:none;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}



.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@font-face {
  font-family: phi;
  font-weight: bold;
  src: url('../fonts/PhilosopherBold.ttf');
}
@font-face {
  font-family: phi;
  font-weight: normal;
  src: url('../fonts/PhilosopherRegular.ttf');
}
* {
  font-family: phi;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}
.c--greenSection {
  text-align: center;
  color: white;
  font-size: 20px;
  background-color: #135f00;
}
.l-mainSection {
  padding: 55px 0 20px;
}
.l-mainSection__mb30 {
  margin-bottom: 30px;
}
.l-mainSection__mb60 {
  margin-bottom: 60px;
}
.l-mainSection__mb90 {
  margin-bottom: 90px;
}
.l-mainSection__button {
  margin-top: 110px;
}
.l-mainSection--header {
  background-image: url("../img/bg_header.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
}
.l-mainSection--askyourself {
  background-image: url("../img/bg_askyourself.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 200px;
}
.l-mainSection--updateLife {
  background-image: url("../img/bg_updateLife.png");
  padding: 110px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.l-mainSection--enroll {
  background-image: url("../img/bg_enroll.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.l-mainSection--howitwork {
  background-color: #fff2dd;
}
.l-mainSection--footer {
  background-color: #303030;
}
.c-nav__link {
  font-size: 18px;
  cursor: pointer;
}
.c-fatLineBox--mt50 {
  margin-top: 50px;
}
.c-fatLineBox--mt20 {
  margin-top: 20px;
}
.c-fatLineBox--right {
  text-align: right;
}
.c-fatLineBox__line {
  width: 110px;
  height: 10px;
  background-color: #d5a66a;
  margin-bottom: 15px;
  display: inline-block;
}
.c-fatLineBox__p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 22px;
  color: #3d3d3d;
}
.c-helloTitle {
  color: white;
  font-size: 4.5rem;
  line-height: 4.5rem;
  margin-bottom: 20px;
}
.c-title {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  line-height: 36px;
}
.c-title--green {
  color: #135f00;
}
.c-title--white {
  color: white;
}
.c-title--red {
  color: #960014;
}
.c-underTitle {
  color: white;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}
.c-underTitle--red {
  color: #960014;
}
.c-underTitle--green {
  color: #135f00;
}
.c-underTitle--bold {
  font-weight: bold;
}
.c-underTitle--black {
  color: black;
}
.c-underTitle-2 {
  color: white;
  font-size: 18px;
  text-align: center;
}
.c-underTitle-2--red {
  color: #960014;
}
.c-underTitle-2 .--green {
  color: #39ac00;
}
.l-fengshui {
  text-align: center;
}
.l-fengshui__img {
  padding-top: 100px;
}
.c-uGet:before {
  content: attr(data-number);
  position: relative;
  display: block;
  float: left;
  color: #c8a46d;
  font-size: 30px;
}
.c-uGet__img {
  position: relative;
  height: 50px;
  margin-top: 10px;
}
.c-uGet__text {
  color: #3d3d3d;
  font-size: 18px;
  line-height: 24px;
  margin-top: 15px;
}
.l-howmi {
  margin-top: 60px;
}
.c-liStyle {
  color: #303030;
  margin-bottom: 30px;
  position: relative;
  font-size: 16px;
}
.c-liStyle:before {
  content: '';
  display: block;
  width: 40px;
  height: 10px;
  background-color: #d5a66a;
  position: absolute;
  top: 6px;
  left: -45px;
}
.c-quote {
  color: #303030;
  position: relative;
  text-align: right;
  margin-top: 30px;
}
.c-quote:before {
  content: '“';
  color: #d5a66a;
  font-size: 110px;
  line-height: 0;
  position: absolute;
  text-align: left;
  top: 40px;
  left: 10px;
}

.c-quote:after {
  content: '”';
  color: #d5a66a;
  font-size: 110px;
  line-height: 0;
  position: absolute;
  text-align: left;
  top: 40px;
  right: 0;
}
.c-quote__text {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 40px;
}
.c-quote__author {
  font-family: "Open Sans";
  font-size: 18px;
}
.c-part {
  margin-bottom: 40px;
}
.c-part p:not(.c-part__li) {
  padding-left: 40px;
  margin-bottom: 15px;
}
.c-part__title {
  color: #c8a46d;
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
}
.c-part__undertitle {
  font-weight: bold;
  color: #303030;
  font-size: 24px;
  line-height: 24px;
}
.c-part__text {
  color: #303030;
  font-size: 16px;
  line-height: 16px;
}
.c-part__li {
  position: relative;
  font-size: 18px;
  padding-left: 60px;
}
.c-part__li:before {
  content: '';
  display: block;
  width: 12px;
  height: 5px;
  background-color: #d5a66a;
  position: absolute;
  top: 8px;
  left: 40px;
}
.c-stepText > p {
  padding-bottom: 15px;
}
.c-stepText__utext,
.c-stepText__gtext {
  font-size: 16px;
  line-height: 18px;
}
.c-stepText__gtext {
  color: #395f0b;
  font-weight: bold;
}
.c-stepText__atext {
  color: #960014;
  font-size: 30px;
  font-weight: bold;
  line-height: 24px;
}
.c-slider {
  position: relative;
  max-width: 1060px;
  padding: 0 30px;
  margin: auto;
}
.c-slider__slider {
  max-width: 990px;
  min-height: 440px;
  margin: 0 auto;
  background-image: url("../img/bg_slider.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 30px 100px;
  position: relative;
  z-index: 1;
}
.slick-slide:focus {
  outline: none;
}
.c-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.c-arrow > img {
  cursor: pointer;
}
.c-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}
.c-slide__img {
  -ms-flex-preferred-size: 130px;
      flex-basis: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 130px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
}
.c-slide__img img {
  max-width: none;
}
.c-slide__text {
  margin-bottom: 20px;
  line-height: 18px;
}
.c-slide__name {
  margin-top: 30px;
  font-weight: bold;
}
.c-form {
  display: block;
  max-width: 100%;
  width: 400px;
  margin: auto;
  text-align: center;
}
.c-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  font-size: 18px;
  text-align: center;
  background-color: transparent;
  padding: 5px;
  margin-bottom: 15px;
}
.c-form input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.c-form input:focus:-ms-input-placeholder {
  opacity: 0;
}
.c-form input:focus::-ms-input-placeholder {
  opacity: 0;
}
.c-form input:focus::placeholder {
  opacity: 0;
}
.c-form input::-webkit-input-placeholder {
  color: white;
}
.c-form input:-ms-input-placeholder {
  color: white;
}
.c-form input::-ms-input-placeholder {
  color: white;
}
.c-form input::placeholder {
  color: white;
}
.c-form input[type="submit"] {
  margin-top: 30px;
  width: 400px;
  max-width: 100%;
}
.c-form > input {
  font-family: phi;
}
.c-form > input:focus {
  outline: none;
}
.after_sub{
  max-width: 580px;
  margin: auto;
  color: #ffffff;
  font-size: 19px;
  text-align: center;
}
.c-alarm {
  line-height: 24px;
  color: #3d3d3d;
  font-size: 18px;
}
.c-alarm__li {
  margin-bottom: 20px;
  position: relative;
}
.c-alarm__li:before {
  content: '';
  display: block;
  width: 12px;
  height: 5px;
  background-color: #d5a66a;
  position: absolute;
  top: 8px;
  left: -20px;
}
.c-alarm__ul {
  margin-bottom: 20px;
  margin-left: -10px;
}
.c-alarm__ul:before {
  content: attr(data-alarm-number);
  position: relative;
  display: block;
  float: left;
  color: #c8a46d;
  font-size: 36px;
  font-weight: bold;
  line-height: 36px;
  right: 5px;
}
.c-alarm__text {
  padding-left: 10px;
}
.c-footer__address {
  font-size: 16px;
  color: white;
}
.c-footer__copy {
  margin-top: 10px;
  font-size: 16px;
  color: #737373;
}
.js-scroll {
  cursor: pointer;
}
.beforeLiLine {
  content: '';
  display: block;
  width: 12px;
  height: 5px;
  background-color: #d5a66a;
  position: absolute;
  top: 8px;
}
.backgroundImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body div .c-button {
  color: white;
  padding: 10px 20px;
  background-color: #b0000c;
  border: none;
  border-bottom: 4px solid #840007;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
body div .c-button a{
  color:#fff!important;
}
body div .c-button:hover {
  border-color: transparent;
}
@media (max-width: 767px) {
  html {
    font-size: 10px;
  }
  .l-mainSection--updateLife {
    padding: 110px 0;
  }
  .l-mainSection{
    padding-top: 0px!important;
  }
  .l-mainSection__mb90{
    margin-bottom: 20px;
  }

}
@media (max-width: 575px) {
  .c-slide {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-quote:before{
    left: -10px;
  }
  .c-nav{
    display:none;
  }
  .hide{
    display:block;
  }
  .hide ul{
    margin: 0;
    padding: 0;
    margin-top:10px!important;
  }
  .hide ul li{
    display: inline;
    font-size: 20px;
  }
  .hide ul li a{
    color:#fff;
    text-decoration: none;
  }
  nav{
    padding: 15px;
  }
  .list-menu{
    display: flex;
    list-style: none;
  }
  .list-menu > li > a{
    color: #fff;
    display: block;
    padding: 5px 15px;
  }
  .list-menu > li > a:hover{
    background: #000;
  }

  #btn-menu{
    display: none;
  }
  #btn-menu + label{
    display: none;
    position: relative;
    color: #fff;
    height: 20px;
    z-index: 1;
    cursor: pointer;
  }
  #btn-menu + label:before{
    content: '\f0c9';
    display: inline-block;
    font-family:'FontAwesome';
    font-size: 22px;
  }
  #btn-menu:checked + label:before{
    content: '\f00d';
    color: #f00;
  }

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

     #btn-menu + label{
        display: inline-block;
     }
    #btn-menu + label + .list-menu{
      display: none;
    }
    #btn-menu:checked + label + .list-menu{
      display: block;
    }
  }


}
@media (max-width: 1199px) {
  .l-mainSection--askyourself {
    background-image: none;
    background-color: #fff2dd;
    padding-bottom: 0px!important;
  }
}



/*.box_block {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto; }*/
.foot {
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
  /*font-size: 14px;
  background-color: #29333a;
  border-top: 1px solid #ddd;*/ }
  .foot p {
    margin: 0; }
  .foot a {
    display: inline-block;
    color: #fff;
    opacity: 1; }
    .foot a:hover {
      color: #6f6f6f;
      opacity: 1; }
  .foot ul {
    display: inline-block;
    margin: 0 0 10px;
    padding: 0;
    list-style-type: none; }
    .foot ul li {
      display: inline-block;
      margin: 0 10px;
      font-size: 14px; }
      .foot ul li:before {
        display: none; }
      .foot ul li a {
        transition: 1s; }
        .foot ul li a:hover {
          color: #f1f1f1!important;
          transform: scale(1.2); }
.left {
    float:left;
}
.right {
    float:right;
}
/*@media screen and (max-width: 1170px){
    .box_block{
        padding-left: 2%;
        padding-right: 2%
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  .left , .right{
    float: none;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .l-mainSection--footer{
    text-align: center;
  }
  .foot {
    text-align: center;
  }
  .foot a {
    display: block;
  }
}


.flex-block{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
	.del {
		display: none!important;
	}
	.foot {
	 text-align: center;
	}
	.foot .flex-block {
		display: block;
	}
.foot a {

    display: block;
    text-align: center;
}
}

.popup-container2{
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.4s ease-in-out, top 0.4s linear;
}
.popup-container2.active{
  top: 0;
  opacity: 1;
}
.popup-container{
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.4s ease-in-out, top 0.4s linear;
}
.popup-container.active{
  top: 0;
  opacity: 1;
}
.popup-background{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  cursor: pointer;
}
.popup{
position: relative;
  z-index: 400;
  width: calc(100% - 4px);
  max-width: 460px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #333;
}
.popup .fa-close{
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 100;
  display: inline-block;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.popup .fa-close:hover{
  transform: scale(1.2);
}
.popup h2{

}
.popup h3{
  margin-top: 22px!important;
  font-family: 'Roboto'!important;
  font-weight: 500!important;
}
.popup p{
  margin-bottom: 14px;
}
.popup p:last-of-type{
  margin-bottom: 0;
}
.block-contacts{
  margin-top: 10px;
  margin-bottom: 40px;
}
.block-contacts .center-main-block{}
.block-contacts h2{
  
}
.block-contacts .flex-block{
  flex-wrap: wrap;
  justify-content: flex-start;
}
.contact-box{
  display: flex;
  align-items: flex-start;
  width: 24%;
  margin-right: 1%;
  margin-top: 30px;
}
.contact-image{
  min-width: 34px;
  width: 34px;
  margin-right: 12px;
}
.contact-image.fa{
  line-height: 34px;
  font-size: 34px;
}
.contact-text{}
@media screen and (max-width: 700px){
.contact-box{
      width: 49%;
    }
}
@media screen and (max-width: 400px){
.contact-box{
      width: 49%;
    }
}
.popup .gform_wrapper *{
  margin: 0!important;
  padding: 0!important;
  max-width: 100%!important;
}
.popup .gform_wrapper .form-title,
.popup .ussr .form-title{
  margin-bottom: 20px!important;
  font-size: 20px;
  font-weight: 400!important;
  line-height: 1.4!important;
}
.popup .gform_wrapper .form-title_top,
.popup .ussr .form-title_top{
  display: inline-block;
  margin-bottom: 6px!important;
  padding: 0 4px 3px!important;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px solid #4472c4;
}
.popup .gform_wrapper .form-title_bottom,
.popup .ussr .form-title_bottom{}
.popup .gform_wrapper .form-title_date,
.popup .ussr .form-title_date{
  color: #ff9900!important;
  font-weight: bold;
}
.popup .gform_wrapper label{
  display: none!important;
  margin-bottom: 5px!important;
  font-size: 18px!important;
}
.popup .gfield_required,
.popup #input_310_1_3_container label{
  display: none!important;
}
.popup .gform_wrapper input,
.popup .ussr input{
  display: inline-block;
  width: 100%!important;
  margin-bottom: 20px!important;
  padding: 10px 10px!important;
  background-color: #ffffff!important;
  color: #495057!important;
  font-size: 16px!important;
  line-height: 1.4;
  border: 1px solid #ced4da!important;
  border-radius: 3px;
}
.popup .gform_wrapper input[type=submit],
.popup .ussr input[type=submit]{
  padding: 14px 10px 15px!important;
  background-color: #ff9900!important;
  color: #ffffff!important;
  font-size: 18px!important;
  font-weight: bold;
  text-align: center;
  border: 1px solid transparent!important;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.popup .gform_wrapper input[type=submit]:hover,
.popup .ussr  input[type=submit]:hover{
  background-color: #ffde00!important;
  color: #121212!important;
}