@import url("aos.css") (min-width: 768px);

* {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.grid {
  display: -ms-grid;
  display: grid;
}

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

body {
  background: #2C2C2C;
}

body.fixed {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.main-wrapper {
  overflow: hidden;
}

*::-webkit-scrollbar {
  width: 0;
}

* {
  -ms-overflow-style: none;
}

* {
  overflow: -moz-scrollbars-none;
}

.wrapper {
  overflow: hidden;
}

.parallax {
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax .layer {
  width: 104%;
  height: 102%;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: -10px 0px 0px -2%;
  background-position: top center;
  background-repeat: no-repeat;
}

.btn {
  border-radius: 3px;
  border: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#F3863F), to(#F5A03D));
  background: linear-gradient(0deg, #F3863F 0%, #F5A03D 100%);
  -webkit-box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  cursor: pointer;
}

.btn:hover {
  -webkit-box-shadow: 0px 0px 50px rgba(254, 146, 3, 0.45);
  box-shadow: 0px 0px 50px rgba(254, 146, 3, 0.45);
  -webkit-transition: -webkit-box-shadow ease .5s;
  transition: -webkit-box-shadow ease .5s;
  transition: box-shadow ease .5s;
  transition: box-shadow ease .5s, -webkit-box-shadow ease .5s;
}

.form__btn {
  width: 100%;
}

.header-wrapper {
  background-image: url(../img/screen-1.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-bottom: 215px;
  padding-top: 70px;
}

.header__info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
}

@media screen and (max-width: 576px){
	.header__info {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,0.7);
		padding-bottom: 50px;
		z-index: 999;
	}
}


.header__info>* {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.header__info-inner {
  height: 40px;
  position: relative;
}

.header__info-inner>* {
  align-self: center;
}

.header__info-menu nav {
  opacity: 0;
  display: block !important;
  width: 0;
  position: absolute;
  -webkit-transition: opacity ease .5s, height ease .5s;
  transition: opacity ease .5s, height ease .5s;
  right: -200vw;
  height: 0;
}

.header__info-menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__info-menu nav ul li {
  text-align: right;
}

.header__info-menu nav ul li a {
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3.125;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
}

.header__info-menu nav ul li a:hover {
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
  color: #F79B03;
}

.header__info-menu.active nav {
  opacity: 1;
  height: auto;
  -webkit-transition: opacity ease .5s, height ease .5s;
  transition: opacity ease .5s, height ease .5s;
  position: absolute;
  display: block;
  right: -20px;
  top: -20px;
  padding: 30px 170px 30px 20px;
  border-radius: 10px;
  background-color: rgba(30, 31, 32, 0.98);
  -webkit-box-shadow: 0px 61px 126.49px 12.51px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 61px 126.49px 12.51px rgba(0, 0, 0, 0.7);
  width: 445px;
  z-index: 25;
}

.header__info-menu.active span {
  z-index: 30;
}

.header__info-menu.active .burger {
  z-index: 30;
}

.header__info-cards {
  height: 30px;
  margin-right: 35px;
}

.header__info-cards__item-inner {
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 3px;
  width: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: 0 5px;
}

.header__info-cards__item {
  height: auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

.header__info-pop {
  height: 100%;
  max-height: 40px;
  padding: 0 35px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
}

.header__info-phone .phone {
  display: block;
  font-size: 16px;
  font-family: "Jost";
  font-weight: bold;
  text-transform: uppercase;
}

.header__info-phone .header-callback {
  font-size: 12px;
  font-family: "Jost";
  color: #fd9100;
  text-transform: uppercase;
  border-bottom: 1px solid #fd9100;
  border-bottom-style: dotted;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.header__info-menu {
  align-content: center;
  margin-left: 30px;

}

.header__info-menu>* {
  align-self: center;
}

.header__info-menu .burger {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: block;
  margin-right: 10px;
}

.header__info-menu .burger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #F3923E;
  top: 11.5px;
  left: 0;
  display: block;
}

.header__info-menu .burger span:after {
  content: "";
  display: block;
  background: #F3923E;
  width: 23px;
  height: 2px;
  right: 0;
  top: -11.5px;
  position: absolute;
}

.header__info-menu .burger span:before {
  content: "";
  display: block;
  background: #F3923E;
  width: 23px;
  height: 2px;
  right: 0;
  bottom: -11.5px;
  position: absolute;
}

.header__info-menu>span {
  cursor: pointer;
  font-size: 13px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.header__info-menu nav {
  display: none;
}

.header__text {
  margin-top: 160px;
}

.header__text h1 {
  font-size: 55px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: .95;
  margin: 0;
  margin-bottom: 55px;
}

.header__text h1 span {
  display: block;
  font-size: 188px;
  font-family: "Jost";
  margin-left: -11px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.header__text-icons {
  margin-bottom: 55px;

}

.header__text-icons-item {
  position: relative;
  margin-right: 30px;
}

.header__text-icons-item:after {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background: #F4933E;
  opacity: 0.2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  position: absolute;
  left: 0;
  top: 18px;
  border-radius: 3px;
}

.header__text-icons-item__image {
  -ms-flex-item-align: center;
  align-self: center;
  height: 60px;
  z-index: 2;
  width: auto;
  margin-right: 20px;
}

.header__text-icons__text {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 20px;
  z-index: 2;
  font-family: "Jost";
  color: white;
  text-decoration: underline;
  max-width: 115px;
}

.header__text-icons__text-nol{
    -ms-flex-item-align: center;
    align-self: center;
	align-self: center;
    font-size: 20px;
    z-index: 2;
    font-family: "Jost";
    color:#fe9203;
    max-width: 115px;
}

.header__text-button {
  -ms-flex-line-pack: center;
  align-content: center;
}

.header__text-button .btn {
  -ms-flex-item-align: center;
  align-self: center;
  padding: 22px 55px;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 45px;
}

.header__text-button .hidden-text-btn {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 14px;
  cursor: pointer;
  font-family: "Jost";
  color: white;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  border-bottom-style: dotted;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.hidden_logo {
  display: none;
}

.first-tabs-wrapper,
.second-tabs-wrapper {
  background-image: url(../img/screen-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: background-image ease 1.5s;
  transition: background-image ease 1.5s;
  padding-top: 360px;
  padding-bottom: 383px;
}

.first-tabs-wrapper .container,
.second-tabs-wrapper .container {
  position: relative;
}

.first-tabs-wrapper.active,
.second-tabs-wrapper.active {
  background-image: url(../img/screen-2-2.jpg);
  -webkit-transition: background-image ease 1.5s;
  transition: background-image ease 1.5s;
}

.big-text {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;

  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  -webkit-transition: left ease 2.5s, opacity ease 2.5s;
  transition: left ease 2.5s, opacity ease 2.5s;
  opacity: 1;
}

.big-text.hidden {
  -webkit-transition: left ease 2.5s, opacity ease 2.5s;
  transition: left ease 2.5s, opacity ease 2.5s;
  left: -200vw;
  opacity: 0;
}

.big-text>* {
  max-width: 760px;
  font-size: 55px;
  line-height: 0.95;
  margin: 0 auto;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.big-text>* span {
  font-size: 180px;
  font-family: "Jost";
  color: white;
  line-height: 0.85;
  margin-left: -9px;
  font-weight: bold;
  text-transform: uppercase;
}

.first-tabs {
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  position: absolute;
  left: 200vw;
  top: 10px;
  opacity: 0;
  -webkit-transition: left ease 2.5s, opacity ease 2.5s;
  transition: left ease 2.5s, opacity ease 2.5s;
  text-align: center;
}

.first-tabs__item,
.second-tabs__item {
  border-radius: 10px;
  background-color: #1e1f20;
  padding: 50px 0;
  width: 100%;
  -webkit-transition: -webkit-box-shadow ease .5s;
  transition: -webkit-box-shadow ease .5s;
  transition: box-shadow ease .5s;
  transition: box-shadow ease .5s, -webkit-box-shadow ease .5s;
  -webkit-box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  cursor: pointer;
  height: 220px;
  max-width: 360px;
}

.first-tabs__item:hover,
.second-tabs__item:hover {
  -webkit-box-shadow: 0px 0px 70px rgba(254, 146, 3, 0.35);
  box-shadow: 0px 0px 70px rgba(254, 146, 3, 0.35);
  -webkit-transition: -webkit-box-shadow ease .5s;
  transition: -webkit-box-shadow ease .5s;
  transition: box-shadow ease .5s;
  transition: box-shadow ease .5s, -webkit-box-shadow ease .5s;
}

.first-tabs__item>*,
.second-tabs__item>* {
  -ms-grid-column-align: center;
  justify-self: center;
}

.first-tabs__item-text,
.second-tabs__item-text {
  font-size: 22px;
  font-family: "Jost";
  color: #fe9203;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
  cursor: pointer;
  margin-top: 25px;
}

.first-tabs__item-text:hover,
.second-tabs__item-text:hover {
  color: white;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
}

.first-tabs.active,
.second-tabs.active {
  left: 0;
  opacity: 1;
  -webkit-transition: left ease 2.5s, opacity ease 2.5s;
  transition: left ease 2.5s, opacity ease 2.5s;
}

.first-type-wrapper {
  position: relative;
  padding-top: 305px;
  padding-bottom: 271px;
}



.parallax_first-type {
  height: 100%;
}

.parallax_first-type .layer_01 {
  background-image: url(../img/screen-4.jpg);
}

.parallax_first-type .layer_02 {
  background-image: url(../img/tree.png);
}

.first-type-wrapper .container {
  position: relative;
}

.first-type-wrapper .container .first-type-wrapper__paralax {
  position: absolute;
  max-width: 600px;
  right: calc(50% - 300px);
  top: 35%;
  z-index: 10;
}

.first-type,
.type {
  z-index: 50;
  position: inherit;
  height: 100%;
  width: 100%;
  max-width: 760px;
}

.type-title {
  font-size: 55px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.sub-type-title {
  font-size: 22px;
  font-family: "Jost";
  color: white;
}

.type ul {
  margin-top: 20px;
  margin-bottom: 50px;
  padding: 0;
  list-style: none;
}

.type ul li {
  padding-left: 40px;
  font-size: 22px;
  font-family: "Jost";
  color: white;
  margin-bottom: 10px;
  position: relative;
}

.type ul li::before {
  content: url(../img/check2.png);
  position: absolute;
  left: 0;
}

.type .btn {
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 50px;
  cursor: pointer;
}

.second-type-wrapper {
  position: relative;
  padding-top: 320px;
  padding-bottom: 321px;
}


.second-type-wrapper .container {
  position: relative;
}

.second-type-wrapper.active {

  -webkit-transition: background-image ease 1.5s;
  transition: background-image ease 1.5s;
}

.secind-tabs-btn {
  margin-top: 60px;
  text-align: center;
}

.secind-tabs-btn .btn {
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px 50px;
}

.why-wrapper {
  background-image: url(../img/screen-6.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 170px;
  padding-bottom: 449px;

}

.why-wrapper .container {
  max-width: 1340px;
  position: relative;
}

.why-title {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: calc(100vw - 30px);
  margin-bottom: 50px;
  margin-right: 25px;
}

.why-title>*:first-child {
  font-size: 50px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.why-title>*:first-child>* {
  font-size: 180px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.8;
  display: block;
}

.why-title .btn {
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 10px;
  margin-top: 20px;
}

.why {
  height: 100%;
  position: relative;
}

.why>* {
  -ms-grid-column-align: start;
  justify-self: start;
}

.custom__slider-prev {
  position: absolute;
  right: 200px;
  cursor: pointer;
  padding-top: 50px;
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.custom__slider-prev:hover {
  -webkit-transform: scaleX(0.8);
  transform: scaleX(0.8);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.custom__slider-next {
  position: absolute;
  right: 0;
  cursor: pointer;
  padding-top: 50px;
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.custom__slider-next:hover {
  -webkit-transform: scaleX(0.8);
  transform: scaleX(0.8);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.why-slider {
  -webkit-transition: -webkit-transform ease .7s;
  transition: -webkit-transform ease .7s;
  transition: transform ease .7s;
  transition: transform ease .7s, -webkit-transform ease .7s;
  position: absolute;
  max-width: 1920px;
  left: 0;
}

.why-tabs__item {
  border-radius: 10px;
  background-color: #1e1f20;
  padding: 50px 25px;
  max-width: 360px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -webkit-transition: -webkit-box-shadow ease .5s;
  transition: -webkit-box-shadow ease .5s;
  transition: box-shadow ease .5s;
  transition: box-shadow ease .5s, -webkit-box-shadow ease .5s;
  -webkit-box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  box-shadow: 0px 0px 0px rgba(254, 146, 3, 0.35);
  cursor: pointer;
  margin-right: 30px;
  text-align: center;
  height: 287px;
}

.why-tabs__item:hover {
  -webkit-box-shadow: 0px 0px 70px rgba(254, 146, 3, 0.35);
  box-shadow: 0px 0px 70px rgba(254, 146, 3, 0.35);
  -webkit-transition: -webkit-box-shadow ease .5s;
  transition: -webkit-box-shadow ease .5s;
  transition: box-shadow ease .5s;
  transition: box-shadow ease .5s, -webkit-box-shadow ease .5s;
}

.why-tabs__item>* {
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 0 auto;
}

.why-tabs__item-title {
  font-size: 22px;
  font-family: "Jost";
  color: white;
  line-height: 1.182;
  text-align: center;
  margin: 20px 0;
}

.why-tabs__item-text {
  font-size: 20px;
  font-family: "Jost";
  font-weight: 300;
  text-align: center;
  color: white;
  cursor: pointer;
}

.works-wrapper {
  padding: 50px 0;
  position: relative;
  background-image: url(../img/screen-7.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 200px;
  padding-top: 222px;
}

.works-wrapper .hidden__text {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 255px;
  top: calc(50% - 25px);
  z-index: 1000;
  background: #3B3B3B;
}

.works-wrapper .hidden__text__left {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 590px;
  top: calc(50% - 25px);
  z-index: 1000;
  background: #3B3B3B;
}

.orange-circle {
  display: block;
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
}

.orange-circle__second {
  right: inherit;
  left: 0;
}

.works-wrapper.active .works-title__left {
  left: -10px;
  -webkit-transition: left ease 1s;
  transition: left ease 1s;
}

.works-wrapper.active .works-title__right {
  right: -15px;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}

.works-body.flex {
  align-items: center;
}

.works-title {
  margin-bottom: 20px;
  position: relative;
  text-align: right;
}

.works-title .works-title__left {
  font-size: 50px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.works-title .works-title__main {
  font-size: 140px;
  font-family: "Jost";
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  line-height: 0.8;
}

.works-title .works-title__right {
  font-size: 55px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}

.works-slider {
  /* height: 150px;*/
  max-width: 795px;
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


.works-slider .klogo {
  /*height: 100%;*/
  width: 26%;
  padding: 8px;
}

.klogo:hover img {
  transform: scale(1.1);
}

.works-slider img {
  width: 90%;
  transition: .5s;
}

.works-slider .slick-prev,
.works-slider .slick-next {
  width: inherit;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.works-slider .slick-prev {
  left: -660px;
}

.works-slider .slick-prev:hover:before {
  -webkit-transform: scaleX(0.8);
  transform: scaleX(0.8);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.works-slider .slick-prev:before {
  content: url(../img/arrow1.png);
  display: block;
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-image: none;
}

.works-slider .slick-next {
  right: -166px;
}

.works-slider .slick-next:hover:before {
  -webkit-transform: scaleX(0.8);
  transform: scaleX(0.8);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.works-slider .slick-next:before {
  content: url(../img/arrow2.png);
  display: block;
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-image: none;
}


.second-tabs-wrapper {
  background-image: url(../img/screen-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 390px;
  padding-bottom: 280px;
}

.second-tabs {
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  top: 380px;
  opacity: 0;
  -webkit-transition: left ease 2.5s, opacity ease 2.5s;
  transition: left ease 2.5s, opacity ease 2.5s;
  text-align: center;
}

.contact-wrapper {
  background-image: url(../img/screen-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 220px;
  padding-top: 320px;
}

.contact {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}

.contact h3 {
  font-size: 60px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
}

.contact .contact-number {
  font-size: 68px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact .contact__item {
  margin-bottom: 30px;
  position: relative;
}

.contact .contact__item-image {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  margin-right: 15px;
}

.contact .contact__item:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: #F4933E;
  opacity: 0.2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  position: absolute;
  left: -3px;
  top: -4px;
  border-radius: 3px;
}

.contact .contact__item-text {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 22px;
  font-family: "Jost";
  color: white;
}

.contact .contact__item a.contact__item-text {
  text-decoration: underline;
}

.contact .contact__buttons {
  margin-top: 80px;
}

.contact .contact__buttons-text {
  padding: 20px 50px;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 45px;
}

.contact .contact__buttons-back {
  font-size: 14px;
  font-family: "Jost";
  color: white;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
  text-transform: uppercase;
  border-bottom: 1px dotted;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.contact .contact__buttons-back:hover {
  color: #fe9f03;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
}

.footer {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 40px;
}

.footer__logo-text {
  margin-top: 20px;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  text-transform: uppercase;
}

.footer__who-text {
  font-size: 16px;
  font-family: "Jost";
  color: white;
}

.footer__who>* {
  justify-self: end;
}

.footer__social-text a {
  font-size: 16px;
  font-family: "Jost";
  color: white;
  text-decoration: underline;
  display: block;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
  margin-bottom: 10px;
}

.footer__social-text a:hover {
  color: #FE8603;
  -webkit-transition: color ease .5s;
  transition: color ease .5s;
}

.footer__social-items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 31px;
  margin-bottom: 10px;
}

.footer__social-item {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.footer__social-item svg {
  max-height: 22px;
  width: auto;
  fill: #fff;
  -webkit-transition: fill ease .5s;
  transition: fill ease .5s;
}

.footer__social-item svg:hover {
  fill: #FE8603;
  -webkit-transition: fill ease .5s;
  transition: fill ease .5s;
}

.footer__social-item-border {
  width: 1px;
  height: 100%;
  background: #FE8603;
}

.shadow {
  position: fixed;
  width: 100vw;
  left: 0;
  top: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9990;
}


.pop-wrapper {
  position: relative;
  border-radius: 10px;
  background-color: rgba(30, 31, 32, 0.98);
  -webkit-box-shadow: 0px 61px 126.49px 12.51px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 61px 126.49px 12.51px rgba(0, 0, 0, 0.7);
  padding: 55px;
  position: fixed;
  /*max-height: 87vh;
  overflow: scroll;*/
  top: 10vh;
  z-index: 10000;
  width: 100%;
}

.form {
  max-height: 87vh;
  overflow: scroll;
}

.pop-wrapper-1,
.pop-wrapper-2 {
  max-width: 560px;
  left: calc(50vw - 280px);
}

.pop-wrapper-3,
.pop-wrapper-4 {
  max-width: 760px;
  left: calc(50vw - 380px);
}

.pop-wrapper-work-pop,
.pop-wrapper-sert-pop {
  max-width: 960px;
  left: calc(50vw - 480px);
}

.pop-wrapper-rewiews-pop {
  max-width: 800px;
  left: calc(50vw - 400px);
  padding: 70px 70px 10px;

}

.rew__item {
  font-size: 26px;
}

.rew__item img {
  margin: 0 auto;
  width: 100%;;
}
@media screen and (max-width: 460px){
	.rew__item img {
	  width: 100%;
	  max-width: 300px; 
	}	
}


.rev_title {
  font-size: 26px;
}

.rev_subtitle {
  margin-bottom: 20px;
}

.pop-wrapper-constr-pop {
  max-width: 1140px;
  left: calc(50vw - 570px);
}

.pop-wrapper-work-pop img {
  height: 100%;
}

.pop-wrapper .form .form__title {
  font-size: 40px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.125;
  text-align: left;
  margin-bottom: 25px;
}

.pop-wrapper .form .form__subtitle {
  font-size: 22px;
  font-family: "Jost";
  color: white;
  line-height: 1.182;
  text-align: left;
  margin-bottom: 25px;
}

.pop-wrapper .form .form__polite-wrapper,
.pop-wrapper .form .form__polite {
  font-size: 12px;
  text-align: center;
  font-family: "Jost";
  color: #7d7d7d;
  line-height: 1.25;
}

.pop-wrapper .form .form__polite {
  text-decoration: underline;
}

.pop-wrapper .form .form__btn {
  display: block;
  text-align: center;
  padding: 20px 50px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.pop-wrapper .form .form__inputs {

  margin-bottom: 20px;
}

.pop-wrapper .form .form__inputs div {
  width: 100%;
  margin-bottom: 30px;
}

.pop-wrapper .form .form__inputs div label {
  font-size: 12px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.667;
  margin-bottom: 5px;
  cursor: pointer;
}

.pop-wrapper .form .form__inputs div input {
  outline: none;
  border: 0;
  width: 100%;
  background: transparent;
  padding: 7px 5px 7px 0px;
  border-bottom: 1px solid #FE9F03;
  color: #5e5e5e;
  font-size: 20px;
  -webkit-transition: border-bottom ease .5s;
  transition: border-bottom ease .5s;
  font-weight: 400;
}

.pop-wrapper .form .form__inputs div input:focus {
  border-bottom: 1px solid #fff;
  -webkit-transition: border-bottom ease .5s;
  transition: border-bottom ease .5s;
}

.pop-wrapper {
  /* top: -200vh; */
  display: none;
  -webkit-transition: top ease .5s;
  transition: top ease .5s;
}

.pop-wrapper.active {
  /* top: 10vh; */
  display: block;
  -webkit-transition: top ease .5s;
  transition: top ease .5s;
}

.pop-wrapper-zamer-pop,
.pop-wrapper-colors-pop {
  max-width: 340px;
  left: calc(50vw - 170px);
  top: 20vh;
}

.btn_ok {
  padding: 10px;
  max-width: 70px;
  text-align: center;
  margin: 20px auto 0;
}

.shadow {
  opacity: 0;
  left: -2000vw;
  height: 0;
  width: 0;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}

.shadow.active {
  opacity: 1;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
  cursor: pointer;
}

.close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.form__slider-tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form__slider-tabs__item {
  color: #656565;
  font-size: 22px;
  cursor: pointer;
  font-family: "Jost";
  -webkit-transition: color ease .5s, border-bottom ease .5s;
  transition: color ease .5s, border-bottom ease .5s;
  border-bottom: 3px solid transparent;
  margin-right: 50px;
}

.form__slider-tabs__item.active {
  font-size: 22px;
  font-family: "Jost";
  color: white;
  border-bottom: 3px solid #FE9F03;
  -webkit-transition: color ease .5s, border-bottom ease .5s;
  transition: color ease .5s, border-bottom ease .5s;
}

.form__slider,
.form__slider-rew {
  padding: 0 40px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 500px){
	.form__slider-rew {
	  padding: 0 15px;
	}	
}
.form__slider-prev:after,
.form__slider-next:after,
.form__slider-2 .slick-prev:before,
.form__slider-2 .slick-next:before,
.form__slider-rew .slick-prev:before,
.form__slider-rew .slick-next:before {
  content: "";
  width: 29px;
  height: 69px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.form__slider-prev:after,
.form__slider-2 .slick-prev:before,
.form__slider-rew .slick-prev:before {
  background-image: url("../img/arrow-1.png");
}

.form__slider-next:after,
.form__slider-2 .slick-next:before,
.form__slider-rew .slick-next:before {
  background-image: url("../img/arrow-2.png");
}

.form__slider-rew .slick-prev,
.form__slider-rew .slick-next {
  height: inherit;
  width: inherit;
}

.form__slider-rew .slick-prev {
  left: 0px;
}

.form__slider-rew .slick-next {
  right: 0;
}

.form__slider.active,
.form__slider-rew.active,
.form__slider-2.active {
  height: inherit;
  overflow: initial;
  margin-bottom: 20px;

}

.prim_foto {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
}

.form__slider .prim_foto {
  -webkit-transform: scale(1, 0.8);
  transform: scale(1, 0.8);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
  height: 72vh;
  width: 100%;
  max-width: 850px;
}

.form__slider-2 .slick-slide.slick-current.slick-active.slick-center {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.form__slider .prim_foto>div {
  height: 100%;
}

.form__slider .prim_foto.swiper-slide-active,
.form__slider-2 .slick-slide.slick-current.slick-active.slick-center {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

.form__slider-2 {
  margin-bottom: 0;
  padding: 0 40px;
}

.form__slider-2 .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__slider-2 .slick-slide {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.form__slider-2 .slick-prev,
.form__slider-2 .slick-next {
  height: inherit;
  width: inherit;
}

.form__slider-2 .slick-prev {
  left: 0;
}

.form__slider-2 .slick-next {
  right: 0;
}


.form-calc {
  justify-content: space-between;
}

.form-calc__text {
  width: 49%;
}

.form-calc__image {
  width: 49%;
}

.form-calc__text-title {
  font-size: 22px;
  font-family: "Jost";
  color: white;
  line-height: 1.182;
  margin-top: 25px;
  margin-bottom: 10px;
  display: flex;
}

.form-calc__text-title-txt {
  margin-right: 10px;
}

.form-calc__text-title-ico {
  font-size: 10px;
  border: 1px solid #fff;
  padding: 1px 3px;
  border-radius: 50px;
  width: 15px;
  height: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.form-calc__text-title-ico>.hiden_desc {
  bottom: 24px;
  left: 7px;
  text-align: left;
  width: 250px;
}

@media screen and (max-width:499px) {
  .form-calc__text-title-ico>.hiden_desc {
    left: -125px
  }
}

.form-calc__text-title-ico:hover>.hiden_desc {
  opacity: 1;
}

.form-calc__text-options,
.form-calc__text-colors {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-calc__text-options input,
.form-calc__text-colors input {
  position: absolute;
  left: -99999px;
}

.form-calc__text-option,
.form-calc__text-color {
  max-width: 65px;
  margin-right: 15px;

}

@media screen and (min-width:500px) {
  .form-calc__text-option {
    position: relative;
  }
}

.hiden_desc {
  position: absolute;
  width: 200px;
  bottom: 130px;
  left: 25px;
  border-radius: 10px 10px 10px 0;
  background-color: rgba(30, 31, 32, 0.98);
  -webkit-box-shadow: 0px 61px 126.49px 12.51px rgb(0 0 0 / 70%);
  box-shadow: 0px 61px 126.49px 12.51px rgb(0 0 0 / 70%);
  padding: 25px;
  transition: .7s;
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width:499px) {
  .form-calc__text-options {
    position: relative;
  }

  .hiden_desc {
    left: 30px;
    bottom: auto;
    top: -135px;
  }
}

.form-calc__text-option:hover>.hiden_desc {
  opacity: 1;
}

.form-calc__text-option img,
.form-calc__text-color img {
  height: 70px;
  width: 70px;
  cursor: pointer;
  border-radius: 3px;
  border: 3px solid transparent;
}

.form-calc__text-option span,
.form-calc__text-color span {
  font-size: 12px;
  cursor: pointer;
  font-family: "Jost";
  color: white;
  line-height: 1.25;
  margin-top: 5px;
  display: block;
}

.form-calc__text-types {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

input.wall_input {
  position: absolute;
  left: -9999px;
}

.form-calc__text-types-wall {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

.form-calc__text-types-wall::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
  border: 1px solid #eb8705;
}

.form-calc__text-types-wall span {
  font-size: 12px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.form-calc__text-types input:checked+label:after {
  content: url(../img/check.png);
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
}

.form-calc__text-colors input:checked+label img {
  border-style: solid;
  border-width: 3px;
  border-color: #eb8705;
}

.form-calc__text-options input:checked+label img {
  border-style: solid;
  border-width: 3px;
  border-color: #eb8705;
}

.form-calc__text-size {
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-calc__text-size__item input {
  outline: none;
  border: 0;
  width: 100%;
  background: transparent;
  padding: 7px 5px 7px 0px;
  border-bottom: 1px solid #FE9F03;
  color: #5e5e5e;
  font-size: 20px;
  -webkit-transition: border-bottom ease .5s;
  transition: border-bottom ease .5s;
  font-weight: 400;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-calc__text-size__item input:focus {
  border-bottom: 1px solid #fff;
  -webkit-transition: border-bottom ease .5s;
  transition: border-bottom ease .5s;
}

.form-calc__text-size__item input::-webkit-outer-spin-button,
.form-calc__text-size__item input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-calc__text-size__item-title {
  cursor: pointer;
  font-size: 12px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}

.form-cala__image-inner {
  background-image: url(../img/calcBg.png);
  min-height: 500px;
  position: relative;
  overflow: hidden;
  width: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

@media screen and (max-width: 1200px) {
  .form-cala__image-inner {
    width: 445px;
  }
}


#shkaf {
  width: 500px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
  position: absolute;
}

#shkaf.serebro {
  background-image: url(../img/shkaf/bg-serebro.png);
}

#shkaf.grey {
  background-image: url(../img/shkaf/bg-serij.png);
}

#shkaf.kor {
  background-image: url(../img/shkaf/bg-korich.png);
}

#shkaf.white {
  background-image: url(../img/shkaf/bg-white.png);
}

#shkaf.bej {
  background-image: url(../img/shkaf/bg-bej.png);
}

#shkaf.all {
  background-image: url(../img/shkaf/bg-serebro.png);
}

.st-bg {
  background-image: url(../img/shkaf/bg-bg.png);
  width: 342px;
  height: 165px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 135px;
  left: 80px;
}

.st-back {
  background-image: url(../img/shkaf/st-back.png);
  width: 305px;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 135px;
  left: 98px;
}

.st-left {
  background-image: url(../img/shkaf/st-left.png);
  width: 20px;
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 135px;
  left: 80px;
}

.st-right {
  background-image: url(../img/shkaf/st-right.png);
  width: 20px;
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 135px;
  right: 78px;
}

#polka {
  width: 341px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 40px;
  position: absolute;
  top: 165px;
  left: 80px;
  transition: 0.5s;
}

#polka.n1 {
  background-image: url(../img/shkaf/polka.png);
  background-position-y: 40px;
}

#polka.n2 {
  background-image: url(../img/shkaf/polka.png),
    url(../img/shkaf/polka.png);
  background-position-y: 15px,
    65px
}

#polka.n3 {
  background-image: url(../img/shkaf/polka.png),
    url(../img/shkaf/polka.png),
    url(../img/shkaf/polka.png);
  background-position-y: 0,
    37px, 75px;
}

@media screen and (max-width: 1200px) {
  .form-cala__image-inner {
    width: 445px;
  }

  #shkaf {
    left: -20px;
  }

  #polka {
    left: 60px;
  }

  .st-bg {
    left: 60px;
  }

  .st-back {
    left: 80px;
  }

  .st-right {
    right: 41px;
  }

  .st-left {
    left: 60px;
  }
}

@media screen and (max-width: 991px) {
  .form-cala__image-inner {
    width: 338px;
  }

  #shkaf {
    width: 385px
  }

  #polka {
    left: 41px;
    top: 115px;
    width: 263px;
  }

  .st-bg {
    left: 42px;
    width: 263px;
    top: 106px;
    height: 130px;
  }

  .st-back {
    left: 56px;
    top: 105px;
    width: 234px;
    height: 119px;
  }

  .st-right {
    right: 33px;
    top: 105px;
    width: 15px;
    height: 128px;
  }

  .st-left {
    left: 41px;
    top: 104px;
    width: 15px;
    height: 127px;
  }
}

@media screen and (max-width: 767px) {
  .form-cala__image-inner {
    width: 244px;
  }

  #shkaf {
    width: 287px
  }

  #polka {
    left: 23px;
    top: 82px;
    width: 202px;
  }

  #polka.n3 {
    background-position-y: 13px, 37px, 60px;
  }

  #polka.n2 {
    background-position-y: 18px, 51px;
  }

  #polka.n1 {
    background-position-y: 34px;
  }

  .st-bg {
    left: 26px;
    width: 198px;
    top: 78px;
    height: 102px;
  }

  .st-back {
    left: 37px;
    top: 78px;
    width: 175px;
    height: 95px;
  }

  .st-right {
    right: 21px;
    top: 78px;
    width: 11px;
    height: 95px;
  }

  .st-left {
    left: 25px;
    top: 77px;
    width: 12px;
    height: 96px;
  }
}

.form-cala__image-inner img {
  left: -23%;
  right: 0;
  width: 146%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 50px;
}

.form-calc__text-size__item.width {
  position: relative;
  width: 48%;
  margin-bottom: 15px;
}

.form-calc__text-size__item.width .number__minus {
  position: absolute;
  left: 3px;
  bottom: 15px;
  cursor: pointer;
  font-weight: 200;
  font-size: 75px;
  color: #E08E07;
  line-height: 15px;
}

.form-calc__text-size__item.width .number__plus {
  position: absolute;
  cursor: pointer;
  font-weight: 300;
  font-size: 30px;
  cursor: pointer;
  color: #E08E07;
  right: 3px;
  bottom: 1px;
}

.calc-price {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
}

.calc-price span {
  font-size: 12px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.667;
  display: block;
}

.calc-price span span {
  font-size: 55px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.calc-price .btn {
  padding: 20px 40px;
  font-size: 16px;
  font-family: "Jost";
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.calc-price__subtext {
  font-size: 12px;
  font-family: "Jost";
  color: #7d7d7d;
  margin-top: 10px;
  line-height: 1.25;
}

.pop-wrapper-thanks {
  max-width: 500px;
  left: calc(50vw - 250px);
}

.thanks {
  font-size: 20px;
}

.pop-wrapper-thanks h2 {
  font-size: 30px;
  font-weight: bold;
}

.pop-wrapper-faq-pop {
  max-width: 800px;
  left: calc(50vw - 400px);
}

ul.faq {
  list-style: none;
  padding-left: 0;
}

ul.faq li {
  margin-bottom: 20px;
}

.faq_que {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
}

.faq_ans {
  font-size: 17px;
}

.rew__item-video {
  margin: 0 auto;
  display: block;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .parallax_kottedg .layer_01 {
    background-image: url(../img/screen-5-1.jpg);
    -webkit-transition: background-image ease .5s;
    transition: background-image ease .5s;
  }

  .second-type-wrapper.active .parallax_kottedg .layer_01 {
    background-image: url(../img/screen-5-paral-1.jpg);
    -webkit-transition: background-image ease 1.5s;
    transition: background-image 1.5s;
  }

  .second-type-wrapper.active .parallax_kottedg .layer_02 {
    background-image: url(../img/screen-5-paral-2.png);
    -webkit-transition: background-image ease 2.5s;
    transition: background-image ease 2.5s;
  }

  .second-type-wrapper.active .parallax_kottedg .layer_03 {
    background-image: url(../img/screen-5-paral-3.png);
    -webkit-transition: background-image ease 2.5s;
    transition:background-image ease 2.5s;
  }

  .second-type-wrapper.active .parallax_kottedg .layer_04 {
    background-image: url(../img/screen-5-paral-4.png);
    -webkit-transition: background-image ease 2.5s;
    transition:background-image ease 2.5s;
  }

  .second-type-wrapper.active .parallax_kottedg .layer_05 {
    background-image: url(../img/screen-5-paral-5.png);
    -webkit-transition: background-image ease 2.5s;
    transition:background-image ease 2.5s;
  }
}

@media screen and (max-width: 1550px) {
  .works-slider .slick-next {
    right: 50px;
    top: 110%;
  }

  .works-slider .slick-prev {
    left: 50px;
    top: 110%;
  }
}

@media screen and (max-width: 1200px) {
  .pop-wrapper-faq-pop {
    max-width: 700px;
    left: calc(50vw - 350px);
  }

  .form__slider-prev:after,
  .form__slider-next:after,
  .form__slider-2 .slick-prev:before,
  .form__slider-2 .slick-next:before,
  .form__slider-rew .slick-prev:before,
  .form__slider-rew .slick-next:before {
    width: 15px;
  }

  .container {
    max-width: 992px;
  }

  .pop-wrapper-constr-pop.active {
    left: 10px;
    right: 10px;
    width: calc(100vw - 20px);
  }

  .calc-price span span {
    font-size: calc(25px + 35 * ((100vw - 320px) / (1200 - 320)));
  }

  .header-wrapper {
    padding-bottom: 50px;
  }

  .header__info-menu.active nav {
    right: -10px;
    top: -10px;
    padding: 20px 120px 20px 35px;
    max-width: 445px;
    width: auto;
  }

  .header__info-cards {
    display: none;
  }

  .header__text h1 {
    margin-bottom: 60px;
    font-size: 46px;
    line-height: 1.1;
  }

  .header__text h1 span {
    font-size: 160px;
  }

  .header__text-icons-item {
    margin-right: 30px;
  }

  .header__text-icons__text {
    max-width: 105px;
  }

  .header__text-button {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .first-tabs-wrapper,
  .second-tabs-wrapper {
    background-position: top -30px center;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .big-text {
    top: -20px;
  }

  .big-text>* {
    max-width: 540px;
    font-size: 41px;
  }

  .big-text>* span {
    font-size: 135px;
    display: block;
  }

  .first-tabs,
  .second-tabs {
    top: -30px
  }

  .first-tabs__item,
  .second-tabs__item {
    padding: 27px 0;
    margin: 0 15px;
    height: auto;
  }

  .type-title {
    margin-bottom: 20px;
  }

  .why-title>*:first-child {
    font-size: 50px;
    margin-bottom: 25px;
  }

  .why-title>*:first-child>* {
    font-size: 135px;
  }

  .custom__slider-prev {
    right: 150px;
    padding-top: 30px;
    -webkit-transform: scaleX(0.8);
    transform: scaleX(0.8);
  }

  .custom__slider-prev:hover {
    -webkit-transform: scaleX(0.7);
    transform: scaleX(0.7);
  }

  .custom__slider-next {
    padding-top: 30px;
    -webkit-transform: scaleX(0.8);
    transform: scaleX(0.8);
  }

  .custom__slider-next:hover {
    -webkit-transform: scaleX(0.7);
    transform: scaleX(0.7);
  }

  .why-tabs__item-title {
    font-size: calc(18px + 4 * ((100vw - 320px) / (1200 - 320)));
  }

  .why-tabs-text {
    font-size: calc(16px + 4 * ((100vw - 320px) / (1200 - 320)));
  }

  .works-body.flex {
    flex-wrap: wrap;
  }

  .works-slider {
    max-width: 88%;
    margin: 0 auto;
  }

  .works-title {
    width: 100%;
    margin-bottom: 50px;
  }

  .works-wrapper {

    padding-bottom: 250px;
    padding-top: 220px;
  }

  .footer__social-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .pop-wrapper {
    padding: 40px 30px;
  }

  .pop-wrapper-1,
  .pop-wrapper-2 {
    max-width: 560px;
    left: calc(50vw - 280px);
  }

  .pop-wrapper-3 {
    max-width: 760px;
    left: calc(50vw - 380px);
  }

  .pop-wrapper-work-pop,
  .pop-wrapper-rewiews-pop,
  .pop-wrapper-sert-pop {
    max-width: 960px;
    left: calc(50vw - 480px);
  }

  .pop-wrapper .form .form__title {
    font-size: calc(25px + 15 * ((100vw - 320px) / (1200 - 320)));
    margin-bottom: calc(15px + 10 * ((100vw - 320px) / (1200 - 320)));
  }

  .pop-wrapper .form .form__subtitle {
    font-size: calc(18px + 4 * ((100vw - 320px) / (1200 - 320)));
    margin-bottom: calc(15px + 10 * ((100vw - 320px) / (1200 - 320)));
  }

  .pop-wrapper .form .form__inputs input {
    width: 100%;
  }

  .form__slider-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form__slider-tabs__item {
    color: #656565;
    font-size: 22px;
    cursor: pointer;
    font-family: "Jost";
    -webkit-transition: color ease .5s, border-bottom ease .5s;
    transition: color ease .5s, border-bottom ease .5s;
    border-bottom: 3px solid transparent;
  }

  .form__slider-tabs__item.active {
    font-size: 22px;
    font-family: "Jost";
    color: white;
    border-bottom: 3px solid #FE9F03;
    -webkit-transition: color ease .5s, border-bottom ease .5s;
    transition: color ease .5s, border-bottom ease .5s;
  }

  .form__slider,
  .form__slider-2 {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
  }

  .form__slider.active,
  .form__slider-2.active {
    height: inherit;
    overflow: initial;
    margin-bottom: 20px;
  }

  .form__slider .prim_foto,
  .form__slider-2 .slick-slide {
    -webkit-transform: scale(1, 0.8);
    transform: scale(1, 0.8);
    -webkit-transition: -webkit-transform ease .5s;
    transition: -webkit-transform ease .5s;
    transition: transform ease .5s;
    transition: transform ease .5s, -webkit-transform ease .5s;
  }

  .form__slider .prim_foto.swiper-slide-active,
  .form__slider-2 .slick-slide.slick-current.slick-active.slick-center {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform ease .5s;
    transition: -webkit-transform ease .5s;
    transition: transform ease .5s;
    transition: transform ease .5s, -webkit-transform ease .5s;
  }

  .works-wrapper .hidden__text__left {
    display: none;
  }

  .works-wrapper .hidden__text {
    display: none;
  }

  .works-title .works-title__left {
    font-size: 50px;
    top: 225px;
  }

  .works-wrapper.active .works-title__left {
    left: 40px;
  }

  .works-title .works-title__right {
    font-size: 50px;
    top: 225px;
  }

  .works-wrapper.active .works-title__right {
    right: 35px;
  }


  .form__slider-2 .slick-prev {
    left: -25px;
  }

  .form__slider-2 .slick-next {
    right: -25px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 768px;
  }

  .works-title .works-title__left {
    top: 190px;
  }

  .works-title .works-title__right {
    top: 255px;
  }

  .pop-wrapper-constr-pop.active {
    top: 10px;
  }

  .second-type-wrapper .parallax_kottedg .layer_01 {
    background-image: url(../img/screen-5-paral-1.jpg);
    -webkit-transition: background-image ease .5s;
    transition: background-image ease .5s;
  }

  .second-type-wrapper .parallax_kottedg .layer_02 {
    background-image: url(../img/screen-5-paral-2.png);
    -webkit-transition: background-image ease 1.5s;
    transition: background-image ease 1.5s;
  }

  .second-type-wrapper .parallax_kottedg .layer_03 {
    background-image: url(../img/screen-5-paral-3.png);
    -webkit-transition: background-image ease 1.5s;
    transition: background-image ease 1.5s;
  }

  .second-type-wrapper .parallax_kottedg .layer_04 {
    background-image: url(../img/screen-5-paral-4.png);
    -webkit-transition: background-image ease 1.5s;
    transition: background-image ease 1.5s;
  }

  .second-type-wrapper .parallax_kottedg .layer_05 {
    background-image: url(../img/screen-5-paral-5.png);
    -webkit-transition: background-image ease 1.5s;
    transition: background-image ease 1.5s;
  }

  .form-calc {}

  .form-cala__image-inner {
    min-height: 370px;
  }

  .form-cala__image-inner img {
    max-height: 70vh;
  }

  .works-title .works-title__main {
    padding: 0 10px;
  }

  .big-text>* {
    width: 100%;
    padding: 0 10px;
    max-width: inherit;
    text-align: center;
  }

  .pop-wrapper-work-pop,
  .pop-wrapper-rewiews-pop,
  .pop-wrapper-sert-pop {
    max-width: calc(100vw - 20px);
    width: 100%;
    left: 10px;
  }

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

  .footer>* {
    -ms-grid-column-align: center;
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .footer__social-item-border {
    position: absolute;
    display: none;
  }

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

  .footer__logo>* {
    -ms-grid-column-align: center;
    justify-self: center;
  }

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

  .footer__social>* {
    text-align: center;
  }

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

  .footer__who>* {
    -ms-grid-column-align: center;
    justify-self: center;
    text-align: center;
  }

  .calc-price.flex {
    display: block;
  }

  .calc-price span {
    margin-bottom: 20px;
  }

  .form-calc__text-option img,
  .form-calc__text-color img {
    height: 55px;
    width: 55px;
  }

  .form-calc__text-option,
  .form-calc__text-color {
    max-width: 55px;
    margin-right: 10px;
    word-break: break-word;
  }

  .form-calc__text-option span,
  .form-calc__text-color span {
    line-height: 1.1;
  }
}

@media screen and (max-width: 767px) {
  .pop-wrapper-faq-pop {
    max-width: calc(100vw - 20px);
    left: 10px;
    top: 10px;
  }

  .container {
    max-width: 576px;
  }

  .form-cala__image-inner {
    max-height: 500px;
    min-height: 500px;
  }

  .form-cala__image-inner img {
    max-height: 70vh;
  }

  .works-wrapper .works-slider {
    max-width: 100%;
  }

  .pop-wrapper-1,
  .pop-wrapper-2 {
    max-width: 560px;
    left: calc(50vw - 280px);
  }

  .pop-wrapper-3 {
    max-width: calc(100vw - 20px);
    width: 100%;
    left: 10px;
  }

  .header-wrapper {
    padding-top: 60px;
  }

  .header__info-logo {
    display: none;
    max-width: 200px;
  }

  .header__info-inner {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header__info-inner>* {
    width: 50%;
  }

  .header__info-pop {
    margin-right: 0;
    order: 3;
    max-width: 200px;
    justify-content: center;
  }

  .header__info-phone {
    text-align: right;
    order: 4;
    margin-left: 0;
  }

  .header__info-phone a {
    -ms-grid-column-align: end;
    justify-self: end;
  }

  .header__info-menu {
    order: 2;
    margin-left: 0;
    margin-bottom: 30px;
    justify-content: flex-end;
  }

  .hidden_logo {
    display: block;
    order: 1;
    margin-bottom: 30px;
  }

  .header__text-icons-item__image {
    max-width: 54px;
  }

  .header__text-icons__text {
    max-width: 100%;
    font-size: 24px;

  }

  .header__text-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__text-icons-item {
    width: 100%;
    margin-bottom: 25px;
  }

  .first-tabs.flex,
  .second-tabs.flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  .big-text>* {
    font-size: 40px;
    line-height: 1.2;
    text-shadow: 1px 1px black;
  }

  .big-text>* span {
    font-size: 115px;
    line-height: 1.1;
  }

  .secind-tabs-btn .btn {
    display: block;
    text-align: center;
    padding: 20px 30px;
  }

  .first-tabs__item,
  .second-tabs__item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
    align-items: center;
    padding-left: 50px;
    height: 115px;
  }

  .first-tabs-wrapper {
    background-position: top -30px center;
    padding-top: 250px;
    padding-bottom: 130px;
  }

  .first-tabs__item .first-tabs__item-image,
  .second-tabs__item .second-tabs__item-image {
    max-width: 58px;
  }

  .first-tabs__item-text,
  .second-tabs__item-text {
    margin-top: 0;
    margin-left: 20px;
  }

  .big-text,
  .big-text.hidden,
  .first-tabs,
  .second-tabs {
    position: relative;
    left: auto;
    opacity: 1;
    margin-bottom: 20px;
    height: inherit;
  }

  .first-type-wrapper {
    padding-top: 140px;
    padding-bottom: 180px;
  }

  .type-title {
    margin-bottom: 60px;
  }

  .second-type-wrapper {
    padding-top: 225px;
    padding-bottom: 200px;
  }

  .sub-type-title {
    font-size: 30px;
  }

  .type ul {
    margin-top: 35px;
  }

  .type ul li {
    padding-left: 40px;
    font-size: 28px;
    line-height: 1.5;
  }

  .why-wrapper {
    padding-top: 85px;
    padding-bottom: 320px;
  }

  .why-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
  }

  .why-title>*:first-child {
    text-align: center;
    font-size: 40px;
  }

  .why-title>*:first-child>* {
    font-size: 92px;
  }

  .why-title .btn {
    margin: 0 auto;
    text-align: center;
  }

  .works-wrapper {
    padding: 135px 0 100px;
  }

  .works-title {
    margin-bottom: 70px;
  }

  .works-wrapper .works-title__left {
    top: -40px;
  }

  .works-title .works-title__main {
    font-size: 200px;
  }

  .works-wrapper .works-title__right {
    top: 160px;
  }

  .works-wrapper .container {
    max-width: 100%;
  }

  .works-slider .slick-slide {
    padding: 0 10px;
  }

  .secind-tabs-btn {
    max-width: 360px;
    margin: 0 auto;
  }

  .second-tabs-wrapper {
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .contact-wrapper {
    padding-bottom: 180px;
    padding-top: 120px;
  }

  .contact .contact-number {
    font-size: 54px;
    margin-bottom: 40px;
  }

  .contact .contact__buttons {
    margin-top: 40px;
  }

  .footer {
    flex-wrap: wrap;
  }

  .footer>* {
    margin-bottom: 30px;
  }

  .pop-wrapper-4 {
    max-width: calc(100vw - 20px);
    width: 100%;
    left: 10px;
  }

  .form-cala__image-inner {
    max-height: 400px;
    min-height: 400px;
  }

  .form-cala__image-inner img {
    max-height: 70vh;
  }


  .close {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    right: 10px;
    top: 10px;
  }

  .pop-wrapper-1,
  .pop-wrapper-2 {
    max-width: calc(100vw - 20px);
    width: 100%;
    left: 10px;
  }

  .rew__item-video {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-height: 400px;
  }

  .form__slider-tabs__item {
    margin-right: 10px;
    font-size: 18px;
  }

  .form__slider-tabs__item.active {
    font-size: 20px;
  }

  .form__slider .prim_foto {
    height: 55vh;
  }

  .form__slider-tabs {
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }

  .form-calc__text-size__item-title {
    font-size: 11px;
  }

  .pop-wrapper .form .form__inputs {
    margin-bottom: 0px;
  }

  .pop-wrapper .form .form__inputs div {
    margin-bottom: 15px;
  }

  .form-calc__text-title {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .form-calc__text-size {
    margin-bottom: 10px;
  }

  .form-calc__text-types-wall span {
    font-size: 10px;
  }

  .form-calc__text-types-wall {
    margin-bottom: 8px;
  }

  .form-calc__text-option {
    margin-bottom: 5px;
  }

  .calc-price .btn {
    padding: 20px 30px;
    width: 100%;
  }
}

@media screen and (max-width:575px) {
  .container {
    padding: 0 10px;
    max-width: 400px;
  }
  .header__info-inner {
	width: 90%;
    margin: 30px auto;
  }
  .pop-wrapper-thanks {
    max-width: 500px;
    left: calc(50vw - 250px);
  }

  .header__text {
    margin-top: 150px;
  }

  .header__text-icons-item {
    margin-bottom: 20px;
  }

  .header__text-icons {
    margin-bottom: 24px;
  }

  .header-wrapper {
    padding-bottom: 0px;
    padding-top: 20px;
  }

  .header__text-icons-item__image {
    height: 40px;
    max-width: 36px;
  }

  .header__text-icons-item:after {
    width: 38px;
    height: 38px;
  }

  .header__info-pop {
    padding: 0 10px;
  }

  .header__text h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .header__text-icons__text {
    font-size: 18px;
  }

  .header__text h1 span {
    font-size: 60px;
  }

  .header__text-icons-item {
    margin-left: 75px;
  }

  .header__text-button .btn {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .header__info-pop {
    max-width: 150px;
  }

  .big-text>* {
    font-size: 26px;
    line-height: 1.1;
  }

  .big-text>* span {
    font-size: 70px;
  }

  .first-tabs-wrapper {
    padding-top: 174px;
    padding-bottom: 90px;
  }

  .first-tabs__item,
  .second-tabs__item {
    margin-bottom: 10px;
    height: 90px;
	background-color:#343638;
  }

  .first-tabs__item .first-tabs__item-image,
  .second-tabs__item .second-tabs__item-image {
    max-width: 35px;
  }

  .type-title {
    font-size: 36px;
    margin-bottom: 130px;
  }

  .sub-type-title {
    font-size: 22px;
  }

  .type ul {
    margin-top: 20px;
  }

  .type ul li {
    font-size: 18px;
    line-height: 1.1;
  }

  .parallax .layer {
    background-size: contain;
    background-position: top 100px center;
  }

  .first-type-wrapper {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .second-type-wrapper {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .why-title>*:first-child {
    font-size: 26px;
  }

  .why-title>*:first-child>* {
    font-size: 62px;
  }

  .form-calc__text-size {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-cala__image-inner {
    max-height: 300px;
    min-height: 300px;
  }

  .form-cala__image-inner img {
    max-height: 70vh;
  }

  .works-title .works-title__left {
    top: -40px;
    font-size: 35px;
  }

  .works-wrapper {
    padding: 60px 0 60px;
  }

  .works-title .works-title__left {
    top: -14px;
  }

  .works-title .works-title__main {
    font-size: 140px;
  }

  .works-title .works-title__right {
    top: 110px;
    right: 0 !important;
    font-size: 40px;
  }

  .second-tabs-wrapper {
    padding-bottom: 0px;
  }

  .contact-wrapper {
    padding-bottom: 90px;
    padding-top: 100px;
  }

  .contact h3 {
    font-size: 46px;
    text-align: center;
  }

  .contact .contact-number {
    font-size: 36px;
    text-align: center;
  }

  .contact .contact__item-text {
    font-size: 18px;
  }

  .contact .contact__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact .contact__buttons-text {
    margin-right: 0;
    text-align: center;
    max-width: 300px;
    margin-bottom: 30px;
    width: 100%;
  }

  .pop-wrapper .form .form__inputs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .header__text h1 {
    text-align: center;
  }

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

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

  .why-tabs__item-title {
    margin: 10px 0;
  }

  .why-tabs__item {
    height: 263px;
    padding: 30px 10px;
  }

  .works-wrapper {
    padding: 40px 0 75px;
  }

  .form__slider-2 .slick-slide,
  .form__slider-2 .slick-slide.slick-current.slick-active.slick-center {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
    transition: none;
    transition: none;
  }

  .form-calc.flex {
    display: block;
  }

  .form-calc__text {
    width: 100%;
  }

  .form-calc__image {
    width: 100%;
  }

  .form-calc__text-option,
  .form-calc__text-color {
    max-width: 50px;
  }

  .form-calc__text-option img,
  .form-calc__text-color img {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width:499px) {
  .form__slider-tabs__item {
    width: 100%;
    max-width: 250px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .why-wrapper .container {
    max-width: 100%;
  }

  .why-slider {
    max-width: 130%;
    left: auto;
  }

  .why-tabs__item {
    max-width: 290px;
  }

  .works-slider .klogo {
    width: 40%;
  }
}

@media screen and (max-width:399px) {
	.header__info-inner{
		margin-top: 20px;
	}
	.hidden_logo {
		margin-bottom: 20px;
	}
	.header__info-menu {
		margin-bottom: 20px;
	}
  .header__info-pop {
    margin: 0 auto 15px;
    width: 100%;
  }
	.header__info {
		padding-bottom: 85px;
	}
  .header__info-phone {
    text-align: center;
    width: 100%;
  }

  .header__text {
    margin-top: 170px;
  }

  .header__text-icons-item {
    margin-left: 50px;
  }

  .big-text>* {
    font-size: 20px;
  }

  .big-text>* span {
    font-size: 50px;
  }

  .first-tabs__item,
  .second-tabs__item {
    padding-left: 25px;
    height: 70px;
  }

  .first-tabs__item-text,
  .second-tabs__item-text {
    margin-left: 15px;
    font-size: 18px;
  }

  .header__info-menu.active nav {
    padding-right: 100px;
  }

  .header__info-menu nav ul li a {
    font-size: 15px;
    line-height: 2.3;
  }

  .pop-wrapper {
    padding: 40px 15px;
  }

  .type-title {
    font-size: 27px;
  }

  .why-title>*:first-child>* {
    font-size: 46px;
  }

  .why-title .btn {
    font-size: 12px;
  }

  .why-wrapper .container {
    max-width: 100%;
  }

  img.why-tabs__item-image {
    max-width: 50px;
  }

  .why-tabs__item-title {
    font-size: 18px;
  }

  .why-tabs__item-text {
    font-size: 16px;
  }

  .why-tabs__item {
    height: 250px;
    padding: 30px 10px;
    max-width: 210px;
    margin-right: 10px;
  }

  .secind-tabs-btn .btn {
    padding: 10px 20px;
  }

  .contact .contact-number {
    font-size: 28px;
  }

  .works-title .works-title__main {
    font-size: 110px;
  }

  .works-title .works-title__left {
    top: -38px;
  }

  .works-title .works-title__right {
    top: 80px;
  }

  .slick-next {
    right: 0;
  }

  .slick-prev {
    left: 0;
  }

  .form__slider-2 .slick-next {
    right: 0;
  }

  .form__slider-2 .slick-prev {
    left: 0;
  }

  .works-slider .klogo {
    width: 48%;
  }

}

#multi_btn_294 {
    position: fixed;
    bottom: 50px; 
    right: 50px;    
    z-index: 99;
}
.contacts_3949 {
    position: relative;
}
.phone_2849{
    position: relative;
    z-index: 10;
    transition: transform 0.75s ease;
}
.contacts__item_trigger{
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    transition: transform 0.5s ease;
}
.contacts__item_trigger img {
    transition: transform 0.5s ease;
}
.contacts__item_trigger.active:active {
    transform: scale(0.8) ;
}
.contacts__item_trigger:active {
    transform: scale(0.8);
}
.img_321{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    margin: 5px;   
    
    z-index: 99;
    
}
.contacts__item_1949 {
    position: absolute;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    overflow: hidden;
    bottom: 0;
    right: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;  
}
.contacts__item_1949.active {
    opacity: 1;
}
.contacts__item_1949:nth-child(1).active {
    transform: translateX(-85px) translateY(20px);
}
.contacts__item_1949:nth-child(1).active:active {
    transform: translateX(-85px) translateY(20px) scale(0.8);
}
.contacts__item_1949:nth-child(2).active {
    transform: translateX(-75px) translateY(-35px);
}
.contacts__item_1949:nth-child(2).active:active {
    transform: translateX(-75px) translateY(-35px) scale(0.8);
}
.contacts__item_1949:nth-child(3).active {
    transform: translateX(-35px) translateY(-75px);
}
.contacts__item_1949:nth-child(3).active:active {
    transform: translateX(-35px) translateY(-75px) scale(0.8);
}
.contacts__item_1949:nth-child(4).active {
    transform: translateY(-85px) translateX(20px);
}
.contacts__item_1949:nth-child(4).active:active {
    transform: translateY(-85px) translateX(20px) scale(0.8);
}

.a_391{
    text-decoration: none;
}

.contacts_3949__text{
    padding: 10px;
    background: #495F7F;
    color: #fff;
    display: none;
    border-radius: 20px;
}

.contacts__item-trigger.active img{
    transform: rotate(360deg);
    
}
/* ===== FIX LOGO HEADER + FOOTER ===== */

/* 1. Десктоп: показываем только основной логотип */
.header__info > .header__info-logo {
  display: block !important;
  width: 200px !important;
  max-width: 200px !important;
  flex: 0 0 200px !important;
}

.header__info > .header__info-logo img.logo {
  display: block !important;
  width: 200px !important;
  max-width: 200px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* 2. Десктоп: скрываем мобильный дубль логотипа */
.header__info-inner .header__info-logo.hidden_logo {
  display: none !important;
}

/* 3. Мобилка: основной логотип скрыт, мобильный показывается */
@media screen and (max-width: 767px) {
  .header__info > .header__info-logo {
    display: none !important;
  }

  .header__info-inner .header__info-logo.hidden_logo {
    display: block !important;
    width: 160px !important;
    max-width: 160px !important;
    flex: 0 0 160px !important;
  }

  .header__info-inner .header__info-logo.hidden_logo img.logo {
    display: block !important;
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* 4. Логотип в подвале */
.footer__logo img,
.footer img.logo,
.footer img[src*="logo"] {
  display: block !important;
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* 5. Подвал на мобилке */
@media screen and (max-width: 767px) {
  .footer__logo img,
  .footer img.logo,
  .footer img[src*="logo"] {
    width: 220px !important;
    max-width: 220px !important;
  }
}
.smart-captcha-error {
    margin: 8px 0;
    color: #ffb5b5;
    font-size: 14px;
    line-height: 1.3;
}
