/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
@import url(reset.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,700,700i,800,800i,900,900i|Playfair+Display:400,400i,700,700i,900,900i&subset=cyrillic");
a {
  color: inherit; }

body {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Playfair Display', serif;
  min-height: 100%; }

.inner {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%; }

.section {
  min-height: 100vh; }

.white-section {
  color: #000; }

.black-section {
  background: #717171;
  color: #fff; }

/* header */
.header {
  position: relative; }

.header:before {
  background: #000;
  content: '';
  height: 36px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1px; }

.header-box {
  line-height: 1;
  padding-top: 55px;
  text-align: center; }

a.header-logo {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: ease 300ms; }

a.header-logo:hover {
  transform: scale(1.1); }

.header-logo span {
  font-weight: 900; }

.header-logo-box {
  display: inline-block;
  transition: ease 300ms; }

.header-logo-box:hover {
  transform: scale(1.05) rotate(2deg); }

.header-phone-box {
  line-height: 1;
  padding-top: 55px;
  text-align: right; }

a.header-phone {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none; }

.header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
	  flex-direction: column;
  -ms-flex-pack: center;
	  justify-content: center; }

.header .container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }

.header-pretext {
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 25px; }

.header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 60px;
  padding-bottom: 20px; }

.header-left {
  float: left;
  width: 50%; }

.header-right {
  box-sizing: border-box;
  float: left;
  padding-left: 0px;
  margin-top: 68px;
  width: 50%; }

.header-dsc {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 54px;
  white-space: nowrap; }

.header-dsc:last-child {
  margin-bottom: 0; }

.header-title.italic {
  font-family: 'Playfair Display',serif;
  font-weight: 400;
  font-style: italic; }

.header-dsc:nth-child(1) {
  padding-left: 100px; }

.header-dsc:nth-child(3) {
  padding-left: 70px; }

.header-dsc:nth-child(4) {
  padding-left: 170px; }

.header-title span {
  display: none; }

@media screen and (max-width: 1280px) {
  .header-title {
	font-size: 60px;
	padding-left: 6%; }
  .header-pretext {
	padding-left: 6%; }
  .header-dsc {
	font-size: 20px; } }

@media screen and (max-width: 768px) {
  .header-logo-box {
	position: fixed;
	top: 26px;
	left: 0;
	right: 0;
	margin: 0 auto; }
  .header-box {
	position: fixed;
	background: #fff;
	height: 67px;
	width: 100%;
	z-index: 8; }
  .header-phone-box {
	display: none; }
  .header-title {
	text-align: center; }
  .header-title span {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 400;
	font-style: normal; }
  .header-right {
	display: none; }
  .header-left {
	float: none;
	width: 100%; }
  .header-title {
	font-size: 24px;
	line-height: 35px;
	padding-left: 0; }
  .header-title {
	text-align: center;
	padding-bottom: 25px; }
  .header-pretext {
	padding-left: 0;
	text-align: center; } }

/* menu */
.menu {
  position: fixed;
  top: 0;
  left: 98px;
  height: 100%;
  z-index: 9; }

.menu:before {
  background: rgba(169, 165, 165, 0.53);
  content: '';
  height: calc(100% - 278px);
  position: absolute;
  top: 88px;
  left: 0;
  width: 1px; }

.menu-social {
  margin-left: -8px;
  position: absolute;
  bottom: 60px;
  text-align: center; }

.menu-social a {
  color: #000;
  font-size: 15px;
  display: inline-block;
  margin-top: 26px;
  transition: ease 300ms; }

.menu-social a.white {
  color: #fff; }

.menu-open {
  background: transparent;
  cursor: pointer;
  display: block;
  height: 30px;
  position: absolute;
  margin-left: -15px;
  top: 50px;
  left: 0;
  width: 30px;
  z-index: 999; }

.menu-open span {
  opacity: 1;
  margin-top: -1px; }

.menu-open span,
.menu-open:after,
.menu-open:before {
  background: #000;
  height: 2px;
  margin-left: -10px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  transition: ease 300ms; }

.menu-open.white span,
.menu-open.white:after,
.menu-open.white:before {
  background: #fff; }

.menu-open:after,
.menu-open:before {
  content: '';
  margin-top: -7px; }

.menu-open:after {
  margin-top: 5px; }

.menu-open.active:after,
.menu-open.active:before {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: 0;
  margin-left: -11px;
  width: 22px; }

.menu-open.active:after {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.menu-open.active span {
  opacity: 0; }

.nav .menu-open {
  left: 98px; }

@media screen and (max-width: 1400px) {
  .nav .menu-open,
  .menu {
	left: 67px; } }

@media screen and (max-width: 1360px) {
  .nav .menu-open,
  .menu {
	left: 35px; } }

@media screen and (max-width: 768px) {
  .menu:before,
  .menu-social {
	display: none; }
  .menu-open {
	top: 20px; } }

/* examples */
.examples {
  background: #141414 url("imgs/examples-bg.jpg") top right no-repeat;
  padding-bottom: 83px; }

.examples-title {
  font-size: 36px;
  font-style: italic;
  padding-top: 100px;
  padding-bottom: 45px; }

.examples-dsc {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  padding-bottom: 115px; }
  
.examples-dsc p {
  font-family: 'Montserrat', sans-serif; }

.examples-dsc span {
  background: #fff;
  color: #000000;
  display: inline-block;
  line-height: 26px;
  padding: 0 3px; }

.examples-item {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  line-height: 1.3;
  width: 100%; }
a.examples-item {
	color: #fff;
	text-decoration: none; }
.examples-img {
  position: relative;
  height: 245px;
  margin: 0 auto 24px;
  width: 245px; }

.examples-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: ease 300ms; }

.examples-item:hover .examples-img img {
  transform: scale(1.05) rotate(2deg); }

.examples-ttl {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 12px; }

.example-about {
  font-size: 16px;
  font-weight: 500;
  height: 100px; }

.examples-box {
  margin-top: 35px; }

.examples .owl-dots {
  text-align: center; }

.examples .owl-dot {
  background: transparent;
  border-bottom: 1px solid #fff;
  display: inline-block;
  height: 15px;
  margin: 0 5px;
  width: 84px; }

.examples .owl-dot.active {
  background: transparent;
  border-bottom: 3px solid #fff;
  display: inline-block;
  height: 15px;
  margin: 0 5px;
  width: 84px; }

@media screen and (max-width: 768px) {
  .examples {
	background: #141414 url(imgs/examples-bg.jpg) top center no-repeat; }
  .examples-dsc {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
	padding-bottom: 30px; }
  .examples .owl-dot {
	width: 25px; }
  .examples .owl-dot.active {
	border-bottom: 3px solid #fff;
	width: 25px; } }

/* seo */
.seo {
  background: #fff;
  overflow: hidden; }

.seo-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
	  flex-direction: column;
  -ms-flex-pack: center;
	  justify-content: center;
  min-height: 100vh; }

.seo-title {
  font-size: 40px;
  font-style: italic;
  font-family: 'Playfair Display',serif;
  padding-bottom: 80px; }

.seo-dsc {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;}

.seo-dsc p + p {
  margin-top: 35px; }

.seo:before {
  background: url(imgs/seo-bg.jpg) 434px 0px no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 100%;
  margin-right: 305px;
  position: absolute;
  right: 50%;
  width: 100%;
  z-index: 2; }

.seo-enum {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
	  justify-content: space-between;
  height: 100px;
  margin-bottom: 55px;
  position: relative; }

.seo-enum:before {
  background: #f7f7f7;
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  left: -30px;
  width: 9999px;
  z-index: 1; }

.seo-item {
  cursor: pointer;
  line-height: 100px;
  height: 100px;
  padding: 0 15px;
  position: relative;
  z-index: 2; }

.seo-item.active {
  background: #fff; }

.seo-item img {
  -webkit-filter: grayscale(100%);
		  filter: grayscale(100%);
  vertical-align: middle;
  transition: ease 300ms; }

.seo-item.active img,
.seo-item:hover img {
  -webkit-filter: grayscale(0%);
		  filter: grayscale(0%); }

.seo-item.more a {
  display: inline-block;
  color: #000;
  font-size: 13px;
  line-height: 24px;
  text-decoration: underline;
  vertical-align: middle; }

.seo-bg {
  position: relative;
  z-index: 3; }

.seo-example {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  padding-right: 0; }

.seo-ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 15px; }

.seo-logo {
  cursor: pointer;
  display: inline-block;
  vertical-align: top; }

.seo-logo + .seo-logo {
  margin-left: 34px;
  margin-top: 7px; }

.seo-logo img {
  -webkit-filter: grayscale(100%);
		  filter: grayscale(100%);
  transition: ease 300ms;
  vertical-align: top;
  width: auto; }

.seo-logo.active img,
.seo-logo:hover img {
  -webkit-filter: grayscale(0%);
		  filter: grayscale(0%); }

.seo-search {
  margin-bottom: 12px; }

.seo-table {
  font-size: 14px;
  font-weight: 500; }

.seo-table-item:after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  clear: both;
  overflow: hidden; }

.seo-table-left {
  float: left;
  line-height: 1.2;
  padding: 10px 0;
  width: calc(100% - 30px); }
.seo-table-item:nth-child(1) .seo-table-left,
.seo-table-item:nth-child(1) .seo-table-right{
  width: 50%;
}
.seo-table-right {
  float: right;
  text-align: center;
  width: 30px; }

.seo-table-right .yandex {
  color: #ee2517; }

.seo-table-right .google {
  color: blue; }

.seo-table-right i.up {
  background-image: url(imgs/sprite.png);
  background-position: -29px -39px;
  width: 23px;
  height: 23px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px; }

.seo-table-item:nth-child(1) {
  font-size: 12px;
  border-bottom: 2px solid #ebebeb; }

.seo-table-item {
  line-height: 40px;
  border-bottom: 1px solid #ebebeb; }

.seo-table-right span.green {
  display: inline-block;
  color: #4ec04a;
  padding: 0 18px 0 22px; }

.seo-box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%; }

.seo-box.activate {
  opacity: 1;
  /*display: block;*/ }

/* animate */
.seo-table-item {
  transition-property: transform,opacity;
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  transition: ease 300ms; }

.seo-table-item:nth-child(1) {
  transition-delay: 50ms; }

.seo-table-item:nth-child(2) {
  transition-delay: 100ms; }

.seo-table-item:nth-child(3) {
  transition-delay: 150ms; }

.seo-table-item:nth-child(4) {
  transition-delay: 200ms; }

.seo-table-item:nth-child(5) {
  transition-delay: 250ms; }

.seo-table-item:nth-child(6) {
  transition-delay: 300ms; }

.seo-table-item:nth-child(7) {
  transition-delay: 350ms; }

.activate .seo-table-item {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

/**/
.seo-content {
  position: relative;
  height: 350px; }

.seo-chart {
  overflow: hidden;
  margin-top: 35px; }

.seo-chart-wrap {
  height: 340px;
  overflow: hidden;
}
.seo-chart-wrap canvas{
  height: 340px;
}

.seo-chart .ct-grid {
  stroke: #efefef;
  stroke-width: 2px !important;
  stroke-dasharray: 0px; }

.ct-series-b .ct-line {
  stroke: #959595 !important; }

.ct-line {
  stroke-width: 2px !important; }

.ct-series-a .ct-line {
  stroke: #247cf0 !important; }

.ct-series-b .ct-area {
  fill: #eaedf1 !important; }
.ct-series-a .ct-area {
    fill: #247cf0 !important;
    fill-opacity: 0.2 !important;
}
.ct-series-b .ct-area {
    fill: #959595 !important;
    fill-opacity: 0.4 !important;
}

.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #247cf0 !important; }

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #959595 !important; }

.seo-chart-info {
  padding-bottom: 24px; }

.seo-chart-info span + span {
  margin-left: 38px; }

.seo-chart-info span {
  color: #999;
  font-size: 13px;
  padding-left: 23px;
  position: relative; }

.seo-chart-info span:before {
  background: #fff;
  border: 2px solid #257df1;
  border-radius: 50%;
  content: '';
  height: 9px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 9px; }

.seo-chart-info span + span:before {
  border-color: #9b9b9b; }

@media screen and (max-width: 1200px) {
  .seo:before {
	margin-right: 175px; }
  .seo-item img {
	width: 100%; }
  .seo-item.more {
	white-space: nowrap; }
  .seo-chart {
	margin-top: 5px; }
  .seo-chart-wrap {
	height: 220px; }
  .seo-chart-info span + span {
	margin-left: 0; } }

@media screen and (max-width: 768px) {
  .seo-wrap .container {
	width: 100%; }
  .seo:before {
	/*display: none;*/ }
  .seo-bg {
	background: url(imgs/seo-bg.jpg) top center no-repeat;
	padding-bottom: 40px;
	text-align: center; }
  .seo-title {
	padding-top: 30px; }
  .seo-enum {
	height: auto;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-flow: row wrap;
		flex-flow: row wrap; }
  .seo-item.more {
	padding-right: 30px; }
  .seo-example {
	padding-right: 15px; } }

/* support */
.support {
  position: relative; }

.support:before {
  background: #f7f7f7;
  content: '';
  height: 236px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.support-wrap {
  padding: 76px 0;
  margin-bottom: 45px; }

.support-title {
  color: #000000;
  font-size: 36px;
  font-style: italic; }

.support-dsc {
  font-size: 18px;
  line-height: 30px; }

.support-info {
  font-family: 'Montserrat', sans-serif;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px; }

.support-ttl {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 46px; }

.support-info-center {
  margin-left: 70px; }

.support-image {
  text-align: center; }

.support-img-2 {
  margin-top: 30px; }

.support-img-4 {
  margin-left: 28px; }

.support-img-5 {
  margin-top: 47px; }

.support-img-other + .support-img-other {
  margin-top: 40px; }

@media screen and (max-width: 768px) {
  .support:before {
	display: none; }
  .support-wrap {
	background: #f7f7f7; }
  .support-title {
	padding-bottom: 50px; }
  .support-info-center {
	margin-left: 0; }
  .support-image {
	margin-bottom: 50px; } }

/* friend */
.friend {
  background: url("imgs/friend-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative; }

.friend:after {
  background: url("imgs/planfix.png") center right no-repeat;
  background-size: contain;
  content: '';
  height: 82%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%; }

.friend-dsc {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 30px;
  padding: 0 0 80px; }

.friend-box {
  border: 2px solid #fff;
  display: block;
  line-height: 52px;
  text-align: center;
  height: 56px;
  width: 56px; }

.friend-icon {
  font-size: 0;
  width: calc(100% + 20px); }

.friend-item {
  display: inline-block;
  font-size: 16px;
  margin-right: 20px;
  text-align: center;
  width: 56px; }

.friend-item span {
  display: block;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 14px;
  height: 44px;
  white-space: nowrap; }

.friend .seo-wrap {
  position: relative;
  z-index: 1; }

@media screen and (max-width: 768px) {
  .friend:after {
	display: none; }
  .friend .seo-title {
	padding-top: 50px; }
  .friend-icon {
	text-align: center; } }

/* footer */
.footer {
  background: url("imgs/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-family: 'Montserrat', sans-serif;
  padding: 80px 0 54px; }

.footer-title {
  font-size: 36px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  line-height: 1.2; }

.footer-phone {
  font-size: 24px;
  font-weight: 500;
  padding: 50px 0 19px; }

.footer-email {
  font-size: 16px;
  padding-bottom: 83px; }

.footer-button {
  border: 2px solid #fff;
  cursor: pointer;
  line-height: 96px;
  font-weight: 500;
  height: 100px;
  max-width: 300px;
  margin-bottom: 87px;
  padding-left: 110px;
  padding-right: 15px;
  position: relative;
  width: 100%; }

.footer-button:after {
  background-image: url(imgs/mail-footer.png);
  width: 50px;
  height: 39px;
  content: '';
  margin-top: -19.5px;
  position: absolute;
  top: 50%;
  left: 38px; }

.footer-button.icon2:after {
  background-image: url(imgs/sprite.png);
  background-position: -30px 0px;
  width: 29px;
  height: 38px;
  margin-top: -19px; }

.footer-button span {
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle; }

.footer-address {
  font-size: 16px;
  line-height: 30px;
  padding: 16px 0 30px; }

.map-modal_box {
    height: 400px;
    width: 800px;
}
.footer-map {
  cursor: pointer;
  position: relative;
  margin-bottom: 25px; }

.footer-map span {
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-left: 20px; }

.footer-copy {
  font-size: 14px; }

.footer-copy span {
  display: inline-block;
  padding-right: 77px; }

.footer-copy a {
  font-size: 14px;
  margin-right: 40px; }

@media screen and (max-width: 768px) {
  .footer {
	text-align: center; }
  .footer-button {
	margin: 0 auto 20px; }
  .footer-email {
	padding-bottom: 30px; }
  .footer-copy span {
	padding-right: 25px; }
  .footer-copy a {
	margin-right: 20px; }
  .footer-copy a:last-child {
	margin-right: 0; } }

/* nav */
.nav {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8) rotate(8deg);
  transition: ease 300ms; }

.nav.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) rotate(0deg); }

.nav:before {
  background: #f9f9f9;
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%; }

.nav-menu li {
  font-size: 60px;
  font-weight: 300;
  line-height: 120px; }

.nav-menu li a {
  color: #222222;
  display: inline-block;
  line-height: 77px;
  text-decoration: none; }

.nav-menu li a:hover {
  border-bottom: 2px solid; }

.nav-title {
  font-size: 36px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  line-height: 1.2; }

.nav-phone {
  font-size: 24px;
  font-weight: 500;
  padding: 30px 0 19px; }

.nav-email {
  font-size: 16px;
  padding-bottom: 75px; }

.nav-button {
  border: 1px solid #222222;
  cursor: pointer;
  line-height: 96px;
  font-weight: 500;
  height: 100px;
  max-width: 300px;
  padding-left: 110px;
  padding-right: 15px;
  position: relative;
  width: 100%; }

.nav-button {
  margin-top: 36px; }

.nav-button:after {
  background-image: url(imgs/mail.png);
  width: 50px;
  height: 39px;
  content: '';
  margin-top: -19.5px;
  position: absolute;
  top: 50%;
  left: 38px; }

.nav-button.icon2:after {
  background-image: url(imgs/sprite.png);
  background-position: 0px 0px;
  width: 29px;
  height: 38px;
  margin-top: -19px; }

.nav-button span {
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle; }
  .nav-button a:hover {
    text-decoration: none;
    color: #333;
  }

.nav-address {
  font-size: 16px;
  line-height: 30px;
  padding: 16px 0 30px; }

.nav-map {
  cursor: pointer;
  position: relative;
  margin-bottom: 25px; }

.nav-map span {
  border-bottom: 1px solid #222222;
  display: inline-block;
  margin-left: 20px; }

.nav-copy {
  font-size: 14px;
  position: relative;
  top: -20px; }

.nav-copy span {
  display: inline-block;
  padding-right: 77px; }

.nav-copy a {
  font-size: 14px;
  margin-right: 40px; }

@media screen and (max-width: 768px) {
  ul.nav-menu {
	padding: 80px 0 20px; }
  .nav-menu li {
	font-size: 28px;
	font-weight: 300;
	line-height: 46px; }
  .nav-menu li a {
	line-height: 1.2; } }

/* modal */

.modal {
    color: #fff;
    background: url(imgs/friend-bg.jpg) center center no-repeat;
    padding: 40px 70px;
    width: 700px;
}
.model-title {
    font-size: 36px;
    font-style: italic;
    text-align: center;
    padding-bottom: 30px;
}
.model-row {
    margin-left: -15px;
    margin-right: -15px;
}
.model-row .modal-input {
    float: left;
    box-sizing: border-box;
    padding: 0 15px;
    width: 33.3333%;
}
.modal-input {
    margin-bottom: 25px;
}
.modal-input label{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}
.modal-input textarea,
.modal-input input {
    background: #fff;
    border-radius: 3px;
    border: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    height: 40px;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}
.modal-input textarea {
    padding: 15px;
    height: 80px;
    resize: none;
}
.input-file {
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.input-file input[type=file] {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}
.file-name {
    color: #757575;
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background: #fff;
}
.file-name:before {
    background: #333 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaBAMAAABbZFH9AAAAA3NCSVQICAjb4U/gAAAAMFBMVEX///////////////////////////////////////////////////////////////9Or7hAAAAAEHRSTlMAESIzRFVmd4iZqrvM3e7/dpUBFQAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACySURBVBiVY2CAAo3d2wVgbAa2vx29T+G8/AIGhvkJMKlvQILzEUwKLLwTLiWxDCgGk2I82zeBQR8mJXOQ5ROUB5Q6I8D4hSEPLsXA+YDhJFyKYZ4B2Aao1GOG+QEQqXNgqW9QqcdgqQSolAF2qXiw1HyIFMNNBh6g1DeGerC7PzNwA6USwF5iYPgE8tg3qJcYnjEwIKQY+gyQpBg4X5ish0sBJf9fgUuBAes3JA4DG0wKAHgdSOQmK4/jAAAAAElFTkSuQmCC') no-repeat center center;
    border-radius: 0 4px 4px 0;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
}
.modal-input_box {
    text-align: center;
}
.modal button {
    background: #333;
    border-radius: 3px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    height: 40px;
    padding: 0 40px;
}
.model-dsc {
    font-size: 25px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .modal {
        width: 100%;
    }
    .model-row .modal-input {
        float: none;
        width: 100%;
    }
}

/* feild wrapper */

.feild_wrapper{
  display: inline-block;
  position: relative;
  width: 100%;
}
.feild_wrapper input,
.feild_wrapper textarea{
    -webkit-transition: ease-in 1000ms;
    -moz-transition: ease-in 1000ms;
    -ms-transition: ease-in 1000ms;
    -o-transition: ease-in 1000ms;
    transition: ease-in 1000ms;
}
.feild_wrapper.wrong input,
.feild_wrapper.wrong textarea{
  border-color: red;
  box-shadow: 0 0 5px red;
    -webkit-transition: ease-in 1000ms;
    -moz-transition: ease-in 1000ms;
    -ms-transition: ease-in 1000ms;
    -o-transition: ease-in 1000ms;
    transition: ease-in 1000ms;
}
.feild_wrapper .error_label{
    background: rgb(255,48,25); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(255,48,25,1) 0%, rgba(207,4,4,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,48,25,1)), color-stop(100%,rgba(207,4,4,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 ); /* IE6-9 */
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 1px 1px 3px #c9c9c9;
  color: #fff;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  left: 50%;
  margin-left: -120px;
  margin-bottom: 10px;
  padding: 6px;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 240px;
  z-index: 3;
}
.feild_wrapper .error_label:after{
  content: '';
  display: block;
   width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 4px solid rgba(207,4,4,1);
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -2px;
}
.right_lebel .feild_wrapper .error_label{
    bottom: 50%;
    left: 100%;
    margin-left: 9px;
    margin-bottom: -14px;
}
.right_lebel .feild_wrapper .error_label:after{
    border-left: 5px solid transparent;
    border-right: 4px solid rgba(207,4,4,1);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    bottom: 7px;
    left: -7px;
    margin-left: -2px;
}
.left_lebel .feild_wrapper .error_label{
    bottom: 50%;
    left: auto;
    right: 100%;
    margin-right: 9px;
    margin-bottom: -14px;
}
.left_lebel .feild_wrapper .error_label:after{
    border-right: 5px solid transparent;
    border-left: 4px solid rgba(207,4,4,1);
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    bottom: 7px;
    left: auto;
    right: -7px;
    margin-right: -2px;
}
.feild_wrapper.wrong .error_label{
  visibility: visible;
  -webkit-animation: 400ms bounceIn;
  animation: 400ms bounceIn;
}
.header-audit {
  margin-bottom: 35px;
  font-size: 50px;
}
.audit {
  color: #000000;
  background: none;
  border-radius: 15px;
  border:1px solid #616161;
  margin: auto;
}
.audit textarea,
.audit input {
  border-radius: 5px;
  border:1px solid #616161;
}
.audit .input-file {
  border-radius: 5px;
    border:1px solid #616161;
}
.audition:before {
  display: none;
}
.header-middle {
  text-align: center;
}
.audit label {
  text-align: left;
}