@charset "utf-8";
@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'OpenSans-Bold';
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: 'Roboto-BoldItalic';
  src: url('../fonts/Roboto/Roboto-BoldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: 'Roboto-Italic';
  src: url('../fonts/Roboto/Roboto-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;

}@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'RobotoCondensed-Regular';
  src: url('../fonts/RobotoCondensed/RobotoCondensed-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Raleway-Regular';
  src: url('../fonts/Raleway/Raleway-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Raleway-Bold';
  src: url('../fonts/Raleway/Raleway-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: 'Raleway-ExtraBold';
  src: url('../fonts/Raleway/Raleway-ExtraBold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: 'Raleway-SemiBold';
  src: url('../fonts/Raleway/Raleway-ExtraBold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
}
/*
h2.anchor {
	padding-top: 55px;
	margin-top: -55px;
	-webkit-background-clip: content-box;
	background-clip: content-box;
}*/
/*screen 320px*/
.wrapper {
  display: flex;
  align-items: center;
  /*width: 1170px;*/
  margin: 0 auto;

  flex-direction: column;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 25px;
}
a, a:active, a:visited, a:focus {
	text-decoration: none;
	outline: none;
}
p {
  margin: 0;
  padding: 0;
}
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0);
}
/*nav*/


/* -------------------------------- 

Primary style

-------------------------------- */

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
::-webkit-input-placeholder { 
  color: #c1c1c1; 
}
::-moz-placeholder          { 
  color: #c1c1c1; 
} /* Firefox 19+ */
:-moz-placeholder           { 
  color: #c1c1c1; 
} /* Firefox 18- */
:-ms-input-placeholder      { 
  color: #c1c1c1; 
}
/* -------------------------------- 

Main Components 

-------------------------------- */
.nav__wrapper {
 /* display: none;*/
  position: static;
  z-index: 4;
  height: 50px;
  top: 0;
  left: 0;
  background-color: #E8E8E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.nav__wrapper-320 {
  display: none;
}
.nav__wrapper.nav-is-visible {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
.nav__wrapper::before {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}

.cd-nav-trigger {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span {
  /* hamburger icon created in CSS */
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background-color 0.3s 0.3s;
  -moz-transition: background-color 0.3s 0.3s;
  transition: background-color 0.3s 0.3s;
  background-color: #000000;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.nav-is-visible .cd-nav-trigger span {
  background-color: rgba(255, 255, 255, 0);
}
.nav-is-visible .cd-nav-trigger span::before {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.nav-is-visible .cd-nav-trigger span::after {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
@media only screen and (min-width: 1244px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-main-nav {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 260px;
  /*height: 100vh;*/
  overflow: auto;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  background: #e8e8e8;
  list-style: none;
  -webkit-transition: visibility 0s 0.3s;
  -moz-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}
.cd-main-nav a {
  display: block;
  padding: .9em 2em .9em 1em;
  border-bottom: 1px solid #33414a;
  color: #000000;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.cd-main-nav li ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}
.cd-main-nav.nav-is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.hidden {  
  visibility: hidden;
  display: none;
}
.cd-main-nav.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.cd-main-nav.moves-out > li > ul {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}



/*
.cd-main-nav .cd-subnav-trigger, .cd-main-nav .go-back a {
  position: relative;
}
.cd-main-nav .cd-subnav-trigger::before, .cd-main-nav .cd-subnav-trigger::after, .cd-main-nav .go-back a::before, .cd-main-nav .go-back a::after {
  /* arrow icon in CSS */
/*  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #485c68;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-main-nav .cd-subnav-trigger::before, .cd-main-nav .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-main-nav .cd-subnav-trigger::after, .cd-main-nav .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-main-nav .cd-subnav-trigger::before, .cd-main-nav .cd-subnav-trigger::after {
  /* arrow goes on the right side - children navigation */
/*  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}
.cd-main-nav .go-back a {
  padding-left: 2em;
}
.cd-main-nav .go-back a::before, .cd-main-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
/*  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.cd-main-nav .placeholder {
  /* never visible or clickable- it is used to take up the same space as the .cd-subnav-trigger */
/*  display: none;
}


.cd-main-content::before {
  /* never visible - this is used in jQuery to check the current MQ */
/*  display: none;
  content: 'mobile';
}
@media only screen and (min-width: 1244px) {
  .cd-main-content::before {
    content: 'desktop';
  }
}
*/
.cd-main-content {
  position: relative;
  z-index: 2;
/*  min-height: 100vh;*/
/*  padding-top: 50px;*/
  background-color: #f2f2f2;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.main-nav__item a[href]:hover {
  color: #ffffff;
  background-color: #faa61a;
}
.cd-main-content.nav-is-visible {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 1244px) {
  .cd-main-content.nav-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.no-js .cd-nav-trigger, .no-js .cd-subnav-trigger {
  display: none;
}

.no-js .nav__wrapper {
  position: relative;
  height: auto;
}

.no-js .cd-logo img {
  margin-bottom: 14px;
}

.no-js .cd-main-nav {
  position: static;
  width: 100%;
  height: auto;
  visibility: visible;
  overflow: visible;
}
.no-js .cd-main-nav li {
  display: inline-block;
}
.no-js .cd-main-nav li:last-child {
  display: block;
}
.no-js .cd-main-nav .go-back {
  display: none;
}
.no-js .cd-main-nav li ul {
  position: static;
  width: 100%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 12424px) {
  .no-js .cd-main-nav {
    height: 80px;
  }
  .no-js .cd-main-nav li ul {
    position: absolute;
    top: 80px;
  }
  .no-js .cd-main-nav li ul li {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .no-js .cd-main-nav li ul li:last-child {
    display: none;
  }
}

.no-js .cd-main-content {
  padding-top: 0;
}
@media only screen and (min-width: 1244px) {
  .no-js .cd-main-content {
    padding-top: 80px;
  }
}


/*header*/
header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  order: -1;
  justify-content: center;
  line-height: 28px;
}
.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.logo__h2 {
  margin: 0;
  padding: 10px;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 30px;
  color: #e2509d;

}
.part-info {
  font-family: 'Roboto-Regular', Arial, sans-serif;
  color:  #515151;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}
.part-info-desctop {
  display: none;
}
.logo a {
  text-decoration: none;
}


.header__wrapper {
  display: none;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px 0 0 0;
}
.header__telephone {
  margin: 0 auto;
  width: 94%;
  padding: 4%;
  text-align: right;
}
.size30 {
  font-size: 30px;
}
.size16 {
  font-size: 16px;
}
#select-number {
  border: none;
  padding-right: 10px;
  font-size: 21px;
  line-height: 22px;
  position: relative;    /* Это нужно, чтобы работал z-index */
  background: none;    /* Через прозрачный фон будет видно кнопку */
  z-index: 3;
}

.header__wrapper #select-number {
  padding-right: 0;
  padding-left: 25px;
  width: 230px;
}
.select-number {
  width: 210px;    /* На 20px меньше, чем у select'а. Примерно такова ширина стандартной кнопки */
  display: block;
  position: relative;    /* Чтобы элементы с position:absolute позиционировались по "обертке" */
  text-align: right;
}

.select-button {
  height: 22px;    /* Размеры подготовленной картинки */
  width: 15px;
  position: absolute;    /* Размещаем объект по правому краю */
  top: 0;
  bottom: 0;
  z-index: 2;    /* И спускаем его на нижний слой - чтобы ссылка */
      /* не перехватывала событие щелчка от select'а */
  text-align: center;
}
.select-button-number {
  top: 0;
  font-size: 33px;

}


/*call-phone*/
.small__btn__call-phone {
  color: transparent;
  margin: 0;
  padding: 16px;
  background-color: transparent;
  border-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 10px;
  padding: 22px;
  background-color: transparent;
  border-radius: 50%;
}
.small__btn__call-phone:hover {
  color: transparent; 
  background-color: #B0B9C2;
  border-color: #B0B9C2;
} 

.small__btn__call-phone:active {
  color: transparent; 
  background-color: #727b84;
  border-color: #6c757d;
}
.small__btn-close-modal:before, 
.small__btn-close-modal:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.small__btn-close-modal:before {
  transform: rotate(45deg);
}
.small__btn-close-modal:after {
  transform: rotate(-45deg);
}
.small__btn-close-modal {
    width: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  position: absolute;
  top: 5px;
  right: -2px;
}
.small__btn-close-modal__call-phone {

  right: 0;
  top: 0;
}
.small__btn-close-modal__call-phone::before, 
.small__btn-close-modal__call-phone::after {
  background-color: #ffffff; 
}

.header__wrapper .select-button-number {
  left: -10px;
}

.btn-order {
  background-color: transparent;
  display: inline-block;
  color: #99cc00;
  border-bottom: 1px dotted #ff0000;
}
.btn-order:hover {
  color: #e2509d;
}
.header__metro {
  float: left;
  padding-left: 10%;
}
.header__adress {
  width: 50%;
  margin: 0 auto;
  font-size: 15px;
  text-align: right;
}
.header__adress-map {
  color: #faa61a;
  border-bottom: 1px dotted #ff0000;
}
.header__adress-map:hover {
  color: #e2509d;
}
.header__adress-time {
  margin-top: 15px;
}
.header__buttons {
  display: flex;
  width: 44%;
  margin-left: 3%;
  margin-right: 3%;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
}

/*search*/
.header__search {

  position: relative;
  margin: 10px 0;
}

.header__search input {
  border: none;
}

.header__search__input {
  width: 94%;
  padding: 7px 13px 3px 8px;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #000000;
  font: 13px Tahoma, Arial, sans-serif;
  outline: none;

}

.header__search__input:focus {
  background: #E8E8E8;
}

.header__search__submit {
  position: absolute;
  top: 0;
  right: 2%;
  width: 37px;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.icon-search {
  position: absolute;
  top: 7px;
  right: 5%;
}
.header__search .submit:hover {
  opacity: 0.8;
}
input[type="search"] {
  -webkit-appearance: none;
}
input {
  outline:none;
}





.icon-globe {
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#select-language {
  width: 124px; /*110*/
  border: none;
  height: 22px;    /* Меньше, чем рисованная "кнопочка" на ширину нужного border'а */
  line-height: 22px;
  padding-left: 22px;
  position: relative;    /* Это нужно, чтобы работал z-index */
  background: none;    /* Через прозрачный фон будет видно кнопку */
  z-index: 3;
}
.select-language {
  width: 104px;    /* На 20px меньше, чем у select'а. Примерно такова ширина стандартной кнопки */
  overflow: hidden;    /* Кнопка будет находиться за пределами "обертки" */
  display: inline-block;
  position: relative;    /* Чтобы элементы с position:absolute позиционировались по "обертке" */
  margin-right: 14%;
}
.select-button-language {
  top: 2px;
  right: 10px;
  font-size: 20px;
}
.uppercase {
  text-transform: uppercase;
}
.btnn {
  display: block;
  width: 184px;
  padding: 7px 0;
  margin: 2%;
  border: 1px solid #515151;
  text-align: center;
  font-size: 14px;
  line-height: 1.1;
  border-radius: 0;
  background-color: transparent;
}
.header__buttons {
  display: flex;
  flex-wrap: wrap;
}

.header__buttons__question:hover {
  color: #ffffff;
  background-color: #e2509d;
  border-color: #ffffff;
}
.header__buttons__order {
  color: #ffffff;
  background-color: #e2509d;
  border: 1px solid #e2509d;
  border-radius: 0;
  margin: 0;
}
.header__buttons__order:hover {
  color: #e2509d;
  background-color: #ffffff;
}
/*header-mobile*/
.header-mobile {
  display: flex;
  width: 100%;
}
.header-mobile-time-adress {
  padding: 10px;
  line-height: 20px;
  display: flex;
  justify-content: center;
}
.header__adress-time-mobile {
  
  font-size: 14px;
  font-family: 'Roboto-Italic', Arial, sans-serif;
  color: #e2509d;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #000000;
}

.header__adress-map-mobile {
  
  
  margin-top: 15px;
  font-size: 14px;
  font-family: 'Roboto-Italic', Arial, sans-serif;
  ;
}
.header__adress-map-mobile a {
  color: #faa61a;
  cursor: pointer;
}
.header__map-marker {
  width: 33px;
  margin-left: 10px;
  cursor: pointer;
}
.header__map-marker img {
  width: 100%;
}

.header-mobile .fix-menu__item__select-language {
   padding-top: 9px;
}
.header-mobile .select-number:hover {
  cursor: pointer;
}
/*mobal-order*/
.modal-title__header-order {
  text-transform: uppercase;
  color: #ffffff;
}
.modal-header__header-order {
  background-color: #527da8;
  justify-content: center;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
} 
.modal-content__header-order {
  background-image: url('../img/bg-modal-header-order.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.modal-body-title__header-order {
  font-family: 'Raleway-SemiBold', Arial, sans-serif;
  color:  #515151;
  font-size: 24px;
  line-height: 28px;
  padding: 25px;
}

.fieldset-wrapper__header-order {
  display: flex;
  flex-direction: column;
}
.fieldset-wrapper__header-order input {
  margin-bottom: 20px;
  padding: 15px;
  font-size: 24px;
  line-height: 28px;
}
.fieldset-wrapper__header-order textarea {
  min-height: 165px;
  padding: 15px;
  font-size: 24px;
  line-height: 28px;
}

.selectbutton__header-order {
  font-family: 'Raleway-Regular', Arial, sans-serif;
  color:  #515151;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.form__btn-rose {
  background-color: #e6007e;
}
.form__btn__header-order {
  margin: 10px 0;
  margin-left: auto;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 18px;
}
.person-dan {
  font-family: 'Raleway', Arial, sans-serif;
  color:  #515151;
  font-size: 16px;
  font-weight: 500;
}
.person-dan__doc {
  text-decoration: underline;
  color: #515151;
}













.fix-menu__item__select-language {
  position: relative;
  width: 54px;
  background-color: #1088a6;
  border: none;
  padding-top: 13px;
  color: #ffffff;
}
.fix-menu__item__select-language select {
  background-color: #1088a6;
}
.header-mobile .fix-menu__item__select-language .icon-angle-down {
  top: 8px;
}
.fix-menu__item__select-language .icon-angle-down {
  position: absolute;
  top: 0;
  right: 0;
}
#fix-menu__item__select-language-mobile {
  position: relative;
  width: 73px;
  padding-right: 10px;
  border: none;
  color: #ffffff;
  height: 22px; 
  background-color: transparent;
  z-index: 2;
}
#fix-menu__item__select-language-mobile option {
  background-color: #1087A6; 
}
.fix-menu__select-button-number {
  position: absolute;
  right: 9px;
  color: #ffffff;
  z-index: 3;
  font-size: 16px;
}
select {
  outline:none;
}
.icon-phone__fix-menu {
  position: absolute;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  top: 6px;
  left: 2px;
  padding: 5px 0 5px 0;
}
.buttons {
  width: 51px; 
	background: #347aa5; 
	height: 60px; 
	line-height: 60px;
	border-bottom: 1px solid #dddddd;
}
.button__hamburger{
  background: none;
  line-height: 45px;
  padding: 5px 15px 0px 15px;
  color: #ffffff;
  border: 0;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  z-index: 4;
}
.button__cross{
  background: none;
  padding: 7px 15px 0px 15px;
  color: #ffffff;
  border: 0;
  font-size: 3em;
  line-height: 65px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  z-index: 3;
}
.menu-mobile {
  display: none;
  z-index: 1; 
  font-weight: bold; 
  font-size: 0.8em; 
  width: 100%; 
  background: #f1f1f1;  
  position: absolute; 
  text-align: center; 
  font-size: 20px;
  right: 0;
}
.menu-mobile-open {
  display: block;
}
.cd-main-nav-mobile {
  margin: 0; 
  padding: 0; 
  list-style: none;
}
.main-nav__item-mobile {
  display: block;   
  padding: 15px 0 15px 0; 
  border-bottom: #dddddd 1px solid;
}
.main-nav__item-mobile:hover{
  display: block;    
  cursor: pointer;
  background-color: #347aa5;
  padding: 15px 0 15px 0; 
  border-bottom: #dddddd 1px solid;
}
.main-nav__item-mobile:hover a {
  color: #ffffff;
}
.main-nav__item-mobile a { 
  text-decoration: none;  
  margin: 0px; 
  color: #666;
}
.main-nav__item-mobile a:hover {  
  color:  #ffffff; 
  text-decoration: none;
}
.menu-mobile a{
  text-decoration: none; 
  color: #666;
}
.menu-mobile a:hover{
  text-decoration: none; 
  color: #ffffff;
}
.glyphicon-home{
  color: white; 
  font-size: 1.5em; 
  margin-top: 5px; 
  margin: 0 auto;
}
buttons{
  display: inline-block; 
  font-size: 12px;
}






.header-mobile .form {
  margin: 0 auto;
}
.header-mobile .select-number {
  background-color: #faa61a;
  color: #ffffff;
  z-index: 2;
  flex-grow: 1;
  text-align: center;
}
.header-mobile .select-button-number {
  top: 14px;
  right: 24px;
  z-index: 3;
}
.form__order-mobile {
  border: none;
  background-color: #faa61a;
  color: #ffffff;
  padding: 10px 10px 10px 10px;
  text-align: center; 
  
}


/*main-menu*/
.main-menu {
  display: none;
  width: 100%;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 15px;
  color: #000000;
  background-color: #f4f3f3;
}
.main-menu__items, 
.submenu,
.subsubmenu__items { 
  list-style-type: none; 
}
.main-menu a {
  text-decoration: none;
}
.accordion {

  padding: 0;
  margin: 0 auto;
  position: relative;
}
.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 15px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  border-bottom: 1px solid #cccccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion .link:hover {
  background: #347aa5;
  color: #ffffff;
}

.main-menu__item:last-child .link {
   border-bottom: 0; 
}
.main-menu__item i {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-menu__item i.icon-angle-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}
.main-menu__item.open .link { 
  background-color: #347aa5;
  color: #ffffff; 

}
.main-menu__item.open i { 
  color: #e2509d; 
}
.main-menu__item.open .link i.icon-angle-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.submenu__item.open i.icon-angle-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*Submenu*/
.accordion {
  font-size: 14px;
  text-transform: uppercase;
 }
.submenu {
  display: none;
  font-size: 15px;
  padding: 0;
}
.submenu__item { 
  border-bottom: 1px solid #4b4a5e; 
}
.submenu__item a {
  color: #000000;
}
.submenu__link,
.submenu__link--open {
  position: relative;
  padding: 15px;
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 12px;
  padding-left: 42px;
  cursor: pointer;
  font-family: 'RobotoCondensed-Regular', Arial, sans-serif;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.submenu__link:hover,
.submenu__link--open:hover{
  background: #3e6b98;
  color: #ffffff;
}
.subsubmenu__items {
  display: none;
  padding: 0;
  text-transform: none;
}
.subsubmenu__item {
  padding: 15px;
  padding-left: 60px;
}
.subsubmenu__item a{
  display: block;
}
.subsubmenu__item:hover {
  background: #3e6b98;
}
.subsubmenu__item:hover a {
  color: #ffffff;
}

/*fix-menu*/
.fix-menu {
  display: none;
}
.fix-menu__items {
  display: flex;
}


















/*slider*/
.slider {
  display: flex;
  width: 100%;
  background: url("../img/bg-fon.jpg") no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  margin-bottom: 58px;
  justify-content: center;

}
.slider__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.planka-top {
  min-height: 25px;
  width: 100%;
  background-image: url("../img/planka-top-line.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  margin: 0 auto;
}
.planka-top-680 {
  display: none;
}
.slider__foto {
  width: 100%;
  /*background: url("../img/bg-slider.png") no-repeat;*/
}
.slider__foto img {
  width:100%;
}
.slider__description {
  width: 100%;
  padding: 4%;
  padding-left: 15px;
  padding-right: 15px;
}
h1 {
  margin: 5px 0 14px 0;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color: #e6007e;
  font-size: 42px;
  line-height: 42px;
}
.slider__name {
  font-family: 'Raleway-Regular', Arial, sans-serif;
  color: #527da8;
  font-size: 32px;
}
.slider__logo {
  position: relative;
  margin: 18px 0;
  font-family: 'Raleway-ExtraBold', Arial, sans-serif;
  color: #e6007e;
  font-size: 52px;
  line-height: 55px;
  background-color: rgba(255, 255, 255, 0.7);
}
.part-color {
  color: #333333;
}
.square{
  display: none;
  position: absolute;
  top: 0;
  left: -98px;
  background-color: rgba(255, 255, 255, 0.7);

}
.slider__methodologies {
  padding-bottom: 30px;
  font-family: 'Rpboto-Regular', Arial, sans-serif;
  color: #e6007e;
  font-size: 18px;
  line-height: 31px;
}
.slider__methodologies-part {
  font-family: 'Rpboto-Bold', Arial, sans-serif;
}
/*expert*/
.expert {
  display: none;
  padding: 58px 20px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  color:  #515151;
  font-size: 16px;
  line-height: 31px;
  border-top: 1px dashed #e6007e;
  border-bottom: 1px dashed #e6007e;
  text-align: justify;
}
.expert__h2 {
  margin: 0 0 47px 0;
  text-align: center;
  color: #e6007e;
}
.expert__p {
  margin-bottom: 54px;
}
/*specialization*/
.tabs {
  padding-top: 58px;
  font-size: 12px;
  width: 100%;
}
.tabs__h2 {
  font-size: 24px;
  margin: 0 0 62px 0;
  text-align: center;
  color: #e6007e;
}
.tabs__menu__items {
  display: flex;
  flex-direction: column;
  list-style: none; 
  text-align: left;
  color: #ffffff;
  padding: 0;
  margin: 0;
  line-height: 17px;
}
.tabs__menu__items li {
  margin: 10px 10px 10px 0;
  line-height: 27px;
}
.tabs__specialization__menu__item a {
  color: #ffffff;
  background-color: #347aa5;
  padding: 15px;
  cursor: pointer;
  border-top-right-radius: 30px;
}
.tabs__service__menu__item a {
  color: #ffffff;
  background-color: #7fc242;
  padding: 15px;
  cursor: pointer;
  border-top-right-radius: 30px;
}
.tabs__about-us__menu__item a {
  color: #000000;
  background-color: #BCBCC3;
  padding: 15px;
  cursor: pointer;
  border-top-right-radius: 30px;
}

.tabs__proect__menu__item a {
  color: #ffffff;
  background-color: #e6007e;
  padding: 15px;
  cursor: pointer;
  border-top-right-radius: 30px;
}

#tab2, #tab3, #tab4 {
  position: fixed; 
}
#tab2,
#tab3,
#tab4,
.tabs > div,
.tabs #tab2:target ~ div:nth-of-type(1),
.tabs #tab3:target ~ div:nth-of-type(1),
.tabs #tab4:target ~ div:nth-of-type(1)  {
  display: none; 
}
.tabs > div:nth-of-type(1),
.tabs #tab2:target ~ div:nth-of-type(2),
.tabs #tab3:target ~ div:nth-of-type(3),
.tabs #tab4:target ~ div:nth-of-type(4)  { 
  display: flex; 
}

/*таб1*/
.tabs__specialization {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  border: 1px solid #347aa5;
  border-top-width: 26px;
  padding: 18px 10px;
  justify-content: center;
}
.tabs__specialization__block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #347aa5;
 
  margin: 15px 15px 15px 10px;
}
.nth2n {
  margin: 15px 10px 15px 15px;
}
.tabs__specialization__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
h3 {
  width: 100%;
  margin-left: 24px;
  margin-bottom: 10px;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 26px;
  color: #e6007e;
  text-decoration: underline;
}
h3 a{
  color: #e6007e;
}
.tabs__specialization__item {
  list-style-type: none; /*Убираем маркеры у списка*/
  line-height: 29px;
}
.tabs__specialization__item:before {
  content: "\25b6 "; /*Добавляем в качестве маркера символы*/
  font-size: 18px;
}
.tabs__specialization__items {
  padding-left: 26px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #515151;
}
.tabs__specialization__items a {
  padding-left: 5px;
  color: #515151;
  text-decoration: underline;
}
.btn-more {
  margin-bottom: 18px;
  margin-top: auto;
}
.btn-more a {
  margin-left: 24px;
  padding: 5px 10px;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #515151;
  border: 1px solid #e6007e;
  text-decoration: underline;
}
.btn-more a:hover {
  background-color: #e6007e;
  color: #ffffff;
}
.tabs__specialization__block img {
  margin: auto;
}
.tabs__specialization__trangle-down {
  width: 0;
	height: 0;
	border-left: 161px solid transparent;
	border-right: 161px solid transparent;
  border-top: 4px solid #347aa5;
  position: absolute;
  bottom: -5px;
}

/*таб2*/
.tabs__service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  border: 1px solid #7fc242;
  border-top-width: 26px;
  padding: 18px 10px;
  justify-content: center;
}
.tabs__service__block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #7fc242;
  margin: 15px 15px 15px 10px;
}
.tabs__service__wrapper {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.tabs__service__item {
  padding-left: 26px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: #515151;
}
.tabs__service__item a {
  color: #515151;
}
.tabs__service__price {
  margin: 15px auto;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 24px;
  color: red;
  text-align: center;
}
.tabs__service__block img {
  width: 30%;
  margin: auto;
}
.tabs__service__trangle-down {
  width: 0;
	height: 0;
	border-left: 161px solid transparent;
	border-right: 161px solid transparent;
  border-top: 4px solid #7fc242;
  position: absolute;
  bottom: -5px;

}

/*таб3*/
.tabs__about-us {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  border: 1px solid #BCBCC3;
  border-top-width: 26px;
  padding: 18px 10px;
  justify-content: center;
}
.tabs__about-us__block {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #BCBCC3;
  margin: 15px 15px 15px 10px;
}
.tabs__about-us__wrapper {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.tabs__about-us__item {
  padding-left: 26px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #515151;
}
.tabs__about-us__item a {
  padding-left: 5px;
  color: #515151;
}
.tabs__about-us__price {
  margin: 15px auto;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 24px;
  color: red;
  text-align: center;
}
.tabs__about-us__block img {
  width: 30%;
  margin: auto;
}
.tabs__about-us__trangle-down {
  width: 0;
	height: 0;
	border-left: 161px solid transparent;
	border-right: 161px solid transparent;
  border-top: 4px solid #BCBCC3;
  position: absolute;
  bottom: -5px;

}

/*таб4*/
.tabs__proect {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  border: 1px solid #e6007e;
  border-top-width: 26px;
  padding: 18px 10px;
  justify-content: center;
}
.tabs__proect__block {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e6007e;
  margin: 15px 15px 15px 10px;
}

.tabs__proect__wrapper {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.tabs__proect__item {
  padding-left: 26px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #515151;
}
.tabs__proect__item a {
  padding-left: 5px;
  color: #515151;
}
.tabs__proect__price {
  margin: 15px auto;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 24px;
  color: red;
  text-align: center;
}
.tabs__proect__block img {
  width: 30%;
  margin: auto;
}
.tabs__proect__trangle-down {
  width: 0;
	height: 0;
	border-left: 161px solid transparent;
	border-right: 161px solid transparent;
  border-top: 4px solid #e6007e;
  position: absolute;
  bottom: -5px;
}

/*конец табов*/

.video__h2 {
  margin: 0;
  margin-top: 60px;
  padding: 46px 0 55px 0;
  font-family: 'Raleway-ExtraBold', Arial, sans-serif;
  font-size: 36px;
  text-align: center;
  color: #e6007e;
  border-top: 1px dashed #e6007e;
}

/*video*/
.video {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #f4f3f3;
  padding-top: 100px;
  margin-bottom: 56px;
  text-align: center;
}
.video a:hover {
  color: #e6007e;
}
.video__max {
  display: flex;
  width: 100%;
  padding: 3%;
  justify-content: center;
  align-items: center;
}
.video__min {
  display: flex;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 18px;
}
.video__items {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding:  3% 3%;
  margin: 0;
  list-style: none; 
}
.video__item-max img {
  width: 100%;
  overflow: hidden;
}
.video__item-min {
  display: flex;
  
  width: 100%;
  align-items: center;
}
.video__item-min img {
  flex-shrink: 2;
  width: 120px;
}
.video__item-min:nth-child(2) {
  margin: 15px 0;
}
.video__item-min p {
  width: 100%;
  min-height: 74px; 
  padding: 15px;
  margin-left: 15px;
  text-align: left;
  background-color: #e6e8ed;
}
.video__item-min a {
  width: 100%;
}
.view-more {
  margin: 41px;
  margin-left: auto;
  font-family: 'OpenSans-Bold', Arial, sans-serif;
  font-size: 18px;
}
.view-more:before {
  content: "\2192  ";
  font-size: 25px;
}
.about {
  display: flex;
  flex-wrap: wrap;
  line-height: 31px;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 58px;
  border-bottom: 1px dotted #e6007e;
}
.about__short {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about__h2 {
  margin: 0;
  padding: 0 0 40px 0;
  font-family: 'Raleway-ExtraBold', Arial, sans-serif;
  font-size: 36px;
  line-height: 38px;
  text-align: center;
  color: #e6007e;
  box-sizing: content-box; 
}
.about__short__we {
  margin: 15px 0 57px 0;
}
.about__short p {
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 16px;
}
.about__short img {
  text-align: center;
  width: 100%;
}
.about__short__info {
  margin: 43px 0;
}
.about__short__items {
  margin-left: auto;
}
.about__short__item {
  list-style-type: none; /*Убираем маркеры у списка*/
}
.about__short__item:before {
  content: "\2192  "; /*Добавляем в качестве маркера символы*/
  font-size: 25px;
}
.about__short__item a {
  border-bottom: 1px dotted #ff0000;
}
.about__short__item a:hover {
  color: #e6007e;
}
.about__employees {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about__employees__items {
  display: flex;
  flex-wrap: wrap;
  list-style: none; 
  padding: 0;
  margin: 0;
}
.about__employees__item {
  margin: 15px;
}
.about__employees__all {
  position: relative;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 16px;
  margin: 15px;
  border-bottom: 1px dotted #ff0000;
  align-self: flex-end;
}
.about__employees a:hover{
  color: #e6007e;
}
.mark, mark {
  position: absolute;
  left: -30px;
  top: 0;
  font-size: 25px;
  padding: 0; 
  background-color: transparent; 
}
/*advantages*/
.advantages {
  width: 100%;
 

}
.advantages__h2 {
  display: none;
  
}
.advantages__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f4f3f3;
  width: 100%;

}
.advantages__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
h4 {
  font-family: 'Raleway-ExtraBold', Arial, sans-serif;
  font-size: 24px;
  color: #e6007e;
  line-height: 50px;
}
.advantages__excellence {
  width: 100%;
  padding-left: 10px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 31px;
}
.advantages__items {
  padding: 0;
}
.advantages__item {
  list-style-type: none; /*Убираем маркеры у списка*/
  margin: 30px 0 30px 10px;
}
.advantages__excellence .advantages__item:before {
  content: "\00271A  "; /*Добавляем в качестве маркера символ плюс*/
  font-size: 18px;
  color: #e6007e;
}
.footer__list {
  display: none;
}

.advantages__noname {
  width: 100%;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 31px;
  padding: 85px 10px 10px 10px;
}
.advantages__important {
  width: 100%;
  padding: 10px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 31px;
}
.advantages__important__item {
  list-style-type: none; /*Убираем маркеры у списка*/
  margin: 30px 0 30px 10px;
}
.advantages__important__item:before {
  content: "\002731  "; /*Добавляем в качестве маркера символ снежинка*/
  font-size: 16px;
  color: #e6007e;
}
.planka-bottom {
  min-height: 38px;
  width: 100%;
  background-image: url("../img/planka-bottom-line.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  margin: 0 auto;
}
/*footer*/
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #347aa5;
}
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 10px;
  font-family: 'OpenSans-SemiBold', Arial, sans-serif;
  font-size: 15px;
  line-height: 18px;
}
.footer__list {
  width: 50%;
}
.footer__list__items {
  padding: 0;
}
.footer__list__item {
  list-style-type: none; /*Убираем маркеры у списка*/
}
.footer__list__item a:hover {
  color: #e6007e;
}
.footer__list__item:before {
  content: "\002756   "; /*Добавляем в качестве маркера символ снежинка*/
  font-size: 14px; /*U+2756  */
  color: #ffffff;
  text-align: center;
}
.footer__info {
  margin-left: auto;
  text-align: right;
  color: #ffffff;
  padding: 10px 0;
}
.footer__info a {
  color: #ffffff;
  text-decoration: underline;
}
.footer__info a:hover {
  color: #e6007e;
  text-decoration: underline;
}
.footer__tel {
  font-size: 23px;
  line-height: 45px;
  color: #faa61a;
}
.social-links {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: right;
}
.social-links a {
	width: 2rem;
  height: 2rem;
  margin: 3px;
	line-height: 2rem;
	display: inline-block;
	color: #039BAB;
	border-radius: 50%;
  text-align: center;
	font-size: 19px;
  transition: 0.2s;
  background-color: #ffffff;
}
.social-links a:hover {
	background-color: #e6007e;
	color: #ffffff;
}

/*call phone*/
.call-phone {
  position: fixed;
  cursor: pointer;
  width: 200px;
  height: 200px;
  top: 74%;
  left: 0;
  background-color: transparent;
  border: none;
}
.call-phone:focus {
  border: none;
  outline: none;
}
.call-phone__circle {
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  margin: 0;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #ffffff;
  border: 2px solid rgba(82,125,168,0.4);
  -webkit-animation: call-phone__circle-anim 1.2s infinite ease-in-out;
  -moz-animation: call-phone__circle-anim 1.2s infinite ease-in-out;
  -ms-animation: call-phone__circle-anim 1.2s infinite ease-in-out;
  -o-animation: call-phone__circle-anim 1.2s infinite ease-in-out;
  animation: call-phone__circle-anim 1.2s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: baseline;
}
@-moz-keyframes call-phone__circle-anim {
  0%{-moz-transform:rotate(0deg) scale(0.5) skew(1deg);
    opacity:.1;
    -moz-opacity:.1;
    -webkit-opacity:.1;
    -o-opacity:.1}
  30%{-moz-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.5;
    -moz-opacity:.5;
    -webkit-opacity:.5;
    -o-opacity:.5}
  100%{-moz-transform:rotate(0deg) scale(1) skew(1deg);
    opacity:.6;
    -moz-opacity:.6;
    -webkit-opacity:.6;-o-opacity:.1  }
}
@-webkit-keyframes call-phone__circle-anim{
  0%{-webkit-transform:rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity:.1  }
  30%{-webkit-transform:rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity:.5  }
  100%{-webkit-transform:rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity:.1  }
}
@-o-keyframes call-phone__circle-anim{
  0%{-o-transform:rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity:.1  }
  30%{-o-transform:rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity:.5  }
  100%{-o-transform:rotate(0deg) scale(1) skew(1deg);
    -o-opacity:.1  }
}
@keyframes call-phone__circle-anim{
  0%{transform:rotate(0deg) scale(0.5) skew(1deg);
    opacity:.1  }
  30%{transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.5  }
  100%{transform:rotate(0deg) scale(1) skew(1deg);
    opacity:.1  }
}
.call-phone__circle-fill {
  background-color: rgba(82,125,168,1);
  opacity: 0.75;
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 0.1;
  -webkit-animation: call-phone__circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: call-phone__circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: call-phone__circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: call-phone__circle-fill-anim 2.3s infinite ease-in-out;
  animation: call-phone__circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@-moz-keyframes call-phone__circle-fill-anim{
  0%{-moz-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
  50%{-moz-transform:rotate(0deg) -moz-scale(1) skew(1deg);
    opacity:.2  }
  100%{-moz-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
}
@-webkit-keyframes call-phone__circle-fill-anim{
  0%{-webkit-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
  50%{-webkit-transform:rotate(0deg) scale(1) skew(1deg);
    opacity:.2  }
  100%{-webkit-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
}
@-o-keyframes call-phone__circle-fill-anim{
  0%{-o-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
  50%{-o-transform:rotate(0deg) scale(1) skew(1deg);
    opacity:.2  }
  100%{-o-transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
}
@keyframes call-phone__circle-fill-anim{
  0%{transform:rotate(0deg) scale(0.7) skew(1deg);
    opacity:.2  }
  50%{transform:rotate(0deg) scale(1) skew(1deg);
    opacity:.2  }
  100%{transform:rotate(0deg) scale(0.7) skew(1deg);opacity:.2  }
}
.call-phone__circle-img {
  position: relative;
  background-color: rgba(82,125,168,0.1);
  width: 60px;
  height: 60px;
  top: 70px;
  left: 70px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: 0.7;
  -webkit-animation: call-phone__circle-img-anim 1s infinite ease-in-out;
  -moz-animation: call-phone__circle-img-anim 1s infinite ease-in-out;
  -ms-animation: call-phone__circle-img-anim 1s infinite ease-in-out;
  -o-animation: call-phone__circle-img-anim 1s infinite ease-in-out;
  animation: call-phone__circle-img-anim 1s infinite ease-in-out;
}
@keyframes call-phone__circle-img-anim{
  0%{transform:rotate(0deg) scale(1) skew(1deg)  }
  10%{transform:rotate(-25deg) scale(1) skew(1deg)  }
  20%{transform:rotate(25deg) scale(1) skew(1deg)  }
  30%{transform:rotate(-25deg) scale(1) skew(1deg)  }
  40%{transform:rotate(25deg) scale(1) skew(1deg)  }
  100%,50%{transform:rotate(0deg) scale(1) skew(1deg)  }
}
@-moz-keyframes call-phone__circle-img-anim{
  0%{transform:rotate(0deg) scale(1) skew(1deg)  }
  10%{-moz-transform:rotate(-25deg) scale(1) skew(1deg)  }
  20%{-moz-transform:rotate(25deg) scale(1) skew(1deg)  }
  30%{-moz-transform:rotate(-25deg) scale(1) skew(1deg)  }
  40%{-moz-transform:rotate(25deg) scale(1) skew(1deg)  }
  100%,50%{-moz-transform:rotate(0deg) scale(1) skew(1deg)  }
}
@-webkit-keyframes call-phone__circle-img-anim{
  0%{-webkit-transform:rotate(0deg) scale(1) skew(1deg)  }
  10%{-webkit-transform:rotate(-25deg) scale(1) skew(1deg)  }
  20%{-webkit-transform:rotate(25deg) scale(1) skew(1deg)  }
  30%{-webkit-transform:rotate(-25deg) scale(1) skew(1deg)  }
  40%{-webkit-transform:rotate(25deg) scale(1) skew(1deg)  }
  100%,50%{-webkit-transform:rotate(0deg) scale(1) skew(1deg)  }
}
@-o-keyframes call-phone__circle-img-anim{
  0%{-o-transform:rotate(0deg) scale(1) skew(1deg)  }
  10%{-o-transform:rotate(-25deg) scale(1) skew(1deg)  }
  20%{-o-transform:rotate(25deg) scale(1) skew(1deg)  }
  30%{-o-transform:rotate(-25deg) scale(1) skew(1deg)  }
  40%{-o-transform:rotate(25deg) scale(1) skew(1deg)  }
  100%,50%{-o-transform:rotate(0deg) scale(1) skew(1deg)  }
}
.icon-phone__call-phone {
  position: absolute;
  font-size: 39px;
  color: #527da8;
  border: 5px solid #527da8;
  border-radius: 50%;
  top: -2px;
  left: -2px;
  padding: 5px 0 5px 0;
}

/*Форма обратной связи*/
.form {

  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5;
}


.form__wrapper { 
  display: none;
  margin: 0 auto;
  width: 100%;
  background: #f4f3f3;
  -moz-background-size: 100%; /* Firefox 3.6+ */
  -webkit-background-size: 100%; /* Safari 3.1+ и Chrome 4.0+ */
  -o-background-size: 100%; /* Opera 9.6+ */
  background-size: 100%; /* Современные браузеры */
  color: #000000;
  justify-content: center;
  padding: 60px 10px 10px 10px;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 33px;
  text-align: center;
  
  margin: 10px auto;
  border: 1px solid #347aa5;
}
.form__title {
  width: 100%;
}
.select-number .form__order {
  display: block;
  bottom: 0;
  right: 0;
  padding-top: 0;
  padding-right: 12%;
  padding-bottom: 0;
  font-size: 19px;
  background-color: #ffffff;
  color: #000000;
}

.modal-content__small__call-phone {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.form__wrapper__number input {
  width: 74%;
  display: inline;
}
.form__wrapper__number .form__btn {
  display: inline;
  margin: 0;
  background-color: #e2509d;
  color: #ffffff;
  border: none;
}


.form__order {
  display: block;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 10px; 
  padding-right: 45px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  background-color: #e6007e;
  font-size: 17px;
  color: #ffffff;
}
form {
  padding: 25px;
}

.fix-form input{
  height: 50px;
  border: none;
  border-bottom: 1px solid #347aa5;
  text-align: left;
  font-size: 18px;
  display: inline-block ;
  width: auto;
  font-style: italic;
  background-color: #f4f3f3;
}
button{
  cursor: pointer;

}
.form__btn__fix-form {
  font-size: 20px;
  border: 2px solid #67bc77;
  padding: 10px;
  background-color: #ffffff;
  margin-top: 40px;
  margin-bottom: 25px;
}
input,
textarea,
#button:active, 
#button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}

.fix-form i.icon-angle-down {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 26px;
}

.fix-form i.icon-angle-down {
  -webkit-transform: rotate(180eg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fix-form.open .form__order i.icon-angle-down {
  top: 8px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}


/*Страница service*/
/*All-on-4*/
.service__nav {
  width: 100%;
  justify-content: center;
}
.service__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.service__nav__items {
  padding: 45px 0;
}
.service__nav li {
  padding: 0 5px;
}
.service__nav li:first-child {
  padding-left: 0;
}
.service__nav li:first-child a{
  text-decoration: underline;
}
.service__nav__submenu li:hover a {
  text-decoration: underline;
}
.service__nav>li:hover a{
  text-decoration: underline;
}
.service__nav a {
  color: #000000;
}




.service__nav-current{
  position: relative;
}
.service__nav-current>a{

  text-decoration: underline;
}

.service__nav-current:hover div {
  display: flex;
}
.service__nav .service__nav-current {
  display: flex;
  cursor: pointer;
}
.service__nav__submenu-current a{
  text-decoration: none;
}
.service__nav-current:hover .service__nav__submenu-current {
  display: none;
}
.service__nav__submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 138px;
  max-width: 300px;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
  }
.service__nav__submenu ul {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.service__nav__submenu li:first-child a {
  text-decoration: none;
}
.service__nav__submenu li:first-child:hover a{
  text-decoration: underline;
}

.service__nav .service__nav-current::before,
.service__nav__submenu li::before {
  content: ">>";
  padding-right: 5px;

}

.service__nav__submenu li{
  padding: 0;
}

.service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.service__content {
  position: relative;
  width: 100%;
  padding: 15px;
  margin-bottom: auto;
  text-align: justify;
  justify-content: center;
  font-size: 15px;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  color: #515151;
}

.service__content__h2 {
  margin-bottom: 18px;
}
.service__img-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 30px;
  margin-right: 20px;
  background-color: #f4f3f3;
  text-align: center;
}
.service__img-wrapper img {
  max-width: 245px;
}
.service__content__main-description {
  padding: 10px;
}
.service__content p {

  margin-top: 50px;
  margin-bottom: 50px;
}
.service__description__note {
  display: flex;
  padding: 24px 12px;
  background-color: #3e6b98;
  color: #ffffff;
}
.note__item {
  display: none;
}

.service__container-nav {

  font-size: 14px;
  text-align: center;

}
.service__container-nav h3 {
  margin: 0;
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
  background-color: #f3f3f3;
}
.container-nav__items {
  list-style: none;
  padding: 5px;
  background-color: #f3f3f3;
  margin: 0;
}
.container-nav__item {
  margin-bottom: 10px;
}
.container-nav__item a{
  color: #515151;
}
.container-nav__item a:hover{
  color: #007bff;
}
.service__description {
  width: 100%;
  padding: 10px;
}
.service__description h2 {
  padding-top: 50px;
  margin-top: -50px;
  font-family: 'Raleway-Bold';
  color:  #e6007e;
  font-size: 39px;
  font-weight: 600;
  line-height: 54px;
}
.service__video {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.service__video__pic {
  width: 100%;
}
.service__video__pic img {
  width: 100%;
}
.service__video__description {
  width: 100%;
}

.service__video__description p {
  margin-top: 10px;
}
.service__description__table {
  margin-bottom: 50px;
  font-size: 14px;
  width: 100%;
  background-color: #c7d1e0;
}

.service__description__table h3 {
  text-transform: uppercase;
  font-size: 18px;
}
.list {
  width: 100%;
  border: 1px solid #DCDBDB;
}
.service__description__table h3 {
  margin: 0;
  padding: 10px;
  text-align: center;

  background-color: #3e6b98;
  color: #ffffff;
  text-decoration: none;
}
.service__description__table ul {
  margin: 0;
  padding: 27px;
}
.service__pic {
  width: 100%;
}
.service__pic img {
  width: 100%;
}

.list li {
  list-style-type: none;
}
.list li:before {
  content: "- "; /*Добавляем в качестве маркера символ плюс*/
  font-size: 18px;
}
.service__description h4 {
  text-transform: uppercase;
  color: grey;
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*табы*/

.service__description .tabs {
  width: 100%;
  padding-top: 0; 
  margin-bottom: 50px;
  font-size: 14px;
}
.tabs__stages__items {


  text-align: left;
  color: #ffffff;
  padding: 0;
  margin: 0;
  line-height: 17px;
  counter-reset: myCounter;
}
.tabs__stages__item {
  line-height: 27px;
  list-style: none; 
}


.tabs__stages__item a:before {
  counter-increment: myCounter;
  content:counter(myCounter);
  color: #2980B9;
  background: #ffffff;
  display: inline-block;
  text-align: center;
  margin: 5px;
  margin-right: 9px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.tabs__stages__item a {
  display: block;
  color: #000000;
  background-color: #C2C2C2;
  border: 1px solid #ffffff;
  padding: 5px;
  cursor: pointer;
  border-top-left-radius: 30px;
}

.tabs__stages__item-active a{
 background-color: #ffffff;
 border: 1px solid #C2C2C2;
 border-bottom: none;
}
.tabs__stages__item-active a:before {
  color: #ffffff;
  background: #2980B9;
}
.tabs__stages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #C2C2C2;
  border-top: none;
}
.tabs__stages p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.tabs__stages__block {
  width: 100%;
}
.tabs__stages__img {
  width: 100%;
  text-align: center;
}
.gallery-btn {
  margin: 52px auto;
  border: none;
  color: #ffffff;
  background-color: #e6007e;
}
.gallery-btn:hover {
  cursor: pointer;
  background-color: #E863AD;
}

.service__sidebar {
  width: 100%;
  padding: 15px;
}
.service__sidebar .open {
  display: block;
}

.current-element:before {
  content: ">>";
  padding-right: 5px;
}
.block-on-off__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.block-on-off__wrapper h3 {
  width: 100%;
  margin: 0;
  padding: 2%;
  padding-left: 92px;
  padding-right: 44px;
  position: relative;
  font-family: 'Roboto-Bold', Arial, sans-serif;
  background: #347aa5;
  color:  #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  text-transform: uppercase;
  border: 1px solid #ffffff;
}
.service__price__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 2px;
  background-color: #f4f3f3;
}
.service__price__table td{
  border-bottom: 1px solid #b3b3b3;
  border-left: 1px solid #b3b3b3;
  padding: 5px;
}
.service__price__table td:first-child{
  border-left: none;
}
.minus {
  background: #ffffff;
  border-radius: 3px;
  height: 28px;
  margin: -14px 0 0;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 28px;
  z-index: 2;
}
.minus:after{
  content: "";
  position: absolute;
  width: 16px;
  height: 4px;
  margin: -2px 0 0;
  left: 6px;
  right: 6px;
  top: 50%;
  background: #347aa5;
}
.plus {
  display: none;
  background: #ffffff;
  border-radius: 3px;
  height: 28px;
  margin: -14px 0 0;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 28px;
  z-index: 2;
}
.plus:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  margin: 0 0 0 -2px;
  top: 6px;
  bottom: 6px;
  left: 50%;
  background: #049198;
}
.plus:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 4px;
  margin: -2px 0 0;
  left: 6px;
  right: 6px;
  top: 50%;
  background: #049198;
}
.plus-open {
  display: block;
}
.service__price__table td:last-child {
  border-right: medium none;
  white-space: nowrap;
  text-align: right;
}
del.cross {
  display:inline-block; /* запрещает перенос текста на следующую строку */
  text-decoration:none;
  position:relative;
}
.del-cross {
  display:block;
  position:relative;
  overflow:hidden; /* запрещает обтекать другие блоки */
}
del.cross:before,
.del-cross:before {
  content:'';
  position:absolute;
  display:block;
  width:auto;
  height:auto;
  left:0;
  top:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0) url(../img/cross.svg) no-repeat;
  background-size:100% 100%; /* растягивает фон на всю ширину и высоту блока */
}
.currency {
  text-align: right;
}
.service__question {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 58px;
  padding: 15px;
  justify-content: center;
  background-color: #1088a6;
}
.service__question__doctor {
  display: flex;

}
.doctor {
  width: 37%;
}
.doctor img {
  width: 100%;
}


.doctor__about {
  padding: 0 10px;
  color: #ffffff;
}
.doctor__about h2 {
  font-family: 'Roboto-Regular', Arial, sans-serif;
  margin: 0 0 10px 0;
  font-size: 36px;
  line-height: 54px;
}

.doctor__about strong {
  font-family: 'Roboto-Bold', Arial, sans-serif;
  font-size: 19px;
  line-height: 54px;
}
.doctor__about p {
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
}
.service__specialization {
  margin-top: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.service__experience {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}
.service__question__form {
  background-color: #ffffff;
  color: #515151;
  padding: 20px; 
}
.service__question__form h2 {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 30px;
  line-height: 30px;
  color: #e6007e;
  text-transform: uppercase;
}
.service__question__form p {
  font-family: 'Roboto-Italic', Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 31px;
}
.service__question__form form {
  padding: 0;
}
.fieldset-wrapper__service__question {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.fieldset-wrapper__service__question-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.service__question__form input {
  margin: 15px 5px;
  padding: 12px;
  width: 45%;
  font-size: 16px;
}
.fieldset-wrapper__service__question-row textarea {
  width: 100%;
  margin: 15px 5px;
  padding: 12px;
  height: 122px;
  max-height: 275px;
  min-height: 50px;
  font-size: 16px;
}
.fieldset-wrapper__service__question-row input[type="email"] {
  width: 100%;
}
.send-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}
.send-wrapper p {
  font-size: 18px;
  line-height: 25px;
  margin: 0;
}
.send-wrapper span {
  text-decoration: underline;
  color: #e6007e;
  font-family: 'Roboto-BoldItalic', Arial, sans-serif;
}

.form__btn-sidebar {
  margin: 10px 0;
  margin-left: auto;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px;
  font-family: 'Roboto-Bold', Arial, sans-serif;
  font-size: 16px;
}
.form__btn-yellow {
  background-color: #faa61a;
}
.form__btn-yellow:hover {
  background-color: #F1C476;
}
.form__btn-cons {
  margin-right: 5px;
}
.service__discounts {
  background-color: #f4f3f3;
  margin: 62px 0;
  padding: 2px;
}
.service__discounts__title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #527da8;
  color: #ffffff;
}
.discount__element {
  padding: 10px 15px;
  font-size: 48px;
  line-height: 55px;
  font-family: 'Raleway-Bold', Arial, sans-serif;
}
.service__discounts__title h2 {
  margin: 0;
  padding: 10px 15px;
  text-align: center;
  font-size: 21px;
  font-family: 'Roboto-Bold', Arial, sans-serif;
  text-transform: uppercase;
}

/*discount__baner*/
.service__discounts a:hover {
  text-decoration: none;
}
.discount__baner {
  border-bottom: 2px dotted #527da8;
  padding: 12px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.discount__baner:first-child {
  border-top: 2px dotted #527da8;
}
.discount__baner__title {
  width: 100%;
  align-self: center;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color:  #515151;
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 8px;
}
.discount__baner__price {
  width: 50%;
  color: #ffffff;
  font-family: 'Roboto-Bold', Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  padding: 5px;
}
.discount__baner:hover .discount__baner__price-old {
  cursor: pointer;
  background-color: #5F97B9;

}
.discount__baner:hover .discount__baner__price-new {
  cursor: pointer;
  background-color: #E863AD;

}
.discount__baner:hover .discount__baner__price-old:before  {
  border-left: 17px solid #5F97B9;
}
.discount__baner__wrapper--part {
  width: 50%;
}
.discount__baner__price span{
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.discount__baner__price-new {
  position: relative;
  background-color: #e2509d;
}
.discount__baner__price-new:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 17px solid white;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.discount__baner__price-old {
  position: relative;
  background-color: #347aa5;
}
.discount__baner__price-old:before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 17px solid #347aa5;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  z-index: 2;
  
}
.discount__baner__wrapper {
  display: flex;
  background-image: url('../img/bg-akcii.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.discount__baner__wrapper--part {
  font-family: 'Roboto-Regular', Arial, sans-serif;
  color:  #327eab;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
  font-style: italic;
  padding: 5px;
}
.discount__baner__wrapper--discount {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
}
.discount__baner__wrapper--number {
  position: relative;
  font-style: normal;
  font-size: 46px;
  font-weight: 700;
  text-align: left;
}
.discount__baner__wrapper--number:after {
  content: "%";
  font-size: 23px;
  position: absolute;
  top: 7px;
  right: -18px;

}
.discount__baner__procent {
  width: 46px;
  height: 46px;
  margin: 0 auto;
}
.discount__baner__procent img {
  width: 100%;
}
.discount__baner__get-discount {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color:  #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  font-style: normal;
}
.discount__baner__get-discount:before {
  content: ">";
  padding: 4px;
}
.discount__baner__wrapper--part a {
  display: block;
  margin-top: 14px;
  padding: 8px 5px;
  background-color: #e6007e;
}
.discount__baner__wrapper--part a:hover {
  text-decoration: none;
  background-color: #e2509d;
}












.service__sidebar__form {
  border: 1px solid #000000;
  padding: 10px;
}
.service__sidebar__form h2 {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  color: #e6007e;
  text-transform: uppercase;
}
.service__sidebar__form form {
  padding: 0;
}
.service__sidebar__form p {
  font-family: 'Roboto-Light', Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.service__sidebar__form [placeholder] {
  width: 100%;
  margin-top: 15px;
  font-family: 'Roboto-Italic', Arial, sans-serif;
  font-size: 13px;
  /*color: #E5DBDB;*/
}
.send-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
  cursor: pointer;
}
.fileform { 
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  padding: 2px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 230px;
}

.selectbutton__sidebar { 
  color: #515151;
  font-size: 16px;
  text-decoration: underline;
  line-height: 20px;
  overflow: hidden;
  padding: 2px 6px;
  vertical-align: middle;
  cursor: pointer;
}

.fileform #upload{
  position:absolute; 
  top:0; 
  left:0; 
  width:100%; 
  -moz-opacity: 0; 
  filter: alpha(opacity=0); 
  opacity: 0; 
  font-size: 150px; 
  height: 30px; 
  z-index:20;
  cursor: pointer;
}

.fileform #fileformlabel { 
  font-size: 12px;
  line-height: 22px;
  overflow: hidden;
  padding: 2px;
  text-align: left;
  vertical-align: middle;
  width:160px;
  word-wrap: break-word;
  font-style: italic;
  }
  .service__sidebar__form .form__btn {
    margin-left: 0;
    width: 100%;
  }

  .close {
    display: none;
  }
  .open {
    display: block;
  }
  .fix-form {
    display: none;
  }
  .call-note {
    display: flex;
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
  }
  .call-note img {
    padding-right: 10px;
  }
  .call-note p {
    margin: 0 auto;
    text-transform: uppercase;
    
  }
  .call-note__call {
    display: flex;
    width: 50%;
    padding: 10px;
    color: #ffffff;
    background-color: #99cc00;
  }
  .call-note__note {
    display: flex;
    width: 50%;
    padding: 10px;
    color: #ffffff;
    background-color: #347aa5;
  }
/*about*/
.service__nav .service__nav-current::before,
.service__nav__submenu li::before {
  content: ">>";
  padding-right: 5px;

}
.service__nav .about__nav-current .about__nav__submenu a{
  text-decoration: none;
}
.service__nav .about__nav-current .about__nav__submenu a:hover{
  text-decoration: underline;
}
.about__nav-current{
  position: relative;
  cursor: pointer;
}
.about__nav-current:hover div {
  display: flex;
}
.about__nav__submenu {
  left: 69px;
}
.about__nav__submenu li:first-child a {
   text-decoration: none;

}

.about_video-wrapper {
  width: 100%;
  padding: 5px;
}
.about_video-wrapper img {
  width: 100%;
  padding: 5px;
}
.about_img-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px;
}
.about_img-wrapper img {
  padding: 5px;
}
.certificate__items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-bottom: 50px;
  justify-content: center;
}
.certificate__item {
  max-width: 100%;
  padding: 5px;
   display: flex;
  flex-direction: column;
}
.certificate__item a {
 margin-top: auto;  
 margin-bottom: auto;
}
.certificate__title {
  padding: 10%;
  text-align: center;
}
.service__content .certificate__title{
 margin: 0; 
}
.certificate__item img {
  
  width: 100%;
}
h2.subtitle__h2 {
  font-size: 25px;
}
p.block-on-off {
  padding-top: 32px;
  padding-bottom: 21px;
  padding-left: 46px;
  padding-right: 11%;
  background-color: #f4f3f3;
  color:  #515151;
  font-size: 18px;
}
.triangle {
  border: 17px solid transparent;
  border-left: 23px solid #ffffff;
  position: absolute;
  width: 50px;
  height: 0;
  top: 19%;
  left: 29px;
}
.triangle-right {
  transform: rotate(90deg);
  top: 50%;
}
.block-on-off__wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gallery-carusel,
.block-on-off__wrapper h2 {
  text-align: center;
  font-family: 'Raleway-Bold';
  color: #e6007e;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: -50px;
  padding-top: 50px;
}
/*for aside fix*/
.sticky {
  position: fixed;
  z-index: 2;
  top: -43px;
}
.stop {
  position: relative;
  z-index: 2;
}

.mini-navigation__title {
  padding-bottom: 40px;
  margin-bottom: 18px;
}
.mini-navigation .current-element {
  background-color: #347aa5;
  color: #ffffff;
}
.mini-navigation a{
  color: #515151;
}

.for-dots {
  position: relative;
}
.gallery-carusel {
  margin-bottom: 50px;
}
.gallery__slider {
  width: 100%;
}
.galery__items {
  display: flex;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.gallery-item {
  margin: 10px;
}
.gallery__slider {
  width: 320px;
  flex-wrap: wrap;
}
.gallery-item img {
  width: 80px;
}
.slick-dots li button:before {
  color: #ffffff;
  border: 1px solid #717171;
  border-radius: 50%;
  font-size: 11px;
}
.slick-dots li.slick-active button:before {
  color: #717171;
}

/*before-after */
.before-after__nav__submenu {
  left: 96px;
}
.filter {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #f4f3f3;
  padding-top: 38px;
  padding-bottom: 43px;
  margin-bottom: 61px;
}
#filter a.active {
  background-color: #e6007e;
  color: #ffffff;
}
#filter a.active:hover {
  background-color: #E863AD;
}
#container {
  width: 100%;
}
#filter a {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: 8px 20px;
  margin: 0px 3px 6px;
  text-align: center;

  text-decoration: none;
  color: #ffffff;
  background-color: #347aa5;
  white-space: nowrap;
  z-index: 0;
  transition-duration: 0.3s;
}
#filter a:hover {
   background-color: #5F97B9;
}
.filter a::after {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
  margin: 0px;
  left: 0px;
  bottom: 0px;
  
}
.before-after__items {
  width: 100%;
  list-style: none;
  padding: 0;
}
.before-after__item {
  margin-bottom: 30px;
}
.before-after__item:last-child {
  margin-bottom: 0;
}
.before-after__h3 {
  width: auto;
  margin: 0 auto;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color:  #717171;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color:  #f4f3f3;
}

.before-after__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 17px;
  background-color:  #dfe6ee;
}
.before-after__foto {
  margin-right: 3px;
  max-width: 49%;
}

.before-after__foto span {
  display: block;
  padding-bottom: 10px;
  text-align: center;
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color:  #717272;
  font-size: 21px;
  font-weight: 700;
}
.before-after__foto img {
  width: 100%;
}

.before-after__description {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.before-after__description p {
  margin: 0;
  font-family: 'Roboto-Regular', Arial, sans-serif;;
  color:  #717171;
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
}
.before-after__description-btn {
  margin: 0;
  display: inline-block;
  color: #ffffff;
  background-color: #e6007e;
  border: 1px solid #e6007e;
  box-shadow: none;
  border-radius: 0;
}


.before-after__description-btn:active {
  transform: translate(0px, 5px);
  -webkit-transform: translate(0px, 5px);
  box-shadow: 0px 1px 0px 0px;
}

.before-after__description-btn:hover {
   background-color: #E863AD;
   border-color: #CE569A;
}
.before-after__description-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(241, 115, 223, 0.93);
}

.btn-primary:not([disabled]):not(.disabled).active, 
.btn-primary:not([disabled]):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle


.before-after__description-btn:active {
  background-color: #E863AD;
  border-color: #CE569A;
  box-shadow: 0 0 0 0.2rem rgba(241, 115, 223, 0.93);
}
.hr-left {
  overflow: hidden;
  text-align: right;
  margin-top: auto;
}
.hr-left:before {
  content: "";
  /* делаем линию строчно-блочной */
  display: inline-block;
    /* выравниваем вертикально по середине */
  vertical-align: middle;
  /* не позволяем ширине превысить 100% (будет добавлен бордюр) */
  box-sizing: border-box;
  /* установка ширины в 100% делает линию равной ширине тега заголовка благодаря этому линия заполнит все свободное пространство слева и справа от текста  */
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #717171 50%, #dfe6ee 0);
  background-size: 5px 100%;
  /* добавляем к линии левый и правый бордюр цветом основного фона заголовка благодаря этому создается нужный отступ между линиями и текстом  */
  border-width: 0 10px;
}
.hr-left:before {
  /* смещаем левую линию влево отрицательным отступом, равным 100% ширины благодаря этому линия встает слева от текста  */
  margin-left: -100%;
}
/*popups*/
.popups {
  display: flex!important;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  background-color: #ffffff;

}
.popups__title {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color:  #e6007e;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.popups__wrapper {
  position: relative;
}
.popups__img {
  display: flex;
  flex-direction: column;
 align-items: center;
}
.popup__wrapper__img-row {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
  max-width: 548px;
}
.popup__wrapper__img {
  max-width: 300px;
}
.popup__wrapper__img img {
  width: 100%;
}
.popup__description {
  padding: 10px;
  text-align: justify;
}
.popup__description__title {
 margin: 0;
 padding-top: 15px;
 font-family: 'Raleway-Regular', Arial, sans-serif;
 color:  #e6007e;
 font-size: 18px;
 line-height: 21px;
 font-weight: 600;
 text-align: left;
 text-decoration: none;
}
.popup__btn {
  width: auto;
}
.for-dots .slick-dots {
  top: -38px;
}
.single-item .slick-dots {
  bottom: 0;
}
.single-item .slick-prev:before,
.single-item .slick-next:before {
  color: #347aa5;
}
.single-item .slick-prev {
  left: 30px;
  z-index: 3;
}
.single-item .slick-next {
  right: 30px;
  z-index: 3;
}
.single-item .slick-prev:before,
 .single-item .slick-next:before {
  font-size: 42px;
}
.btn-close-popup {
  position: absolute;
  cursor: pointer;
  font-size: 30px;
  right: 0;
}

/*POPUP*/
.btn-close-modal {
  width: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  position: absolute;
  right: 0;
  top: 0;
}
.btn__header-order {
  color: transparent;
  margin: 0;
  margin-top: 10px;
   width: 49px;
   padding: 16px;
   background-color: transparent;
   border-color: transparent; 
   position: absolute;
   right: 1rem;
   top: 2px;

}
.btn-close-modal {
  font-size: 1.5rem;
}
.btn__header-order:hover {
  color: transparent; 
  background-color: #B0B9C2;
  border-color: #B0B9C2;
} 

.btn__header-order:active {
  color: transparent; 
  background-color: #727b84;
  border-color: #6c757d;
}
.btn-close-modal:before, 
.btn-close-modal:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #ffffff;
}
.btn-close-modal:before {
  transform: rotate(45deg);
}
.btn-close-modal:after {
  transform: rotate(-45deg);
}
/*PRICES*/

.block-on-off__wrapper__prices h2 {
  padding-top: 15px;
}
.price-list__print {
  margin-left: auto;
  display: flex;
  text-align: right;
  cursor: pointer;
}
.price-list__print a {
  color: #515151;
  text-decoration: underline;
}
.price-list__print img {
  width: 20px;
  margin-right: 5px;
  margin-left: 5px;
}
.print-title {
  text-decoration: underline;
}

.block-on-off__wrapper p {
  margin: 0;
  
}

.lowercase {
  text-transform: lowercase;
}
/*discounts*/
.discounts-logo {
  position: absolute;
  width: 50px;
  height: 0;
  top: 12px;
  left: 18px;
  transform: rotate(0deg);
}
.block-on-off__discounts h3 {
  background-color: #e2509d;
}
.minus-rose:after {
  background-color: #e6007e;
}
.plus:before {
  background-color: #e6007e;
}
.plus:after {
  background-color: #e6007e;
}
/*infocentr*/
.infocentr__wrapper {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #347aa5;
  padding-top: 10px;
  padding-bottom: 10px;
}
.infocentr__new {
  width: 100%;
  padding: 10px;
  padding-bottom: 64px;
  padding-top: 19px;
}

.infocentr__new__wrapper {
  background-color: #f4f3f3;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

.infocentr__new__img img {
  width: 100%;
}
.infocentr__new__title:hover {
  text-decoration: underline;
  color: #e6007e;
  cursor: pointer;
}

.infocentr__new__title>h4 {
  font-family: 'Raleway-Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}
.infocentr__new__text {
  margin-top: auto;
}
.infocentr__new__text:hover {
  text-decoration: underline;

  cursor: pointer;
}
.infocentr__new__text p {
  font-family: 'Roboto-Regular', Arial, sans-serif;
  color:  #414141;
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
  text-align: left;
}
.infocentr__new__text a {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: 'Raleway-Regular', Arial, sans-serif;
  color:  #faa61a;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-decoration: underline;
  text-align: right;
}
.infocentr__new__text a:hover {
  color:  #C68214;
}
/*call-phone*/
.btn__call-phone {
  color: transparent;
  margin: 0;
  padding: 16px;
  background-color: transparent;
  border-color: transparent;
  position: absolute;
  right: -14px;
  top: -19px;
  border-radius: 10px;
  padding: 22px;
  background-color: #347aa5;
  border-radius: 50%;
}
.btn__call-phone:hover {
  color: transparent; 
  background-color: #B0B9C2;
  border-color: #B0B9C2;
} 

.btn__call-phone:active {
  color: transparent; 
  background-color: #727b84;
  border-color: #6c757d;
}

.btn-close-modal__call-phone {
  right: -2px;
  top: 6px;
}

.btn-close-modal__call-phone::before, 
.btn-close-modal__call-phone::after {
  background-color: #ffffff;
}
.modal-content__call-phone {
  border: 20px solid #347aa5;
  background-color: #347aa5;
  border-radius: 20px;
}

.modal-body__call-phone {
  border-radius: 20px;
  padding: 30px;
  background-color: #f4f3f3;
  font-family: 'Raleway-Regular', Arial, sans-serif;
  color:  #515151;
  font-size: 18px;
}
.form__call-phone__wrapper {
  margin-top: 25px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #e2509d;
}
.form__call-phone {
  padding: 20px 0 20px 0;
}

.title__call-phone {
  font-size: 24px;
  font-family: 'Raleway-Regular', Arial, sans-serif;
  font-weight: 600;
}
.bold__call-phone {
  font-family: 'Raleway-SemiBold', Arial, sans-serif;
  font-weight: 600;
}
.fieldset-wrapper____call-phone input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer__call-phone {
  font-size: 11px;
}
.form__btn__call-phone {
  font-family: 'Raleway-SemiBold', Arial, sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 45px;
}
.hr-center {
  overflow: hidden;
  text-align: center;
  display: block;
}
.hr-center:before, .hr-center:after {
  content: "";
  /* делаем линию строчно-блочной */
  display: inline-block;
    /* выравниваем вертикально по середине */
  vertical-align: middle;
  /* не позволяем ширине превысить 100% (будет добавлен бордюр) */
  box-sizing: border-box;
  /* установка ширины в 100% делает линию равной ширине тега заголовка благодаря этому линия заполнит все свободное пространство слева и справа от текста  */
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #e2509d 50%, #dfe6ee 0);
  background-size: 2px 100%;
  /* добавляем к линии левый и правый бордюр цветом основного фона заголовка благодаря этому создается нужный отступ между линиями и текстом  */
  border-width: 0 10px;
}
.hr-center:before {
  /* смещаем левую линию влево отрицательным отступом, равным 100% ширины благодаря этому линия встает слева от текста  */
  margin-left: -100%;
}
.hr-center:after {
  /* смещаем правую линию вправо отрицательным отступом, равным 100% ширины
  ** благодаря этому линия встает справа от текста
  */
  margin-right: -100%;
}
.info__call-phone {
  position: absolute;
  bottom: -16px;
  left: -13px;
  width: 46px;
  height: 46px;
  padding-left: 8px;
  background-color: #ffffff;
  border: 10px solid #347aa5;
  border-radius: 50%;
}
/*Страница contacts*/
.contacts__content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 10px;
  margin-bottom: auto;
  text-align: justify;
  justify-content: center;
  font-size: 15px;
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  color: #515151;
}
.contacts__h2 {
  font-family: 'Raleway-Bold', Arial, sans-serif;
  color: #e6007e;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 52px;
}
.contacts__about {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contacts__about__item {
  width: 100%;
}
.contacts__about__item p {
  margin-top: 42px;
}
.contacts__about__item__adress {
  margin: 10px auto;
}
.map {
  width: 100%;
  height: 386px;

}
.route {
  width: 100%;
  height: 386px;

}
/*
.overlay {
	background:transparent; 
	position:relative; 
	width:100%;
	height:550px;
	top:550px;
	margin-top:-550px;
}*/
.contacts__title {
  color: #347aa5;
  font-size: 30px;
}
.contacts__location .contacts__h2,
.contacts__route .contacts__h2 {
  margin-top: 52px;
}
.contacts__info {
  font-family: 'OpenSans-Regular', Arial, sans-serif;
  color:  #515151;
  font-size: 16px;
  line-height: 31px;
  padding-top: 52px;
  padding-bottom: 42px;
}













  @media screen and (min-width: 680px) {
    .nav__wrapper-320 {
      display: block;
      width: 100%; 
    }
    .header__wrapper {
      display: flex;
    }
    .nav__wrapper {
      position: fixed;
    }
    header {
      order: 0;
      padding: 60px 0 40px; 
    }
    .header-mobile {
      display: none;
    }
    .select-number {
      margin-left: auto;
    }
/*main-menu*/
    .main-menu {
      display: block;
    }
    .planka-top-320 {
      display: none;
    }
    .planka-top-680 {
      display: block;
    }
    .expert {
      display: block;
    }
    .tabs__specialization__wrapper {
      width: 60%;
    }
    .tabs__specialization__block img {
      width: 30%;
    }


    .tabs__specialization__items {
      padding-left: 47px;
    }

    .form__wrapper { 
      min-width: 360px;
    }
    .advantages__h2 {
      display: block;
      margin: 0;
      padding: 55px 10px;
      font-family: 'Raleway-ExtraBold', Arial, sans-serif;
      font-size: 36px;
      text-align: center;
      color: #E6007D;
    }
    .footer__list {
      display: block;
    }
    .footer__list__item a {
      color: #ffffff;
    }
    .footer__info {
      margin: 0 auto;
    }
    /*about*/
    .certificate__item {
      max-width: 50%;
    }
    .gallery__slider {
      width: 679px;
      flex-wrap: wrap;
    }
    .gallery-item img {
      width: 120px;
    }
    .modal-dialog {
      max-width: 681px;
      margin: 30px auto;
  }

  }






@media screen and (min-width: 768px) {
  /*header*/
  header {

    justify-content: space-between;
  }
  .logo {
    width: 24%;
    flex-direction: column;
  }
  .header__wrapper {
    width: 70%;
  }
  .header__telephone {
    width: 53%;
    padding: 0 3% 3% 3%;
}
  .header__metro {
    padding-left: 24%;
  }
  .header__adress {
    width: 46%;
    margin-right: 1%;
  }
  .header__buttons {
    width: 100%;
    justify-content: space-around;
  }
  .header__search {
    width: 185px;
  }
  .select-language {
    width: 157px;
    margin-right: 8%;
  }
  .header__search {
    margin: 2% 0 2% 17%;
  }
  .header__buttons__question {
    margin: 0 0 0 16%;
  }
  .icon-globe {
    left: 36px;
  }
  #select-language {
    width: 193px;
    padding-left: 73px;
  }
  .header-mobile {
    display: none;
  }
/*main-menu*/
  .main-menu {
    font-size: 16px;
  }
  .main-menu__item i.icon-angle-down {
    right: 14px;
    font-size: 18px;
  }
  .accordion .link {
    padding-right: 30px;
    }
  
/*slider*/
  .slider__foto {
    width: 60%;

  }
  .slider__description {
    width: 40%;
    order: 1;
  }
  h1 {
    font-size: 35px;
    line-height: 35px;
  }
  .slider__name {
    font-size: 24px;
  }
  .slider__logo {
    font-size: 51px;
    line-height: 58px;
  }
  .slider__methodologies {
    font-size: 15px;
    line-height: 24px;
  }
  .square {
    display: block;
    left: -80px;
    width: 80px;
    height: 58px;
  }
  /*expert*/
  .tabs {
    font-size: 16px;
  }
  .tabs__menu__items {
    flex-direction: row;
    line-height: 22px;
    padding: 0 20px;
    text-align: right;
  }
  h3 {
    font-size: 20px;
  }
  .tabs__specialization__items {
    font-size: 14px;
  }
  .tabs__service__item {
    font-size: 14px;
  }
  .tabs__specialization__block {
    width: 47%;
  }
  .tabs__service__block {
    width: 47%;
  }
  .tabs__service__items {
    font-size: 14px;
  }
  .tabs__specialization__trangle-down,
  .tabs__service__trangle-down,
  .tabs__about-us__trangle-down,
  .tabs__proect__trangle-down {
    border-left: 375px solid transparent;
    border-right: 375px solid transparent;
  }
  .tabs__specialization__menu__item a,
  .tabs__service__menu__item a,
  .tabs__about-us__menu__item a,
  .tabs__proect__menu__item a {
    padding: 10px 15px 0 15px;
   }
  .tabs__proect__menu__item a {
    border-top-left-radius: 30px;
  }
  .tabs__menu__items .tabs__proect__menu__item {
    margin-left: auto;
  }
  .tabs__menu__items li {
    margin-bottom: 0;
    line-height: 21px;
  }
  
  /*video*/

  .advantages__excellence, 
  .advantages__noname,
  .advantages__important {
    width: 32%;
  }
  .footer__list {
    width: 25%;
  }

  .advantages__excellence {
    padding-left: 1%;
  }
  .advantages__important {
    padding-right: 1%;
  }
/*Страница service*/
/*All-on-4*/
  .service__content {
    display: flex;
    flex-wrap: wrap;
    width: 66%;
  }
  .service__container-nav {
    width: 100%;
  }

  .container-nav__items {
    position: relative;
  }
  .service__description {
    padding-left: 20px;
    padding-right: 20px;
  }
  .service__img-wrapper img {
    max-width: 48% /*305px*/;
  }
  .note__item {
    display: flex;
    margin: auto 42px;
    width: 94px;
    height: 94px;
    padding: 34px;
    font-size: 82px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  .note__item-black {
    color: #000000;
  }
  .note__item-rose {
    color: #e6007e;
    padding-left: 25px;
  }
  .note__text {
    padding: 0 10px;
  }

  .service__description__table {
    display: flex;
  }

  .list {
    width: 50%;
  }
  .tabs__stages__items {
    display: flex;
    width: 100%;
    position: relative;
  }

  .tabs__stages__item {
    line-height: 20px;
    width: 100%;
  }

  .tabs__stages__item a {
    border: none;
    width: 100%;
    border-top: 1px solid #C2C2C2;
    display: flex;
    align-items:  center;
    border-top-left-radius: 0;
  }

  .tabs__stages__item:first-child a {
    border-top-left-radius: 30px;
    border-left: 1px solid #C2C2C2;
  }
  .tabs__stages__item:last-child a {
    border-top-right-radius: 30px;
    border-right: 1px solid #C2C2C2;
  }
  .tabs__stages {
    padding: 10px;
    border: 1px solid #C2C2C2;
    border-top: none;
  }
  .tabs__stages p {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .service__content__main-description {
    padding-right: 20px;
  }
  .service__sidebar {
    width: 34%;
  }



  .service__sidebar .main-menu {
    width: none;
    font-size: 14px;
  }
  .service__sidebar .main-menu .icon-angle-down {
    display: block;
  }
  .service__sidebar .main-menu__items {
    display: block;
    width: 100%;
  }
  .service__sidebar .main-menu__item i.icon-angle-down {
    right: 14px;
  }
  .service__sidebar .accordion   { 
    text-transform: none; 
  }
  .service__sidebar .accordion .link {
    padding: 15px;
  }
  .service__sidebar .accordion li:first-child .link {
    padding-left: 15px;
  }
  .service__sidebar .accordion li:last-child .link {
    padding-right: 15px;
  }


  .service__sidebar .submenu {
    display: block;
    position: static;
    background-color: #f4f3f3;
    color: #000000;
  }
  .service__sidebar .main-menu__item .submenu {
    display: none!important;
  }  
  .service__sidebar .open .submenu {
    display: block!important;
  }

  .service__sidebar .submenu__item {
    border-bottom: 1px solid #4b4a5e;
  }
  .service__sidebar .submenu a {
    color: #000000;
  }
  .service__sidebar .submenu__link,
  .service__sidebar .submenu__link--open {    
    min-width: auto; 
    color: #6383E7;
    padding: 12px;
    padding-left: 42px;
  }
  .service__sidebar .submenu__link:hover,
  .service__sidebar .submenu__link--open:hover{
    color: #ffffff;
  }
  .service__sidebar .subsubmenu__items {
    display: none;
    font-size: 15px;
    line-height: 1.15;
    padding: 0;
  }
  .service__sidebar .open {
    display: block;
  }
  .service__sidebar .subsubmenu__item {
    padding: 6px 26px 6px 60px;
  }
  .service__sidebar .subsubmenu__item:hover a {
    color: #ffffff;
  }
  .service__sidebar .open .hr {
    display: none;
  }




  .block-on-off__wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .service__question__form {
    max-width: 616px;
  }
  .discount__element {
    font-size: 46px;
    padding: 10px 5px;
  }
  .service__discounts__title h2 {
    padding: 10px 5px;
  }

  
  .fix-form {
    display: block;
  }
  .fix-form .form__order:hover {
    background-color: #E863AD;
    cursor: pointer;
  }
  .footer {
    padding: 40px 0;
  }
  /*about*/
  .certificate__item {
    max-width: 33%;
  }
  .gallery__slider {
    width: 767px;
    flex-wrap: wrap;
  }
  .gallery-item img {
    width: 150px;
  }
  /*before-after*/
  .before-after__item {
    margin-bottom: 40px;
  }
  .before-after__foto {
    max-width: 24%;
  }
  .before-after__description {
    max-width: 50%;
  }
  .popups__img {

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;


  }
  .popups__img .logo {
    width: 100%;
  }
  .popups__title {
    max-width: 690px;
  }
  .popups__wrapper {
    display: flex;
    max-width: 690px;
  }
  
  .popups__img {
    width: 64%;
  }
  .popup__description {
    width: 36%;
  }
  /*prices*/
  .service__price__table td {
    padding: 10px;
  }
  /*infocentr*/
  .infocentr__new {
    width: 50%;
  }
  .infocentr__new:nth-child(2n-1) {
    border-right: 1px solid #347aa5;
  }
  .infocentr__new__wrapper {
    min-height: 435px;
  }
  .fieldset-wrapper____call-phone label {
    width: 48%;
  }
/*Страница contacts*/
  .contacts__content {
    display: flex;
    width: 76%;
  }
  .contacts__about__item {
    width: 45%;
  }
  .contacts__about__item__adress {
    width: 100%;
  }














}



























@media screen and (min-width: 1244px) {
  .part-info-desctop {
    display: inline-block;
    font-family: 'Roboto-Regular', Arial, sans-serif;
    color: #99cc00;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    white-space: nowrap;
  }
  /*nav*/
  .nav__wrapper {
    width: 1170px;
    position: static;
    text-align: right;
    font-family: 'Roboto-Regular', Arial, sans-serif;
    color: #000000;
    background-color: #ffffff;
  }
  .hidden {
    visibility: visible;
  }
  .nav__wrapper {
    height: 45px;
  }
  .nav__wrapper.nav-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .nav__wrapper::before {
    content: 'desktop';
  }
  .cd-main-nav {
    position: static;
    visibility: visible;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: transparent;
    text-align: right;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none; 

    justify-content: flex-end;
  }
  .main-nav__item {
    display: inline-block;
    height: 100%;
    padding: 0 .4em;
    padding: 4px;
    font-size: 13px;
    line-height: 31px;
    color: #515151;
    text-decoration: none;
  }
  .main-nav__item a {
    display: inline-block;
    padding: .8em;
    line-height: 1;
    color: #515151;
    border-bottom: 1px dotted #ff0000;
    /* Prevent .cd-subnav-trigger flicker is Safari */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-main-nav li a:not(.cd-subnav-trigger):hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: .6;
  }
  .cd-main-nav .go-back {
    display: none;
  }
  .cd-main-nav .cd-subnav-trigger {
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5em;
    -webkit-transition: border 0.3s;
    -moz-transition: border 0.3s;
    transition: border 0.3s;
  }
  .cd-main-nav .cd-subnav-trigger:hover {
    border-color: rgba(255, 255, 255, 0.4);
  }
  .cd-main-nav .cd-subnav-trigger::before, .cd-main-nav .cd-subnav-trigger::after {
    top: 22px;
    right: 17px;
    background-color: #ffffff;
    /* change transform-origin to rotate the arrow */
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.3s, width 0.3s, right 0.3s;
    -moz-transition: -moz-transform 0.3s, width 0.3s, right 0.3s;
    transition: transform 0.3s, width 0.3s, right 0.3s;
  }
  .cd-main-nav .cd-subnav-trigger::before {
    right: 23px;
  }
  .cd-main-nav .cd-subnav-trigger, .cd-main-nav .placeholder {
    padding-right: 2.4em;
    padding-left: 1.1em;
  }
  .cd-main-nav li ul {
    height: 80px;
    background-color: #7e4d7e;
    /* padding left = logo size + logo left position*/
    padding: 0 5% 0 calc(5% + 124px);
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transition: -webkit-transform 0.3s 0.2s;
    -moz-transition: -moz-transform 0.3s 0.2s;
    transition: transform 0.3s 0.2s;
  }
  .cd-main-nav li ul li {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: -webkit-transform 0.3s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, opacity 0.3s 0s;
  }
  .cd-main-nav .placeholder {
    /* never visible or clickable- it is used to take up the same space as the .cd-subnav-trigger */
    display: block;
    visibility: hidden;
    opacity: 0;
  }
  .cd-main-nav.moves-out > li > a {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-main-nav.moves-out > li > ul {
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav.moves-out > li ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s 0.2s, opacity 0.3s 0.2s;
    -moz-transition: -moz-transform 0.3s 0.2s, opacity 0.3s 0.2s;
    transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
  }
  .cd-main-nav.moves-out .cd-subnav-trigger::before, .cd-main-nav.moves-out .cd-subnav-trigger::after {
    width: 14px;
    right: 17px;
  }
  .cd-main-nav.moves-out .cd-subnav-trigger::before {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .cd-main-nav.moves-out .cd-subnav-trigger::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  /*header*/
  header {
    padding-top: 30px;
    width: 1170px; 
  }
  .header__buttons {
    justify-content: flex-end;
    margin: 0;
}
  .header__telephone {
    width: 38%;
  }
  .header__adress {
    width: 58%;
  }
  .header__search {
    margin: 0;
  }
  .header__search__input {
    width: 90%;
  }
  .icon-search {
    right: 4%;
  }
  .icon-globe {
    left: 6px;
  }
  .select-language {
    margin-right: 15px;
    width: 112px;
  }
  #select-language {
    width: 128px;
    margin-right: 10px;
    padding-left: 31px;
  }
  .header__buttons__question {
    margin: 2%;
  }
  .btn {
    cursor: pointer;
  }
  .modal-body__header-order {
    background-image: url('../img/bg2-modal-header-order.png');
    background-repeat: no-repeat;
    background-position: right;
  }
  .form__header-order {
    width: 68%;
  }

  /*main-menu*/
  .main-menu {
    width: 100%;

    font-size: 13px;
  }
  .main-menu .icon-angle-down {
    display: none;
  }
  .main-menu__items { 
    display: flex;
    flex-direction: row;
    width: 1170px;
    margin: 0 auto;
    padding: 0;
  }
  .main-menu__item i.icon-angle-down {
    right: 0;
  }
  
  .accordion-center .main-menu__item:hover .submenu{
    display: flex!important;
  }
  .accordion .link {
    padding: 15px 31px 15px 31px;
    border-bottom: none;
  }
  .accordion li:first-child .link {
    padding-left: 0;
  }
  .accordion li:last-child .link {
    padding-right: 0;
  }




  .submenu {
    /*min-width: 1170px;*/
    display: flex;
    width: 100%;
    position:absolute;
    background-color: #347aa5;
    color: #ffffff;
    z-index: 3;
    left: 0;

  }
 

  .main-menu__item .submenu {
    display: none!important;

  }  
  .open .submenu {
    display: flex!important;

  }
  .submenu__item {
    border-bottom: none;
  }
  .submenu a {
    padding-left: 0;
    padding-right: 0;
    color: #ffffff;
  }
  .submenu__link,
  .submenu__link--open {
    min-width: 189px;
    color: #ffffff;
    padding: 15px 9px 15px 11px;
  /* -webkit-box-shadow: 0px 5px 4px -2px rgba(56,94,133,0.65);
   -moz-box-shadow: 0px 5px 4px -2px rgba(56,94,133,0.65);
   box-shadow: 0px 5px 4px -2px rgba(56,94,133,0.65);*/
  }
  .subsubmenu__items {
    display: block;
    font-size: 11px;
    line-height: 18px;
    padding-left: 10px;
  }
  .subsubmenu__item {
    padding-left: 15px;
  }
  /*
  @keyframes hr {
    to {
      border-top: 3px solid rgba(56,94,133,0.45);
    }
  }*/
  .accordion-center .main-menu__item:hover .hr {
    position: absolute;
    width: 1170px;
    z-index: 3;
    bottom: -50px;
    left: 0;
    border-top: 3px solid rgba(56,94,133,0.45);/*
    animation-name: hr;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;*/
  }


/*fix-menu*/
.fix-menu {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 14px; 
  line-height: 15px;
  font-family: 'Roboto-Medium', Arial, sans-serif;
  color: #ffffff;
  background-color: #527da8;
  vertical-align: middle;
  z-index: 5;
  position: absolute;
  left: -100%;
}
.fix-menu__wrapper {
  width: 1170px;
}

.fix-menu a {
  color: #ffffff;
}
.fix-menu li {
  display: block;
}
.fix-menu__items {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fix-menu__item a{
  display: block;
  padding: 15px 20px 12px 20px;
}
.fix-menu__items li:first-child a {
  padding-left: 0;
}
.fix-menu__items li:last-child a {
  padding-right: 0;
}
.fix-menu__item__nd {
  background-color: #527da8;
}

.fix-menu__item__bef-af {
  background-color: #1088a6;
}
.fix-menu__item__select-number {
  width: 223px;
  font-size: 18px;
  position: relative;
  background-color: #7fc242;  
  padding: 10px 34px 11px 10px;
}
.fix-menu__item__phone {
  background-color: #7fc242;  
}
#fix-menu__item__select-number {
  position: relative;   /* Это нужно, чтобы работал z-index */   
  width: 249px;
  padding-left: 64px;
  padding-right: 34px;
  border: none;
  height: 22px;    /* Меньше, чем рисованная "кнопочка" на ширину нужного border'а */
  color: #ffffff;
  background-color: transparent;
  z-index: 2;
}
#fix-menu__item__select-number option {
  background-color: #7fc242; 
}
.form__order-fix {
  display: block;
  font-size: 17px;
  color: #ffffff;
  cursor: pointer;
}
form.form__order-fix {
  padding: 10px;
}
.fix-menu__item__phone .form__btn {
  margin: 5px;
}

.fix-menu__item__phone .phone-mask {
  width: 100%;
}


.size14 {
  font-size: 14px;
}

.tel {
  position: absolute;
  top: 14px;
  left: 30px;
  color: #ffffff;
}
.fix-menu__item__usl {
  background-color: #e6007e;
  z-index: 2;
}

#fix-menu__item__select-language {
  position: relative;
  width: 73px;
  padding-right: 10px;
  border: none;
  color: #ffffff;
  height: 22px; 
  background-color: transparent;
  z-index: 2;
}
#fix-menu__item__select-language option {
  background-color: #1087A6; 
}
.fix-menu__item__language {
  background-color: #1087A6;
}
.fix-menu__select-button-language {
  position: absolute;
  top: 14px;
  right: 0;
}
.fix-menu__item__akcii {
  background-color: #527da8;
  z-index: 2;
}
.fix-menu__item__cont {
  background-color: #1088a6;
}
.fix-menu__item__order {
  text-transform: uppercase;
  background-color: #faa61a;
}
  
/*закрепление fix-menu*/


.fixed {
  position:fixed;
  top:0;
  left:0;
  width: 100%;
}

.shadow {
  -webkit-box-shadow: 0px 7px 17px -2px rgba(117,117,117,1);
  -moz-box-shadow: 0px 7px 17px -2px rgba(117,117,117,1);
  box-shadow: 0px 7px 17px -2px rgba(117,117,117,1);
}



  /*slider*/
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
  .slider__wrapper {
    width: 1170px;
  }
  .slider__description {
    padding: 0; 
  }
  .slider__name {
    font-size: 32px;

  }
  .slider__logo {
    font-size: 68px;
    line-height: 78px;
  }
  .slider__methodologies {
    font-size: 18px;
    line-height: 31px;
  }
  .square {
    left: -98px;
    width: 98px;
    height: 78px;
  }
  .expert {
    width: 1170px; 
    padding: 58px 0;
  }
  .tabs {
    padding-top: 58px;
    width: 1170px;
  }
  h3 {
    font-size: 26px;
  }
  .tabs__specialization__items {
    font-size: 18px;
  }
  .tabs__service__item {
    font-size: 18px;
  } 
  .tabs__specialization__trangle-down,
  .tabs__service__trangle-down,
  .tabs__about-us__trangle-down,
  .tabs__proect__trangle-down {
    border-left: 585px solid transparent;
    border-right: 585px solid transparent;
  }
  /*video*/
  .video {
    width: 1170px;
  }
  .video__max {
    width: 49%;
  }
  .video__min {
    width: 47%;
    min-height: 344px;
  }
  .video__items {
    padding: 0 3%;
  }
  .video__item-max img  {
    width: 557px;
  }
 
  /*about*/
  .about {
    width: 1170px;
    padding-left: 0;
    padding-right: 0;
  }
  .about__short {
    width: 50%;
  }
  .about__employees {
    width: 50%;
  }
  /*advantages__info*/
  .advantages {
    padding: 0;
  }
  .advantages__info {
    width: 1170px;
  }
  .planka-top {
    width: 1170px;
  }
  .planka-bottom {
    width: 1170px;
  }
  .footer {
    width: 1170px;
  }
  .footer__list {
    width: 19%;
  }
  .advantages__excellence {
    padding-left: 0;
  }
  .advantages__important {
    padding-right: 0;
  }

/*Страница service*/
/*All-on-4*/
  .service__nav ul {
    width: 1170px;

  }
  .service {
    width: 1170px;
  }
  .service__container-nav {
    width: 15%;
    min-width: 164px;
  }

  .container-nav__items::before {
    border-left: 82px solid transparent;
    border-right: 82px solid transparent;
    border-top: 82px solid #f3f3f3;
    bottom: -82px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    right: 0;
    width: 0;
  }
  .container-nav__items::after {
    background: #fff;
    border-radius: 50%;
    bottom: -51px;
    content: "";
    height: 30px;
    left: 50%;
    margin: 0 0 0 -15px;
    position: absolute;
    width: 30px;
  }



  .service__content {
    width: 76%;
  }
  .service__sidebar {
    width: 24%;
  }
  .service__description {
    width: 80%;
  }
  .service__img-wrapper img:first-child {
    margin-right: 30px;
  }





 
  .send-wrapper .form__btn {
    white-space: nowrap;
  }
  .submenu__link-current {
    position: relative;
    color: #000000;
  }


  .service__video__pic {
    width: 55%;
  }
  .service__video__description {
    width: 45%;
  }
  .service__video__description p {
    margin-left: 24px;
  }
  .tabs__stages__block {
    width: 60%;
  }
  .tabs__stages__img {
    width: 40%;
  }
  .galllery-btn {
    margin: 2% auto;
  }
  .block-on-off__wrapper {
    width: 1170px;
    margin-bottom: 50px;
  }
  .service__question {
    width: 1170px;
  }
  .service__question__doctor {
    width: 43%;
  }
  .service__question__form {
    width: 57%;
  }
  .discount__element {
    font-size: 48px;
    padding: 10px 15px;
  }
  .service__discounts__title h2 {
    padding: 10px 15px;
  }
/*about*/
  .about_video-wrapper {
    width: 41%;
  }
  .about_video-wrapper img:first-child {
    margin: 0;
  }
  .about_img-wrapper {
    width: 59%;
  }
  .gallery__slider {
    width: 1170px;

  }
 .gallery__slider img{
    width: auto;

  }
  /*before-after*/
  .before-after__item {
    margin-bottom: 60px;
  }
  .before-after__foto {
    max-width: 32%;
  }
  .before-after__description {
    max-width: 36%;
  }
/*popups*/
  .popups__title,
  .popups__wrapper {
    max-width: 1170px;
    width: 1170px;
  }
  .popups__img {
    width: 50%;
  }
  .popup__description {
    width: 49%;
  }
  .modal-dialog {
    max-width: 1170px;
  }
  /*infocentr*/
  .infocentr__new {
    width: 33%;
  }
  .infocentr__new:nth-child(2n-1) {
    border-right: none;
  }
  .infocentr__new:not(:nth-child(3n)) {
    border-right: 1px solid #347aa5;
  }
  .infocentr__new__wrapper {
    min-height: 424px;
  }
  /*call-phone*/
  .modal-dialog__call-phone {
    max-width: 842px;
  }
  /*contacts*/
  .contacts__about__item {
    width: 28%;
  }
  .contacts__about__item__adress {
    margin: 0;
  }








}



@media print {
  .nav__wrapper,
  .cd-main-content,
  header,
  .main-menu,
  .fix-menu,
  .service__nav,
  .service__sidebar,
  .service__question,
  footer,
  .call-phone,
  .fix-form,
  .price-list__print {
    display: none!important;

  }
  .service__price__table td {
    padding: 0; 
  }






}