* {
  margin: 0;
  padding: 0;
  border: 0;
}

@-webkit-keyframes backgroundMove {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

@keyframes backgroundMove {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}
body .main-color {
  color: #fff;
}
body .second-color {
  color: #3eb0f7;
}
body .third-color {
  color: #777;
}
body .background-white {
  background-color: #fff;
}
body .background-grey {
  background-color: #f6f6f6;
}
body .universal-button {
  color: #fff;
  background-color: #3eb0f7;
  cursor: pointer;
  text-transform: uppercase;
  height: 62px;
  transition: 1s ease;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .universal-button:hover {
  background-color: #2c91cf;
  transition: 1s ease;
}
body .universal-button-1 {
  width: 130px;
  color: #fff;
  background-color: #3eb0f7;
  border: 2px solid #3eb0f7;
  margin-right: 10px;
}
body .universal-button-1:hover {
  background-color: transparent;
  transition: 1s ease;
  color: #3eb0f7;
}
body .universal-button-2 {
  width: 160px;
  color: #3eb0f7;
  background-color: transparent;
  border: 2px solid #3eb0f7;
}
body .universal-button-2:hover {
  background-color: #3eb0f7;
  color: #fff;
  transition: 1s ease;
}
body .universal-button-1,
body .universal-button-2 {
  height: 60px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 1s ease;
}
body .universal-button > a,
body .universal-button-1 > a,
body .universal-button-2 > a {
  text-decoration: none;
  color: inherit;
}
body .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
body h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.4em;
}
body h3 {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.4em;
  padding-bottom: 10px;
}
body p {
  line-height: 1.8em;
}
body h2, body p {
  padding-bottom: 20px;
}
body .h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.8em;
  padding: 10px;
}
body .hidden-left {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(-100%, 0, 0);
  transition: all 1s;
}
body .show-left {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
body .hidden-bottom {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100%);
  transition: all 1s;
}
body .show-bottom {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
body .hidden-top {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-100%);
  transition: all 1s;
}
body .show-top {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
body .hidden-right {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(100%, 0, 0);
  transition: all 1s;
}
body .show-right {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
body .section-header {
  padding: 75px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .underline {
  border-top: #3eb0f7 3px solid;
  width: 100px;
}
body .responsive {
  max-width: 100%;
  height: auto;
}
body .background-overlay {
  background: linear-gradient(rgba(35, 30, 70, 0.795), rgba(0, 0, 0, 0.8)), url("../images/bg.jpg");
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation: backgroundMove 40s linear infinite;
          animation: backgroundMove 40s linear infinite;
}
body .background-overlay .header {
  padding: 30px 0 75px;
  display: flex;
  align-items: center;
}
body .background-overlay .header .header-left-side {
  display: flex;
  align-items: flex-start;
}
body .background-overlay .header .header-left-side .main-logo {
  padding: 40px 0;
}
body .background-overlay .header .header-left-side .main-logo img {
  width: 200px;
}
body .background-overlay .header .header-left-side .header-main {
  padding: 0 0 20px;
  max-width: 550px;
}
body .background-overlay .header .header-left-side .header-main h1 {
  font-size: 3.5em;
  font-weight: 300;
  line-height: 1.2em;
}
body .background-overlay .header .header-left-side .header-main-text {
  padding-right: 20px;
}
body .background-overlay .header .header-left-side .header-main-text p {
  width: 80%;
  font-size: 17px;
  line-height: 1.8em;
}
body .background-overlay .header .header-left-side .header-buttons {
  padding: 40px 0;
  transition-delay: 300ms;
}
body .background-overlay .header .header-left-side .header-buttons button > a {
  text-decoration: none;
}
body .background-overlay .header .header-left-side .header-buttons button > a:visited {
  text-decoration: none;
  color: inherit;
}
body .background-overlay .header .header-right-side {
  justify-content: center;
  transition-delay: 200ms;
}
body .background-overlay .header .header-right-side .contact-form {
  background: rgba(255, 255, 255, 0.219);
  min-height: 420px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
body .background-overlay .header .header-right-side .contact-form h3 {
  padding: 15px 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.4em;
  font-weight: 300;
}
body .background-overlay .header .header-right-side .contact-form .input-block {
  display: flex;
  flex-direction: column;
  color: #777;
  box-sizing: content-box;
  width: 100%;
}
body .background-overlay .header .header-right-side .contact-form .input-block input {
  height: 40px;
  padding: 10px;
}
body .background-overlay .header .header-right-side .contact-form .input-block input[type=text], body .background-overlay .header .header-right-side .contact-form .input-block input[type=email] {
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid #DDDDDD;
}
body .background-overlay .header .header-right-side .contact-form .input-block input[type=text]:focus, body .background-overlay .header .header-right-side .contact-form .input-block input[type=email]:focus {
  box-shadow: 0 0 5px rgba(165, 236, 255, 0.897);
  border: 1px solid rgba(133, 229, 255, 0.842);
}
body .background-overlay .header .header-right-side .contact-form .input-block input, body .background-overlay .header .header-right-side .contact-form .input-block .universal-button {
  font-size: 18px;
  margin-bottom: 15px;
}
body .background-overlay .header .header-right-side .contact-form p {
  padding: 15px 10px;
  text-align: center;
  line-height: 2em;
  font-size: 13px;
}
body .background-overlay .header .header-left-side, body .background-overlay .header .header-right-side {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
body .background-overlay .scroll-to-top {
  position: fixed;
  right: 35px;
  bottom: 30px;
  z-index: 10;
  height: 40px;
  width: 40px;
  line-height: unset;
  border-radius: 103px;
  color: #fff;
  background-color: rgba(119, 119, 119, 0.342);
  font-size: 3em;
  cursor: pointer;
  padding: 5px;
  transition: 0.5s ease;
}
body .background-overlay .scroll-to-top::before {
  position: absolute;
  bottom: 11px;
}
body .background-overlay .scroll-to-top:hover {
  color: #3eb0f7;
}
body .menu {
  height: 45px;
  background: transparent;
  border-bottom: 1.2px solid rgba(119, 119, 119, 0.247);
  z-index: 2;
}
body .menu.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.89);
  z-index: 2;
}
body .menu .wrapper-menu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
body .menu .wrapper-menu .menu-logo {
  display: flex;
  cursor: pointer;
}
body .menu .wrapper-menu .menu-logo img {
  padding: 6px 0;
  width: 200px;
}
body .menu .wrapper-menu .menu-list {
  display: flex;
  flex-direction: row;
  height: 46px;
}
body .menu .wrapper-menu .menu-list .tab {
  display: flex;
  align-items: center;
}
body .menu .wrapper-menu .menu-list .highlight {
  color: #fff;
  background-color: #3eb0f7;
  transition: all 0.2s ease;
}
body .menu .wrapper-menu .menu-list a {
  text-decoration: none;
  padding: 0 15px;
  color: #777;
  font-weight: 400;
  transition: 0.2s ease;
  text-transform: uppercase;
}
body .menu .wrapper-menu .menu-list a:hover {
  color: #fff;
  transition: 0.1s;
  background-color: #3eb0f7;
}
body .menu .hamburger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
}
body .menu .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #777;
}
body .about-us {
  overflow-x: hidden;
  padding: 75px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
}
body .about-us .about-us-photo {
  padding-left: 20px;
}
body .about-us .about-us-photo img {
  box-shadow: -2px 4px 14px 7px rgba(0, 0, 0, 0.2), 1px 1px 20px 0 rgba(0, 0, 0, 0.19);
}
body .about-us .about-us-text {
  display: flex;
  flex-direction: column;
  padding: 0 55px;
  width: 50%;
}
body .benefits-wrapper {
  padding: 75px 0 100px;
}
body .benefits-wrapper .benefits-header {
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}
body .benefits-wrapper .benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
body .benefits-wrapper .benefits-container .benefits-photo img {
  box-shadow: -2px 4px 14px 7px rgba(0, 0, 0, 0.2), 1px 1px 20px 0 rgba(0, 0, 0, 0.19);
}
body .benefits-wrapper .benefits-container .benefits-box {
  display: grid;
  grid-template-columns: 370px 340px;
  gap: 40px;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text {
  display: flex;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .icon {
  font-size: 50px;
  transition: 0.5s linear;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .icon.pe-7s-cash {
  transition-delay: 200ms;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .icon.pe-7s-cart {
  transition-delay: 400ms;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .icon.pe-7s-users {
  transition-delay: 600ms;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .icon:hover {
  color: #3eb0f7;
  transition: 0.3s linear;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .benefits-text-descr {
  padding-left: 20px;
}
body .benefits-wrapper .benefits-container .benefits-box .benefits-text .benefits-text-descr p {
  padding-bottom: 0;
}
body .feature {
  align-items: center;
  display: flex;
  padding: 75px 0 100px;
  justify-content: space-between;
  overflow-x: hidden;
}
body .feature .feature-text {
  display: flex;
  flex-direction: column;
  width: 50%;
}
body .feature .feature-text .universal-button-2 {
  width: 200px;
}
body .feature .feature-photo {
  padding-right: 20px;
}
body .feature .feature-photo img {
  box-shadow: -2px 4px 14px 7px rgba(0, 0, 0, 0.2), 1px 1px 20px 0 rgba(0, 0, 0, 0.19);
}
body .order-details {
  min-height: 400px;
  width: 80%;
  margin: 0 auto;
  overflow-x: hidden;
}
body .order-details .universal-button {
  width: 262px;
  border-radius: 5px;
}
body .order-details p {
  padding-bottom: 50px;
}
body .order-details h2, body .order-details p, body .order-details button {
  text-align: center;
}
body .order-details button {
  font-size: 20px;
  text-transform: none;
}
body .catalogue-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 450px;
}
body .catalogue-wrapper .catalogue-box {
  display: flex;
  padding-bottom: 100px;
  justify-content: center;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card {
  border: 1px rgba(119, 119, 119, 0.342) solid;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card:nth-child(2) {
  transition-delay: 200ms;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card:nth-child(3) {
  transition-delay: 400ms;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card:nth-child(4) {
  transition-delay: 600ms;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper {
  padding: 15px 0;
  text-align: center;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper .icon {
  font-size: 80px;
  text-align: center;
  color: rgba(119, 119, 119, 0.342);
  padding-bottom: 10px;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper hr {
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(119, 119, 119, 0.342);
  width: 200px;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper h3 {
  font-weight: 400;
  font-size: 1.4em;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper p {
  padding: 10px 0;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper .price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper span {
  color: #3eb0f7;
  font-size: 4em;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper .crossed {
  text-decoration: line-through;
}
body .catalogue-wrapper .catalogue-box .catalogue-box-card .catalogue-box-card-wrapper .universal-button {
  width: 172px;
  height: 55px;
  border-radius: 5px;
  margin-top: 10px;
}
body .clients-wrapper {
  min-height: 250px;
}
body .clients-wrapper .clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 75px;
}
body .clients-wrapper .clients-logos img {
  padding: 0 20px;
  height: 100px;
}
body .clients-wrapper .clients-logos img:nth-child(2) {
  transition-delay: 200ms;
}
body .clients-wrapper .clients-logos img:nth-child(3) {
  transition-delay: 400ms;
}
body .clients-wrapper .clients-logos img:nth-child(4) {
  transition-delay: 600ms;
}
body .reviews-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 75px;
}
body .reviews-wrapper .swiper {
  width: 80%;
}
body .reviews-wrapper .swiper .card {
  position: relative;
  background: #f6f6f6;
  border-radius: 20px;
  margin: 20px 0;
}
body .reviews-wrapper .swiper .card::before {
  position: absolute;
  height: 40%;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
body .reviews-wrapper .swiper .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
}
body .reviews-wrapper .swiper .card .card-content .image {
  height: 100px;
  border-radius: 3px;
  padding: 3px;
}
body .reviews-wrapper .swiper .card .card-content .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid #3eb0f7;
}
body .reviews-wrapper .swiper .card .card-content .review-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}
body .reviews-wrapper .swiper .card .card-content .review-text .name {
  padding-top: 20px;
  font-size: 18px;
  font-weight: 400;
}
body .reviews-wrapper .swiper .card .card-content .review-text .name .company {
  font-style: italic;
  color: #3eb0f7;
}
body .reviews-wrapper .swiper .card .button {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
body .reviews-wrapper .swiper .card .button button {
  background: #7d2ae8;
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #6616d0;
}
body .reviews-wrapper .swiper-pagination {
  bottom: -6px;
}
body .reviews-wrapper .swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 25px;
  background: rgb(56, 151, 240);
}
body .footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .footer .contact-info-box {
  display: flex;
  flex-direction: row;
  padding: 100px 0 100px;
  justify-content: space-around;
  align-items: flex-start;
}
body .footer .contact-info-box .info-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .footer .contact-info-box .info-wrap h2 {
  padding: 0 0 0 15px;
  font-weight: 400;
  font-size: 1.8em;
}
body .footer .contact-info-box .info-wrap h2 span {
  color: #3eb0f7;
}
body .footer .contact-info-box .info-wrap .info-flexbox {
  width: 350px;
  display: grid;
  grid-template-columns: 50px 350px;
}
body .footer .contact-info-box .info-wrap .info-flexbox .icons {
  display: grid;
  align-items: center;
  justify-items: center;
  color: #3eb0f7;
}
body .footer .contact-info-box .info-wrap .info-flexbox .icons .icon {
  font-size: 1.5em;
  padding: 10px 10px;
}
body .footer .contact-info-box .info-wrap .info-flexbox .info {
  display: grid;
  align-items: center;
}
body .footer .contact-info-box .info-wrap .info-flexbox .info a,
body .footer .contact-info-box .info-wrap .info-flexbox .info #email {
  text-decoration: none;
  color: #3eb0f7;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
body .footer .contact-info-box .info-wrap .info-flexbox .info a:hover,
body .footer .contact-info-box .info-wrap .info-flexbox .info #email:hover {
  color: #fff;
}
body .footer .contact-info-box .submit-form {
  display: flex;
  flex-direction: column;
  width: 55%;
}
body .footer .contact-info-box .submit-form > input, body .footer .contact-info-box .submit-form textarea {
  font-size: 1.3em;
  padding: 10px 20px;
  margin: 0 0 20px;
  font-family: inherit;
}
body .footer .contact-info-box .submit-form input {
  height: 35px;
}
body .footer .contact-info-box .submit-form input[type=text], body .footer .contact-info-box .submit-form input[type=email] {
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 2px solid transparent;
}
body .footer .contact-info-box .submit-form input[type=text]:focus, body .footer .contact-info-box .submit-form input[type=email]:focus {
  box-shadow: 0 0 5px rgba(165, 236, 255, 0.897);
  border: 2px solid rgba(133, 229, 255, 0.842);
}
body .footer .contact-info-box .submit-form textarea {
  height: 80px;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 2px solid transparent;
}
body .footer .contact-info-box .submit-form textarea:focus {
  box-shadow: 0 0 5px rgba(165, 236, 255, 0.897);
  border: 2px solid rgba(133, 229, 255, 0.842);
}
body .footer .contact-info-box .submit-form .universal-button {
  width: 100%;
  font-size: inherit;
}
body .footer .contact-icons {
  margin: 0 auto 25px;
}
body .footer .contact-icons > a {
  font-size: 1.8em;
  margin: 0 10px 0;
  text-decoration: none;
  background: none;
  color: #3eb0f7;
  cursor: pointer;
}
body .footer .contact-icons > a:hover {
  color: #fff;
}
body .footer .contact-icons > a #twit {
  transition-delay: 200ms;
}
body .footer .contact-icons > a #fb {
  transition-delay: 400ms;
}
body .footer .contact-icons > a #ws {
  transition-delay: 600ms;
}
body .footer .contact-icons > a #inst {
  transition-delay: 800ms;
}

@media screen and (max-width: 1200px) {
  body .background-overlay .header .header-left-side, body .background-overlay .header .header-right-side {
    width: 50%;
    padding: 0 20px;
  }
  body .menu .wrapper-menu .menu-logo {
    padding: 0 0 0 20px;
  }
  body .about-us {
    flex-direction: column;
    align-items: center;
  }
  body .about-us .about-us-text {
    width: 80%;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .about-us-photo {
    padding-bottom: 20px;
  }
  .benefits-photo {
    display: none;
  }
  body .feature {
    padding: 75px 20px 100px;
  }
  body .footer .contact-info-box .submit-form {
    width: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .wrapper {
    max-width: 1000px;
  }
  body .background-overlay .header {
    flex-direction: column;
  }
  body .background-overlay .header .header-left-side {
    align-items: center;
  }
  body .background-overlay .header .header-left-side,
body .background-overlay .header .header-right-side {
    width: 80%;
  }
  body .background-overlay .header .header-left-side .header-buttons {
    padding-top: 0;
  }
  body .background-overlay .header .header-left-side .header-main-text p {
    margin: 0 auto;
    text-align: center;
  }
  body .background-overlay .header .header-left-side .header-main h1 {
    text-align: center;
  }
  body .menu .wrapper-menu .menu-list {
    flex-direction: column;
    position: absolute;
    left: -100%;
    top: 46px;
    width: 100%;
    z-index: 2;
    transition: all 0.3s;
  }
  body .menu .wrapper-menu .menu-list.active {
    display: flex;
    left: 0;
    top: 46px;
  }
  body .menu .wrapper-menu .menu-list .tab {
    justify-content: flex-end;
  }
  body .menu .wrapper-menu .menu-list a {
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.89);
  }
  body .menu .wrapper-menu .menu-list a:last-child {
    border-bottom: 1.2px solid rgba(119, 119, 119, 0.247);
  }
  body .menu .hamburger {
    display: block;
  }
  body .menu .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  body .menu .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body .menu .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body .about-us-photo {
    width: 70%;
    padding: 0 0 20px 40px;
  }
  body h2 {
    font-size: 1.8em;
    text-align: center;
  }
  body .benefits-wrapper .benefits-header {
    width: 80%;
    margin: 0 auto;
  }
  body .feature {
    flex-direction: column-reverse;
  }
  body .feature .feature-photo {
    padding: 0 0 20px;
  }
  body .feature .feature-text {
    align-items: center;
    text-align: center;
    width: 80%;
  }
  body .catalogue-wrapper .catalogue-box {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    margin: 0 auto;
  }
  body .catalogue-wrapper .catalogue-box .catalogue-box-card {
    width: 80%;
  }
  body .clients-wrapper .clients-logos {
    width: 60%;
    margin: 0 auto;
    justify-content: space-around;
  }
}
@media screen and (max-width: 900px) {
  .header-left-side.main-color {
    align-items: center;
  }
  body .background-overlay .header .header-left-side .header-main-text {
    display: flex;
    justify-content: center;
  }
  body .background-overlay .header .header-left-side .header-main h1,
body .background-overlay .header .header-left-side .header-main-text p {
    text-align: center;
  }
  body .menu .wrapper-menu .menu-list .tab {
    justify-content: center;
  }
  body .benefits-wrapper .benefits-container .benefits-box {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    width: 80%;
  }
  body .footer .contact-info-box {
    flex-direction: column;
    align-items: center;
  }
  body .footer .contact-info-box .submit-form {
    width: 80%;
  }
  body .footer .contact-info-box .info-wrap {
    align-items: center;
    width: 80%;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox {
    display: grid;
    width: 100%;
    padding: 15px 0;
    justify-content: center;
    grid-template-columns: 42px 468px;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox .icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    -moz-column-gap: 238px;
    column-gap: 269px;
    row-gap: 10px;
    justify-items: center;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox .info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
@media screen and (max-width: 600px) {
  body .background-overlay .header .header-left-side, body .background-overlay .header .header-right-side {
    width: 95%;
    align-items: center;
    padding: 0 20px;
  }
  body .background-overlay .header .header-left-side .header-main h1 {
    font-size: 2.5em;
  }
  body .background-overlay .header .header-left-side .header-main-text p {
    width: 100%;
  }
  body .catalogue-wrapper .catalogue-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
  }
  body .catalogue-wrapper .catalogue-box .catalogue-box-card {
    width: 70%;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox {
    display: flex;
    flex-direction: row;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox .icons {
    display: flex;
    align-items: start;
    justify-items: center;
    flex-direction: column;
  }
  body .footer .contact-info-box .info-wrap .info-flexbox .info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
  }
}
@media screen and (max-width: 400px) {
  body .background-overlay .header .header-left-side .header-buttons {
    display: flex;
  }
  body .catalogue-wrapper .catalogue-box .catalogue-box-card {
    width: 85%;
  }
  body .feature .feature-text {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */