@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500&subset=cyrillic");
/* ================================== flex-box mixins ======================================== */
html {
  font-size: 10px;
}

body {
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

.wrapper {
  width: 100%;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  background: none;
  min-width: auto !important;
}

.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.boldtext {
  font-weight: bold;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header, .foot {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.15;
  color: #333333;
  box-sizing: border-box;
}
.header a, .foot a {
  text-decoration: none;
}
.header a:hover, .foot a:hover {
  text-decoration: underline;
}

a.disabled {
  opacity: 0.65;
  filter: grayscale(1);
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  -webkit-font-smoothing: antialiased;
}
.header .header__content__warning {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 94px;
  padding: 20px;
  border: 3px solid red;
  background: white;
}
.header .header__content__warning.hidden {
  display: none;
}
.header .header__content {
  max-width: 1160px;
  height: 99px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.header .header__content .logotype {
  display: block;
  height: 100%;
  padding: 12px 0 13px;
}
.header .header__content .logotype img {
  display: block;
  height: 100%;
}
.header .header__content .header__links {
  margin: 0 2.5rem 0 2rem;
}
.header .header__content .header__links .header__link {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.14s ease-out;
  white-space: nowrap;
}
.header .header__content .header__links .header__link:hover {
  color: #74b847;
}
.header .header__content #headerLogIn {
  position: relative;
  padding: 9px 46px 10px 22px;
  border: 1px solid rgba(117, 117, 117, 0.5);
  border-radius: 5px;
  font-size: 16px;
  color: #71ca6d;
  transition: all 0.14s ease-out;
  transform-origin: 100% 50%;
  white-space: nowrap;
}
.header .header__content #headerLogIn:after {
  transition: all 0.14s ease-out;
  display: block;
  content: "";
  width: 37px;
  height: 20px;
  background: url(https://cerm.ru/img/2017/login.icon.small.png) no-repeat;
  right: 0px;
  position: absolute;
  top: 9px;
}
.header .header__content #headerLogIn:hover, .header .header__content #headerLogIn:active {
  border-color: #71ca6d;
  background-color: rgba(113, 202, 109, 0.03);
}
.header .header__content #headerLogIn:hover:after, .header .header__content #headerLogIn:active:after {
  background: url(https://cerm.ru/img/2017/login.icon.small.hover.png) no-repeat;
}
.header .header__content #headerLogIn:active {
  transform: scale(1);
}
.header .z_close {
  display: none;
}

.foot {
  margin-top: 2rem;
  width: 100%;
  position: relative;
  background-color: #fff;
}
.foot .foot_content {
  max-width: 1160px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  font-size: 13px;
}
.foot .foot_content:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e8e8e8;
}
.foot .foot_content .foot_columns {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding: 2rem 0;
}
.foot .foot_content .foot_columns .foot_column {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
.foot .foot_content .foot_columns .foot_column:not(:last-child) {
  margin-right: 30px;
}
.foot .foot_content .foot_columns .foot_column h2 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot .foot_content .foot_columns .foot_column a {
  display: block;
  margin: 8px 0;
  color: #666666;
  transition: color 0.12s ease-out;
  font-size: 15px;
  line-height: 1.25;
}
.foot .foot_content .foot_columns .foot_column a:hover {
  color: #74b847;
}
.foot .foot_content .foot_columns .foot_column .mission {
  color: #666666;
  font-size: 15px;
}
.foot .foot_content_2 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 1160px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  color: #999;
  font-size: 15px;
}
.foot .foot_content_2 .social-button {
  width: 28px;
  height: 28px;
  background-size: 30px;
  display: block;
  margin: 0 7px;
  height: 100%;
  transition-property: box-shadow, transform;
  transition: 0.14s ease-out;
  border-radius: 7px;
}
.foot .foot_content_2 .social-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 7px;
}
.foot .foot_content_2 .social-button:hover {
  transform: scale(1.02);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
}
.foot .foot_content_2 .social-button:active {
  transform: scale(1);
  box-shadow: none;
}
.foot .foot_content_2 .counter {
  display: none !important;
}

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