@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
@-webkit-keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}
@-ms-keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}
@-moz-keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}
@keyframes shake {
  0% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  40% {
    transform: translate(1px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  60% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  70% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  80% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  90% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(1px, 0px) rotate(0deg);
  }
}
@-moz-keyframes shake {
  0% {
    -moz-transform: translate(2px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  40% {
    transform: translate(1px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  60% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  70% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  80% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  90% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(1px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(2px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  40% {
    transform: translate(1px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  60% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  70% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  80% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  90% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(1px, 0px) rotate(0deg);
  }
}
.wrong {
  animation: shake .5s linear;
  -webkit-animation: shake .5s linear;
  -moz-animation: shake .5s linear;
}
.box-sizing {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.yellow-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.item-shadow {
  -webkit-box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
  -moz-box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
  box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
}
.transition-color {
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.transition-opacity {
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
}
.transition-opacity-width {
  transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
}
.transition-opacity-height {
  transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.transition-opacity-visibility {
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
input,
textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  outline: none;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.clear {
  clear: both;
}
.btn {
  height: 39px;
  padding-left: 55px;
  padding-right: 55px;
  display: inline-block;
  cursor: pointer;
  font-size: 19px;
  font-weight: 300;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.btn.btn-white {
  background: transparent;
  color: #ffffff;
  line-height: 36px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.btn.btn-white:hover {
  color: #000000;
  background: #fbd006;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-white:active {
  border-top: none;
  border-bottom: none;
  line-height: 38px;
  padding-right: 56px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-yellow {
  background: #fbd006;
  color: #000000;
  line-height: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-yellow:hover {
  color: #000000;
  background: #ffe615;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-yellow:active {
  border-top: none;
  border-bottom: none;
  line-height: 38px;
  padding-right: 56px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-left-corner {
  border-radius: 0 4px 4px 0;
}
.btn.btn-left-corner.btn-white {
  border-right: 1px solid #ffffff;
}
.btn.btn-left-corner.btn-white:hover {
  border-right: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-left-corner.btn-white:hover i:before {
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: #fbd006;
}
.btn.btn-left-corner.btn-white:active {
  border-right: none;
}
.btn.btn-left-corner.btn-white:active i {
  margin-top: 0;
}
.btn.btn-left-corner.btn-white:active i:before {
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-left-corner.btn-white:active i:before:hover {
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-left-corner i {
  position: absolute;
  width: 15px;
  height: 39px;
  margin-top: -1px;
  margin-left: -70px;
  overflow: hidden;
}
.btn.btn-left-corner i:before {
  content: '';
  width: 15px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  height: 39px;
  display: inline-block;
  margin-left: 7px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
}
.btn.btn-left-corner i:before:hover {
  border-left: 1px solid #fbd006;
  border-bottom: 1px solid #fbd006;
  background: #fbd006;
}
.btn.btn-right-corner {
  border-radius: 4px 0 0 4px;
  padding-right: 50px;
}
.btn.btn-right-corner.btn-white {
  border-left: 1px solid #ffffff;
}
.btn.btn-right-corner.btn-white:hover {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-right-corner.btn-white:hover i:before {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: #fbd006;
}
.btn.btn-right-corner.btn-white:active {
  border-left: none;
}
.btn.btn-right-corner.btn-white:active i {
  margin-top: 0;
}
.btn.btn-right-corner.btn-white:active i:before {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-right-corner.btn-white:active i:before:hover {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-right-corner.btn-yellow {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-right-corner.btn-yellow i {
  width: 15px;
  height: 39px;
  margin-top: -1px;
  margin-left: -70px;
  overflow: hidden;
  position: absolute;
  right: 0;
  margin-right: -15px;
}
.btn.btn-right-corner.btn-yellow i:before {
  margin-left: -15px;
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: #fbd006;
}
.btn.btn-right-corner.btn-yellow:hover {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-right-corner.btn-yellow:hover i:before {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: #ffe615;
}
.btn.btn-right-corner.btn-yellow:active {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
.btn.btn-right-corner.btn-yellow:active i {
  margin-top: 0;
}
.btn.btn-right-corner.btn-yellow:active i:before {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-right-corner.btn-yellow:active i:before:hover {
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9BB03), color-stop(1, #FCDC0E));
  background-image: -o-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -moz-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -webkit-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: -ms-linear-gradient(bottom, #F9BB03 0%, #FCDC0E 100%);
  background-image: linear-gradient(to bottom, #F9BB03 0%, #FCDC0E 100%);
}
.btn.btn-right-corner i {
  position: absolute;
  width: 20px;
  height: 52px;
  margin-top: -1px;
  overflow: hidden;
  right: 0;
  margin-right: -20px;
}
.btn.btn-right-corner i:before {
  content: '';
  width: 20px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  height: 52px;
  display: inline-block;
  margin-left: -20px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
}
.btn.btn-right-corner i:before:hover {
  border-right: 1px solid #fbd006;
  border-bottom: 1px solid #fbd006;
  background: #fbd006;
}
body {
  background: url('../images/fon-main.jpg') repeat-y scroll center center transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  min-width: 1000px;
}
.main-block {
  position: relative;
  overflow: hidden;
}
.main-block .center960 {
  width: 960px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.main-block .center960 .center960-cont {
  position: relative;
  width: 100%;
}
.main-block.meeting-block {
  height: 1060px;
  background: url('../images/fon_01_block.jpg') no-repeat scroll center top transparent;
  background-attachment: fixed;
}
.inf {
  height: 800px !important;
}
.main-block.meeting-block .top-shadow {
  position: absolute;
  z-index: 1;
  height: 324px;
  width: 100%;
  top: 0;
  background: url('../images/shadow-top-01-block.png') repeat-x scroll 0 0 transparent;
}
.main-block.meeting-block .center960 .center960-cont {
  padding-top: 340px;
}
.main-block.meeting-block .center960 .center960-cont .header {
  width: 960px;
  height: 95px;
  top: 40px;
  position: absolute;
  z-index: 2;
  color: #ffffff;
}
.infimg img {
  width: 100%;
  border: 1px solid #666;
}
.main-block .infimg h3 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 30px;
}

.main-block.meeting-block .center960 .center960-cont .header .logo {
  width: 301px;
  height: 95px;
  background: url('../images/logo.png') no-repeat scroll 0 0 transparent;
  float: left;
  margin-left: 200px;
}
.main-block.meeting-block .center960 .center960-cont .header .phone {
  font-size: 30px;
  font-weight: 300;
  padding-left: 10px;
  float: left;
}
.main-block.meeting-block .center960 .center960-cont .header .phone span {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.main-block.meeting-block .center960 .center960-cont .header .backcall {
  float: left;
  padding-left: 3px;
  padding-top: 17px;
}
.main-block.meeting-block .center960 .center960-cont .menu {
  width: 1200px;
  background: rgba(0, 0, 0, 0.3);
  margin-left: -120px;
  z-index: 10;
  position: absolute;
  top: 200px;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont {
  width: 960px;
  padding-top: 20px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 20px;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part {
  width: 240px;
  float: left;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part a:hover {
  color: #fbd006;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part .big-link {
  margin-bottom: 15px;
  line-height: 40px;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part .big-link a {
  font-size: 34px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part ul li {
  line-height: 20px;
  margin-bottom: 7px;
}

.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 a:hover {
  color: #fbd006;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 .big-link {
  margin-bottom: 15px;
  line-height: 40px;
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 .big-link a {
  font-size: 34px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 ul li {
  line-height: 20px;
  margin-bottom: 7px;
}

.main-block.meeting-block .center960 .center960-cont .menu__relative {
	position: relative;
	margin-top: -140px;
	top: 0 !important;
	opacity: 1 !important;
}

.inf__noheight {
	height: auto !important
}

.kust__castom {
	margin-top: -255px;
	margin-bottom: -113px;
}



.main-block.meeting-block .scrolldown {
  position: absolute;
  z-index: 1;
  width: 90px;
  height: 90px;
  background: #1687bc;
  border-radius: 50%;
  left: 0;
  right: 0;
  bottom: 310px;
  margin: auto;
  cursor: pointer;
}
.main-block.meeting-block .scrolldown span {
  width: 26px;
  height: 39px;
  background: url('../images/mousescroll.png') no-repeat scroll 0 0 transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  margin: auto;
}
.main-block.meeting-block .scrolldown div {
  width: 10px;
  height: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  background-image: url('../images/mousescroll-arrow.png');
  background-position: 0px 0px;
  background-repeat: repeat-y;
  animation: animatedBackground 1s linear infinite;
  -ms-animation: animatedBackground 1s linear infinite;
  -moz-animation: animatedBackground 1s linear infinite;
  -webkit-animation: animatedBackground 1s linear infinite;
}
.main-block.meeting-block .kust {
  position: absolute;
  width: 515px;
  height: 830px;
  background: url('../images/kust.png') no-repeat scroll 0 0 transparent;
  top: 350px;
  z-index: 1;
  left: 50%;
  margin-left: 210px;
}
.main-block.meeting-block .kust.not-ready {
  margin-left: 1500px;
}
.main-block.meeting-block .facts {
  position: absolute;
  z-index: 10;
  height: 160px;
  width: 100%;
  bottom: 0;
  background: rgba(22, 135, 188, 0.8);
}
.main-block.meeting-block .facts .center960-cont {
  padding: 0;
}
.main-block.meeting-block .facts .center960-cont .block {
  color: #ffffff;
  font-weight: 100;
}
.main-block.meeting-block .facts .center960-cont .block.block-1 {
  float: left;
  width: 200px;
  margin-right: 30px;
  padding-top: 35px;
}
.main-block.meeting-block .facts .center960-cont .block.block-1 .part-1 {
  font-size: 70px;
  float: left;
  margin-right: 5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-1 .part-2 {
  font-size: 40px;
  float: left;
}
.main-block.meeting-block .facts .center960-cont .block.block-1 .part-3 {
  font-size: 24px;
  float: left;
  font-weight: 300;
  margin-top: -5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-2 {
  float: left;
  width: 340px;
  padding-top: 35px;
}
.main-block.meeting-block .facts .center960-cont .block.block-2 .part-1 {
  font-size: 18px;
  line-height: 1px;
  padding-left: 5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-2 .part-2 {
  font-size: 70px;
  float: left;
  margin-right: 5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-2 .part-3 {
  font-size: 40px;
  float: left;
}
.main-block.meeting-block .facts .center960-cont .block.block-2 .part-4 {
  font-size: 24px;
  float: left;
  font-weight: 300;
  margin-top: -5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-3 {
  float: right;
  width: 360px;
  padding-top: 35px;
}
.main-block.meeting-block .facts .center960-cont .block.block-3 .part-1 {
  font-size: 70px;
  float: left;
  margin-right: 5px;
}
.main-block.meeting-block .facts .center960-cont .block.block-3 .part-2 {
  font-size: 40px;
  float: left;
}
.main-block.meeting-block .facts .center960-cont .block.block-3 .part-3 {
  font-size: 24px;
  float: left;
  font-weight: 300;
  margin-top: -5px;
}
.main-block.services-block h2 {
  font-weight: 100;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 70px;
}
.main-block.services-block .menu {
  margin-bottom: 50px;
  padding-top: 30px;
}
.main-block.services-block .menu .part {
  width: 240px;
  float: left;
}
.main-block.services-block .menu .part .image {
  height: 150px;
  position: relative;
  margin-bottom: 5px;
  cursor: pointer;
}
.main-block.services-block .menu .part .image img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.main-block.services-block .menu .part .title {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  padding-top: 3px;
}
.main-block.services-block .menu .part .title a {
  color: #1687bc;
  border-bottom: 1px dotted rgba(22, 135, 188, 0.5);
  font-weight: 100;
}
.main-block.services-block .menu .part .title a:hover {
  color: #02608d;
}
.main-block.services-block .menu .part[data-service="s1"] .image img {
  margin: 0;
  right: auto;
  left: 10px;
}
.main-block.services-block .menu .part[data-service="s3"] .image img {
  margin: 0;
  right: auto;
}
.main-block.services-block .menu .part.active .title {
  padding-top: 0;
}
.main-block.services-block .menu .part.active .title a {
  color: #ffffff;
  background: #1687bc;
  border: none;
  line-height: 36px;
  display: inline-block;
  height: 36px;
  padding-left: 15px;
  padding-right: 10px;
  border-radius: 4px 0 0 4px;
  position: relative;
  cursor: default;
}
.main-block.services-block .menu .part.active .title a:before {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 15px 0 0;
  border-color: #1687bc transparent transparent transparent;
}
.main-block.services-block .service-block {
  display: none;
}
.main-block.services-block .service-block.shown {
  display: block;
}
.main-block.services-block .service-block .podblock {
  margin-bottom: 50px;
}
.main-block.services-block .service-block .podblock .text {
  width: 640px;
  margin-right: 40px;
  float: left;
}
.main-block.services-block .service-block .podblock .text h3 {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 5px;
}
.main-block.services-block .service-block .podblock .text p {
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 22px;
}
.main-block.services-block .service-block .podblock .text p span {
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
}
.main-block.services-block .service-block .podblock .text p a {
  color: #1687bc;
  border-bottom: 1px dotted rgba(22, 135, 188, 0.5);
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.main-block.services-block .service-block .podblock .text p a:hover {
  color: #02608d;
}
.main-block.services-block .service-block .podblock .text .btn {
  margin-top: 10px;
}
.main-block.services-block .service-block .podblock .text .btn i:before {
  margin-left: -10px;
}
.main-block.services-block .service-block .podblock .image {
  width: 280px;
  float: left;
  padding-top: 50px;
}
.main-block.services-block .service-block .podblock.podblock-right .text {
  margin-right: 0;
  float: right;
}
.main-block.services-block .service-block .podblock.podblock-right .image {
  float: right;
  margin-right: 40px;
}
.main-block.about-block {
  margin-bottom: 60px;
}
.main-block.about-block .about-block-cont {
  background: #dfeff7;
  width: 1200px;
  margin-left: -120px;
  padding-top: 55px;
  padding-bottom: 60px;
}
.main-block.about-block .about-block-cont h2 {
  font-weight: 100;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.main-block.about-block .about-block-cont p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.main-block.about-block .about-block-cont h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 10px;
}
.main-block.about-block .about-block-cont .block-1 {
  position: relative;
  width: 720px;
  margin-left: 240px;
  margin-bottom: 40px;
}
.main-block.about-block .about-block-cont .block-1 img {
  position: absolute;
  left: -280px;
  top: 55px;
}
.main-block.about-block .about-block-cont .block-2 {
  width: 480px;
  float: left;
  margin-right: 120px;
}
.main-block.about-block .about-block-cont .block-3 {
  width: 360px;
  float: left;
  padding-top: 10px;
}
.main-block.about-block .about-block-cont .block-3 img {
  margin-bottom: 10px;
}
.main-block.sertificates-block {
  margin-bottom: 50px;
}
.main-block.sertificates-block h3 {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 25px;
}
.main-block.sertificates-block .sertificates-cont {
  position: relative;
  width: 960px;
}
.main-block.sertificates-block .sertificates-cont .arrow {
  width: 23px;
  height: 45px;
  position: absolute;
  cursor: pointer;
  top: 100px;
}
.main-block.sertificates-block .sertificates-cont .arrow.prev {
  background: url('../images/arrows.png') no-repeat scroll 0 -45px transparent;
  left: 0;
}
.main-block.sertificates-block .sertificates-cont .arrow.prev:hover {
  background: url('../images/arrows.png') no-repeat scroll -23px -45px transparent;
}
.main-block.sertificates-block .sertificates-cont .arrow.next {
  background: url('../images/arrows.png') no-repeat scroll 0 0 transparent;
  right: 0;
}
.main-block.sertificates-block .sertificates-cont .arrow.next:hover {
  background: url('../images/arrows.png') no-repeat scroll -23px 0 transparent;
}
.main-block.sertificates-block .sertificates-cont .sertificates {
  width: 900px;
  margin-left: 30px;
}
.main-block.sertificates-block .sertificates-cont .sertificates .scrollyeah__wrap {
  padding-bottom: 5px;
}
.main-block.sertificates-block .sertificates-cont .sertificates .item {
  width: 180px;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  text-align: center;
}
.main-block.sertificates-block .sertificates-cont .sertificates .item .image {
  width: 180px;
  height: 250px;
  position: relative;
  margin-bottom: 5px;
}
.main-block.sertificates-block .sertificates-cont .sertificates .item .image img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.main-block.sertificates-block .sertificates-cont .sertificates .item span {
  font-size: 14px;
  color: #1687bc;
  font-weight: 300;
  border-bottom: 1px dotted rgba(22, 135, 188, 0.5);
}
.main-block.sertificates-block .sertificates-cont .sertificates .item:hover span {
  color: #02608d;
}
.main-block.gallery-block {
  margin-bottom: 80px;
}
.main-block.gallery-block h3 {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 25px;
}
.main-block.gallery-block .preloader {
  height: 150px;
  background: url('../images/preloader.GIF') no-repeat scroll center top transparent;
}
.main-block.gallery-block .gallery {
  display: none;
  position: relative;
}
.main-block.gallery-block .gallery .item {
  position: absolute;
}
.main-block.gallery-block .gallery .item .img {
  border: 1px solid #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.main-block.gallery-block .gallery .item .bt {
  position: absolute;
  height: 5px;
  background: #1687bc;
  left: 0;
  top: 0;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
}
.main-block.gallery-block .gallery .item .br {
  position: absolute;
  width: 5px;
  background: #1687bc;
  right: 0;
  top: 0;
  opacity: 0;
  height: 0;
  transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.main-block.gallery-block .gallery .item .bb {
  position: absolute;
  height: 5px;
  background: #1687bc;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, width 0.3s ease 0s;
}
.main-block.gallery-block .gallery .item .bl {
  position: absolute;
  width: 5px;
  background: #1687bc;
  left: 0;
  bottom: 0;
  opacity: 0;
  height: 0;
  transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.main-block.gallery-block .gallery .item .mask {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-block.gallery-block .gallery .item .mask:before {
  content: '';
  background: url('../images/plus-1.png') no-repeat scroll center center rgba(22, 135, 188, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.main-block.gallery-block .gallery .item:hover .mask {
  opacity: 1;
}
.main-block.gallery-block .gallery .item:hover .bt {
  opacity: 1;
  width: 100%;
}
.main-block.gallery-block .gallery .item:hover .br {
  opacity: 1;
  height: 100%;
}
.main-block.gallery-block .gallery .item:hover .bb {
  opacity: 1;
  width: 100%;
}
.main-block.gallery-block .gallery .item:hover .bl {
  opacity: 1;
  height: 100%;
}
.main-block.gallery-block .gallery .item-01 {
  width: 240px;
  height: 125px;
  top: 0;
  left: 0;
}
.main-block.gallery-block .gallery .item-01 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-02 {
  width: 240px;
  height: 125px;
  top: 0;
  left: 240px;
}
.main-block.gallery-block .gallery .item-02 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-03 {
  width: 240px;
  height: 125px;
  top: 125px;
  left: 0;
}
.main-block.gallery-block .gallery .item-03 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-04 {
  width: 240px;
  height: 125px;
  top: 125px;
  left: 240px;
}
.main-block.gallery-block .gallery .item-04 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-05 {
  width: 480px;
  height: 250px;
  top: 0;
  left: 480px;
}
.main-block.gallery-block .gallery .item-05 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-06 {
  width: 240px;
  height: 125px;
  top: 250px;
  left: 0;
}
.main-block.gallery-block .gallery .item-06 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-07 {
  width: 240px;
  height: 125px;
  top: 375px;
  left: 0;
}
.main-block.gallery-block .gallery .item-07 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-08 {
  width: 480px;
  height: 250px;
  top: 250px;
  left: 240px;
}
.main-block.gallery-block .gallery .item-08 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-09 {
  width: 240px;
  height: 125px;
  top: 250px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-09 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-10 {
  width: 240px;
  height: 125px;
  top: 375px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-10 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-11 {
  width: 480px;
  height: 250px;
  top: 500px;
  left: 0;
}
.main-block.gallery-block .gallery .item-11 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-12 {
  width: 240px;
  height: 125px;
  top: 500px;
  left: 480px;
}
.main-block.gallery-block .gallery .item-12 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-13 {
  width: 240px;
  height: 125px;
  top: 500px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-13 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-14 {
  width: 240px;
  height: 125px;
  top: 625px;
  left: 480px;
}
.main-block.gallery-block .gallery .item-14 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-15 {
  width: 240px;
  height: 125px;
  top: 625px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-15 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-16 {
  width: 240px;
  height: 125px;
  top: 750px;
  left: 0;
}
.main-block.gallery-block .gallery .item-16 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-17 {
  width: 240px;
  height: 125px;
  top: 750px;
  left: 240px;
}
.main-block.gallery-block .gallery .item-17 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-18 {
  width: 240px;
  height: 125px;
  top: 875px;
  left: 0;
}
.main-block.gallery-block .gallery .item-18 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-19 {
  width: 240px;
  height: 125px;
  top: 875px;
  left: 240px;
}
.main-block.gallery-block .gallery .item-19 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-20 {
  width: 480px;
  height: 250px;
  top: 750px;
  left: 480px;
}
.main-block.gallery-block .gallery .item-20 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-21 {
  width: 240px;
  height: 125px;
  top: 1000px;
  left: 0;
}
.main-block.gallery-block .gallery .item-21 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-22 {
  width: 240px;
  height: 125px;
  top: 1125px;
  left: 0;
}
.main-block.gallery-block .gallery .item-22 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-23 {
  width: 480px;
  height: 250px;
  top: 1000px;
  left: 240px;
}
.main-block.gallery-block .gallery .item-23 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-24 {
  width: 240px;
  height: 125px;
  top: 1000px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-24 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-25 {
  width: 240px;
  height: 125px;
  top: 1125px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-25 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-26 {
  width: 480px;
  height: 250px;
  top: 1250px;
  left: 0;
}
.main-block.gallery-block .gallery .item-26 .img {
  width: 478px;
  height: 248px;
}
.main-block.gallery-block .gallery .item-27 {
  width: 240px;
  height: 125px;
  top: 1250px;
  left: 480px;
}
.main-block.gallery-block .gallery .item-27 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-28 {
  width: 240px;
  height: 125px;
  top: 1250px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-28 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-29 {
  width: 240px;
  height: 125px;
  top: 1375px;
  left: 480px;
}
.main-block.gallery-block .gallery .item-29 .img {
  width: 238px;
  height: 123px;
}
.main-block.gallery-block .gallery .item-30 {
  width: 240px;
  height: 125px;
  top: 1375px;
  left: 720px;
}
.main-block.gallery-block .gallery .item-30 .img {
  width: 238px;
  height: 123px;
}
.main-block.consultation-block {
  margin-bottom: 80px;
}
.main-block.consultation-block .consultation-block-cont {
  background: url('../images/fon-consultation.jpg') no-repeat scroll center center transparent;
  width: 1200px;
  margin-left: -120px;
  height: 280px;
  color: #ffffff;
  padding-top: 45px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-block.consultation-block .consultation-block-cont p {
  width: 640px;
  margin-left: 180px;
  font-size: 36px;
  font-weight: 300;
  line-height: 42px;
  text-align: center;
  margin-bottom: 30px;
}
.main-block.consultation-block .consultation-block-cont .consultation {
  text-align: center;
}
.main-block.consultation-block .consultation-block-cont .consultation .btn {
  height: 52px;
  line-height: 50px;
}
.main-block.consultation-block .consultation-block-cont .consultation .btn:active {
  line-height: 52px;
  padding-left: 56px;
  padding-right: 50px;
}
.main-block.partners-block {
  margin-bottom: 90px;
}
.main-block.partners-block h2 {
  letter-spacing: 1px;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 10px;
}
.main-block.partners-block .partners-cont {
  position: relative;
  width: 960px;
}
.main-block.partners-block .partners-cont .arrow {
  width: 23px;
  height: 45px;
  position: absolute;
  cursor: pointer;
  top: 40px;
}
.main-block.partners-block .partners-cont .arrow.prev {
  background: url('../images/arrows.png') no-repeat scroll 0 -45px transparent;
  left: 0;
}
.main-block.partners-block .partners-cont .arrow.prev:hover {
  background: url('../images/arrows.png') no-repeat scroll -23px -45px transparent;
}
.main-block.partners-block .partners-cont .arrow.next {
  background: url('../images/arrows.png') no-repeat scroll 0 0 transparent;
  right: 0;
}
.main-block.partners-block .partners-cont .arrow.next:hover {
  background: url('../images/arrows.png') no-repeat scroll -23px 0 transparent;
}
.main-block.partners-block .partners-cont .partners {
  width: 900px;
  margin-left: 30px;
}
.main-block.partners-block .partners-cont .partners .scrollyeah__wrap {
  padding-bottom: 5px;
}
.main-block.partners-block .partners-cont .partners .item {
  float: left;
  margin-left: 13px;
  margin-right: 13px;
}
.main-block.reviews-block {
  margin-bottom: 60px;
}
.main-block.reviews-block h2 {
  letter-spacing: 1px;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}
.main-block.reviews-block .reviews {
  width: 980px;
  margin-left: -10px;
}
.main-block.reviews-block .reviews .item {
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  width: 120px;
  height: 167px;
  margin-bottom: 40px;
  position: relative;
  -webkit-box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
  -moz-box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
  box-shadow: 0px 7px 20px -7px rgba(14, 91, 127, 0.75);
}
.main-block.reviews-block .reviews .item .mask {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 3px solid #1687bc;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-block.reviews-block .reviews .item .mask:before {
  content: '';
  background: url('../images/plus-1.png') no-repeat scroll center center rgba(22, 135, 188, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.main-block.reviews-block .reviews .item .image {
  width: 120px;
  height: 167px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-block.reviews-block .reviews .item:hover .mask {
  opacity: 1;
}
.main-block.offer-block {
  margin-bottom: 80px;
}
.main-block.offer-block .offer-block-cont {
  background: url('../images/fon-offer.jpg') no-repeat scroll center center transparent;
  width: 1200px;
  margin-left: -120px;
  height: 550px;
  color: #ffffff;
  padding-top: 35px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-block.offer-block .offer-block-cont h3 {
  font-size: 36px;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
}
.main-block.offer-block .offer-block-cont .offer {
  width: 480px;
  margin-left: 240px;
  background: rgba(22, 135, 188, 0.8);
  padding-top: 25px;
}
.main-block.offer-block .offer-block-cont .offer p {
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  width: 320px;
  margin-left: 80px;
  text-align: center;
  margin-bottom: 30px;
}
.main-block.offer-block .offer-block-cont .offer form {
  width: 280px;
  position: relative;
  margin-left: 100px;
}
.main-block.offer-block .offer-block-cont .offer form .field {
  margin-bottom: 30px;
  text-align: center;
}
.main-block.offer-block .offer-block-cont .offer form input[type="text"] {
  width: 100%;
  border: 1px solid #02608d;
  height: 38px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-block.offer-block .offer-block-cont .offer form .btn {
  padding-left: 65px;
  padding-right: 60px;
  margin-bottom: 45px;
}
.main-block.contacts-block {
  margin-bottom: 50px;
}
.main-block.contacts-block h2 {
  letter-spacing: 1px;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
}
.main-block.contacts-block .address {
  font-size: 18px;
  font-weight: 300;
  float: left;
  width: 440px;
}
.main-block.contacts-block .address span {
  font-weight: 500;
}
.main-block.contacts-block .phone {
  float: right;
  width: 300px;
  padding-right: 145px;
  text-align: right;
  font-size: 30px;
  font-weight: 300;
  margin-top: -12px;
}
.main-block.contacts-block .phone span {
  font-weight: 500;
  font-size: 18px;
}
.main-block.contacts-block .map {
  width: 1200px;
  margin-left: -120px;
  height: 400px;
  margin-top: 35px;
}
.main-block.questions-block {
  margin-bottom: 40px;
}
.main-block.questions-block h2 {
  font-weight: 100;
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  float: left;
  margin-right: 60px;
}
.main-block.questions-block a {
  font-size: 18px;
  color: #1687bc;
  border-bottom: 1px dotted rgba(22, 135, 188, 0.5);
  float: left;
  margin-top: 25px;
  font-weight: 300;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.main-block.questions-block a:hover {
  color: #02608d;
}
.main-block.footer-block {
  height: 39px;
  background: #1687bc;
  color: #ffffff;
  padding-top: 16px;
}
.main-block.footer-block .copyright {
  float: left;
}
.main-block.footer-block .made_by {
  float: right;
}
.main-block.footer-block .made_by a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.main-block.footer-block .made_by a:hover {
  border-bottom: 1px solid #ffffff;
}
#header {
  position: fixed;
  height: 45px;
  background: rgba(22, 135, 188, 0.8);
  top: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}
#header .logo {
  display: inline-block;
  width: 95px;
  height: 30px;
  float: left;
  margin-top: 8px;
  margin-right: 10px;
  background: url('../images/logo2.png') no-repeat scroll 0 0 transparent;
}
#header .menu ul {
  padding-top: 12px;
}
#header .menu ul li {
  float: left;
  margin-right: 5px;
}
#header .menu ul li span {
  color: #ffffff;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}
#header .menu ul li span i {
  font-style: normal;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
#header .menu ul li.active span {
  color: #000000;
  background: #fbd006;
  border-radius: 2px;
}
#header .menu ul li.active span i {
  border: none;
}
#header .phone {
  float: right;
  font-size: 20px;
  color: #ffffff;
  margin-top: -2px;
}
#header.shown {
  opacity: 1;
  visibility: visible;
}
#blackout {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  z-index: 100;
}
.popup {
  background: rgba(22, 135, 188, 0.95);
  width: 480px;
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 105;
  margin-left: -240px;
  padding-top: 25px;
  padding-bottom: 15px;
}
.popup .close {
  width: 18px;
  height: 17px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: url('../images/close1.png') no-repeat scroll 0 0 transparent;
}
.popup .close:hover {
  background: url('../images/close2.png') no-repeat scroll 0 0 transparent;
}
.popup .cont {
  width: 280px;
  margin-left: 100px;
}
.popup .cont h4 {
  color: #ffffff;
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}
.popup .cont p {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}
.popup .cont form .field {
  margin-bottom: 30px;
  text-align: center;
}
.popup .cont form .field input[type="text"] {
  width: 100%;
  border: 1px solid #02608d;
  height: 38px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.popup .cont form .field textarea {
  width: 100%;
  border: 1px solid #02608d;
  height: 123px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.popup .cont form .field .btn {
  padding-left: 40px;
  padding-right: 35px;
}
form input.error {
  border: 1px solid #db322f !important;
  background: #f4e3e3 !important;
}
form .field {
  position: relative;
}
form .field label.error {
  position: absolute;
  height: 38px;
  background: #ffffff;
  color: #000000;
  top: 0;
  left: 100%;
  margin-left: 10px;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 36px;
  border: 1px solid #db322f;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
form .field label.error:after,
form .field label.error:before {
  border-style: solid;
  border-width: 5px 6px 5px 0;
  content: "";
  height: 0;
  position: absolute;
  top: 14px;
  width: 0;
}
form .field label.error:before {
  border-color: transparent #db322f transparent transparent;
  left: -7px;
}
form .field label.error:after {
  border-color: transparent #ffffff transparent transparent;
  left: -6px;
}
.popup_question form p {
  width: 320px;
  margin-left: -20px;
}
.popup .cont .sended {
  width: 100%;
  height: 100px;
  background: url('../images/sended.png') no-repeat scroll center top transparent;
  padding-bottom: 15px;
}
.offer .sended {
  width: 100%;
  height: 100px;
  background: url('../images/sended.png') no-repeat scroll center top transparent;
  padding-bottom: 15px;
}
.offer h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
}

/*.main-block.meeting-block .facts__relative {
	position: initial;
}*/

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

	.mobil-body {
		min-width: 320px;
		box-sizing: border-box
	}

	.mobil-version-active {
		background-size: cover;
	}

	.mobil-version-active .center960,
	.footer-mobil .center960 {
		max-width: 960px;
		width: 100%;
		box-sizing: border-box;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header {
		width: 100% !important;
		box-sizing: border-box;
		height: auto !important;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		position: relative;
		margin-bottom: 50px;
		top: 0;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .logo {
		margin-right: 15px;
		width: 120px;
		height: 38px;
		background-size: cover;
	}

	.mobil-version-active .center960-cont {
		padding-top: 20px !important;
	}

	.mobil-version-active .menu__relative {
		margin-top: 0 !important;
		width: 100% !important;
		margin-left: 0 !important;
		box-sizing: border-box;
	}

	.mobil-version-active .menu__relative .menu-cont {
		width: 100% !important;
		box-sizing: border-box;
		padding: 30px !important;
	}
	
	.mobil-version-active .menu__relative .menu-cont .part2 {
		width: 100% !important;
		box-sizing: border-box;
	}

	.mobil-version-active .menu__relative .menu-cont .part2 ul li {
		margin-bottom: 15px !important;
	}

	.mobil-version-active.main-block.meeting-block .facts {
		box-sizing: border-box;
		height: auto;
		padding-bottom: 10px;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont {
		padding-top: 0 !important;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		box-sizing: border-box;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont * {
		box-sizing: border-box;
	}

	.footer-mobil {
		height: auto !important;
		padding-bottom: 16px;
	}

}

@media only screen and (max-width: 992px) {
	.mobil-version-active .center960,
	.footer-mobil .center960 {
		max-width: 750px;
		width: 100%;
		box-sizing: border-box;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .phone {
		width: auto;
		margin-right: 15px;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .phone span {
		font-size: 16px;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .phone p {
		font-size: 14px;
		padding-top: 3px;
		line-height: 1.1;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .backcall {
		width: auto;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .backcall a {
		box-sizing: border-box;
		width: auto;
		height: auto;
		padding: 10px 15px;
		font-size: 14px;
		line-height: 1.3;
	}
}

@media only screen and (max-width: 767px) {
	.mobil-version-active .center960,
	.footer-mobil .center960 {
		max-width: 560px;
		width: 100%;
		box-sizing: border-box;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .backcall {
		display: none;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .menu .menu-cont .part2 .big-link a {
		font-size: 26px;
	}

	.footer-mobil .center960-cont {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-mobil .center960-cont > * {
		margin-bottom: 10px;
	}

	.footer-mobil .center960-cont > *:last-child {
		margin-bottom: 0;
	}

	.mobil-version-active.main-block.meeting-block .kust {
		margin-left: 0 !important;
		left: 0 !important;
	}
}

@media only screen and (max-width: 576px) {
	.mobil-version-active .center960,
	.footer-mobil .center960 {
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.mobil-version-active .menu__relative .menu-cont {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

@media only screen and (max-width: 480px) {
	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header {
		flex-wrap: wrap;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .phone {
		text-align: right;
		margin-right: 0;
	}

	.mobil-version-active.main-block.meeting-block .center960 .center960-cont .header .phone-2 {
		flex-grow: 1;
		width: 100%;
		padding-top: 10px;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block {
		width: 100%;
		box-sizing: border-box;
		margin-right: 0;
		text-align: center;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block .part-1,
	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-2 .part-2 {
		font-size: 50px;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-2 .part-1 {
		font-size: 18px;
	}

	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-1 .part-3,
	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-2 .part-4,
	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-2 .part-1,
	.mobil-version-active.main-block.meeting-block .facts .center960-cont .block-3 .part-3 {
		flex-grow: 1;
		width: 100%;
		text-align: center;
	}

	.mobil-version-active.main-block.meeting-block .facts {
		padding-bottom: 35px;
	}
}