@import url(/fonts/firasans.css);
@import url(/icons.css);
body {
  margin: 0;
  padding: 0;
  font-family: Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-weight: 400;
  font-size: 16px;
}
.fonted body {
  font-family: 'Fira Sans', sans-serif;
}
/* common */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #414c4c;
}
@media only screen and (max-width: 500px) {
  h1 {
    font-size: 24px;
  }
}
h2 {
  font-size: 24px;
  font-weight: 400;
  color: #414c4c;
}
h5 {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
h6 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.indentTop {
  padding-top: 30px;
}
.bold {
  font-weight: 700 !important;
}
/*#05708b;*/
.stressed {
  font-weight: 400;
  color: #FFF;
  background-color: #2c5d69;
  padding: 18px;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
}
.stressed .marked {
  font-weight: 500;
  color: #dd6c6c;
  font-size: 1.2em;
  margin-left: 10px;
  text-shadow: 1px 1px 2px rgba(8, 7, 7, 0.5), -1px -1px 2px rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 500px) {
  .stressed {
    padding: 8px;
  }
}
strong.stressed {
  color: #fff;
  background-color: #900505;
}
strong.stressed .icon {
  color: #900505;
  background-color: #fff;
  border-radius: 1em;
  border: 2px solid #fff;
}
.emp {
  color: red;
}
.c3 {
  float: left;
  width: 33%;
  box-sizing: border-box;
}
.columnwrap {
  padding: 0 10px;
}
/* -----  */
.topbar {
  /*height: 80px;*/
  background-color: #0798BC;
}
.topbar #logo {
  width: 250px;
  float: left;
  height: 80px;
  position: relative;
  font-weight: 500;
  font-size: 17px;
  color: #0798BC;
  text-decoration: none;
}
.topbar #logo:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(/img/logo.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.topbar #logo span {
  color: #d40000;
}
@media only screen and (max-width: 500px) {
  .topbar #logo {
    display: block;
    margin: 0 auto;
    float: none;
  }
}
.topbar .telefons {
  padding-top: 20px;
}
@media only screen and (max-width: 500px) {
  .topbar .telefons {
    clear: left;
    padding-top: 0;
    padding-bottom: 10px;
    text-align: center;
  }
}
.topbar .telefons div {
  display: inline-block;
  margin-left: 40px;
  color: #e6e6e6;
  font-size: 18px;
  font-weight: 100;
}
@media only screen and (max-width: 500px) {
  .topbar .telefons div {
    display: none;
  }
}
.topbar .telefons .worktime {
  font-size: 15px;
  color: #ccc;
}
.topbar .telefons a {
  display: inline-block;
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 100;
  border-bottom: 1px dotted #fff;
}
@media (max-width: 767px) {
  .topbar .telefons a {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .topbar .telefons a {
    margin-left: 0;
  }
}
.topbar .topbanner {
  clear: both;
}
.topwarning {
  background: #ff0000;
  color: #FFF;
  padding: 10px;
  text-align: center;
  font-size: 1.2em;
}
@media only screen and (max-width: 500px) {
  .topwarning {
    font-size: 1em;
  }
}
#menu {
  background-color: #05708b;
  transition: background-color 300ms linear;
}
#menu .wrapper {
  text-align: center;
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
}
#menu a.logo {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background: transparent url(/img/logo_mini.png) top left no-repeat scroll;
  opacity: 0;
  transition: opacity 0ms;
}
#menu.stuck a.logo {
  opacity: 1;
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 300ms;
}
#menu a.menulink {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  line-height: 40px;
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
}
#menu a.menulink:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  background-color: #FFF;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
#menu a.menulink:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  background-color: #FFF;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
#menu a.menulink:hover {
  /*color: @color-menu-bg;*/
}
#menu a.menulink:hover:after,
#menu a.menulink:hover:before {
  transform: scaleX(1);
}
#menu div.tel {
  float: right;
  width: 150px;
}
.stuck {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #0798BC !important;
}
#linkblock {
  position: relative;
  overflow: hidden;
  background-color: #ccc;
}
#linkblockbg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transform-origin: top left;
  transform: skewY(25deg);
  overflow: hidden;
}
#linkblockbg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  transform: skewY(-25deg);
  background: #ccc url(/img/bg01.jpg) top left no-repeat fixed;
}
@media only screen and (max-width: 500px) {
  #linkblockbg {
    transform: none;
  }
  #linkblockbg:before {
    transform: none;
  }
}
#linkblockbg2 {
  position: absolute;
  width: 1000px;
  height: 400px;
  bottom: 468px;
  right: 0;
  z-index: 1;
  transform-origin: top left;
  transform: skewY(25deg);
  overflow: hidden;
}
#linkblockbg2:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -467px;
  right: 0;
  transform-origin: top left;
  transform: skewY(-25deg);
  background: #cccccc url(/img/bg00.jpg) top right no-repeat fixed;
}
@media only screen and (max-width: 500px) {
  #linkblockbg2 {
    display: none;
  }
}
#mainlist {
  width: 500px;
  margin: 0 auto;
  background-color: rgba(231, 231, 255, 0.83);
  height: 400px;
  padding: 5px 20px 20px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}
#mainlist a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 17px 10px 40px;
  border-bottom: 2px #a29999 dotted;
  transition: color 300ms linear, background-color 500ms ease 100ms;
}
#mainlist a:before {
  position: absolute;
  left: 10px;
  font-family: icons;
  font-size: 20px;
  font-style: normal;
  content: "\f106";
  margin-right: 10px;
}
#mainlist a:hover {
  background-color: #333;
  color: #fff;
}
#mainlist a span {
  font-size: 14px;
  font-weight: 100;
  display: block;
  margin: 3px 0;
}
#mainlist a .redline {
  display: inline;
  font-weight: 500;
  color: #FF0000;
}
@media only screen and (max-width: 500px) {
  #mainlist {
    width: 100%;
    padding: 5px 8px;
  }
  #mainlist a {
    padding: 8px;
  }
}
.wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 500px) {
  .wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
}
.container:after {
  content: "";
  display: block;
  clear: both;
}
#pictogram_block {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.3), 0px 1px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}
.pictograms {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: start;
}
.pictograms h2 {
  width: 20%;
  font-size: 14px;
  font-weight: 400;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  color: #00706b;
}
.pictograms h2 a {
  text-decoration: none;
  display: block;
  color: #00706b;
}
.pictograms h2 div.icon {
  text-align: center;
  margin: 0 auto 25px auto;
  position: relative;
  top: 0;
  transition: top 200ms ease-in, color 100ms linear, border-color 200ms linear;
  background-color: #1dd2c8;
  font-size: 80px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  line-height: 120px;
  border: 9px solid #d2f6f4;
}
.pictograms h2 div.icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pictograms h2:hover div {
  color: #900505;
  top: -5px;
  border-color: transparent;
}
.pictograms h2 .dopinfo {
  margin-top: 10px;
  font-size: 12px;
  color: #000a0a;
}
@media only screen and (max-width: 500px) {
  .pictograms h2 {
    width: 100%;
    font-size: 18px;
    padding: 8px;
    margin: 0;
  }
  .pictograms h2 a {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .pictograms h2 a div.icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    flex-grow: 0;
    line-height: 55px;
    border-radius: 55px;
    font-size: 55px;
    margin: 0 16px 0 0;
  }
  .pictograms h2 a .info {
    text-align: left;
  }
}
#numbers {
  background: #c5f2fd url('/img/bg03.jpg') left top repeat;
  padding: 20px 0;
}
#numbers ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
}
#numbers ul li {
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #fbf743;
}
#numbers ul li div {
  color: #ff9797;
  font-weight: 700;
  font-size: 30px;
  text-shadow: 1px 1px 4px rgba(150, 0, 0, 0.89), 0 1px 1px #d09e9e;
}
@media only screen and (max-width: 500px) {
  #numbers {
    box-shadow: 1px 7px 10px 2px rgba(0, 0, 0, 0.5);
  }
  #numbers ul {
    flex-direction: column;
  }
  #numbers ul li {
    padding: 8px 16px;
  }
}
#contacts {
  background-color: #e9eff3;
  padding-top: 20px;
}
#filials {
  background: #e9eff3;
}
#filials ul.wrapper {
  list-style: none;
  padding: 0;
  display: table;
  margin: 0 auto;
  background-color: #e9eff3;
  position: relative;
}
#filials ul.wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  transform: skew(-7deg, 0);
  transform-origin: top left;
  background-color: #e9eff3;
  z-index: 0;
  border-right: 5px solid #fff;
}
#filials ul.wrapper:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55px;
  transform: skew(-7deg, 0);
  transform-origin: bottom left;
  background-color: #e9eff3;
  z-index: 0;
  border-left: 5px solid #fff;
}
#filials ul.wrapper li.filial {
  display: table-cell;
  width: 100% / 2;
  padding: 20px 40px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
#filials ul.wrapper li.filial h4 {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  color: #241e73;
  margin-bottom: 8px;
}
#filials ul.wrapper li.filial .filialComment {
  font-size: 18px;
  color: #241e73;
  text-align: center;
  min-height: 48px;
  margin-bottom: 16px;
}
#filials ul.wrapper li.filial .phone {
  margin-bottom: 8px;
}
#filials ul.wrapper li.filial .phone a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
#filials ul.wrapper li.filial:before {
  content: '';
  position: absolute;
  left: -25px;
  top: 0;
  height: 100%;
  width: 10px;
  transform: skew(-7deg, 0);
  border-left: 5px solid #fff;
  /*background-image: linear-gradient(to right, #cccccc 0%, transparent 80%);*/
}
#filials ul.wrapper li.filial:first-child:before {
  content: none;
}
@media only screen and (max-width: 500px) {
  #filials ul.wrapper {
    display: flex;
    flex-direction: column;
  }
  #filials ul.wrapper:before {
    display: none;
  }
  #filials ul.wrapper:after {
    display: none;
  }
  #filials ul.wrapper li.filial {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  #filials ul.wrapper li.filial:before {
    display: none;
  }
  #filials ul.wrapper li.filial address {
    padding: 0 16px;
  }
  #filials ul.wrapper li.filial h4 {
    margin: 0 0 16px 0;
    background: #035569;
    color: #fff;
    padding: 8px 0;
  }
}
address {
  font-style: normal;
}
address .addr,
address .tel,
address .worktime {
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
}
address .addr .icon,
address .tel .icon,
address .worktime .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #241e73;
}
address .tel {
  font-size: 14px;
  color: #043744;
}
address .worktime {
  font-size: 14px;
  color: #043744;
}
address .worktime ul {
  list-style: none;
  padding: 0;
  width: 70%;
}
address .worktime ul li {
  position: relative;
  padding: 5px 5px 5px 30px;
  font-size: 12px;
  min-height: 13px;
  border-bottom: 1px dotted #0a85a4;
}
address .worktime ul li span {
  position: absolute;
  width: 30px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}
address .worktime .horizontal {
  width: 100%;
}
address .worktime .horizontal li {
  float: left;
  padding: 10px;
  width: 80px;
  min-height: 4em;
  border-bottom: none;
  border-left: 1px dotted #0a85a4;
}
address .worktime .horizontal li:first-child {
  border-left: none;
}
address .worktime .horizontal li span {
  position: static;
  display: block;
  width: auto;
  text-align: center;
  transform: none;
}
address .worktime .vacation {
  background-color: #eebcb8;
  color: #043744;
}
address .leftpart {
  width: 300px;
  float: left;
}
.contact-fotos {
  background-color: rgba(94, 146, 45, 0.68);
  padding: 30px 0;
}
#filials .fotos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#filials .fotos img {
  box-shadow: 4px 4px 7px rgba(80, 80, 80, 0.7);
}
@media only screen and (max-width: 500px) {
  #filials .fotos {
    justify-content: center;
  }
  #filials .fotos img {
    margin-bottom: 8px;
  }
}
.block30 {
  width: 100% / 3;
  float: left;
}
.pricep {
  margin-right: 330px;
}
@media only screen and (max-width: 500px) {
  .pricep {
    margin-right: 0;
  }
}
#footer {
  background-color: #30424e;
  min-height: 80px;
}
#footer .warning {
  padding: 10px 0;
  color: #fff;
  background-color: #91a4b0;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
#footer .warning h5 {
  font-weight: 400;
  margin: 0;
  font-size: 16px;
}
#footer .columns {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding: 10px 0;
}
#footer .columns .link {
  padding: 4px 0;
}
#footer .columns .link a {
  color: #b3e5fc;
  text-decoration: none;
}
#footer .columns .link a img {
  vertical-align: text-bottom;
}
@media only screen and (max-width: 500px) {
  #footer .columns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#footer .licence {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  /*text-align: center;*/
  color: #bbdefb;
}
#footer .licence .inn {
  color: #F3F3F3;
}
#footer .disclaimer {
  text-align: justify;
  font-size: 0.9em;
  color: #adabab;
  font-family: Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif;
}
#about {
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.8em;
  padding: 40px 0;
  background: #d4d3d8 url('/img/dot_pattern.png');
}
#about h6 {
  background: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 500px) {
  #about {
    padding: 32px 0;
    background: #025b717a;
    /*#025b71;*/
    color: #000;
    /*#ead4d4*/
  }
  #about .wrapper {
    padding: 0 32px;
  }
}
.priceBlock {
  float: right;
  padding: 20px;
  border: 1px solid rgba(65, 76, 76, 0.31);
  width: 260px;
  margin-left: 20px;
  margin-bottom: 10px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1), -4px -2px 16px rgba(0, 0, 0, 0.1);
  color: #f00;
}
.priceBlock .button {
  text-align: center;
}
.priceBlock .button a {
  display: inline-block;
  padding: 7px;
  color: #fff;
  background-color: #05708b;
  border: 1px solid #2a383c;
  border-radius: 15px;
  text-decoration: none;
}
.priceBlock .price {
  color: red;
  text-align: center;
}
.priceBlock .price .title {
  font-weight: 700;
  font-size: 16px;
}
.priceBlock .price .sum {
  font-size: 28px;
  font-weight: 400;
  padding: 24px 0;
}
.priceBlock .price .info {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 16px;
}
.priceBlock .price .cards {
  background: url("/img/cards.jpg") 50% top no-repeat scroll;
  padding-top: 40px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 14px;
}
.priceBlock .price .time {
  color: #d40000;
  font-size: 22px;
  line-height: 1.1em;
}
@media only screen and (max-width: 500px) {
  .priceBlock {
    float: none;
    display: block;
  }
}
.spravkaGibddPic {
  float: right;
  border: 2px solid #414c4c;
  width: 300px;
  margin: 20px auto;
}
.spravkaWeaponPic {
  text-align: center;
  margin: 20px 0;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .spravkaWeaponPic img {
    width: 100%;
  }
}
.attention {
  clear: both;
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 100;
  border: 3px solid #ff0000;
  background-color: #e9f6f9;
  display: block;
  padding: 30px;
}
.attention .marked {
  color: red;
  font-weight: 700;
}
.attention .important {
  margin-top: 30px;
  color: #682b2b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}
.attention .prices {
  margin-top: 8px;
  font-size: 0.9em;
  padding-left: 40px;
}
p.warning {
  color: red;
  font-weight: 400;
  border: 1px solid red;
  padding: 10px;
}
p.warning.fill {
  background-color: #fdf1f1;
}
p.warning.blue {
  color: #00008b;
  border-color: #00008b;
}
p.warning.blue.fill {
  background-color: #f3f3fd;
}
p.warning.box {
  display: flex;
}
ul.warning {
  display: inline-block;
  color: red;
  font-weight: 400;
  border: 1px solid red;
  padding: 10px;
  list-style-position: inside;
}
ul.warning.blue {
  color: #00008b;
  border-color: #00008b;
}
ul.warning li {
  margin-bottom: 8px;
}
tbody tr ul.warning {
  margin: 5px 0 0 0;
}
tbody tr:hover ul.warning {
  color: #fab2b2;
}
.mango-callback {
  position: fixed;
  right: 10px;
  z-index: 1000;
}
#prices {
  background-color: #bacdea;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 400;
}
#prices p {
  line-height: 1.5em;
}
@media only screen and (max-width: 500px) {
  #prices {
    padding: 32px 0;
  }
  #prices .wrapper {
    padding: 0;
  }
  #prices h1 {
    padding: 8px;
  }
  #prices h5 {
    margin-top: 0;
    padding: 8px;
  }
  #prices ul {
    margin-bottom: 16px;
    padding: 16px;
    list-style-position: inside;
  }
  #prices p {
    padding: 8px 32px;
  }
}
.mapframe {
  width: 500px;
  height: 600px;
}
.table {
  border: 1px solid #555;
  border-collapse: separate;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  border-spacing: 0;
  border-top: none;
}
.table th,
.table td {
  padding: 12px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #555;
}
.table h5 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.table h6 {
  margin: 0 0 10px 0;
  text-align: left;
}
.table th {
  font-size: 20px;
  font-weight: 700;
  min-width: 170px;
}
.table tbody tr:hover {
  background-color: #727272;
  color: #e4e4e4;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
@media only screen and (max-width: 500px) {
  .table th,
  .table td {
    padding: 4px;
    font-size: 16px;
    min-width: auto;
  }
  .table td:first-child {
    display: none;
  }
}
#feedback {
  background-color: #e9eff3;
  padding: 30px 0;
}
#feedback h2 {
  background: #06576b;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
}
.form {
  width: 580px;
  margin: 20px auto;
}
.form .captcha {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 500px) {
  .form {
    width: 100%;
    margin: 16px 0;
  }
  .form .captcha {
    padding: 8px;
  }
}
.form-horizontal input,
.form-horizontal textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 32px;
}
.form-horizontal textarea {
  min-height: 150px;
}
.form-horizontal .control-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
}
.form-horizontal .control-label {
  width: 160px;
  padding-top: 5px;
  text-align: right;
}
.form-horizontal .controls {
  flex-grow: 1;
  padding-left: 20px;
}
.form-horizontal label.required {
  position: relative;
}
.form-horizontal label.required:after {
  content: '*';
  position: absolute;
  right: -8px;
  top: 0;
  height: 10px;
  width: 10px;
  color: #0061fe;
}
.form-horizontal .sendbutton {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media only screen and (max-width: 500px) {
  .form-horizontal .control-label {
    width: 100px;
  }
  .form-horizontal textarea {
    min-height: 88px;
  }
  .form-horizontal .controls {
    padding-left: 16px;
  }
  .form-horizontal .sendbutton {
    width: 100%;
  }
}
label {
  display: block;
  margin-bottom: 5px;
}
label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  border-radius: 4px;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #bbbbbb;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #a2a2a2;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn:hover {
  background-color: #e6e6e6;
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}
.logos img {
  margin-right: 20px;
  margin-bottom: 20px;
  height: 100px;
}
@media only screen and (max-width: 500px) {
  .logos img {
    max-width: 100%;
    margin-right: 16px;
  }
}
.hide {
  display: none;
}
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}
.orderform {
  width: 550px;
  margin: 0 auto;
  /*    input[type=text], input[type=email], input[type=tel] {
        width: 250px;
    }*/
}
.orderform .captcha {
  box-sizing: border-box;
  padding: 10px 22px;
  text-align: center;
  width: 100%;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  .orderform {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
  }
  .orderform input,
  .orderform textarea {
    width: 100%;
  }
}
.legalinfo h1 {
  text-align: center;
}
.legalinfo p {
  margin: 0;
  padding: 20px 0;
}
.legalinfo .credentials {
  padding: 20px 0;
  display: inline-block;
}
.legalinfo .credentials .item {
  display: flex;
  flex-wrap: nowrap;
  margin: 8px 0;
}
.legalinfo .credentials .item div {
  padding: 8px;
}
.legalinfo .credentials .item .descr {
  flex-shrink: 0;
  width: 270px;
  background: #c6e2ee;
  color: #202020;
  font-weight: bold;
}
.legalinfo .credentials .item .info {
  flex-grow: 1;
  background: #d7eef8;
  margin-left: 8px;
  color: #000;
}
.legalinfo .credentials span.light {
  font-size: 0.9em;
  color: #646464;
}
.legalinfo .document {
  padding: 16px 0;
}
.legalinfo .document a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: start;
}
.legalinfo .document img {
  vertical-align: middle;
  width: 80px;
  flex-shrink: 0;
}
.legalinfo .document span {
  flex-grow: 1;
}
.legalinfo .greybg {
  background-color: #05708b;
  color: #fff;
}
.legalinfo .greybg .wrapper {
  padding: 0 20px;
}
.legalinfo .founders {
  padding: 20px;
}
.legalinfo .founders ul {
  list-style: none;
}
.legalinfo .founders li {
  position: relative;
  padding-left: 16px;
  line-height: 2em;
}
.legalinfo .founders li::before {
  content: '\1F892';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 2em;
}
@media only screen and (max-width: 500px) {
  .legalinfo .credentials .item {
    flex-wrap: wrap;
  }
  .legalinfo .credentials .item .descr {
    width: 100%;
    box-sizing: border-box;
  }
  .legalinfo .credentials .item .info {
    margin-left: 0;
    padding-left: 10px;
  }
}
.vacancies {
  background: url('/img/vacancies.jpg') top center no-repeat fixed;
  background-size: cover;
  padding: 200px 50px;
}
.vacancies p {
  font-size: 1.1em;
}
.vacancies p.if {
  color: #fdfdfd;
  text-shadow: 1px 1px 5px black;
}
@media only screen and (max-width: 500px) {
  .vacancies {
    padding: 80px 30px;
    background-image: url('/img/vacancies-m.jpg');
    background-attachment: scroll;
  }
}
/*# sourceMappingURL=main.css.map */