* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  font-weight: normal;
}

.toggle-menu {
  display: none;
}

.popup-container {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 150px;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-container.active {
  display: flex;
}

.popup-container .popup-wrapper {
  width: 975px;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.popup-container .popup-wrapper .left-part {
  height: 100%;
  background-color: #3287c9;
  width: 57%;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  padding: 90px 30px;
}

.popup-container .popup-wrapper .left-part h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin: 0;
  line-height: 50px;
  padding-left: 30px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.popup-container .popup-wrapper .left-part h3:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}

.popup-container .popup-wrapper .left-part p {
  font-size: 20px;
  font-weight: normal;
  line-height: 30px;
  color: #fff;
  padding-left: 30px;
}

.popup-container .popup-wrapper .right-part {
  background-color: #fff;
  height: 100%;
  width: 43%;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  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;
}

.popup-container .popup-wrapper .close-btn {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #006ecd;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  padding: 0;
  margin: 0;
  position: absolute;
  right: -70px;
  top: 15px;
  outline: none;
}

.first-nav .logo-wrapper {
  display: none;
}

.first-nav .logo-wrapper a {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.first-nav .logo-wrapper a img {
  height: 45px;
}

.first-nav .logo-wrapper a span {
  color: #006ecd;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-left: 20px;
}

.first-nav .first-nav-wrapper {
  height: 60px;
  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;
}

.first-nav .first-nav-wrapper .left-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.first-nav .first-nav-wrapper .left-part span {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: 303030;
  text-decoration: underline;
  padding-left: 35px;
  line-height: 1;
}

.first-nav .first-nav-wrapper .left-part i {
  color: #006ecd;
  font-size: 50px;
}

.first-nav .first-nav-wrapper .right-part span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.first-nav .first-nav-wrapper .right-part span.break-line {
  margin: 0 20px;
}

nav {
  background-color: #f6f6f6;
}

nav .nav-wrapper {
  height: 65px;
  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;
}

nav .logo-wrapper a {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

nav .logo-wrapper a img {
  height: 45px;
}

nav .logo-wrapper a span {
  color: #006ecd;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-left: 20px;
}

nav .menu-items {
  margin: 0;
  padding: 0;
  padding-bottom: 6px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .menu-items li {
  margin: 0;
  margin-left: 25px;
  padding: 0;
}

nav .menu-items li a {
  font-size: 16px;
  font-weight: 500;
  color: #313131;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

nav .menu-items li a.active:before, nav .menu-items li a:hover:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #006ecd;
  bottom: -8px;
}

.service-list {
  background-color: #006ecd;
}

.service-list ul {
  list-style-type: none;
  height: 60px;
  margin: 0;
  padding: 0;
  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;
}

.service-list ul li span {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  margin-left: 15px;
}

section.first-screen .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.first-screen .left-part {
  padding-bottom: 30px;
  position: relative;
}

section.first-screen .left-part h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 30px;
  position: relative;
  padding: 0;
  margin: 0;
  line-height: 0.75;
  padding-left: 35px;
}

section.first-screen .left-part h1 span {
  line-height: 1.6;
}

section.first-screen .left-part h1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: #006ecd;
}

section.first-screen .left-part ul {
  margin: 0;
  padding: 65px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
}

section.first-screen .left-part ul li {
  font-weight: 500;
  font-size: 20px;
  color: #313131;
  padding-left: 30px;
  position: relative;
}

section.first-screen .left-part ul li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #006ecd;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

section.first-screen .left-part ul li:first-child {
  margin-right: 20px;
}

section.first-screen .left-part ul li:nth-child(3) {
  margin-right: 31px;
}

section.first-screen .left-part .service-btn {
  width: 250px;
  height: 40px;
  background-color: #006ecd;
  border-radius: 25px;
  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;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  outline: none;
}

section.first-screen .left-part button {
  background-color: transparent;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: #006ecd;
  text-transform: uppercase;
  position: absolute;
  bottom: -75px;
}

section.first-screen .left-part button i {
  padding-left: 6px;
}

section.first-screen .right-part {
  padding: 40px 0;
}

section.first-screen .right-part img {
  width: 100%;
}

section.first-screen .right-part p {
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
}

section.about-us {
  background-color: #3286c9;
  padding: 50px 0;
}

section.about-us .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.about-us .left-part img {
  width: 100%;
}

section.about-us .text-wrapper {
  position: relative;
  padding-left: 25px;
}

section.about-us .text-wrapper:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 5px;
  background-color: #fff;
  top: 0;
  left: -5px;
}

section.about-us .text-wrapper h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding-top: 12px;
  margin-top: 0;
}

section.about-us .text-wrapper p {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 30px;
  margin: 0;
  padding-bottom: 12px;
}

section.about-us .info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 24px;
}

section.about-us .info-container h2 {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  margin-bottom: 12px;
}

section.about-us .info-container p {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
}

section.our-services {
  padding: 50px 0;
}

section.our-services h2 {
  font-size: 50px;
  font-weight: 700;
  color: #303030;
  position: relative;
  margin: 0;
  padding: 16px 0;
  line-height: 1;
  padding-left: 30px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

section.our-services h2:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #326ec9;
}

section.our-services .our-services-wrapper {
  height: auto;
}

section.our-services .our-services-wrapper .service-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}

section.our-services .our-services-wrapper .service-wrapper p {
  font-weight: 700;
  font-size: 16px;
  color: #303030;
  text-transform: uppercase;
  line-height: 1.8;
  padding-left: 25px;
}

section.our-services .our-services-wrapper .service-wrapper:nth-child(5) img {
  margin-left: 10px;
}

section.our-services .our-services-wrapper .service-wrapper:nth-child(5) p {
  padding-left: 35px;
}

section.our-services .our-services-wrapper .service-wrapper:nth-child(6) img {
  margin-left: 5px;
}

section.our-services .our-services-wrapper .service-wrapper:nth-child(6) p {
  padding-left: 34px;
}

section.our-services .orderBtn {
  width: 250px;
  height: 40px;
  background-color: #3283c9;
  border-radius: 25px;
  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;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  margin: 25px auto;
  margin-bottom: 0;
}

section.our-works {
  background-color: #3286c9;
  padding: 50px 0;
}

section.our-works h2 {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  position: relative;
  margin: 0;
  padding: 16px 0;
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 50px;
}

section.our-works h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #fff;
}

section.our-works .work-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

section.our-works .work-list li {
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

section.our-works .work-list li .position {
  font-weight: 700;
  font-size: 20px;
  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;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

section.our-works .work-list li.active {
  font-weight: 700;
}

section.our-works .work-list li.active .position {
  background-color: #fff;
  color: #303030;
}

section.our-works .work-description {
  display: none;
  height: 300px;
}

section.our-works .work-description.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.our-works .work-description .left-part {
  width: 43%;
}

section.our-works .work-description .left-part img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}

section.our-works .work-description .right-part {
  padding: 25px;
  width: 57%;
  background-color: #fff;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}

section.our-works .work-description .right-part h4 {
  font-size: 20px;
  font-weight: 700;
  color: #303030;
  margin-bottom: 20px;
}

section.our-works .work-description .right-part p {
  color: #303030;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 20px;
  font-weight: 500;
}

section.our-products {
  padding-top: 50px;
  padding-bottom: 45px;
}

section.our-products h2 {
  font-weight: 700;
  font-size: 50px;
  color: #303030;
  position: relative;
  margin: 0;
  padding: 16px 0;
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 50px;
}

section.our-products h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #326ec9;
}

section.our-products .product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.our-products .product-item {
  height: 480px;
  width: 260px;
  padding: 0 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 9px 4px #ccc6cc;
  box-shadow: 0px 0px 9px 4px #ccc6cc;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.our-products .product-item .text-wrapper {
  height: 120px;
  margin-top: 30px;
}

section.our-products .product-item p {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #303030;
  text-align: center;
}

section.our-products .product-item p.price {
  font-size: 30px;
  color: #326ec9;
  line-height: 1;
  padding-top: 35px;
  padding-bottom: 40px;
}

section.our-products .product-item p.name {
  color: #326ec9;
}

section.our-products .show-all {
  width: 350px;
  height: 40px;
  background-color: #3283c9;
  border-radius: 25px;
  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;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  margin: 25px auto;
  margin-bottom: 0;
}

section.certificates {
  background-color: #3283c9;
  padding-top: 50px;
  padding-bottom: 70px;
}

section.certificates h2 {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  position: relative;
  margin: 0;
  padding: 16px 0;
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 50px;
}

section.certificates h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #fff;
}

section.certificates .ceratificates-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.certificates .ceratificates-wrapper .certificates-item {
  width: 140px;
  height: 101px;
}

section.certificates .ceratificates-wrapper .certificates-item img {
  width: 100%;
  height: 100%;
	object-fit: contain;
}

section.advantages {
  padding-top: 50px;
  padding-bottom: 60px;
}

section.advantages h2 {
  font-weight: 700;
  font-size: 50px;
  color: #303030;
  position: relative;
  margin: 0;
  padding: 16px 0;
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 50px;
}

section.advantages h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #3283c9;
}

section.advantages .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
}

section.advantages .content-wrapper .left-part {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 25px;
}

section.advantages .content-wrapper .right-part {
  width: 67%;
  padding-left: 100px;
  padding-top: 35px;
}

section.advantages .content-wrapper .right-part h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #303030;
  text-transform: uppercase;
  margin-bottom: 30px;
}

section.advantages .content-wrapper .right-part p {
  margin: 0;
  font-size: 16px;
  color: #303030;
  text-indent: 10px;
  margin-bottom: 35px;
}

section.advantages .content-wrapper .right-part .advantages-wrapper {
  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;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage {
  width: 50%;
  position: relative;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p {
  text-indent: 0;
  position: relative;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p:before {
  position: absolute;
  content: attr(data-text);
  font-weight: 700;
  font-size: 100px;
  color: #c1d4ef;
  left: -30px;
  top: 10px;
  line-height: 1;
  bottom: 0;
  margin: auto 0;
  z-index: -1;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.one, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.three {
  padding-right: 40px;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.two, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.four {
  padding-left: 40px;
}

section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.two:before, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.four:before {
  left: 0;
}

section.advantages .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.advantages .benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.advantages .benefits .content-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 22px;
  margin-top: -2px;
}

section.advantages .benefits .content-wrapper h3 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: #303030;
  text-transform: uppercase;
}

section.advantages .benefits .content-wrapper p {
  margin: 0;
  font-size: 16px;
  color: #303030;
  margin-bottom: 35px;
  line-height: 1.5;
}

section.send-message {
  background-color: #3283c9;
  padding: 50px 0;
}

section.send-message h4 {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  position: relative;
  margin: 0;
  padding-left: 40px;
  text-transform: uppercase;
  line-height: 60px;
  margin-bottom: 40px;
  padding-top: 12px;
  padding-right: 40px;
}

section.send-message h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 80%;
  background-color: #fff;
}

section.send-message p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-left: 40px;
  padding-right: 30px;
}

section.send-message .form-wrapper {
  height: 450px;
  width: 400px;
  background-color: #fff;
  border-radius: 35px;
  padding: 40px 30px;
}

section.send-message .form-wrapper p {
  padding: 0 20px;
  color: #303030;
  text-align: center;
  margin-bottom: 35px;
}

section.send-message .form-wrapper input {
  margin: 0;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #303030;
  border: none;
  border-bottom: 1px solid #326ec9;
  border-radius: 15px;
  margin-bottom: 35px;
  outline: none;
}

section.send-message .form-wrapper input::-webkit-input-placeholder {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

section.send-message .form-wrapper input:-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

section.send-message .form-wrapper input::-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

section.send-message .form-wrapper input::placeholder {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

section.send-message .form-wrapper input[type="submit"] {
  width: 100%;
  height: 40px;
  background-color: #3283c9;
  border-radius: 25px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  padding: 0;
}

footer {
  padding: 50px 0;
  background-color: #f6f6f6;
}

footer h2 {
  font-weight: 700;
  font-size: 50px;
  color: #303030;
  position: relative;
  margin: 0;
  padding: 16px 0;
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 50px;
}

footer h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #3283c9;
}

footer p {
  font-weight: 500;
  font-size: 20px;
  color: #303030;
  padding-left: 35px;
}

footer p.clock {
  padding: 0;
}

footer p i {
  font-size: 24px !important;
  color: #3283c9;
  margin-right: 10px;
}

footer .social-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
	gap: 12px;
}

footer .social-wrapper .social-icon a {
  text-decoration: none;
  color: #3283c9;
  font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
  height: 55px;
	border-radius: 50%;
  background-color: #fff;
	transition: 0.3s;
	
}

footer .social-wrapper .social-icon svg {
  display: block;
	width: 24px;
	height: auto;
}
footer .social-wrapper .social-icon svg.tg {
  transform: translateX(-1px);
}
footer .social-wrapper .social-icon svg.vb {
  transform: translateY(1px);
}

footer .social-wrapper .social-icon svg *{
  fill: #3283c9;
	transition: 0.3s;
}
footer .social-wrapper .social-icon a:hover {
   background: #3283c9;
}
footer .social-wrapper .social-icon a:hover svg * {
   fill: #fff;
}
    

.wpcf7-form p {
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (max-width: 1200px) {
  .scrollTransition{
    display: flex;
  }
  .service-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.first-screen .left-part h1 {
    font-size: 40px;
  }
  section.first-screen .left-part ul {
    padding: 40px 0;
  }
  section.first-screen .left-part button {
    bottom: -40px;
  }
  section.our-products .product-item {
    width: 290px;
  }
  section.advantages .content-wrapper {
    width: 100%;
  }
  section.advantages .content-wrapper .left-part {
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.advantages .content-wrapper .left-part img {
    width: 100%;
    height: auto;
  }
  section.advantages .content-wrapper .right-part {
    padding-left: 70px;
  }
  section.send-message h4 {
    font-size: 35px;
    line-height: 50px;
  }
  section.send-message .form-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
  footer p {
    font-size: 19px;
  }
  .popup-container .popup-wrapper{
    width: 975px;
    height: 475px;
  }
  .popup-container .popup-wrapper .close-btn{
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 992px) {
  .popup-container.active{
    display: none;
  }
  .service-list ul li span {
    margin-left: 5px;
    margin-right: 5px;
  }
  nav .menu-items li {
    margin-left: 20px;
  }
  nav .logo-wrapper a span {
    font-size: 20px;
  }
  h1, h2, h3, h4 {
    padding-left: 0 !important;
  }
  h1:before, h2:before, h3:before, h4:before {
    display: none;
  }
  h2 {
    font-size: 36px !important;
    padding-top: 0 !important;
    margin-bottom: 32px !important;
  }
  section, footer {
    padding: 36px 0 !important;
  }
  section.first-screen .left-part {
    width: 50%;
  }
  section.first-screen .left-part h1 {
    padding-left: 0;
    line-height: 1;
    font-size: 32px;
  }
  section.first-screen .left-part h1 span {
    line-height: 1.4;
  }
  section.first-screen .left-part ul {
    padding: 25px 0;
  }
  section.first-screen .left-part button {
    bottom: -20px;
  }
  section.first-screen .right-part {
    padding: 0;
    width: 50%;
  }
  section.about-us .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  section.about-us .left-part {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  section.about-us .info-container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  section.about-us .container {
    -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;
  }
  section.about-us .text-wrapper {
    padding-left: 0;
  }
  section.about-us .text-wrapper:before {
    display: none;
  }
  section.our-services h2 {
    padding: 0;
  }
  section.our-services .our-services-wrapper {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  section.our-works h2 {
    padding: 0;
  }
  section.our-products h2 {
    padding: 0;
  }
  section.our-products h2 br {
    display: none;
  }
  section.our-products .product-item {
    width: 225px;
    padding: 0 10px;
  }
  section.certificates {
    padding-bottom: 50px;
  }
  section.certificates h2 {
    padding: 0;
    margin-bottom: 12px;
  }
  section.certificates .ceratificates-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  section.certificates .ceratificates-wrapper .certificates-item {
    margin: 12px;
  }
  section.advantages h2 {
    padding: 0;
  }
  section.advantages .content-wrapper {
    margin-top: 0;
    margin-bottom: 15px;
  }
  section.advantages .content-wrapper .left-part {
    display: none;
  }
  section.advantages .content-wrapper .right-part {
    width: 100%;
    padding-left: 0;
  }
  section.advantages .content-wrapper .right-part .advantages-wrapper .advantage {
    padding-left: 25px;
  }
  section.send-message h4 {
    font-size: 32px;
    padding-top: 0;
    line-height: 40px;
    margin-bottom: 24px;
  }
  section.send-message p {
    padding-left: 0;
  }
  section.send-message .form-wrapper {
    margin-top: 24px;
    width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
  footer h2 {
    margin: 0 !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
  }
  footer .social-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .social-wrapper .social-icon {
    margin: 4px 12px;
  }
}

@media screen and (max-width: 767px) {
  .toggle-menu {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 12px;
    background-color: #3286c9;
    z-index: 555;
  }
  .toggle-menu .menu-button {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .toggle-menu .menu-button.active .menu-btn {
    background-color: transparent;
  }
  .toggle-menu .menu-button.active .menu-btn:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
  .toggle-menu .menu-button.active .menu-btn:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 0;
  }
  
  .toggle-menu .menu-btn {
    width: 40px;
    height: 4px;
    background-color: #fff;
    position: relative;
  }
  .toggle-menu .menu-btn:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: -12px;
  }
  .toggle-menu .menu-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    bottom: -12px;
  }
  header.active .toggle-menu .menu-btn, header.active .toggle-menu .menu-btn:before, header.active .toggle-menu .menu-btn:after{
    background-color: #3287c9;
  }
  header {
    position: static;
  }
  header .first-nav, header nav, header .service-list {
    display: none;
  }
  header.active {
    position: fixed;
    z-index: 55;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  header.active .toggle-menu {
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
  }
  header.active .first-nav {
    background-color: #fff;
    height: 20vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.active .first-nav .logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px;
  }
  header.active .first-nav .first-nav-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  header.active .first-nav .first-nav-wrapper .left-part {
    display: none;
  }
  header.active nav {
    height: 35vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.active nav .logo-wrapper {
    display: none;
  }
  header.active nav .nav-wrapper {
    height: auto;
  }
  header.active nav .menu-items {
    width: 100%;
    -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;
  }
  header.active nav .menu-items li {
    margin: 15px 0;
  }
  header.active .service-list {
    height: 45vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.active .service-list ul {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header.active .service-list ul li {
    margin: 15px 0;
  }
  .container {
    max-width: 560px;
    width: 540px;
  }
  section.first-screen .container {
    -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;
  }
  section.first-screen .left-part {
    width: 100%;
  }
  section.first-screen .left-part h1 {
    font-size: 28px;
  }
  section.first-screen .left-part ul li {
    padding-left: 20px;
  }
  section.first-screen .left-part .service-btn {
    margin: 0 auto;
  }
  section.first-screen .left-part button {
    display: none;
  }
  section.first-screen .right-part {
    width: 100%;
    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;
  }
  section.first-screen .right-part img {
    width: 80%;
    margin-right: 7%;
  }
  section.about-us .text-wrapper h2 {
    margin-bottom: 0 !important;
  }
  section.about-us .text-wrapper p {
    font-size: 16px;
    line-height: 24px;
  }
  section.about-us .info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.about-us .info-container .info-wrapper {
    margin-bottom: 8px;
    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; */
  }
  section.about-us .info-container h2 {
    margin: 0 !important;
  }
  section.about-us .info-container p {
    line-height: 1;
    margin-left: 12px;
  }
  section.about-us .info-container p br {
    display: none;
  }
  section.our-services .our-services-wrapper .service-wrapper {
    width: 50%;
  }
  section.our-services .our-services-wrapper .service-wrapper img {
    zoom: 0.8;
  }
  section.our-services .our-services-wrapper .service-wrapper p {
    font-size: 14px;
    padding-left: 20px;
    line-height: 1.4;
  }
  section.our-services .our-services-wrapper .service-wrapper p br {
    display: none;
  }
  section.our-services .our-services-wrapper .service-wrapper:nth-child(6) p, section.our-services .our-services-wrapper .service-wrapper:nth-child(5) p {
    padding-left: 18px;
  }
  section.our-works h2 {
    text-align: center;
  }
  section.our-works .work-description {
    height: auto;
  }
  section.our-works .work-list {
    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; */
  }
  section.our-works .work-list li {
    margin-bottom: 5px;
    /* padding-right: 50px; */
  }
  section.our-works .work-list li .position {
    margin-right: 10px;
  }
  section.our-products .product-item {
    width: 240px;
  }
  h2 br {
    display: none;
  }
  footer h2 {
    text-align: center;
  }
  footer p {
    text-align: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 576px) {
  .ben{
    min-width: 60px!important;
  }
  header.active .first-nav .logo-wrapper a span {
    font-size: 24px;
    margin-left: 10px;
  }
  header.active .first-nav .first-nav-wrapper .right-part span.break-line {
    margin: 0 5px;
  }
  header.active .service-list ul li{
    margin: 8px 0;
  }
  .container {
    width: 100%;
  }
  section.first-screen .left-part {
    padding: 0;
  }
  section.first-screen .left-part h1 {
    font-size: 20px;
  }
  section.first-screen .left-part ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.first-screen .left-part ul li {
    font-size: 16px;
  }
  section.first-screen .left-part .service-btn {
    font-size: 16px;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 28px !important;
  }
  section.about-us .info-container p {
    font-size: 14px;
  }
  section.about-us .text-wrapper p {
    font-size: 14px;
  }
  section.our-services h2 {
    margin-bottom: 16px !important;
  }
  section.our-services .orderBtn {
    font-size: 16px;
  }
  section.our-services .our-services-wrapper .service-wrapper {
    padding: 0;
    width: 100%;
    margin: 10px 0;
  }
  section.our-works h2 {
    margin-bottom: 16px !important;
  }
  section.our-works .work-list li {
    padding: 0;
    display: flex;
    /* text-align: center; */
    width: 100%;
    margin-bottom: 10px;
    /* padding-right: 25px; */
  }
  section.our-works .work-list li .position {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  section.our-works .work-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
  section.our-works .work-description .left-part {
    width: 100%;
    height: 250px;
  }
  section.our-works .work-description .left-part img {
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 0;
  }
  section.our-works .work-description .right-part {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
  }
  section.our-products .show-all {
    width: 320px;
  }
  section.our-products h2 {
    text-align: center;
  }
  section.our-products .product-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.our-products .product-item {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 12px;
    padding-top: 24px;
  }
  section.our-products .product-item .text-wrapper {
    height: auto;
    padding: 0 12px;
    margin-top: 12px;
  }
  section.our-products .product-item p.price {
    padding: 12px 0;
  }
  section.our-products .product-item p {
    font-size: 16px;
  }
  section.our-products .product-item p.price {
    font-size: 24px;
  }
  section.certificates .ceratificates-wrapper .certificates-item {
    width: 33%;
    max-width: 140px;
    margin: 0;
    padding: 6px;
  }
  section.certificates .ceratificates-wrapper .certificates-item img {
    width: 100%;
    height: 100%;
  }
  section.advantages h2 {
    margin-bottom: 16px !important;
    font-size: 22px !important;
  }
  section.advantages .content-wrapper .right-part {
    padding-top: 0;
  }
  section.advantages .content-wrapper .right-part h3 {
    margin-bottom: 16px;
  }
  section.advantages .content-wrapper .right-part p {
    margin-bottom: 16px;
    font-size: 14px;
  }
  section.advantages .content-wrapper .right-part .advantages-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.advantages .content-wrapper .right-part .advantages-wrapper .advantage {
    width: 100%;
  }
  section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.two, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.four, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p {
    padding-left: 0;
  }
  section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.two:before, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p.four:before, section.advantages .content-wrapper .right-part .advantages-wrapper .advantage p:before {
    left: -20px;
    font-size: 60px;
    top: 0;
  }
  section.advantages .benefits img {
    zoom: 0.7;
  }
  section.advantages .benefits .content-wrapper {
    padding-left: 12px;
  }
  section.advantages .benefits .content-wrapper p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  section.send-message h4 {
    font-size: 20px;
    line-height: 28px;
    padding-right: 0;
  }
  section.send-message p {
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
  }
  section.send-message .form-wrapper {
    padding: 24px 16px;
    height: auto;
    width: 100%;
    max-width: 350px;
  }
  section.send-message .form-wrapper input[type="submit"] {
    margin-bottom: 0;
    font-size: 16px;
  }
}


header .first-nav .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .first-nav .container:before,
header .first-nav .container:after{
	display: none;
}

.first-nav .first-nav-wrapper .left-part{
	text-decoration: none!important;
	font-size: 16px;
    font-weight: 500;
    color: #313131;
}
.first-nav .first-nav-wrapper .left-part span{
	text-decoration: none!important;
	font-size: 16px;
    font-weight: 500;
    color: #313131;
	padding-left: 25px;
}


header .right-part,
header .msngrs{
	display: flex;
	align-items: center;
	gap: 12px;
}
header .right-part a{
	font-size: 16px;
    font-weight: 500;
    color: #313131;
	transition: 0.3s;
	text-decoration: none;
}
header .right-part a:hover{
	color: #3283c9;
}

header .right-part .msngrs a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #fff;
	transition: 0.3s;
}

header .right-part .msngrs svg {
	display: block;
	width: 20px;
	height: auto;
}
header .right-part .msngrs svg.tg {
  transform: translateX(-1px);
}
header .right-part .msngrs svg.vb {
  transform: translateY(1px);
}

header .right-part .msngrs svg *{
  fill: #3283c9;
	transition: 0.3s;
}
header .right-part .msngrs a:hover {
   background: #3283c9;
}
header .right-part .msngrs a:hover svg * {
   fill: #fff;
}

@media screen and (max-width: 767px){
	header .first-nav .container{
		flex-wrap: wrap;
		justify-content: center;
	}
	header.active .first-nav .logo-wrapper{
		width: 100%;
	}
	header.active{
		background: white;
		height: 100vh;
		overflow: auto;
	}
	header.active .first-nav,
	header.active nav,
	header.active .service-list{
		height: max-content;
		padding: 20px 0;
	}
}
@media screen and (max-width: 470px){
	header .first-nav .logo-wrapper{
		padding-right: 30px;
	}
	header .right-part{
		flex-wrap: wrap;
		justify-content: center;
	}
	header .right-part .msngrs{
		width: 100%;
		justify-content: center;
	}
}


.mob-part,
.mob-part .msngrs{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px 24px;
	flex-wrap: wrap;
}
.mob-part{
	padding-top: 20px;
}
.mob-part .msngrs{
	width: 100%;
}
.mob-part a{
	font-size: 16px;
    font-weight: 500;
    color: #313131;
	transition: 0.3s;
	text-decoration: none;
}
.mob-part a:hover{
	color: #3283c9;
}

.mob-part .msngrs a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #fff;
	transition: 0.3s;
}

.mob-part .msngrs svg {
	display: block;
	width: 20px;
	height: auto;
}
.mob-part .msngrs svg.tg {
  transform: translateX(-1px);
}
.mob-part .msngrs svg.vb {
  transform: translateY(1px);
}

.mob-part .msngrs svg *{
  fill: #3283c9;
	transition: 0.3s;
}
.mob-part .msngrs a:hover {
   background: #3283c9;
}
.mob-part .msngrs a:hover svg * {
   fill: #fff;
}

@media screen and (min-width: 768px){
	.mob-part{
		display: none;
	}
}








section.our-products .product-item{
	padding: 20px 20px 30px;;
	justify-content: flex-start;
	height: unset;
}

section.our-products .product-item img{
	display: block;
    width: calc(100% + 40px);
	margin: 0 -20px;
    height: 170px;
    object-fit: contain;
    border-radius: 12px;
	border-radius: 40px;
}

section.our-products .product-item .text-wrapper{
	height: auto;
}
