* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html, body {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-size: 16px;
  min-width: 320px;
  scroll-behavior: smooth;
  background-color: #ffffff;
  height: 100vh;
}

a {
  outline: none;
  text-decoration: none;
}

img {
  outline: none;
  max-width: 100%;
  border: none;
}

ul {
  list-style: none;
}
.headerBtn {
    position: absolute; /* Фиксируем позицию */
    top: 10px; /* Отступ сверху */
    right: 10px; /* Отступ справа */
    background: none; /* Убираем фон */
    border: none; /* Убираем границу */
    cursor: pointer; /* Делаем курсор в виде указателя */
    padding: 5px;
}

.svg-hamburger {
    display: block; /* Делаем SVG блочным */
}
a:hover {
  text-decoration: none !important;
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]::-moz-placeholder {
  color: #717171;
  font-size: 14px;
}

input[type="text"]::-webkit-input-placeholder {
  color: #717171;
  font-size: 14px;
}

input[type="text"]:-ms-input-placeholder {
  color: #717171;
  font-size: 14px;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.width {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}

/*##########
Start header
############*/
.header {
  background: #333333;
  padding: 20px 0 0;
  position: relative;
  z-index: 1000;
}

.headerTop {
  justify-content: space-between;
  align-items: center;
}

.headerRight {
  max-width: 380px;
  width: 100%;
  align-items: center;
}

.headerRight__whatsapp,
.headerRight__phone {
  color: #FFFFFF;
  font-size: 20px;
}

.headerRight__whatsapp:before,
.headerRight__phone:before {
  content: "";
  display: block;
  background: url('../images/icon9.svg') no-repeat;
  width: 34px;
  height: 34px;
  margin-right: 15px;
  position: relative;
  top: -5px;
}

.headerRight__whatsapp:before {
  background: url('../images/icon10.svg') no-repeat;
  width: 45px;
  height: 38px;
  margin-right: 5px;
  margin-left: 30px;
}

.header__line {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  margin-top: 10px;
  margin-bottom: 10px;
}

.headerBottom {
  justify-content: space-between;
}

.navigation {
  max-width: 820px;
  width: 100%;
  padding-top: 10px;
}

.navigationMenu {
  width: 100%;
}

.navigationMenu > li {
  padding: 4px 48px 5px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.navigationMenu > li:first-of-type {
  text-align: left;
  border-left: none;
  padding: 4px 43px 15px 0;
}

.navigationMenu > li > a {
  color: #FFFFFF;
  font-size: 16px;
  padding-bottom: 26px;
  position: relative;
}

.headerSocial {
  max-width: 390px;
  width: 100%;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
}

.headerSocial li {
  margin: 0 10px 0 0;
}

.headerSocial li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  color: #FFFFFF;
}

.headerSocial li a img {
  margin: 0 10px;
}

.navigationMenu > li > a.navigationMenu__catalog:after {
  position: absolute;
  right: -25px;
  top: 3px;
  content: "";
  display: block;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  width: 8px;
  height: 8px;
  transform: rotate(44deg);
}

.navigationMenu > li.navigationMenu__li {
  padding: 4px 68px 5px 37px;
}

.navigationMenuIn {
  position: absolute;
  text-align: center;
  background: #333333;
  padding: 5px 0 5px 0;
  margin: 24px 0 0 -40px;
  display: none;
}

.navigationMenuIn li {
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 0 10px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
  max-width: 240px;
  width: 240px;
  text-align: left;
  padding-left: 40px;
}

.navigationMenuIn li:hover {
  background-color: #fff;
  color: #333333;
}

.navigationMenuIn li:hover a {
  color: #333333;
}

.navigationMenuIn li:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.navigationMenuIn li a {
  color: #FFFFFF;
  font-size: 16px;
}

.navigationMenu > li.navigationMenu__li:hover .navigationMenuIn {
  display: block;
}

.navigationMenu > li:hover > a.navigationMenu__catalog:after {
  transform: rotate(225deg);
}

/*########
End header
##########*/

/*
Start bread
###########*/
.bread {
  margin-top: 60px;
  margin-bottom: 26px;
}

.bread li a span {
  color: #333333;
  font-size: 14px;
  border-bottom: 1px solid;
}

.bread li a:after {
  content: " > ";
  margin: 0 10px;
  color: #333333;
}

.bread li > span {
  font-size: 14px;
}

.titleH1 {
  position: relative;
}

.titleH1:before {
  content: "";
  display: block;
  width: 292px;
  height: 26px;
  background-color: #FECC01;
  position: absolute;
  left: -42px;
  top: 41px;
}

.titleH1 span {
  font: normal 900 58px 'Akrobat', sans-serif;
  color: #333333;
  position: relative;
  z-index: 100;
}

/*###############
Start description
#################*/
.description {
  background: #F5F5F5;
  padding: 56px 0;
  margin-top: 75px;
}

.descriptionImg {
  border: 1px solid #000000;
  padding: 7px;
}

.descriptionIn {
  justify-content: space-between;
}

.descriptionLeft {
  max-width: 500px;
  width: 100%;
}

.descriptionH2 {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 40px 'Akrobat', sans-serif;
  background: url(../images/icon5.svg) no-repeat bottom right;
  max-width: 425px;
  width: 100%;
  display: inline;
  padding-bottom: 12px;
}

.descriptionSize {
  color: #333333;
  font: normal 500 32px 'Lato', sans-serif;
  margin-top: -5px;
}

.description__paragraf {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
  margin-top: 35px;
}

.descriptionList {
  justify-content: space-between;
  margin-top: 85px;
}

.descriptionList li {
  position: relative;
}

.descriptionList li img {
  display: block;
  margin: 0 auto;
}

.descriptionList li span {
  display: block;
  text-transform: uppercase;
  color: #333333;
  font-size: 16px;
  width: 80px;
  margin-top: 15px;
  text-align: center;
}

.descriptionList li:before {
  content: "";
  border-left: 1px solid #000000;
  opacity: .2;
  position: absolute;
  width: 1px;
  height: 50px;
  left: -50px;
  top: 13px;
}

.descriptionList li:first-of-type:before {
  display: none;
}

.projects {
  margin-top: 106px;
}

.projectsList li {
  max-width: 498px;
  width: 100%;
  margin: 0 18px 68px 0;
}

.projectsList li:nth-child(3n+3) {
  margin-right: 0;
}

.projectsList li .projectsList__img {
  border: 1px solid #333333;
  padding: 4px 4px 2px;
  display: block;
  position: relative;
}

.projectsList li .projectsList__img img {
  object-fit: cover;
  max-width: 490px;
  width: 100%;
  height: 255px;
}

.projects__line {
  margin: 0 0 80px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.projectsList li .projectsList__img span {
  position: absolute;
  top: 37px;
  z-index: 1000;
  padding: 5px 15px;
  display: block;
  background: #FECC01;
  color: #333333;
  font: normal 700 18px 'Lato', sans-serif;
}

.projectsList__href {
  color: #333333;
  font: normal 700 18px 'Lato', sans-serif;
  margin-top: 10px;
  display: block;
}


/*##########
Start footer
############*/
.footer {
  background: #333333;
  padding: 70px 0 40px;
}

.footerIn {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.footerTop {
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
}

.footerLeft {
  max-width: 325px;
  width: 100%;
}

.footerLeft p {
  color: #E7ECF0;
  font: normal normal 12px/20px 'Inter', sans-serif;
}

.formConnect {
  margin: 10px 0;
}

.formConnect label {
  color: #E7ECF0;
  font: normal bold 12px 'Inter', sans-serif;
  padding-bottom: 10px;
  display: block;
}


.formConnectInput {
  justify-content: space-between;
}

.formConnectInput input {
  border: 1px solid #B9BBC5;
  max-width: 212px;
  width: 100%;
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  background: none;
  color: #B9BBC5;
}

.formConnectInput__btn {
  border: none;
  background: #767785;
  width: 80px;
  height: 30px;
  font: normal bold 12px 'Inter', sans-serif;
  color: #E7ECF0;
  cursor: pointer;
}

.footerRight {
  max-width: 580px;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
}

.footerMenu li {
  margin-bottom: 20px;
}

.footerMenu li a {
  color: #FFFFFF;
  font: normal 500 16px 'Inter', sans-serif;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.footerMenuSocial {
  max-width: 90px;
  width: 100%;
  margin-right: 20px;
}

.footerMenuSocial li a {
  font: normal 400 12px 'Inter', sans-serif;
}

.footerMenuSocial li {
  margin-bottom: 12px;
}

.footerMenu2 {
  margin-right: 150px;
}

.footerBottomMenu {
  max-width: 580px;
  width: 100%;
  justify-content: space-between;
}

.footerBottomMenu a,
.footerBottomMenu span {
  font: normal normal 12px 'Inter', sans-serif;
  color: #E7ECF0;
}

.footerHref {
  font: normal bold 12px 'Inter', sans-serif;
  color: #E7ECF0;
  margin-top: 40px;
}

.footerBottom {
  justify-content: space-between;
}

.headerBtn {
  display: none;
}

.mobilBlock {
  display: none;
}

/*###########
Start service
#############*/
.serviceList {
  margin-top: 80px;
  margin-bottom: 21px;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}

.serviceList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  position: relative;
}

.serviceList li:after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  border-left: 1px solid #333333;
  position: absolute;
  left: 137%;
}

.serviceListText {
  margin-left: 30px;
}

.serviceListText span {
  color: #333333;
  font: normal normal 32px/100% 'Lato', sans-serif;
  text-transform: uppercase;
}

.serviceListText b {
  display: block;
  color: #333333;
  font: normal 900 40px/100% 'Lato', sans-serif;
}

.serviceList li:last-of-type:after {
  display: none;
}

/*########
Start best
##########*/
.best {
  background-color: #333333;
  padding: 58px 0;
  margin: 120px 0;
}

.bestText {
  color: #FFFFFF;
  font: normal bold 40px/100% 'Akrobat', sans-serif;
  max-width: 580px;
  width: 100%;
  text-transform: uppercase;
}

.bestText img {
  margin-left: 10px;
}

.best__price {
  color: #FECC01;
  font: normal bold 80px/100% 'Akrobat', sans-serif;
  text-transform: uppercase;
}

.bestContent {
  justify-content: space-between;
  align-items: center;
}

.best__btn {
  max-width: 369px;
  width: 100%;
  height: 79px;
  background-color: #FECC01;
  justify-content: center;
  align-items: center;
  color: #333333;
  font: normal bold 18px 'Lato', sans-serif;
}

.best__btn img {
  margin: 0 8px 0 0;
}

.titleH2 {
  color: #333333;
  text-transform: uppercase;
  font: normal 900 40px/100% 'Akrobat', sans-serif;
  position: relative;
}

.titleH2:before {
  content: "";
  display: block;
  width: 250px;
  height: 26px;
  background-color: #FECC01;
  position: absolute;
  left: -42px;
  top: 16px;
  z-index: -1;
}

.layoutFancybox {
  margin: 75px 0 120px;
}

.layoutFancyboxGalary,
.layoutFancybox li {
  margin: 0 15px 0 0;
  position: relative;
  border: 1px solid #333333;
}

.layoutFancybox li a {
  display: block;
  height: 354px;
}

.layoutFancybox li a img {
  object-fit: cover;
  height: 100%;
  padding: 5px;
}

.layoutFancyboxGalary:nth-child(4n+4),
.layoutFancybox li:nth-child(4n+4) {
  margin: 0;
}

.layoutFancyboxGalary {
  position: relative;
  border: 1px solid #333333;
}

.layoutFancyboxGalary a:before,
.layoutFancybox li a:before {
  content: "";
  display: block;
  width: 50px;
  height: 48px;
  background: url('../images/icon19.svg') no-repeat;
  position: absolute;
  bottom: 0;
  right: -1px;
}

/*########
Start home
##########*/
.home {
  background: url('../images/bground.svg') no-repeat top center;
  background-size: cover;
  height: 874px;
}

.homeIn {
  justify-content: flex-end;
}

.homeContent {
  max-width: 756px;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .5);
  background: #FFFFFF;
  margin-top: 145px;
  padding: 63px 58px;
}

.homeTitle {
  font: normal 900 40px/100% 'Akrobat', sans-serif;
}

.homeParagraf {
  color: #333333;
  font-size: 16px;
  padding: 36px 0;
}

.homeBth {
  max-width: 500px;
  width: 100%;
  margin-top: 32px;
}

.homeBth__telegram,
.homeBth__what {
  justify-content: center;
  width: 100%;
  height: 55px;
  background: #FECC01;
  align-items: center;
  color: #333333;
  font-weight: bold;
  font-size: 18px;
}

.homeBth__telegram {
  justify-content: center;
}

.homeBth__what img {
  margin: 0 10px;
}

.homeBth__telegram {
  margin-top: 15px;
  background: #333333;
  color: #FFFFFF;
}

.homeBth__telegram img {
  margin: 0 25px 0 0;
}

.homeMiddle {
  justify-content: space-between;
}

.homeMiddleLeft {
  background: url('../images/icon21.png') no-repeat;
  max-width: 500px;
  width: 100%;
  padding: 19px 25px;
  height: 110px;
}

.homeMiddleLeft p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
}

.homeMiddleLeft p a {
  color: #333333;
  font-size: 16px;
  border-bottom: 1px solid;
}

/*###########
Start facades
#############*/
.facades {
  margin-top: 120px;
}

.facades .titleH2:before {
  width: 150px;
}

.facadesFancybox li {
  max-width: 750px;
  width: 100%;
  border: 1px solid #333333;
  padding: 7px;
  position: relative;
  margin-bottom: 20px;
}

.facadesFancybox li:nth-child(2n+2) {
  margin: 0;
}

.facadesFancybox li a {
  height: 352px;
  display: block;
}

.facadesFancybox li a img {
  width: 100%;
  height: 352px;
  object-fit: cover;
  border: none;
  padding: 0;
}

.free {
  background: url('../images/bground2.jpg') no-repeat top center;
  background-size: cover;
  height: 708px;
  position: relative;
}

.free:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.15449929971988796) 0%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
}

.freeContent {
  justify-content: space-between;
}

.freeLeft {
  max-width: 762px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.freeContent > img {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.freeLeft {
  max-width: 770px;
  width: 100%;
}

.freeTitle {
  margin-top: 220px;
  margin-bottom: 32px;
}

.freeTitle__text {
  font: normal 900 40px/100% 'Akrobat', sans-serif;
  color: #333333;
  text-transform: uppercase;
  display: block;
}

.freeTitle__text span {
  color: #FECC01;
}

.freeLeft p {
  color: #333333;
  font-size: 16px;
}

.freeTitle__text span:after {
  content: "";
  display: block;
  background: url('../images/icon22.svg') no-repeat;
  width: 224px;
  height: 24px;
  position: absolute;
  right: 0;
}

.click {
  margin: 0 0 120px;
}

.click img {
  position: relative;
  top: 10px;
}

.clickBtn {
  max-width: 600px;
  width: 100%;
  justify-content: space-between;
}

.clickBtn a {
  max-width: 285px;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  border: 1px solid #FECC01;
  color: #FECC01;
  font: normal bold 18px 'Lato', sans-serif;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.clickBtn a:hover {
  color: #333333;
  background-color: #FECC01;
}

.multi-vertical {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}

.multi-vertical .slider-nav .slick-list {
  padding: 0 !important;
}

.multi-vertical .slider-for .slick-slide img {
  width: 99.4%;
  display: block;
  object-fit: cover;
  border: 1px solid #333333;
  padding: 5px;
  height: 830px;
  object-position: left bottom;
}

.multi-vertical .slider-nav {
  margin-top: 20px;
}

.multi-vertical .slider-nav img {
  border: 1px solid #333333;
  padding: 7px;
  cursor: pointer;
  max-width: 371px;
  width: 100%;
  height: 203px;
  object-fit: cover;
}

.multi-vertical .slider-nav .slick-slide {
  position: relative;
}

.slider-nav4 .slick-slide:after,
.slider-nav3 .slick-slide:after,
.slider-nav2 .slick-slide:after,
.multi-vertical .slider-nav .slick-slide:after {
  content: "";
  display: block;
  width: 93%;
  height: 188px;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 7px;
  z-index: 1;
  left: 7px;
  cursor: pointer;
}

.multi-vertical .slider-nav .slick-slide.slick-current.slick-center img {
  border: 1px solid #FECC01;
}

.slider-nav4 .slick-slide.slick-current.slick-center:after,
.multi-vertical .slider-nav .slick-slide.slick-current.slick-center:after {
  display: none;
}

.slider-for4 .slick-prev.slick-arrow,
.slider-for3 .slick-prev.slick-arrow,
.slider-for2 .slick-prev.slick-arrow,
.slider-for .slick-prev.slick-arrow {
  position: absolute;
  z-index: 1000;
  height: 817px;
  top: 6px;
  left: 6px;
  border: none;
  width: 110px;
  background: rgba(0, 0, 0, .3) url("../images/icon24.svg") no-repeat center;
  text-indent: -999999px;
  cursor: pointer;
}

.slider-for4 .slick-next.slick-arrow,
.slider-for3 .slick-next.slick-arrow,
.slider-for2 .slick-next.slick-arrow,
.slider-for .slick-next.slick-arrow {
  position: absolute;
  z-index: 1000;
  height: 817px;
  top: 6px;
  right: 16px;
  border: none;
  width: 110px;
  background: rgba(0, 0, 0, .3) url("../images/icon25.svg") no-repeat center;
  text-indent: -999999px;
  cursor: pointer;
}

.tecnology .titleH2:before {
  width: 180px;
}

.tecnologyList {
  justify-content: space-between;
}

.tecnologyList > a {
  max-width: 500px;
  width: 100%;
  height: 240px;
  padding: 37px 18px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .2);
}

.tecnologyList > a .tecnologyList__price {
  background: #FECC01;
  color: #333333;
}

.tecnologyList {
  margin-top: 80px;
  margin-bottom: 120px;
}

.tecnologyList .tecnologyList__gazobeton {
  background: #FECC01;
  border: none;
}

.complection__step {
  display: block;
  text-transform: uppercase;
  color: #333333;
  font: normal bold 24px 'Lato', sans-serif;
  padding: 80px 0 50px;
}

.tecnologyListLeft__title {
  color: #333333;
  font: normal 900 24px/100% 'Akrobat', sans-serif;
  text-transform: uppercase;
}

.tecnologyListLeft {
  margin-left: 24px;
}

.tecnologyListLeft__list {
  margin-top: 20px;
  display: block;
}

.tecnologyListLeft__list span {
  color: #000000;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.tecnologyListLeft__href {
  color: #333333;
  font-size: 16px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  border-bottom: 1px solid;
}

.tecnologyList__price {
  background: #FFFFFF;
  font: normal 900 24px/100% 'Akrobat', sans-serif;
  position: absolute;
  top: 34px;
  right: 0;
  text-transform: uppercase;
  width: 185px;
  height: 31px;
  padding: 5px 0 0 20px;
}

.tecnologyList .tecnologyList__gazobeton .tecnologyList__price {
  background-color: #fff;
}

.complection {
  margin-top: 120px;
  margin-bottom: 80px;
}

.complection__title {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 40px/100% 'Akrobat', sans-serif;
}

.complectionList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  max-width: 33%;
  width: 100%;
  margin-bottom: 30px;
}

.complectionList li img {
  margin-right: 10px;
}

.complectionList li span {
  color: #333333;
  font-size: 16px;
  max-width: 340px;
  width: 100%;
}

.complection__paragraf {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 750px;
  width: 100%;
  background-color: #F5F5F5;
  padding: 15px 30px;
  position: relative;
  left: -30px;
  line-height: 24px;
}

.complectionList {
  margin-top: 80px;
}

.complectionListItem h3 {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 24px/100% 'Akrobat', sans-serif;
}

.complectionListItem {
  max-width: 500px;
  width: 100%;
}

.complectionListItemMenu {
  margin-top: 20px;
  width: 100%;
}

.complectionListItemMenu li {
  max-width: 100%;
  width: 100%;
  margin-bottom: 10px;
}

.complectionListItemMenu li a {
  width: 100%;
  display: block;
  color: #333333;
}

.complectionList {
  justify-content: space-between;
}

.complectionSlider {
  justify-content: space-between;
  align-items: flex-start;

}

.slider-nav2 .slick-list {
  padding: 0 !important;
}

.complectionSlider {
  margin-top: 50px;
}

.slider-for2 {
  max-width: 1250px;
  width: 100%;
}

.slider-nav2 {
  max-width: 250px;
  width: 100%;
}

.slider-for2 img {
  border: 1px solid #333333;
  padding: 5px;
  width: 100%;
  object-fit: cover;
}

.slider-nav2 .slick-slide {
  margin-bottom: 33px;
  position: relative;
}

.slider-nav2 .slick-slide img {
  border: 1px solid #333333;
  padding: 5px;
  cursor: pointer;
}

.slider-for3,
.slider-nav3 {
  max-width: 1530px;
  width: 100%;
}

.slider-for3 img {
  padding: 5px;
  border: 1px solid #333333;
  height: 755px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.slider-nav3 {
  margin-top: 30px;
}

.slider-nav3 img {
  padding: 5px;
  border: 1px solid #333333;
  width: 230px;
  height: 163px;
  object-fit: cover;
}

.slider-nav3 .slick-slide {
  position: relative;
}

.slider-for2 .slick-next.slick-arrow,
.slider-for2 .slick-prev.slick-arrow {
  width: 80px;
  height: 97.7%;
}

.slider-for3 .slick-next.slick-arrow,
.slider-for3 .slick-prev.slick-arrow {
  width: 80px;
}

.slider-for3 .slick-next.slick-arrow,
.slider-for2 .slick-next.slick-arrow {
  right: 6px;
}

.slider-nav2 .slick-slide:after {
  width: 91%;
  height: 148px;
  top: 7px;
}

.slider-nav3 .slick-slide.slick-current.slick-center:after,
.slider-nav2 .slick-slide.slick-current.slick-center:after {
  display: none;
}

.slider-nav3 .slick-slide:after {
  height: 150px;
  width: 91%;
}

.bestText2 {
  max-width: 650px;
}

.building {
  background: url('../images/bground3.png') no-repeat top center;
  background-size: cover;
  height: 560px;
}

.building .bread {
  margin-top: 0;
  padding-top: 114px;
}

.buildingIn {
  position: relative;
}

.buildingIn > img {
  position: absolute;
  top: -116px;
  right: 0;
}

.buildingInLeft {
  max-width: 1014px;
  width: 100%;
  margin-top: 50px;
}

.buildingBlock__title {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 72px/100% 'Akrobat', sans-serif;
}

.buildingBlock__title span {
  color: #FECC01;
  position: relative;
}

.buildingBlock p {
  color: #333333;
  font-size: 24px;
  max-width: 670px;
  width: 100%;
  margin-top: 36px;
}

.buildingBlock__title span:before {
  content: "";
  display: block;
  background: url('../images/icon30.svg') no-repeat;
  max-width: 215px;
  width: 100%;
  height: 22px;
  position: absolute;
  right: 0;
}

.tecnologyList2 > a {
  box-shadow: 0 0 40px rgba(0, 0, 0, .2);
  min-height: 270px;
  height: 100%;
  padding: 30px 0 0 8px;
  border: none;
  max-width: 32.5%;
  width: 100%;
}

.tecnologyList2List {
  max-width: 100%;
  width: 100%;
  margin-top: 20px;
}

.tecnologyList2List span {
  color: #000;
  font-size: 12px;
  margin-right: 20px;
  border-bottom: 1px solid;
  margin-bottom: 5px;
}

.tecnologyList2__price2,
.tecnologyList2__price {
  color: #FFFFFF;
  font: normal 900 36px/100% 'Akrobat', sans-serif;
  padding: 26px 0 20px;
  display: block;
}

.tecnologyList2 .tecnologyListLeft__list span {
  max-width: 400px;
  width: 100%;
}

.tecnologyList2__price2 {
  color: #333333;
}

.complectionBlock {
  border-bottom: 3px dashed #333333;
  border-right: 3px dashed #333333;
  padding-top: 180px;
  padding-bottom: 20px;
  position: relative;
  margin-top: -150px;
}

.complectionBlock .complectionList {
  margin-top: 0;
}

.complectionBlock__price {
  font: normal 900 36px/100% 'Akrobat', sans-serif;
  color: #333333;
  position: absolute;
  bottom: -28px;
  right: 208px;
  background-color: #fff;
  padding: 12px 24px;
}

.complection__h2 {
  text-transform: uppercase;
  font: normal 900 24px/100% 'Akrobat', sans-serif;
  color: #333333;
  margin-bottom: 20px;
}

.complection__h2 img {
  margin-right: 15px;
}

.slider-for4 {
  max-width: 1257px;
  width: 100%;
}

.slider-nav4 {
  max-width: 225px;
  width: 100%;
  height: 880px;
}

.slider-nav4 .slick-list {
  padding: 0 !important;
}

.slider-for4 img {
  object-fit: cover;
  border: 1px solid #333333;
  padding: 5px;
  display: block;
  height: 879px;
}

.slider-nav4 img {
  border: 1px solid #333333;
  padding: 5px;
}

.slider-nav4 .slick-slide {
  margin-bottom: 28px;
  position: relative;
}

.slider-nav4 .slick-slide:after {
  height: 138px;
  width: 95%;
}

.slider-for4 .slick-next.slick-arrow {
  right: 13px;
}

.complectionListItem2 h3 {
  font: normal 900 16px/100% 'Akrobat', sans-serif;
}

.complectionListItem2 .complectionList {
  margin-top: 50px;
  max-width: 100%;
  width: 100%;
}

.complectionListItem2 .complectionList li {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.complectionListItem2 .complectionList li:after {
  content: "";
  display: block;
  max-width: 250px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}

.moreBlock li {
  margin-right: 20px;
}

.moreBlock li a {
  background-color: #FECC01;
  color: #333333;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
}

.moreBlock li a.more {
  max-width: 150px;
  width: 100%;
  height: 65px;
}

.moreBlock li.moreBlock__work a.work:after,
.moreBlock li a.more:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #333333;
  border-top: none;
  border-left: none;
  margin-left: 12px;
  transform: rotate(45deg);
}

.moreBlock li.moreBlock__work a.work:after {
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
}

.moreBlock li.moreBlock__work a.work.active:after,
.moreBlock li a.more.active:after {
  transform: rotate(-135deg);
  position: relative;
  top: 5px;
}

.moreBlock li a.work {
  max-width: 225px;
  width: 100%;
  height: 65px;
}

.moreBlock li.moreBlock__build {
  max-width: 140px;
  width: 100%;
}

.moreBlock li.moreBlock__work {
  max-width: 225px;
  width: 100%;
}

.moreBlock li.moreBlock__work a {
  background-color: #333333;
  color: #FFFFFF;
}

.moreBlock {
  margin-top: 30px;
}

.complectionBlockContent {
  position: relative;
  z-index: 1000;
}

.complectionBlockContent .complectionList {
  display: none;
}

.complectionBlockContent .complectionList.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.complectionBlockContent2 {
  margin-top: 130px;
}

.complectionBlockContent2__paragraf {
  max-width: 760px;
  width: 100%;
  color: #333333;
  font-size: 16px;
  line-height: 150%;
}

.user {
  justify-content: space-between;
  margin-top: 70px;
}

.userImg {
  position: relative;
}

.user .userImg__img {
  padding: 5px;
  border: 1px solid #333333;
}

.user .userImg__img2 {
  position: absolute;
  bottom: -43px;
  right: -94px;
}

.userRight {
  max-width: 810px;
  width: 100%;
}

.userRight__title {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 72px/100% 'Akrobat', sans-serif;
}

.userRight p {
  color: #333333;
  font-size: 24px;
  padding-top: 40px;
  line-height: 150%;
}

.userRight .homeBth {
  margin-top: 50px;
}

/*#######
Start why
#########*/
.why {
  margin-top: 150px;
}

.whyTitle {
  font-size: 58px;
}

.whyTitle:before {
  top: 30px;
  width: 474px;
}

.whyItem {
  background-color: #F5F5F5;
  max-width: 756px;
  width: 100%;
  height: 233px;
}

.whyContent {
  margin-top: 90px;
  margin-bottom: 90px;
  justify-content: space-between;
}

.whyItem {
  padding: 55px;
  margin-bottom: 30px;
}

.whyItemContent {
  max-width: 80%;
  width: 100%;
  margin-left: 30px;
}

.whyItem__title {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 27px/100% 'Akrobat', sans-serif;
  margin-bottom: 10px;
}

.whyItemContent p {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

/*#######
Start ask
#########*/
.ask {
  background: #333333 url('../images/bground4.png') no-repeat top center;
  background-size: cover;
  min-height: 996px;
  padding-top: 150px;
}

.ask__title {
  color: #FFFFFF;
  z-index: 1;
}

.ask__title:before {
  width: 305px;
}

.metismenu {
  margin-top: 120px;
}

.metismenu .has-arrow {
  color: #FFFFFF;

  font-weight: bold;
  font-size: 20px;
  width: 100%;
  display: block;
}

.metismenuContent {
  margin-top: 20px;
}

.metismenuContent p {
  color: #FFFFFF;
  max-width: 760px;
  width: 100%;
  line-height: 22px;
}

.metismenu > li {
  padding: 20px 0;
  border-bottom: 1px solid #FFFFFF;
}

.metismenu > li span span {
  font-size: 10px;
  position: relative;
  top: -12px;
  left: 10px;
}

.metismenu .has-arrow::after {
  transform: rotate(0deg) translate(0, 0) !important;
  width: 35px !important;
  border-width: 2px 0 0 0 !important;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
  top: 14px !important;
}

.metismenu .has-arrow::before {
  content: "";
  border-bottom: 2px solid #FFFFFF;
  width: 30px;
  height: 0px;
  display: block;
  position: absolute;
  right: 23px;
  top: 13px;
  transform: rotate(89deg);
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.metismenu .mm-active .has-arrow::before {
  display: none;
}

.metismenu > li .has-arrow > span {
  max-width: 94%;
  width: 100%;
  display: block;
}

.buildingModif {
  background: url('../images/bground5.jpg') no-repeat top center;
  background-size: cover;
}

.buildingModif .buildingIn > img {
  top: -76px;
}

.buildingModif .bread {
  padding-top: 60px;
}

.buildingModif .buildingBlock__title span {
  color: #FFFFFF;
}

.buildingModif .buildingBlock__title span:before {
  display: none;
}

.buildingModif .buildingBlock p {
  font-size: 16px;
  max-width: 350px;
}

.buildingModif .homeBth__what {
  background-color: #fff;
}

.buildingModif .buildingInLeft {
  margin-top: 10px;
}

/*#######
Start one
#########*/
.one {
  margin-top: 80px;
}

.oneImg {
  position: relative;
  border: 1px solid #333333;
  max-width: 626px;
  width: 100%;
}

.oneImg img {
  margin: 10px auto;
  display: block;
}

.oneTitle:before {
  width: 395px;
  z-index: 1;
}

.oneContent {
  margin-top: 90px;
  justify-content: space-between;
}

.oneRight {
  max-width: 760px;
  width: 100%;
}

.oneRight p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
}

.oneRightList {
  margin-top: 40px;
}

.oneRightList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 33px;
}

.oneRightList li p {
  color: #333333;
  max-width: 720px;
  width: 100%;
}

.oneRightList li:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #333333;
  position: relative;
  top: 6px;
}

.two {
  margin-top: 137px;
}

.thirdLeft,
.twoLeft {
  max-width: 756px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.thirdLeft p,
.twoLeft p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
}

.thirdH2 {
  text-transform: uppercase;
  color: #333333;
  font: normal bold 24px 'Lato', sans-serif;
}

.thirdLeft {
  margin-top: 30px;
}

.thirdList {
  margin-bottom: 86px;
  justify-content: space-between;
}

.thirdList li {
  max-width: 368px;
  width: 100%;
  height: 368px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.thirdList li h3 {
  text-align: center;
  font: normal 900 24px 'Akrobat', sans-serif;
  text-transform: uppercase;
}

.thirdList li .thirdList__procent {
  text-align: center;
  color: #333333;
  font-size: 72px;
  font-weight: 500;
  padding: 15px 0;
}

.thirdList li p {
  text-align: center;
  color: #333333;
  font-size: 16px;
  padding: 0 25px;
}

.thirdList li:before {
  content: "";
  display: block;
  width: 370px;
  height: 370px;
  position: absolute;
  background: url('../images/icon39.svg') no-repeat top center;
}

.thirdBlockList {
  margin-bottom: 140px;
}

.thirdBlockList li {
  max-width: 380px;
  width: 100%;
  position: relative;
}

.thirdBlockList li img {
  display: block;
  margin: 0 auto;
}

.thirdBlockList__content {
  background: url('../images/bground6.svg') no-repeat top center;
  margin-top: 30px;
  height: 620px;
  padding: 35px;
}

.thirdBlockList__content h3 {
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  font: normal 900 24px 'Akrobat', sans-serif;
  margin-top: 130px;
  min-height: 30px;
  max-height: 50px;
  overflow: hidden;
  padding: 0 30px;
}

.thirdBlockList__content p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  max-width: 293px;
  width: 100%;
  margin: 30px auto 0;
  max-height: 290px;
  overflow: hidden;
}

.thirdContent {
  margin-top: 100px;
  position: relative;
}

.thirdContent:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #333333;
  display: block;
  position: absolute;
  top: 50px;
}

.serviceContentImg {
  border: 1px solid #333333;
  max-width: 620px;
  width: 100%;
  padding: 15px;
}

.serviceContent {
  justify-content: space-between;
  margin-top: 80px;
}

.serviceContentImg img {
  display: block;
  margin: 0 auto;
}

.serviceContentLeft {
  max-width: 755px;
  width: 100%;
}

.serviceContentLeft__title {
  text-transform: uppercase;
  color: #333333;
  font: normal 900 24px 'Akrobat', sans-serif;
  margin-bottom: 20px;
}

.serviceContentLeft__title:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #333333;
  margin: 6px 10px 0 0;
}

.serviceContentLeft p {
  color: #333333;
  line-height: 150%;
  font-size: 16px;
}

.serviceContentLeftItem {
  margin-bottom: 50px;
}

.acardeon {
  background: none;
  padding-top: 0;
  color: #333333;
  min-height: auto;
}

.acardeon .metismenuContent p,
.acardeon .metismenu .has-arrow {
  color: #333333;
}

.acardeon .metismenu > li {
  border-bottom: 1px solid #333333;
}

.acardeon .metismenu .has-arrow::before {
  border-bottom: 2px solid #333333;
}

.acardeon .metismenu {
  margin-top: 10px;
}

.numberBlock {
  margin-top: 120px;
}

.sliderNumberBlock__img {
  position: relative;
  border: 1px solid #333333;
  display: block;
  padding: 0 15px;
}

.sliderNumberBlock__img img {
  margin: 0 auto;
  display: block;
  padding: 15px 0;
  max-width: 448px;
  width: 100%;
  height: 478px;
  object-fit: cover;
}

.sliderNumber {
  margin-top: 100px;
  margin-bottom: 100px;
}

.sliderNumberBlock__label {
  color: #333333;
  width: 240px;
  height: 56px;
  background: #FECC01;
  position: absolute;
  top: 30px;
  right: 15px;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  font-weight: bold;
  font-size: 18px;
}

.sliderNumberBlock__title {
  margin-top: 45px;
  display: block;
}

.sliderNumberBlock__title span {
  text-transform: uppercase;
  color: #333333;
  font-size: 24px;
  font-weight: bold;
}

.sliderNumberBlockList {
  margin-top: 20px;
}

.sliderNumberBlockList li a {
  color: #333333;
  font-size: 12px;
}

.sliderNumberBlockList li {
  margin-right: 15px;
}

.sliderNumberBlock p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
  padding-top: 44px;
}

.sliderNumberBlock {
  max-width: 480px;
  width: 100%;
}

.prev.slick-arrow {
  cursor: pointer;
  position: absolute;
  left: -80px;
  top: 30%;
}

.next.slick-arrow {
  cursor: pointer;
  position: absolute;
  right: -50px;
  top: 30%;
}

.sliderNumber .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 40px;
}

.sliderNumber .slick-dots li {
  margin: 0 10px;
}

.sliderNumber .slick-dots li button {
  text-indent: -999999px;
  width: 48px;
  height: 7px;
  border: 1px solid #979797;
  background: #FFFFFF;
  cursor: pointer;
}

.sliderNumber .slick-dots li.slick-active button {
  background: #FECC01;
  border: 1px solid #FECC01;
}

.frameTextIn {
  justify-content: space-between;
}

.frameTextIn p {
  color: #333333;
  font-size: 16px;
  max-width: 48%;
  width: 100%;
  line-height: 150%;
}

.frameTextIn2__left {
  max-width: 48%;
  width: 100%;
}

.frameTextIn2 {
  justify-content: space-between;
  margin-top: 4px;
}

.frameTextIn2__title {
  text-transform: uppercase;
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.frameTextIn2 p {
  color: #333333;
  line-height: 150%;
  font-size: 16px;
}

.frameImg {
  display: block;
  border: 1px solid #333333;
  padding: 5px;
  margin: 50px auto 145px;
}

.frameText {
  margin-top: 70px;
}

.oneImg__bottom {
  bottom: 10px;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #333333;
  max-width: 602px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
}

.oneImg__bottom span {
  color: #FFFFFF;
}

.oneImg__bottom a {
  color: #FFFFFF;
}

.oneTitle span {
  position: relative;
  z-index: 10;
}

.slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
  height: 743px;
  width: 80px;
}

.slider-for4 .slick-prev.slick-arrow,
.slider-for4 .slick-next.slick-arrow {
  height: 867px;
}

.complectionBlockContent.flex .complectionList {
  display: block;
}

.content {
  align-items: flex-start;
  margin-top: 150px;
  justify-content: space-between;
}

.aside {
  max-width: 370px;
  width: 100%;
}

.contentRight {
  max-width: 1015px;
  width: 100%;
}

.aside h3 {
  text-transform: uppercase;
  color: #333333;
  font: normal bold 24px 'Lato', sans-serif;
}

.asideMenu {
  margin-top: 40px;
}

.asideMenu li {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding: 20px 0;
}

.asideMenu li a {
  color: #333333;
  text-transform: uppercase;
  font-size: 20px;
}

.asideBlock {
  margin-top: 60px;
}

.workList {
  margin-top: 30px;
}

.workList li {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.workList li:last-of-type {
  border-bottom: none;
}

.workList li .workList__img {
  width: 111px;
}

.workList__right {
  max-width: 210px;
  width: 100%;
}

.workList__right a {
  text-transform: uppercase;
  font: normal 900 24px 'Akrobat', sans-serif;
  color: #333333;
  padding-bottom: 15px;
  display: block;
}

.workList__right p {
  color: #333333;
  font-size: 16px;
}

.asideDownload {
  background: #333333;
  padding: 50px 37px;
  margin-top: 60px;
}

.asideDownload h3 {
  color: #FECC01;
  font: normal bold 24px 'Lato', sans-serif;
  text-transform: uppercase;
  width: 100px;
}

.asideDownload p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 150%;
  padding-top: 30px;
  margin-bottom: 70px;
}

.asideDownload__btn {
  max-width: 290px;
  width: 100%;
  height: 55px;
  background: #FECC01;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
}

.asideDownload__btn span {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
}

.asideDownload__btn:last-of-type {
  margin-bottom: 0;
}

.asideSocial {
  background: #FFFFFF;
  box-shadow: 0 25px 40px rgba(0, 0, 0, .2);
  margin-top: 60px;
  padding: 50px;
}

.asideSocial h3 {
  text-transform: uppercase;
  color: #333333;
  font: normal bold 24px 'Lato', sans-serif;
  width: 200px;
}

.asideSocial__list {
  margin-top: 43px;
}

.asideSocial__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.asideSocial__list li a span {
  color: #333333;
  font-size: 15px;
  padding-left: 20px;
}

.asideSocial__list li {
  margin-bottom: 20px;
}

.asideSocial__list li:last-of-type {
  margin-bottom: 0;
}

.contentRight .one {
  margin-top: 0;
}

.contentRight .oneImg {
  max-width: 400px;
  width: 100%;
}

.contentRight .oneRight {
  max-width: 580px;
}

.contentRight .oneImg img {
  padding: 0 8px;
}

.contentRight .oneImg__bottom {
  max-width: 95.99%;
  padding: 10px;
}

.contentRight .oneImg__bottom span {
  font-size: 12px;
}

.contentRight .oneRight p {
  font-size: 14px;
}

.contentRight .oneRightList li p {
  max-width: 550px;
}

.contentRight .oneRightList li {
  margin-bottom: 20px;
}

.contentRight .oneRightList {
  margin-top: 20px;
}

.contentRight .thirdLeft,
.contentRight .twoLeft {
  max-width: 100%;
}

.contentRight .two {
  margin-top: 100px;
}

.contentRight .thirdList li {
  max-width: 310px;
}

.contentRight .thirdList li:before {
  width: 310px;
  height: 310px;
  background-size: 100% 100%;
}

.contentRight .thirdList li p {
  font-size: 13px;
}

.contentRight .thirdList li .thirdList__procent {
  padding: 10px 0;
  font-size: 60px;
}

.contentRight .thirdList li h3 {
  font-size: 20px;
}

.contentRight .thirdBlockList li {
  max-width: 253px;
}

.contentRight .thirdBlockList__content {
  background: url('../images/img24.png') no-repeat top center;
  background-size: 100% 100%;
  height: 610px;
  padding: 150px 0 0 0;
  margin-top: 0;
}

.contentRight .thirdBlockList__content h3 {
  margin-top: 0;
}

.contentRight .thirdBlockList__content p {
  font-size: 12px;
  padding: 0 43px;
}

.contentRight .four {
  margin-top: 50px;
}

.contentRight .thirdBlockList {
  margin-bottom: 0;
}

.contentRight .serviceContentImg {
  max-width: 485px;
}

.contentRight .serviceContentLeft {
  max-width: 520px;
}

.contentRight .acardeon {
  margin-top: 50px;
}

.contentRight .acardeon .metismenu {
  margin-top: 30px;
}

.contentRight .sliderNumberBlock__img img {
  height: 240px;
  padding: 10px 0;
}

.contentRight .sliderNumberBlock {
  max-width: 240px;
}

.contentRight .sliderNumberBlock__label {
  width: 150px;
  height: 40px;
  font-size: 14px;
}

.contentRight .sliderNumberBlock__img {
  padding: 0 10px;
}

.contentRight .sliderNumberBlock__title span {
  font-size: 20px;
}

.contentRight .sliderNumberBlock p {
  font-size: 14px;
}


.contentRight .next.slick-arrow,
.contentRight .prev.slick-arrow {
  top: 20%;
}

.contentRight .sliderNumberBlock__title {
  margin-top: 30px;
}

.multi-vertical2 .slider-for .slick-slide img {
  height: 460px;
}

.contentRight .frame .multi-vertical2 {
  margin-top: 60px;
}

.multi-vertical2 .slider-nav img {
  height: 125px;
}

.multi-vertical2 .slider-for .slick-next.slick-arrow,
.multi-vertical2 .slider-for .slick-prev.slick-arrow {
  height: 445px;
}

.multi-vertical2 .slider-for .slick-next.slick-arrow {
  right: 15px;
}

.multi-vertical2 .slider-nav .slick-slide {
  margin-right: 10px;
}

.multi-vertical2 .slider-nav .slick-slide:after {
  height: 110px;
  left: 8px;
}

/*###########
Start problem
#############*/
.problem {
  background: url('../images/bground8.png') no-repeat top center;
  background-size: cover;
  height: 632px;
  overflow: hidden;
}

.problem__title {
  color: #333333;
  font-size: 24px;
  position: relative;
  width: 100%;
}
/*
.problem__title:after,
.problem__title:before {
  content: "";
  display: block;
  width: 37px;
  background-color: #fff;
  height: 2px;
  position: absolute;
  left: 370px;
  top: 12px;
}
*/
.problemIn {
  margin-top: 215px;
}

.problem__title:after {
  top: 18px;
  width: 60px;
}

.problem__title2 {
  text-transform: uppercase;
  color: #333333;
  font-weight: bold;
  font-size: 40px;
  max-width: 680px;
  width: 100%;
  margin-top: 40px;
}

.problemIn p {
  max-width: 530px;
  width: 100%;
  color: #333333;
  padding-top: 20px;
  line-height: 25px;
}

.problemBtn {
  margin: 35px 0;
  align-items: center;
}

.problemBtn__what {
  background-color: #fff;
  max-width: 240px;
  width: 100%;
  height: 54px;
  justify-content: center;
  align-items: center;
  color: #333333;
}

.problemBtn__what img {
  margin: 0 6px 0 0;
}

.problemBtn__phone {
  color: #333333;
  font-size: 16px;
  margin-left: 30px;
}

.onelive {
  background: url('../images/bground9.png') no-repeat top center;
  background-size: cover;
  height: 575px;
  margin-top: -1px;
}

.onelive__title {
  font: normal normal 72px/75% 'mr_BorghsG', sans-serif;
  color: #333333;
  max-width: 595px;
  width: 100%;
  padding-top: 160px;
}

.oneliveIn p {
  color: #333333;
  font-size: 24px;
  line-height: 90%;
  max-width: 440px;
  width: 100%;
  margin-top: 30px;
}

.about {
  align-items: flex-start;
}

.aboutWork {
  margin-top: 120px;
  position: relative;
}

.aboutWork__hr {
  border: none;
  border-bottom: 4px solid #F5F5F5;
  opacity: .5;
  position: absolute;
  top: 240px;
  width: 100%;
}

.aboutWork__title {
  position: relative;
  color: #333333;
  font-size: 24px;
}
/*
.aboutWork__title:after,
.aboutWork__title:before {
  content: "";
  display: block;
  width: 37px;
  background-color: #FECC01;
  height: 3px;
  position: absolute;
  left: 111px;
  top: 13px;
}

.aboutWork__title:before {
  margin-top: 5px;
  width: 60px;
  top: 15px;
}
*/
.aboutWork__title2 {
  text-transform: uppercase;
  color: #333333;
  font-weight: bold;
  font-size: 36px;
  margin-top: 20px;
}

.tab-container {
  margin-top: 80px;
}

.etabs li {
  margin-right: 120px;
}

.etabs li a {
  text-transform: uppercase;
  color: #333333;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 22px;
}

.etabs li.active a.active {
  color: #FECC01;
  border-bottom: 4px solid #FECC01;
}

.buildingItem {
  background-color: #F5F5F5;
  max-width: 500px;
  width: 100%;
  min-height: 200px;
  padding: 36px;
  position: relative;
  margin-right: 14px;
}

.buildingItem:last-of-type {
  margin-right: 0;
}

.etabs {
  margin-bottom: 70px;
}

.buildingItem__title {
  text-transform: uppercase;
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

.buildingItem p {
  color: #333333;
  font-size: 16px;
  line-height: 150%;
  padding-bottom: 20px;
}

.buildingItem .tecnologyList2List {
  position: absolute;
  bottom: 30px;
  width: 90%;
}

.buildingItem__href {
  color: #FECC01;
  font-size: 16px;
}

.buildingItem__href:after {
  content: "";
  display: block;
  background: url('../images/icon47.svg') no-repeat;
  width: 65px;
  height: 30px;
  float: left;
  margin: -2px 0 0 10px;
}

.buildingItem__href span {
  float: left;
}

.about {
  padding: 120px 0 0 0;
}

.about .aboutWork__title:before,
.about .aboutWork__title:after {
  left: 74px;
}

.about .aboutWork__title2 {
  max-width: 430px;
  width: 100%;
}

.about p {
  max-width: 533px;
  width: 100%;
  line-height: 150%;
  padding-top: 20px;
}

.about__btn {
  justify-content: center;
  align-items: center;
  background-color: #FECC01;
  max-width: 195px;
  width: 100%;
  height: 54px;
  color: #333333;
  margin-top: 40px;
}

.aboutLeft {
  max-width: 50%;
  width: 100%;
}

.aboutRight {
  max-width: 50%;
  width: 100%;
  margin-top: 30px;
}

.aboutRightList li {
  max-width: 240px;
  width: 100%;
  height: 160px;
  border-left: 1px solid rgba(0, 0, 0, .2);
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding-left: 20px;
  margin-left: 62px;
}

.aboutRightList li span {
  text-transform: uppercase;
  color: #333333;
  font-size: 36px;
  font-weight: bold;
  width: 180px;
  display: block;
  line-height: 100%;
}

.aboutRightList li p {
  width: 150px;
  line-height: 20px;
  padding-top: 10px;
}

.aboutRightList li.aboutRightList__three {
  border-bottom: none;
}

.aboutRightList li.aboutRightList__three {
  padding: 30px 0 0 20px;
}

.others {
  padding-top: 120px;
}

.othersList {
  margin-top: 100px;
  justify-content: space-between;
}

.othersList li {
  border: 1px solid #C2C2C2;
  max-width: 500px;
  width: 100%;
  height: 204px;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  position: relative;
  padding: 40px 25px 10px;
  margin-bottom: 60px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.othersList li:before {
  content: "";
  display: block;
  background: url('../images/icon48.svg') no-repeat;
  width: 47px;
  height: 72px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.othersListText {
  max-width: 320px;
  width: 100%;
  margin-left: 20px;
}

.othersListText span {
  text-transform: uppercase;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 15px;
  display: block;
}

.othersListText p {
  color: #333333;
  line-height: 150%;
}

.othersList li:hover {
  background-color: #FECC01;
}

.homeBlock {
  margin-top: 100px;
}

.homeBlock__title {
  text-transform: uppercase;
  color: #333333;
  font-size: 32px;
  display: block;
}

.homeBlock .projectsList {
  margin-top: 50px;
}

.homeBlock .projectsList li {
  margin: 0 12px 16px 0;
}

.homeBlock__hr {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, .2);
  margin: 50px 0;
}

.fancybox-inner {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto;
}

.fancybox-navigation .fancybox-button {
  height: 100% !important;
  top: 0 !important;
  width: 50% !important;
  padding: 31px 0 31px 0 !important;
  background: none !important;
}

.fancybox-navigation .fancybox-button svg {
  width: 50px !important;
  height: 50px;
  top: 50%;
  background: #000 !important;
}

.fancybox-toolbar {
  display: none !important;
}

.fancybox-button.fancybox-button--arrow_right svg {
  float: right;
}

.fancybox-button svg path {
  fill: #FECC01 !important;
}

.professional {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}

.professionalList {
  margin-top: 100px;
}

.professionalList li {
  max-width: 372px;
  width: 100%;
  margin-right: 14px;
  margin-bottom: 50px;
}

.contentRight .professionalList li {
  max-width: 323px;
}

.professionalList li:nth-child(4n+4) {
  margin-right: 0;
}

.professionalList__title {
  color: #000;
  font: normal 700 32px 'Akrobat', sans-serif;
  display: block;
  padding-top: 30px;
}

.professionalBlock {
  margin-bottom: 100px;
}

/*##############
Start responsive font: normal 900 58px 'Akrobat', sans-serif;
################*/
@media (max-width: 1720px) {
  .numberBlock {
    max-width: 1300px;
    width: 100%;
  }

  .sliderNumberBlock {
    max-width: 420px;
  }
}

@media (max-width: 1580px) {
  .professional,
  .footerIn,
  .width {
    max-width: 90%;
  }

  .professionalList li {
    max-width: 24%;
  }

  .descriptionImg {
    max-width: 58%;
    width: 100%;
  }

  .descriptionLeft {
    max-width: 37%;
  }

  .projectsList li {
    max-width: 32.4%;
  }

  .serviceList li:after {
    left: 126%;
  }

  .slider-for .slick-next.slick-arrow {
    right: 13px;
  }

  .multi-vertical .slider-nav img {
    max-width: 96%;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 91.5%;
  }

  .best__price {
    font-size: 60px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    max-width: 23%;
    width: 100%;
    margin: 0 35px 0 0;
  }

  .layoutFancybox li a img {
    width: 100%;
    object-fit: contain;
  }

  .layoutFancybox li a {
    height: 306px;
  }

  .layout {
    max-width: 1390px;
  }

  .facadesFancybox li {
    max-width: 636px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .facadesFancybox li a {
    height: 303px;
  }

  .facadesFancybox li a img {
    height: 299px;
  }

  .facades {
    max-width: 1300px;
    width: 100%;
  }

  .facadesFancybox {
    justify-content: space-between;
  }

  .freeLeft {
    max-width: 600px;
  }

  .freeTitle__text {
    font-size: 30px;
  }

  .tecnologyList > a {
    max-width: 32%;
  }

  .complectionListItem {
    max-width: 435px;
  }

  .slider-for2 {
    max-width: 80%;
  }

  .slider-for2 img {
    width: 99%;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 15px;
  }

  .slider-nav3 img {
    width: 96%;
    height: 137px;
  }

  .slider-nav3 .slick-slide:after {
    width: 90%;
    height: 124px;
  }

  .slider-for3 .slick-next.slick-arrow,
  .slider-for3 .slick-prev.slick-arrow {
    right: 6px;
  }

  .slider-for3 img {
    width: 99.9%;
  }

  .buildingInLeft {
    max-width: 800px;
  }

  .buildingBlock__title {
    font-size: 50px;
  }

  .buildingBlock__title span:before {
    background-size: 100% 100%;
  }

  .slider-for4 {
    max-width: 81%;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 15px;
  }

  .userRight {
    max-width: 740px;
  }

  .userRight__title {
    font-size: 60px;
  }

  .userRight p {
    font-size: 20px;
  }

  .whyItem {
    max-width: 49%;
  }

  .whyItemContent {
    max-width: 83%;
    margin-left: 4%;
  }

  .oneRight {
    max-width: 630px;
  }

  .oneRightList li p {
    max-width: 600px;
  }

  .facadesFancybox li {
    padding: 5px 7px 2px 7px;
  }

  .thirdList li {
    max-width: 20%;
  }

  .thirdList li:before {
    width: 330px;
    height: 330px;
    background-size: 100% 100%;
  }

  .thirdList li p {
    font-size: 14px;
  }

  .slider-for4 img {
    width: 99%;
  }

  .tecnologyList2__price2 {
    padding: 15px 0 15px;
  }

  .thirdBlockList li {
    max-width: 25%;
  }

  .thirdBlockList__content {
    background-size: 109% 103%;
    margin-top: 0;
    height: 530px;
    padding: 7px;
  }

  .thirdBlockList__content p {
    font-size: 14px;
  }

  .thirdBlockList {
    margin-bottom: 80px;
  }

  .thirdBlockList__content p {
    padding: 0 10px;
    font-size: 13px;
  }

  .serviceContentLeft {
    max-width: 50%;
  }

  .numberBlock {
    max-width: 1200px;
  }

  .sliderNumberBlock {
    max-width: 390px;
  }

  .sliderNumberBlock__img img {
    height: 382px;
  }

  .sliderNumberBlock__title span {
    font-size: 20px;
  }

  .sliderNumberBlock p {
    font-size: 14px;
  }

  .contentRight {
    max-width: 900px;
  }

  .contentRight .oneRight {
    max-width: 475px;
  }

  .contentRight .oneRightList li p {
    max-width: 440px;
  }

  .contentRight .thirdList li {
    max-width: 240px;
  }

  .contentRight .thirdBlockList li {
    max-width: 225px;
  }

  .contentRight .serviceContentLeft {
    max-width: 400px;
  }

  .contentRight .serviceContentLeft p {
    font-size: 14px;
  }

  .metismenu > li .has-arrow > span {
    max-width: 91%;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 190px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 217px;
  }

  .contentRight .sliderNumberBlock__label {
    top: 23px;
    right: 10px;
  }

  .contentRight .sliderNumberBlock__title span {
    font-size: 16px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    width: 88.5%;
  }

  .multi-vertical2 .slider-nav .slick-slide {
    margin-right: 12px;
  }

  .multi-vertical2 .slider-nav {
    height: 125px;
  }

  .multi-vertical2 .slider-for {
    max-width: 885px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow {
    right: 11px;
  }

  .buildingItem {
    max-width: 32%;
  }

  .othersList li {
    max-width: 32%;
  }

  .othersListText {
    max-width: 70%;
  }

  .othersListText p {
    font-size: 14px;
  }

  .contentRight .professionalList li {
    max-width: 31%;
  }
}

@media (max-width: 1430px) {
  .projectsList li {
    max-width: 32.2%;
  }

  .serviceList li:after {
    left: 115%;
  }

  .bestText {
    font-size: 30px;
    max-width: 440px;
  }

  .bestText2 {
    max-width: 500px;
  }

  .buildingBlock p {
    font-size: 22px;
  }

  .titleH1 {
    margin-top: 40px;
  }

  .layout {
    max-width: 1200px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 30px 0 0;
  }

  .best {
    margin: 50px 0;
  }

  .click {
    margin: 0;
  }

  .layoutFancybox {
    margin: 45px 0 50px;
  }

  .facadesFancybox li {
    margin-right: 0;
    max-width: 590px;
    margin-bottom: 20px;
  }

  .facades {
    max-width: 1200px;
  }

  .facadesFancybox li a {
    height: 285px;
  }

  .facadesFancybox li a img {
    height: 280px;
  }

  .facadesFancybox li a:before {
    bottom: 0;
  }

  .tecnology {
    margin-top: 90px;
  }

  .tecnologyListLeft__title {
    font-size: 20px;
  }

  .tecnologyList__price {
    width: 165px;
    font-size: 20px;
  }

  .tecnologyListLeft {
    margin-left: 10px;
  }

  .tecnologyList > a img {
    height: 40px;
  }

  .complectionListItem {
    max-width: 33%;
  }

  .slider-for2 {
    max-width: 78%;
  }

  .slider-for4 {
    max-width: 79%;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 6px;
  }

  .slider-for4 img {
    width: 99%;
  }

  .slider-nav4 .slick-slide {
    margin-bottom: 24px;
  }

  .slider-nav4 {
    height: 685px;
  }

  .userRight {
    max-width: 650px;
  }

  .userRight__title {
    font-size: 50px;
  }

  .userRight p {
    font-size: 18px;
  }

  .oneRight {
    max-width: 49%;
  }

  .oneRightList li p {
    max-width: 96%;
  }

  .oneImg {
    max-width: 48.5%;
  }

  .oneImg img {
    width: 98%;
  }

  .oneImg__bottom {
    max-width: 98%;
  }

  .layoutFancybox li a {
    height: 258px;
  }

  .facadesFancybox li a {
    height: 285px;
  }

  .thirdList li:before {
    width: 300px;
    height: 300px;
  }

  .thirdList li .thirdList__procent {
    font-size: 65px;
  }

  .thirdList li p {
    font-size: 13px;
  }

  .slider-for4 img {
    height: 685px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow {
    height: 673px;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 16px;
  }

  .serviceContentImg {
    max-width: 45%;
  }

  .numberBlock {
    max-width: 1000px;
  }

  .sliderNumberBlock {
    max-width: 320px;
  }

  .sliderNumberBlock__img img {
    height: 310px;
  }

  .sliderNumberBlock__title span {
    font-size: 16px;
  }

  .sliderNumberBlock__label {
    font-size: 16px;
    height: 40px;
    width: 200px;
  }

  .aside {
    max-width: 300px;
  }

  .asideMenu li a {
    font-size: 16px;
  }

  .asideDownload {
    padding: 40px 25px;
  }

  .contentRight .oneImg img {
    width: 100%;
  }

  .aside h3 {
    font-size: 20px;
  }

  .workList__right {
    max-width: 190px;
  }

  .workList li .workList__img {
    width: 90px;
  }

}

@media (max-width: 1350px) {
  .navigationMenu > li {
    padding: 4px 5% 5px;
  }

  .navigationMenu > li.navigationMenu__li {
    padding: 4px 6% 5px 3%;
  }

  .navigation {
    max-width: 680px;
  }

  .navigationMenu > li:first-of-type {
    padding: 4px 25px 15px 0;
  }

  .serviceList li:after {
    left: 110%;
  }

  .multi-vertical .slider-nav img {
    height: 165px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 149px;
  }

  .best__btn {
    max-width: 290px;
    font-size: 14px;
  }

  .freeTitle__text {
    font-size: 25px;
  }

  .freeLeft {
    max-width: 500px;
  }

  .freeContent > img {
    max-width: 400px;
    width: 100%;
  }

  .free {
    height: 543px;
  }

  .freeTitle {
    margin-top: 120px;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 13px;
  }

  .userImg {
    max-width: 400px;
  }

  .userRight {
    max-width: 600px;
  }

  .whyItem {
    padding: 4%;
  }

  .whyItemContent {
    max-width: 80%;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 650px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 638px;
  }

  .slider-for {
    height: 650px;
  }

  .contentRight {
    max-width: 800px;
  }

  .contentRight .oneImg {
    max-width: 313px;
  }

  .contentRight .oneImg__bottom span {
    font-size: 10px;
  }

  .contentRight .oneImg img {
    padding: 0 7px;
  }

  .contentRight .oneImg__bottom {
    max-width: 95%;
    padding: 6px 15px;
  }

  .contentRight .thirdList li {
    max-width: 250px;
  }

  .contentRight .thirdList li:before {
    width: 260px;
    height: 260px;
  }

  .contentRight .thirdBlockList li {
    max-width: 200px;
  }

  .contentRight .thirdList {
    margin-bottom: 0;
  }

  .asideSocial {
    padding: 30px;
  }

  .contentRight .serviceContentImg {
    max-width: 390px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 190px;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 170px;
  }

  .contentRight .sliderNumberBlock__img {
    padding: 5px;
  }

  .contentRight .sliderNumberBlock__img img {
    padding: 0;
  }

  .contentRight .sliderNumberBlock__label {
    top: 15px;
    right: 5px;
    font-size: 12px;
  }

  .contentRight .sliderNumberBlock__title span {
    font-size: 14px;
  }

  .contentRight .sliderNumberBlock p {
    padding-top: 22px;
  }

  .contentRight .numberBlock {
    margin-top: 50px;
  }

  .contentRight .sliderNumber {
    margin-top: 50px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 380px;
  }

  .multi-vertical2 .slider-for {
    height: 377px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow, .multi-vertical2 .slider-for .slick-prev.slick-arrow {
    height: 367px;
    width: 50px;
  }

  .multi-vertical2 .slider-nav img {
    height: 105px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    height: 90px;
    width: 87.5%;
  }

  .multi-vertical2 .slider-for {
    max-width: 785px;
  }

  .onelive {
    background-position: 15% 0;
  }

  .aboutRightList li {
    margin-left: 30px;
  }

  .problem__title2 {
    max-width: 500px;
    font-size: 30px;
  }
}

@media (max-width: 1260px) {
  .descriptionH2 {
    font-size: 35px;
  }

  .descriptionList li:before {
    left: -38px;
  }

  .serviceList li:after {
    left: 122%;
  }

  .serviceListText span {
    font-size: 25px;
  }

  .serviceListText b {
    font-size: 30px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 91%;
  }

  .layout {
    max-width: 1100px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 28px 0 0;
  }

  .layoutFancybox li a:before {
    bottom: 0;
  }

  .facadesFancybox li {
    padding: 5px 7px 0 7px;
  }

  .layoutFancybox li a {
    height: 246px;
  }

  .facadesFancybox li {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .facades {
    max-width: 1050px;
  }

  .facadesFancybox li {
    max-width: 514px;
  }

  .facadesFancybox li a img {
    height: 240px;
  }

  .home {
    height: 790px;
  }

  .complectionList li span {
    max-width: 316px;
  }

  .slider-for2 {
    max-width: 75%;
  }

  .slider-nav3 .slick-slide:after,
  .slider-nav2 .slick-slide:after {
    left: 5px;
  }

  .clickBtn {
    max-width: 400px;
  }

  .clickBtn a {
    max-width: 48%;
  }

  .thirdList li:before {
    width: 280px;
    height: 280px;
  }

  .thirdList li .thirdList__procent {
    font-size: 55px;
    padding: 0;
  }

  .acardeon .metismenu {
    margin-top: 40px;
  }

  .contentRight {
    max-width: 700px;
  }

  .contentRight .oneRight {
    max-width: 360px;
  }

  .contentRight .oneRightList li p {
    max-width: 330px;
  }

  .contentRight .thirdList li {
    max-width: 220px;
    height: 230px;
  }

  .contentRight .thirdList li:before {
    width: 220px;
    height: 220px;
  }

  .contentRight .thirdList {
    margin-bottom: 40px;
  }

  .contentRight .thirdList li h3 {
    font-size: 18px;
  }

  .contentRight .thirdList li .thirdList__procent {
    padding: 0;
    font-size: 50px;
  }

  .contentRight .thirdBlockList li {
    max-width: 174px;
  }

  .contentRight .thirdBlockList__content h3 {
    font-size: 20px;
  }

  .contentRight .thirdBlockList__content p {
    font-size: 11px;
    padding: 0 21px;
    max-height: 350px;
  }

  .contentRight .thirdBlockList__content {
    padding: 110px 0 0 0;
  }

  .contentRight .serviceContentImg {
    max-width: 290px;
    padding: 5px;
  }

  .contentRight .metismenu > li .has-arrow > span {
    font-size: 15px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 220px;
  }

  .multi-vertical2 .slider-for {
    max-width: 685px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    width: 86%;
  }

  .contentRight .frameTextIn p {
    font-size: 14px;
  }

  .buildingItem {
    padding: 20px;
  }

  .buildingItem__title {
    font-size: 22px;
  }

  .buildingItem p {
    font-size: 14px;
  }

  .othersListText p {
    font-size: 12px;
  }

  .othersListText {
    max-width: 60%;
  }

  .othersList li img {
    width: 37px;
  }
}

@media (max-width: 1190px) {
  .headerSocial {
    max-width: 360px;
  }

  .headerSocial li a img {
    margin: 0 9px 0 0;
  }

  .best__price {
    font-size: 50px;
  }

  .best__btn {
    height: 60px;
  }

  .best {
    margin: 70px 0;
    padding: 40px 0;
  }

  .click {
    margin: 0;
  }

  .complectionList li span {
    max-width: 83%;
  }

  .slider-for4 {
    max-width: 73%;
  }

  .slider-for4 img {
    width: 99%;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 12px;
  }

  .slider-for4 .slick-prev.slick-arrow,
  .slider-for4 .slick-next.slick-arrow {
    width: 80px;
  }

  .slider-nav4 {
    height: 545px;
  }

  .slider-nav4 .slick-slide {
    margin-bottom: 43px;
  }

  .userImg {
    max-width: 350px;
  }

  .userRight {
    max-width: 550px;
  }

  .userRight__title {
    font-size: 45px;
  }

  .thirdBlockList li {
    max-width: 50%;
    margin-top: 50px;
  }

  .thirdContent {
    margin-top: 0;
  }

  .thirdBlockList__content p {
    font-size: 18px;
    max-width: 80%;
    line-height: 200%;
  }

  .thirdBlockList__content {
    height: 800px;
  }

  .thirdContent:before {
    display: none;
  }

  .thirdBlockList__content h3 {
    margin-top: 180px;
    font-size: 30px;
  }

  .contentRight .thirdList li p {
    padding: 0 28px;
  }

  .contentRight .thirdBlockList__content p {
    padding: 0 4px;
  }

  .aboutRightList li {
    margin-left: 20px;
  }
}

@media (max-width: 1170px) {
  .projectsList li {
    max-width: 32.1%;
  }

  .projectsList li .projectsList__img img {
    height: 170px;
  }

  .headerRight,
  .headerBottom {
    display: none;
  }

  .bread {
    margin-top: 50px;
  }

  .headerBtn {
    background: none;
    border: none;
    display: block;
  }

  .headerBtn span {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    background-color: #fff;
  }

  .headerBtn.active span:first-of-type {
    opacity: 0;
  }

  .headerBtn.active span:nth-child(2) {
    transform: rotate(45deg);
  }

  .headerBtn.active span:last-of-type {
    transform: rotate(-45deg);
    position: relative;
    top: -7px;
  }

  .mobilBlock {
    display: block;
    padding: 20px;
    position: fixed;
    background-color: #333333;
    max-width: 500px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    transform: translate(-200%, 0);
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }

  .mobilBlock.active {
    transform: translate(0, 0);
  }

  .hide {
    overflow: hidden;
  }

  .navigation .navigationMenu li a {
    color: #000;
  }

  .navigationMenu > li {
    width: 100%;
    text-align: center;
    padding: 4px 0 5px 0;
  }

  .navigationMenu > li:first-of-type {
    padding: 4px 0 15px 0;
  }

  .navigation .navigationMenu li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .navigation .navigationMenu li {
    padding: 4px 0 5px 0;
  }

  .navigationMenu > li > a {
    padding-bottom: 10px;
  }

  .mobilBlock .headerSocial {
    max-width: 100%;
    justify-content: space-between;
  }

  .mobilBlock .headerRight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    max-width: 100%;
  }

  .navigationMenuMobil {
    margin: 30px 0;
  }

  .navigationMenuMobil li {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }

  .navigationMenuMobil li a {
    color: #FFFFFF;
    position: relative;
  }

  .navigationMenuInMobil {
    display: none;
  }

  .navigationMenuMobil__li .navigationMenu__catalog:before {
    position: absolute;
    right: -25px;
    top: 3px;
    content: "";
    display: block;
    border: 2px solid #FFFFFF;
    border-top: none;
    border-left: none;
    width: 8px;
    height: 8px;
    transform: rotate(44deg);
  }

  .navigationMenuMobil__li.active .navigationMenuInMobil {
    display: block;
    margin-top: 10px;
  }

  .navigationMenuMobil li:last-of-type {
    margin-bottom: 0;
  }

  .navigationMenuMobil__li.active .navigationMenu__catalog:before {
    transform: rotate(226deg);
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 90%;
  }

  .multi-vertical .slider-nav img {
    height: 140px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 124px;
  }

  .bestText {
    font-size: 25px;
    max-width: 368px;
  }

  .best__btn {
    max-width: 270px;
  }

  .layout {
    max-width: 1000px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 24px 0 0;
  }

  .layoutFancybox li a:before {
    bottom: 0;
  }

  .facadesFancybox li {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .facades {
    margin-top: 60px;
  }

  .clickBtn a {
    max-width: 180px;
  }

  .clickBtn {
    max-width: 380px;
  }

  .click .bestContent {
    justify-content: space-between;
  }

  .click .bestText {
    max-width: 440px;
    font-size: 30px;
  }

  .click .bestText2 {
    max-width: 500px;
  }

  .buildingBlock__title {
    font-size: 40px;
  }

  .buildingInLeft {
    max-width: 600px;
  }

  .click img {
    top: 6px;
  }

  .clickBtn a {
    font-size: 14px;
    height: 45px;
  }

  .tecnologyList > a {
    max-width: 48%;
    margin-bottom: 30px;
  }

  .tecnologyList > a:last-of-type {
    margin-bottom: 0;
  }

  .tecnologyListLeft__title {
    font-size: 24px;
  }

  .tecnologyList > a img {
    width: 60px;
    height: 60px;
  }

  .tecnologyListLeft {
    margin-left: 30px;
  }

  .tecnologyList2 .tecnologyListLeft {
    margin-left: 0;
  }

  .tecnologyList {
    justify-content: space-around;
  }

  .slider-for2 {
    max-width: 72%;
  }

  .complectionList {
    margin-top: 10px;
  }

  .complection__step {
    padding: 50px 0 50px;
  }

  .slider-nav3 {
    margin-bottom: 50px;
  }

  .slider-nav3 img {
    height: 83px;
  }

  .building {
    margin-top: -10px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 560px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 548px;
  }

  .slider-for {
    height: 560px;
  }

  .serviceList li:after {
    left: 115%;
  }

  .layoutFancybox li a {
    height: 220px;
  }

  .facadesFancybox li a {
    height: 246px;
  }

  .thirdList li {
    max-width: 49%;
    margin-bottom: 50px;
  }

  .thirdList li:before {
    width: 400px;
    height: 400px;
  }

  .thirdList li h3 {
    font-size: 30px;
  }

  .thirdList li .thirdList__procent {
    font-size: 70px;
  }

  .thirdList li p {
    font-size: 18px;
    padding: 0 100px;
  }

  .slider-for3 img {
    height: 513px;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    height: 500px;
  }

  .slider-nav3 .slick-slide:after {
    width: 90%;
    height: 70px;
  }

  .slider-for4 img {
    height: 547px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow {
    height: 535px;
  }

  .tecnologyList2 li {
    padding: 30px 22px 0 16px;
  }

  .tecnologyList2 .tecnologyListLeft__list span {
    font-size: 14px;
  }

  .tecnologyList2__price2, .tecnologyList2__price {
    font-size: 30px;
    padding: 10px 0 10px;
  }

  .two {
    margin-top: 0;
  }

  .numberBlock {
    max-width: 850px;
  }

  .sliderNumberBlock__img img {
    height: 256px;
  }

  .sliderNumberBlock__title span {
    font-size: 14px;
  }

  .sliderNumberBlock {
    max-width: 270px;
  }

  .sliderNumberBlock__title {
    margin-top: 25px;
  }

  .sliderNumberBlock p {
    padding-top: 25px;
  }

  .numberBlock {
    margin-top: 60px;
  }

  .sliderNumber {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .contentRight {
    max-width: 679px;
  }

  .contentRight .thirdBlockList li {
    max-width: 168px;
  }

  .contentRight .serviceContentLeft {
    max-width: 375px;
  }

  .contentRight .metismenu > li span span {
    top: -7px;
  }

  .contentRight .two {
    margin-top: 10px;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 320px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow, .multi-vertical2 .slider-for .slick-prev.slick-arrow {
    height: 307px;
  }

  .multi-vertical2 .slider-for {
    height: 315px;
  }

  .multi-vertical2 .slider-nav img {
    height: 90px;
  }

  .multi-vertical2 .slider-for {
    max-width: 665px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    height: 75px;
    width: 86%;
  }

  .contentRight .frameText {
    margin-top: 0;
  }

  .contentRight .next.slick-arrow {
    right: -25px;
  }

  .multi-vertical2 .slider-for {
    max-width: 540px;
  }

  .multi-vertical2 .slider-nav img {
    height: 75px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    height: 60px;
    width: 84%;
  }

  .aboutRightList li {
    max-width: 220px;
  }

  .aboutRightList li span {
    font-size: 32px;
  }
}

@media (max-width: 1100px) {
  .descriptionH2 {
    font-size: 30px;
  }

  .serviceList li:after {
    left: 112%;
  }

  .serviceListText {
    margin-left: 20px;
  }

  .professionalList__title {
    font-size: 25px;
  }
}

@media (max-width: 1090px) {
  .contentRight .professionalList li {
    max-width: 29%;
  }

  .projectsList li {
    max-width: 32%;
  }

  .descriptionList li:before {
    left: -25px;
  }

  .footerRight {
    max-width: 50%;
  }

  .footerMenu2 {
    margin-right: 0;
  }

  .serviceList li:after {
    left: 122%;
  }

  .serviceListText span {
    font-size: 20px;
  }

  .serviceListText b {
    font-size: 22px;
    margin-top: 5px;
  }

  .bestText img {
    width: 35px;
  }

  .best__price {
    font-size: 40px;
  }

  .layout {
    max-width: 850px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 22px 0 0;
  }

  .facades {
    max-width: 900px;
  }

  .facadesFancybox li {
    margin-right: 0;
    max-width: 440px;
    margin-bottom: 20px;
  }

  .layoutFancybox li a {
    height: 209px;
  }

  .facadesFancybox li a img {
    height: 205px;
  }

  .layoutFancybox {
    margin: 45px 0 50px;
  }

  .freeContent > img {
    max-width: 311px;
  }

  .free {
    height: 427px;
  }

  .freeTitle {
    margin-top: 80px;
  }

  .clickBtn {
    max-width: 260px;
  }

  .clickBtn a {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .clickBtn a:last-of-type {
    margin-bottom: 0;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 12px;
  }

  .slider-nav3 .slick-slide:after {
    width: 88%;
    height: 71px;
  }

  .buildingIn img {
    width: 40%;
  }

  .buildingModif .homeBth a img {
    width: 31px !important;
  }

  .buildingModif .buildingIn > img {
    top: -16px;
  }

  .buildingModif .homeBth {
    max-width: 400px;
    width: 100%;
  }

  .building {
    height: 459px;
  }

  .buildingIn img {
    width: 363px;
  }

  .userImg {
    max-width: 300px;
  }

  .userRight {
    max-width: 500px;
  }

  .whyItem {
    padding: 3% 2%;
  }

  .whyItemContent {
    max-width: 78%;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for3 .slick-prev.slick-arrow, .slider-for2 .slick-prev.slick-arrow, .slider-for .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow, .slider-for3 .slick-next.slick-arrow, .slider-for2 .slick-next.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 97.5%;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    height: 96%;
  }

  .slider-nav2 .slick-slide {
    margin-bottom: 10px;
  }

  .slider-nav2 .slick-slide:after {
    width: 92%;
  }

  .layoutFancybox li a {
    height: 185px;
  }

  .facadesFancybox li a {
    height: 209px;
  }

  .tecnologyList2 .tecnologyListLeft__list span {
    font-size: 12px;
  }

  .tecnologyList2 .tecnologyListLeft__title {
    font-size: 20px;
  }

  .numberBlock {
    max-width: 700px;
  }

  .sliderNumberBlock {
    max-width: 330px;
  }

  .sliderNumberBlock__img img {
    height: 315px;
  }

  .contentRight .oneImg {
    max-width: 100%;
  }

  .contentRight {
    max-width: 550px;
  }

  .contentRight .oneRight {
    max-width: 100%;
  }

  .contentRight .oneRightList li p {
    max-width: 94%;
  }

  .contentRight .oneRight {
    margin: 40px 0 0;
  }

  .contentRight .oneImg__bottom {
    max-width: 97.5%;
    padding: 11px 15px;
  }

  .contentRight .oneImg__bottom span {
    font-size: 14px;
  }

  .contentRight .thirdList li {
    max-width: 270px;
    height: 270px;
  }

  .contentRight .thirdList li:before {
    width: 260px;
    height: 260px;
  }

  .contentRight .thirdList {
    justify-content: space-evenly;
  }

  .contentRight .thirdBlockList li {
    max-width: 274px;
  }

  .contentRight .thirdBlockList__content p {
    padding: 0 18px;
    font-size: 13px;
    line-height: 20px;
  }

  .contentRight .serviceContentImg,
  .contentRight .serviceContentLeft {
    max-width: 100%;
  }

  .contentRight .serviceContent {
    flex-direction: column-reverse;
    margin-top: 30px;
  }

  .contentRight .serviceContentImg img {
    width: 100%;
    padding: 10px;
  }

  .contentRight .serviceContentLeft {
    margin-top: 40px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 252px;
  }

  .onelive {
    background-position: 15% 0;
    margin-top: -10px;
  }

  .aboutWork {
    margin-top: 50px;
  }

  .buildingItem__title {
    font-size: 18px;
  }

  .buildingItem p {
    font-size: 12px;
  }

  .etabs li a {
    font-size: 20px;
  }

  .aboutWork__hr {
    top: 225px;
  }

  .aboutRightList li {
    max-width: 190px;
  }

  .aboutRightList li span {
    font-size: 30px;
  }

  .othersList li {
    max-width: 49%;
  }

  .othersListText {
    max-width: 77%;
  }

  .othersListText p {
    font-size: 14px;
  }

  .problemIn p {
    max-width: 480px;
  }

  .problem {
    background-position: -336px 0;
  }
}

@media (max-width: 990px) {
  .projectsList li {
    max-width: 31.9%;
  }

  .descriptionList {
    margin-top: 55px;
  }

  .descriptionList li:before {
    left: -25px;
  }

  .serviceList li:after {
    left: 115%;
  }

  .bestText {
    font-size: 33px;
    max-width: 486px;
  }

  .best__btn {
    margin-top: 30px;
    max-width: 300px;
    font-size: 16px;
  }

  .best__price {
    font-size: 50px;
  }

  .bestContent {
    justify-content: space-around;
  }

  .home {
    height: 711px;
  }

  .homeContent {
    margin-top: 60px;
  }

  .tecnologyList > a {
    max-width: 100%;
  }

  .slider-for2 {
    max-width: 68%;
  }

  .complectionListItem h3 {
    font-size: 20px;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 12px;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 13px;
  }

  .slider-for4 {
    max-width: 100%;
  }

  .slider-for4 img {
    width: 100%;
  }

  .slider-nav4 {
    max-width: 100%;
    height: 150px;
  }

  .slider-nav4 .slick-slide:after {
    height: 128px;
    width: 91%;
  }

  .slider-nav4 img {
    width: 97%;
    height: 140px;
  }

  .slider-nav4 {
    margin-top: 30px;
  }

  .complectionBlock__price {
    font-size: 30px;
  }

  .complectionList li span {
    font-size: 14px;
  }

  .userImg {
    max-width: 300px;
  }

  .user .userImg__img2 {
    right: 0;
    bottom: -150px;
  }

  .userRight__title {
    font-size: 45px;
  }

  .oneImg__bottom {
    padding: 10px;
    width: 96%;
  }

  .oneImg__bottom span {
    font-size: 14px;
  }

  .oneImg img {
    width: 96%;
  }

  .oneRightList li p {
    max-width: 94%;
  }

  .oneRight p {
    font-size: 14px;
  }

  .oneRight {
    max-width: 48%;
  }

  .slider-for4 img {
    width: 99%;
  }

  .slider-for4 .slick-next.slick-arrow,
  .slider-for4 .slick-prev.slick-arrow {
    height: 98%;
  }

  .thirdList li {
    max-width: 45%;
  }

  .thirdList li:before {
    width: 350px;
    height: 350px;
  }

  .thirdList li p {
    padding: 0 30px;
    font-size: 16px;
  }

  .thirdBlockList__content {
    height: 640px;
  }

  .thirdBlockList__content h3 {
    margin-top: 150px;
  }

  .thirdList {
    margin-bottom: 0;
  }

  .aside {
    max-width: 100%;
  }

  .workList li {
    justify-content: flex-start;
  }

  .workList__right {
    max-width: 80%;
    margin-left: 20px;
  }

  .asideDownload__btn {
    margin: 0 auto 20px;
  }

  .aside h3 {
    width: 100%;
    text-align: center;
  }

  .asideDownload p {
    text-align: center;
  }

  .content {
    flex-direction: column-reverse;
    margin-top: 50px;
  }

  .contentRight {
    max-width: 100%;
  }

  .contentRight .oneImg {
    max-width: 50%;
  }

  .contentRight .oneRight {
    max-width: 48%;
    margin: 0;
  }

  .contentRight .thirdBlockList li {
    max-width: 25%;
  }

  .contentRight .thirdBlockList__content p {
    max-height: 400px;
    margin: 10px auto 0;
  }

  .contentRight .serviceContent {
    flex-direction: row;
  }

  .contentRight .serviceContentLeft {
    max-width: 48%;
  }

  .contentRight .serviceContentImg {
    max-width: 50%;
  }

  .contentRight .numberBlock {
    margin: 80px auto 0;
  }

  .contentRight .sliderNumberBlock {
    max-width: 330px;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 290px;
  }

  .multi-vertical2 .slider-for {
    max-width: 98.5%;
    height: 400px;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 396px;
  }

  .multi-vertical2 .slider-nav img {
    height: 115px;
  }

  .multi-vertical2 .slider-nav {
    margin-bottom: 30px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    height: 100px;
    width: 88%;
  }

  .homeBlock .projectsList li {
    max-width: 48%;
  }

  .tecnologyList2 > a {
    padding: 30px 20px 0;
  }
}

@media (max-width: 930px) {
  .projectsList li {
    max-width: 49%;
    margin: 0 0 68px 0;
  }

  .projectsList {
    justify-content: space-between;
  }

  .descriptionLeft {
    max-width: 41%;
  }

  .descriptionImg {
    max-width: 55%;
  }

  .descriptionList li:before {
    left: -18px;
  }

  .projectsList li .projectsList__img img {
    height: auto;
  }

  .serviceList li:after {
    left: 110%;
  }

  .multi-vertical .slider-nav img {
    height: 120px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 104px;
    width: 87.6%;
    top: 8px;
    left: 9px;
  }

  .slider-for .slick-prev.slick-arrow,
  .slider-for .slick-next.slick-arrow {
    width: 80px;
  }

  .slider-for .slick-next.slick-arrow {
    right: 10px;
  }

  .facades {
    max-width: 800px;
  }

  .facadesFancybox li {
    max-width: 390px;
  }

  .facadesFancybox li a {
    height: 186px;
  }

  .facadesFancybox li a img {
    height: 180px;
  }

  .freeLeft {
    max-width: 400px;
  }

  .freeTitle__text {
    font-size: 21px;
  }

  .freeTitle__text span:after {
    background-size: 100% 100%;
    width: 150px;
  }

  .slider-for2 {
    max-width: 100%;
  }

  .slider-nav2 {
    max-width: 100%;
    margin-top: 21px;
  }

  .slider-nav2 .slick-slide img {
    width: 96%;
    height: 163px;
  }

  .slider-nav2 .slick-slide:after {
    height: 166px;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    width: 60px;
    height: 96.9%;
  }

  .slider-nav3 img {
    height: 122px;
  }

  .slider-nav3 .slick-slide:after {
    width: 90%;
    height: 109px;
  }

  .buildingInLeft {
    max-width: 500px;
  }

  .buildingBlock__title {
    font-size: 34px;
  }

  .buildingBlock p {
    font-size: 18px;
  }

  .slider-for4 img {
    width: 99%;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 12px;
  }

  .userRight {
    max-width: 400px;
  }

  .userRight__title {
    font-size: 36px;
  }

  .metismenu > li .has-arrow > span {
    max-width: 90%;
    font-size: 14px;
  }

  .ask {
    min-height: 800px;
  }

  .acardeon {
    min-height: auto;
  }

  .metismenu {
    padding-bottom: 30px;
  }

  .metismenu > li span span {
    font-size: 8px;
    top: -5px;
  }

  .metismenu .has-arrow::after {
    top: 10px !important;
  }

  .metismenu .has-arrow::before {
    top: 9px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 452px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 440px;
  }

  .slider-for {
    height: 452px;
  }

  .slider-for3 img {
    height: 419px;
  }

  .tecnologyList2 li {
    max-width: 48%;
    margin-bottom: 50px;
  }

  .tecnologyList2 li:last-of-type {
    margin-bottom: 0;
  }

  .multi-vertical2 .slider-for {
    max-width: 98.5%;
    height: 400px;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 396px;
  }

  .multi-vertical2 .slider-nav img {
    height: 115px;
  }

  .multi-vertical2 .slider-nav {
    margin-bottom: 30px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    height: 100px;
    width: 88%;
  }

  .onelive {
    height: 450px;
  }

  .onelive__title {
    padding-top: 80px;
  }

  .buildingItem {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .buildingItem__title {
    font-size: 24px;
  }

  .buildingItem p {
    font-size: 16px;
  }

  .about {
    padding: 50px 0 0;
  }

  .aboutRightList li {
    max-width: 180px;
  }

  .aboutRightList li span {
    font-size: 24px;
  }

  .about .aboutWork__title2,
  .aboutLeft,
  .aboutRight {
    max-width: 100%;
  }

  .about .aboutLeft p {
    max-width: 100%;
  }

  .aboutRightList li {
    margin-left: 0;
  }

  .aboutRightList li.aboutRightList__three {
    padding: 0 0 0 13px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
  }

  .aboutRightList li {
    max-width: 25%;
  }

  .others {
    padding-top: 50px;
  }
}

@media (max-width: 860px) {
  .descriptionLeft {
    max-width: 100%;
  }

  .descriptionSize {
    margin-top: 10px;
  }

  .descriptionImg {
    max-width: 100%;
    margin-top: 60px;
  }

  .descriptionList li:before {
    left: -178%;
  }

  .descriptionH2 {
    font-size: 33px;
  }

  .footerRight {
    max-width: 46%;
  }

  .formConnectInput input {
    max-width: 180px;
  }

  .footerLeft {
    max-width: 275px;
  }

  .footerMenu li a {
    font-size: 14px;
  }

  .serviceListText b,
  .serviceListText span {
    font-size: 16px;
  }

  .serviceList li img {
    width: 50px;
    height: 50px;
  }

  .serviceList li:after {
    left: 124%;
  }

  .bestText {
    max-width: 437px;
    font-size: 28px;
  }

  .best__price {
    font-size: 40px;
  }

  .layout {
    max-width: 700px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 17px 0 0;
  }

  .layoutFancybox li a {
    height: 179px;
  }

  .layoutFancybox li a:before {
    width: 40px;
    height: 40px;
    background-size: cover;
    bottom: 0;
  }

  .homeContent {
    max-width: 600px;
    padding: 30px 28px;
  }

  .homeTitle {
    font-size: 30px;
  }

  .homeMiddle img {
    width: 44px;
    position: relative;
    top: 70px;
  }

  .homeMiddleLeft {
    padding: 19px 15px;
  }

  .home {
    height: 599px;
  }

  .layoutFancybox {
    margin: 45px 0 50px;
  }

  .facades {
    max-width: 700px;
  }

  .facadesFancybox li {
    margin: 0 0 20px 0;
    max-width: 343px;
  }

  .facadesFancybox li a img {
    height: 164px;
  }

  .layoutFancybox li a {
    height: 166px;
  }

  .freeContent > img {
    display: none;
  }

  .freeLeft {
    max-width: 90%;
  }

  .freeTitle__text {
    font-size: 30px;
  }

  .freeTitle__text span:after {
    width: 200px;
  }

  .clickBtn {
    max-width: 220px;
  }

  .complection__title {
    font-size: 35px;
  }

  .complectionListItem h3 {
    font-size: 17px;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    height: 90%;
  }

  .slider-nav2 .slick-slide:after {
    height: 150px;
  }

  .buildingInLeft {
    max-width: 400px;
  }

  .buildingBlock__title {
    font-size: 28px;
  }

  .buildingBlock p {
    font-size: 16px;
  }

  .click .bestText2 {
    max-width: 430px;
    font-size: 26px;
  }

  .building .bread {
    padding-top: 50px;
  }

  .building {
    height: 367px;
  }

  .buildingIn img {
    width: 287px;
    top: -57px;
  }

  .userRight {
    max-width: 350px;
  }

  .userRight__title {
    font-size: 31px;
  }

  .whyTitle {
    font-size: 50px;
  }

  .whyItemContent p {
    font-size: 14px;
  }

  .whyItem__title {
    font-size: 22px;
  }

  .why {
    margin-top: 100px;
  }

  .whyItemContent {
    max-width: 70%;
  }

  .buildingModif .buildingIn > img {
    top: -21px;
  }

  .buildingModif .buildingBlock p {
    margin-top: 0;
  }

  .buildingModif .homeBth {
    margin-top: 15px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for3 .slick-prev.slick-arrow, .slider-for2 .slick-prev.slick-arrow, .slider-for .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow, .slider-for3 .slick-next.slick-arrow, .slider-for2 .slick-next.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 97.1%;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    height: 96%;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    height: 97.2%;
  }

  .slider-for4 .slick-next.slick-arrow, .slider-for4 .slick-prev.slick-arrow {
    height: 97.8%;
  }

  .slider-nav4 .slick-slide:after {
    width: 90%;
  }

  .facadesFancybox li {
    padding: 2px 6px 0 6px;
  }

  .layoutFancybox li a {
    height: 148px;
  }

  .facadesFancybox li a {
    height: 167px;
  }

  .slider-for4 img {
    height: 468px;
  }

  .thirdBlockList__content p {
    font-size: 14px;
    line-height: 150%;
  }

  .numberBlock {
    max-width: 550px;
  }

  .sliderNumberBlock__img img {
    height: 250px;
  }

  .sliderNumberBlock {
    max-width: 265px;
  }

  .sliderNumberBlock__img {
    padding: 0 7px;
  }

  .sliderNumberBlock__img img {
    padding: 6px 0;
  }

  .sliderNumberBlock__label {
    top: 19px;
    right: 7px;
    font-size: 14px;
    width: 170px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 260px;
    margin: 0 auto;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 230px;
  }

  .etabs li {
    margin-right: 50px;
  }

  .othersListText p {
    max-height: 110px;
    overflow: hidden;
  }

  .professionalList {
    margin-top: 50px;
  }

  .professionalList li {
    max-width: 31%;
  }

  .professionalList__title {
    font-size: 16px;
    padding-top: 10px;
  }
}

@media (max-width: 740px) {

  .contentRight .professionalList li {
    max-width: 24%;
  }

  .descriptionList li:before {
    left: -178%;
  }

  .footerMenuSocial {
    margin-right: 0;
  }

  .footerBottomMenu {
    max-width: 75%;
  }

  .serviceList li:after {
    left: 113%;
  }

  .serviceListText {
    margin-left: 12px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for3 .slick-prev.slick-arrow, .slider-for2 .slick-prev.slick-arrow, .slider-for .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow, .slider-for3 .slick-next.slick-arrow, .slider-for2 .slick-next.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 96.1%;
  }

  .multi-vertical .slider-nav img {
    height: 90px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 74px;
    width: 87%;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    width: 55px;
  }

  .multi-vertical .slider-nav img {
    height: 122px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 106px;
    width: 89%;
  }

  .bestText {
    max-width: 410px;
    font-size: 23px;
  }

  .layout {
    max-width: 600px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    max-width: 47%;
    margin-bottom: 20px;
  }

  .layoutFancybox li a {
    height: 262px;
  }

  .facades {
    max-width: 600px;
  }

  .facadesFancybox li {
    max-width: 49%;
  }

  .facadesFancybox li a {
    height: 144px;
  }

  .facadesFancybox li a img {
    height: 144px;
  }

  .freeLeft {
    max-width: 570px;
  }

  .clickBtn {
    max-width: 173px;
  }

  .click .bestText {
    font-size: 27px;
  }

  .complectionList li span {
    max-width: 80%;
    font-size: 14px;
  }

  .complection__title {
    font-size: 30px;
  }

  .complection {
    margin-top: 50px;
  }

  .tecnologyList {
    margin-bottom: 80px;
  }

  .slider-nav2 .slick-slide:after {
    height: 129px;
    top: 6px;
    width: 90%;
  }

  .slider-nav2 .slick-slide img {
    height: 141px;
  }

  .slider-nav4 img {
    height: 110px;
  }

  .slider-nav4 .slick-slide:after {
    height: 97px;
    width: 90%;
  }

  .userImg {
    max-width: 100%;
    margin: 0 auto;
  }

  .user .userImg__img2 {
    right: -50px;
    bottom: -44px;
  }

  .userRight {
    max-width: 100%;
    margin-top: 100px;
  }

  .whyTitle {
    font-size: 45px;
  }

  .whyItem {
    max-width: 100%;
    padding: 5%;
  }

  .whyItem__title {
    font-size: 27px;
  }

  .whyItemContent p {
    font-size: 16px;
  }

  .whyTitle:before {
    width: 378px;
  }

  .buildingModif .homeBth {
    max-width: 320px;
  }

  .buildingModif .homeBth__telegram,
  .buildingModif .homeBth__what {
    font-size: 15px;
  }

  .one {
    margin-top: 50px;
  }

  .oneContent {
    margin-top: 30px;
  }

  .two {
    margin-top: 50px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 350px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 338px;
  }

  .slider-for {
    height: 350px;
  }

  .facadesFancybox li {
    padding: 0 5px 0 6px;
  }

  .facadesFancybox li a:before {
    bottom: 0;
  }

  .thirdList li {
    max-width: 44%;
    height: 280px;
  }

  .thirdList li:before {
    width: 300px;
    height: 300px;
  }

  .thirdList li p {
    padding: 0 25px;
    font-size: 13px;
  }

  .slider-for3 img {
    height: 330px;
  }

  .slider-for4 img {
    height: 320px;
  }

  .thirdBlockList__content {
    height: 480px;
  }

  .thirdBlockList__content h3 {
    margin-top: 85px;
    font-size: 25px;
  }

  .thirdBlockList__content p {
    margin: 7px auto 0;
  }

  .serviceContent {
    flex-direction: column-reverse;
  }

  .serviceContentLeft,
  .serviceContentImg {
    max-width: 100%;
  }

  .serviceContentLeft {
    margin-top: 80px;
  }

  .numberBlock {
    max-width: 400px;
  }

  .sliderNumberBlock {
    max-width: 100%;
  }

  .sliderNumberBlock__img img {
    height: 370px;
  }

  .prev.slick-arrow {
    left: -52px;
  }

  .sliderNumberBlock__title span {
    font-size: 16px;
  }

  .contentRight .thirdBlockList li {
    max-width: 50%;
  }

  .contentRight .oneRight {
    max-width: 100%;
    margin-top: 40px;
  }

  .contentRight .oneImg {
    max-width: 100%;
  }

  .contentRight .oneImg__bottom {
    max-width: 98%;
    width: 100%;
  }

  .contentRight .oneImg__bottom span {
    font-size: 16px;
  }

  .contentRight .thirdBlockList__content p {
    min-height: 400px;
    font-size: 15px;
  }

  .contentRight .thirdBlockList__content p {
    width: 100%;
  }

  .contentRight .thirdList li {
    margin-bottom: 30px;
  }

  .contentRight .sliderNumberBlock {
    max-width: 180px;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 160px;
  }

  .multi-vertical2 .slider-for {
    height: 350px;
    max-width: 96.8%;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    width: 88%;
  }

  .aboutRightList li {
    max-width: 50%;
    padding: 30px;
  }

  .aboutRightList li.aboutRightList__three {
    padding: 30px 0 0 30px;
  }

  .othersList li {
    max-width: 100%;
  }

  .othersListText span {
    font-size: 18px;
  }

  .othersListText p {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .logo {
    margin: 0 auto;
  }

  .header {
    padding: 15px 0 0;
  }

  .serviceList li:after {
    display: none;
  }

  .bestText {
    font-size: 30px;
    max-width: 440px;
  }

  .best__price {
    position: relative;
    top: 20px;
  }

  .homeContent {
    max-width: 500px;
  }

  .homeMiddleLeft {
    background-size: contain;
    padding: 1px 5px;
  }

  .homeMiddleLeft p {
    font-size: 14px;
    padding-right: 20px;
    padding-top: 15px;
    padding-left: 10px;
  }

  .homeMiddle img {
    width: 80px;
    top: 0;
  }

  .slider-nav2 .slick-slide:after {
    height: 120px;
  }

  .slider-nav2 .slick-slide img {
    height: 132px;
  }

  .click .bestText2 {
    font-size: 24px;
    max-width: 400px;
  }

  .buildingIn > img {
    display: none;
  }

  .buildingBlock__title {
    font-size: 35px;
  }

  .buildingBlock p {
    font-size: 18px;
  }

  .buildingInLeft {
    max-width: 100%;
  }

  .slider-nav4 img {
    height: 135px;
  }

  .slider-nav4 .slick-slide:after {
    height: 121px;
  }

  .oneContent {
    flex-direction: column;
  }

  .oneImg {
    max-width: 100%;
  }

  .oneImg__bottom span {
    font-size: 16px;
    line-height: 150%;
  }

  .oneRight {
    max-width: 100%;
    margin-top: 40px;
  }

  .slider-for4 .slick-next.slick-arrow, .slider-for4 .slick-prev.slick-arrow {
    height: 96%;
  }

  .frameTextIn2__left,
  .frameTextIn p {
    max-width: 100%;
  }

  .frameTextIn2__left {
    margin-bottom: 40px;
  }

  .frameTextIn2__left:last-of-type {
    margin-bottom: 0;
  }

  .frameTextIn p {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .frameTextIn2 p {
    font-size: 14px;
  }

  .frameTextIn2__title {
    font-size: 20px;
  }

  .onelive__title {
    font-size: 50px;
    max-width: 500px;
  }

  .onelive {
    height: 350px;
  }

  .oneliveIn p {
    font-size: 20px;
  }

  .problem {
    margin-top: -141px;
  }

  .descriptionH2 {
    font-size: 30px;
  }

  .homeBlock__title {
    font-size: 25px;
  }

  .homeBlock .projectsList li {
    margin: 0 8px 16px 0;
  }

  .homeBlock {
    margin-top: 50px;
  }

  .homeBlock:last-of-type {
    margin-bottom: 100px;
  }
}

@media (max-width: 650px) {
  .titleH2 {
    font-size: 25px;
  }

  .complection__step {
    font-size: 20px;
  }

  .complectionBlock {
    margin-top: -150px;
  }

  .descriptionList li:before {
    left: -100%;
  }

  .titleH1 span {
    font-size: 50px;
  }

  .descriptionH2 {
    font-size: 30px;
  }

  .titleH1:before {
    width: 230px;
    height: 15px;
    top: 37px;
    left: -13px;
  }

  .projects {
    margin-top: 50px;
  }

  .projects__line {
    margin-bottom: 50px;
  }

  .projectsList li .projectsList__img span {
    font-size: 16px;
  }

  .projectsList__href {
    font-size: 16px;
  }

  .footerBottomMenu {
    max-width: 88%;
  }

  .footerLeft,
  .footerRight {
    max-width: 100%;
  }

  .formConnectInput input {
    max-width: 80%;
  }

  .footerLeft p {
    font-size: 14px;
  }

  .mobilBlock {
    max-width: 400px;
  }

  .headerRight__whatsapp:before {
    margin-left: 0;
  }

  .serviceList li {
    max-width: 50%;
    width: 100%;
    margin-bottom: 30px;
  }

  .serviceListText b, .serviceListText span {
    font-size: 22px;
  }

  .serviceList {
    justify-content: center;
  }

  .serviceListText b, .serviceListText span {
    font-size: 18px;
  }

  .bestText {
    font-size: 30px;
    text-align: center;
  }

  .best__btn {
    max-width: 250px;
    font-size: 13px;
  }

  .layout {
    max-width: 500px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    max-width: 46%;
    height: 233px;
  }

  .layoutFancybox li a {
    height: 244px;
  }

  .home {
    height: 700px;
  }

  .layoutFancybox li a {
    height: 119px;
  }

  .layoutFancybox li a img {
    height: 221px;
  }

  .facades {
    max-width: 500px;
  }

  .freeLeft {
    max-width: 500px;
    margin: 0 auto;
  }

  .freeTitle__text {
    font-size: 26px;
  }

  .freeTitle__text span:after {
    width: 143px;
  }

  .click .bestText {
    max-width: 380px;
    font-size: 26px;
  }

  .click .bestContent {
    justify-content: center;
  }

  .clickBtn {
    max-width: 300px;
    margin-top: 30px;
  }

  .clickBtn a {
    font-size: 16px;
  }

  .complectionList li {
    max-width: 50%;
  }

  .complectionListItem {
    max-width: 50%;
    margin-bottom: 30px;
  }

  .complectionList li {
    max-width: 100%;
  }

  .complectionList {
    justify-content: space-between;
  }

  .slider-nav2 .slick-slide:after {
    height: 110px;
    width: 90%;
  }

  .slider-nav2 .slick-slide img {
    height: 122px;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    width: 50px;
    height: 95%;
  }

  .slider-nav3 img {
    height: 132px;
  }

  .slider-nav3 .slick-slide:after {
    width: 90%;
    height: 119px;
    left: 6px;
  }

  .facadesFancybox li a img {
    height: 110px;
  }

  .complectionBlockContent2 {
    margin-top: 60px;
  }

  .complectionBlock__price {
    font-size: 25px;
    bottom: -23px;
  }

  .user .userImg__img2 {
    right: -8px;
  }

  .titleH2:before {
    width: 230px;
    top: 15px;
    height: 15px;
  }

  .multi-vertical .slider-nav img {
    height: 107px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 93px;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    height: 95%;
    width: 50px;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 12px;
  }

  .facadesFancybox li {
    max-width: 49%;
    padding: 7px 5px 2px 6px;
    height: 127px;
  }

  .facadesFancybox li a:before {
    bottom: 8px;
  }

  .thirdList li {
    max-width: 40%;
    height: 190px;
  }

  .thirdList li:before {
    width: 45%;
    height: 250px;
  }

  .thirdList li h3 {
    font-size: 20px;
  }

  .thirdList li .thirdList__procent {
    font-size: 60px;
  }

  .thirdList li p {
    padding: 0 3px;
  }

  .thirdList li {
    margin-bottom: 80px;
  }

  .slider-for3 img {
    height: 248px;
  }

  .tecnologyList2 li {
    max-width: 100%;
  }

  .tecnologyList2 .tecnologyListLeft__title {
    font-size: 24px;
  }

  .tecnologyList2 .tecnologyListLeft__list span {
    font-size: 16px;
  }

  .tecnologyList2__price2, .tecnologyList2__price {
    font-size: 35px;
  }

  .thirdBlockList__content p {
    width: 59%;
    line-height: 150%;
  }

  .thirdBlockList__content {
    height: 550px;
  }

  .thirdBlockList li {
    max-width: 100%;
  }

  .thirdBlockList__content h3 {
    margin-top: 115px;
    font-size: 30px;
  }

  .thirdBlockList__content p {
    line-height: 200%;
  }

  .acardeon .metismenu {
    margin-top: 30px;
  }

  .workList__right {
    max-width: 75%;
  }

  .contentRight .metismenu > li .has-arrow > span {
    max-width: 84%;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 320px;
  }

  .multi-vertical2 .slider-nav .slick-slide:after {
    width: 86%;
  }

  .multi-vertical2 .slider-nav img {
    height: 88px;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 236px;
  }

  .multi-vertical2 .slider-for {
    height: 238px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow, .multi-vertical2 .slider-for .slick-prev.slick-arrow {
    height: 224px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 73px;
  }

  .contentRight .frameImg {
    margin: 50px auto 45px;
  }
}

@media (max-width: 540px) {
  .descriptionList li:before {
    left: -79%;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    width: 45px;
  }

  .multi-vertical .slider-nav img {
    height: 90px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 74px;
    width: 87%;
  }

  .serviceListText b, .serviceListText span {
    font-size: 16px;
  }

  .bestContent {
    flex-direction: column;
  }

  .layout {
    max-width: 400px;
  }

  .titleH2 {
    font-size: 30px;
  }

  .layoutFancybox li a {
    height: 173px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    max-width: 45%;
    height: 175px;
  }

  .layoutFancybox li a img {
    height: 100%;
  }

  .homeTitle {
    font-size: 25px;
  }

  .homeParagraf {
    padding: 25px 0;
  }

  .homeMiddleLeft p {
    padding-top: 0;
  }

  .facades {
    max-width: 400px;
  }

  .facadesFancybox li {
    max-width: 100%;
    margin-bottom: 20px !important;
    height: 202px;
    padding: 7px 8px 2px 8px;
  }

  .facadesFancybox li a img {
    height: 185px;
  }

  .facadesFancybox li a {
    height: 190px;
  }

  .facades .titleH2:before {
    width: 100px;
    height: 17px;
  }

  .freeTitle__text {
    font-size: 21px;
  }

  .freeLeft {
    max-width: 400px;
  }

  .freeTitle__text span:after {
    width: 120px;
  }

  .slider-nav2 .slick-slide:after {
    width: 88%;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 11px;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    height: 94%;
  }

  .buildingBlock__title {
    font-size: 30px;
  }

  .buildingBlock p {
    font-size: 16px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow {
    width: 50px;
  }

  .slider-nav4 img {
    height: 100px;
  }

  .slider-nav4 .slick-slide:after {
    height: 86px;
    width: 89%;
  }

  .slider-nav4 {
    height: 150px;
  }

  .complectionBlock__price {
    right: 100px;
  }

  .moreBlock li a {
    font-size: 12px;
  }

  .moreBlock {
    width: 100%;
    justify-content: space-between;
  }

  .moreBlock li {
    margin-right: 0;
  }

  .complectionListItem2 {
    max-width: 100%;
  }

  .complectionBlock {
    border-right: 0;
  }

  .metismenu .has-arrow::after {
    right: 0 !important;
    width: 25px !important;
  }

  .metismenu .has-arrow::before {
    right: 0 !important;
    width: 25px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 275px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 263px;
  }

  .slider-for {
    height: 277px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 85%;
  }

  .facadesFancybox li a:before {
    bottom: 0;
  }

  .facadesFancybox li {
    padding: 5px 7px 0 7px;
    height: 201px;
  }

  .thirdList li {
    max-width: 100%;
    margin-bottom: 210px;
  }

  .thirdList li:before {
    width: 100%;
    height: 350px;
  }

  .thirdList {
    margin-top: 150px;
    margin-bottom: 0;
  }

  .thirdList li h3 {
    font-size: 30px;
  }

  .thirdList li .thirdList__procent {
    font-size: 70px;
  }

  .thirdList li p {
    font-size: 16px;
    padding: 0 75px;
  }

  .slider-nav3 img {
    height: 100px;
  }

  .slider-nav3 .slick-slide:after {
    height: 88px;
    width: 89%;
  }

  .thirdBlockList__content p {
    width: 80%;
  }

  .numberBlock {
    max-width: 300px;
  }

  .sliderNumberBlock__img img {
    height: 278px;
  }

  .contentRight .thirdList {
    margin-top: 50px;
  }

  .contentRight .serviceContent {
    flex-direction: column-reverse;
  }

  .contentRight .serviceContentImg, .contentRight .serviceContentLeft {
    max-width: 100%;
  }

  .contentRight .sliderNumberBlock {
    max-width: 100%;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 250px;
  }

  .multi-vertical2 .slider-for .slick-slide img {
    height: 236px;
  }

  .onelive {
    height: 300px;
  }

  .onelive__title {
    font-size: 35px;
    max-width: 350px;
    padding-top: 50px;
  }

  .oneliveIn p {
    max-width: 350px;
    line-height: 130%;
    font-size: 18px;
  }

  .etabs li {
    margin-right: 20px;
  }

  .etabs li a {
    font-size: 18px;
  }

  .aboutWork__title2 {
    font-size: 30px;
  }

  .buildingItem__title {
    font-size: 20px;
  }

  .buildingItem__href,
  .buildingItem p {
    font-size: 14px;
  }

  .professionalList li {
    max-width: 40%;
  }
}

@media (max-width: 490px) {
  .projectsList li {
    max-width: 100%;
  }

  .descriptionList li:before {
    left: -57%;
  }

  .formConnectInput input {
    max-width: 77%;
  }

  .footerBottomMenu {
    max-width: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .footerBottomMenu li {
    margin-bottom: 20px;
  }

  .footerHref {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .mobilBlock {
    max-width: 320px;
  }

  .headerRight__whatsapp, .headerRight__phone {
    font-size: 14px;
  }

  .headerSocial li a {
    font-size: 12px;
  }

  .navigationMenuMobil li a {
    font-size: 14px;
  }

  .headerSocial li {
    width: 100%;
    text-align: center;
  }

  .headerSocial li a {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .mobilBlock .headerSocial {
    justify-content: center;
    text-align: center;
  }

  .serviceList {
    margin-top: 40px;
    align-items: center;
    flex-direction: column;
  }

  .serviceList li {
    max-width: 220px;
    width: 100%;
  }

  .titleH1 span {
    font-size: 43px;
  }

  .multi-vertical .slider-nav img {
    height: 110px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 95px;
    width: 89%;
  }

  .layout {
    max-width: 300px;
  }

  .titleH2 {
    font-size: 23px;
  }

  .titleH2:before {
    width: 147px;
    height: 14px;
    top: 12px;
  }

  .layoutFancyboxGalary,
  .layoutFancybox li {
    margin: 0 14px 20px 0;
    height: 140px;
  }

  .layoutFancybox li a {
    height: 138px;
  }

  .layoutFancybox li a:before {
    width: 30px;
    height: 30px;
    bottom: 8px;
  }

  .layoutFancybox {
    margin: 20px 0 50px;
  }

  .best {
    margin: 70px 0 40px;
  }

  .click {
    margin: 0;
  }

  .click .bestText {
    font-size: 20px;
  }

  .homeContent {
    max-width: 360px;
    padding: 30px 15px;
  }

  .homeMiddleLeft {
    background-size: 100% 100%;
    height: 86px;
  }

  .homeMiddle img {
    top: 10px;
  }

  .homeMiddleLeft p {
    font-size: 13px;
  }

  .homeMiddleLeft p a {
    font-size: 13px;
  }

  .facades {
    max-width: 300px;
  }

  .facadesFancybox li {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .facadesFancybox li a img {
    height: 185px;
  }

  .facadesFancybox li a {
    height: 190px;
  }

  .facades .titleH2:before {
    width: 100px;
    height: 17px;
  }

  .facadesFancybox li {
    margin-right: 0;
    margin-bottom: 20px !important;
  }

  .facadesFancybox li a {
    height: 143px;
  }

  .facadesFancybox li a img {
    height: 140px;
  }

  .freeLeft {
    max-width: 300px;
  }

  .freeTitle__text {
    font-size: 15px;
  }

  .freeTitle__text span:after {
    width: 90px;
  }

  .homeBth__telegram,
  .homeBth__what,
  .freeLeft p {
    font-size: 14px;
  }

  .tecnologyList__price {
    top: 0;
  }

  .titleH2 {
    font-size: 20px;
  }

  .tecnologyListLeft {
    margin-left: 15px;
  }

  .tecnologyList > a img {
    width: 40px;
    height: 40px;
  }

  .slider-nav2 .slick-slide img {
    height: 90px;
  }

  .slider-nav2 .slick-slide:after {
    height: 78px;
    width: 88%;
  }

  .complectionListItemMenu li a {
    font-size: 12px;
  }

  .complectionListItem h3 {
    font-size: 14px;
  }

  .slider-nav3 img {
    height: 95px;
  }

  .slider-nav3 .slick-slide:after {
    width: 88%;
    height: 82px;
    left: 6px;
  }

  .buildingBlock__title {
    font-size: 26px;
  }

  .slider-nav4 img {
    height: 140px;
  }

  .slider-nav4 .slick-slide:after {
    height: 127px;
    width: 91%;
  }

  .moreBlock li.moreBlock__work,
  .moreBlock li a.work {
    max-width: 190px;
  }

  .user .userImg__img2 {
    width: 250px;
  }

  .oneImg__bottom span,
  .oneRight p {
    font-size: 12px;
  }

  .oneRightList li p {
    max-width: 90%;
  }

  .oneImg__bottom span {
    line-height: 100%;
  }

  .slider-for2 .slick-next.slick-arrow {
    right: 10px;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    width: 40px;

  }

  .slider-for4 .slick-next.slick-arrow {
    right: 11px;
  }

  .facadesFancybox li {
    height: 152px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 230px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 218px;
  }

  .slider-for {
    height: 230px;
  }

  .slider-for4 img {
    height: 206px;
  }

  .slider-for4 .slick-next.slick-arrow, .slider-for4 .slick-prev.slick-arrow {
    height: 94%;
  }

  .contentRight .thirdBlockList li {
    max-width: 100%;
  }

  .contentRight .oneImg__bottom {
    max-width: 96%;
  }

  .contentRight .two {
    margin-top: 50px;
  }

  .contentRight .oneImg__bottom span {
    font-size: 12px;
  }

  .contentRight .thirdBlockList__content p {
    font-size: 15px;
    line-height: 25px;
  }

  .contentRight .thirdBlockList__content h3 {
    font-size: 25px;
  }

  .workList__right {
    max-width: 60%;
  }

  .workList__right p {
    font-size: 14px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow, .multi-vertical2 .slider-for .slick-prev.slick-arrow {
    height: 218px;
  }

  .othersListText p {
    font-size: 14px;
  }

  .problem__title {
    font-size: 18px;
  }

  .problem__title:after, .problem__title:before {
    left: 272px;
  }

  .descriptionH2 {
    font-size: 20px;
  }

  .homeBlock__title {
    font-size: 16px;
  }

  .homeBlock .projectsList li {
    max-width: 46%;
  }
}

@media (max-width: 404px) {
  .descriptionList li:before {
    left: -39%;
  }

  .titleH1 span {
    font-size: 40px;
  }

  .titleH1:before {
    top: 30px;
  }

  .bread li a span {
    font-size: 12px;
  }

  .slider-for .slick-next.slick-arrow {
    right: 7px;
  }

  .multi-vertical .slider-nav img {
    height: 96px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 80px;
    width: 88%;
  }

  .bread li a:after {
    margin: 0 2px;
  }

  .homeMiddleLeft {
    height: 110px;
  }

  .homeParagraf {
    font-size: 14px;
  }

  .homeMiddleLeft p {
    padding-top: 5px;
  }

  .homeBth__telegram, .homeBth__what {
    font-size: 14px;
  }

  .homeTitle {
    font-size: 20px;
  }

  .homeBth__telegram img,
  .homeBth__what img {
    margin: 0 5px;
  }

  .buildingBlock__title {
    font-size: 20px;
  }

  .buildingBlock p {
    font-size: 14px;
  }

  .slider-nav4 .slick-slide:after {
    width: 89%;
  }

  .whyItem__title {
    font-size: 22px;
  }

  .whyItemContent p {
    font-size: 14px;
  }

  .slider-for4 .slick-next.slick-arrow {
    right: 10px;
  }

  .multi-vertical .slider-for .slick-slide img {
    height: 185px;
  }

  .slider-for .slick-prev.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 173px;
  }

  .slider-for {
    height: 186px;
  }

  .thirdList li p {
    padding: 0 26px;
    font-size: 14px;
  }

  .slider-for3 img {
    height: 175px;
  }

  .slider-for3 .slick-next.slick-arrow, .slider-for3 .slick-prev.slick-arrow {
    height: 93%;
  }

  .tecnologyList2 .tecnologyListLeft__title {
    font-size: 20px;
  }

  .tecnologyList2 .tecnologyListLeft__list span {
    font-size: 14px;
  }

  .thirdBlockList__content p {
    line-height: 150%;
  }

  .thirdBlockList__content h3 {
    font-size: 20px;
  }

  .formConnectInput input {
    max-width: 70%;
  }

  .thirdList li:last-of-type {
    margin-bottom: 150px;
  }

  .serviceContentLeft {
    margin-top: 30px;
  }

  .numberBlock {
    max-width: 250px;
  }

  .sliderNumberBlock__img img {
    height: 221px;
  }

  .multi-vertical2 .slider-for {
    height: 175px;
  }

  .multi-vertical2 .slider-for .slick-next.slick-arrow, .multi-vertical2 .slider-for .slick-prev.slick-arrow {
    height: 173px;
    width: 30px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 86%;
  }

  .etabs li a {
    font-size: 15px;
  }

  .aboutWork__hr {
    top: 208px;
  }

  .aboutRightList li span {
    width: 100%;
  }

  .aboutRightList li {
    padding: 10px 0 0 10px;
  }

  .aboutRightList li.aboutRightList__three {
    padding: 10px 0 0 10px;
  }

  .aboutWork__title2 {
    font-size: 25px;
  }

  .othersListText p {
    font-size: 12px;
  }

  .problem__title2 {
    margin-top: 20px;
    font-size: 25px;
  }

  .problemIn {
    margin-top: 180px;
  }

  .problemBtn__phone {
    margin-left: 0;
    margin-top: 30px;
  }

  .problem__title {
    font-size: 16px;
  }

  .problem__title:after, .problem__title:before {
    left: 249px;
    top: 7px;
  }

  .problem__title:after {
    top: 12px;
  }

  .problem__title2 {
    font-size: 18px;
  }
}

@media (max-width: 370px) {
  .titleH1 span {
    font-size: 30px;
  }

  .titleH1:before {
    height: 10px;
    top: 27px;
  }

  .description {
    padding: 46px 0;
    margin-top: 35px;
  }

  .descriptionList li:before {
    left: -25%;
  }

  .description__paragraf {
    font-size: 14px;
  }

  .descriptionSize {
    font-size: 25px;
  }

  .titleH1:before {
    width: 142px;
  }

  .descriptionH2 {
    font-size: 26px;
  }

  .descriptionList li:before {
    left: -14%;
  }

  .descriptionList li span {
    font-size: 14px;
  }

  .formConnectInput input {
    max-width: 70%;
  }

  .mobilBlock {
    max-width: 270px;
    padding: 20px 10px;
  }

  .headerRight__whatsapp:before,
  .headerRight__phone:before {
    width: 25px;
    height: 25px;
    background-size: contain;
    margin-right: 5px;
  }

  .bestText {
    font-size: 25px;
  }

  .bestText img {
    width: 30px;
  }

  .homeMiddleLeft {
    height: 140px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    width: 86%;
  }

  .slider-nav3 img {
    height: 73px;
  }

  .slider-nav3 .slick-slide:after {
    width: 85%;
    height: 61px;
    left: 6px;
  }

  .moreBlock li.moreBlock__work, .moreBlock li a.work {
    max-width: 155px;
  }

  .complection__h2 {
    font-size: 20px;
  }

  .moreBlock li.moreBlock__build {
    max-width: 130px;
  }

  .complectionBlock__price {
    right: 0;
  }

  .complectionBlock {
    border-right: 0;
  }

  .userRight__title {
    font-size: 25px;
  }

  .userRight p {
    font-size: 16px;
  }

  .slider-for4 .slick-prev.slick-arrow, .slider-for3 .slick-prev.slick-arrow, .slider-for2 .slick-prev.slick-arrow, .slider-for .slick-prev.slick-arrow, .slider-for4 .slick-next.slick-arrow, .slider-for3 .slick-next.slick-arrow, .slider-for2 .slick-next.slick-arrow, .slider-for .slick-next.slick-arrow {
    height: 93%;
  }

  .multi-vertical .slider-nav img {
    height: 83px;
  }

  .multi-vertical .slider-nav .slick-slide:after {
    height: 68px;
  }

  .slider-for2 .slick-next.slick-arrow, .slider-for2 .slick-prev.slick-arrow {
    right: 9px;
    height: 91%;
  }

  .slider-for4 .slick-next.slick-arrow, .slider-for4 .slick-prev.slick-arrow {
    height: 95%;
  }

  .thirdList li:before {
    width: 95%;
  }

  .thirdList li {
    margin-bottom: 180px;
  }

  .thirdBlockList__content {
    height: 468px;
  }

  .thirdBlockList__content p {
    font-size: 13px;
    max-width: 87%;
    width: 100%;
  }

  .thirdBlockList__content h3 {
    margin-top: 80px;
  }

  .contentRight .oneImg__bottom span {
    font-size: 11px;
  }

  .contentRight .thirdLeft p,
  .contentRight .twoLeft p {
    font-size: 14px;
  }

  .contentRight .thirdList li:last-of-type {
    margin-bottom: 0;
  }

  .contentRight .oneRightList li p {
    max-width: 90%;
  }

  .contentRight .thirdBlockList__content p {
    padding: 0 30px;
    font-size: 13px;
    line-height: 22px;
  }

  .contentRight .sliderNumberBlock__img img {
    height: 187px;
  }

  .etabs li {
    margin-right: 14px;
  }

  .buildingItem__title {
    font-size: 18px;
  }

  .tecnologyList2List a {
    margin-right: 10px;
  }

  .othersList li {
    padding: 40px 10px 10px;
  }

  .descriptionH2 {
    font-size: 16px;
  }

  .homeBlock .projectsList li {
    max-width: 100%;
  }

  .homeBlock__title {
    margin-top: 20px;
  }

  .titleH1 {
    margin-top: 50px;
  }
}
   a.rollover {
    background: url(/company/face/3.jpg); /* Путь к файлу с исходным рисунком  */
    display: block; /*  Рисунок как блочный элемент */
    width: 498px; /* Ширина рисунка */
    height: 550px; /*  Высота рисунка */
   }
   a.rollover:hover {
    background: url(/company/face/1.jpg); /* Путь к файлу с заменяемым рисунком  */
   }

  .divicon {

  margin-bottom:10px;

  }



.divicon p{


}
.divicon img,p{

}
.divicon img{
  margin-top:-2px;
  margin-right:10px;
  max-width:27px;
}

    .full-link {
        display: block;
        text-decoration: none;
        color: inherit;
        width: 100%;
        height: 100%;
    }
    .othersList li {
        position: relative;
    }
    .full-link::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
	
	.custom-link {
            color: #fecc01;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .custom-link:hover {
            color: black;
        }
        
        .custom-link:active {
            color: #fecc01;
        }