@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
.btn-orange {
  background-color: #1C7FC2;
  padding: 20px 50px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  border: 0;
  font-size: 18px;
  letter-spacing: 1.5px;
  position: relative;
}

.btn-orange::after, .btn-orange::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn-orange::after {
  top: -9px;
  left: -9px;
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
}

.btn-orange::before {
  bottom: -9px;
  right: -9px;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
}

.btn-orange:hover {
  background-color: #222429;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-orange:hover::after, .btn-orange:hover::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-color: #1C7FC2;
}

.btn-dark {
  background-color: #222429;
  padding: 20px 50px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  border: 0;
  font-size: 18px;
  letter-spacing: 1.5px;
  position: relative;
}

.btn-dark::after, .btn-dark::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn-dark::after {
  top: -9px;
  left: -9px;
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
}

.btn-dark::before {
  bottom: -9px;
  right: -9px;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
}

.btn-dark:hover {
  background-color: #fff;
  color: #222429;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-dark:hover::after, .btn-dark:hover::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-color: #222429;
}

h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
}

h3 {
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}

p {
  font-family: 'Rubik', sans-serif;
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 55px;
  }
  h3 {
    font-size: 28px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 45px;
  }
  h3 {
    font-size: 28px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  h1 {
    font-size: 33px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 18px;
  }
}

/* GLOBAL CSS */
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

hr {
  border: none;
}

/* NAVBAR */
.navbar {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid #cccccc;
  background-color: #ffffff;
}

.navbar .navbar-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-35px);
          transform: translateX(-35px);
}

.navbar .nav-link {
  color: #000;
  margin: 0 20px;
  padding: 6px 0;
  font-size: 20px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link:hover {
  color: #1C7FC2;
  text-decoration: none;
  border-bottom: 2px solid #1C7FC2;
}

.navbar .navbar-brand img {
  max-width: 200px;
  height: auto;
}

.navbar .top-message {
  text-align: right;
  position: relative;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.navbar .top-message a {
  color: #000;
  font-size: 20px;
}

.navbar .top-message p {
  color: #000;
  margin-bottom: -5px;
  position: relative;
  font-size: 12px;
}

.navbar .top-message p::after {
  position: absolute;
  content: '';
  background-image: url("../images/icons/top-message.svg");
  background-size: cover;
  width: 40px;
  height: 40px;
  left: -160px;
  top: 2px;
}

/* Change navbar styling on scroll */
.navbar.active {
  margin-top: 0;
  background-color: #ffffff;
}

.navbar.active .nav-link {
  color: #000000;
}

.navbar.active .nav-link:hover {
  color: #1C7FC2;
  text-decoration: none;
}

.navbar.active .navbar-brand {
  color: #1C7FC2;
}

.navbar.active .mobile-nav {
  color: black;
}

.navbar.active .mobile-nav img {
  width: 30px;
}

.navbar.active .mobile-nav img.icon-menu-2 {
  display: block;
}

.navbar.active .mobile-nav img.icon-menu-1 {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-left: 10px;
  margin-top: -2px;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
}

/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
  .navbar .navbar-full-menu {
    display: none;
  }
  .navbar .navbar-brand {
    margin-left: 15px;
  }
  .navbar .mobile-nav {
    display: block !important;
    color: #fff !important;
  }
  .navbar .mobile-nav img {
    width: 30px;
  }
  .navbar .mobile-nav img.icon-menu-2 {
    display: none;
  }
  .navbar .responsive-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .responsive-nav .top-message {
    margin-right: 25px;
  }
}

/* MOBILE MENU */
.mobile-nav {
  margin-right: 10px;
}

.overlay {
  height: 100%;
  width: 0;
  max-width: 30%;
  position: fixed;
  z-index: 1111;
  top: 0;
  right: 0;
  background-color: #222429;
  overflow-x: hidden;
}

.overlay .overlay-content {
  position: relative;
  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: 100%;
  height: 100%;
  text-align: center;
}

.overlay .overlay-content a {
  padding: 6px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
}

.overlay .overlay-content a:hover {
  color: #1C7FC2;
}

.overlay .overlay-content ul {
  border-top: 1px solid rgba(255, 195, 26, 0.4);
  border-bottom: 1px solid rgba(255, 195, 26, 0.4);
  border-radius: 0;
  width: 200px;
}

.overlay .overlay-content ul li {
  list-style: none;
}

.overlay .overlay-content ul li a {
  text-transform: capitalize;
}

.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 60px;
  color: #fff;
  z-index: 111111;
}

.overlay .closebtn img {
  max-width: 30px;
}

.mobile-links {
  border: 1px solid #fff;
  width: 50%;
  border-radius: 5px;
  margin: 0 auto;
}

.mobile-links li {
  list-style: none;
}

.mobile-links li a {
  font-size: 12px;
}

.mobile-nav {
  display: none;
}

@media (max-width: 320px) {
  .overlay .overlay-content a {
    padding: 4px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero::after {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.5);
  background-image: url("../images/gray-bg.png");
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero .column {
  margin: 0 auto;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.hero__content h4 {
  color: #fff;
  margin-bottom: 40px;
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 60px;
}

.hero .shape-1 {
  position: absolute;
  content: '';
  background-image: url("../images/top-left.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 800px;
  height: 100%;
}

.hero .shape-2 {
  position: absolute;
  content: '';
  background-image: url("../images/top-left-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
}

.hero .shape-3 {
  position: absolute;
  content: '';
  background-image: url("../images/top-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
}

.hero .shape-4 {
  position: absolute;
  content: '';
  background-image: url("../images/bottom-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  width: 660px;
  height: 100%;
}

/* SATISFIELD */
.satisfield {
  background-color: #222429;
}

.satisfield .line-right {
  border-right: 1px solid rgba(222, 222, 222, 0.5);
}

.satisfield__content {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
}

.satisfield__content hr {
  height: 4px;
  width: 0;
  background-color: #1C7FC2;
  position: absolute;
  content: "";
  top: 0;
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.satisfield__content:hover hr {
  width: 100%;
}

.satisfield__content h2 {
  color: #fff;
}

.satisfield__content h4 {
  color: #fff;
}

/* READY */
.ready {
  padding-top: 80px;
  background-color: #000;
}

.ready .box-padding {
  padding: 15px;
}

.ready__text h2 {
  margin-bottom: 30px;
  color: #fff;
}

.ready__text span {
  color: #1C7FC2;
}

.ready__text p {
  color: #8b8c90;
  padding-left: 80px;
  margin-bottom: 80px;
}

.ready__box {
  background-color: #fff;
  padding: 50px 40px;
  -webkit-box-shadow: 0px 0px 20px 0px #eeeeee;
          box-shadow: 0px 0px 20px 0px #eeeeee;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 400px;
}

.ready__box::after {
  position: absolute;
  content: '';
  width: 120px;
  height: 120px;
  background-color: rgba(238, 238, 238, 0.5);
  bottom: -60px;
  right: -60px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: -90px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.ready__box:hover {
  background-color: #222429;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ready__box:hover h3 {
  color: #fff;
}

.ready__box:hover h3:hover {
  text-decoration: underline;
  cursor: pointer;
}

.ready__box:hover::after {
  margin-right: 0px;
}

.ready__box img {
  max-width: 64px;
  margin-bottom: 30px;
}

.ready__box h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ready__box p {
  margin-bottom: 0;
  color: #8b8c90;
}

/* PAYMENTS */
.payments {
  background-image: url("../images/lines.png");
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 80px;
  margin-top: -70px;
  background-color: #000;
}

.payments .img-padding {
  padding-right: 50px;
}

.payments__img {
  background-image: url("../images/payment.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 450px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.payments__img::after {
  position: absolute;
  content: '';
  bottom: -100px;
  left: -100px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 200px;
  height: 200px;
  background-color: #1C7FC2;
}

.payments__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.payments__img:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.payments__content h2 {
  margin-bottom: 30px;
  color: #fff;
}

.payments__content h4 {
  color: #fff;
}

.payments__content h2 span {
  color: #1C7FC2;
}

.payments__content p {
  color: #8b8c90;
  margin-bottom: 50px;
}

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

.payments__box ul {
  width: 50%;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.payments__box ul li img {
  max-width: 10px;
  position: absolute;
  content: '';
  left: 0;
  top: 4px;
}

/* PORTFOLIO */
.portfolio {
  padding: 80px 0;
  background-color: #000;
}

.portfolio .portfolio-padding {
  padding: 15px;
}

.portfolio__text {
  text-align: center;
}

.portfolio__text h2 {
  margin-bottom: 30px;
  color: #fff;
}

.portfolio__text ul {
  list-style: none;
  margin-top: 40px;
  margin-bottom: 40px;
}

.portfolio__text ul li {
  font-size: 22px;
  display: inline-block;
  margin: 0 15px;
  border-bottom: 4px solid transparent;
  letter-spacing: 1px;
}

.portfolio__text ul li:hover {
  border-bottom: 4px solid #1C7FC2;
}

.portfolio__content {
  border-radius: 6px;
  width: 100%;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.portfolio__content::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.portfolio__content .portfolio-box {
  background-color: #222429;
  border-radius: 6px;
  width: 100%;
  min-height: 100px;
  position: relative;
  z-index: 1;
  padding: 15px;
  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-transform: translatey(130px);
          transform: translatey(130px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.portfolio__content .portfolio-box hr {
  margin: 0;
  height: 4px;
  width: 80px;
  background-color: #1C7FC2;
  margin-bottom: 15px;
}

.portfolio__content .portfolio-box h5 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.portfolio__content:hover::after {
  background: none;
}

.portfolio__content:hover .portfolio-box {
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
}

/* WHY */
.why {
  background-color: #000000;
  padding: 80px 0;
}

.why .why-padding {
  padding-right: 50px;
}

.why__img {
  background-image: url("../images/why-us.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.why__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.why__img::before {
  position: absolute;
  content: '';
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  width: 150px;
  height: 150px;
  background-color: #1C7FC2;
  top: -50px;
  left: -50px;
  z-index: 1;
}

.why__img:hover::after {
  background: none;
}

.why__title h2 {
  margin-bottom: 40px;
  color: #fff;
}

.why h4 {
  color: #fff;
}

.why__title h2 span {
  color: #1C7FC2;
}

.why__text {
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
}

.why__text h6 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  content: '';
  left: 0;
  top: 0;
}

.why__text h6 img {
  max-width: 20px;
}

.why__text:hover h6 {
  background-color: #ffffff;
}

.why__text p {
  color: #ffffff;
}

/* SAYING */
.saying {
  background-image: url("../images/lines.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.saying__title h2 {
  margin-bottom: 60px;
}

.saying__title h2 span {
  color: #1C7FC2;
}

.saying .saying-testimonial {
  margin: 0 20px 40px;
}

.saying .saying-testimonial .saying-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  border: 1px solid #f0f0f0;
  position: relative;
}

.saying .saying-testimonial .saying-content::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 22px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.saying .saying-testimonial .saying-content .saying-icon {
  width: 50px;
  height: 45px;
  background: #1C7FC2;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.saying .saying-testimonial .saying-content .saying-icon::before {
  content: "";
  border-bottom: 16px solid #1C7FC2;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}

.saying .saying-testimonial .saying-content .saying-icon img {
  max-width: 25px;
}

.saying .saying-testimonial .saying-content .saying-description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}

.saying .saying-testimonial .saying-content .saying-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #525252;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.saying .saying-testimonial .saying-content .saying-post {
  display: block;
  font-size: 14px;
  color: #1C7FC2;
}

.saying #saying-slider.owl-theme .owl-controls {
  position: absolute;
  bottom: 1vh;
  right: 25px;
}

.saying #saying-slider.owl-theme .owl-dots .owl-dot.active span, .saying .owl-theme .owl-dots .owl-dot:hover span {
  background: #1C7FC2;
  width: 20px;
  height: 10px;
  border-radius: 6px;
}

.saying #saying-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 10px;
  border-radius: 6px;
}

/* SOLUTIONS */
.solutions {
  background-image: url("../images/business.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0;
  border-bottom: 1px solid #fff;
}

.solutions::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.solutions__content {
  position: relative;
  z-index: 1;
}

.solutions__content h2 {
  color: #fff;
  margin-bottom: 60px;
}

.solutions__content h2 span {
  color: #1C7FC2;
}

.solutions__content .solutions-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.solutions__content .solutions-box ul {
  list-style: none;
  width: 33%;
}

.solutions__content .solutions-box ul li img {
  max-width: 60px;
  margin-bottom: 20px;
}

.solutions__content .solutions-box ul li h4 {
  color: #fff;
}

.solutions__content .solutions-box ul:hover li h4 {
  color: #1C7FC2;
}

/* STRATEGY */
.strategy {
  padding: 80px 0;
  background-color: #f4f5f8;
}

.strategy__img {
  background-image: url("../images/contact-us.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 150px;
}

.strategy__img::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.strategy__img:hover::after {
  background: none;
}

.strategy__text {
  position: relative;
}

.strategy__text h3 {
  margin-top: 8px;
}

.strategy__text p {
  color: #8b8c90;
}

.strategy__text h2 {
  margin-bottom: 0;
}

.strategy__text h5 {
  color: #8b8c90;
}

.strategy__text h4 {
  position: absolute;
  content: '';
  width: 10px;
  height: 85px;
  border-radius: 6px;
  background-color: #1C7FC2;
  right: 0;
  top: 0;
  bottom: 0;
}

.strategy__line hr {
  margin: 60px 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.strategy__form {
  background-color: #fff;
  border-radius: 6px;
  padding: 50px 30px;
  margin-top: -150px;
}

.strategy__form h3 {
  margin-bottom: 30px;
}

.strategy__form h3 span {
  color: #1C7FC2;
}

.strategy__form form .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #f4f5f8;
  margin-bottom: 10px;
  padding: 20px 15px;
  color: #8b8c90;
}

.strategy__form form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #f4f5f8;
}

.strategy__form form select {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #f4f5f8;
  margin-bottom: 10px;
  padding: 18px 15px;
}

.strategy__form form select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #f4f5f8;
  color: #8b8c90;
}

.strategy__form form select option:active {
  color: #8b8c90;
}

.strategy__form button {
  margin-top: 30px;
}

/* FOOTER */
.footer {
  padding-top: 80px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::after {
  position: absolute;
  content: '';
  background-image: url("../images/earth.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}

.footer__box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer__box a img {
  max-width: 200px;
  margin-bottom: 30px;
}

.footer__box p {
  color: #000000;
  font-size: 14px;
}

.footer__box h4 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 32px;
}

.footer__box ul {
  list-style: none;
}

.footer__box ul li {
  margin-bottom: 7px;
}

.footer__box ul li img {
  max-width: 24px;
  margin-right: 8px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.footer__box ul li a {
  font-size: 28px;
  color: #000000;
}

.footer__box ul li a:hover {
  color: #1C7FC2;
}

.footer__box ul.follow-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__box ul.follow-links li.follow {
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.footer__box ul.follow-links li.follow a {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__box ul.follow-links li.follow a img {
  margin-right: 0;
}

.footer__copy {
  text-align: center;
}

.footer__copy hr {
  height: 1px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.footer__copy p {
  color: #8b8c90;
  font-size: 14px;
}

/* RESPONSIVE */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    height: 70vh;
  }
  .hero .shape {
    display: none;
  }
  .ready__text p {
    padding-left: 0;
    margin-bottom: 40px;
  }
  .ready__box {
    min-height: 340px;
  }
  .payments__img {
    margin-bottom: 40px;
  }
  .payments__box ul li p {
    margin-bottom: 0;
  }
  .why__img {
    margin-bottom: 40px;
  }
  .strategy__form {
    margin-top: 50px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .navbar .navbar-brand img {
    max-width: 160px;
  }
  .hero {
    height: 70vh;
  }
  .hero .shape {
    display: none;
  }
  .satisfield .line-right {
    border-left: 0;
    border-right: 0;
  }
  .satisfield__content {
    min-height: 200px;
  }
  .ready__text p {
    padding-left: 0;
    margin-bottom: 40px;
  }
  .ready__box {
    min-height: 300px;
  }
  .payments__img {
    margin-bottom: 40px;
    height: 400px;
  }
  .payments__box ul li p {
    margin-bottom: 0;
  }
  .why__img {
    margin-bottom: 40px;
    height: 400px;
  }
  .strategy__img {
    margin-bottom: 30px;
  }
  .strategy__form {
    margin-top: 50px;
  }
  .strategy__line hr {
    margin: 20px 0 30px 0;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .navbar .top-message {
    display: none;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  .navbar .navbar-brand img {
    max-width: 130px;
  }
  .overlay {
    max-width: 70%;
  }
  .hero {
    height: 70vh;
  }
  .hero .shape {
    display: none;
  }
  .satisfield .line-right {
    border-left: 0;
    border-right: 0;
  }
  .satisfield__content {
    min-height: 130px;
  }
  .ready {
    padding: 40px 0;
  }
  .ready__text p {
    padding-left: 0;
    margin-bottom: 40px;
  }
  .ready__box {
    min-height: 300px;
  }
  .payments {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .payments .img-padding {
    padding-right: 15px;
  }
  .payments__img {
    margin-bottom: 40px;
    height: 300px;
  }
  .payments__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .payments__box ul {
    width: 100%;
  }
  .payments__box ul li p {
    margin-bottom: 0;
  }
  .portfolio {
    padding: 40px 0;
  }
  .why {
    padding: 40px 0;
  }
  .why .why-padding {
    padding-right: 15px;
  }
  .why__img {
    margin-bottom: 40px;
    height: 300px;
  }
  .solutions {
    padding: 40px 0;
  }
  .solutions__content .solutions-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0px;
  }
  .solutions__content .solutions-box ul {
    width: 50%;
  }
  .strategy {
    padding: 40px 0;
  }
  .strategy__img {
    margin-bottom: 30px;
  }
  .strategy__form {
    margin-top: 50px;
  }
  .strategy__line hr {
    margin: 20px 0 30px 0;
  }
  .expertise {
    padding: 40px 0;
  }
  .optimize__performance {
    min-height: 360px;
  }
  .optimize__benefit {
    min-height: 360px;
  }
  .footer {
    padding-top: 40px;
  }
}

@media (max-width: 375px) {
  .navbar .top-message {
    display: none;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

@media (max-width: 320px) {
  .navbar {
    padding: 10px 0;
  }
  .navbar .top-message {
    display: none;
  }
  .navbar .navbar-brand img {
    max-width: 130px;
  }
  .overlay {
    max-width: 70%;
  }
  .hero {
    height: 70vh;
  }
  .hero .shape {
    display: none;
  }
  .satisfield .line-right {
    border-left: 0;
    border-right: 0;
  }
  .satisfield__content {
    min-height: 130px;
  }
  .ready {
    padding: 40px 0;
  }
  .ready__text p {
    padding-left: 0;
    margin-bottom: 40px;
  }
  .ready__box {
    min-height: 300px;
  }
  .payments {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .payments .img-padding {
    padding-right: 15px;
  }
  .payments__img {
    margin-bottom: 40px;
    height: 300px;
  }
  .payments__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .payments__box ul {
    width: 100%;
  }
  .payments__box ul li p {
    margin-bottom: 0;
  }
  .portfolio {
    padding: 40px 0;
  }
  .portfolio__content {
    min-height: 300px;
  }
  .why {
    padding: 40px 0;
  }
  .why .why-padding {
    padding-right: 15px;
  }
  .why__img {
    margin-bottom: 40px;
    height: 300px;
  }
  .solutions {
    padding: 40px 0;
  }
  .solutions__content .solutions-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0px;
  }
  .solutions__content .solutions-box ul {
    width: 50%;
  }
  .strategy {
    padding: 40px 0;
  }
  .strategy__img {
    margin-bottom: 30px;
  }
  .strategy__form {
    margin-top: 50px;
  }
  .strategy__line hr {
    margin: 20px 0 30px 0;
  }
  .expertise {
    padding: 40px 0;
  }
  .optimize__performance {
    min-height: 360px;
  }
  .optimize__benefit {
    min-height: 360px;
  }
  .saying {
    padding: 80px 0 40px 0;
  }
  .footer {
    padding-top: 40px;
  }
}
/*# sourceMappingURL=style.css.map */