* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: proxima-nova, sans-serif;
}

body a {
  text-decoration: none;
}

body img {
  -o-object-fit: cover;
     object-fit: cover;
  position: center;
}

.current-page a {
  color: #ED2025 !important;
}

.bgc {
  background-color: #F9F9F9;
}

section {
  position: relative;
  width: 100%;
  padding: 30px 0;
}

.container {
  width: 100%;
  max-width: 344px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-btn {
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 600;
  color: white;
  background-color: #ED2025;
  padding: 8px 15px;
  text-transform: uppercase;
  display: inline-block;
}

.p-btn:hover{
    background-color: #CD1E22;
}

.s-btn {
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 600;
  color: #ED2025;
  background-color: #D5D5D5;
  padding: 8px 15px;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #ED2025;
}

.t-btn {
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 600;
  color: #ED2025;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}

.t-btn img {
  margin-left: 10px;
}

.color {
  color: #ED2025;
}

h1, h2, h3, h4 {
  color: #333333;
  font-family: 'Oswald', sans-serif;
}

h1 {
  font-size: 31.25px;
  line-height: 39px;
  font-weight: 800;
}

h2 {
  font-size: 25px;
  line-height: 31.25px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
}

p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
}

.main-head {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
  height: 60px;
  display: -ms-grid;
  display: grid;
}

.main-head .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}

.main-head .logo {
  width: 128px;
  height: 40px;
}

.main-head .logo img {
  width: 128px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-head .links {
  position: absolute;
  top: 60px;
  right: 0;
  width: 230px;
  list-style: none;
  background-color: white;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-head .links li {
  padding: 10px 20px;
}

.main-head .links a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #333333;
}

.main-head .bugger-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-head .bugger-btn .p-btn {
  margin-right: 20px;
}

.main-head .bugger {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 32px;
  background-color: #ED2025;
  border-radius: 3px;
}

.main-head .bugger div {
  background-color: white;
  width: 28px;
  height: 2px;
  margin: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.overflow-body-hidden {
  overflow: hidden;
}

.overflow-body-hidden::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.main-head .links.active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.toggle .line1 {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toggle .line2 {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toggle .line3 {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.home-hero {
  position: relative;
  width: 100%;
  margin-top: 60px;
}
.home-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    background-color: #F9F9F9;
    height: 150px;
    bottom: 0;
    z-index: -1;
}

.home-hero .hero-bgc {
  width: 100%;
  height: 470px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-hero .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 80px;
}

.home-hero h1 {
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 31.25px;
  line-height: 39.06px;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.home-hero p {
  margin-top: 10px;
  color: white;
  text-align: center;
}

.home-hero h3 {
  display: none;
}

.home-hero .btn-box {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
}

.home-hero .clients {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 72px 110px 98px;
      grid-template-columns: 72px 110px 98px;
  -ms-grid-rows: 60px 60px;
      grid-template-rows: 60px 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 10px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  margin-top: 116px;
  background-color: white;
  width: 100%;
  padding: 10px 15px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.home-hero .clients img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-hero .clients img:last-child {
  display: none;
}

.top-header {
  margin-top: 60px;
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  height: 220px;
}

.top-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top-header .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
}

.top-header h2 {
  text-align: center;
  color: white;
}

.top-header .meta-links {
  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;
  margin-top: 10px;
}

.top-header .meta-links a {
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 400;
  color: white;
  margin-right: 10px;
}

.home-about .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-about .about-img {
  width: 100%;
  height: 250px;
}

.home-about .text {
  margin-top: 30px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-about h2 {
  text-transform: uppercase;
}

.home-about p {
  margin-top: 15px;
}

.home-about a {
  margin-top: 27px;
}

.advantage .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantage .box {
  border: 2px solid #D5D5D5;
  width: 100%;
  max-width: 396px;
  height: 160px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.advantage .box:nth-child(2) {
  margin: 30px 0;
}

.advantage .box img {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
}

.advantage .box h4 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.advantage .box p {
  margin-top: 10px;
  color: #333333;
}

.home-services .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-services .boxes {
  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;
  max-width: 396px;
  margin-top: 25px;
}

.home-services .box {
  width: 100%;
  padding: 30px 20px;
  background-color: white;
  border: 1px solid #707070;
}

.home-services .box img {
  width: 100%;
  height: 160px;
}

.home-services .box:nth-child(1) {
  margin-bottom: 30px;
}

.home-services .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.home-services .text img {
  width: 80px;
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
}

.home-services h4 {
  font-size: 20px;
  line-height: 31.25px;
  font-weight: 600;
  color: #333333;
}

.home-services p {
  margin-top: 10px;
  color: #333333;
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #EAEAEA;
  padding: 30px 0 50px 0;
}

.footer .container {
  -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: flex-start;
}

.footer .foot-logo {
  width: 252px;
  height: 80px;
  margin: auto;
  margin-bottom: 30px;
}

.footer .foot-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.footer .foot-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .foot h3 {
  color: #263238;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .foot ul {
  list-style: none;
}

.footer .foot ul li {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .foot ul li a, .footer .foot ul li a p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: #263238;
}

.footer .foot ul li img, .footer .foot ul li a img {
  margin-right: 10px;
  width: 19px;
  object-fit: contain;
}

.footer .foot:nth-child(1) {
  display: none;
}

.foot-bot {
  position: relative;
  width: 100%;
  background-color: #333333;
  padding: 15px 0;
}

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

.foot-bot ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 380px;
  display: none;
}

.foot-bot ul li:nth-child(even) {
  margin: 0 10px;
}

.foot-bot ul li a {
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 400;
  color: #D5D5D5;
}

.foot-bot p, .foot-bot p a {
  color: #D5D5D5;
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 400;
}

.foot-bot p a {
  text-decoration: underline;
}

.home-contact {
  position: relative;
  width: 100%;
  padding: 50px 0;
}

.home-contact .container {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  height: 100%;
}

.home-contact .contact-box {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

.home-contact .contact-page-form {
  margin-bottom: 10px;
}

.home-contact .contact-title h2, .gform_title {
  color: #333333;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 29.25px;
  line-height: 39px;
  font-weight: 800;
}

.home-contact .contact-title p {
  color: #242424;
  text-align: center;
  font-size: 12.8px;
  line-height: 14px;
}

.home-contact .contact-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 27px 0;
}

.home-contact .contact-address .img-box {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
  display: -ms-grid;
  display: grid;
}

.home-contact .contact-address .img-box .address-img1 {
  width: 30px;
  height: 38.76px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-contact .contact-address .img-box .address-img2 {
  width: 38.52px;
  height: 25.25px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-contact .contact-address .img-box .address-img3 {
  width: 31.82px;
  height: 45.68px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-contact .contact-p {
  font-size: 12.8px;
  line-height: 16px;
  color: #303030;
}

.home-contact .contact-address h3 {
  color: #333333;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.home-contact .contact-address a {
  color: #000000;
}

div.wpforms-container-full {
  margin: 0 !important;
}
.g-name h3{
    background-color: #F9F9F9 !important;
    padding: 10px 5px !important;
}
.g-name input, .g-name textarea, .g-name select {
  border: none !important;
  outline: none !important;
  background-color: #F3F3F3 !important;
  color: #5c5c5c !important;
  font-size: 12.8px !important;
  line-height: 20px !important;
  padding: 15px 20px !important;
  font-family: "Poppins", sans-serif !important;
  height: unset !important;
}

.g-name select {
  font-size: 12.8px;
  line-height: 30px;
}

.g-name textarea {
  height: 200px !important;
}

#wpforms-submit-16, #wpforms-submit-26, #wpforms-submit-27, #wpforms-submit-47 {
  border: none;
  outline: none;
  font-size: 12.8px;
  line-height: 16px;
  font-weight: 500;
  padding: 8px 15px;
  color: white;
  background-color: #ED2025;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
#wpforms-submit-16:hover, #wpforms-submit-26:hover, #wpforms-submit-27:hover, #wpforms-submit-47:hover{
    background-color: #CD1E22;
}
.iti__flag-container{
    display: none !important;
}
.wpforms-field-label {
  font-weight: 400 !important;
}
.desktop{
    display: none !important;
}
.form .container {
  max-width: 590px;
  width: 100%;
  padding: 0 10px;
}

.form div.wpforms-container-full {
  width: 100% !important;
  margin: 0 !important;
}

.err {
  padding-top: 90px;
}

.err .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.err img {
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.err h3 {
  text-align: center;
  font-family: "poppins";
  margin: 20px 0 30px 0;
  font-weight: 400;
  max-width: 335px;
}

.thank img {
  width: 150px;
  height: 150px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.thank h2 {
  text-align: center;
  margin: 30px 0 10px 0;
  max-width: 398px;
}

.thank p {
  text-align: center;
  max-width: 900px;
  font-size: 12.8px;
  line-height: 16px;
}

.privacy .container {
  -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: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 994px;
  padding: 0 20px;
}

.privacy p {
  text-align: left;
  margin-bottom: 20px;
  margin-top: 8px;
}

/*employment-----------------------------*/
.form-header{
    margin-top: 20px;
}
.form-header .logo{
    width: 128px;
    height: 40px;
}
.form-header .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form-header .container{
    max-width: 650px;
    padding: 0 15px;
    justify-content: space-between;
}
.form-header .bold{
    font-weight: 700;
    margin-bottom: 8px;
}


@media screen and (min-width: 428px) {
  .container {
    width: 100%;
    max-width: 396px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 728px;
  }
  .main-head .bugger-btn .p-btn {
    margin-right: 30px;
  }
  .home-hero .container {
    padding-top: 60px;
  }
  .home-hero h1 {
    font-size: 48.83px;
    line-height: 61px;
    font-weight: 800;
  }
  .home-hero p {
    max-width: 540px;
    font-size: 20px;
    line-height: 31.25px;
    font-weight: 500;
    margin-top: 0;
  }
  .home-hero .clients {
    margin-top: 88px;
    -ms-grid-columns: 50.42px 99.55px 98px 72.69px 109.99px 80.52px;
        grid-template-columns: 50.42px 99.55px 98px 72.69px 109.99px 80.52px;
    -ms-grid-rows: 60px;
        grid-template-rows: 60px;
    row-gap: 0;
    -webkit-column-gap: 10px;
            column-gap: 10px;
    padding: 20px 46px;
  }
  .home-about .container {
    width: 541px;
  }
  .home-about .about-img {
    height: 300px;
  }
  .footer {
    padding: 60px 0;
  }
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 224px 1fr;
        grid-template-columns: 224px 1fr;
  }
  .footer .foot-logo {
    margin: unset;
    margin-bottom: 0;
  }
  .footer .foot-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 22px;
            column-gap: 22px;
  }
  .footer .foot h3 {
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .footer .foot ul {
    list-style: none;
  }
  .footer .foot ul li {
    padding-bottom: 10px;
  }
  .footer .foot ul li a, .footer .foot ul li a p {
    font-size: 12.8px;
    line-height: 16px;
    font-weight: 500;
    color: #333333;
  }
  .footer .foot ul li img, .footer .foot ul li a img {
    margin-right: 10px;
    width: 11px;
    
  }
  .footer .foot:nth-child(1) {
    display: none;
  }
  /* thank-you and 404 page========================= */
  .err {
    padding-top: 110px;
  }
  .err img {
    width: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .err h3 {
    text-align: center;
    font-family: "poppins";
    margin: 20px 0 40px 0;
    max-width: 782px;
    font-size: 25px;
    line-height: 30px;
  }
  .thank img {
    width: 150px;
  }
  .thank h2 {
    max-width: 687px;
  }
  .thank p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 980px;
    width: 100%;
  }
  h2 {
    font-size: 31.25px;
    line-height: 39px;
    font-weight: 800;
  }
  h3 {
    font-size: 25px;
    line-height: 31.25px;
    font-weight: 500;
  }
  p {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
  }
  .p-btn, .s-btn{
      padding: 10px 30px;
  }
  section {
    padding: 80px 0;
  }
  .main-head .link-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-head .links {
    position: unset;
    top: unset;
    right: unset;
    width: unset;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-head .links li {
    padding: 0;
    margin-right: 25px;
  }
  .main-head .links a:hover {
    color: #ED2025;
  }
  .main-head .bugger-btn .p-btn {
    margin-right: 0;
  }
  .main-head .bugger {
    display: none;
  }
  .home-hero .hero-bgc {
    height: 650px;
  }
  .home-hero .container {
    padding-top: 100px;
  }
  .home-hero h1 {
    font-size: 70px;
    line-height: 81px;
    font-weight: 800;
  }
  .home-hero p {
    max-width: 778px;
    margin-top: 10px;
    font-size: 25px;
    line-height: 31.25px;
    font-weight: 500;
  }
  .home-hero .btn-box {
    margin-top: 50px;
    width: 389px;
  }
  .home-hero .clients {
    margin-top: 151px;
    -ms-grid-columns: 58.83px 116.15px 114.25px 84.8px 146.65px 96.62px 131px;
        grid-template-columns: 58.83px 116.15px 114.25px 84.8px 146.65px 96.62px 131px;
    row-gap: 0;
    -webkit-column-gap: 35px;
            column-gap: 35px;
    padding: 25px 10px;
  }
  .home-hero .clients img:last-child {
    display: block;
  }
  .home-about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home-about .about-img {
    width: 450px;
    height: 280px;
  }
  .home-about .text {
    width: 481px;
    margin-top: 0;
  }
  .home-about a {
    margin-top: 22px;
  }
  .swipe img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .swipe .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .advantage .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .advantage .box {
    width: 316px;
  }
  .advantage .box:nth-child(2) {
    margin: 0;
  }
  .advantage .box p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  .home-services .boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
  .home-services .box {
    width: 482px;
    height: 400px;
    padding: 20px 30px;
  }
  .home-services .box img {
    height: 230px;
  }
  .home-services .box:nth-child(1) {
    margin-bottom: 0;
  }
  .home-services .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
  .home-services .text img {
    height: 58px;
  }
  .home-services h4 {
    font-size: 25px;
    line-height: 31.25px;
    font-weight: 600;
    color: #333333;
  }
  .home-services p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  .footer {
    padding: 62px 0 80px 0;
  }
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 343px 1fr;
        grid-template-columns: 343px 1fr;
  }
  .footer .foot-logo {
    width: 233px;
    height: 74px;
  }
  .footer .foot-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 104px;
            column-gap: 104px;
  }
  .footer .foot h3 {
    color: #263238;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .footer .foot ul {
    list-style: none;
  }
  .footer .foot ul li {
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .foot ul li a, .footer .foot ul li a p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #263238;
  }
  .footer .foot ul li img, .footer .foot ul li a img {
    margin-right: 10px;
    width: 19px;
  }
  .foot-bot .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .foot-bot ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-contact .contact-p {
    font-size: 16px;
    line-height: 20px;
  }
  .g-name input, .g-name textarea, .g-name select {
    font-size: 16px;
    line-height: 30px;
    padding: 15px 20px;
  }
  .home-contact .contact-title h2, .gform_title {
    font-size: 42.83px;
    line-height: 61px;
    font-weight: 800;
  }
  #gform_submit_button_1 {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 20px;
  }
  #gform_1 {
    margin-top: 30px;
  }
  .err img {
    width: 550px;
  }
  .err h3 {
    margin: 30px 0 60px 0;
  }
  .thank img {
    width: 150px;
  }
  .thank h2 {
    margin: 40px 0 15px 0;
  }
  .thank p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1196px;
  }
  .desktop{
    display: flex !important;
}
div.wpforms-container-full {
  margin-top: 30px !important;
}
  .main-head .links li {
    margin-right: 45px;
  }
  .home-hero .container {
    padding-top: 120px;
  }
  .home-hero h3 {
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
  }
  .home-hero .clients {
    margin-top: 131px;
    -ms-grid-columns: 112px 58.83px 116.15px 114.25px 84.8px 146.65px 96.62px 131px;
        grid-template-columns: 112px 58.83px 116.15px 114.25px 84.8px 146.65px 96.62px 131px;
    row-gap: 0;
    -webkit-column-gap: 35px;
            column-gap: 35px;
    padding: 25px 50px;
  }
  .home-hero .clients img:last-child {
    display: block;
  }
  .top-header h2 {
    font-size: 48.83px;
    line-height: 61px;
    font-weight: 800;
  }
  .top-header .meta-links a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  .home-about .about-img {
    width: 491px;
    height: 300px;
  }
  .home-about .text {
    width: 578px;
  }
  .advantage .box {
    width: 380px;
  }
  .home-services .boxes {
    margin-top: 40px;
  }
  .home-services .box {
    width: 570px;
  }
  .footer {
    padding: 80px 0 100px 0;
  }
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 355px 1fr;
        grid-template-columns: 355px 1fr;
  }
  .footer .foot-logo {
    width: 287px;
    height: 91px;
  }
  .footer .foot-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
  .footer .foot ul li img, .footer .foot ul li a img {
    width: 17px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer .foot:nth-child(1) {
    display: block;
  }
  .foot-bot .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .foot-bot ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-contact {
    padding: 60px 0 80px 0;
  }
  .home-contact .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home-contact .contact-box {
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    margin-bottom: 0;
    width: 50%;
  }
  .home-contact .contact-box:nth-child(1) {
    margin-right: 40px;
  }
  .home-contact .contact-title h2, .home-contact .contact-title p {
    text-align: left;
  }
  .home-contact .contact-title p {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact .contact-page-address p {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact .contact-address {
    margin: 50px 0;
  }
  .home-contact .contact-address .img-box {
    width: 75px;
  }
  .home-contact .contact-address .img-box .address-img1 {
    width: 52px;
    height: 69.33px;
  }
  .home-contact .contact-address .img-box .address-img2 {
    width: 70px;
    height: 49.54px;
  }
  .home-contact .contact-address .img-box .address-img3 {
    width: 46.67px;
    height: 67px;
  }
  .home-contact .contact-title h2, .gform_title {
    text-align: left;
  }
  .home-contact .g-name input, .g-name textarea, .g-name select {
    font-size: 16px !important;
    padding: 15px 30px !important;
    font-family: poppins !important;
  }
  #gform_submit_button_1, #gform_submit_button_3, #gform_submit_button_4, #gform_submit_button_5 {
    line-height: 25px;
    margin: 0 auto 0 0;
    padding: 10px 20px !important;
  }
  #gform_1, #gform_3, #gform_4, #gform_5 {
    margin-top: 40px;
  }
  /* thnak-you and 404 page================================== */
  .err {
    padding-top: 130px;
  }
  .err img {
    width: 710px;
  }
  .err h3 {
    margin: 60px 0 30px 0;
    font-size: 39px;
    line-height: 65px;
    max-width: 784px;
  }
  .thank img {
    width: 150px;
  }
  .thank p {
    max-width: 902px;
  }
}
/*# sourceMappingURL=style.css.map */