@charset "utf-8";

/* HTML-codes by Yulia Kuznetsova */
/* CSS Document */

/* Colors 
	Red #06b2fe
	Red dark #008ecc
	Red light #FEEAEB
	Black #1B1B1E
*/

html,
body {
  margin: 0 !important;
  padding: 0;
  width: 100%;
  height: 100%;
  line-height: 1.3;
}

body {
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #1b1b1e;
  background: #fff;
}

/* headers */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-weight: 500;
  color: #000;
}
h1 {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}
h2 {
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}
h3 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
h4 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

/* links */
a img {
  border: none;
}

a {
  color: #06b2fe;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
a:hover,
a:focus,
a:active {
  color: #008ecc;
  text-decoration: none;
}
a:focus,
a:active,
input:focus,
input:active,
button:focus,
button:active {
  outline: none !important;
}

form input:focus,
form textarea:focus {
  outline: none;
}

.text-blue {
  color: #06b2fe;
}

/* buttons */
.btn,
.btn:before,
.btn:after {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.btn {
  padding: 0 25px;
  height: 46px;
  line-height: 44px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  border: 0;
  background-color: #06b2fe;
  color: #fff;
  outline: none;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: #fff;
  background-color: #008ecc;
  outline: none;
}
.btn.white {
  color: #1b1b1e !important;
  background-color: #fff !important;
}
.btn.white:hover,
.btn.white:focus,
.btn.white:active {
  color: #fff !important;
  background-color: #06b2fe !important;
}

/* btn.bordered */
.btn.bordered {
  color: #06b2fe;
  border: 1px solid #06b2fe;
  background-color: transparent;
}
.btn.bordered:hover,
.btn.bordered:focus,
.btn.bordered:active {
  color: #fff;
  border-color: #06b2fe;
  background-color: #06b2fe;
}
.btn.bordered.white {
  color: #fcfcfc !important;
  border-color: 1px solid #fcfcfc !important;
  background-color: transparent !important;
}
.btn.bordered.white:hover,
.btn.bordered.white:focus,
.btn.bordered.white:active {
  color: #1b1b1e !important;
  border-color: #fcfcfc !important;
  background-color: #fcfcfc !important;
}

/* btn.arrowed */
.btn.arrowed span {
  display: inline-block;
  padding-right: 25px;
  height: 18px;
  line-height: 18px;
  background: url("../img/arrow-right-white.svg") no-repeat right center;
  background-size: 16px auto;
}

/* margins & paddings */
.pt-0 {
  padding-top: 0 !important;
}

/* Rubl */
.rub:after {
  content: "i";
  font-family: "ALS Rubl";
  font-size: inherit;
  font-weight: normal;
  line-height: 1;
}

/* rows */
.row {
  margin-right: 0;
  margin-left: 0;
}

/* columns reset */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding: 0;
}

/* main containers */
.wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  overflow-x: hidden;
}
.container,
.container-fluid {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.container {
  width: 90%;
  max-width: 1400px;
}
.container-fluid {
  width: 98%;
}

/* HEADER  ----------------------------------------------------- */
.header {
  position: relative;
  z-index: 999;
  transition: all 0.3s;
}
.header-top {
  background: #1b1b1e;
}
.header-top .cols {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  color: #fff;
}
.header-top .left,
.header-top .right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.header-top .left {
  justify-content: flex-start;
}
.header-top .right {
  justify-content: flex-end;
}

/* header logo */
.header .logo {
  display: block;
  line-height: 1;
  color: #1b1b1e;
}
.header .logo-name {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}
.header .logo-text {
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}

/* address & email */
.header .address,
.header .time {
  font-size: 16px;
  line-height: 1;
}
.header .address {
  margin-right: 30px;
}

.header .top-links {
  margin-right: 30px;
}
.header .top-links .link {
  color: #fff;
}
.header .top-links .link:hover {
  color: #06b2fe;
}
.header .top-links .link:not(:last-child) {
  margin-right: 30px;
}

.header .email {
  margin-right: 30px;
}
.header .email .link {
  color: #fff;
}
.header .email .link:hover {
  color: #06b2fe;
}

/* contact */
.header .contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* phone */
.header .phones {
  margin-right: 30px;
  text-align: right;
}
.header .phone {
  margin-bottom: 3px;
}
.header .phone .link {
  font-size: 18px;
  line-height: 1;
  color: #1b1b1e;
}
.header .phone .link:hover {
  color: #06b2fe;
}

/* social */
.social {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.social .link {
  width: 24px;
  height: 24px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}
.social .link.wa {
  background-image: url("../img/icon-whatsapp.svg");
}
.social .link.tg {
  background-image: url("../img/icon-telegram.svg");
}
.social .link:not(:last-child) {
  margin-right: 15px;
}
.social .link:hover {
  opacity: 0.7;
}

/* toggler */
.menu-btn {
  display: none;
  margin: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: none;
  border: 0;
  border-radius: 0;
  transition: all 0.3s;
}
.menu-btn svg {
  width: 24px;
  height: 24px;
  fill: #1b1b1e;
}
.menu-btn[aria-expanded="true"] svg {
  fill: #06b2fe;
}

/* menu = navbar-nav */
.header-bottom .cols {
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 0;
}
.header .menu-container {
  padding: 0 20px;
}
.header .menu {
  width: auto;
}
.header .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.header .navbar-nav .nav-item {
  margin: 0;
}
.header .navbar-nav .nav-link {
  position: relative;
  padding: 10px 10px !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #111;
  border-radius: 0;
}
.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link:active,
.header .navbar-nav .nav-link.highlighted,
.header .navbar-nav .nav-link.active {
  color: #06b2fe;
}
.header .navbar-nav .nav-link.has-submenu {
  position: relative;
  padding-right: 35px !important;
}
.header .navbar-nav .nav-link .sub-arrow {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: url("../img/chevron-down.svg") no-repeat center center;
  background-size: 100% auto;
}
.header .navbar-nav .nav-link:hover .sub-arrow,
.header .navbar-nav .nav-link.active .sub-arrow,
.header .navbar-nav .nav-link.highlighted .sub-arrow,
.header .navbar-nav .nav-link.has-submenu:hover .sub-arrow {
  background-image: url("../img/chevron-down-red.svg");
}

/* dropdown */
.header .dropdown-menu {
  padding: 5px 0;
  width: 100% !important;
  min-width: 200px !important;
  max-width: 100% !important;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.header .dropdown-item {
  padding: 8px 20px;
  font-size: 15px;
  white-space: normal;
}
.header .dropdown-item:hover {
  color: #fff;
  background: #06b2fe;
}

/* search */
#search-toggle {
  padding: 0;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 0;
  background: url("../img/search-black.svg") no-repeat center center #eee;
  background-size: 20px auto;
  transition: all 0.3s;
}
#search-toggle:hover {
  background-image: url("../img/search-white.svg");
  background-color: #06b2fe;
}
.header .search {
  position: relative;
  display: none;
  padding: 10px 0 20px 0;
}
.header .search-input {
  padding: 0 15px 0 40px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  color: #333;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  background: #fff;
  transition: all 0.3s;
}
.header .search-input:hover,
.header .search-input:focus {
  border-color: #06b2fe;
}
.header .search-go {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: url("../img/search-black.svg") no-repeat center center transparent;
  background-size: 16px auto;
  border: 0;
}

/* BOX & BOX TITLE ----------------------------------------------------- */
.box {
  position: relative;
  padding: 70px 0;
}
.box-subtitle {
  margin: -20px 0 60px 0;
  font-size: 16px;
  line-height: 1.4;
  color: #67677a;
}
.box-subtitle2 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
  color: #67677a;
}
.centered {
  text-align: center;
}

/* box-head*/
.box-head {
  position: relative;
  margin-bottom: 50px;
}
.box-head .box-title {
  margin-bottom: 0 !important;
  width: calc(100% - 230px);
}
.box-head .box-subtitle {
  margin-top: 20px;
  width: calc(100% - 230px);
}
.box-head .btn {
  position: absolute;
  right: 0;
  padding: 0 15px !important;
}
.box-head1 .btn {
  top: 5px;
}
.box-head2 .btn {
  bottom: 0;
}
.box-head .btn span {
  padding-right: 30px;
  height: 20px;
  line-height: 20px;
  background: url("../img/arrow-up-white.svg") no-repeat right center;
  background-size: 20px auto;
}
.page-inner .box-head .btn {
  top: 0;
}

/* fonts */
.box .semi {
  font-weight: 500;
}
.box .bold {
  font-weight: bold;
}

/* slick sliders */
/* slick dots */
.slick-dots {
  position: absolute;
  left: 120px;
  right: 10px;
  bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.slick-dots li {
  margin: 0;
  padding: 10px 5px;
  height: auto;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}
.slick-dots li button {
  width: 40px;
  height: 3px;
  font-size: 0;
  line-height: 1;
  border: 0;
  border-radius: 3px;
  background: #dfdfdf;
}
.slick-dots .slick-active button {
  background: #06b2fe;
}

/* slick arrows */
.slick-slider .slick-arrow {
  position: absolute;
  top: calc(50% - 56px);
  z-index: 30;
  margin: 0;
  padding: 0;
  width: 46px;
  height: 46px;
  font-size: 0;
  line-height: 0;
  border: 1px solid #f0f0f0;
  border-radius: 100%;
  background: url("../img/arrow-right.svg") no-repeat 55% center #fff;
  background-size: 24px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.slick-slider .slick-arrow:hover {
  background-image: url("../img/arrow-right-white.svg");
  background-color: #06b2fe;
  border-color: #06b2fe;
}
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.7;
}
.slick-slider .slick-arrow.slick-disabled:hover {
  background-image: url("../img/arrow-right.svg");
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.slick-slider .slick-prev {
  left: -10px;
  transform: rotate(180deg);
}
.slick-slider .slick-next {
  right: -10px;
}

/* HERO ----------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(267.13deg, rgba(0, 0, 0, 0) 0.49%, rgba(0, 0, 0, 0.2) 97.25%);
}
.hero .lc {
  padding: 100px 0;
}
.hero .rc {
  position: relative;
}
.hero .rc .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 90%;
}
.hero .title {
  margin-bottom: 30px !important;
}
.hero .subtitle {
  margin-bottom: 40px;
  color: #67677a;
}

/* WORKS ------------------------------------------------------------- */
.works .items {
  margin: 0 -12px;
}
.works .item {
  padding: 12px;
  height: 440px;
}
.works .item .img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s;
}
.works .item .img:hover {
  opacity: 0.8;
}
.works .item.double {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.works .item.double .img {
  height: 48%;
}
.works .item .link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 8px;
  background: #06b2fe;
}
.works .item.double .link {
  height: 48%;
}
.works .item .link .sp1 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid transparent;
}
.works .item .link .sp2 {
  padding-right: 30px;
  height: 20px;
  line-height: 20px;
  background: url("../img/arrow-right-white.svg") no-repeat right center;
  background-size: 20px auto;
}
.works .item .link:hover {
  background: #008ecc;
}
.works .item .link:hover .sp1 {
  border-bottom-color: #fff;
}

/* SERVICES ---------------------------------------------------------- */
.services .items {
  margin: 0 -12px;
}
.services .item {
  padding: 12px;
}
.services .item-wrap {
  position: relative;
  display: block;
  height: 100%;
  color: #1b1b1e;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}
.services .item-wrap:hover {
  color: #06b2fe;
}
.services .item .img {
  height: 330px;
  border-radius: 8px 8px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.services .item .hh {
  padding: 18px 15px 20px 15px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 0 0 8px 8px;
}

/* services-slider */
.services-slider .slick-track {
  display: flex;
}
.services-slider .item {
  height: auto;
}
.services-slider .item-wrap {
  height: 100%;
}

/* PLUSES ------------------------------------------------------------ */
.pluses {
  background: #f4f4f4;
}
.pluses .items {
  margin: 0 -20px;
}
.pluses .item {
  margin-bottom: 40px;
  padding: 0 20px;
  padding-top: 80px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 56px auto;
}
.pluses .item .hh {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}
.pluses .item .txt {
  font-size: 16px;
  line-height: 1.4;
  color: #67677a;
}
.pluses .item1 {
  background-image: url("../img/pluses-01.svg");
}
.pluses .item2 {
  background-image: url("../img/pluses-02.svg");
}
.pluses .item3 {
  background-image: url("../img/pluses-03.svg");
}
.pluses .item4 {
  background-image: url("../img/pluses-04.svg");
}
.pluses .item5 {
  background-image: url("../img/pluses-05.svg");
}
.pluses .item6 {
  background-image: url("../img/pluses-06.svg");
}

/* pluses-inner */
.pluses-inner .item {
  text-align: left;
  background-position: 20px 0px;
}

/* SETEXT ------------------------------------------------------------ */
.setext {
  line-height: 1.5;
}
.setext section {
  margin-bottom: 60px;
  color: #434343;
}

.setext ol {
  margin: 0 0 30px 0;
  padding: 0 0 0 17px;
}
.setext ol li {
  padding: 0;
}
.setext ol li:not(:last-child) {
  margin-bottom: 8px;
}

.setext ul {
  margin: 0 0 30px 0;
  padding: 0;
}
.setext ul li {
  list-style: none;
  position: relative;
  padding: 0;
  padding-left: 15px;
}
.setext ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #06b2fe;
}
.setext ul li:not(:last-child) {
  margin-bottom: 8px;
}

.setext .cols .lc {
  padding-right: 80px;
}
.setext .img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* QUIZ ----------------------------------------------------------- */
.quiz .box-title.bt2 {
  display: none;
}
.quiz-left,
.quiz-right {
  width: 50%;
}
.quiz-left {
  padding-right: 60px;
}
.quiz-right {
  padding-left: 0;
}
.quiz .manager .hh {
  margin-bottom: 20px;
  font-size: 18px;
}
.quiz .manager .foto {
  margin-bottom: 20px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  background: url("https://grizly.club/uploads/posts/2023-08/1691270675_grizly-club-p-kartinki-avatarki-bez-fona-55.jpg") no-repeat center center;
  background-size: cover;
}
.quiz .manager .spec {
  margin-bottom: 30px;
}
.quiz .manager .spec .name {
  margin-bottom: 5px;
  font-size: 18px;
}
.quiz .manager .spec .who {
  font-size: 16px;
  color: #67677a;
}
.quiz .manager .social .link {
  padding-left: 56px;
  width: auto;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  color: #1b1b1e;
  background-position: 0 0;
  background-size: auto 100%;
}
.quiz .manager .social .link:not(:last-child) {
  margin-right: 30px;
}
.quiz-form {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* CATALOG -------------------------------------------------------- */
.catalog .items {
  margin: 0 -15px;
}
.catalog .item {
  padding: 15px;
}
.catalog .item-wrap {
  display: block;
  padding: 15px;
  height: 330px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.catalog .item-wrap:hover {
  border-color: #eee;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.catalog .item .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ClIENTS ----------------------------------------------------------- */
.clients .items {
  justify-content: center;
  margin: 0 -10px;
}
.clients .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 120px;
  text-align: center;
}
.clients .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* REVIEWS ---------------------------------------------------------- */
.reviews .reviews-slider {
  margin: 0 -15px;
}
.reviews-slider .slick-track {
  display: flex;
}
.reviews .item {
  padding: 15px;
  height: auto;
}
.reviews .item-wrap {
  position: relative;
  padding: 30px 40px 80px 40px;
  height: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.reviews .item .top {
  margin-bottom: 30px;
}
.reviews .stars {
  display: block;
  margin-bottom: 10px;
  width: 145px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% auto;
}
.reviews .stars-5 {
  background-image: url("../img/stars-5.svg");
}
.reviews .stars-4 {
  background-image: url("../img/stars-4.svg");
}
.reviews .name {
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.reviews .txt {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.reviews .bottom {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-right: 70px;
  height: 50px;
  background: url("https://static.tildacdn.com/tild3964-3733-4635-a137-333963306431/TypeLandscape_ColorB.png") no-repeat right center;
  background-size: auto 100%;
}
.reviews .date {
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  color: #67677a;
}

/* FEED ------------------------------------------------------------- */
.feed {
  background: #f4f4f4;
}
.feed .lc {
  padding-right: 100px;
}
.feed .order-form {
  padding-top: 30px;
}
.feed .order-form .fields {
  margin: 0 -15px;
}
.feed .order-form .fields .field {
  padding: 0 15px;
}
.feed .order-form .input {
  padding: 0;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
}
.feed .order-form .input:focus {
  border-color: !important;
  outline: none !important;
}
.feed .order-form .pers {
  margin-top: -5px;
  margin-bottom: 0;
  color: #67677a;
}
.feed .order-form .pers a {
  color: #67677a;
  border-bottom: 1px solid;
}
.feed .order-form .pers a:hover {
  color: #06b2fe;
}
.feed .order-form .btn {
  margin-bottom: 0;
  padding: 0 15px;
  width: 100%;
}
.feed .rc {
  border-radius: 16px;
  background: url("../img/image-feed.jpg") no-repeat right center;
  background-size: cover;
}

/* PRICE ---------------------------------------------------------- */
/* price tabs */
.price .nav-tabs {
  border: 0;
}
.price .nav-link {
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
}
.price .nav-link {
  color: #454545;
}
.price .nav-link.active {
  color: #06b2fe;
  border-color: #06b2fe;
  background: #fff;
}
.price .nav-link:hover {
  color: #fff;
  border-color: #06b2fe;
  background: #06b2fe;
}
.price .nav-item:not(:last-child) {
  margin-right: 15px;
}
.price .tab-pane {
  padding-top: 50px;
}

/* price-table */
.price-table-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.price-table {
  width: 100%;
}
.price-table tr th {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #dfdfdf;
  background: #f4f4f4;
}
.price-table tr td {
  padding: 15px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid #dfdfdf;
}
.price-note {
  font-size: 14px;
  color: #676767;
}

/* ABOUT ------------------------------------------------------------- */
.text-include {
  background: url("../img/image-text-include.png") no-repeat right center
    #f4f4f4;
  background-size: auto 100%;
}
.text-include .container {
  padding: 30px 0;
}
.text-include .box-title,
.text-include .box-subtitle {
  width: 50%;
}
.text-include .box-subtitle {
  width: 50%;
}

/* INNERPAGE --------------------------------------------------------- */
.page-inner {
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.page-inner .page-row {
  position: relative;
}

/* breadcrumbs */
.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs .elem {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.1;
  color: #6d6d6d;
}
.breadcrumbs .elem:not(:last-child) {
  margin-right: 7px;
}
.breadcrumbs .elem:not(:last-child):after {
  content: "/";
  padding-left: 10px;
}
.breadcrumbs .elem:hover {
  color: #06b2fe;
}
.breadcrumbs .elem.current {
  color: #1b1b1e;
}

/* page-header */
.page-header {
  padding-top: 0 !important;
}
.page-header .box-subtitle {
  margin-bottom: 40px !important;
}

/* PAGE-LINKS -------------------------------------------------------- */
.page-links-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}
.page-links .link {
  position: relative;
  padding: 18px 40px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #454545;
}
.page-links .link:not(:last-child):after {
  content: "";
  position: absolute;
  top: 15px;
  right: -1px;
  bottom: 15px;
  width: 1px;
  background: #ddd;
}
.page-links .link:hover {
  color: #fff;
  background: #06b2fe;
}

/* GALLERY ----------------------------------------------------------- */
.gallery-slider {
  margin: 0 -15px;
}
.gallery .item {
  padding: 15px;
}
.gallery .item .img {
  display: block;
  height: 540px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* SHEMA -------------------------------------------------------------- */
.shema .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
.shema .item .num {
  padding-right: 20px;
  width: 100px;
  font-size: 21px;
  color: #676767;
  line-height: 1.2;
}
.shema .item .hh {
  padding-right: 20px;
  width: calc(50% - 100px);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}
.shema .item .txt {
  width: 50%;
  font-size: 16px;
  line-height: 1.4;
  color: #676767;
}
.shema .item .txt a {
  white-space: nowrap;
}

/* CONTACTS ----------------------------------------------------------- */
.contacts .lc {
  padding-right: 40px;
}
.contacts .rc {
  position: relative;
}
.contacts .item:not(:last-child) {
  margin-bottom: 40px;
}
.contacts .hh {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  color: #67677a;
}
.contacts .cont {
  font-size: 24px;
  font-weight: 500;
}
.contacts .cont a {
  line-height: 1;
  white-space: nowrap;
  color: #1b1b1e;
}
.contacts .cont a:hover {
  color: #06b2fe;
}
.contacts .social .link {
  width: 40px;
  height: 40px;
}
.contacts .map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  border-radius: 24px;
}

/* COMMON ------------------------------------------------------------------------ */
/* checkbox custom */
.check {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.check label {
  margin: 0 !important;
  padding-left: 7px;
  width: calc(100% - 16px) !important;
  line-height: 1.2;
  font-size: 15px;
  font-weight: normal;
  color: #1b1b1b;
  text-align: left;
  transition: all 0.3s;
  cursor: pointer;
}
.check label:hover {
  color: #06b2fe !important;
}
.check input[type="checkbox"] {
  display: none;
}
.jq-checkbox {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
.jq-checkbox.checked {
  background: url("../img/check-white.svg") no-repeat center center;
  background-size: 10px auto;
  border-color: #06b2fe;
  background-color: #06b2fe;
}
.jq-checkbox.checked + label {
  color: #06b2fe !important;
}

/* radio custom */
.radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.radio label {
  margin: 0 !important;
  padding-left: 7px;
  width: calc(100% - 16px) !important;
  line-height: 1.2;
  font-size: 15px;
  font-weight: normal;
  color: #1b1b1b;
  text-align: left;
  transition: all 0.3s;
  cursor: pointer;
}
.radio label:hover {
  color: #06b2fe !important;
}
.radio input[type="checkbox"] {
  display: none;
}
.jq-radio {
  position: relative;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 100%;
  cursor: pointer;
}
.jq-radio.checked {
  border-color: #06b2fe;
  background: #06b2fe;
  background-size: 10px auto;
}
.jq-radio.checked + label {
  color: #06b2fe !important;
}
.jq-radio.checked:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
}

/* file */
.jq-file {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.jq-file__name {
  position: relative;
  overflow: hidden;
  width: calc(100% - 180px);
  height: 36px;
  line-height: 34px;
  font-size: 15px;
  color: #676767;
  border-bottom: 1px solid #ccc;
}
.jq-file__browse {
  padding: 0 15px;
  width: 160px;
  height: 36px;
  line-height: 34px;
  font-size: 15px;
  color: #06b2fe;
  border-radius: 4px;
  border: 1px solid #06b2fe;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.jq-file__browse:hover,
.jq-file__browse:active,
.jq-file__browse:focus {
  color: #fff;
  background: #06b2fe;
}

/* placeholders */
::-webkit-input-placeholder {
  font-weight: normal;
  color: #656565;
}
::-moz-placeholder {
  font-weight: normal;
  color: #656565;
}
:-moz-placeholder {
  font-weight: normal;
  color: #656565;
}
:-ms-input-placeholder {
  font-weight: normal;
  color: #656565;
}

input[placeholder] {
  text-overflow: ellipsis;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}
:focus::-moz-placeholder {
  color: transparent;
}
:focus:-moz-placeholder {
  color: transparent;
}
:focus:-ms-input-placeholder {
  color: transparent;
}

/* placeholders */
.input.dark ::-webkit-input-placeholder {
  font-weight: normal;
  color: #fcfcfc;
  text-overflow: ellipsis;
}
.input.dark ::-moz-placeholder {
  font-weight: normal;
  color: #fcfcfc;
  text-overflow: ellipsis;
}
.input.dark :-moz-placeholder {
  font-weight: normal;
  color: #fcfcfc;
  text-overflow: ellipsis;
}
.input.dark :-ms-input-placeholder {
  font-weight: normal;
  color: #fcfcfc;
  text-overflow: ellipsis;
}

.input.dark:focus::-webkit-input-placeholder {
  color: transparent;
}
.input.dark:focus::-moz-placeholder {
  color: transparent;
}
.input.dark:focus:-moz-placeholder {
  color: transparent;
}
.input.dark:focus:-ms-input-placeholder {
  color: transparent;
}

/* FORMS ------------------------------------------------------------------------------------- */
.order-form .fields {
  align-items: center;
}
.order-form .field {
  margin-bottom: 20px;
}
.order-form .input {
  padding: 0 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #111;
  text-align: left;
  border-radius: 10px;
  border: 0;
  background: #fff;
}
.order-form .input:focus {
  outline: 1px solid #06b2fe !important;
}
.order-form .btn-box {
  padding-top: 10px;
}
.order-form .btn:disabled {
  cursor: default;
}
.order-form .pers {
  font-size: 14px;
}
.order-form .pers a {
  border-bottom: 1px solid;
}

/* FOOTER ------------------------------------------------------------- */
.footer {
  padding: 80px 0;
  font-size: 14px;
  color: #b1b1b1;
  background: #f4f4f4;
}
.footer a {
  color: #000;
}
.footer a:hover {
  color: #06b2fe;
}

/* ft1 */
.footer .ft1 {
  padding-right: 40px;
}

/* ft2 */
.footer .ft2 {
  padding: 5px 40px 0 40px;
}

/* logo */
.footer .footer-logo {
  display: block;
  margin-bottom: 40px;
  color: #06b2fe;
}
.footer .logo-name {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}
.footer .logo-text {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #f0f0f0;
}

/* phones */
.footer .phones {
  margin-bottom: 15px;
}
.footer .phones a {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.footer .phones a:not(:last-child) {
  margin-bottom: 10px;
}

/* footer contacts */
.footer .email {
  margin-bottom: 20px;
}
.footer .social {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.footer .social .link {
  padding-left: 35px;
  width: auto;
  height: 24px;
  line-height: 24px;
  color: #fff;
  background-position: left center;
  filter: grayscale(1);
}
.footer .social .link:hover {
  filter: none;
  color: #fff;
}
.footer .address {
  margin-bottom: 20px;
}
.footer .time p {
  margin: 0;
}
.footer .time p:not(:last-child) {
  margin-bottom: 7px;
}

/* ft-menu */
.footer .ft-menu {
  width: 100%;
}
.footer .ft-menu .hh {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
}
.footer .ft-menu .link {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
.footer .ft-menu .link:not(:last-child) {
  margin-bottom: 15px;
}

/* ft3 */
.footer .ft3 {
  padding-top: 5px;
  padding-left: 40px;
}
.feed-footer .hh {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}
.feed-footer .input {
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid !important;
  border-radius: 0 !important;
  background: none !important;
  color: #fcfcfc !important;
}
.feed-footer .input:active,
.feed-footer .input:focus {
  outline: none !important;
  border: 0 !important;
  border-bottom: 1px solid !important;
}
.feed-footer .btn {
  width: 100%;
}
.feed-footer .pers {
  color: #656565;
}
.feed-footer .pers a {
  color: #8b8b8b;
}

/* ft4 */
.footer .ft4 {
  margin-top: 40px;
  padding: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #000;
}
.footer .ft4 .ofert {
  padding-left: 30px;
  text-align: right;
}

/* MODAL ---------------------------------------------------------------------------------------- */
.modal {
  background-color: rgba(28, 34, 46, 0.7); /* #1c222e */
}
.modal .modal-dialog {
  z-index: 99999;
  max-width: 600px;
}
.modal .modal-content {
  border: 0;
  border-radius: 15px;
  background: #f3f3f3;
}
.modal .modal-body {
  padding: 60px;
  padding-top: 45px;
}
.modal .modal-close {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  padding: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: 0;
  background: url("../img/cancel.svg") no-repeat center center;
  background-size: 14px auto;
  opacity: 0.5;
  transition: all 0.3s;
}
.modal .modal-close:hover {
  opacity: 1;
}
.modal .modal-title {
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
  line-height: 1.2;
  color: #111;
}
.modal .note {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
  color: #676767;
}
.modal .input {
  background: #fff;
}
.modal .bottom {
  align-items: center;
  padding-top: 10px;
}
.modal .btn-box {
  margin: 0;
  padding: 0;
}
.modal .btn {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  width: 200px;
}
.modal .pers {
  margin: 0;
  padding-left: 15px;
  width: calc(100% - 200px);
  font-size: 13px;
}

/* GOUP BUTTON */
.goup {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: url("../img/chevron-down.svg") no-repeat center center #fff;
  background-size: 20px auto;
  transform: rotate(180deg);
  box-shadow: 0px 10px 52px -10px rgba(0, 0, 0, 0.36);
}
.goup:hover {
  background-color: #06b2fe;
  background-image: url("../img/chevron-down-white.svg");
}

/* pk page */
.pk-page .title1 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.2;
}
.pk-page .title2 {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.3;
}
.pk-content {
  padding-top: 40px;
}
.pk-content .title1,
.pk-content .title2 {
  text-align: left;
}
.pk-content section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #999;
  font-size: 16px;
  line-height: 1.6;
}
.pk-content section h4 {
  margin-bottom: 20px;
}
.pk-content section p {
  margin-bottom: 20px;
}
.pk-menu {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  border-bottom: 1px solid #999;
}

/* MEDIA --------------------------------------------------------------------------------------- */
@media (max-width: 1400px) {
  .header .address,
  .header .time,
  .header .email,
  .header .top-links .link {
    font-size: 14px;
  }

  .header .logo-name {
    font-size: 20px;
  }

  .header .phone .link {
    font-size: 15px;
    font-weight: 500;
  }
  .header .call .link {
    font-size: 15px;
  }
  .header .calc .btn {
    padding: 0 15px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  #search-toggle {
    width: 40px;
    height: 40px;
  }

  .header .navbar-nav .nav-link {
    padding: 10px !important;
  }

  .works .item {
    height: 400px;
  }

  .services .item .img {
    height: 300px;
  }
  .services .item .hh {
    font-size: 20px;
  }

  .gallery .item .img {
    height: 480px;
  }
}

@media (max-width: 1300px) {
  .header-bottom .logo {
    order: 1;
  }
  .header-bottom .contact {
    order: 2;
  }
  .header-bottom #search-toggle {
    order: 3;
  }

  .header-bottom .menu-container {
    order: 4;
    margin-top: 15px;
    padding: 15px 0 0 0;
    width: 100%;
    border-top: 1px solid #eee;
  }
  .header .navbar-nav {
    justify-content: space-between;
    width: 100%;
  }
  .header .navbar-nav .nav-link {
    padding: 10px 20px !important;
  }

  .header .phones {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  .header .phone {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .header .phone .link {
    font-size: 18px;
  }
  .header .call .link {
    font-size: 16px;
  }

  .hero .lc {
    padding: 80px 0;
  }

  .works .item {
    height: 380px;
  }

  .services .item .img {
    height: 280px;
  }
  .services .item .hh {
    font-size: 18px;
  }

  .price .nav-link {
    font-size: 15px;
  }
  .price .tab-pane {
    padding-top: 40px;
  }

  .catalog .item-wrap {
    height: 300px;
  }

  .gallery .item .img {
    height: 450px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 44px;
  }

  .box {
    padding: 60px 0;
  }

  .box-head .btn {
    font-size: 15px;
  }
  .box-head1 .btn {
    top: 0;
  }

  .hero .lc {
    padding: 70px 0;
  }
  .hero .rc .img {
    background-size: auto 80%;
  }

  .page-links .link {
    padding: 18px 30px;
  }

  .works .item {
    height: 350px;
  }
  .works .item .link .sp1 {
    font-size: 24px;
  }

  .services .item .img {
    height: 250px;
  }

  .services-slider .item .img {
    height: 300px;
  }

  .quiz .box-title {
    display: none;
  }
  .quiz .box-title.bt2 {
    display: block;
  }
  .quiz-left {
    width: 40%;
  }
  .quiz-right {
    width: 60%;
  }
  .quiz .manager .foto {
    width: 160px;
    height: 160px;
  }
  .quiz .manager .social .link {
    padding-left: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .price .nav-tabs {
    margin: 0 -5px;
  }
  .price .nav-item {
    margin: 5px;
  }
  .price .nav-item:not(:last-child) {
    margin-right: 5px;
  }
  .price .nav-link {
    font-size: 14px;
  }
  .price .tab-pane {
    padding-top: 20px;
  }
  .price-table td {
    padding: 15px 10px;
    font-size: 15px;
  }

  .gallery .item .img {
    height: 400px;
  }

  .catalog .item-wrap {
    height: 280px;
  }

  .feed .lc {
    padding-right: 40px;
  }
  .feed .order-form {
    padding-top: 0;
  }

  .setext .cols .lc {
    padding-right: 60px;
  }

  .text-include {
    background-position: 120% center;
  }

  .order-form .pers {
    font-size: 13px;
  }

  .contacts .cont {
    font-size: 22px;
  }

  .footer .ft1 {
    padding-right: 30px;
  }
  .footer .ft2 {
    padding: 5px 30px 0 30px;
  }
  .footer .ft3 {
    padding-left: 30px;
  }
  .footer .social .link {
    font-size: 0;
  }
  .feed-footer .hh {
    font-size: 18px;
  }

  .slick-slider .slick-arrow {
    top: calc(50% - 46px);
  }

  .goup {
    width: 40px;
    height: 40px;
    background-size: 18px auto;
  }
}

@media (max-width: 1100px) {
  .setext .cols .lc {
    padding-right: 40px;
  }

  .gallery .item .img {
    height: 380px;
  }

  .text-include .container {
    padding: 0;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 38px;
  }

  .menu-btn {
    display: block;
    position: absolute;
    z-index: 9991;
    top: 20px;
    left: 0;
  }
  .menu-btn[aria-expanded="true"] {
    position: fixed;
    left: 30px;
  }

  .header .menu-container {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .header .menu.custom-scroll,
  .header .slimScrollDiv {
    height: 100% !important;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    z-index: 9990;
    padding: 80px 0 40px 0;
    transform: translateX(-100%);
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
  }
  .header .menu.show {
    transform: translateX(0%);
  }

  .header .navbar-nav {
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
  }
  .header .navbar-nav > .nav-item:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid #dfdfdf;
  }
  .header .navbar-nav .nav-link {
    padding: 15px !important;
    font-size: 18px;
    color: #1b1b1e;
    border-radius: 5px;
  }
  .header .navbar-nav .nav-link:hover {
    color: #06b2fe;
  }
  .header .navbar-nav .nav-link .sub-arrow {
    z-index: 10;
    top: 15px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url("../img/chevron-down.svg");
    background-size: 14px auto;
  }
  .header .navbar-nav .nav-link.has-submenu.highlighted {
    color: #06b2fe;
  }
  .header .navbar-nav .nav-link.has-submenu.highlighted .sub-arrow {
    background-image: url("../img/chevron-down-red.svg");
  }
  .header .dropdown-menu {
    box-shadow: none;
    background: #f3f3f3;
  }

  .header .contact-mob {
    padding: 20px 30px;
  }
  .header .contact-mob .phone,
  .header .contact-mob .address,
  .header .contact-mob .email {
    margin-bottom: 10px;
  }
  .header .contact-mob .social {
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .header-top .cols {
    padding: 10px 0;
  }
  .header .logo {
    margin-left: 60px;
  }
  .header .logo-name {
    font-size: 19px;
  }
  .header .logo-text {
    font-size: 14px;
  }
  .header .phone .link {
    font-size: 16px;
  }
  .header .call .link {
    font-size: 15px;
  }

  .box {
    padding: 50px 0;
  }

  .hero .lc {
    padding: 60px 0;
  }
  .hero .rc .img {
    background-size: auto 70%;
  }

  .page-links-box {
    margin: 0 -5px;
    border: 0;
  }
  .page-links .link {
    margin: 5px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
  }

  .works .item.double:last-child {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .works .item.double:last-child > a {
    width: 48.5%;
    height: 100%;
  }
  .works .item .link .sp1 {
    font-size: 28px;
  }

  .services .item .img {
    height: 280px;
  }

  .setext .cols .lc {
    margin-bottom: 40px;
    padding-right: 0;
  }
  .setext .cols .rc {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
  }
  .setext .cols .rc .img {
    margin-top: -15%;
  }

  .quiz-left {
    order: 2;
    width: 100%;
    padding-right: 0;
  }
  .quiz-right {
    order: 1;
    width: 100%;
    margin-bottom: 50px;
  }
  .quiz .manager {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .quiz .manager .hh {
    margin-bottom: 30px;
    width: 100%;
    font-size: 24px;
    font-weight: 500;
  }
  .quiz .manager .hh br {
    display: none;
  }
  .quiz .manager .spec {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding-right: 40px;
    width: 70%;
  }
  .quiz .manager .foto {
    margin-bottom: 0;
    width: 140px;
    height: 140px;
  }
  .quiz .manager .info {
    padding-left: 20px;
    width: calc(100% - 140px);
  }
  .quiz .manager .social {
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
  }
  .quiz .manager .social .link:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .gallery .item .img {
    height: 350px;
  }

  .catalog .items {
    justify-content: center;
  }

  .clients .item {
    height: 100px;
  }

  .reviews .item-wrap {
    padding-bottom: 70px;
  }
  .reviews .stars {
    width: 130px;
    height: 20px;
  }
  .reviews .name {
    font-size: 18px;
  }
  .reviews .txt {
    font-size: 15px;
  }
  .reviews .bottom {
    height: 40px;
  }
  .reviews .date {
    font-size: 15px;
  }

  .text-include {
    background-position: 140% center;
  }
  .text-include .box-title,
  .text-include .box-subtitle {
    width: 55%;
  }

  .shema .item {
    padding: 25px 0;
  }
  .shema .item .num {
    padding: 0;
    width: 60px;
  }
  .shema .item .hh {
    width: calc(50% - 60px);
    font-size: 20px;
  }
  .shema .item .txt {
    font-size: 15px;
  }

  .feed .box-title {
    font-size: 30px !important;
  }
  .feed .box-subtitle {
    margin-bottom: 30px !important;
  }
  .feed .order-form .btn-box {
    padding-top: 10px !important;
  }
  .feed .order-form .btn {
    font-size: 15px;
  }

  .footer .ft2 {
    padding-right: 0;
  }
  .footer .ft3 {
    padding-left: 0;
  }
  .feed-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .feed-footer .hh {
    margin: 0;
    width: 200px;
    font-size: 20px;
  }
  .feed-footer .order-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    width: calc(100% - 200px);
  }
  .feed-footer .order-form .field {
    margin: 0;
    padding: 0 15px;
    width: 33.3%;
  }
  .feed-footer .order-form .pers {
    padding: 0 0 0 15px;
    width: 33.3%;
  }
  .feed-footer .btn {
    padding: 0 10px;
    font-size: 15px;
  }
  .feed-footer .order-form .form-error {
    width: 100%;
  }

  .jq-file .jq-file__name {
    font-size: 13px;
  }
  .jq-file .jq-file__browse {
    font-size: 14px;
  }

  .pk-page .title1 {
    font-size: 32px;
  }
  .pk-page .title2 {
    font-size: 24px;
  }

  .modal .modal-dialog {
    max-width: 600px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 36px;
  }

  .header .phones {
    flex-direction: column;
    align-items: flex-end;
  }
  .header .phone {
    margin-right: 0;
    margin-bottom: 3px;
  }

  .hero .rc .img {
    background-size: auto 65%;
  }

  .services .item .img {
    height: 250px;
  }

  .catalog .item-wrap {
    height: 250px;
  }

  .text-include {
    padding-bottom: 350px !important;
    background-position: center bottom;
    background-size: auto 350px;
  }
  .text-include .box-title,
  .text-include .box-subtitle {
    width: 100%;
    text-align: center;
  }
  .text-include .box-subtitle {
    margin-bottom: 0 !important;
  }

  .contacts .cont {
    font-size: 20px;
  }

  .feed-footer {
    align-items: flex-start;
  }
  .feed-footer .hh {
    width: 150px;
    font-size: 22px;
    line-height: 1.3;
  }
  .feed-footer .order-form {
    padding-left: 0;
    width: calc(100% - 150px);
  }
  .feed-footer .order-form .field {
    width: 50%;
  }
  .feed-footer .order-form .pers {
    padding: 20px 15px 0 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    margin-bottom: 40px;
    font-size: 36px;
  }
  h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }

  #menu {
    width: 70% !important;
  }

  .header .logo {
    margin-left: 50px;
  }
  .header .phones {
    margin-right: 20px;
  }
  .header .phone .link {
    font-size: 15px;
  }
  .header .calc .btn {
    font-size: 13px;
  }

  .box {
    padding: 45px 0;
  }
  .box-head1 .box-title {
    margin-bottom: 30px !important;
    width: 100%;
  }
  .box-head1 .btn {
    position: static;
  }
  .box-head2 .box-title {
    width: 100%;
  }
  .box-head2 .box-subtitle {
    margin-bottom: 30px !important;
    width: 100%;
  }
  .box-head2 .btn {
    position: static;
  }

  .hero .container {
    position: relative;
  }
  .hero .lc {
    padding: 60px 0;
  }
  .hero .title {
    text-align: center;
  }
  .hero .subtitle {
    padding-top: 50px;
    width: 50%;
  }
  .hero .btn-box {
    width: 50%;
  }
  .hero .rc {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 50%;
    height: 280px;
  }
  .hero .rc .img {
    background-size: auto 100%;
    background-position: right top;
  }

  .works .item.double:last-child > a {
    width: 48.3%;
  }

  .services .item .img {
    height: 280px;
  }

  .services-slider .item .img {
    height: 250px;
  }

  .price-table tr th {
    font-size: 15px;
  }
  .price-table tr td {
    font-size: 15px;
  }

  .catalog .item-wrap {
    padding: 10px;
    height: 220px;
  }

  .clients .item {
    padding: 15px;
    height: 90px;
  }

  .reviews .item {
    padding: 10px;
  }
  .reviews .item-wrap {
    padding: 25px 35px 70px 35px;
  }
  .reviews .txt {
    font-size: 14px;
  }
  .reviews .bottom {
    left: 35px;
    right: 35px;
    bottom: 25px;
  }

  .setext .cols .rc {
    height: 350px;
  }
  .setext .cols .rc .img {
    margin-top: 0;
  }

  .shema .item .hh {
    font-size: 18px;
  }

  .feed .box-title {
    font-size: 28px !important;
  }
  .feed .box-subtitle {
    margin-bottom: 20px !important;
    font-size: 14px;
  }

  .contacts .lc {
    margin-bottom: 40px;
  }
  .contacts .item:not(:last-child) {
    margin-bottom: 30px;
  }
  .contacts .rc {
    height: 400px;
  }

  .footer .ft1 {
    margin-bottom: 30px;
    padding-right: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .footer-logo {
    margin: 0 auto 30px auto;
  }
  .footer .logo-name,
  .footer .logo-text {
    text-align: center;
  }

  .footer .footer-contacts {
    width: 100%;
    text-align: center;
  }
  .footer .social {
    justify-content: center;
  }
  .footer .social .link {
    font-size: 14px;
  }

  .footer .ft2 {
    padding: 0;
  }
  .footer .ft-menu-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .footer .ft-menu .col1 {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .footer .ft-menu .col2 {
    padding-left: 0;
  }
  .footer .ft-menu .hh {
    width: 100%;
  }
  .footer .ft-menu .link {
    margin: 7px 10px;
    text-align: center;
  }
  .footer .ft-menu .link:not(:last-child) {
    margin-bottom: 7px;
  }

  .footer .ft4 {
    margin-top: 30px;
    padding-top: 30px;
  }
  .footer .copy,
  .footer .ofert {
    font-size: 13px;
  }

  .goup {
    display: none;
  }

  .pk-page .title1 {
    font-size: 30px;
  }
  .pk-page .title2 {
    font-size: 20px;
  }

  .slick-dots li button {
    width: 40px;
  }

  .modal .modal-dialog {
    max-width: 90%;
  }
  .modal .modal-title {
    font-size: 36px;
  }
}

@media (max-width: 700px) {
  .header .menu {
    padding-top: 60px;
  }

  .hero .title {
    margin-bottom: 20px !important;
  }

  .box-head .btn {
    top: 35px;
  }

  .services-slider .item .img {
    height: 300px;
  }

  .works .item.double:last-child > a {
    width: 48%;
  }

  .price .nav-link {
    padding: 8px 10px;
  }
}

@media (max-width: 640px) {
  .menu-btn {
    top: 15px;
  }

  .header .logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 50px;
    width: 100%;
    height: 30px;
  }
  .header .logo-name {
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 22px;
  }
  .header .logo-text {
    padding-top: 3px;
    font-size: 16px;
    color: #676767;
  }

  .header .phones {
    flex-direction: row;
  }
  .header .phone {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .header .phone .link {
    font-size: 17px;
  }
  .header .call .link {
    font-size: 16px;
  }
  .header .calc .btn {
    font-size: 14px;
  }

  .box-head .box-title {
    width: calc(100% - 150px);
  }
  .box-head .btn {
    top: 30px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero .subtitle {
    padding-top: 20px;
  }

  .works .item.double:last-child > a {
    width: 47.6%;
  }

  .services .item .img {
    height: 250px;
  }

  .setext .cols .rc {
    height: 300px;
  }

  .quiz .manager .hh {
    font-size: 20px;
  }
  .quiz .manager .spec {
    padding-right: 30px;
  }
  .quiz .manager .foto {
    width: 120px;
    height: 120px;
  }
  .quiz .manager .info {
    width: calc(100% - 120px);
  }
  .quiz .manager .spec .name {
    font-size: 16px;
  }
  .quiz .manager .spec .who {
    font-size: 14px;
  }

  .price .nav-link {
    font-size: 13px;
  }
  .price-table td {
    font-size: 14px;
  }

  .catalog .items {
    margin: 0 -10px;
  }
  .catalog .item {
    padding: 10px;
  }
  .catalog .item-wrap {
    padding: 0;
    height: 200px;
  }

  .reviews .item-wrap {
    padding-bottom: 60px;
  }
  .reviews .item .top {
    margin-bottom: 20px;
  }
  .reviews .stars {
    width: 120px;
    height: 18px;
  }
  .reviews .name {
    font-size: 16px;
  }
  .reviews .txt {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .reviews .bottom {
    height: 30px;
  }
  .reviews .date {
    font-size: 14px;
  }

  .feed-footer .hh {
    margin-bottom: 20px;
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .feed-footer .order-form {
    width: 100%;
  }
  .feed-footer .order-form .pers {
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    margin-bottom: 30px;
    font-size: 32px;
  }
  h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }

  .menu-btn {
    top: 10px;
  }

  .header .address,
  .header .email {
    font-size: 13px;
  }
  .header .address {
    margin: 0;
  }
  .header .email {
    margin-right: 20px;
  }

  .header-bottom .cols {
    justify-content: center;
  }

  .header .logo {
    margin-bottom: 15px;
    padding-bottom: 15px;
    height: auto;
    border-bottom: 1px solid #eee;
  }

  .header-bottom .phones,
  .header-bottom .phone,
  .header-bottom .contact {
    margin-right: 30px;
  }

  .header .phone .link,
  .header .call .link,
  .header .calc .btn {
    display: block;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 100%;
    font-size: 0;
    line-height: 0;
    background-color: #eee;
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .header .phone .link {
    background-image: url("../img/phone.svg");
  }
  .header .call .link {
    background-image: url("../img/icon-order.svg");
  }
  .header .calc .btn {
    background-image: url("../img/icon-calc.svg");
  }

  .header .phone .link:hover,
  .header .call .link:hover,
  .header .calc .btn:hover {
    background-color: #06b2fe;
  }

  .header .phone .link:hover {
    background-image: url("../img/phone-white.svg");
  }
  .header .call .link:hover {
    background-image: url("../img/icon-order-white.svg");
  }
  .header .calc .btn:hover {
    background-image: url("../img/icon-calc-white.svg");
  }

  #search-toggle {
    background-size: 18px auto;
  }

  .header .navbar-nav .nav-link {
    padding: 10px 15px !important;
    font-size: 15px;
    border-radius: 4px;
  }
  .header .navbar-nav .nav-link.has-submenu {
    padding-right: 30px !important;
  }
  .header .navbar-nav .nav-link .sub-arrow {
    top: 0;
    right: 5px;
    bottom: 0;
    height: 100%;
  }
  .header .dropdown-menu {
    margin-bottom: 10px;
    padding: 5px 0;
    border-radius: 4px;
  }
  .header .dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 0;
  }

  .box {
    padding: 40px 0;
  }
  .box-title,
  .box-subtitle {
    text-align: center;
  }
  .box-subtitle {
    font-size: 15px;
  }
  .box-head .box-title {
    margin-bottom: 20px !important;
    width: 100%;
  }
  .box-head .btn {
    position: static;
  }
  .box-head1,
  .box-head2 {
    text-align: center;
  }

  .breadcrumbs .container {
    text-align: center;
  }

  .page-inner {
    padding-top: 20px;
  }
  .page-header .btn-box {
    text-align: center;
  }

  .page-inner .setext .box-title {
    text-align: left;
  }

  .hero .lc {
    padding: 50px 0;
  }
  .hero .subtitle,
  .hero .btn-box {
    width: 100%;
    text-align: center;
  }
  .hero .subtitle {
    padding-top: 0;
  }
  .hero .rc {
    position: relative;
    bottom: 20px;
  }
  .hero .rc .img {
    background-position: center top;
  }

  .works .items {
    margin: 0 -10px;
  }
  .works .item {
    padding: 10px;
    height: 330px;
  }
  .works .item .link .sp1 {
    font-size: 24px;
  }
  .works .item.double:last-child > a {
    width: 47.8%;
  }

  .services .items {
    margin: 0 -10px;
  }
  .services .item {
    padding: 10px;
  }
  .services .item .img {
    height: 220px;
  }
  .services .item .hh {
    padding: 15px;
    font-size: 16px;
  }

  .pluses .items {
    margin: 0;
  }
  .pluses .item {
    padding-top: 70px;
    background-size: 50px auto;
  }
  .pluses .item .hh {
    font-size: 20px;
  }
  .pluses .item .txt {
    font-size: 14px;
  }

  .quiz .manager .spec {
    width: calc(100% - 120px);
  }
  .quiz .manager .foto {
    width: 100px;
    height: 100px;
  }
  .quiz .manager .info {
    width: calc(100% - 100px);
  }
  .quiz .manager .social {
    width: 120px;
  }
  .quiz .manager .social .link {
    padding-left: 40px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .price .nav-tabs {
    justify-content: center;
  }
  .price-table tr th,
  .price-table tr td {
    padding: 10px;
    font-size: 14px;
    text-align: center;
  }

  .catalog .item-wrap {
    padding: 10px;
  }

  .reviews .item-wrap {
    padding-left: 55px;
    padding-right: 55px;
  }
  .reviews .bottom {
    left: 55px;
    right: 55px;
  }

  .gallery .item .img {
    height: 320px;
  }

  .shema .item .num {
    font-size: 20px;
  }
  .shema .item .hh {
    padding-right: 0;
    width: calc(100% - 60px);
    font-size: 20px;
  }
  .shema .item .txt {
    padding: 10px 0 0 60px;
    width: 100%;
  }

  .feed .lc {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .feed .rc {
    height: 300px;
  }

  .contacts .lc {
    padding-right: 0;
  }
  .contacts .item {
    text-align: center;
  }
  .contacts .item .hh:first-child {
    display: none;
  }
  .contacts .social {
    justify-content: center;
  }
  .contacts .social .link {
    width: 35px;
    height: 35px;
  }
  .contacts .social .link:not(:last-child) {
    margin-right: 20px;
  }
  .contacts .rc {
    height: 350px;
  }

  .footer {
    padding: 60px 0;
  }
  .footer .ft4 .copy,
  .footer .ft4 .ofert {
    padding: 0;
    text-align: center;
  }
  .footer .ft4 .copy {
    margin-bottom: 15px;
  }

  .slick-slider .slick-arrow {
    top: calc(50% - 35px);
    width: 35px;
    height: 35px;
    background-size: 20px auto;
  }
  .slick-slider .slick-prev {
    right: auto;
    left: 15px;
  }
  .slick-slider .slick-next {
    right: 15px;
    left: auto;
  }

  .jq-file__name {
    margin-bottom: 15px;
    width: 100%;
  }
  .jq-file__browse {
    width: 150px;
  }

  .spoiler .truncate_more_link {
    font-size: 14px;
  }

  .modal .modal-body {
    padding: 50px;
  }
  .modal .modal-title {
    font-size: 22px;
  }
  .modal .note {
    font-size: 14px;
  }
  .modal .btn-box,
  .modal .btn {
    width: 100%;
  }
  .modal .pers {
    padding: 20px 0 0 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 468px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }

  #menu {
    width: 90% !important;
  }

  .menu-btn {
    top: 18px;
    left: auto;
    right: 0;
  }
  .menu-btn svg {
    width: 28px;
    height: 28px;
  }

  .header-top {
    display: none;
  }
  .header-bottom {
    border-top: 5px solid #333;
  }
  .header-bottom .cols {
    padding: 10px 0;
  }

  .header .logo {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 50px;
    height: auto;
  }
  .header .logo-name {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 20px;
  }
  .header .logo-text {
    font-size: 15px;
  }

  .box-subtitle {
    font-size: 14px;
  }

  .page-links .link {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
  }

  .works .items {
    margin: 0 -8px;
  }
  .works .item {
    padding: 8px;
    height: 300px;
  }
  .works .item.double:last-child > a {
    width: 47.5%;
  }

  .services .item .img {
    height: 200px;
  }

  .pluses .item {
    padding-top: 60px;
    background-size: 44px auto;
  }

  .pluses-inner .items {
    margin: 0;
  }
  .pluses-inner .item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    background-position: center top;
  }

  .setext {
    font-size: 15px;
  }

  .gallery .item .img {
    height: 300px;
  }

  .text-include .fio .name {
    font-size: 16px;
  }
  .text-include .fio .vacancy {
    font-size: 12px;
  }

  .price-table-box {
    position: relative;
    overflow-x: scroll;
  }
  .price-table {
    width: 600px;
  }

  .catalog .item-wrap {
    height: 180px;
  }

  .text-include {
    padding-bottom: 300px !important;
    background-size: auto 300px;
  }

  .feed-footer .order-form {
    padding: 0 20px;
  }
  .feed-footer .order-form .field {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }
  .feed-footer .order-form .input {
    text-align: center;
  }
  .feed-footer .order-form .btn-box {
    padding-top: 10px;
  }
  .feed-footer .order-form .pers {
    padding-top: 0;
  }

  .contacts .item:not(:last-child) {
    margin-bottom: 20px;
  }
  .contacts .cont {
    font-size: 18px;
  }

  .pk-page .title1 {
    font-size: 24px;
  }
  .pk-page .title2 {
    font-size: 18px;
  }
  .pk-content section h4 {
    font-size: 20px;
  }
  .pk-menu {
    font-size: 14px;
  }

  .modal .modal-body {
    padding: 40px;
  }
  .modal .modal-title {
    font-size: 26px;
  }
}

@media (max-width: 400px) {
  .header .logo-name {
    font-size: 18px;
  }
  .header .logo-text {
    font-size: 14px;
  }

  .works .item {
    height: 280px;
  }
  .works .item.double:last-child {
    flex-direction: column;
  }
  .works .item.double:last-child > a {
    width: 100%;
    height: 47.5%;
  }
  .works .item .link {
    align-items: center;
    text-align: center;
  }
  .works .item .link .sp1 {
    font-size: 22px;
  }

  .services .items {
    margin: 0 -8px;
  }
  .services .item {
    padding: 8px;
  }
  .services .item .img {
    height: 200px;
  }
  .services .item .hh {
    font-size: 15px;
    text-align: center;
  }

  .services-slider .item .img {
    height: 300px;
  }
  .services-slider .item .hh {
    text-align: center;
  }

  .setext .cols .rc {
    height: 250px;
  }

  .quiz .manager .hh br {
    display: block;
  }
  .quiz .manager .spec {
    margin-bottom: 30px;
    padding-right: 0;
    width: 100%;
  }
  .quiz .manager .foto {
    width: 90px;
    height: 90px;
  }
  .quiz .manager .info {
    width: calc(100% - 90px);
  }
  .quiz .manager .social {
    flex-direction: row;
    width: 100%;
  }
  .quiz .manager .social .link:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .price-table {
    width: 500px;
  }
  .price-table tr th,
  .price-table tr td {
    padding: 7px;
    font-size: 13px;
  }
  .price-note {
    font-size: 13px;
  }

  .clients .item {
    padding: 10px 20px;
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    height: 80px;
  }

  .text-include {
    padding-bottom: 250px !important;
    background-size: auto 250px;
  }

  .shema .item .num {
    width: 50px;
    font-size: 18px;
  }
  .shema .item .hh {
    width: calc(100% - 50px);
    font-size: 18px;
  }
  .shema .item .txt {
    padding-left: 50px;
    font-size: 14px;
  }

  .feed .box-title {
    font-size: 24px !important;
  }
  .feed .lc {
    padding-bottom: 40px;
  }
  .feed .order-form .fields {
    flex-direction: column;
    margin: 0;
  }
  .feed .order-form .field {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .feed .order-form .input {
    font-size: 15px;
    text-align: center;
  }
  .feed .order-form .pers {
    text-align: center;
  }
  .feed .rc {
    height: 220px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }

  #menu {
    width: 100% !important;
  }

  .hero .lc {
    padding: 40px 0;
  }
  .hero .subtitle {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .works .item {
    height: 250px;
  }
  .works .item.double:last-child {
    height: 300px !important;
  }
  .works .item .link .sp1 {
    margin-bottom: 15px;
  }

  .services .items {
    margin: 0;
  }
  .services .item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .services .item .img {
    height: 200px;
  }

  .services-slider .item {
    width: inherit !important;
    max-width: 100% !important;
    flex: auto !important;
  }

  .catalog .item-wrap {
    padding: 5px;
    height: 160px;
  }

  .pluses-inner .item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .clients .item {
    padding: 15px;
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .reviews .item {
    padding: 15px;
  }
  .reviews .item-wrap {
    padding: 25px;
    padding-bottom: 60px;
  }
  .reviews .bottom {
    left: 25px;
    right: 25px;
  }

  .feed .rc {
    height: 200px;
  }

  .contacts .cont {
    font-size: 17px;
  }
  .contacts .hh {
    font-size: 13px;
  }
  .contacts .rc {
    height: 300px;
  }

  .footer {
    font-size: 13px;
  }
  .footer .social .link {
    padding: 0;
    width: 24px;
    font-size: 0;
  }

  .slick-slider {
    padding-bottom: 50px !important;
  }
  .slick-slider .slick-arrow {
    top: auto;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
  .slick-slider .slick-prev {
    left: calc(50% - 50px);
    right: auto;
  }
  .slick-slider .slick-next {
    right: calc(50% - 50px);
    left: auto;
  }

  .modal .modal-body {
    padding: 35px 30px;
  }
  .modal .modal-title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .modal .note {
    margin-bottom: 20px;
  }
  .modal .pers {
    font-size: 13px;
  }

  .pk-page .title1 {
    font-size: 20px;
  }
  .pk-content section h4 {
    font-size: 18px;
  }
}

@media (max-width: 300px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }

  .header-bottom .phones,
  .header-bottom .phone,
  .header-bottom .contact {
    margin-right: 20px;
  }

  .header .phone .link,
  .header .call .link,
  .header .calc .btn {
    width: 35px;
    height: 35px;
  }

  #search-toggle {
    width: 35px;
    height: 35px;
  }

  .hero .subtitle {
    font-size: 14px;
  }
  .hero .rc {
    height: 250px;
  }

  .works .item {
    height: 220px;
  }

  .setext {
    font-size: 14px;
  }
  .setext .cols .rc {
    height: 200px;
  }

  .quiz .manager .hh {
    font-size: 18px;
    text-align: center;
  }
  .quiz .manager .foto {
    margin: 0 auto 15px auto;
  }
  .quiz .manager .info {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .quiz .manager .social {
    align-items: center;
    justify-content: center;
  }
  .quiz .manager .social .link {
    width: 35px;
    height: 35px;
    font-size: 0;
    line-height: 0;
  }

  .catalog .item-wrap {
    height: 140px;
  }

  .text-include {
    padding-bottom: 200px !important;
    background-size: auto 200px;
  }

  .shema .item {
    padding: 20px 0;
    text-align: center;
  }
  .shema .item .num {
    margin-bottom: 10px;
    width: 100%;
    font-size: 17px;
  }
  .shema .item .hh {
    width: 100%;
    font-size: 17px;
  }
  .shema .item .txt {
    padding-left: 0;
  }

  .feed .rc {
    height: 180px;
  }

  .pk-page .title1 {
    font-size: 18px;
  }
}

@media (max-width: 270px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }

  .hero .rc {
    height: 220px;
  }
}

/* дополнения */

.price-table tbody tr td:first-child .rub:after {
  display: none;
}

.rub:after {
  display: none;
}

.ft-menu li {
  list-style: none;
}

.nav-tabs .nav-item {
  margin-bottom: 10px;
}

.work_cont {
  display: flex;
  flex-wrap: wrap;
}

.works .item.item_work {
  width: 33%;
}

.load-more-container {
  text-align: center;
  margin: 35px auto;
}

@media (max-width: 670px) {
  .works .item.item_work {
    width: 50%;
  }
}

@media (max-width: 420px) {
  .works .item.item_work {
    width: 100%;
  }
}

.page-id-2622 .box {
  padding: 20px 0;
}

.spoiler2 img {
  display: none;
}

.page-id-1450 .spoiler2 h2 {
  margin-top: 30px;
}

.ft-menu .nav-link {
  min-width: 250px;
  width: 100%;
}

@max-width (992px) {
  .header .dropdown-item:hover {
    color: #fff;
    background: #eee;
  }
  .contact .calc {
    display: none;
  }
}
