@font-face {
  font-family: 'Days Sans';
  src: url('fonts/DaysSansBlack.eot');
  src: url('fonts/DaysSansBlack.eot?#iefix') format('embedded-opentype'), url('fonts/DaysSansBlack.woff2') format('woff2'), url('fonts/DaysSansBlack.woff') format('woff'), url('fonts/DaysSansBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/Roboto-Condensed.eot');
  src: url('fonts/Roboto-Condensed.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto-Condensed.woff2') format('woff2'), url('fonts/Roboto-Condensed.woff') format('woff'), url('fonts/Roboto-Condensed.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed Bold';
  src: url('fonts/Roboto-Condensed-Bold.eot');
  src: url('fonts/Roboto-Condensed-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto-Condensed-Bold.woff2') format('woff2'), url('fonts/Roboto-Condensed-Bold.woff') format('woff'), url('fonts/Roboto-Condensed-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'ALSRubl';
  src: url('fonts/ALSRubl.eot?#iefix') format('embedded-opentype'), url('fonts/ALSRubl.otf') format('opentype'), url('fonts/ALSRubl.woff') format('woff'), url('fonts/ALSRubl.ttf') format('truetype'), url('fonts/ALSRubl.svg#ALSRubl') format('svg');
  font-weight: normal;
  font-style: normal;
}

#circleG {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.circleG {
  background-color: transparent;
  height: 20px;
  margin-right: 10px;
  width: 20px;
  -webkit-animation-name: bounce_circleG;
          animation-name: bounce_circleG;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  border-radius: 50%;
}

.circleG_1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.circleG_2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.circleG_3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.circleG_4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.circleG_5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.circleG_6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.circleG_7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.circleG_8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.circleG_9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.circleG_10 {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}

.circleG_11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.circleG_12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.circleG_13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.circleG_14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.circleG_15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.circleG_16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.circleG_17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.circleG_18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes bounce_circleG {
  0% {
    background-color: #ffffff;
  }

  33% {
    background-color: transparent;
  }
}

@keyframes bounce_circleG {
  0% {
    background-color: #ffffff;
  }

  33% {
    background-color: transparent;
  }
}

.agree {
  padding-top: 20px;
}

.checkbox {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  color: #fff;
}

.checkbox > div {
  margin: 0 15px 0 35px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.6875rem;
}

.checkbox span {
  position: absolute;
  top: -2px;
  left: 0;
  /*width: 25px;
    height: 25px;*/
}

.checkbox input {
  visibility: hidden;
  margin-left: -13px;
  display: none;
}

.checkbox a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

.checkbox:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid #101010;
  background: #fff;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.2);
  margin-top: -2px;
}

.checkbox:hover:before {
  background: #ffde90;
}

.checked:before {
  background: #fff url("../img/checkbox.svg") no-repeat center center;
  -webkit-animation-name: checked;
          animation-name: checked;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
}

.checked:hover:before {
  background: #ffde90 url("../img/checkbox.svg") no-repeat center center;
}

.checkbox-error:before {
  border: 2px solid #d47c7c !important;
  background: #ffe8e8 !important;
}

@-webkit-keyframes checked {
  0% {
    background-position: center 3px;
  }

  100% {
    background-position: center center;
  }
}

@keyframes checked {
  0% {
    background-position: center 3px;
  }

  100% {
    background-position: center center;
  }
}

/* Micsins */

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

::-webkit-input-placeholder {
  color: #000;
}

::-moz-placeholder {
  color: #000;
}

/* Firefox 19+ */

:-moz-placeholder {
  color: #000;
}

/* Firefox 18- */

:-ms-input-placeholder {
  color: #000;
}

/* Main Classes*/

body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol li {
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 10px 0;
}
a,
div,
input,
button {
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #000;
}

a:focus,
div:focus,
input:focus,
button:focus {
  outline: none;
}

.text {
  color: #0048ff;
}

.wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1210px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

h2 {
  font-family: 'Days Sans';
  font-size: 2.1875rem;
  line-height: 2.8125rem;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}

p {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  margin: 0;
}

.rouble {
  font-family: 'ALSRubl';
  font-weight: 400;
  text-transform: none;
}

.flexRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flexRow__block {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
}

.inf {
  width: calc(16.666666666666668% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: default;
  overflow: hidden;
}

.inf img {
  padding-right: 10px;
}

.inf a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline;
}

.inf__title {
	font-size: 15px;
    line-height: 1.3125rem;
    letter-spacing: 0.034em;
}

.inf__title, .text, .phone a, .phone a span, .phone__text {
	color: #FFF;
}

.inf__title:hover {
  color: #114199;
}

.inf__title:hover a {
  color: #114199;
  text-decoration: underline;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.phone__number {
    font-size: 2.5rem;
    position: relative;
    line-height: 1.3125rem;
    font-family: 'Roboto Condensed';
    padding: 0 0 11px 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.phone__number:hover {
  color: #114199;
}
.phone__number:hover span {
  background: #114199;
}
.phone__number span {
font-size: 1.375rem;
    position: absolute;
    left: 0;
    top: -6px;
    line-height: 1.3125rem;
    font-weight: normal;
    margin-right: 10px;
    padding: 4px 7px 4px 6px;
    border-radius: 5px;
    border: 1px solid #fff;
    color: #fff;
}

.logo {
  height: 89px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
     
      max-width: 382px;
    width: 33%;
}
.inf_adress {
	max-width: 225px;
    width: 19%;
    padding: 12px 0 0 25px;
}
.inf_adress img {
	position: absolute;
	top: 11px;
	left: 0;
}

.phone {
    padding: 10px 0 0 0;
    max-width: 324px;
    width: 28%;
}
.mail_link {
  display: inline-block;
  padding: 5px 0 0 0;
}
.mail_link:hover {
  color: #114199;
}

.logo, .inf_adress, .phone, .call_back {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
footer .logo, footer .inf_adress, footer .phone, footer .call_back {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.call_back {
	padding: 16px 0 0 0;
	max-width: 223px;
	width: 24%;
}
footer .call_back {
    padding: 6px 0 0 0;
    max-width: 278px;
    text-align: right;
    width: 100%;
}
footer .call_back button {
	border: 2px solid #114199;
    border-radius: 5px;
    color: #114199;
    padding: 14px 10px 15px 10px;
}
footer .call_back .button:before {
	content: "";
    position: absolute;
    right: 6px;
    top: 3px;
    width: 8px;
    height: 6px;
    border-radius: 2px;
    border-width: 2px;
    border-style: solid;
    border-color: #114199;
}
.call_back .button {
	width: 100%;
	max-width: 223px;
}
.logo img {
  width: 309px;
}
footer .logo img {
  width: 171px;
}
footer .inf__title {
	color: #000;
}
footer .inf__title a {
	color: #000;
}
footer .inf__title .text {
	color: #114199;
}
footer .phone a, footer .phone a span {
	color: #000;
}
footer .phone .phone__text {
	color: #000;
}
footer .call_back span {
    color: #114199;
}
.button {
    position: relative;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: #fff;
    padding: 15px 10px 16px 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}

.call_back .button:before {
	content: none;
}

.button span {
  position: relative;
  top: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.button:before {
    content: '';
    position: absolute;
    right: 6px;
    top: 3px;
    width: 8px;
    height: 6px;
    border-radius: 2px;
    border-width: 2px;
    border-style: solid;
    border-color: #114199;
}

.button:active span {
  top: 2px;
}

.button_standart {
  transition: background 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
  background: transparent;
}

.button_standart:hover {
  background: #114199;
  
}
.button_standart:hover span {
	color: #fff;
}
.button_standart:hover:before {
  border-color: #fff;
  background: #fff;
}

.button_standart:active {
  background: #114199;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.35);
}

.button_standart:active:before {
  top: 9px;
  right: 8px;
  border-color: #fff;
  background: #fff;
}

.button_sidebar {
  background-color: #ffc600;
  box-shadow: inset 0 -3px 0 rgba(26, 29, 33, 0.35);
  color: #000;
  padding: 16px 35px;
  margin: -2px -2px -4px;
  border: none;
}

.button_sidebar:before {
  width: 10px;
  height: 13px;
  background: url(../img/sidebar_icon.png) no-repeat;
  border: none;
}

.button_promo {
  background-color: #fff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.35);
  color: #000;
	padding: 16px 35px 20px 35px;
  margin: -1px 0 -1px -2px;
  border: none;
  transition: all 0.1s linear;
  
}

.button_promo:before {
  border-color: #000;
}

.button_promo:hover {
  background-color: #D6DFFF;
}

.button_promo:active {
  background-color: #95a2d0;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.35);
}

.button_promo:active:before {
  top: 6px;
}

.button_specialOffer {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.4);
  border: none;
  color: #000;
  transition: all 0.1s linear;
  padding: 16px 54px 20px 54px;
}

.button_specialOffer:before {
  border-color: #000;
}

.button_specialOffer:hover {
  background-color: #D6DFFF;
}
.button_specialOffer:active {
  background-color: #95a2d0;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.35);
}

.button_specialOffer:active:before {
  top: 6px;
}

.button_inf {
  padding: 9px 13px;
  color: #000;
  border-color: #000;
  font-size: 1rem;
  line-height: 1.3125rem;
  transition: all 0.1s linear;
  text-align: center;
}

.button_inf:before {
  content: none;
}

.button_inf:hover {
  background: #114199;
  color: #ffffff;
  border-color: #114199!important;
}
.button_inf:active {
  background: #95a2d0;
  border-color: #95A2D0!important;
}

.discount {
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  box-sizing: border-box;
  height: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
      background: #114199;
}

.discount__price {
  width: 100px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
}

.discount__inf {
    max-width: 171px;
    padding: 10px 0;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 19px;
    box-sizing: border-box;
    padding: 0 13px 0 13px;
}
.discount__inf__small {
  font-size: 14px;
}
.discount__inf_color_blue {
  background: #114199;
  color: #fff;
}

.strikethrough {
  position: relative;
}

.strikethrough:before {
  content: '';
  position: absolute;
  top: 9px;
  left: -3px;
  right: 0;
  width: 110%;
  height: 2px;
  background-color: red;
}

.time {
  opacity: 0.5;
color: white;
font-size: 15px;
font-weight: 400;
line-height: 21px;
  font-family: 'Roboto Condensed';
}

.present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.present img {
  margin-right: 13px;
}

.present__text {
  color: #0048ff;
  font-size: 1.0625rem;
  line-height: 1.375rem;
}

.round__block {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.vissible {
  visibility: visible;
}

.hidden {
  visibility: hidden;
}

.generation {
  display: inline-block;
	vertical-align: top;
    padding: 13px 0 0 0;
}

.generation__img {
     padding: 5px 0 5px 0px;
    width: 125px;
}

.on_absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* HEADER */

/* SIDEBAR SECTION */

.video-wrapper {
  position: absolute;
    z-index: 5;
    top: 0;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.header_box video {
    min-width: 100%;
    position: absolute;
    z-index: 2;
    top: -140px;
    right: 0;
    left: 0;
    bottom: 0;
    /* left: 50%; */
    /* margin-left: -650px; */
}

.sidebar {
  width: 26.05%;
  background: #2d2d2d;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  padding: 40px 40px 40px 42px;
  box-sizing: border-box;
  border-left: 2px solid #1b1b1b;
  box-shadow: inset 1px 0 0 0 #3d3d3d;
}

.sidebar__img {
  position: absolute;
  top: -2px;
  right: 0;
  width: 65px;
  height: 65px;
}

.sidebar__img img {
  width: 100%;
}

.sidebar__action {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  background: #ffc600;
  border-radius: 5px;
  padding: 2px 10px;
  margin: 0 0 10px;
}

.sidebar__title {
  font-family: 'Days Sans';
  font-size: 1.6875rem;
  line-height: 2.1875rem;
  color: #fff;
}

.sidebar .button_promo:before {
  width: 10px;
  height: 13px;
  background: url(../img/sidebar_icon.png) no-repeat;
  border: none;
}

.sidebar .form__send {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sidebar .form__input {
  width: 100%;
  margin-top: 30px;
}

.sidebar .form__inputBlock {
  width: 416px;
  margin: 21px 0 0;
}

.sidebar .form__button {
  width: 413px;
  margin: 30px 0 0;
}

.sidebar .form__agree div {
  width: 310px;
  color: #898989;
}

.sidebar .form__agree div a {
  color: #898989;
}

.sidebar .form__agree:hover div a {
  color: #ffffff;
}

.sidebar p {
  width: 325px;
  margin-left: 35px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  padding: 14px 0 19px;
}

.sidebar .time {
  width: 200px;
  font-size: 1rem;
  line-height: 1.3125rem;
  margin-left: 35px;
  color: #898989;
}

/* OFFER SECTION */

header {
	padding: 29px 0 0 0;
	position: relative;
}
.gradient {
	height: 336px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	background: url(/img/gradient.png) no-repeat center;
}
.header_box {
	background: url(../img/offer__backg.png) top center no-repeat;
	background-size: cover;
	box-sizing: border-box;
	height: 700px;
}

.offer__wrap {
 position: relative;
}

.offer__wrap .wrapper {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offer__wrap h2,
.offer__wrap p {
  color: #fff;
}

.offer__wrap h2 {
  padding-left: 0;
}

.offer__wrap p {
  margin: 10px 0 25px;
}

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

.offer__block {
  width: 437px;
  padding: 29px 39px 29px 39px;
  background: #114199;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  word-wrap: break-word;
  -ms-flex-item-align: end;
      align-self: flex-end;
      margin: 210px 0 0 0;
}

.offer__block:before {
  content: none;
  position: absolute;
  width: 63px;
  height: 45px;
  top: 95px;
  right: -62px;
  background: url(../img/offner_img.svg) no-repeat;
}

.offer__block .button {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 2;
          flex: 1 2;
}

.offer__inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.offer__inf .discount {
  margin-right: 10px;
}

.offer__inf .discount__price {
  width: 88px;
}

/* SPECIAL SECTION*/

.information__wrap {
	background: #FFF;
	/* padding: 85px 0 0 0; */
}
.information__wrap_box {
	font-size: 0;
}
.information__wrap_right img {
	position: absolute;
    top: 24px;
    right: 12px;
	display: block;
}
.information__wrap_left {
	display: inline-block;
	position: relative;
	vertical-align: top;
	width: 50%;
	padding: 84px 0 96px 0;
}
.information__wrap_left p {
	font-size: 25px;
    padding-left: 10px;
    line-height: 1.52;
}
.information__wrap_right {
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.special__wrap {
  background: #114199;
  padding: 20px 0;
  box-shadow: inset 0 1px #ffffff;
  position: relative;
}
.service__wrap {
	background: #114199;
    padding: 71px 0 71px 0;
}
.service__wrap h2 {
	color: #FFF;
	padding-left: 8px;
	margin-bottom: 30px;
}
.services_items {
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-between;
              justify-content: space-between;
	font-size: 0;
	padding-left: 0;
}
.services_item {
	display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
	max-width: 283px;
  width: 100%;
	background-color: #d6dfff;
	border-radius: 5px;
    padding: 30px 0 19px 0;
    min-height: 255px;
    max-height: 255px;
    margin-bottom: 16px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    transition: background 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
    cursor: pointer;
}
.services_item a:hover {
  text-decoration: underline;
}
.services_item:hover {
  box-shadow: 0 10px 35px 5px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.services_items .services_item:nth-child(4n) {
	margin-right: 0;
}
.services_item_ico {
	height: 84px;
	position: relative;
	margin-bottom: 18px;
}
.services_item_ico img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.services_item_text {
	color: #272c5e;
	font-family: 'Roboto Condensed';
	font-weight: normal;
  font-size: 18px;
  line-height: 110%;
	text-align: center;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}
.services_item_desc {
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
  text-align: center;
  color: #000000;
  padding: 0 15px;
}
.special__wrap .wrapper {
  position: relative;
  padding-top: 37px;
  padding-bottom: 35px;
  overflow: visible;
}

.special__wrap .wrapper:before,
.special__wrap .wrapper:after {
	content: '';
    position: absolute;
    top: 8px;
    width: 3px;
    height: 95%;
    background-image: url(../img/speccial_element.png);
    background-repeat: repeat;
}

.special__wrap .wrapper:before {
  left: 9px;
}

.special__wrap .wrapper:after {
  right: 4px;
}

.special__wrap .time {
  width: 190px;
  padding-left: 20px;
}

.special__scissors {
    position: absolute;
    top: 47%;
    margin-top: -13.5px;
    left: 8px;
    background: none;
}

.special__top,
.special__bottom {
  position: absolute;
  width: 100%;
  height: 8px;
  left: 9px;
}

.special__top {
  top: 0;
  background: url(../img/special_top.png) no-repeat;
  background-size: 99%;
}
.special__text h2 {
	color: #FFF;
	font-size: 25px;
	line-height: 1.35;
	margin-bottom: 4px;
}
.special__text p {
	color: #FFF;
	font-size: 20px;
}
.special__bottom {
  bottom: 0;
  background: url(../img/special_bottom.png) no-repeat;
  background-size: 99%;
}

.special__blocks {
  font-size: 0;
}
.special__blocks .special__block:first-child:after {
    content: '';
    position: absolute;
    top: -38px;
    width: 3px;
    height: 133%;
    right: -15px;
    background-image: url(../img/speccial_element.png);
    background-repeat: repeat;
}
.special__block {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 0 0 77px;
}

.special__block img {
  width: 290px;
  height: 180px;
  border-radius: 5px;
}


.special__block:last-child {
  /*.size(5);
			.size-lg(6);
			.size-md(7);
			.size-sm(12);*/
}

.special__inf {
  color: #220d0d;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 0 5px;
  letter-spacing: 0.2em;
}

.special__order {
  margin: 13px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ADVANTAGES SECTION */

.advantages__wrap {
  margin: 70px 0 51px;
}

.advantages__wrap h2 {
  padding-left: 8px;
  width: 100%;
}

.advantages__blocks {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.advantages__blocks .advantages__block:last-child {
	width: 100%;
}
.advantages__block {
  margin: 23px 0;
  padding-right: 30px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(33.333333333333336% - 20px);
  width: calc(49.6% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*&:last-child {
			.size(6);
			.size-xs(12);
		}*/
}

.advantages__img {
  width: 80px;
  padding: 0 16px 0 10px;
}

.advantages__title {
  width: 100%;
  font-size: 1.375rem;
  line-height: 2rem;
  font-family: 'Roboto Condensed Bold';
  text-transform: uppercase;
  margin: 0 0 11px;
}

.advantages__inf:hover .advantages__title {
  color: #114199;
}

.advantages__inf:hover p {
  color: #114199;
}

/* SERVICES SECTION */

.services__wrap {
  padding: 68px 0 43px;
  background: #f1f1f1;
}

.services__wrap h2 {
  padding-left: 10px;
  margin-bottom: 51px;
}

.services__wrap .wrapper {
  overflow: visible;
}

.services__wrap .size-4 {
  transition: background 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
  width: calc(33.333333333333336% - 20px);
}
.services__wrap .size-4 .services__img {
	min-height: 211.2px;
	max-height: 211.2px;
}
.services__wrap .size-4 .services__discount_stock {
  width: 100%;
  margin: 15px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services__wrap .size-4 .services__discount_stock .discount {
  width: 241px;
}

.services__wrap .size-4 .present {
  width: 70%;
}

.services__wrap .size-6 {
  transition: background 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
  width: calc(50% - 20px);
}

.services__wrap .size-6 .discount {
  margin: 0 10px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.services__wrap .size-6 .services__discount {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.services__wrap .discount {
  border: 2px solid #114199;
}

.services__wrap .discount__price {
  color: #000;
  font-family: 'Roboto Condensed Bold';
}
.services__discount button {
	border: 2px solid #114199;
	border-radius: 5px;
	color: #114199;
	padding: 12px 10px 13px 10px;
}
.services__wrap .time {
  margin: 4px 0 5px 8px;
}
.services__img {
  max-height: 333px;
}
.size-4 .services__img {
  max-height: 333px;
}
.services__img img {
  width: 100%;
}

.services__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-left: -1px;
  margin-right: -10px;
}

.services__blocks:first-child {
  margin: 50px 0 0;
}

.services__block {
  background: #fff;
  padding: 20px 20px 25px 20px;
  border-radius: 5px;
  margin: 0 0 20px;
  height: 100%;
  box-shadow: rgba(1, 2, 2, 0.08) 0px 1px 1.96px 0.04px;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services__block:hover {
  box-shadow: 0 10px 35px 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.services__block:hover .button_standart {
  background: #114199;
  color: #fff;
}

.services__block:hover .button_standart:before {
  border-color: #fff;
  background: #fff;
}

.services__block_stock {
  position: relative;
}

.services__block_stock:before {
  content: 'акция';
  position: absolute;
  width: 57px;
  height: 25px;
  top: 30px;
  left: 0;
  background: #ffc600;
  text-transform: uppercase;
  color: #000;
  border-radius: 0 5px 5px 0;
  font-size: 0.9375rem;
  line-height: 1.56rem;
  text-align: center;
  font-family: 'Roboto Condensed Bold';
}

.services__block_stock .discount {
  margin: 15px 0 13px;
}

.services__block_stock .button {
  width: 290px;
}

.services__title {
  font-size: 1.375rem;
  line-height: 2rem;
  text-transform: uppercase;
  font-family: 'Roboto Condensed Bold';
  margin: 7px 0 2px;
}

.services__wrap .size-4 .services__title {
  min-height: 64px;
  max-height: 64px;
}

.services__text {
  font-size: 1.0625rem;
  line-height: 1.375rem;
}

.services__discount {
  margin: 9px 0 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services__discount .discount {
  margin-right: 10px;
  /*-webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;*/
}

.services__discount_stock .discount {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.services__discount .button {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 2;
          flex: 1 2;
}

/* OURWORK SECTION */

.ourWork__wrap {
  padding: 80px 0 30px;
  background: #2d2d2d;
}

.ourWork__wrap h2 {
  padding-left: 10px;
  color: #fff;
}

.ourWork__blocks {
  margin: 30px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.ourWork__blocks_size5 .ourWork__block {
  width: calc(20% - 20px);
}

.ourWork__blocks_size5 .ourWork__block a {
  height: 224px;
}

.ourWork__blocks_size5 .ourWork__block a .overlay {
  height: 224px;
}

.ourWork__blocks_size4 .ourWork__block {
  width: calc(25% - 20px);
}

.ourWork__blocks_size4 .ourWork__block a {
  height: 285px;
}

.ourWork__blocks_size4 .ourWork__block a .overlay {
  height: 285px;
}

.ourWork__block {
  position: relative;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
}

.ourWork__block a {
  display: inline-block;
  width: 100%;
  position: relative;
}

.ourWork__block a .overlay {
  background: rgba(0, 0, 0, 0);
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.2s linear;
  border-radius: 5px;
}

.ourWork__block a .overlayImg {
  visibility: hidden;
  position: absolute;
  width: 66px;
  height: 66px;
  top: 20px;
  right: 10px;
  background: url(../img/img_hover.svg) no-repeat;
  transition: all 0.2s linear;
}

.ourWork__block:hover a .overlay {
  background: #0048ff;
  opacity: 0.5;
}

.ourWork__block:hover a .overlayImg {
  visibility: visible;
  top: 10px;
}

.ourWork__block:hover .ourWork__text {
  opacity: 1;
}

.ourWork__text {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  margin-top: 15px;
  opacity: 0.5;
}

.ourWork__img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 0 0 #202020;
}

/* CONTACT SECTION */

.contact__wrap {
  padding: 69px 0 32px;
  background: #114199;
}

.contact__wrap h2 {
  padding-left: 0;
}

.contact__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.contact__block {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(50% - 20px);
}

.contact__block h2,
.contact__block p {
  color: #fff;
  padding-left: 11px;
}
.contact__block p {
  padding: 11px 0 25px 11px;
}

.form label {
  width: 360px;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.4rem;
  color: #fff;
  margin: 0 0 20px;
}

.form__runner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__send {
  margin-top: -5px;
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__input {
  font-family: 'Roboto Condensed', sans-serif;
  border: 2px solid #000;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0), inset 0 3px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5625rem;
  line-height: 1.6875rem;
  padding: 13px 11px;
  transition: box-shadow 0.2s linear;
  margin-right: 10px;
}

.form__input:focus {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), inset 0 3px 0 rgba(26, 29, 33, 0.2);
}

.form__input_error {
  background: #ffffff url(../img/error_input.png) 96% center no-repeat;
}

.form__input_success {
  background: #ffffff url(../img/success_input.png) 96% center no-repeat;
}

.form__button {
  width: 280px;
  font-family: 'Roboto Condensed', sans-serif;
}

/* ABOUT SECTION */

.about__wrap {
  padding: 80px 0 60px;
}

.about__wrap h2 {
  padding-left: 10px;
}

.about__blocks {
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.about__block {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(50% - 20px);
}

.about__img {
  width: 100%;
  margin: 0 0 30px;
  border-radius: 5px;
}

.about__inf {
  margin: 0 0 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.about__sert {
  border: 2px solid #0048ff;
  border-radius: 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
}

.about__sert a {
  display: inline-block;
  width: 100%;
  position: relative;
}

.about__sert a img {
  padding: 8px;
}

.about__sert a .overlay {
  background: rgba(0, 0, 0, 0);
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.2s linear;
  border-radius: 5px;
}

.about__sert a .overlayImg {
  visibility: hidden;
  position: absolute;
  width: 65px;
  height: 65px;
  top: 13px;
  right: 20px;
  background: url(../img/img_hover.svg) no-repeat;
  transition: all 0.2s linear;
}

.about__sert:hover a .overlay {
  background: #0048ff;
  opacity: 0.5;
}

.about__sert:hover a .overlayImg {
  visibility: visible;
  top: 10px;
  transition: all 0 linear;
}

.about__sert:hover .ourWork__text {
  opacity: 1;
}

.about__docs {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  -webkit-box-flex: 1;
      -ms-flex: 1 2;
          flex: 1 2;
}

.docs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.docs__img {
  padding-right: 10px;
}

.docs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  margin: 25px 0 0px;
  color: #0048ff;
}

/* FOOTER */

footer {
  border-bottom: 10px solid #114199;
  padding: 79px 0 0 0;
}

footer .logo {
	margin-left: 11px;
  max-width: 222px;
  width: 19%;
}
footer .inf_adress {
    padding: 2px 0 0 25px;
    max-width: 284px;
    width: 24%;
}
footer .inf_adress img {
    top: 1px;
}
footer .footerButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .phone {
    padding: 5px 0 0 0;
    max-width: 358px;
    width: 31%;
}
footer .phone a {
  	font-family: 'Roboto Condensed Bold';
}
footer .phone a span {
	background-color: #114199;
	border-radius: 5px;
	color: #FFF;
}
footer .flexRow:first-child {
  position: relative;
  padding: 0 0 55px;
}

footer .flexRow:first-child:before {
  content: '';
  position: absolute;
  width: 98.3%;
  height: 1px;
  left: 10px;
  bottom: 0;
  background: #b2b2b2;
}

footer .flexRow:last-child {
    padding: 22px 0 43px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    margin: 50px 0 0 0;
}
footer .flexRow:last-child a {
	padding: 6px 14px 5px 15px;
    border: 2px solid #000;
}
/* MODAL SECTION */

.md-content {
  background: #114199;
}

.modalBlock {
  max-width: 660px;
  max-height: 600px;
  border-radius: 5px;
}

.modalBlock h2 {
  padding-left: 0;
}

.modalBlock .sidebar__action {
  margin: 0;
  font-family: 'Roboto Condensed Bold';
}

.modalBlock h2,
.modalBlock p {
  color: #fff;
}
.docsSite__content p {
  color: #000;
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 0 0 21px 0;
}


.modalBlock h2 {
  padding-top: 10px;
}

.modalBlock__blocks {
  width: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modalBlock__block {
  width: 100%;
}

.modalBlock .form__input {
  width: 50%;
  margin-right: 10px;
}

.modalBlock .form__button {
  width: 50%;
  margin-left: 10px;
}

.modal {
  display: none;
  width: 660px;
  padding: 0;
  background: #0048ff;
}

#map {
  display: none;
  width: 660px;
  height: 550px;
  padding: 0;
}

#thankYou .modalBlock__blocks {
  width: auto;
}

.painted {
  width: 660px;
  height: 550px;
  padding: 0;
  background: #0048ff;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #114199 url(../img/close_lum_img.svg) center center no-repeat;
  opacity: 1;
}

.painted:hover {
  background: #114199 url(../img/close_img.svg) center center no-repeat;
}

.docsSite {
  background: #fff;
  padding: 30px;
  max-height: 500px;
}

.docsSite__title {
  font-size: 1.375rem;
  line-height: 2rem;
  font-family: 'Roboto Condensed Bold';
  text-transform: uppercase;
}

.docsSite__subtitle {
  font-size: 1.25.rem;
  line-height: 1.25rem;
  font-family: 'Roboto Condensed Bold';
}

.docsSite__first:before {
  font-weight: bold;
}

ol {
  list-style: none;
  counter-reset: li;
}

ol li {
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 10px 0;
}

ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}

ol li a {
  color: #0048ff;
}

/* Runner */

.fancybox-iner {
  border-radius: 5px;
}

.md-trigger {
  cursor: pointer;
}

.adv-col-6 {
  width: calc(50% - 20px);
}

/*@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0) {
	@media {
		.about__docs {
			min-width: auto;
		}
		.offer__block .button {
			min-width: auto;
		}
		.services__discount .discount {
			min-width: auto;
		}
		.services__discount_stock .button {
			flex: none;
		}
	}
}*/

@media screen and (min-width: 1720px) {
  .content {
    width: 100%;
  }
}

@media screen and (max-width: 1720px) {
  .sidebar {
    display: none;
  }

  .content {
    width: 100%;
  }
}

@media screen and (max-width: 1470px) {
	.header_box video {
		top: -23px;
	}
}

@media screen and (max-width: 1280px) {
	.header_box video {
		top: -13px;
	}
}

@media screen and (max-width: 1210px) {
  .services_item {
    max-width: inherit;
    width: 23%;
  }
  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
	header .call_back {
		display: none;
	}
  .inf {
    width: calc(25% - 20px);
  }
  .form label {
		width: 100%;
	}

.generation {
	display: block;
	text-align: center;
}
.information__wrap_left p br {
	display: none;
}
footer .wrapper {
	text-align: center;
}
.special__text h2 {
	font-size: 20px;
}
.special__text p {
	font-size: 16px;
	line-height: 1.3;
}
.button_specialOffer {
	text-align: center;
	padding: 16px 0px 20px 0px;
	max-width: 263px;
	width: 100%;
}
.time {
	font-size: 12px;
}
header {
	text-align: center;
}

.logo, .inf_adress, .phone, .call_back {
	text-align: left;
}

  header .flexRow__block:last-child {
    display: none;
  }

  .special__order {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .advantages__title {
    width: 100%;
  }

  .services__wrap .size-4 .present {
    width: 100%;
  }

  .services__wrap .size-4 .button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .services__wrap .size-6 .services__discount_stock {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .services__wrap .size-6 .services__discount_stock {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .services__wrap .size-6 .services__discount_stock .discount {
    margin: 0 20px 20px 0;
  }

  .services__wrap .size-6 .services__discount_stock .button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .services__discount .discount {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .services__discount .discount {
    margin-bottom: 15px;
  }

  .services__discount .button {
    width: 100%;
  }

  .form__send {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .form__input {
    margin-right: 10px;
  }

  .form__input {
    width: calc(50% - 20px);
  }

  .form__button {
    width: calc(50% - 20px);
  }

  .form__agree div {
    width: calc(66.66666666666667% - 20px);
  }

  footer .inf {
    width: calc(25% - 20px);
  }

  .circleG_16,
  .circleG_17,
  .circleG_18 {
    display: none;
  }
}

@media screen and (max-width: 1120px) {
	.services_item_text {
		font-size: 18px;
		line-height: 1;
	}
}

@media screen and (max-width: 1000px) {
	header .inf_adress {
		display: none;
	}	
	header {
		text-align: justify;
	}
	header .logo {
	   	 max-width: 485px;
    	width: 50%;
	}
	header .phone {
	    max-width: 360px;
    	width: 44%;
    	text-align: center;
	}
	footer .logo, footer .phone, footer .inf_adress, footer .call_back {
		display: block;
		max-width: 100%;
		margin: 10px auto;
		text-align: center;
	}
	footer .phone {
		width: 28%;
	}
}

@media screen and (max-width: 992px) {
  .services_item {
    width: 48%;
  }
}

@media screen and (max-width: 864px) {
	footer .logo, footer .phone, footer .inf_adress, footer .call_back {
		width: 100%;
		padding: 0;
	}
	.phone__number {
	    display: block;
	}
	.phone__number span {
		position: static;
	}
	footer .inf_adress img {
		display: none;
	}
	.phone__number {
		padding: 0 0 11px 0px;
	}
}

@media screen and (max-width: 980px) {
	.special__block {
		display: block;
		width: 100%;
		margin-bottom: 35px;
		text-align: center;
	}
	.header_box video {
		left: 50%;
	    margin-left: -650px;	
	}
	.services__title br {
		display: none;
	}
	.form__button {
		max-width: 100%;
		width: 100%;
	}
	.services__wrap .size-4 .services__img {
		overflow: hidden;
	}
	.information__wrap_right {
		display: none;
	}
	.information__wrap_left {
		width: 100%;
	}
	.special__order {
		display: block;
	}
	.special__wrap .time {
		padding-left: 0!important;
		text-align: center;
		font-size: 15px;
		margin: 15px 0 0 0;
		width: 100%;
	}
	.special__blocks .special__block:first-child:after {
		content: none;
	}
}


@media screen and (max-width: 960px) {
	.modalBlock__blocks {
		width: 93%;
	}
}

@media screen and (max-width: 960px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  h2 {
    padding-left: 0;
  }

  .inf_text {
    display: none;
  }

  .special__wrap .wrapper {
    border: 3px dashed #000;
  }

  .special__wrap .wrapper:before,
  .special__wrap .wrapper:after {
    content: none;
  }

  .special__wrap .time {
    padding: 0 0 0 10px;
  }

  .special__scissors {
    display: none;
  }

  .special__top,
  .special__bottom {
    display: none;
  }

  .special__block {
    padding: 0 5px;
  }

  .special__order {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .advantages__block {
    width: calc(50% - 20px);
  }

  .services__wrap .size-4 {
    width: calc(50% - 20px);
  }

  .services__wrap .size-4 .services__discount .discount {
    margin-bottom: 15px;
  }

  .services__wrap .size-4 .services__discount_stock .discount {
    margin-bottom: 15px;
  }

  .services__wrap .size-4 .services__discount_stock .button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .services__wrap .size-4 .services__discount_stock .button {
    width: 100%;
  }

  .ourWork__blocks_size5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .ourWork__blocks_size5 .ourWork__block {
    width: calc(33.333333333333336% - 20px);
  }

  .ourWork__blocks_size5 .ourWork__block a {
    height: auto;
  }

  .ourWork__blocks_size4 .ourWork__block {
    width: calc(50% - 20px);
  }

  .ourWork__blocks_size4 .ourWork__block a {
    height: auto;
  }

  .ourWork__block {
    margin-bottom: 20px;
  }

  .ourWork__block a .overlay {
    display: none;
  }

  .ourWork__block a .overlayImg {
    display: none;
  }

  .form label {
    width: auto;
  }

  .form__input {
    width: calc(66.66666666666667% - 20px);
  }


  .form__button {
    margin: 20px 0 0;
  }

  .form__agree div {
    width: calc(83.33333333333334% - 20px);
  }

  .about__block {
    margin-bottom: 20px;
  }

  .about__inf {
    margin: 0 0 10px;
  }

  .about__sert a .overlay {
    display: none;
  }

  .about__sert a .overlayImg {
    display: none;
  }

  .docs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .docs__link {
    margin: 5px 0 0;
  }

  footer .flexRow:first-child {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  footer .flexRow:last-child {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  footer .flexRow:last-child .button_inf {
    margin-bottom: 20px;
  }

  .modalBlock .form__send {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .modalBlock .form__button {
    margin: 0;
  }

  .modal {
    width: 100%;
  }

  .circleG_16,
  .circleG_15,
  .circleG_14,
  .circleG_13,
  .circleG_12 {
    display: none;
  }

  .fancybox-title-float-wrap {
    bottom: 0;
  }

  .fancybox-prev {
    left: 0;
  }

  .fancybox-prev span {
    left: -5px;
  }

  .fancybox-prev span {
    background-image: url(../img/left_img.svg);
  }

  .fancybox-prev span {
    background-repeat: no-repeat;
  }

  .fancybox-prev span {
    opacity: 1;
  }

  .fancybox-next {
    right: 0;
  }

  .fancybox-next span {
    right: -7px;
  }

  .fancybox-next span {
    background-image: url(../img/right_img.svg);
  }

  .fancybox-next span {
    background-repeat: no-repeat;
  }

  .fancybox-next span {
    opacity: 1;
  }

  .fancybox-close {
    right: 7px;
  }

  .fancybox-close {
    top: 3px;
  }

  .fancybox-close {
    background-image: url(../img/close_img.svg);
  }

  .fancybox-close {
    background-size: 60%;
  }

  .fancybox-close {
    background-repeat: no-repeat;
  }

  .fancybox-close {
    background-position: center center;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape) {
  #modalBlock {
    width: 100%;
    height: 100%;
  }

  #modalBlock h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  #modalBlock .modalBlock__blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px;
  }

  #modalBlock .modalBlock__block {
    width: 50%;
  }

  #modalBlock .modalBlock__block:first-child {
    width: calc(50% - 20px);
  }

  #modalBlock .modalBlock__block p {
    display: none;
  }

  #modalBlock .form__runner {
    display: none;
  }

  #modalBlock .form__input,
  #modalBlock .form__button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
	.header_box video {
		display: none;
	}
	.special__block {
		text-align: left;
	}
	.special__block:last-child {
	    text-align: left;
	}
}

@media screen and (max-width: 780px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .inf_adress {
    display: none;
  }

  .special__wrap .time {
    width: 100%;
  }

  .special__wrap .time {
    text-align: left;
  }

  .special__block {
    
  }


  .special__order {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .advantages__wrap h2 {
    width: 100%;
  }

  .services__wrap .size-4 .services__discount .button {
    width: 100%;
  }

  .services__wrap .size-4 .services__discount .button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .services__wrap .size-6 .discount {
    margin: 0 20px 20px 0;
  }

  .services__wrap .size-6 .services__discount {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .services__wrap .size-6 .services__discount .button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .form__send {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .form__input {
    width: 90%;
  }

  .form__button {
    width: calc(100% - 20px);
  }

  .form__agree div {
    width: 80%;
  }

  .form__agree div {
    display: inline-block;
  }

  .about__block {
    width: calc(100% - 20px);
  }

  footer .inf {
    width: calc(41.66666666666667% - 20px);
  }

  .modalBlock .form__send {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .modalBlock .form__send {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .modalBlock .form__input {
    width: 100%;
  }

  .modalBlock .form__input {
    margin-right: 0;
  }

  .modalBlock .form__input {
    margin-bottom: 20px;
  }

  .modalBlock .form__button {
    width: 100%;
  }

  .modalBlock .form__button {
    margin-left: 0;
  }

  .modalBlock .checkbox > div {
    width: 91%;
  }

  .circleG_11 {
    display: none;
  }
}

@media screen and (max-width: 660px) {
	header .phone {
		display: none;
	}
	.form__input {
	    width: 100%;
	    margin-right: 0;
	}
	.form__button {
		width: 100%;
		max-width: 100%;
	}
}


@media screen and (max-width: 750px) {
	.services_items .services_item {
		width: 48.5%;
	}
	.services_items .services_item:nth-child(4n) {
		
	}
	.services_items .services_item:nth-child(2n) {
		margin-right: 0;
	}
}

@media screen and (max-width: 475px) {
	.services_items .services_item {
		width: 100%;
		margin-right: 0;
    min-height: inherit;
    max-height: inherit;
	}
}

@media screen and (max-width: 560px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .offer__block {
  	align-self: center;
  	margin: 0;
  	border-radius: 4px;
  	text-align: center;
  }
  h2 {text-align: left;}
  header .logo {
    max-width: 100%;
    width: 100%;
    text-align: center;
}
.special__block {
    max-width: 335px;
    width: 100%;
}

  h2 {
    font-size: 1.8rem;
  }

  h2 {
    line-height: 2.5rem;
  }

  .button_standart:hover:before {
    border-color: #0048ff;
  }

  .button_standart:hover:before {
    background: none;
  }


  .button_specialOffer:hover {
    background-color: #D6DFFF;
  }
  .button_specialOffer:active {
    background-color: #95a2d0;
  }

  .button_inf:hover {
    background: #ffffff;
  }

  .button_inf:hover {
    color: #000000;
  }

  header .phone {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  header .phone__text {
    font-size: 1rem;
  }

  .offer__wrap {
    height: 700px;
  }

  .offer__block {
    width: calc(100% - 0px);
  }

  .offer__block:before {
    content: none;
  }

  .offer__inf {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
      display: block;
  }

  .offer__inf .discount {
    margin-bottom: 15px;
  }

  .offer__inf .button {
    width: 100%;
  }

  .offer__inf .button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex:;
    max-width: 324px;
    width: 100%;
    padding: 16px 0px 20px 0px;
  }

  .special__wrap .wrapper {
    border: none;
  }

  .special__wrap .time {
    width: 100%;
  }

  .special__blocks {
    width: auto;
  }

  .special__block {
    padding: 0 10px;
  }

  .special__order {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__block {
    width: calc(100% - 20px);
  }

  .services__wrap .size-4 {
    width: calc(100% - 20px);
  }

  .services__wrap .size-6 {
    width: calc(100% - 20px);
  }

  .services__block:hover {
    box-shadow: none;
  }

  .services__block:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .services__block:hover .button_standart:before {
    border-color: #0048ff;
  }

  .services__block:hover .button_standart:before {
    background: none;
  }

  .ourWork__blocks_size5 .ourWork__block {
    width: calc(50% - 20px);
  }

  .contact__block {
    width: calc(100% - 20px);
  }

  .about__inf {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }


  footer .inf {
    width: calc(50% - 20px);
  }

  footer .inf {
    font-size: 0.9rem;
  }

  footer .phone {
    width: calc(100% - 20px);
  }

  footer .phone {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  footer .phone {
    margin-bottom: 20px;
  }

  footer .footerButton {
    width: calc(50% - 20px);
  }


  footer .flexRow:last-child {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  footer .flexRow:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  footer .flexRow:last-child .copyright {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  #modalBlock p {
    display: none;
  }

  .modalBlock .circleG_13,
  .modalBlock .circleG_12,
  .modalBlock .circleG_11 {
    display: none;
  }

  .modalBlock h2 {
    font-size: 1.2rem;
  }

  .modalBlock h2 {
    line-height: 1.8rem;
  }

  .modalBlock p {
    font-size: 1.1rem;
  }

  .modalBlock p {
    line-height: 1.4rem;
  }

  .modalBlock__blocks {
    padding: 15px;
  }

  .modalBlock .form__runner {
    display: none;
  }

  .modalBlock .checkbox > div {
    font-size: 1.1rem;
  }

  .modalBlock .checkbox > div {
    line-height: 1.4rem;
  }

  .circleG_11,
  .circleG_12,
  .circleG_13 {
    display: block;
  }

  .adv-col-6 {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 420px) {
  body {
    font-size: 14px;
  }

  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  h2 {
    font-size: 1.4rem;
  }

  h2 {
    line-height: 2rem;
  }

  header .phone {
    margin-bottom: 20px;
  }

  .offer__block {
    padding: 20px;
  }

  .special__wrap .time {
    width: 100%;
  }

  .ourWork__blocks_size5 .ourWork__block {
    width: calc(100% - 20px);
  }

  .ourWork__blocks_size4 .ourWork__block {
    width: calc(100% - 20px);
  }

  .ourWork__text {
    font-size: 1.2rem;
  }

  .ourWork__text {
    line-height: 1.6rem;
  }

  footer .inf {
    width: calc(100% - 20px);
  }

  footer .inf {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  footer .inf {
    margin-bottom: 15px;
  }

  footer .footerButton {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  footer .footerButton {
    width: calc(100% - 20px);
  }

  footer .footerButton {
    margin-bottom: 30px;
  }

  footer .footerButton {
    margin-top: 10px;
  }


  footer .generation {
    padding: 0;
  }

  footer .generation {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  footer .flexRow:first-child {
    padding: 0 0 15px;
  }

  .modalBlock .circleG_7,
  .modalBlock .circleG_8 {
    display: none;
  }

  .modalBlock .form__input {
    width: calc(100% - 20px);
  }

  .modalBlock .form__button {
    width: 100%;
  }

  .circleG_9,
  .circleG_10,
  .circleG_11,
  .circleG_12,
  .circleG_13 {
    display: none;
  }
}

@media screen and (max-width: 340px) {
	.logo img {
	    max-width: 100%;
	    width: 100%;
	}
}

@media screen and (min-width: 1720px) and (max-width: 1920px) {
  .sidebar p {
    width: 90%;
  }
}