/*fonts*/
@font-face {
  font-family: 'Montserrat_r';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat_m';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat_b';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat_ExtraBold';
  src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/Montserrat-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
/*setting*/
html {
  font-size: 14px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat_r', sans-serif !important;
}
*:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none!important;
}
.btn {
  height: 48px;
  width: 200px;
  padding: 0;
  border: none;
  color: #fff;
  font-weight: bold;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#4bc7ff), to(#00a3ee));
  background-image: linear-gradient(to top, #4bc7ff, #00a3ee);
  font-family: 'Montserrat_b', sans-serif;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.btn:hover {
  color: #fff;
  -webkit-box-shadow: 0px 5px 5px 0 rgba(153, 177, 210, 0.17);
          box-shadow: 0px 5px 5px 0 rgba(153, 177, 210, 0.17);
}
.feedback-form--bottom .feedback-input-in {
  background-color: #ebf2f5;
}
.feedback-form--bottom .feedback_consent {
  color: #b1b1b1;
}
.feedback-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback-input-in {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border: none;
  width: 300px;
  padding: 15px 22px 15px;
}
.feedback-input-in::-webkit-input-placeholder {
  color: #000;
}
.feedback-input-in:-ms-input-placeholder {
  color: #000;
}
.feedback-input-in::-ms-input-placeholder {
  color: #000;
}
.feedback-input-in::placeholder {
  color: #000;
}
.feedback-input-in:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.feedback-input-in:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.feedback-input-in:focus::-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.feedback-input-in:focus::placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.feedback__btn {
  margin-left: 10px;
}
.feedback__btn-icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-right: 10px;
}
.feedback_consent {
  margin-top: 15px;
  font-size: 10px;
  color: #fff;
}
.feedback_consent p {
  margin: 0;
}
.header--fixed .header_top {
  opacity: 0;
}
.header--fixed .header_bottom {
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #28282e;
  top: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.header--fixed .header_bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}
.header--fixed .header_bottom ul li {
  list-style-type: none;
}
.header--fixed .header_bottom ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  color: #fff;
  text-decoration: none;
  padding: 0 10px;
}
.header--fixed .header_bottom ul li a:hover {
  background-color: #000;
}
.header--fixed .header_bottom ul li a:before {
  display: none;
}
.header--fixed .header_bottom--wrap_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header--fixed .header_bottom--wrap_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header--fixed .header_bottom--wrap_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_top {
  background-color: #28282e;
  padding: 30px 0 30px;
  z-index: 20;
}
.header_top-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #fff;
}
.header_top-logo .logo-icon {
  width: 48px;
  height: 50px;
  fill: #25b1f0;
}
.header_top-logo .logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}
.header_top-logo .logo-text--top {
  font-weight: bold;
  font-size: 21px;
  line-height: 21px;
  text-transform: uppercase;
}
.header_top-logo .logo-text--top span:first-child {
  color: #25b1f0;
}
.header_top-logo .logo-text--bottom {
  font-size: 13px;
}
.header_top-city .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 21px;
  top: 20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.header_top-city .arrow-icon {
  width: 7px;
  height: 12px;
}
.header_top-city .dropdown {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  height: 50px;
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  color: #474747;
}
.header_top-city .dropdown:hover .arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.header_top-city .dropdown.active {
  border-bottom-right-radius: 0;
}
.header_top-city .dropdown .select {
  cursor: pointer;
  display: block;
  padding: 16px 0 16px 22px;
  letter-spacing: 0.56px;
}
.header_top-city .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
  display: none;
  overflow-y: auto;
  z-index: 9;
  list-style: none;
}
.header_top-city .dropdown-menu li {
  padding: 10px;
  padding-left: 22px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.header_top-city .dropdown-menu li:hover {
  background-color: #f2f2f2;
}
.header_top-callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_top-callback-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 18px;
  -webkit-transition: all .3 linear;
  transition: all .3 linear;
}
.header_top-callback-phone a {
  font-size: 17px;
  font-weight: bold;
  padding-left: 24px;
  color: #fff;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.header_top-callback-phone a:before {
  position: absolute;
  content: '';
  background: url(../images/phone.svg);
  width: 14px;
  height: 14px;
  left: 0;
  top: 3px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.header_top-callback-phone a:hover:before {
  left: 5px;
}
.header_bottom {
  z-index: 20;
}
.header_bottom nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  height: 50px;
}
.header_bottom nav ul li {
  list-style-type: none;
}
.header_bottom nav ul li a {
  font-weight: 500;
  text-decoration: none;
  color: #000;
  padding: 0 15px;
  position: relative;
}
.header_bottom nav ul li a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 5px;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  bottom: -15px;
  left: 0;
}
.header_bottom nav ul li a:hover:before {
  background-color: #00a3ee;
}
.header_bottom--wrap_logo {
  display: none;
}
.header_bottom--wrap_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
}
.header_bottom--wrap_logo .logo-icon {
  width: 35px;
  height: 37px;
  fill: #25b1f0;
}
.header_bottom--wrap_logo .logo-text {
  margin-left: 15px;
}
.header_bottom--wrap_logo .logo-text--top {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
}
.header_bottom--wrap_logo .logo-text--top span:first-child {
  color: #25b1f0;
}
.header_bottom--wrap_logo .logo-text--bottom {
  font-size: 10px;
}
.header_bottom--wrap_phone {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_bottom--wrap_phone a {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.header_bottom--wrap_burger {
  display: none;
}
.header_bottom--wrap_burger .nav-icon {
  width: 35px;
  height: 30px;
  margin: 10px 0 10px 10px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.header_bottom--wrap_burger .nav-icon span {
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}
.header_bottom--wrap_burger .nav-icon span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.header_bottom--wrap_burger .nav-icon span:nth-child(2) {
  top: 13px;
  left: 0px;
  opacity: 1;
}
.header_bottom--wrap_burger .nav-icon span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.header_bottom--wrap_burger .nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
}
.header_bottom--wrap_burger .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.header_bottom--wrap_burger .nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 13px;
}
.header_mobile {
  position: fixed;
  top: -500px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  z-index: -20;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.header_mobile ul {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}
.header_mobile ul li {
  list-style-type: none;
  padding: 10px 0;
}
.header_mobile ul li a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  position: relative;
}
.header_mobile .header_top-callback-phone {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.header_mobile .header_top-callback-phone a {
  color: #000;
}
.header_mobile .header_top-callback-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.header.show .header_mobile {
  top: 50px;
  opacity: 1;
  z-index: 20;
}
.offer {
  background: url("../images/bg_phone.png") center center no-repeat;
  padding: 80px 0;
}
.offer_text-title {
  margin-bottom: 35px;
}
.offer_text-title h1 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.offer_text-title h1 span {
  color: #00a3ee;
}
.offer_text-desc {
  margin-bottom: 35px;
}
.offer_text-desc p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  position: relative;
  font-size: 18px;
  color: #fff;
}
.offer_text-desc p:before {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background-color: #fff;
  bottom: 0;
}
.offer_text-form-title {
  margin-bottom: 20px;
}
.offer_text-form-title p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.offer_picture-picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.offer_picture-picture img {
  height: auto;
}
.offer_picture-desc {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
  text-align: center;
  color: #000;
  padding: 35px 0;
}
.offer_picture-desc p {
  font-size: 17px;
  font-weight: bold;
  margin: 0;
}
.offer_picture-desc span {
  font-size: 15px;
}
.work {
  padding-top: 100px;
}
.work_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.work_title p {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.work_block {
  text-align: center;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
          box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
  background-color: #fff;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  padding: 40px;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.work_block:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#4bc7ff), to(#00a3ee));
  background-image: linear-gradient(to top, #4bc7ff, #00a3ee);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.work_block:hover .work_block-number p {
  color: #fff;
}
.work_block:hover .work_block-title {
  color: #fff;
}
.work_block-number {
  margin-bottom: 20px;
}
.work_block-number p {
  font-size: 50px;
  font-family: 'Montserrat_ExtraBold', sans-serif;
  color: #25b5f6;
  margin: 0;
}
.work_block-title p {
  margin: 0;
  font-weight: 600;
}
.work_icon {
  fill: #25b5f6;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: -20px;
  top: 45%;
}
.about {
  padding-top: 100px;
}
.about_picture img {
  width: 100%;
  height: auto;
}
.about_text {
  -webkit-box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
          box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
  background-color: #ebf4f7;
  padding: 0 70px!important;
}
.about_text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about_text-title {
  margin-bottom: 20px;
}
.about_text-title p {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.about_text-desc p {
  margin: 0;
}
.price {
  padding-top: 100px;
}
.price_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.price_title p {
  font-size: 30px;
  font-family: 'Montserrat_ExtraBold', sans-serif;
  margin: 0;
}
.price_block-list--top {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ebf2f5;
  overflow: hidden;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}
.price_block-list--top table {
  table-layout: auto;
  width: 100%;
  padding: 15px 0 15px 0;
}
.price_block-list--top table thead {
  color: #c9c9c9;
  font-size: 13px;
  font-weight: bold;
}
.price_block-list--top table thead tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 30px;
}
.price_block-list--top table thead tr th:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  text-align: left;
}
.price_block-list--top table thead tr th:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  text-align: center;
}
.price_block-list--top table thead tr th:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16%;
  text-align: right;
}
.price_block-list--top table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 30px;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  cursor: pointer;
  font-weight: bold;
  color: #2d3441;
}
.price_block-list--top table tbody tr:hover {
  background-color: #25b5f6;
  color: #fff;
}
.price_block-list--top table tbody tr td:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  text-align: left;
  position: relative;
}
.price_block-list--top table tbody tr td:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  text-align: center;
  position: relative;
}
.price_block-list--top table tbody tr td:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16%;
  text-align: right;
  position: relative;
}
.price_block-list--top table tbody > tr:nth-of-type(n+6) {
  display: none;
}
.price_block-list--bottom {
  margin-top: 25px;
  position: relative;
}
.price_block-list-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price_block-list-all p {
  font-weight: bold;
  color: #9d9d9d;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.price_block-list-all p:before {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background-color: #dcdcdc;
  bottom: 0;
}
.price_block-list-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 20px;
}
.price_block-list-pay p {
  margin: 0;
  color: #2d344159;
  font-size: 10px;
  margin-right: 20px;
}
.price--active .price_block-list--top table tbody > tr:nth-of-type(n+6) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price--active .price_block-list-all {
  display: none;
}
.advantages {
  padding-top: 100px;
}
.advantages-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.advantages-title p {
  margin: 0;
  font-size: 30px;
  font-family: 'Montserrat_m', sans-serif;
}
.advantages_block {
  margin-bottom: 30px;
}
.advantages_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
          box-shadow: 0px 18px 24px 0 rgba(153, 177, 210, 0.17);
  -webkit-transition: .3s linear;
  transition: .3s linear;
  padding: 40px;
  clip: auto;
  cursor: pointer;
  height: 100%;
}
.advantages_item:hover {
  background-color: #25b5f6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.advantages_item:hover .advantages_item_icon {
  fill: #fff;
}
.advantages_item:hover .advantages_item-desc p {
  color: #fff;
}
.advantages_item-icon {
  margin-bottom: 20px;
}
.advantages_item_icon {
  width: 55px;
  height: 55px;
  fill: #25b5f6;
}
.advantages_item-desc {
  text-align: center;
}
.advantages_item-desc p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  word-wrap: break-word;
  width: 270px;
}
.reviews {
  padding-top: 100px;
  margin-bottom: 100px;
  position: relative;
}
.reviews .swiper-pagination {
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.reviews .swiper-container {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0px 0px 25px 0 rgba(119, 123, 128, 0.26);
          box-shadow: 0px 0px 25px 0 rgba(119, 123, 128, 0.26);
}
.reviews .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 5px;
}
.reviews .swiper-pagination-bullet:hover {
  background-color: #25b5f6;
  opacity: 1;
}
.reviews .swiper-pagination-bullet-active {
  background-color: #25b5f6;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.reviews_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.reviews_title p {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}
.reviews_item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0;
  padding: 0!important;
  cursor: pointer;
}
.reviews_item-service {
  margin-right: 70px;
}
.reviews_item-service_top {
  margin-bottom: 15px;
}
.reviews_item-service_top p {
  color: #c00028;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}
.reviews_item-service_bottom p {
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}
.reviews_item-desc_desc {
  margin-bottom: 20px;
}
.reviews_item-desc_desc p {
  margin: 0;
  font-style: italic;
}
.reviews_item-desc_name {
  margin-bottom: 10px;
}
.reviews_item-desc_name p {
  margin: 0;
}
.reviews_item-desc_date p {
  font-weight: bold;
  color: #c8c8c8;
  font-size: 10px;
  margin: 0;
}
.reviews_item-desc_like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
}
.reviews_item-desc_like--like {
  margin-right: 20px;
  position: relative;
}
.reviews_item-desc_like--like .like {
  position: absolute;
  left: 0;
  top: -5px;
  width: 20px;
  height: 20px;
  fill: #c8c8c8;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.reviews_item-desc_like--like .like:hover {
  fill: green;
}
.reviews_item-desc_like--like span {
  padding-left: 25px;
  color: green;
}
.reviews_item-desc_like--nlike {
  position: relative;
}
.reviews_item-desc_like--nlike .like {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  fill: #c8c8c8;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.reviews_item-desc_like--nlike .like:hover {
  fill: red;
}
.reviews_item-desc_like--nlike span {
  padding-left: 25px;
  color: #c8c8c8;
}
.reviews_item-desc_like--nlike .red {
  color: red;
}
.reviews .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 16px 0 rgba(188, 193, 208, 0.55);
          box-shadow: 0px 3px 16px 0 rgba(188, 193, 208, 0.55);
  background-color: #fff;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.reviews .button:hover {
  background-color: #25b5f6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.reviews .button:hover .button-icon {
  fill: #fff;
}
.reviews .button-icon {
  fill: #000;
  width: 12px;
  height: 11px;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}
.reviews .button-next {
  right: 0;
}
.reviews .button-prev {
  left: 0;
}
.reviews .button-prev .button-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.request_bg {
  background-image: url(../images/map_fon.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  height: 460px;
}
.request_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.request_form-title {
  text-align: center;
}
.request_form-title p {
  margin: 0;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 30px;
}
.request_form-desc {
  text-align: center;
}
.request_form-desc p {
  margin: 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.footer {
  background-color: #28282e;
  padding: 30px 0 30px;
}
.footer_logo-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #fff;
}
.footer_logo .logo-icon {
  width: 35px;
  height: 41px;
  fill: #25b1f0;
}
.footer_logo .logo-text {
  margin-left: 15px;
}
.footer_logo .logo-text--top {
  font-weight: bold;
  font-size: 21px;
  line-height: 21px;
  text-transform: uppercase;
}
.footer_logo .logo-text--top span:first-child {
  color: #25b1f0;
}
.footer_logo .logo-text--bottom {
  font-size: 13px;
}
.footer_logo-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.footer_logo-bottom a {
  text-decoration: underline;
  color: #fff;
  font-size: 12px;
}
.footer_nav-top {
  margin-top: 10px
}

.footer_nav-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
}
.footer_nav-top ul li {
  list-style-type: none;
  position: relative;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  padding-bottom: 5px;
}
.footer_nav-top ul li:before {
  position: absolute;
  content: '';
  height: 3px;
  width: 100%;
  background-color: #28282e;
  bottom: 0;
}
.footer_nav-top ul li:hover:before {
  background-color: #25b5f6;
}
.footer_nav-top ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.footer_nav-bottom {
  margin-top: 20px;
}
.footer_nav-bottom p {
  text-align: center;
  font-size: 12px;
  margin: 0;
  color: #fff;
}
.footer_callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_callback-phone {
  margin-top: 20px;
}
.footer_callback-phone a {
  font-size: 17px;
  font-weight: bold;
  padding-left: 24px;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.footer_callback-phone a:before {
  position: absolute;
  content: '';
  background: url(../images/phone.svg);
  width: 14px;
  height: 14px;
  left: 0;
  top: 3px;
}
.footer_callback-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.footer_callback-btn .btn {
  width: 100%;
  height: 38px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0d0def;
  z-index: 20;
  display: none;
}
.popup__content {
  position: fixed;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: #fff;
  text-align: center;
  width: 782px;
}
.popup__close {
  position: absolute;
  top: 18px;
  right: 25px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
.popup__subtitle {
  margin-top: 80px;
  font-size: 18px;
  font-weight: bold;
}
.popup__form {
  margin-top: 30px;
}
.popup__form .clientInfo {
  width: 225px;
  height: 50px;
  margin-bottom: 20px;
  border: solid 2px #c4c4c4;
  outline: none;
  padding: 0 20px;
}
.popup__form .clientInfo::-webkit-input-placeholder {
  font-size: 14px;
  color: #000;
  line-height: normal;
  text-align: center;
}
.popup__form .clientInfo:-ms-input-placeholder {
  font-size: 14px;
  color: #000;
  line-height: normal;
  text-align: center;
}
.popup__form .clientInfo::-ms-input-placeholder {
  font-size: 14px;
  color: #000;
  line-height: normal;
  text-align: center;
}
.popup__form .clientInfo::placeholder {
  font-size: 14px;
  color: #000;
  line-height: normal;
  text-align: center;
}
.popup__form .clientInfo:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.popup__form .clientInfo:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.popup__form .clientInfo:focus::-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.popup__form .clientInfo:focus::placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.popup__form-subtitle {
  font-size: 12px;
  font-weight: 500;
  max-width: 387px;
  margin: 30px auto 50px;
}
.popup__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 225px;
  height: 50px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  border-radius: 2px;
  background-color: #555555;
  border: none;
  color: #fff;
  cursor: pointer;
}
.popup__btn-thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 225px;
  height: 50px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  border-radius: 2px;
  background-color: #555555;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 50px;
}
.popup_thanks {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0d0def;
  z-index: 20;
  display: none;
}
.popup_thanks .form__popup {
  position: fixed;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background: #fff;
  text-align: center;
  width: 782px;
}
@media screen and (max-width: 1200px) {
  .header_top-logo .logo-text--top {
    font-size: 18px;
  }
  .header_top-logo .logo-text--bottom {
    font-size: 10.5px;
  }
  .header--fixed .header_bottom nav {
    width: 100%;
  }
  .header--fixed .header_bottom ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header--fixed .header_bottom ul li a {
    padding: 0;
  }
  .advantages_item-desc p {
    width: 209px;
  }
  .offer_picture-picture {
    margin: 0 30px;
  }
  .offer_picture-picture img {
    width: 100%;
  }
  .offer_picture-desc {
    padding: 30px 10px;
  }
  .feedback-input-in {
    width: 100%;
  }
  .footer_logo .logo-text--top {
    font-size: 18px;
  }
  .footer_logo .logo-text--bottom {
    font-size: 10.5px;
  }
  .footer_nav-top ul li a {
    font-size: 12px;
  }
  .offer_text-desc p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .header--fixed .header_bottom--wrap_menu {
    display: none;
  }
  .header_bottom {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: #28282e;
  }
  .about_text-desc {
    margin-bottom: 50px;
  }
  .header_bottom--wrap_menu {
    display: none;
  }
  .header_bottom--wrap_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header_bottom--wrap_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_bottom--wrap_phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header_top {
    display: none;
  }
  .advantages_item-desc p {
    width: 250px;
  }
  .offer {
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 0;
  }
  .price,
  .request {
    padding-top: 80px;
  }
  .reviews_item-service {
    padding-left: 25px;
  }
  .reviews_item-desc {
    padding-right: 15px;
  }
  .offer_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .offer_text-title {
    margin-bottom: 15px;
  }
  .offer_text-title h1 {
    margin: 0;
    font-size: 28px;
  }
  .offer_text-desc {
    margin-bottom: 15px;
  }
  .offer_picture_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer_picture-picture {
    margin: 0;
  }
  .offer_picture-picture img {
    width: 300px;
    height: 197px;
  }
  .offer_picture-desc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .work--block:nth-child(1) {
    margin-bottom: 20px;
  }
  .work--block:nth-child(2) {
    margin-bottom: 20px;
  }
  .work_icon {
    display: none;
  }
  .about_text-title {
    margin-top: 30px;
  }
  .price_block-list-all {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .request .feedback-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .request .feedback_consent {
    text-align: center;
    margin-bottom: 50px;
  }
  .request_bg {
    height: 300px;
  }
  .footer {
    padding: 30px 0;
  }
  .footer_nav {
    margin-top: 30px;
  }
  .footer_nav-top ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .offer {
    background: none;
  }
  .offer_text-title h1 {
    color: #000;
  }
  .feedback-form--top .feedback-input-in {
    text-align: center;
  }
  .feedback-form--bottom .feedback-input-in {
    text-align: center;
  }
  .advantages_item-desc p {
    width: 410px;
  }
  .header_bottom-container {
    position: relative;
  }
  .price_block-list--top table thead tr th:nth-child(2) {
    display: none;
  }
  .price_block-list--top table tbody tr td:nth-child(2) {
    display: none;
  }
  .offer_text-desc p {
    color: #000;
  }
  .offer_text-form-title p {
    color: #000;
  }
  .feedback_consent p {
    color: #000;
  }
  .feedback-form--top .feedback-input-in {
    background-color: #ebf2f5;
  }
  .header--fixed .header_bottom--wrap_logo {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: none;
  }
  .header--fixed .header_bottom--wrap_phone {
    height: 50px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header--fixed .header_bottom--wrap_burger {
    position: absolute!important;
    right: 0;
  }
  .header_bottom--wrap_phone {
    display: none;
  }
  .reviews_item-service {
    padding-right: 15px;
  }
  .reviews_item-desc {
    padding-left: 15px;
  }
  .offer_text {
    text-align: center;
  }
  .offer_text-title h1 {
    font-size: 20px;
  }
  .offer_text-desc {
    margin-bottom: 25px;
  }
  .offer_text-desc p {
    font-size: 14px;
  }
  .offer_text-form-title p {
    font-size: 16px;
    text-align: center;
  }
  .about_text {
    margin-left: 15px;
    margin-right: 15px;
  }
  .feedback-form--top .feedback-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    margin: auto;
  }
  .feedback-form--top .feedback__btn {
    margin-top: 15px;
    margin-left: 0;
  }
  .feedback-form--top .feedback__btn .btn {
    width: 100%;
  }
  .work,
  .about,
  .advantages,
  .reviews {
    padding-top: 60px;
  }
  .work_block,
  .advantages_item {
    -webkit-box-shadow: 0px 0px 30px 0 rgba(153, 177, 210, 0.27);
            box-shadow: 0px 0px 30px 0 rgba(153, 177, 210, 0.27);
  }
  .work--block:nth-child(3) {
    margin-bottom: 20px;
  }
  .work_title p {
    font-size: 26px;
  }
  .about_text-title p {
    font-size: 26px;
  }
  .price_title p {
    font-size: 26px;
  }
  .advantages-title p {
    font-size: 26px;
  }
  .request_form-title p {
    font-size: 26px;
  }
  .reviews_title p {
    font-size: 26px;
  }
  .price_block-list--top table thead {
    font-size: 10px;
  }
  .price_block-list--top table tbody {
    font-size: 12px;
  }
  .price_block-list--top table thead tr th:nth-child(1) {
    width: 65%;
  }
  .price_block-list--top table thead tr th:nth-child(3) {
    width: 35%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .price_block-list--top table tbody tr td:nth-child(1) {
    width: 65%;
  }
  .price_block-list--top table tbody tr td:nth-child(3) {
    width: 35%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .price_block-list--bottom {
    margin-top: 35px;
  }
  .price_block-list-all {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .price_block-list-pay {
    top: -20px;
  }
  .price_block-list-pay p {
    font-size: 11px;
  }
  .reviews_item-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px 0;
  }
  .reviews_item-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .reviews .button {
    display: none;
  }
  .feedback-form--bottom .feedback-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    margin: auto;
  }
  .feedback-form--bottom .feedback__btn {
    margin-top: 15px;
    margin-left: 0;
  }
  .feedback-form--bottom .feedback__btn .btn {
    width: 100%;
  }
  .footer_logo .logo-text--top {
    line-height: 25px;
  }
  .footer_nav-top ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_callback {
    margin-top: 20px;
  }
  .footer_callback-btn {
    width: 300px;
  }
  .popup__content {
    width: 500px;
  }
  .popup_thanks .form__popup {
    width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .swiper-container {
    margin-left: 15px!important;
    margin-right: 15px!important;
  }
  .offer_text-desc p:before {
    display: none;
  }
  .feedback-form--top .feedback-block {
    width: 100%;
  }
  .advantages_item-desc p {
    width: inherit;
  }
  .offer_picture-picture img {
    width: 250px;
    height: 164px;
  }
  .offer_picture-desc p {
    font-size: 14px;
  }
  .work_title p {
    font-size: 20px;
  }
  .about_text-title p {
    font-size: 20px;
  }
  .price_title p {
    font-size: 20px;
  }
  .advantages-title p {
    font-size: 20px;
  }
  .request_form-title p {
    font-size: 20px;
  }
  .reviews_title p {
    font-size: 20px;
  }
  .work_block-number p {
    font-size: 40px;
  }
  .about_text {
    padding: 0 15px!important;
  }
  .price_block-list--top table thead tr {
    padding: 10px;
  }
  .price_block-list--top table tbody tr {
    padding: 10px;
  }
  .price_block-list--bottom {
    margin-top: 60px;
  }
  .price_block-list-pay {
    top: -40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .price_block-list-pay {
    margin-right: 0;
  }
  .price_block-list-pay p {
    margin-right: 0;
  }
  .advantages_item_icon {
    width: 45px;
    height: 45px;
  }
  .advantages_item-desc p {
    font-size: 16px;
  }
  .feedback-form--bottom .feedback-block {
    width: 100%;
  }
  .popup__content {
    width: 100%;
  }
  .popup_thanks .form__popup {
    width: 100%;
  }
  .reviews .swiper-pagination {
    width: 100%;
  }
}
