h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Circular Std Bold';
}

.sp__btn {
  background-color: #003175;
  font-family: 'Circular Std Book';
  color: #ffffff;
  width: 100%;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Circular Std Book';
  src: url("../fonts/CircularStd-Book.eot");
  src: url("../fonts/CircularStd-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Book.woff2") format("woff2"), url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.ttf") format("truetype"), url("../fonts/CircularStd-Book.svg#CircularStd-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Std Medium';
  src: url("../fonts/CircularStd-Medium.eot");
  src: url("../fonts/CircularStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype"), url("../fonts/CircularStd-Medium.svg#CircularStd-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Std Bold';
  src: url("../fonts/CircularStd-Bold.eot");
  src: url("../fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype"), url("../fonts/CircularStd-Bold.svg#CircularStd-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Circular Std Book';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #989898;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body::after, body::before {
  content: '';
  height: 100%;
  width: 50%;
  position: fixed;
  left: 0;
  background-color: #ffffff;
  z-index: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-transform 1s 0s;
  transition: -webkit-transform 1s 0s;
  transition: transform 1s 0s;
  transition: transform 1s 0s, -webkit-transform 1s 0s;
}

body::before {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body::after {
  bottom: 0;
  left: unset;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

body.page-is-changing {
  overflow: hidden;
}

body.page-is-changing::after, body.page-is-changing::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0s 0s;
  transition: -webkit-transform 0s 0s;
  transition: transform 0s 0s;
  transition: transform 0s 0s, -webkit-transform 0s 0s;
  z-index: 11;
}

body.sp_index {
  background-color: #003175;
}

body.sp_contact {
  background-color: #eaeaea;
}

body.sp_ourteam {
  background-color: #29aae1;
}

body.sp_about {
  background-color: #eaeaea;
}

body.sp_ourservices::before, body.sp_globalsolutions::before, body.sp_contact::before {
  width: 100%;
}

body.sp_ourservices::after, body.sp_globalsolutions::after, body.sp_contact::after {
  width: 100%;
}

main .cd-main-content::after,
main .cd-main-content::before {
  content: '';
  position: absolute;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: -1;
}

main .cd-main-content::before {
  top: 0;
}

main .cd-main-content::after {
  bottom: 0;
}

main .cd-main-content.cd-index > div {
  display: table-cell;
  vertical-align: middle;
}

main .cd-main-content.cd-index::after {
  background-color: transparent;
}

main .cd-main-content.cd-index::before {
  background-color: transparent;
}

main .cd-main-content.cd-about {
  background-color: transparent;
}

main .cd-main-content.cd-about::after {
  background-color: transparent;
}

main .cd-main-content.cd-about::before {
  background-color: transparent;
}

.cd-loading-bar {
  visibility: hidden;
  -webkit-transition: visibility 0s 0.01s;
  transition: visibility 0s 0.01s;
}

.page-is-changing .cd-loading-bar {
  visibility: visible;
}

h2.splitting .char {
  -webkit-animation: slide-in 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: slide-in 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation-delay: calc(60ms * var(--char-index));
          animation-delay: calc(60ms * var(--char-index));
  opacity: 0;
}

.splitting.active .char {
  opacity: 1;
  -webkit-animation: slide-ins 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: slide-ins 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@-webkit-keyframes slide-in {
  0% {
    -webkit-transform: translateY(-10px) rotate(-40deg) scale(0.9);
            transform: translateY(-10px) rotate(-40deg) scale(0.9);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes slide-in {
  0% {
    -webkit-transform: translateY(-10px) rotate(-40deg) scale(0.9);
            transform: translateY(-10px) rotate(-40deg) scale(0.9);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes slide-ins {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes slide-ins {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

p.splitting .char {
  -webkit-animation: slide-in-p 2s cubic-bezier(0.5, 0, 0.5, 1) alternate;
          animation: slide-in-p 2s cubic-bezier(0.5, 0, 0.5, 1) alternate;
  -webkit-animation-delay: calc(10ms * var(--char-index));
          animation-delay: calc(10ms * var(--char-index));
  opacity: 0;
}

@-webkit-keyframes slide-in-p {
  0% {
    -webkit-transform: translateY(-5px) rotate(-10deg) scale(0.9);
            transform: translateY(-5px) rotate(-10deg) scale(0.9);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes slide-in-p {
  0% {
    -webkit-transform: translateY(-5px) rotate(-10deg) scale(0.9);
            transform: translateY(-5px) rotate(-10deg) scale(0.9);
  }
  20%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
            transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

.sp__container {
  max-width: 100%;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
}

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

body.home {
  background-color: #003175;
}

body.sp__over_hidden {
  overflow: hidden;
}

.sp__header {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 4px -2px #989898;
          box-shadow: 0px 0px 4px -2px #989898;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
}

.sp__header nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sp__header nav .sp__logo {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
  max-width: 175px;
}

.sp__header nav .sp__logo a {
  display: block;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sp__header nav .sp__logo a img {
  width: 100%;
  height: auto;
  display: block;
}

.sp__header nav .sp__menu {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.sp__header nav .sp__menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 35px;
}

.sp__header nav .sp__menu ul li {
  display: inline-block;
}

.sp__header nav .sp__menu ul li a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 38px 15px;
  font-size: 16px;
  color: #989898;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sp__header nav .sp__menu ul li a:hover, .sp__header nav .sp__menu ul li a.active {
  color: #0be19c;
}

.sp__header nav .sp__mailbox {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 28px;
}

.sp__header nav .sp__mailbox ul {
  margin: 0px;
  list-style: none;
  padding: 0px;
}

.sp__header nav .sp__mailbox ul li {
  display: block;
}

.sp__header nav .sp__mailbox ul li a {
  display: block;
}

.sp__header nav .sp__mailbox ul li a img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 35px;
}

.sp__header nav .sp__mailbox ul li a img:hover {
  -webkit-animation: zoom 0.3s ease-in;
          animation: zoom 0.3s ease-in;
}

.sp__header nav .sp__toggleMenu {
  display: none;
  width: 30px;
  height: 23px;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  z-index: 9;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sp__header nav .sp__toggleMenu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #003175;
  border-radius: 5px;
}

.sp__header nav .sp__toggleMenu span:nth-child(2) {
  margin: 7px 0;
}

.sp__header nav .sp__toggleMenu.active span {
  -webkit-transform-origin: center;
          transform-origin: center;
}

.sp__header nav .sp__toggleMenu.active span:nth-child(1) {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  top: 10px;
  position: relative;
  left: 0px;
}

.sp__header nav .sp__toggleMenu.active span:nth-child(2) {
  opacity: 0;
}

.sp__header nav .sp__toggleMenu.active span:nth-child(3) {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  top: -10px;
  position: relative;
  left: 0px;
}

.sp__header nav .sp__toggleMenu:hover {
  -webkit-animation: zoom 0.3s ease-in;
          animation: zoom 0.3s ease-in;
}

@-webkit-keyframes zoom {
  0%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@keyframes zoom {
  0%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

.sp__banner_main {
  display: block;
  height: calc(100vh - 100px);
  background-color: #003175;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.sp__banner_main .sp__container {
  height: 100%;
}

.sp__banner_main .sp__row {
  height: 100%;
}

.sp__banner_main .sp__row .sp__left_info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  background-color: #003175;
  position: relative;
}

.sp__banner_main .sp__row .sp__left_info .sp__left_inner {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  padding-right: 80px;
  padding-left: 30px;
}

.sp__banner_main .sp__row .sp__left_info .sp__left_inner img {
  position: absolute;
  top: -55px;
  left: -35px;
  width: 150px;
}

.sp__banner_main .sp__row .sp__left_info .sp__left_inner h2 {
  color: #ffffff;
  margin: 0 0 0px;
  font-size: 48px;
  font-family: 'Circular Std Bold';
}

.sp__banner_main .sp__row .sp__left_info .sp__left_inner p {
  margin: 0px;
  color: #ffffff;
  font-size: 21px;
  max-width: 100%;
}

.sp__banner_main .sp__row .sp__right_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  position: static;
}

.sp__banner_main .sp__row .sp__right_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}

.sp__banner_main.sp__banner_two {
  background-color: #eaeaea;
}

.sp__banner_main.sp__banner_two .sp__row {
  height: 100%;
}

.sp__banner_main.sp__banner_two .sp__row .sp__left_info {
  background-color: #eaeaea;
}

.sp__banner_main.sp__banner_two .sp__row .sp__left_info .sp__left_inner h2 {
  color: #003175;
}

.sp__banner_main.sp__banner_two .sp__row .sp__left_info .sp__left_inner p {
  margin: 0px 0px 20px;
  color: #003175;
  font-size: 16px;
  max-width: 100%;
}

.sp__banner_main.sp__banner_three {
  background-color: #29aae1;
}

.sp__banner_main.sp__banner_three .sp__row {
  height: 100%;
}

.sp__banner_main.sp__banner_three .sp__row .sp__left_info {
  background-color: #29aae1;
}

.sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner {
  padding-right: 30px;
  padding-left: 80px;
}

.sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner h2 {
  color: #ffffff;
}

.sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner p {
  margin: 0px 0px 20px;
  color: #ffffff;
  font-size: 16px;
  max-width: 100%;
}

.sp__banner_main.sp__banner_three .sp__row .sp__right_img img {
  left: 0;
  right: unset;
}

.sp_ourservices {
  background-color: #f1f1f1;
}

.sp_ourservices .sp__row .sp__col_oursrvs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
}

.sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner {
  padding: 4vw 15px 15px;
}

.sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner img {
  width: auto;
  height: 180px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner p {
  color: #989898;
  font-size: 14px;
  line-height: 1.3;
  margin: 15px auto 0;
  max-width: 215px;
}

.sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2 {
  color: #29aae1;
  margin: 0;
  padding: 8vw 15px 15px;
  font-size: 48px;
  text-align: left;
  line-height: 1;
}

.sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2 > span {
  display: block;
}

.sp_globalsolutions {
  background-color: #003175;
}

.sp_globalsolutions .sp__row .sp__col_globsol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  text-align: left;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2 {
  color: #ffffff;
  margin: 0;
  padding: 30px 0px 15px;
  font-size: 48px;
  text-align: left;
  line-height: 1;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title p {
  margin: 0px;
  color: #ffffff;
  font-size: 14px;
  max-width: 480px;
  padding-right: 30px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers {
  padding-top: 60px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers h3 {
  margin: 0px;
  font-size: 28px;
  color: #0be19c;
  line-height: 1;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers h3.sp__theme_green_skyblue {
  color: #29aae1;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers p {
  margin: 10px 0px 20px;
  line-height: 1.2;
  color: #0be19c;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers p.sp__theme_green_skyblue {
  color: #29aae1;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  margin-top: 30px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner {
  padding: 30px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner img,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner svg {
  width: 100%;
  max-height: 520px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner img path,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner svg path {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transform-box: fill-box;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner img path.sp__greenmap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner svg path.sp__greenmap {
  opacity: 0;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner img path.sp__bluemap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner svg path.sp__bluemap {
  opacity: 0;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active img,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active svg {
  width: 100%;
  max-height: 520px;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active img path,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active svg path {
  opacity: 1;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active img path.sp__greenmap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active svg path.sp__greenmap {
  fill: #0be19c !important;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active img path.sp__bluemap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active svg path.sp__bluemap {
  fill: #29aae1 !important;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active.pageload img path.sp__greenmap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active.pageload svg path.sp__greenmap {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active.pageload img path.sp__bluemap,
.sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active.pageload svg path.sp__bluemap {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.sp__contactus {
  background-color: #eaeaea;
  position: relative;
}

.sp__contactus .sp__row {
  display: block;
  padding: 50px 100px;
}

.sp__contactus .sp__row .sp__sp__contactus_inner {
  display: block;
  position: relative;
  z-index: 0;
}

.sp__contactus .sp__row .sp__sp__contactus_inner h2 {
  color: #003175;
  margin: 0;
  padding: 30px 0px 25px;
  font-size: 48px;
  text-align: left;
  line-height: 1;
}

.sp__contactus .sp__row .sp__sp__contactus_inner p {
  margin: 0px 0px 8px;
  font-family: 'Circular Std Medium';
  color: #003175;
  font-size: 16px;
  line-height: 1.2;
}

.sp__contactus .sp__row .sp__sp__contactus_inner p a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.sp__contactus .sp__row .sp__sp__contactus_form,
.sp__contactus .sp__row .wpcf7 {
  margin-top: 40px;
  position: relative;
  z-index: 0;
}

.sp__contactus .sp__row .sp__sp__contactus_form form,
.sp__contactus .sp__row .wpcf7 form {
  max-width: 350px;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group,
.sp__contactus .sp__row .wpcf7 form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group .wpcf7-form-control-wrap,
.sp__contactus .sp__row .wpcf7 form .form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group input,
.sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea,
.sp__contactus .sp__row .wpcf7 form .form-group input,
.sp__contactus .sp__row .wpcf7 form .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #003175;
  background-color: transparent;
  padding: 15px 0 15px;
  font-size: 16px;
  color: #003175;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  font-family: 'Circular Std Book';
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group input::-webkit-input-placeholder,
.sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea::-webkit-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group input::-webkit-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group textarea::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group input:-ms-input-placeholder,
.sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea:-ms-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group input:-ms-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group textarea:-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group input::-ms-input-placeholder,
.sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea::-ms-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group input::-ms-input-placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group textarea::-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .form-group input::placeholder,
.sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea::placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group input::placeholder,
.sp__contactus .sp__row .wpcf7 form .form-group textarea::placeholder {
  opacity: 1;
  color: inherit;
}

.sp__contactus .sp__row .sp__sp__contactus_form form .sp__btn,
.sp__contactus .sp__row .wpcf7 form .sp__btn {
  margin-top: 40px;
}

.sp__contactus .sp__row .sp__contactus_location {
  position: absolute;
  top: 200px;
  left: -40px;
  width: 150px;
  height: auto;
  z-index: 0;
}

.sp__contactus .sp__row .sp__contactus_backtheme {
  position: absolute;
  width: auto;
  right: 30px;
  top: 55%;
  height: 75%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 0;
}

section.error-404.not-found {
  text-align: center;
  padding: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
}

section.error-404.not-found .page-title {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 40px;
  line-height: 1.2;
}

section.error-404.not-found .page_content_404 p {
  font-size: 20px;
  max-width: 540px;
  margin: 1.4vw auto;
  line-height: 1.2;
  color: #848484;
}

section.error-404.not-found .page_content_404 a {
  display: inline-block;
  background-color: #29aae1;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
}

@media only screen and (max-width: 1350px) {
  .sp__header nav .sp__menu ul {
    padding: 0px 10px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner img {
    height: 165px;
  }
}

@media only screen and (max-width: 1150px) {
  .sp__header nav .sp__menu ul li a {
    font-size: 14px;
  }
  .sp__banner_main {
    height: calc(100vh - 100px);
  }
}

@media only screen and (max-width: 1023px) {
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner img {
    top: -65px;
    left: -30px;
    width: 130px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner p {
    font-size: 16px;
  }
  .sp__banner_main {
    height: calc(100vh - 85px);
    padding-top: 85px;
  }
  .sp__header nav .sp__menu ul li a {
    padding: 32px 12px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner img {
    height: 150px;
  }
  .sp__contactus .sp__row .sp__sp__contactus_inner h2 {
    font-size: 36px;
  }
  section.error-404.not-found .page_content_404 p {
    font-size: 18px;
  }
  section.error-404.not-found .page_content_404 a {
    font-size: 20px;
    padding: 6px 15px;
  }
  section.error-404.not-found .page_content_404 p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) {
  [data-aos^=fade][data-aos^=fade] {
    opacity: 1;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transform: none;
            transform: none;
  }
}

@media only screen and (max-width: 992px) {
  .sp__container {
    padding-right: 30px;
    padding-left: 30px;
  }
  .sp__header nav .sp__toggleMenu {
    display: block;
  }
  .sp__header nav .sp__menu {
    position: fixed;
    right: calc(-100% + -10px);
    top: 0;
    background: white;
    z-index: 9;
    height: 100%;
    width: 100%;
    max-width: 100%;
    -webkit-box-shadow: 4px 0px 7px 0px #000000;
            box-shadow: 4px 0px 7px 0px #000000;
    -webkit-transition: all 0.0s ease-in-out;
    transition: all 0.0s ease-in-out;
  }
  .sp__header nav .sp__menu ul {
    padding: 30px 15px 0px;
    display: block;
    height: 100%;
    transition: all 1.2s ease-in-out;
    position: relative;
    top: -50%;
  }
  .sp__header nav .sp__menu ul li {
    display: block;
  }
  .sp__header nav .sp__menu ul li a {
    padding: 15px;
    text-align: center;
    font-size: 0px;
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .sp__header nav .sp__menu ul li a.active {
    pointer-events: none;
  }
  .sp__header nav .sp__menu.active {
    right: 0;
  }
    .sp__header nav .sp__menu.active ul{
      top: 0px;
      transition: all 1.2s ease-in-out;
    }
  .sp__header nav .sp__menu.active ul li a {
    font-size: 20px;
  }
  .sp__mailbox {
    margin-left: auto;
    margin-right: 15px;
  }
  .sp__header {
    padding: 15px 0;
  }
  .sp__toggleMenu {
    display: block;
  }
  .sp__banner_main .sp__row .sp__left_info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sp__banner_main .sp__row .sp__right_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner,
  .sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner {
    padding-right: 0;
    padding-left: 0;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner img {
    top: 0;
    left: 0;
    width: 140px;
    position: relative;
    margin-bottom: 20px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner p {
    max-width: 100%;
  }
  .sp__banner_main {
    height: auto;
    margin-top: 0px;
    padding-top: 75px;
  }
  .sp__banner_main .sp__row .sp__right_img img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 550px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left;
       object-position: left;
  }
  .sp__header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .sp__header nav .sp__mailbox {
    margin-right: 20px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2 {
    font-size: 38px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers h3 {
    font-size: 22px;
  }
  .sp__contactus .sp__row {
    padding: 30px 30px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner h2 {
    margin-top: 15px;
  }
}

@media screen and (min-width: 1100px) and (max-height: 900px) {
  [data-aos^=fade][data-aos^=fade] {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  .sp__banner_main {
    overflow: auto;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner {
    padding: 2vw 15px 15px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2 {
    padding: 4vw 15px 15px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner img {
    height: 140px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active img,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner.active svg {
    height: 30vw;
    max-height: 34vh;
  }
  .sp__contactus .sp__row {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }
  .sp__contactus .sp__row .sp__contactus_backtheme {
    height: calc(100vh - 200px);
  }
  .sp__contactus .sp__row .sp__sp__contactus_inner h2 {
    padding: 0px 0px 25px;
  }
  .sp__contactus .sp__row .sp__sp__contactus_form {
    margin-top: 15px;
  }
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group input,
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea {
    padding: 10px 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .sp__container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner {
    padding: 15px 15px 15px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner img {
    padding: 0;
    height: 120px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_sp_ourservices_title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_sp_ourservices_title h2 {
    padding: 30px 15px 15px;
    font-size: 38px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers {
    padding-top: 20px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2 {
    font-size: 28px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_map .sp__globalsolutions_inner {
    padding: 0px;
  }
  .sp__contactus .sp__row {
    padding: 15px 0 0px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2 {
    font-size: 36px;
  }
  section.error-404.not-found .page-title {
    font-size: 6vw;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 449px) {
  .sp_ourservices .sp__row .sp__col_oursrvs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner {
    padding: 15px 15px 15px;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_sp_ourservices_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_sp_ourservices_title h2 {
    text-align: center;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2 {
    font-size: 36px;
    text-align: center;
  }
}

@media only screen and (min-width: 1100px) {
  [data-aos^=zoom][data-aos^=zoom] {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner h2,
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2,
  .sp__contactus .sp__row .sp__sp__contactus_inner h2 {
    font-size: 3.4vw;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner p {
    font-size: 2vw;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner img {
    width: 10vw;
    max-width: 170px;
  }
  .sp__banner_main.sp__banner_two .sp__row .sp__left_info .sp__left_inner p,
  .sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner p,
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers p,
  .sp__contactus .sp__row .sp__sp__contactus_inner p {
    font-size: 1.2vw;
    line-height: 1.3;
  }
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title p {
    max-width: 100%;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers h3 {
    font-size: 2.8vw;
  }
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group input,
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea {
    font-size: 1.4vw;
  }
  .sp__container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .sp__header nav .sp__menu ul li a {
    font-size: 1.2vw;
  }
  .sp__header nav .sp__logo {
    max-width: 14vw;
  }
  .sp__header nav .sp__mailbox {
    max-width: 2.6vw;
  }
}

@media only screen and (min-width: 1385px) {
  .sp__header nav .sp__menu ul li a {
    font-size: 16px;
  }
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner h2,
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2,
  .sp__contactus .sp__row .sp__sp__contactus_inner h2,
  .sp__banner_main .sp__row .sp__left_info .sp__left_inner h2,
  .sp_ourservices .sp__row .sp__col_oursrvs.sp_ourservices_title h2,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title h2,
  .sp__contactus .sp__row .sp__sp__contactus_inner h2 {
    font-size: 48px;
  }
  .sp__banner_main.sp__banner_two .sp__row .sp__left_info .sp__left_inner p,
  .sp__banner_main.sp__banner_three .sp__row .sp__left_info .sp__left_inner p,
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers p,
  .sp__contactus .sp__row .sp__sp__contactus_inner p,
  .sp_ourservices .sp__row .sp__col_oursrvs .sp__oursrvs_inner p,
  .sp_globalsolutions .sp__row .sp__col_globsol.sp_globalsolutions_title p,
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group input,
  .sp__contactus .sp__row .sp__sp__contactus_form form .form-group textarea {
    font-size: 20px;
  }
  .sp_globalsolutions .sp__row .sp__col_globsol.sp__suppliers h3 {
    font-size: 28px;
  }
}
/*# sourceMappingURL=style.css.map */