body, h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

* {
  font-family: 'Open Sans', sans-serif;
}

body.fixed {
  overflow: hidden;
}

.color {
  color: #2F8BFF;
}

.main-btn {
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 12px;
  background: #2F8BFF;
  border: 1px solid #2F8BFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 4px rgba(47, 139, 255, 0.3);
  box-shadow: 0px 0px 4px rgba(47, 139, 255, 0.3);
  border-radius: 2px;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(47, 139, 255, 0.3);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}

.main-btn:hover {
  opacity: 0.8;
}

.main-btn:acive {
  opacity: 1;
}

.form {
  max-width: 350px;
  width: 100%;
}

.form form {
  padding: 30px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.form form h3 {
  color: #2F8BFF;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 32px;
}

.form form .form-group {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.form form .form-group:last-child {
  margin-top: 0;
}

.form form .form-group label.error {
  position: absolute;
  left: 0;
  bottom: -5px;
  font-size: 12px;
  line-height: 16px;
  color: #C00A2A;
}

.form form .form-group .form-control {
  height: 36px;
  width: 100%;
  padding-left: 18px;
  color: #000000;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  background: #FFFFFF;
  border: 1px solid #6E6E6E;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.form form .form-group .form-control::-webkit-input-placeholder {
  color: #C5C5C5;
}

.form form .form-group .form-control::-moz-placeholder {
  color: #C5C5C5;
}

.form form .form-group .form-control:-ms-input-placeholder {
  color: #C5C5C5;
}

.form form .form-group .form-control::-ms-input-placeholder {
  color: #C5C5C5;
}

.form form .form-group .form-control::placeholder {
  color: #C5C5C5;
}

.form form .form-group textarea.form-control {
  resize: none;
  height: 72px;
}

.form form button {
  width: 100%;
}

header .main-header {
  background: #FFFFFF;
  padding: 24px 0;
}

header .main-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .main-header .mob-logo {
  display: none;
}

header .main-header .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .main-header .menu li, header .main-header .menu li a {
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #2F2F2F;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .main-header .menu li svg, header .main-header .menu li a svg {
  margin-right: 6px;
}

header .main-header .burger {
  display: none;
}

header .mob-menu {
  display: none;
}

header .fixed-header {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  background: #F6F6FA;
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
  height: 81px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05), 0px 0px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05), 0px 0px 12px rgba(0, 0, 0, 0.15);
}

header .fixed-header.active {
  top: 0;
}

header .fixed-header .scroll-indicator {
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #2F8BFF;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
  width: 0%;
  height: 5px;
}

header .fixed-header .container .menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .fixed-header .container .menu li {
  margin: 0;
  padding: 0 5px;
}

header .fixed-header .container .menu li a {
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #2F2F2F;
}

main .first-screen {
  padding: 60px 0 80px 0;
  background-image: url(../img/firstScreenBg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

main .first-screen .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .first-screen .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 10.5vw;
}

main .first-screen .container .content h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 120%;
  text-transform: capitalize;
  color: #FFFFFF;
}

main .first-screen .container .content h1 .color {
  display: block;
}

main .first-screen .container .content p {
  margin-top: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
}

main .form.mob-form {
  display: none;
}

main .partners {
  padding: 80px;
  background: #F6F6FA;
}

main .partners h2 {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-transform: capitalize;
  color: #000000;
}

main .partners .items-container {
  overflow: hidden;
}

main .partners .items-container .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .partners .items-container .slick-track .partner-item {
  margin-right: 80px;
}

main .partners .items-container .slick-track .partner-item img {
  width: 100%;
}

main .we-do {
  padding: 100px 0;
}

main .we-do .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .we-do .left {
  width: 53%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .we-do .left h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 130%;
  text-transform: capitalize;
  color: #000000;
}

main .we-do .left h2 .color {
  display: block;
}

main .we-do .left .img-container {
  margin-top: 40px;
}

main .we-do .right {
  width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .we-do .right .item {
  width: calc( 50% - 15px);
}

main .we-do .right .item:nth-child(n + 3) {
  margin-top: 80px;
}

main .we-do .right .item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 16px 0;
}

main .we-do .right .item p {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #5C646D;
}

main .can-trust {
  background: #F6F6FA;
  padding: 130px 0;
}

main .can-trust h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

main .can-trust p {
  font-weight: normal;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #3F3F3F;
  margin-top: 40px;
}

main .can-trust .items-container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

main .can-trust .items-container .trust-item {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
  cursor: pointer;
}

main .can-trust .items-container .trust-item:hover {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

main .can-trust .items-container .trust-item:nth-child(n + 4) {
  margin-top: 80px;
}

main .can-trust .items-container .trust-item .item-head {
  font-weight: bold;
  font-size: 54px;
  line-height: 74px;
  text-align: center;
  color: #2F8BFF;
}

main .can-trust .items-container .trust-item p {
  margin-top: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  text-transform: capitalize;
  color: #3F3F3F;
}

main .our-expertise {
  margin-top: 120px;
}

main .our-expertise .expertise-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 120px;
}

main .our-expertise .expertise-block:last-child {
  margin-bottom: 0;
}

main .our-expertise .expertise-block .img-container {
  width: 48%;
}

main .our-expertise .expertise-block .block-content {
  width: 40%;
}

main .our-expertise .expertise-block .block-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 120%;
  text-transform: capitalize;
  color: #000000;
}

main .our-expertise .expertise-block .block-content .subhead {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 20px;
}

main .our-expertise .expertise-block .block-content p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #3F3F3F;
  margin-top: 20px;
}

main .our-expertise .expertise-block .block-content .list-head {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-top: 20px;
}

main .our-expertise .expertise-block .block-content ul {
  margin-top: 20px;
}

main .our-expertise .expertise-block .block-content ul li {
  margin-top: 12px;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #3F3F3F;
}

main .our-expertise .expertise-block .block-content ul li:first-child {
  margin-top: 0;
}

main .our-expertise .expertise-block .block-link {
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: #2F8BFF;
  padding-bottom: 8px;
  padding-right: 32px;
  background-image: url(../img/icons/arr.png);
  background-repeat: no-repeat;
  background-position: right center;
}

main .our-expertise .expertise-block .block-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0px;
  display: block;
  height: 3px;
  background-color: #2F8BFF;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

main .our-expertise .expertise-block .block-link:hover::after {
  width: 100%;
}

main .our-expertise .pair-blocks {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .our-expertise .pair-blocks .pair-block {
  width: calc(50% - 15px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 0;
  padding: 40px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

main .our-expertise .pair-blocks .pair-block:first-child {
  background-image: url(../img/restaurant.png);
}

main .our-expertise .pair-blocks .pair-block:last-child {
  background-image: url(../img/corporate.png);
}

main .our-expertise .pair-blocks .pair-block h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #212121;
}

main .our-expertise .pair-blocks .pair-block p {
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #3F3F3F;
  margin-top: 16px;
  margin-bottom: 8px;
}

main .contact-with {
  margin-top: 150px;
}

main .contact-with .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .contact-with .container .left {
  margin-right: 30px;
}

main .contact-with .container .left h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 120%;
  text-transform: capitalize;
  color: #000000;
}

main .contact-with .container .left p {
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.03em;
  color: #3F3F3F;
  margin-top: 20px;
}

main .contact-with .container .left .form {
  margin-top: 40px;
}

main .contact-with .container .left .form form {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}

main .contact-with .container .left .callUs {
  margin: 0 auto;
  margin-top: 40px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #030303;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

main .contact-with .container .left .callUs .phone {
  background: #2F8BFF;
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 100%;
}

main .why-choose {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #F6F6FA;
}

main .why-choose .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .why-choose .container .left {
  width: calc(43% - 47px);
}

main .why-choose .container .left h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 120%;
  text-transform: capitalize;
  color: #000000;
}

main .why-choose .container .left h2 .color {
  display: block;
}

main .why-choose .container .left p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #3F3F3F;
}

main .why-choose .container .left .main-btn {
  margin-top: 40px;
  max-width: 255px;
}

main .why-choose .container .right {
  width: calc(57% - 47px);
}

main .why-choose .container .right .items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .why-choose .container .right .items-container .choose-item {
  width: calc(50% - 15px);
  max-width: 255px;
  margin-bottom: 55px;
}

main .why-choose .container .right .items-container .choose-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  margin-top: 20px;
}

main .stages {
  margin-top: 95px;
}

main .stages h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-transform: capitalize;
  color: #000000;
}

main .stages .stages-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

main .stages .stages-container .stage {
  width: 25%;
  -webkit-transition: 0.5s all ease-out;
  -o-transition: 0.5s all ease-out;
  transition: 0.5s all ease-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 30px;
  padding-bottom: 55px;
  border: 1px solid #DDDDE3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0), 0px 0px 12px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0), 0px 0px 12px rgba(0, 0, 0, 0);
}

main .stages .stages-container .stage .number {
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  color: #ADADAD;
  margin-bottom: 40px;
}

main .stages .stages-container .stage .stage-head {
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  color: #000000;
}

main .stages .stages-container .stage .stage-head .color {
  display: block;
}

main .stages .stages-container .stage .hide-container {
  position: absolute;
  top: -150%;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s all ease-out;
  -o-transition: 0.5s all ease-out;
  transition: 0.5s all ease-out;
  border-left: 6px solid #2F8BFF;
  z-index: 1;
  background-color: #FFFFFF;
  padding: 5px 30px;
}

main .stages .stages-container .stage .hide-container p, main .stages .stages-container .stage .hide-container ul li {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #373737;
}

main .stages .stages-container .stage .hide-container p {
  width: 100%;
  text-align: left;
}

main .stages .stages-container .stage .hide-container ul {
  padding: 0;
  margin: 0;
}

main .stages .stages-container .stage:hover {
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05), 0px 0px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05), 0px 0px 12px rgba(0, 0, 0, 0.15);
}

main .stages .stages-container .stage:hover .hide-container {
  top: 0%;
}

main .projects {
  margin: 120px 0;
}

main .projects h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-transform: capitalize;
  color: #000000;
}

main .projects .projects-container {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .projects .projects-container > .card-content {
  display: none;
}

main .projects .projects-container .project-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  cursor: pointer;
  width: calc(33.33% - 20px);
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}

main .projects .projects-container .project-item:nth-child(1) {
  background-image: url(../img/projects/management.png);
}

main .projects .projects-container .project-item:nth-child(2) {
  background-image: url(../img/projects/warranty.png);
}

main .projects .projects-container .project-item:nth-child(3) {
  background-image: url(../img/projects/manufactures.png);
}

main .projects .projects-container .caption {
  width: 100%;
  background: rgba(26, 26, 36, 0.9);
  padding: 27px 5px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: capitalize;
  color: #FFFFFF;
  position: relative;
}

main .projects .projects-container .caption span {
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

main .projects .projects-container .caption .opened {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-right: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  opacity: 0;
}

main .projects .projects-container .caption .opened svg {
  margin-left: 15px;
}

main .projects .projects-container .caption .opened.active {
  opacity: 1;
}

main .projects .projects-container .caption .closed.open {
  opacity: 0;
}

main .projects .projects-container .project-card {
  position: absolute;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F6F6FA;
  opacity: 0;
}

main .projects .projects-container .project-card.positioned {
  top: 0;
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}

main .projects .projects-container .project-card.active {
  opacity: 1;
}

main .projects .projects-container .project-card#management .img-container {
  background-image: url(../img/projects/management.png);
}

main .projects .projects-container .project-card#warranty .img-container {
  background-image: url(../img/projects/warranty.png);
}

main .projects .projects-container .project-card#manufactures .img-container {
  background-image: url(../img/projects/manufactures.png);
}

main .projects .projects-container .project-card .img-container {
  width: 29%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}

main .projects .projects-container .project-card .img-container .caption {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

main .projects .projects-container .project-card .img-container .caption svg {
  margin-left: 15px;
  margin-right: 45px;
}

main .projects .projects-container .project-card .card-content {
  width: 71%;
  padding: 50px 60px;
}

main .projects .projects-container .project-card .card-content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #2C2C2C;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main .projects .projects-container .project-card .card-content h4 img {
  max-width: 160px;
  margin-bottom: 20px;
}

main .projects .projects-container .project-card .card-content p {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #555555;
  margin-bottom: 20px;
}

main .projects .projects-container .project-card .card-content .card-link {
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #2F8BFF;
  padding-right: 32px;
  background-image: url(../img/icons/arr.png);
  background-repeat: no-repeat;
  background-position: right center;
}

main .faq {
  margin-top: 120px;
}

main .faq .container h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #000000;
}

main .faq .container .faqs-container {
  margin-top: 67px;
}

main .faq .container .faqs-container .faq-item {
  margin-bottom: 32px;
  padding-bottom: 33px;
  border-bottom: 1px solid #D4D4D4;
}

main .faq .container .faqs-container .faq-item:last-child {
  margin-bottom: 0;
}

main .faq .container .faqs-container .faq-item .faq-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

main .faq .container .faqs-container .faq-item .faq-head h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #3F3F3F;
}

main .faq .container .faqs-container .faq-item .faq-head .faq-control {
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
  margin-right: 3px;
  cursor: pointer;
}

main .faq .container .faqs-container .faq-item .faq-head .faq-control path {
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}

main .faq .container .faqs-container .faq-item .faq-head .faq-control.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

main .faq .container .faqs-container .faq-item .faq-head .faq-control.open path {
  fill: #3F3F3F;
}

main .faq .container .faqs-container .faq-item .faq-content {
  display: none;
  padding-top: 20px;
  padding-right: 20px;
}

main .faq .container .faqs-container .faq-item .faq-content p {
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #000000;
}

main .contacts {
  margin-top: 120px;
  background-image: url(../img/contactsBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

main .contacts .cont-over {
  background: -webkit-gradient(linear, right top, left top, color-stop(41.61%, #2E2E38), color-stop(72.72%, rgba(46, 46, 56, 0.93)), to(rgba(46, 46, 56, 0.8)));
  background: -o-linear-gradient(right, #2E2E38 41.61%, rgba(46, 46, 56, 0.93) 72.72%, rgba(46, 46, 56, 0.8) 100%);
  background: linear-gradient(270deg, #2E2E38 41.61%, rgba(46, 46, 56, 0.93) 72.72%, rgba(46, 46, 56, 0.8) 100%);
}

main .contacts .container {
  padding-top: 35px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .contacts .container .contact-container {
  padding-top: 65px;
  max-width: 290px;
}

main .contacts .container .contact-container h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

main .contacts .container .contact-container p, main .contacts .container .contact-container a {
  text-decoration: none;
  font-weight: normal;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

main .contacts .container .contact-container p:last-child, main .contacts .container .contact-container a:last-child {
  margin-bottom: 0;
}

footer {
  background: #1A1A24;
  padding-top: 55px;
  padding-bottom: 60px;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .container .foot-logo {
  margin-right: 5.21vw;
}

footer .container .foot-logo p {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.015em;
  color: #707070;
  margin-top: 17px;
}

footer .container .foot-menu {
  margin-right: 7.8vw;
}

footer .container .foot-menu .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

footer .container .foot-menu .menu li {
  margin-bottom: 30px;
}

footer .container .foot-menu .menu li:nth-child(n + 4) {
  margin-bottom: 0;
}

footer .container .foot-menu .menu li a {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.015em;
  color: #D4D4D4;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

footer .container .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .container .socials .soc {
  width: calc(50% - 15px);
}

footer .container .socials .soc:nth-child(n + 3) {
  margin-top: 30px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

.popup.active {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
}

.popup .popup-content {
  padding: 73px 107px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  text-align: center;
  position: relative;
}

.popup .popup-content .popup-head {
  margin-top: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000000;
}

.popup .popup-content .popup-text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.popup .popup-content .popup-close {
  position: absolute;
  top: 40px;
  right: 35px;
  cursor: pointer;
}

.popup .popup-content .form {
  max-width: 410px;
}

.popup .popup-content .form form {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.popup .popup-content .form form h3 {
  padding-right: 55px;
  text-align: left;
}

.menu a svg path, .info a svg path {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.menu a:hover, .info a:hover {
  color: #2F8BFF !important;
}

.menu a:hover svg path, .info a:hover svg path {
  fill: #2F8BFF !important;
}

.socials a svg path {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.socials a:hover svg path {
  fill: #2F8BFF;
}

.arrToTop {
  position: fixed;
  bottom: 10vh;
  right: 10vw;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  z-index: 999;
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}

.arrToTop:hover {
  opacity: 0.8;
}

.arrToTop:active {
  opacity: 1;
}

.arrToTop a {
  display: block;
  height: 40px;
}

@media (max-width: 1199px) {
  .arrToTop:hover {
    opacity: 1;
  }
  .form form .mob-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form form .mob-layout .form-group {
    width: calc(50% - 15px);
  }
  .form form .mob-layout .form-group label.error {
    bottom: -18px;
  }
  .form form .mob-layout .form-group:nth-child(n + 3) {
    margin-top: 32px;
  }
  .form form .mob-layout .form-group:nth-child(n + 3) label.error {
    bottom: -5px;
  }
  .form form .mob-layout .form-group:nth-child(1), .form form .mob-layout .form-group:nth-child(2) {
    padding: 0;
    margin-bottom: 0;
  }
  .form form .mob-layout .form-group input {
    height: 44px;
  }
  .form form .mob-layout .form-group textarea {
    height: 88px;
    padding-top: 10px;
  }
  header {
    padding-top: 157px;
  }
  header .main-header {
    padding-top: 0px;
    padding-bottom: 30px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  }
  header .main-header .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .main-header .mob-logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  header .main-header .logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  header .main-header .logo img {
    max-width: 342px;
  }
  header .main-header .menu {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
    padding: 20px 0;
    overflow: visible !important;
  }
  header .main-header .menu::before {
    content: '';
    background: #2E2E38;
    height: 100%;
    position: absolute;
    top: 0;
    width: 200vw;
    left: -50vw;
    z-index: -1;
  }
  header .main-header .menu li, header .main-header .menu li a {
    color: #FFFFFF;
    font-size: 12px;
  }
  header .main-header .menu li svg path, header .main-header .menu li a svg path {
    fill: #FFFFFF;
  }
  header .main-header .burger {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: block;
    margin-top: 20px;
  }
  header .mob-menu {
    display: block;
    position: fixed;
    top: -400%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A1A24;
    padding: 150px 120px 60px 120px;
    z-index: 99999;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
  }
  header .mob-menu.active {
    top: 0;
  }
  header .mob-menu .burger-close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
  }
  header .mob-menu .container {
    max-height: calc(100vh - 150px);
    overflow-y: scroll;
    padding-bottom: 60px;
  }
  header .mob-menu .container .menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  header .mob-menu .container .menu li {
    margin-top: 26px;
    border-bottom: 1px solid #707070;
    text-align: center;
    padding-bottom: 26px;
  }
  header .mob-menu .container .menu li:first-child {
    margin-top: 0;
  }
  header .mob-menu .container .menu li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #FFFFFF;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    text-align: center;
  }
  header .mob-menu .container .info {
    margin-top: 80px;
  }
  header .mob-menu .container .info a {
    display: block;
    text-decoration: none;
    text-align: center;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    margin-top: 18px;
  }
  header .mob-menu .container .info a:first-child {
    margin-top: 0;
  }
  header .mob-menu .container .socials {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  main .first-screen {
    padding: 0;
    padding-top: 100px;
  }
  main .first-screen .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .first-screen .container .content {
    margin-bottom: 80px;
    margin-right: 0;
    max-width: 560px;
  }
  main .first-screen .container .form {
    display: none;
  }
  main .form.mob-form {
    display: block;
    max-width: 100%;
  }
  main .form.mob-form .button-container {
    background: #2F8BFF;
    padding: 27px 15px;
  }
  main .form.mob-form .button-container .open-button {
    border: 1px solid #FFFFFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 12px 5px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #FFFFFF;
    max-width: 345px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
  }
  main .form.mob-form .button-container .open-button svg {
    margin-left: 15px;
  }
  main .form.mob-form .button-container .open-button .close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #2F8BFF;
    opacity: 0;
  }
  main .form.mob-form .button-container .open-button .close.active {
    opacity: 1;
  }
  main .form.mob-form form {
    display: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 60px;
  }
  main .form.mob-form form h3 {
    margin-bottom: 40px;
    font-weight: bold;
  }
  main .partners {
    padding: 80px;
    padding-bottom: 108px;
    background: #F6F6FA;
  }
  main .partners h2 {
    margin-bottom: 40px;
    text-align: center;
  }
  main .partners .items-container {
    display: block;
    overflow: hidden;
  }
  main .partners .items-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .partners .items-container .slick-track .slick-slide {
    margin-right: 44px;
    max-width: unset;
    width: inherit !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  main .partners .items-container .slick-track .slick-slide img {
    width: 100%;
  }
  main .we-do {
    padding: 0;
    padding-top: 77px;
    padding-bottom: 122px;
  }
  main .we-do .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .we-do .left {
    width: 100%;
  }
  main .we-do .left h2 {
    text-align: center;
  }
  main .we-do .left .img-container {
    display: none;
  }
  main .we-do .right {
    width: 100%;
    margin-top: 50px;
  }
  main .we-do .right .item {
    width: calc( 50% - 15px);
  }
  main .we-do .right .item:nth-child(n + 3) {
    margin-top: 60px;
  }
  main .can-trust {
    background: #F6F6FA;
    padding: 95px 0;
  }
  main .can-trust h2 {
    text-align: center;
  }
  main .can-trust p {
    font-size: 18px;
    line-height: 160%;
  }
  main .can-trust .items-container {
    margin-top: 70px;
    grid-template-columns: repeat(2, 1fr);
  }
  main .can-trust .items-container .trust-item {
    max-width: 270px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  main .can-trust .items-container .trust-item:nth-child(n + 3) {
    margin-top: 60px;
  }
  main .can-trust .items-container .trust-item .item-head {
    font-size: 36px;
    line-height: 49px;
  }
  main .can-trust .items-container .trust-item p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 25px;
  }
  main .our-expertise {
    margin-top: 0px;
  }
  main .our-expertise .expertise-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 95px;
  }
  main .our-expertise .expertise-block:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  main .our-expertise .expertise-block:last-child {
    margin-bottom: 0;
  }
  main .our-expertise .expertise-block .img-container {
    width: 100%;
  }
  main .our-expertise .expertise-block .img-container img {
    width: 100%;
  }
  main .our-expertise .expertise-block .block-content {
    width: 100%;
  }
  main .our-expertise .expertise-block .block-content h2 {
    margin-top: 50px;
  }
  main .our-expertise .expertise-block .block-link {
    margin-top: 30px;
  }
  main .our-expertise .pair-blocks {
    margin-top: 95px;
  }
  main .our-expertise .pair-blocks .pair-block {
    width: 100%;
  }
  main .our-expertise .pair-blocks .pair-block:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
  }
  main .contact-with {
    margin-top: 150px;
  }
  main .contact-with .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .contact-with .container .right {
    width: 100%;
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  main .contact-with .container .right img {
    width: 100%;
    max-width: 504px;
  }
  main .contact-with .container .left {
    margin-right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .contact-with .container .left > div {
    width: calc(50% - 15px);
  }
  main .contact-with .container .left h2, main .contact-with .container .left p {
    max-width: 324px;
  }
  main .contact-with .container .left .form {
    margin-top: 0px;
    max-width: 325px;
    margin-left: 0px;
  }
  main .why-choose {
    padding: 96px 0;
  }
  main .why-choose .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .why-choose .container .left {
    width: 100%;
    text-align: center;
  }
  main .why-choose .container .left h2 {
    text-align: center;
  }
  main .why-choose .container .left p {
    text-align: center;
  }
  main .why-choose .container .left .main-btn {
    margin: 0 auto;
    margin-top: 30px;
    max-width: 442px;
  }
  main .why-choose .container .left img {
    display: none;
  }
  main .why-choose .container .right {
    width: 100%;
    margin-top: 67px;
  }
  main .why-choose .container .right .items-container .choose-item {
    width: calc(50% - 50px);
    max-width: 270px;
    margin-bottom: 60px;
    text-align: center;
  }
  main .why-choose .container .right .items-container .choose-item p {
    text-align: center;
  }
  main .stages .stages-container {
    margin-top: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  main .stages .stages-container .stage {
    width: 50%;
  }
  main .stages .stages-container .stage .stage-head {
    font-weight: bold;
  }
  main .stages .stages-container .stage .hide-container {
    position: relative;
    top: 0%;
    left: 0;
    height: auto;
    width: auto;
    padding: 0;
    margin-top: 20px;
    border-left: 0px solid #2F8BFF;
  }
  main .stages .stages-container .stage .hide-container ul {
    padding-left: 20px;
  }
  main .stages .stages-container .stage:hover {
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0), 0px 0px 12px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0), 0px 0px 12px rgba(0, 0, 0, 0);
  }
  main .stages .stages-container .stage:hover .hide-container {
    top: 0%;
  }
  main .projects {
    margin: 96px 0;
  }
  main .projects .projects-container {
    margin-top: 46px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  main .projects .projects-container .project-item {
    margin-top: 50px;
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
  }
  main .projects .projects-container .project-item:nth-child(1) {
    background-image: url(../img/projects/management.png);
  }
  main .projects .projects-container .project-item:nth-child(2) {
    background-image: url(../img/projects/warranty.png);
  }
  main .projects .projects-container .project-item:nth-child(3) {
    background-image: url(../img/projects/manufactures.png);
  }
  main .projects .projects-container > .card-content {
    background: #F6F6FA;
    padding: 50px 30px;
  }
  main .projects .projects-container > .card-content h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #2C2C2C;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .projects .projects-container > .card-content h4 img {
    max-width: 170px;
    margin-bottom: 20px;
  }
  main .projects .projects-container > .card-content p {
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #555555;
    margin-bottom: 20px;
  }
  main .projects .projects-container > .card-content .card-link {
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #2F8BFF;
    padding-right: 32px;
    background-image: url(../img/icons/arr.png);
    background-repeat: no-repeat;
    background-position: right center;
    text-transform: uppercase;
  }
  main .projects .projects-container .caption {
    text-align: center;
  }
  main .projects .projects-container .project-card {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  main .projects .projects-container .project-card .img-container {
    width: 100%;
  }
  main .faq {
    margin-top: 96px;
  }
  main .faq .container h2 {
    text-align: center;
  }
  main .contacts {
    margin-top: 72px;
  }
  main .contacts .container {
    padding: 80px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .contacts .container .contact-container {
    padding-top: 0px;
    margin-bottom: 80px;
  }
  main .contacts .form {
    max-width: 100%;
  }
  main .contacts .form form {
    background: transparent;
  }
  main .contacts .form form h3 {
    text-align: left;
    color: #FFFFFF;
  }
  main .contacts .form form .form-group label.error {
    color: #2F8BFF;
  }
  footer {
    margin-top: -1px;
    background: #1A1A24;
    padding: 50px 0;
  }
  footer .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .container .foot-logo {
    margin-right: 0;
    width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 65px;
  }
  footer .container .foot-logo p {
    text-align: center;
  }
  footer .container .foot-menu {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
    width: calc(70% - 70px);
    padding: 0;
  }
  footer .container .foot-menu .menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  footer .container .foot-menu .menu li {
    margin-bottom: 30px;
  }
  footer .container .foot-menu .menu li:nth-child(n + 4) {
    margin-bottom: 0;
  }
  footer .container .foot-menu .menu li a {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.015em;
    color: #D4D4D4;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  footer .container .socials {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: calc(30% - 70px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer .container .socials .soc {
    width: 100%;
  }
  footer .container .socials .soc:nth-child(n + 3) {
    margin-top: 30px;
  }
  .popup .popup-content {
    max-width: 90vw;
    padding: 60px 43px;
    padding-bottom: 40px;
  }
  .popup .popup-content .popup-head {
    margin-top: 30px;
  }
  .popup .popup-content .popup-text {
    margin-bottom: 20px;
  }
}

@media (max-width: 569px) {
  .slick-dots {
    padding: 0;
    margin: 0 auto;
    margin-top: 32px;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
  }
  .slick-dots li {
    width: calc(16.667% - 8px);
    display: block;
    height: 2px;
    background-color: #DCDCDC;
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
  .slick-dots li.slick-active {
    background-color: #2F8BFF;
  }
  .slick-dots li button {
    display: none;
  }
  .form {
    max-width: 100%;
  }
  .form form {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  .form form .mob-layout .form-group {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .form form .mob-layout .form-group:first-child {
    margin-top: 0;
  }
  .form form .mob-layout .form-group:nth-child(n + 3) label.error {
    bottom: -18px;
  }
  .form form .mob-layout .form-group input {
    height: 44px;
  }
  .form form textarea {
    height: 72px;
    margin-top: 24px;
  }
  header .main-header {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  header .main-header .logo {
    display: none;
  }
  header .main-header .mob-logo {
    display: block;
  }
  header .main-header .menu li:nth-child(n + 3) {
    display: none;
  }
  header .mob-menu {
    padding: 120px 0px 43px 0px;
  }
  header .mob-menu .burger-close {
    right: 23px;
  }
  header .mob-menu .container {
    max-height: calc(100vh - 120px);
    padding-bottom: 43px;
  }
  header .mob-menu .container .menu li {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  header .mob-menu .container .menu li a {
    font-size: 18px;
    line-height: 25px;
  }
  header .mob-menu .container .info {
    margin-top: 48px;
  }
  header .mob-menu .container .info a:nth-child(n + 3) {
    display: none;
  }
  header .mob-menu .container .socials {
    margin-top: 55px;
  }
  main .first-screen {
    padding-top: 80px;
  }
  main .first-screen .container .content {
    margin-bottom: 60px;
  }
  main .first-screen .container .content h1 {
    font-size: 24px;
    line-height: 120%;
  }
  main .first-screen .container .content p {
    font-size: 20px;
    line-height: 27px;
    margin-top: 13px;
  }
  main .partners {
    padding: 60px;
    padding-bottom: 68px;
  }
  main .partners h2 {
    margin-bottom: 67px;
    font-size: 24px;
    line-height: 33px;
  }
  main .partners .items-container {
    display: block;
  }
  main .we-do {
    padding: 0;
    padding-top: 80px;
    padding-bottom: 105px;
  }
  main .we-do .left h2 {
    font-size: 36px;
    line-height: 130%;
  }
  main .we-do .right {
    margin-top: 60px;
  }
  main .we-do .right .item {
    width: 100%;
    margin-top: 60px;
    text-align: center;
  }
  main .we-do .right .item:first-child {
    margin-top: 0;
  }
  main .we-do .right .item h3 {
    font-size: 18px;
    line-height: 120%;
    max-width: 255px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 16px;
  }
  main .we-do .right .item p {
    max-width: 300px;
    margin: 0 auto;
  }
  main .can-trust {
    background: #F6F6FA;
    padding: 95px 0;
  }
  main .can-trust h2 {
    text-align: center;
  }
  main .can-trust p {
    font-size: 18px;
    line-height: 160%;
  }
  main .can-trust .items-container {
    margin-top: 70px;
    display: block;
    overflow: hidden;
  }
  main .can-trust .items-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main .can-trust .items-container .trust-item {
    max-width: 270px;
    width: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  main .can-trust .items-container .trust-item:nth-child(n + 3) {
    margin-top: 0;
  }
  main .can-trust .items-container .trust-item .item-head {
    font-size: 36px;
    line-height: 49px;
  }
  main .can-trust .items-container .trust-item p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 25px;
  }
  main .our-expertise .expertise-block {
    margin-bottom: 64px;
  }
  main .our-expertise .expertise-block .block-content {
    width: 100%;
  }
  main .our-expertise .expertise-block .block-content h2 {
    margin-top: 30px;
    font-size: 24px;
    line-height: 33px;
  }
  main .our-expertise .expertise-block .block-link {
    margin-top: 20px;
  }
  main .our-expertise .pair-blocks {
    margin-top: 65px;
  }
  main .our-expertise .pair-blocks .pair-block:nth-child(2) {
    margin-top: 30px;
  }
  main .contact-with {
    margin-top: 96px;
  }
  main .contact-with .container .left {
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .contact-with .container .left > div {
    width: 100%;
  }
  main .contact-with .container .left h2, main .contact-with .container .left p {
    max-width: 100%;
    text-align: center;
  }
  main .contact-with .container .left h2 {
    font-size: 36px;
    line-height: 120%;
  }
  main .contact-with .container .left .form {
    margin-top: 40px;
    max-width: 100%;
  }
  main .why-choose {
    padding: 80px 0;
  }
  main .why-choose .container .left h2 {
    font-size: 28px;
    line-height: 120%;
  }
  main .why-choose .container .left .main-btn {
    margin-top: 40px;
    max-width: 255px;
  }
  main .why-choose .container .right {
    margin-top: 128px;
  }
  main .why-choose .container .right .items-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    overflow: hidden;
  }
  main .why-choose .container .right .items-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main .why-choose .container .right .items-container .slick-dots {
    max-width: 290px;
  }
  main .why-choose .container .right .items-container .slick-dots li {
    width: calc(12.5% - 8.7px);
  }
  main .why-choose .container .right .items-container .choose-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 80px;
  }
  main .why-choose .container .right .items-container .choose-item:last-child {
    margin-bottom: 0;
  }
  main .stages h2 {
    font-size: 30px;
    line-height: 120%;
    text-align: center;
  }
  main .stages .stages-container .stage {
    padding-left: 0;
    border-width: 0px;
    border-bottom: 1px solid #DDDDE3;
    width: 100%;
  }
  main .stages .stages-container .stage .stage-head {
    font-weight: bold;
    margin-left: 20px;
  }
  main .stages .stages-container .stage .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main .stages .stages-container .stage .hide-container {
    padding-left: 40px;
  }
  main .stages .stages-container .stage .hide-container p {
    width: 100%;
    text-align: left;
  }
  main .projects h2 {
    font-size: 30px;
    line-height: 120%;
    text-align: center;
  }
  main .projects .projects-container {
    margin-top: 60px;
  }
  main .projects .projects-container .caption {
    padding: 20px 5px;
  }
  main .projects .projects-container .project-item {
    margin-top: 40px;
    height: 345px;
  }
  main .projects .projects-container .project-item:first-child {
    margin-top: 0;
  }
  main .projects .projects-container > .card-content {
    padding: 40px 30px;
  }
  main .faq .container h2 {
    font-size: 30px;
    line-height: 41px;
  }
  main .faq .container .faqs-container .faq-item {
    margin-bottom: 20px;
    padding-bottom: 52px;
  }
  main .faq .container .faqs-container .faq-item .faq-head {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  main .faq .container .faqs-container .faq-item .faq-head h5 {
    font-size: 16px;
    line-height: 22px;
  }
  main .faq .container .faqs-container .faq-item .faq-head .faq-control {
    height: 17px;
    margin-top: 5px;
    margin-left: 10px;
  }
  main .contacts {
    margin-top: 96px;
  }
  main .contacts .container {
    padding: 80px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .contacts .container .contact-container {
    margin-bottom: 60px;
  }
  main .contacts .form {
    max-width: 100%;
  }
  main .contacts .form form {
    padding: 0;
  }
  main .contacts .form form h3 {
    text-align: left;
    color: #FFFFFF;
  }
  footer .container .foot-logo {
    margin-top: 42px;
  }
  footer .container .foot-logo img {
    max-width: 231px;
  }
  footer .container .foot-logo p {
    text-align: center;
  }
  footer .container .foot-menu {
    width: 100%;
  }
  footer .container .socials {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    margin-top: 40px;
    grid-template-columns: repeat(4, 1fr);
  }
  footer .container .socials .soc {
    width: 100%;
  }
  footer .container .socials .soc:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 325px) {
  main .our-expertise .pair-blocks .pair-block h2 {
    font-size: 20px;
    line-height: 29px;
  }
  main .contacts .container .contact-container a, main .contacts .container .contact-container p {
    font-size: 16px;
  }
  main .our-expertise .expertise-block .block-link {
    font-size: 15px;
  }
  header .mob-menu .container .info a {
    font-size: 16px;
  }
}

.trust-item {
  opacity: 0.8;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@-webkit-keyframes animateTrust {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes animateTrust {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media screen and (min-width: 1200px) {
  main .we-do .left .img-container img {
    display: none;
  }
  main .we-do .left .img-container .animate-svg {
    height: 400px;
  }
  main .we-do .left .img-container .animate-svg image {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.8s all ease-out;
    -o-transition: 0.8s all ease-out;
    transition: 0.8s all ease-out;
  }
  main .we-do .left .img-container .animate-svg rect {
    -webkit-transition: 0.7s all ease;
    -o-transition: 0.7s all ease;
    transition: 0.7s all ease;
  }
  main .our-expertise .expertise-block .img-container img {
    display: none;
  }
  main .our-expertise .expertise-block .img-container .animate-svg image {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
  }
  main .our-expertise .expertise-block .img-container .animate-svg rect {
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}

@media screen and (max-width: 1199px) {
  header .fixed-header {
    display: none !important;
  }
  main .we-do .left .img-container img {
    display: block;
    max-height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
  main .we-do .left .img-container .animate-svg {
    display: none;
  }
  main .our-expertise .expertise-block .img-container img {
    display: block;
    max-height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
  main .our-expertise .expertise-block .img-container .animate-svg {
    display: none;
  }
}

@media screen and (max-height: 760px) {
  .popup .popup-content .form {
    max-height: 80vh;
    /* overflow-y: scroll; */
  }
}

@media (max-width: 1024px) and (min-width: 569px) {
  .form form .form-group textarea.form-control{
    width: 105%;
  }
}

@media (max-width: 569px) {
  .popup .popup-content .form form{
    padding-top: 0;
  }
  .popup .popup-content .popup-close{
    opacity: 0.2;
  }
  .form form .form-group:nth-child(3){
    display: none;
  }
}


