/*--- Colors ---*/
/*--- Layout ---*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900&display=swap");
body, * {
  color: #515151;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-bottom: 1px solid #dc3545 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#typed::after {
  content: '|';
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

.typed-cursor {
  opacity: 0;
  display: none;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

svg path {
  fill: #4786C6;
}

/*--- Loader ---*/
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  overflow: hidden;
  pointer-events: none;
}

.loading p {
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  text-align: center;
  font-size: 18px;
  color: #4786C6;
  font-weight: 500;
  -webkit-animation-name: topFadeIn;
          animation-name: topFadeIn;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}

@-webkit-keyframes topFadeIn {
  0% {
    opacity: 0;
    bottom: 35%;
  }
  100% {
    opacity: 1;
  }
}

@keyframes topFadeIn {
  0% {
    opacity: 0;
    bottom: 35%;
  }
  100% {
    opacity: 1;
  }
}

#anim {
  width: 320px;
  height: auto;
}

#anim svg {
  height: auto;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader > i {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: loader 2s infinite linear;
          animation: loader 2s infinite linear;
}

.loader > i:nth-of-type(1), .loader > i:nth-of-type(5), .loader > i:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loader > i:nth-of-type(4), .loader > i:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader > i:nth-of-type(2), .loader > i:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loader > i:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/*--- Navigation ---*/
#nav:checked + .nav-btn {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
  background: #000;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(180deg);
          transform: translateY(6px) rotate(180deg);
  width: 25px;
}

#nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
          transform: translateY(-6px) rotate(90deg);
  width: 25px;
  margin-top: 2px;
}

#nav:checked ~ nav {
  z-index: 9990;
  opacity: 1;
  visibility: visible;
}

#nav:checked ~ nav ul li a {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
}

[id^=drop]:checked + ul {
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  padding: 0 10px;
  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;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(231, 56, 39, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(231, 56, 39, 0) 100%);
}

header .logo {
  width: 180px;
  padding: 20px;
  z-index: 9999;
}

header .logo img {
  -webkit-filter: brightness(0%) invert(1);
          filter: brightness(0%) invert(1);
}

header .hidden {
  display: none;
}

header .menu.open > .logo img {
  -webkit-filter: none;
          filter: none;
}

header .block {
  display: block;
}

header nav ul li {
  display: inline-block;
  padding: 0 5px;
}

header nav ul li:hover > ul {
  display: block;
}

header nav ul li ul {
  display: none;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(20, 66, 104, 0.2);
          box-shadow: 0 0 30px rgba(20, 66, 104, 0.2);
  padding: 15px 15px;
  min-width: 150px;
}

header nav ul li ul li {
  display: block;
  margin: 0 0 10px;
  text-align: left;
  width: 100%;
}

header nav ul li ul li.active {
  padding-bottom: 6px;
  border-bottom: 2px solid #515151;
}

header nav ul li ul li:nth-child(2) {
  margin: 0 0 0px;
}

header nav ul li ul li a {
  color: #000;
}

header nav ul li ul li a::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #4786C6;
  border-width: 0 0 2px 2px;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav ul li ul li a:hover:before {
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

header nav ul li ul li a:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #4786C6;
  border-width: 2px 2px 0 0;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav ul li ul li a:hover:after {
  top: -8px;
  right: -8px;
  opacity: 1;
}

header nav ul li ul li a:hover {
  background: #4786C6;
  color: #fff;
}

header nav ul li a {
  color: #fff;
  font-size: 15px;
  position: relative;
  padding: 5px 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header nav ul li a label i {
  color: white;
  font-size: 15px;
  vertical-align: text-top;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  border-width: 0 0 2px 2px;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav ul li a:hover:before {
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

header nav ul li a:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  border-width: 2px 2px 0 0;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav ul li a:hover:after {
  top: -8px;
  right: -8px;
  opacity: 1;
}

header nav ul li a:hover {
  background: #fff;
  color: #515151;
}

header nav ul li a:hover label i {
  color: #515151;
}

header nav ul li a label {
  color: inherit;
}

header nav ul li.active {
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}

header.scrolled {
  height: 70px;
  background-color: #fff !important;
  background-image: none !important;
}

header.scrolled .logo img {
  -webkit-filter: none;
          filter: none;
}

header.scrolled nav ul li.active {
  padding-bottom: 6px;
  border-bottom: 2px solid #515151;
}

header.scrolled nav ul li a {
  color: #515151;
}

header.scrolled nav ul li a label i {
  color: #515151;
}

header.scrolled nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #4786C6;
  border-width: 0 0 2px 2px;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header.scrolled nav ul li a:hover:before {
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

header.scrolled nav ul li a:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: solid 2px #4786C6;
  border-width: 2px 2px 0 0;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header.scrolled nav ul li a:hover:after {
  top: -8px;
  right: -8px;
  opacity: 1;
}

header.scrolled nav ul li a:hover {
  background: #4786C6;
  color: #fff;
}

header.scrolled nav ul li a:hover label i {
  color: #fff;
}

footer {
  height: 15vh;
  background-color: #4786C6;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .logo {
  width: 150px;
  padding: 20px;
}

footer .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

footer .quicklinks {
  margin: 0 auto;
  text-align: center;
}

footer .quicklinks ul li {
  display: inline-block;
  padding: 0 20px;
}

footer .quicklinks ul li a {
  color: #fff;
}

footer .copy p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin: 0;
}

footer .footer__social ul li {
  display: inline-block;
  padding: 0 20px;
}

footer .footer__social ul li a i {
  color: #fff;
}

.bg-primary {
  background-color: #4786C6 !important;
}

.mode .modal-backdrop {
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
}

#lead .modal-backdrop {
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
}

#lead .modal-header {
  background-color: #4786C6;
  text-align: center;
}

#lead .modal-header h5 {
  text-align: center;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

#lead .modal-header .close {
  margin: 0;
  padding: 0;
  position: relative;
  top: -35px;
  right: -35px;
  width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border-radius: 50%;
  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;
  opacity: 1;
}

#lead .modal-header .close span {
  color: #515151 !important;
}

#lead .modal-body {
  border-radius: 0 0 5px 5px;
}

#lead .modal-body form {
  margin: 0 auto;
  text-align: center;
}

#lead .modal-body form input {
  border: none;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
  margin: 10px 0;
  font-size: 14px;
}

#lead .modal-body form .input-group-text {
  background: none;
  border: none;
}

#lead .modal-body form .m-success {
  padding: 30px 0;
}

#lead .modal-body form .m-success h1 i {
  color: #4786C6;
}

#lead .modal-body form .m-success h3 {
  margin: 10px auto;
}

#lead .modal-body form span i {
  color: #515151;
}

#lead .modal-body form p {
  font-size: 15px;
}

#lead .modal-body form textarea {
  border: none;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
  margin: 10px 0;
  font-size: 14px;
}

#lead .modal-body form button {
  padding: 10px 25px;
  color: #fff;
  background-color: #4786C6;
  border-radius: 5px;
  font-size: 14px;
  position: absolute;
  bottom: -60px;
  left: 145px;
}

#lead .modal-body form button i {
  color: #fff;
}

/*--- Homepage ---*/
.intro {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url(../img/alex-kotliarskyi-361081-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.intro .intro__img {
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.intro .intro__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro .intro__heading {
  position: relative;
  z-index: 2;
  height: 100%;
  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;
  width: 35%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  text-align: center;
}

.intro .intro__heading h1 {
  color: #fff;
  font-weight: 300;
}

.intro .intro__heading h1#typed {
  font-weight: 700;
}

.intro .intro__heading h4 {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
  padding: 8px 0 12px;
}

.intro .intro__heading a {
  background-color: #fff;
  color: #4786C6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: 0 5px 20px transparent;
          box-shadow: 0 5px 20px transparent;
  margin: 0 auto;
}

.intro .intro__heading a:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 10px 40px rgba(5, 94, 228, 0.5);
          box-shadow: 0 10px 40px rgba(5, 94, 228, 0.5);
}

.offerings {
  width: 100%;
  height: 70vh;
  margin: 80px auto 0;
}

.offerings .offering__right {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: (1fr)[12];
      grid-template-rows: repeat(12, 1fr);
}

.offerings .offering__right .offering__img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1/ span 6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 9;
  grid-row: 1 /span 9;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.offerings .offering__right .offering__img .overlay {
  opacity: 0.285;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  background-image: -ms-linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
}

.offerings .offering__right .overlay__slide {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.offerings .offering__right .offering__info {
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-column: 6/ span 7;
  -ms-grid-row: 3;
  -ms-grid-row-span: 9;
  grid-row: 3 /span 9;
  z-index: 0;
  background-color: #f5f5f5;
  padding: 8em 10em;
}

.offerings .offering__right .offering__link {
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-column: 7/ span 2;
  -ms-grid-row: 11;
  -ms-grid-row-span: 2;
  grid-row: 11 /span 2;
  z-index: 1;
  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;
}

.offerings .offering__right .offering__link a {
  padding: 10px 50px;
  background-color: #4786C6;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.offerings .offering__left {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: (1fr)[12];
      grid-template-rows: repeat(12, 1fr);
}

.offerings .offering__left .offering__img {
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-column: 6/ span 7;
  -ms-grid-row: 3;
  -ms-grid-row-span: 12;
  grid-row: 3/span 12;
  z-index: 0;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.offerings .offering__left .offering__img .overlay {
  opacity: 0.385;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  background-image: -ms-linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
}

.offerings .offering__left .overlay__slide {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.offerings .offering__left .offering__info {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1/ span 7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 9;
  grid-row: 2 /span 9;
  z-index: 1;
  background-color: #f5f5f5;
  padding: 8em 10em;
}

.offerings .offering__left .offering__link {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/ span 2;
  -ms-grid-row: 10;
  -ms-grid-row-span: 2;
  grid-row: 10/span 2;
  z-index: 1;
  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;
}

.offerings .offering__left .offering__link a {
  padding: 10px 50px;
  background-color: #4786C6;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.expertise {
  width: 100%;
  margin: 80px auto 0;
  height: 60vh;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  background-image: -ms-linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.expertise .expertise__left {
  width: 30%;
}

.expertise .expertise__left h3 {
  color: #fff;
}

.expertise .expertise__left p {
  color: #fff;
  opacity: 0.8;
}

.expertise .arrow_img {
  width: 250px;
  position: absolute;
  left: 45%;
  bottom: 15%;
  -webkit-transform: translate(-45%, -15%);
          transform: translate(-45%, -15%);
}

.expertise .expertise__right .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.expertise .expertise__right .box .icon {
  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;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.74);
  -webkit-box-shadow: 0 0 30px rgba(20, 66, 104, 0.2);
          box-shadow: 0 0 30px rgba(20, 66, 104, 0.2);
}

.expertise .expertise__right .box .icon svg {
  width: 60%;
}

.expertise .expertise__right .box .info {
  padding-left: 20px;
}

.expertise .expertise__right .box .info h3, .expertise .expertise__right .box .info p {
  margin: 0;
  color: #fff;
}

.expertise .expertise__right .box .info h3 {
  font-weight: 900;
  padding: 5px 0;
  opacity: 0.15;
}

.cta {
  width: 75%;
  margin: 80px auto;
}

.cta .cta__box i {
  font-size: 32px;
  color: #4786C6;
}

.cta .cta__box h6 {
  font-weight: 600;
  padding: 8px 0;
  margin: 0;
}

.cta .cta__box p {
  font-size: 15px;
}

.cta .cta__box a {
  color: #515151;
}

/*-- Legacy Architecture Optimization --*/
.lao {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lao::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.lao .lao__heading {
  width: 40%;
  padding: 80px;
}

.lao .lao__heading h1 {
  color: #fff;
  font-weight: 600;
}

.lao .lao__heading ul {
  padding-bottom: 30px;
}

.lao .lao__heading ul li {
  color: #fff;
  list-style: none;
  padding: 6px 0;
  opacity: 0.8;
  font-weight: 500;
  font-size: 20px;
}

.lao .lao__heading a {
  padding: 10px 25px;
  background-color: #fff;
  color: rgba(0, 98, 110, 0.7);
  font-size: 15px;
  border-radius: 5px;
}

.lao .lao__img {
  width: 100%;
  max-width: 750px;
  position: relative;
}

.lao .lao__img img {
  -webkit-animation: 5s move infinite ease-in-out;
          animation: 5s move infinite ease-in-out;
}

.lao .m-move {
  position: absolute;
  width: 100%;
  max-width: 750px;
}

.lao #m-mv {
  bottom: 2%;
  right: 5%;
}

.solutions {
  width: 100%;
  margin: 80px auto;
}

.solutions .col-sm-12 {
  margin-top: 80px;
}

.solutions .solutions__head h3 {
  font-weight: 400;
  line-height: 32px;
}

.solutions .solutions__head h3 b {
  font-weight: 700;
}

.solutions .solutions__head p {
  width: 55%;
  margin: 20px auto 0;
  line-height: 32px;
  letter-spacing: 0.5px;
}

.solutions .card {
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
          box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
  border: none;
}

.solutions .card .card-img-top {
  width: 70px;
  height: 70px;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 20px;
  margin-top: 25px;
}

.solutions .card .card-img {
  width: 100%;
  margin: 30px 25px;
}

.solutions .card .card-img svg {
  width: 70px;
  height: 70px;
  position: relative;
}

.solutions .card .card-body h5 {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.solutions .card .card-body p {
  font-size: 15px;
  line-height: 30px;
  padding-bottom: 30px;
}

.solutions .card ul li {
  position: relative;
  font-size: 15px;
}

.solutions .card ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #4786C6;
  position: absolute;
  left: -5px;
}

.solutions a {
  padding: 10px 25px;
  background-color: #4786C6;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
}

.solutions__slider {
  position: relative;
}

.solutions__slider .owl-carousel.owl-drag .owl-item {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.solutions__slider .item {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(164, 168, 250, 0.25);
          box-shadow: 0px 0px 15px rgba(164, 168, 250, 0.25);
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.solutions__slider .item img {
  width: 60%;
  margin: 0 auto;
}

.solutions__slider .item h3 {
  font-size: 22px;
  padding: 6px 0;
}

.solutions__slider .item p {
  font-size: 14.5px;
  margin: 0;
}

.solutions__slider .owl-carousel .owl-nav {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  width: 100%;
}

.solutions__slider .owl-carousel .owl-nav button.owl-prev {
  float: left;
  padding: 15px !important;
  margin-left: -40px;
}

.solutions__slider .owl-carousel .owl-nav button.owl-prev span {
  font-size: 25px;
}

.solutions__slider .owl-carousel .owl-nav button.owl-next {
  float: right;
  padding: 15px !important;
  margin-right: -40px;
}

.solutions__slider .owl-carousel .owl-nav button.owl-next span {
  font-size: 25px;
}

.expert {
  padding: 100px 0;
  position: relative;
  background-color: #fafafa;
}

.expert .expert__head h3 {
  font-weight: 400;
  line-height: 32px;
}

.expert .offer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.expert .offer a.active .card {
  background-color: #4786C6;
}

.expert .offer a.active .card .card-body h5 {
  color: #fff;
}

.expert .offer a.active .card .card-body p {
  color: #fff;
}

.expert .offer a .card {
  margin: 20px auto;
  -webkit-box-shadow: 0px 0px 15px rgba(208, 208, 208, 0.25);
          box-shadow: 0px 0px 15px rgba(208, 208, 208, 0.25);
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.expert .offer a .card:hover {
  background-color: #4786C6;
}

.expert .offer a .card:hover .card-body h5 {
  color: #fff;
}

.expert .offer a .card:hover .card-body p {
  color: #fff;
}

.expert .offer a .card .card-body h5 {
  font-weight: 500;
  line-height: 28px;
}

.expert .offer a .card .card-body p {
  font-size: 15px;
  line-height: 30px;
}

.expert .expert__box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.expert .expert__sldier {
  position: relative;
  overflow: hidden;
}

.expert .expert__sldier .overlay {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.expert .expert__info .item h1 {
  font-weight: 900;
  color: #515151;
  opacity: 0.1;
}

.expert .expert__info .item p {
  width: 80%;
  margin: 0 auto;
}

.expert .owl-nav {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  width: 100%;
}

.expert .owl-nav button.owl-prev {
  float: left;
  padding: 15px !important;
}

.expert .owl-nav button.owl-prev span {
  font-size: 25px;
}

.expert .owl-nav button.owl-next {
  float: right;
  padding: 15px !important;
}

.expert .owl-nav button.owl-next span {
  font-size: 25px;
}

/*-- App --*/
.app {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.app::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.app .app__heading {
  width: 40%;
  padding: 80px;
}

.app .app__heading h1 {
  color: #fff;
  font-weight: 600;
}

.app .app__heading ul {
  padding-bottom: 30px;
}

.app .app__heading ul li {
  color: #fff;
  list-style: none;
  padding: 6px 0;
  opacity: 0.8;
  font-weight: 500;
  font-size: 20px;
}

.app .app__heading a {
  padding: 10px 25px;
  background-color: #fff;
  color: rgba(0, 98, 110, 0.7);
  font-size: 15px;
  border-radius: 5px;
}

.app .app__img {
  width: 100%;
  max-width: 750px;
}

.app .app__img img {
  -webkit-animation: 5s move infinite ease-in-out;
          animation: 5s move infinite ease-in-out;
}

.app .m-move {
  position: absolute;
  width: 100%;
  max-width: 700px;
}

.app #m-mv {
  bottom: 2%;
  right: 5%;
}

.explore {
  width: 100%;
  margin: 125px auto;
}

.explore .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.explore .explore__img {
  position: relative;
  overflow: hidden;
}

.explore .explore__info {
  padding: 10px;
  font-weight: 600;
}

.explore .explore__info h3, .explore .explore__info b {
  font-weight: 600;
}

.explore .explore__info h4 {
  font-weight: 500;
  padding: 5px 0;
}

.explore .explore__info p {
  font-weight: 300;
  font-size: 18px;
  line-height: 35px;
  padding-bottom: 15px;
}

.explore .explore__info a {
  padding: 10px 25px;
  background-color: #4786C6;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
}

.app__offer {
  margin: 30px auto;
  padding: 80px 0;
  margin: 0 auto;
  background-color: #f5f5f5;
}

.app__offer .col-sm-12 {
  margin-top: 50px;
}

.app__offer .card {
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
          box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
  border: none;
}

.app__offer .card .card-img-top {
  width: 70px;
  height: 70px;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 20px;
  margin-top: 25px;
}

.app__offer .card .card-img {
  width: 100%;
  margin: 30px 25px;
}

.app__offer .card .card-img svg {
  width: 70px;
  height: 70px;
  position: relative;
}

.app__offer .card .card-body h5 {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.app__offer .card .card-body p {
  font-size: 15px;
  line-height: 30px;
  padding-bottom: 30px;
}

.app__offer .card ul li {
  position: relative;
  font-size: 15px;
}

.app__offer .card ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #4786C6;
  position: absolute;
  left: -5px;
}

/*-- About --*/
.about {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.about #particles-js {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.about::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background: url("../img/about-bg-transparent.png") no-repeat scroll center 0/cover;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.about .about__heading {
  width: 44%;
  padding: 140px;
}

.about .about__heading h1 {
  color: #fff;
  font-weight: 300;
  line-height: 55px;
}

.about .about__heading h1 b {
  color: #fff;
  font-weight: 600;
}

.about .about__heading h6 {
  color: #fff;
  padding-top: 10px;
  font-size: 20px;
}

.about-content {
  padding: 100px 0;
  margin: 50px auto 0;
}

.about-content h2 {
  color: #515151;
  width: 80%;
  font-weight: 500;
  line-height: 50px;
}

.about-content h4 {
  color: #4786C6;
  font-weight: 600;
  padding-top: 10px;
}

.commited {
  width: 100%;
  padding: 0 auto 100px;
}

.commited .commited__box {
  padding: 50px 25px;
}

.commited .commited__box h3 {
  font-size: 25px;
  font-weight: 600;
}

.commited .card {
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
          box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
  border: none;
}

.commited .card .card-img-top {
  width: 70px;
  height: 70px;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 20px;
  margin-top: 25px;
}

.commited .card .card-img {
  width: 100%;
  margin: 30px 25px;
}

.commited .card .card-img svg {
  width: 70px;
  height: 70px;
  position: relative;
}

.commited .card .card-body h5 {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.commited .card .card-body p {
  font-size: 15px;
  line-height: 30px;
  padding-bottom: 30px;
}

.commited .card ul li {
  position: relative;
  font-size: 15px;
}

.commited .card ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #4786C6;
  position: absolute;
  left: -5px;
}

.commited .card .card-body p {
  padding-bottom: 0;
}

.story {
  width: 100%;
  padding: 150px 0;
}

.story .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.story .story__img {
  position: relative;
  overflow: hidden;
}

.story .story__img .overlay {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.story .story__info {
  width: 75%;
  margin: 0 auto;
}

.story .story__info h3 {
  font-weight: 300;
  padding-bottom: 12.5px;
}

.story .story__info h3 b {
  font-weight: 700;
}

.story .story__info p {
  width: 85%;
  font-size: 16px;
  line-height: 30px;
}

.team {
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 80%;
  margin: 80px auto 30px;
}

.team .head {
  margin: 0px 0 30px;
}

.team .head b {
  font-weight: 700;
}

.team .member {
  width: 100%;
  margin: 50px auto;
}

.team .member .member__img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.team .member .member__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team .member .member__img .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.team .member .member__img .text {
  color: white;
  width: 80%;
  font-size: 16.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 400;
}

.team .member .member__img:hover .overlay {
  height: 100%;
}

.team .member h3 {
  margin: 15px 0;
  font-size: 22px;
}

.team .member p {
  font-size: 14.5px;
  font-weight: 700;
}

.begin {
  width: 100%;
  height: 40vh;
  background-color: #f5f5f5;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 0;
}

.begin h3 {
  font-size: 35px;
  font-weight: 700;
  padding: 18px 0;
}

.begin a {
  padding: 10px 25px;
  background-color: #4786C6;
  color: #fff;
}

/*-- Contact --*/
.contact__map {
  width: 100%;
  height: 100vh;
  position: relative;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.contact__map .overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.contact {
  position: relative;
  width: 80%;
  margin: 0 auto;
  z-index: 1;
  margin-top: -100px;
  -webkit-box-shadow: 0 0 20px 0 0 20px rgba(211, 211, 211, 0.41);
          box-shadow: 0 0 20px 0 0 20px rgba(211, 211, 211, 0.41);
}

.contact .contact__form {
  padding: 60px;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
}

.contact .contact__form form label {
  font-size: 13px;
}

.contact .contact__form form input {
  border: none;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
}

.contact .contact__form form input::-webkit-input-placeholder {
  font-size: 14px;
}

.contact .contact__form form input:-ms-input-placeholder {
  font-size: 14px;
}

.contact .contact__form form input::-ms-input-placeholder {
  font-size: 14px;
}

.contact .contact__form form input::placeholder {
  font-size: 14px;
}

.contact .contact__form form .m-success {
  padding: 30px 0;
}

.contact .contact__form form .m-success h1 i {
  color: #4786C6;
}

.contact .contact__form form .m-success h3 {
  margin: 10px auto;
}

.contact .contact__form form textarea {
  border: none;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
}

.contact .contact__form form .btn-merkle {
  background-color: #4786C6;
  color: #fff;
  font-size: 14px;
}

.contact .contact__form form .btn-merkle i {
  color: #fff;
}

.contact .contact__info {
  padding: 60px;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
  border-radius: 0px 10px 10px 0px;
  height: 100%;
}

.contact .contact__info .head h3 {
  color: #fff;
}

.contact .contact__info .contact__infos {
  padding-top: 18px;
}

.contact .contact__info .contact__infos ul li {
  list-style: none;
  color: #fff;
  font-size: 14.5px;
  padding: 15px 0;
  position: relative;
}

.contact .contact__info .contact__infos ul li a {
  color: #fff;
}

.contact .contact__info .contact__infos ul li a::before {
  display: none;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.contact .contact__info .contact__infos ul li a.address::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007";
  position: absolute;
  left: -30px;
}

.contact .contact__info .contact__infos ul li a.call::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10b";
  position: absolute;
  left: -28px;
}

.contact .contact__info .contact__infos ul li a.mail::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  position: absolute;
  left: -30px;
}

.contact .contact__info .contact__infos ol {
  margin: 30px 0;
  padding: 0;
}

.contact .contact__info .contact__infos ol li {
  display: inline-block;
  padding: 10px 20px;
}

.contact .contact__info .contact__infos ol li i {
  color: #fff;
  font-size: 18px;
}

.contact .contact__info .contact__infos ol li:nth-child(1) {
  padding-left: 0;
}

.contact .col-md-4, .contact .col-md-8 {
  margin: 0 auto;
  padding: 0;
}

/*-- Career --*/
.career {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.career::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.career .career__heading {
  width: 40%;
  padding: 80px;
}

.career .career__heading h1 {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}

.career .career__heading h4 {
  color: #fff;
  font-size: 40px;
  padding: 10px 0 5px;
  font-weight: 600;
}

.career .career__heading hr {
  width: 8%;
  border-bottom: 3px solid #fff;
  float: left;
}

.career .career__img {
  width: 100%;
  max-width: 750px;
}

.career .career__img img {
  -webkit-animation: 5s move infinite ease-in-out;
          animation: 5s move infinite ease-in-out;
}

.career .m-move {
  position: absolute;
  width: 100%;
  max-width: 700px;
  z-index: -1;
}

.career #m-mv {
  bottom: 2%;
  right: 5%;
}

.why {
  margin: 30px auto 30px;
}

.why .head {
  margin: 50px auto 0;
}

.why .answer {
  width: 80%;
  margin: 25px 0;
}

.why .answer p {
  line-height: 28px;
  font-size: 16px;
}

.why__bg {
  padding: 100px 0;
  margin: 50px 0;
  background-color: #f5f5f5;
}

.why__bg h3 {
  padding-bottom: 40px;
}

.why__bg ul li {
  list-style: none;
  padding: 20px 0;
  font-weight: 500;
}

.job-list {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.job-list .job__img {
  width: 70px;
}

.job-list .job__img svg {
  width: 100%;
}

.job-list .job {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #e2e2e2;
          box-shadow: 0 0 20px #e2e2e2;
}

.job-list .job .job__info {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-left: 25px;
}

.job-list .job h4 {
  padding: 0;
}

.job-list .job p {
  padding: 0;
  margin-bottom: 0;
}

.job-list .job a {
  padding: 10px 25px;
  background-color: #4786C6;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
}

.job-list .job a:hover {
  color: #fff;
}

.modal-body h3 {
  margin: 25px auto;
}

.modal-body h3 {
  margin: 25px auto;
}

.modal-body h4 {
  margin: 15px auto;
}

.modal-body ul {
  padding-left: 16px;
  padding-bottom: 15px;
}

.modal-body ul li {
  padding: 5px 0;
  font-size: 14.5px;
}

.modal-body a {
  padding: 10px 25px;
  background-color: #4786C6;
  color: #fff;
}

.modal-body a:hover {
  color: #fff;
}

.positions {
  padding: 50px 0 80px;
}

.positions .heading {
  margin: 0 auto;
}

.positions .heading h3 {
  padding: 15px 0;
  font-weight: 600;
}

.positions .heading p {
  width: 60%;
}

.positions .job-head {
  margin: 50px auto 30px;
}

.positions .job {
  margin: 25px auto;
}

.positions .job h6 {
  font-weight: 700;
  color: #919191;
}

.modal-content {
  background: none;
  border: none;
}

button.close span {
  color: #fff !important;
}

.modal-header {
  background: none;
  border-bottom: none;
}

.modal-body {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px;
}

a.btn-merklec {
  text-align: center;
  margin: 25px auto 0;
  background-color: #4786C6;
  color: #fff;
}

a.btn-merklec:hover {
  color: #fff;
}

/*--- 404  ----*/
.not__found {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(130deg, rgba(0, 188, 212, 0.7), #4766c8, rgba(100, 48, 148, 0.7));
}

.not__found .img {
  padding-top: 40px;
  width: 55%;
  margin: 0 auto;
}

.not__found .heading {
  position: absolute;
  left: 50%;
  top: 80%;
  -webkit-transform: translate(-50%, -80%);
          transform: translate(-50%, -80%);
  text-align: center;
}

.not__found .heading h3 {
  font-size: 1.5rem;
  color: #fff;
  padding-bottom: 10px;
}

.not__found .heading h1 {
  color: #fff;
  padding-bottom: 25px;
}

.not__found .heading a {
  padding: 10px 25px;
  background-color: #fff;
  color: #4786C6;
  font-size: 14.5px;
  border-radius: 5px;
}

.not__found .heading a:hover {
  color: #4786C6;
}

.lceazy_intro {
  width: 100%;
  height: 60vh;
  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;
}

.lceazy_intro img {
  width: 180px;
}

.lceazy_intro h4 {
  font-weight: 400;
  line-height: 38px;
}

.lceazy_intro ul li {
  display: inline-block;
  font-size: 1.2rem;
}

.lceazy {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lceazy::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.lceazy::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/lceazy.png") no-repeat scroll center 0/cover;
  mix-blend-mode: lighten;
}

.lceazy .lceazy__heading {
  width: 100%;
  padding: 80px;
}

.lceazy .lceazy__heading h1 {
  color: #fff;
  font-weight: 600;
  width: 35%;
}

.lceazy .lceazy__heading h6 {
  color: #fff;
  font-weight: 600;
  padding: 5px 0;
  font-size: 22px;
  width: 35%;
}

.lceazy .lceazy__heading p {
  color: #fff;
  font-size: 15px;
  opacity: 0.95;
  padding-top: 15px;
}

.lceazy .lceazy__heading p b {
  color: #fff;
  font-weight: 600;
}

.lceazy .lceazy__heading p small {
  color: #fff;
}

.lceazy .lceazy__heading a {
  background-color: #fff;
  color: #4786C6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 15px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: 0 5px 20px transparent;
          box-shadow: 0 5px 20px transparent;
}

.lceazy .lceazy__heading a:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 10px 40px rgba(5, 94, 228, 0.5);
          box-shadow: 0 10px 40px rgba(5, 94, 228, 0.5);
}

.lceazy .lceazy__heading ul li {
  color: #fff;
  list-style: none;
  padding: 6px 0;
  opacity: 0.8;
}

.lceazy .lceazy__img {
  width: 100%;
  max-width: 150px;
  position: absolute;
  bottom: 25%;
  right: 18%;
  -webkit-animation: shipMove 60s infinite  linear;
          animation: shipMove 60s infinite  linear;
}

@-webkit-keyframes shipMove {
  0% {
    -webkit-transform: rotate(0) translateX(0) translateY(0);
            transform: rotate(0) translateX(0) translateY(0);
  }
  25% {
    -webkit-transform: rotate(35deg) translateX(-160%) translateY(240%);
            transform: rotate(35deg) translateX(-160%) translateY(240%);
  }
  50% {
    -webkit-transform: rotate(25deg) translateX(-350%) translateY(325%);
            transform: rotate(25deg) translateX(-350%) translateY(325%);
  }
  75% {
    -webkit-transform: rotate(15deg) translateX(-600%) translateY(400%);
            transform: rotate(15deg) translateX(-600%) translateY(400%);
  }
  99% {
    -webkit-transform: rotate(5deg) translateX(-850%) translateY(450%);
            transform: rotate(5deg) translateX(-850%) translateY(450%);
  }
}

@keyframes shipMove {
  0% {
    -webkit-transform: rotate(0) translateX(0) translateY(0);
            transform: rotate(0) translateX(0) translateY(0);
  }
  25% {
    -webkit-transform: rotate(35deg) translateX(-160%) translateY(240%);
            transform: rotate(35deg) translateX(-160%) translateY(240%);
  }
  50% {
    -webkit-transform: rotate(25deg) translateX(-350%) translateY(325%);
            transform: rotate(25deg) translateX(-350%) translateY(325%);
  }
  75% {
    -webkit-transform: rotate(15deg) translateX(-600%) translateY(400%);
            transform: rotate(15deg) translateX(-600%) translateY(400%);
  }
  99% {
    -webkit-transform: rotate(5deg) translateX(-850%) translateY(450%);
            transform: rotate(5deg) translateX(-850%) translateY(450%);
  }
}

.lceazy__about {
  width: 100%;
  padding: 80px 0;
  position: relative;
}

.lceazy__about .overlay {
  position: absolute;
  width: 100%;
  height: 60%;
  background-color: #f5f5f5;
  top: 0;
  left: 0;
  z-index: -1;
}

.lceazy__about .lc_head {
  width: 30%;
  margin: 0px auto;
}

.lceazy__about .lc_head h3 {
  font-weight: 400;
  color: #4786C6;
}

.lceazy__about .lc_head h3 b {
  font-weight: 700;
  color: #4786C6;
}

.lceazy__about .lc_head p {
  margin: 0 auto;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.lceazy__about .lc__video {
  width: 40%;
  margin: 0px auto;
  position: relative;
}

.lceazy__about .lc__video a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lceazy__about .lc__video a i {
  color: #fff;
  font-size: 1.8rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(71, 134, 198, 0.85);
  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;
}

.lceazy_features {
  margin: 50px auto 50px;
  width: 75%;
}

.lceazy_features h3 {
  font-weight: 400;
  text-align: center;
}

.lceazy_features h3 b {
  font-weight: 700;
}

.lceazy_features .head {
  margin: 20px auto;
}

.lceazy_features .card {
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
          box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
  border: none;
}

.lceazy_features .card .card-img-top {
  width: 70px;
  height: 70px;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 20px;
  margin-top: 25px;
}

.lceazy_features .card .card-img {
  width: 100%;
  margin: 30px 25px;
}

.lceazy_features .card .card-img svg {
  width: 70px;
  height: 70px;
  position: relative;
}

.lceazy_features .card .card-body h5 {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.lceazy_features .card .card-body p {
  font-size: 15px;
  line-height: 30px;
  padding-bottom: 30px;
}

.lceazy_features .card ul li {
  position: relative;
  font-size: 15px;
}

.lceazy_features .card ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #4786C6;
  position: absolute;
  left: -5px;
}

.lceazy_features .col-sm-12 {
  margin-top: 30px;
}

.lc__try {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background-color: #f5f5f5;
  -webkit-animation: change 10s ease-in-out infinite;
          animation: change 10s ease-in-out infinite;
  background-size: 200% 200%;
}

.lc__try h1, .lc__try small, .lc__try p {
  color: #515151;
}

.lc__try p {
  padding: 15px 0 5px;
}

.lc__try a, .lc__try i {
  font-weight: 600;
  color: #4786C6;
}

.lc__try img {
  width: 180px;
  display: block;
  margin: 0 auto;
}

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

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

.product {
  width: 100%;
  height: 80vh;
  position: relative;
  z-index: 0;
  padding: 10em 0;
  background-image: linear-gradient(140deg, rgba(0, 188, 212, 0.7) 0%, #002977 100%);
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url("../img/shape.png") no-repeat scroll center 0/cover;
}

.product .app__heading {
  width: 40%;
  padding: 80px;
}

.product .app__heading h1 {
  color: #fff;
}

.product .app__heading h1 b {
  color: #fff;
}

.product .app__img {
  width: 100%;
  max-width: 600px;
}

.product .app__img img {
  -webkit-animation: 5s move infinite ease-in-out;
          animation: 5s move infinite ease-in-out;
}

.product .m-move {
  position: absolute;
  width: 100%;
  max-width: 150px;
}

.product #m-mv {
  bottom: 40%;
  right: 40%;
}

.case {
  padding: 80px 0;
}

.case .case-bg {
  width: 100%;
  height: 680px;
  -webkit-box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
          box-shadow: 0px 0px 15px rgba(222, 222, 222, 0.4);
  position: relative;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.case .case-bg .hover {
  opacity: 1;
}

.case .case-bg .hover p {
  color: #fff;
}

.case .case-bg .title {
  z-index: 2;
  width: 38%;
  padding: 0 0 0 50px;
  margin-top: -50px;
}

.case .case-bg .title small {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
}

.case .case-bg .title h2 {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: bold;
}

.case .case-bg .title p {
  color: #fff;
  width: 60%;
  margin-bottom: 25px;
}

.case .case-bg .title a {
  padding: 10px 18px;
  border: 2px solid #fff;
  color: #fff;
  font-size: smaller;
  border-radius: 5px;
  font-weight: 600;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.case .case-bg .title a:hover {
  color: #4786C6;
  background-color: #fff;
}

.case .case-bg .case-img {
  width: 750px;
  z-index: 2;
}

.case .case-bg .case-img-mob {
  width: 790px;
  z-index: 2;
}

.case .case-bg .case-img-trade {
  width: 750px;
  z-index: 2;
  padding-right: 120px;
}

.case .case-bg.bg-1::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #515151;
  opacity: 0.5;
}

.case .case-bg.bg-1::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/works/lceazy-bg.jpg");
  z-index: 0;
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
}

.case .case-bg.bg-slabone::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #515151;
  opacity: 0.5;
}

.case .case-bg.bg-slabone::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/works/slabone-bg.jpg");
  z-index: 0;
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
}

.case .case-bg.bg2 {
  background-image: linear-gradient(45deg, #00d9ff, #00b3ff, #0067dd);
  background-size: 150% 150%;
  -webkit-animation: change 5s ease-in-out infinite;
          animation: change 5s ease-in-out infinite;
}

.case .case-bg.bg2::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/works/pattern.svg");
  z-index: 0;
  opacity: 0.15;
  background-size: contain;
  background-repeat: repeat;
}

.case .case-bg.bg3 {
  background-image: linear-gradient(45deg, #00394B, #009670);
  background-size: 150% 150%;
  -webkit-animation: change 5s ease-in-out infinite;
          animation: change 5s ease-in-out infinite;
}

.case .case-bg.bg3::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/works/shoptimely.svg");
  z-index: 0;
  opacity: 0.6;
  background-size: contain;
  background-repeat: repeat;
}

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

/*--- Responsive ---*/
@media (min-width: 1700px) {
  .offerings .offering__right .offering__info {
    -ms-grid-column: 5;
    -ms-grid-column-span: 8;
    grid-column: 5/ span 8;
    padding: 10em 14em 10em 24em;
  }
  .offerings .offering__right .offering__info h6 {
    font-size: 1.1rem;
  }
  .offerings .offering__right .offering__info h3 {
    font-size: 1.8rem;
  }
  .offerings .offering__right .offering__info p {
    font-size: 18px;
  }
  .offerings .offering__left .offering__info {
    padding: 12em 14em;
  }
  .offerings .offering__left .offering__info h6 {
    font-size: 1.1rem;
  }
  .offerings .offering__left .offering__info h3 {
    font-size: 1.8rem;
  }
  .offerings .offering__left .offering__info p {
    font-size: 18px;
  }
  .offerings .offering__right .offering__link a {
    padding: 10px 45px;
    font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .lceazy .lceazy__heading h1 {
    width: 45%;
  }
  .lceazy__about .lc_head {
    width: 40%;
  }
  .loading p {
    bottom: 19%;
    -webkit-transform: translate(-50%, -19%);
            transform: translate(-50%, -19%);
  }
  #anim {
    width: 280px;
  }
  .lao .lao__img, .app .app__img, .career .career__img {
    max-width: 650px;
  }
  .lao .m-move, .app .m-move, .career .m-move {
    max-width: 700px;
  }
  .lao .lao__heading {
    width: 45%;
  }
  .about .about__heading {
    width: 55%;
  }
  .case .case-bg .title p {
    width: 70%;
  }
  .case .case-bg .case-img-mob {
    width: 750px;
  }
}

@media screen and (max-width: 1366px) {
  .loading p {
    bottom: 17%;
    -webkit-transform: translate(-50%, -17%);
            transform: translate(-50%, -17%);
  }
  .lao .lao__img, .app .app__img, .career .career__img {
    max-width: 520px;
  }
  .lao .m-move, .career .m-move {
    max-width: 595px;
  }
  .app .m-move {
    max-width: 480px;
  }
}

@media (max-width: 1280px) {
  .lceazy .lceazy__heading h1 {
    width: 50%;
  }
  .lao .lao__heading, .app .app__heading {
    width: 50%;
  }
  .about .about__heading {
    width: 60%;
  }
  .case .case-bg .title p {
    width: 85%;
  }
  .case .case-bg .case-img-trade {
    width: 690px;
  }
  .case .case-bg .case-img-mob {
    width: 690px;
  }
}

@media (max-width: 1150px) {
  .case .case-bg .case-img-trade, .case .case-bg .case-img-mob {
    width: 600px;
  }
  .case .case-bg .title p {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .lceazy .lceazy__heading h1 {
    width: 60%;
  }
  .lceazy__about .lc_head, .career .career__heading {
    width: 50%;
  }
  .lao .lao__img, .app .app__img, .career .career__img {
    max-width: 450px;
  }
  .lao .m-move, .career .m-move {
    max-width: 500px;
  }
  .about .about__heading {
    width: 70%;
  }
}

@media (max-width: 1075px) {
  header nav ul li a label i {
    color: #515151;
  }
  .lao, .app, .career {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 5rem 0;
  }
  .lao .lao__img, .app .app__img {
    max-width: 400px;
  }
  .lao .m-move, .app .m-move, .career .m-move {
    display: none;
  }
  .lao .lao__heading, .app .app__heading, .career .career__heading {
    width: 50%;
    text-align: left;
  }
  .lao .lao__heading h1, .app .app__heading h1, .career .career__heading h1 {
    width: 100%;
    margin: 0 auto;
  }
  .lao .lao__heading hr, .app .app__heading hr, .career .career__heading hr {
    margin: 0 auto;
  }
  .about .about__heading {
    width: 75%;
  }
  .lceazy::after {
    background-position: bottom;
    left: 0;
    top: auto;
    bottom: 0;
    background-size: contain;
  }
  .lceazy .lceazy__img {
    max-width: 90px;
    bottom: 12%;
    right: 18%;
  }
  .lceazy .lceazy__heading h6 {
    width: 50%;
  }
  .product .app__img {
    width: 450px;
  }
}

@media (min-width: 768px) and (max-width: 1075px) {
  header {
    width: 100vw;
  }
  header .logo {
    position: relative;
    z-index: 9999;
  }
  header .logo.open img {
    -webkit-filter: none;
            filter: none;
  }
  header.scrolled .nav-btn i {
    background-color: #515151;
  }
  .offerings .offering__right .offering__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1 /span 7;
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    grid-row: 1 /span 6;
  }
  .offerings .offering__right .offering__info {
    -ms-grid-column: 4;
    -ms-grid-column-span: 9;
    grid-column: 4/ span 9;
    -ms-grid-row: 5;
    -ms-grid-row-span: 7;
    grid-row: 5 /span 7;
    padding: 8em 2em;
  }
  .offerings .offering__right .offering__link {
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-column: 5/ span 3;
    -ms-grid-row: 11;
    -ms-grid-row-span: 2;
    grid-row: 11 /span 2;
  }
  .offerings .offering__left .offering__img {
    -ms-grid-row: 6;
    -ms-grid-row-span: 6;
    grid-row: 6/span 6;
  }
  .offerings .offering__left .offering__info {
    -ms-grid-row: 2;
    -ms-grid-row-span: 8;
    grid-row: 2 /span 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1/span 8;
    padding: 8em 3em;
  }
  .offerings .offering__left .offering__link {
    -ms-grid-row: 9;
    -ms-grid-row-span: 2;
    grid-row: 9/span 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2/ span 3;
  }
  .expertise .expertise__left {
    width: 40%;
  }
  .expertise .arrow_img {
    width: 190px;
  }
  .app .app__heading {
    width: 50%;
  }
  .solutions .solutions__head p {
    width: 50%;
  }
  .app__offer .app__box .info p {
    width: 98%;
  }
  .team .member {
    width: 95%;
  }
  .not__found .img {
    padding-top: 90px;
    width: 100%;
  }
  .not__found .heading {
    width: 90%;
    left: 50%;
    top: 80%;
    -webkit-transform: translate(-50%, -80%);
            transform: translate(-50%, -80%);
  }
}

@media (max-width: 990px) {
  header .logo.open img {
    -webkit-filter: none;
            filter: none;
  }
  .lceazy .lceazy__heading {
    width: 100% !important;
  }
  .lao .lao__heading h1 {
    width: 90%;
    padding: 20px 0;
  }
  .lceazy__about .lc_head {
    width: 55%;
  }
  .lceazy__about .lc__video {
    width: 55%;
  }
  .lceazy_intro {
    height: 70vh;
  }
  .lceazy .lceazy__heading h1 {
    width: 100%;
    text-align: left;
  }
  .lceazy_features {
    width: 90%;
  }
  .lceazy_features .app__box .info p {
    width: 100%;
    padding: 0 20px;
  }
  .about .about__heading {
    width: 80%;
  }
}

@media screen and (max-width: 1075px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    visibility: hidden;
  }
  #lead .modal-header .close {
    top: -60px;
    right: -10px;
  }
  #lead .modal-body form button {
    bottom: -40px;
    left: 135px;
  }
  header .logo {
    width: 165px !important;
  }
  footer .logo {
    width: 120px !important;
  }
  nav ul {
    width: 100%;
    height: 100%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header nav ul li {
    display: block;
    float: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin-bottom: 10px;
    padding: 10px 5px;
  }
  header nav ul li.active {
    border-bottom: 1px solid #515151;
    padding-bottom: 6px;
  }
  nav ul li:nth-child(1) a {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  nav ul li:nth-child(2) a {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  nav ul li:nth-child(3) a {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  nav ul li:nth-child(4) a {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  nav ul li:nth-child(5) a {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  nav ul li:nth-child(6) a {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  nav ul li:not(:first-child) {
    margin-left: 0;
  }
  header nav ul li {
    padding: 7px 5px;
  }
  nav ul li a {
    padding: 5px 0px !important;
    opacity: 0;
    color: #515151 !important;
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: 1.2px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    pointer-events: none;
  }
  .nav-btn {
    position: fixed;
    right: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-btn i {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-btn i:nth-child(1) {
    margin-top: 16px;
    width: 15px;
  }
  .nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-btn i:nth-child(3) {
    margin-top: 5px;
    width: 20px;
  }
  header nav ul li:hover > ul {
    display: none;
  }
  header nav ul li ul {
    display: none;
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: inherit;
    min-width: auto;
    margin: 0 auto;
  }
  header nav ul li ul li a {
    font-size: 14px !important;
  }
  header nav ul li ul li:nth-child(2) {
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li:nth-child(2) {
    border: none;
  }
  header nav ul li:nth-child(3) {
    border: none;
  }
  .lceazy__about .lc__video {
    width: 100%;
  }
  .lceazy__about {
    padding: 60px 0;
  }
  .lceazy__about .overlay {
    height: 75%;
  }
  .case .case-bg .case-img-trade, .case .case-bg .case-img-mob {
    width: 500px;
  }
  .case .case-bg {
    height: 560px;
  }
}

@media screen and (max-width: 845px) {
  .case .case-bg .case-img-trade, .case .case-bg .case-img-mob {
    width: 415px;
  }
  .case .case-bg .title {
    width: 45%;
  }
  .case .case-bg .case-img-trade {
    padding-right: 80px;
  }
  .product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .product .app__heading {
    width: 100%;
    padding: 25px;
  }
  .product .app__img {
    width: 70%;
    margin-top: 55px;
  }
}

@media screen and (max-width: 820px) {
  .lao .lao__img, .app .app__img, .career .career__img {
    max-width: 320px;
  }
  .about .about__heading {
    text-align: center;
    margin: 0 auto;
    width: 80%;
    padding: 20px;
  }
  .lceazy .lceazy__heading h6 {
    width: 80%;
  }
  .lao .lao__heading, .app .app__heading {
    padding: 20px 0;
  }
  .lao .lao__heading h1 {
    width: 100%;
  }
  .lao, .app, .career {
    padding: 2rem 0;
  }
  .lao .lao__heading, .app .app__heading, .career .career__heading {
    width: 100%;
    text-align: center;
  }
  .lao .lao__heading h1, .app .app__heading h1, .career .career__heading h1 {
    font-size: 2rem;
  }
  .career .career__heading h1 {
    text-align: center;
  }
  .career .career__heading hr {
    float: none;
    width: 20%;
  }
}

@media screen and (min-width: 414px) and (max-width: 820px) {
  #anim {
    width: 270px;
  }
  header {
    width: 100vw;
  }
  header .logo {
    position: relative;
    z-index: 9999;
  }
  header .logo.open h3 {
    color: #4786C6;
  }
  header.scrolled .nav-btn i {
    background-color: #515151;
  }
  .intro {
    background-position: 65%;
  }
  .intro .intro__heading {
    padding: 0 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 95%;
  }
  .offerings {
    margin: 55px auto 0;
  }
  .offerings .offering__right .offering__img, .offerings .offering__left .offering__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/ span 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    grid-row: 1 /span 6;
  }
  .offerings .offering__right .offering__info, .offerings .offering__left .offering__info {
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
    grid-column: 1/ span 11;
    -ms-grid-row: 5;
    -ms-grid-row-span: 7;
    grid-row: 5 /span 7;
    padding: 1em;
    z-index: 1;
  }
  .offerings .offering__right .offering__info p, .offerings .offering__left .offering__info p {
    font-size: 14.5px;
  }
  .offerings .offering__right .offering__link, .offerings .offering__left .offering__link {
    -ms-grid-column: 6;
    -ms-grid-column-span: 6;
    grid-column: 6/ span 6;
    -ms-grid-row: 11;
    -ms-grid-row-span: 2;
    grid-row: 11 /span 2;
  }
  .expertise {
    height: 80vh;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expertise .expertise__left {
    width: 95%;
  }
  .expertise .arrow_img {
    display: none;
  }
  .expertise .expertise__right .box {
    margin: 30px 0;
  }
  .cta {
    margin: 50px auto;
  }
  .cta .cta__box {
    margin: 20px auto;
  }
  .solutions .solutions__head p {
    width: 80%;
  }
  .row {
    margin: 0 auto;
  }
  .about .about-bg {
    width: 100%;
  }
  .commited {
    margin: 10px auto 30px;
  }
  .commited .cen {
    padding: 50px 20px !important;
  }
  .commited .commited__box {
    padding: 50px 20px;
  }
  .story .story__info {
    width: 90%;
    margin: 20px auto;
  }
  .contact__map {
    height: 50vh;
  }
  .contact {
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .contact .contact__form {
    padding: 30px;
  }
  .contact .contact__info {
    padding: 30px;
    text-align: center;
  }
  .contact .contact__info .contact__infos ul li.address::before {
    left: -5px;
  }
  .contact .contact__info .contact__infos ul li.call::before {
    left: -5px;
  }
  .contact .contact__info .contact__infos ul li.mail::before {
    left: -8px;
  }
  .not__found .img {
    padding-top: 110px;
    width: 100%;
  }
  .not__found .heading {
    width: 90%;
    left: 50%;
    top: 80%;
    -webkit-transform: translate(-50%, -80%);
            transform: translate(-50%, -80%);
  }
  .positions .heading {
    width: 85%;
  }
  footer {
    height: auto;
    padding: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .logo, footer .copy, footer .footer__social {
    padding: 20px 0;
  }
  .lceazy .lceazy__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lceazy .lceazy__heading h1 {
    width: 100%;
    font-size: 2.2rem;
  }
  .lceazy .lceazy__heading p {
    width: 100%;
  }
  .lceazy__about .lc_head {
    width: 95%;
  }
  .lceazy__about .lc_head h3, .lceazy__about .lc_head p {
    text-align: left;
  }
  .lceazy_intro {
    height: 85vh;
  }
  .case .case-bg {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 480px;
  }
  .case .case-bg .title {
    width: 60%;
    padding: 0 0 0 30px;
  }
  .case .case-bg .title p {
    width: 100%;
  }
  .case .case-bg .case-img-trade, .case .case-bg .case-img-mob {
    width: 40%;
    padding-right: 15px;
  }
}

@media screen and (max-width: 480px) {
  #anim {
    width: 250px;
  }
  .loading p {
    bottom: 20%;
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
  }
  header {
    width: 100vw;
    padding: 0;
  }
  header .logo {
    position: relative;
    z-index: 9999;
    width: 180px;
  }
  header .logo.open img {
    -webkit-filter: none;
            filter: none;
  }
  header.scrolled .nav-btn i {
    background-color: #515151;
  }
  header.scrolled nav ul li.active {
    border-bottom: 1px solid #515151;
    padding-bottom: 6px;
  }
  .solutions__slider .owl-carousel .owl-nav button.owl-prev, .solutions__slider .owl-carousel .owl-nav button.owl-next {
    margin-left: 0;
    margin-right: 0;
  }
  .intro .intro__heading {
    padding: 0 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 95%;
    top: 30%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
  }
  .offerings {
    height: 90vh;
  }
  .offering__info h6 {
    font-size: 0.85rem;
  }
  .offering__info h3 {
    font-size: 1.5rem;
  }
  .offerings {
    margin: 55px auto 0;
  }
  .offerings .offering__right .offering__img, .offerings .offering__left .offering__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/ span 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    grid-row: 1 /span 6;
  }
  .offerings .offering__right .offering__info, .offerings .offering__left .offering__info {
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
    grid-column: 1/ span 11;
    -ms-grid-row: 5;
    -ms-grid-row-span: 7;
    grid-row: 5 /span 7;
    padding: 1em;
    z-index: 1;
  }
  .offerings .offering__right .offering__info p, .offerings .offering__left .offering__info p {
    font-size: 14px;
  }
  .offerings .offering__right .offering__link, .offerings .offering__left .offering__link {
    -ms-grid-column: 5;
    -ms-grid-column-span: 7;
    grid-column: 5/ span 7;
    -ms-grid-row: 11;
    -ms-grid-row-span: 2;
    grid-row: 11 /span 2;
  }
  .expertise {
    height: 120vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expertise .expertise__left {
    width: 95%;
  }
  .expertise .arrow_img {
    display: none;
  }
  .expertise .expertise__right .box {
    margin: 30px 0;
  }
  .cta {
    margin: 50px auto;
  }
  .cta .cta__box {
    margin: 20px auto;
  }
  .lao .lao__heading, .app .app__heading {
    left: 0;
    right: auto;
    width: 100%;
    padding: 20px;
  }
  .lao .lao__heading h1, .app .app__heading h1 {
    font-size: 2rem;
  }
  .solutions .solutions__head h3 {
    font-size: 1.2rem;
  }
  .solutions .solutions__head p {
    width: 80%;
    font-size: 14px;
  }
  .row {
    margin: 0 auto;
  }
  .about .about-bg {
    width: 100%;
  }
  .about_sec .logo h3 {
    color: #fff !important;
  }
  .about .about__heading {
    width: 100%;
    padding: 20px;
  }
  .about .about__heading h1 {
    font-size: 2rem;
  }
  .about .about__heading h6 {
    font-size: 1rem;
  }
  .about-content h2 {
    font-size: 1.5rem;
    width: 100%;
  }
  .achievements .achevements__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 125vh;
    width: 100%;
  }
  .achievements .achevements__box .card {
    max-width: 100%;
  }
  .begin {
    text-align: center;
  }
  .begin h3 {
    font-size: 30px;
  }
  .career .career__heading {
    padding: 20px;
  }
  .modal-body {
    padding: 15px;
  }
  .col-sm-12 {
    padding: 0;
  }
  .commited {
    margin: 10px auto 30px;
  }
  .commited .cen {
    padding: 50px 20px !important;
  }
  .commited .commited__box {
    padding: 50px 20px;
  }
  .story .story__info {
    width: 90%;
    margin: 20px auto;
  }
  .contact__map {
    height: 80vh;
  }
  .contact {
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .why .answer {
    width: 95%;
  }
  .contact .contact__form {
    padding: 30px;
  }
  .contact .contact__info {
    padding: 30px;
    text-align: center;
  }
  .contact .contact__info .contact__infos ul li.address::before {
    left: -5px;
  }
  .contact .contact__info .contact__infos ul li.call::before {
    left: -5px;
  }
  .contact .contact__info .contact__infos ul li.mail::before {
    left: -8px;
  }
  .positions .heading {
    width: 85%;
  }
  .not__found .img {
    padding-top: 110px;
    width: 100%;
  }
  .not__found .heading {
    width: 90%;
    left: 50%;
    top: 80%;
    -webkit-transform: translate(-50%, -80%);
            transform: translate(-50%, -80%);
  }
  .job-list .job {
    width: 85%;
  }
  footer {
    height: auto;
    padding: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .logo, footer .copy, footer .footer__social {
    padding: 20px 0;
  }
  .lceazy .lceazy__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lceazy .lceazy__heading h1 {
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
  }
  .lceazy .lceazy__heading h6 {
    width: 100%;
  }
  .lceazy .lceazy__heading p {
    width: 100%;
  }
  .lceazy__about .lc_head {
    width: 95%;
  }
  .lceazy__about .lc_head h3, .lceazy__about .lc_head p {
    text-align: left;
  }
  .lceazy_intro {
    height: 90vh;
  }
  .lceazy_intro img {
    width: 145px;
  }
  .lceazy .lceazy__heading {
    padding: 10px;
  }
  .lceazy .lceazy__heading h1 {
    font-size: 1.5rem;
  }
  .lc__try img {
    width: 145px;
  }
  .lceazy_features .app__box .info h3 {
    font-size: 1.25rem;
  }
  .lceazy_intro ul li {
    font-size: 1rem;
  }
  .lceazy {
    padding: 0 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .lao, .app {
    padding: 0;
  }
  .lao .lao__heading, .app .app__heading, .career .career__heading {
    width: 90%;
    padding: 15px;
  }
  .lao .lao__heading h1, .app .app__heading h1, .career .career__heading h1 {
    font-size: 1.5rem;
    padding: 5px 0;
  }
  .lao .lao__heading ul li, .app .app__heading ul li {
    padding: 6px 0;
    font-size: 15px;
  }
  .lao .lao__img, .app .app__img, .career .career__img {
    max-width: 200px;
  }
  .job-list .job {
    width: 100%;
  }
  .positions .heading p {
    width: 100%;
  }
  .job-list .job {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .job-list .job .job__info {
    padding-bottom: 20px;
    padding-left: 0;
  }
  .job-list .job .job__info h4 {
    font-size: 1.2rem;
  }
  .job-list .job a {
    padding: 7px 15px;
  }
  .lceazy .lceazy__img {
    max-width: 50px;
    bottom: 6%;
    right: 18%;
  }
  .case .case-bg {
    -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;
    height: 650px;
  }
  .case .case-bg .title {
    width: 100%;
    padding: 20px;
  }
  .case .case-bg .title p {
    width: 100%;
  }
  .case .case-bg .case-img-trade {
    padding-top: 50px;
  }
  .case .case-bg .case-img-trade, .case .case-bg .case-img-mob {
    width: 70%;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=merklestyle.css.map */