/* ==========================================================
! 0. Colors Section
========================================================== */
.btn:link,
.btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  padding: 20px 40px;
  border-radius: 100px;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn:hover {
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn:active {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-bottom-animation-1 {
  -webkit-animation: comeFromBottom 1s ease-out .8s;
          animation: comeFromBottom 1s ease-out .8s;
}

.btn::after {
  content: "";
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  display: inline-block;
  z-index: -1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-white::after {
  background: #fff;
}

.btn-animation-1:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

@-webkit-keyframes comeFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes comeFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #084ab6;
  border-radius: 50px;
  outline: 1px solid #084ab6;
}

/* ==========================================================
! 1. Fonts Section
========================================================== */
@font-face {
  font-family: "Gordita Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gordita Regular.woff") format("woff");
}
@font-face {
  font-family: "Gordita Light";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gordita Light.woff") format("woff");
}
@font-face {
  font-family: "Gordita Medium";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gordita Medium.woff") format("woff");
}
@font-face {
  font-family: "Gordita Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gordita Bold.woff") format("woff");
}
/* ==========================================================
! 2. General Section
========================================================== */
body {
  font-family: "Gordita Regular";
  font-size: 16px;
  overflow-x: hidden;
  color: #141852;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none !important;
}

.section {
  padding: 170px 0 80px;
}

@media (max-width: 450px) {
  br {
    display: none;
  }
}

/*--------------------- Loading ---------------------*/
#loading {
  background-image: linear-gradient(100deg, #421bb0 0%, #5648c6 100%);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  right: 50%;
}

div.cssload-content {
  margin: auto;
  display: box;
  display: -o-box;
  display: -ms-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  box-orient: vertical;
  -o-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  box-direction: normal;
  -o-box-direction: normal;
  -ms-box-direction: normal;
  -webkit-box-direction: normal;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  box-align: center;
  -o-box-align: center;
  -ms-box-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  box-pack: center;
  -o-box-pack: center;
  -ms-box-pack: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
div.cssload-content img {
  -webkit-animation: sk-rotate 1.5s infinite ease-in-out;
          animation: sk-rotate 1.5s infinite ease-in-out;
}

@-webkit-keyframes sk-rotate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-rotate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
  }
  50% {
    -webkit-transform: translatey(-20px) scale(1);
            transform: translatey(-20px) scale(1);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
  }
  50% {
    -webkit-transform: translatey(-20px) scale(1);
            transform: translatey(-20px) scale(1);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@-webkit-keyframes downArrow {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1) translateY(100%);
            transform: scaleY(1) translateY(100%);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(0);
            transform: scaleY(1) translateY(0);
  }
}
@keyframes downArrow {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1) translateY(100%);
            transform: scaleY(1) translateY(100%);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(0);
            transform: scaleY(1) translateY(0);
  }
}
.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 80px;
  border-radius: 27px;
  color: #141852;
  font: 700 18px/78px "Gordita Medium";
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 110, 255, 0.26);
          box-shadow: 0px 3px 16px 0px rgba(0, 110, 255, 0.26);
  text-decoration: none;
  text-transform: capitalize;
}
.btn-liquid:hover {
  color: #141852;
}
.btn-liquid .inner {
  position: relative;
  z-index: 2;
}
.btn-liquid canvas {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;
  z-index: 1;
}

.section {
  padding: 60px 0;
}

/* ==========================================================
! 3. Header Section
========================================================== */
header.main-header {
  padding: 28px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
header.main-header .innerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main-header .innerWrap .logo {
  width: 135px;
}
header.main-header .innerWrap .logo a {
  display: block;
  width: 100%;
}
header.main-header .innerWrap .logo a img {
  max-width: 100%;
}
header.main-header .innerWrap .logo a img.colord {
  display: none;
}
header.main-header .innerWrap nav {
  position: relative;
  margin-left: 40px;
}
header.main-header .innerWrap nav .nav-items {
  list-style: none;
  margin-bottom: 0;
}
header.main-header .innerWrap nav .nav-items > li {
  position: relative;
  font-family: "Gordita Medium";
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding: 14px 21px;
  border-radius: 26px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
header.main-header .innerWrap nav .nav-items > li a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .innerWrap nav .nav-items > li:last-child {
  margin-left: 0;
}
header.main-header .innerWrap nav .nav-items li.dropdown .dropdown-list {
  position: absolute;
  right: 0;
  top: 30px;
  background-color: #ffffff;
  text-align: right;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 280px;
  border-radius: 4px;
  padding: 10px 15px;
  z-index: 2222;
  -webkit-transform: translateY(-500%);
          transform: translateY(-500%);
  opacity: 1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
header.main-header .innerWrap nav .nav-items li.dropdown .dropdown-list li.dropdown-list-item {
  padding: 10px 0;
}
header.main-header .innerWrap nav .nav-items li.dropdown .dropdown-list li.dropdown-list-item a {
  font-family: "Gordita Regular";
  color: #455a5b;
  text-decoration: none;
}
header.main-header .innerWrap nav .nav-items li.dropdown .dropdown-list li.dropdown-list-item a img {
  margin-left: 5px;
}
header.main-header .innerWrap nav .nav-items li.dropdown .dropdown-list li.dropdown-list-item:hover a {
  color: #a68f50;
}
header.main-header .innerWrap nav .nav-items li.dropdown:hover > .dropdown-list {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header.main-header .innerWrap .navButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main-header .innerWrap .navButtons .getBtn {
  font-family: "Gordita Medium";
  font-size: 14px;
  color: #ffffff;
  padding: 0 15px;
}
header.main-header .innerWrap .navButtons .getBtn img {
  max-width: 33px;
  vertical-align: middle;
}
header.main-header .innerWrap .navButtons .toggle-nav {
  padding: 0 48px 0 15px;
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn {
  background: none;
  border: none;
  outline: 0;
  position: relative;
  z-index: 999999999999;
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn.active span:nth-child(2) {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn.active span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(12px, 5px);
          transform: rotateY(180deg) rotateZ(45deg) translate(12px, 5px);
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn.active span:nth-child(3) {
  -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(6px, 0px);
          transform: rotateY(-180deg) rotateZ(-45deg) translate(6px, 0px);
}
header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn::after {
  content: "Menu";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100%;
  color: #fff;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  -webkit-transform: translateY(-100%) scale(0.3);
          transform: translateY(-100%) scale(0.3);
  border-radius: 100%;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 99999999;
  opacity: 0;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu .mobile-menu-items {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  list-style: none;
  padding: 4rem 0;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu-items li {
  padding: 10px 23px;
  font-family: "Gordita Medium";
  font-size: 3rem;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu-items li:last-child {
  border-bottom: 0;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu-items li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu-items li:hover a {
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  text-decoration: line-through !important;
}
header.main-header .innerWrap .navButtons .toggle-nav .mobile-menu.active {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  border-radius: 0;
  background-color: #340fae;
  opacity: 1;
  -webkit-transition: all .7s ease-in-out 0s;
  transition: all .7s ease-in-out 0s;
}
@media (max-width: 520px) {
  header.main-header .innerWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header.main-header .innerWrap .navButtons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 15px 0;
  }
  header.main-header .innerWrap .navButtons .getBtn {
    display: none;
  }
}
@media (max-width: 1200px) {
  header.main-header nav {
    display: none;
  }
}
header.main-header.whiteHeader .innerWrap .nav-items > li {
  color: #141852 !important;
}
header.main-header.whiteHeader .innerWrap .navButtons .getBtn {
  color: #141852;
}
header.main-header.whiteHeader .innerWrap .navButtons .toggle-nav .toggle-btn span {
  background-color: #141852;
}
header.main-header.whiteHeader .innerWrap .navButtons .toggle-nav .toggle-btn::after {
  color: #141852;
}

/* ==========================================================
! 4. Main Section
========================================================== */
.main-section {
  background-image: url(../images/header-bg.png);
  background-size: cover;
  background-position: top;
  border-bottom-right-radius: 200px;
  padding: 150px 0;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 520px) {
  .main-section {
    background-image: url(../images/header-bg-m.png);
    overflow: hidden;
  }
}
.main-section .main-section-content .labelBar {
  background-image: linear-gradient(100deg, #421bb0 0%, #5648c6 100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px 10px 15px;
  border-radius: 50px;
  font-family: "Gordita Medium";
  font-size: 14px;
  margin-bottom: 40px;
  color: #fff;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.main-section .main-section-content .labelBar .lableTitle {
  background-color: #46bffd;
  width: 80px;
  height: 40px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-family: inherit;
  text-transform: uppercase;
  margin-right: 10px;
}
.main-section .main-section-content .labelBar:hover {
  background-image: linear-gradient(100deg, #006eff 0%, #006eff 100%);
}
.main-section .main-section-content .labelBar:hover .lableTitle {
  background-color: #fff;
  color: #006eff;
}
@media (max-width: 520px) {
  .main-section .main-section-content .labelBar {
    font-size: 12px;
    padding: 10px 10px;
  }
  .main-section .main-section-content .labelBar .lableTitle {
    width: 60px;
    height: 30px;
    line-height: 35px;
  }
}
.main-section .main-section-content h1 {
  font-size: 62px;
  color: #fff;
  margin-bottom: 45px;
  line-height: 1.3;
  font-family: "Gordita Bold";
}
.main-section .main-section-content h1 span {
  background: -webkit-gradient(linear, left top, right top, from(#141852), to(#4470c3));
  background: linear-gradient(to right, #141852, #4470c3 100%);
  background: -webkit-gradient(linear, left top, right top, from(#9dc8ff), to(#fff));
  background: linear-gradient(to right, #9dc8ff, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Gordita Light";
}
.main-section .main-section-content .m-section-button {
  background: #006eff;
  color: #fff;
  width: 80px;
  border-radius: 50%;
  height: 80px;
  display: inline-block;
  margin-top: 0;
  vertical-align: middle;
  margin-left: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 22px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.main-section .main-section-content .m-section-button:hover {
  background-color: #fff;
}
.main-section .main-section-content .m-section-button:hover .fa {
  color: #006eff;
}
@media (max-width: 991px) {
  .main-section .main-section-content {
    text-align: center;
  }
  .main-section .main-section-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .main-section .main-section-content h1 {
    font-size: 35px;
    line-height: 1.4;
  }
  .main-section .main-section-content p {
    font-size: 15px;
  }
}
.main-section .mockup {
  position: relative;
}
.main-section .mockup img {
  max-width: 500px;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
.main-section .down {
  position: absolute;
  bottom: 90px;
}
.main-section .down a {
  font-family: "Gordita Medium";
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.main-section .down a .icon {
  width: 32px;
  height: 38px;
  border: 2px solid #fff;
  display: inline-block;
  border-radius: 50px;
  vertical-align: middle;
  margin-right: 10px;
}
.main-section .down a .icon span {
  width: 2px;
  height: 15px;
  background-color: #fff;
  display: block;
  margin: 0px auto 0;
  border-radius: 50px;
  -webkit-animation: downArrow 2s ease-in-out infinite;
          animation: downArrow 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-section .mockup {
    margin-top: 40px;
  }
  .main-section .mockup img {
    max-width: 380px;
  }
  .main-section .down {
    left: auto;
    right: auto;
    bottom: 50px;
  }
}
.main-section.insideMainSection {
  min-height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-section.insideMainSection .main-section-content {
  padding-top: 1rem;
}
.main-section.insideMainSection .main-section-content h1 {
  font-size: 55px;
  margin-bottom: 18px;
}
.main-section.insideMainSection .main-section-content h1 span {
  font-family: "Gordita Regular";
  background: -webkit-gradient(linear, right top, left top, from(#9dc8ff), color-stop(70%, #fff));
  background: linear-gradient(to left, #9dc8ff, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-section.insideMainSection .main-section-content p {
  font-family: "Gordita Regular";
  font-size: 25px;
  color: #ffffff;
  max-width: 600px;
  line-height: 1.7;
}
.main-section.study {
  background-image: url(../images/study-bg.jpg);
}
.main-section.study .apps {
  position: absolute;
  bottom: 90px;
  right: 15%;
}
.main-section.study .apps ul li {
  display: inline-block;
  font-family: "Gordita Regular";
  font-size: 16px;
}
.main-section.study .apps ul li .fa {
  margin-left: 5px;
}
.main-section.study .apps ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.main-section.study .apps ul li.app-download-icon {
  display: inline-block;
  background: #006eff;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  margin-right: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.main-section.study .apps ul li.app-download-icon img {
  height: 25px;
}
.main-section.study .apps ul li.app-download-icon.appStore {
  background-color: #3807a7;
}
.main-section.study .apps ul li.app-download-icon.appStore:hover {
  background: #006eff;
}
.main-section.study .apps ul li.app-download-icon:last-child {
  margin-right: 0;
}
.main-section.study .apps ul li.app-download-icon:hover {
  background: #3807a7;
}
.main-section.study .apps ul li:last-child {
  margin-left: 5px;
}
@media (max-width: 767px) {
  .main-section.study .apps {
    left: 7%;
    display: inline-block;
  }
}
@media (max-width: 567px) {
  .main-section.study .apps {
    position: relative;
    bottom: 0;
    left: 0;
  }
}

/* ==========================================================
!  Clients Section
========================================================== */
.clients {
  text-align: center;
}
.clients .title {
  color: #141852;
  font-family: "Gordita Regular";
  font-size: 45px;
  margin-bottom: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), to(#4470c3));
  background: linear-gradient(to right, #141852, #4470c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clients .swiper-slide img {
  max-width: 70%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .clients .title {
    font-size: 28px;
  }
  .clients .swiper-slide img {
    max-width: 90%;
  }
}

.brief-item {
  padding: 100px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .brief-item {
    margin: 0;
    position: relative;
    min-height: auto;
    height: 100% !important;
    padding: 50px 0;
  }
}

.brief-mockup {
  width: 540px;
  height: 540px;
  max-width: 100%;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
  position: relative;
}
.brief-mockup img {
  max-width: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.brief-mockup.vezeeta {
  background-image: linear-gradient(100deg, #086dd1 0%, #0116a8 100%);
}
.brief-mockup.bein {
  background-image: linear-gradient(100deg, #4f2b97 0%, #0b0a41 100%);
}
.brief-mockup.etisalat {
  background-image: linear-gradient(100deg, #13a547 0%, #015c09 100%);
}
.brief-mockup.dubainow {
  background-image: linear-gradient(100deg, #0058bd 0%, #000c7f 100%);
}
.brief-mockup.kuwait {
  background-image: linear-gradient(100deg, #007a46 0%, #00491d 100%);
}
.brief-mockup.kuwait img {
  max-width: 450px;
}
@media (max-width: 520px) {
  .brief-mockup.kuwait img {
    max-width: 350px;
  }
}

.brief-content .icon {
  width: 115px;
  height: 120px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(20, 24, 82, 0.17);
          box-shadow: 0px 3px 8px 0px rgba(20, 24, 82, 0.17);
  border-radius: 46px;
  text-align: center;
  line-height: 120px;
}
.brief-content .icon img {
  max-width: 100%;
}
.brief-content h3 {
  font-family: "Gordita Regular";
  font-size: 30px;
  color: #141852;
  margin-top: 30px;
}
.brief-content h3 span {
  font-family: "Gordita Bold";
}
.brief-content h3 img {
  max-width: 30px;
  vertical-align: top;
}
.brief-content p {
  font-family: "Gordita Regular";
  font-size: 23px;
  color: #141852;
  line-height: 1.4;
  margin-top: 25px;
}
.brief-content ul {
  margin-top: 30px;
}
.brief-content ul li {
  display: inline-block;
  font-family: "Gordita Regular";
  font-size: 16px;
}
.brief-content ul li .fa {
  margin-left: 5px;
}
.brief-content ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.brief-content ul li.app-download-icon {
  display: inline-block;
  background: #006eff;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  margin-right: 10px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.brief-content ul li.app-download-icon img {
  height: 25px;
}
.brief-content ul li.app-download-icon.appStore {
  background-color: #3807a7;
}
.brief-content ul li.app-download-icon.appStore:hover {
  background: #006eff;
}
.brief-content ul li.app-download-icon:last-child {
  margin-right: 0;
}
.brief-content ul li.app-download-icon:hover {
  background: #3807a7;
}
.brief-content ul li:last-child {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .brief-mockup {
    width: 350px;
    height: 350px;
  }
  .brief-mockup img {
    max-width: 250px;
  }

  .brief-content {
    padding-bottom: 80px;
  }
  .brief-content ul {
    text-align: left;
  }
  .brief-content ul li:last-child {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .brief-content {
    text-align: center;
  }
  .brief-content .icon {
    margin: 0 auto;
  }
  .brief-content ul {
    margin-bottom: 30px;
    text-align: center;
  }
  .brief-content ul li.app-download-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .m-order-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .m-order-last {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
/* ==========================================================
!  Build Your Story
========================================================== */
.build-your-story {
  text-align: center;
  position: relative;
  padding: 80px 0;
}
@media (max-width: 450px) {
  .build-your-story {
    overflow: hidden;
  }
}
.build-your-story .bg {
  position: absolute;
  background-image: url(../images/build-story-bg.png);
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center center;
  top: -75px;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .build-your-story .bg {
    background-image: url(../images/build-story-bg-m.png);
    background-size: 89%;
    top: -110px;
    left: 0;
  }
}
.build-your-story > .container {
  position: relative;
  z-index: 22;
}
.build-your-story h3 {
  font-size: 42px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #4470c3));
  background: linear-gradient(to right, #141852, #4470c3 80%);
  margin-bottom: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.build-your-story h3 span {
  font-family: "Gordita Medium";
}
.build-your-story p {
  font-size: 25px;
  color: #141954;
}
.build-your-story a {
  font-family: "Gordita Regular";
  font-size: 20px;
  color: #006eff;
  margin-top: 30px;
  display: block;
}
@media (max-width: 767px) {
  .build-your-story h3 {
    font-size: 35px;
  }
  .build-your-story p {
    font-size: 20px;
  }
}

.services {
  padding: 100px 0;
  background-color: #fafcfd;
}
.services .titles {
  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;
}
.services .titles h2 {
  font-size: 37px;
  color: #141852;
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #4470c3));
  background: linear-gradient(to right, #141852, #4470c3 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 520px) {
  .services .titles h2 {
    font-size: 27px;
  }
}
.services .titles .viewAll {
  color: #006eff;
  font-size: 16px;
  color: #006eff;
}
.services .services-items {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
.services .services-items .item {
  position: relative;
  z-index: 2;
}
.services .services-items .item .icon {
  position: relative;
  z-index: 222;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 29px 0px rgba(139, 145, 155, 0.17);
          box-shadow: 0px 6px 29px 0px rgba(139, 145, 155, 0.17);
  width: 100px;
  height: 100px;
  border-radius: 15px;
  text-align: center;
  line-height: 100px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.services .services-items .item .icon img {
  max-height: 35px;
}
.services .services-items .item .icon img:last-child {
  display: none;
}
.services .services-items .item .sub-icon {
  position: absolute;
  top: 16%;
  right: 0;
}
.services .services-items .item .sub-icon img {
  height: 35px;
}
.services .services-items .item h3 {
  font-family: "Gordita Medium";
  font-size: 17px;
  color: #141852;
  margin: 30px 0 15px;
}
.services .services-items .item p {
  font-size: 15px;
  color: #3e4061;
}
.services .services-items .row-item:nth-child(even) .item .icon {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.services .services-items .row-item:nth-child(1) .sub-icon {
  right: 16px;
  background: #fafcfd;
  padding: 0 10px;
}
.services .services-items .row-item:nth-child(2) .item {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.services .services-items .row-item:nth-child(2) .item .sub-icon {
  right: 20px;
  background: #fafcfd;
  padding: 0 10px;
}
.services .services-items .row-item:nth-child(3) .item {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.services .services-items .row-item:nth-child(3) .item .sub-icon {
  right: 18px;
  background: #fafcfd;
  padding: 0 10px;
}
.services .services-items .row-item:nth-child(4) .item {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
.services .services-items .row-item:hover .item .icon img:first-child {
  display: none;
}
.services .services-items .row-item:hover .item .icon img:last-child {
  display: inline-block;
}
.services .services-items .row-item:hover:nth-child(even) .item .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background-color: #4f24b1;
}
.services .services-items .row-item:hover:nth-child(odd) .item .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background-color: #006eff;
}
.services .services-items .line {
  background-image: url(../images/line.png);
  width: 100%;
  height: 27px;
  display: block;
  position: absolute;
  top: 24%;
}
@media (max-width: 991px) {
  .services .services-items .item .icon {
    width: 105px;
  }
  .services .services-items .item .sub-icon {
    right: -12%;
  }
  .services .services-items .item h3 {
    font-size: 18px;
  }
  .services .services-items .item p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .services .services-items .item {
    padding-left: 30px;
  }
  .services .services-items .item .sub-icon {
    display: none;
  }
  .services .services-items .row-item:nth-child(1) .item::after {
    content: " ";
    width: 150px;
    height: 75px;
    border-radius: 50%;
    border-bottom: 2px dashed #b4c4cc;
    display: block;
    position: absolute;
    top: 0;
    right: -20%;
    z-index: 22;
  }
}
@media (max-width: 767px) and (max-width: 414px) {
  .services .services-items .row-item:nth-child(1) .item::after {
    right: -40%;
  }
}
@media (max-width: 767px) {
  .services .services-items .row-item:nth-child(2) .item::after {
    content: " ";
    width: 150px;
    height: 75px;
    border-radius: 50%;
    border-bottom: 2px dashed #b4c4cc;
    display: block;
    position: absolute;
    right: -39px;
    bottom: 0;
    top: auto;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media (max-width: 767px) and (max-width: 414px) {
  .services .services-items .row-item:nth-child(2) .item::after {
    right: -28%;
  }
}
@media (max-width: 767px) {
  .services .services-items .row-item:nth-child(3) .item::after {
    content: " ";
    width: 150px;
    height: 75px;
    border-radius: 50%;
    border-bottom: 2px dashed #b4c4cc;
    display: block;
    position: absolute;
    top: 0;
    right: -20%;
    z-index: 22;
  }
}
@media (max-width: 767px) and (max-width: 414px) {
  .services .services-items .row-item:nth-child(3) .item::after {
    right: -40%;
  }
}

@media (max-width: 767px) {
  .services {
    padding-top: 100px;
  }
  .services .titles {
    display: block;
    text-align: center;
  }
  .services .titles .viewAll {
    margin-top: 30px;
    display: block;
  }
  .services .services-items {
    margin-top: 45px;
  }
  .services .services-items .line {
    display: none;
  }
}

/*
    Countries
*/
.countries {
  padding: 80px 0;
  position: relative;
  top: -15px;
  background-image: url(../images/countries-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 222;
}
@media (max-width: 567px) {
  .countries {
    background-image: url(../images/countries-bg-mobile.png);
    background-position: 40%;
  }
}
.countries .countries-content h3 {
  color: #feffff;
  line-height: 1.5;
  font-size: 35px;
  font-family: "Gordita Regular";
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#4470c3));
  background: linear-gradient(to right, #fff, #4470c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.countries .countries-content h3:last-child {
  font-size: 20px;
  margin-top: 15px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 567px) {
  .countries .countries-content {
    text-align: center;
  }
}
.countries .map {
  position: relative;
}
.countries .map img {
  max-width: 100%;
  display: block;
}
.countries .map .marks .mark-circle {
  position: absolute;
}
.countries .map .marks .mark-circle a {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #0c58ed;
  -webkit-box-shadow: 0px 3px 46px 0px rgba(0, 0, 0, 0.31);
          box-shadow: 0px 3px 46px 0px rgba(0, 0, 0, 0.31);
  display: block;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.countries .map .marks .mark-circle a::after {
  content: ' ';
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.countries .map .marks .mark-circle a:hover {
  background-color: #3807a7;
}
.countries .map .marks .mark-circle:nth-child(1) {
  bottom: 0;
  left: 20%;
}
.countries .map .marks .mark-circle:nth-child(2) {
  top: 40%;
  left: 20%;
}
.countries .map .marks .mark-circle:nth-child(3) {
  top: 30%;
  left: 40%;
}
.countries .map .marks .mark-circle:nth-child(4) {
  top: 60%;
  left: 40%;
}
.countries .map .marks .mark-circle:nth-child(5) {
  top: 30%;
  left: 60%;
}

.tooltip .arrow::before {
  border-top-color: #fff;
}
.tooltip .tooltip-inner {
  background-color: #fff;
  color: #3e4061;
  font-family: "Gordita Regular";
  font-size: 15px;
}

/*
    AdminSystems
*/
.admin-systems {
  position: relative;
  top: -35px;
  padding: 100px 0 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9fcfd), to(#ffffff));
  background-image: linear-gradient(to bottom, #f9fcfd, #ffffff 100%);
}
.admin-systems .titles h2 {
  font-size: 35px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #5e7ec7));
  background: linear-gradient(to right, #141852, #5e7ec7 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.admin-systems .titles p {
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #084ab6));
  background: linear-gradient(to right, #141852, #084ab6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  color: #141852;
}
.admin-systems .frame-cards {
  margin-top: 60px;
}
.admin-systems .frame-cards .card {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(20, 24, 82, 0.17);
          box-shadow: 0px 3px 20px 0px rgba(20, 24, 82, 0.17);
  border-radius: 20px;
  padding: 40px 25px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.admin-systems .frame-cards .card h3 {
  position: relative;
  z-index: 22;
  font-size: 30px;
  color: #141852;
  font-family: "Gordita Medium";
  margin-bottom: 15px;
}
.admin-systems .frame-cards .card h3 span {
  font-family: "Gordita Light";
}
.admin-systems .frame-cards .card p {
  position: relative;
  z-index: 22;
  font-family: "Gordita Regular";
  font-size: 14px;
  color: #141852;
  line-height: 1.7;
}
.admin-systems .frame-cards .card a {
  position: relative;
  z-index: 22;
  font-family: "Gordita Regular";
  color: #141852;
  font-size: 14px;
}
.admin-systems .frame-cards .card a span {
  color: #2683ff;
}
.admin-systems .frame-cards .card::after {
  content: " ";
  width: 0;
  height: 0;
  border-bottom: 100px solid #1547de;
  border-left: 100px solid transparent;
  position: absolute;
  right: -5px;
  top: -15px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scale(5) translateX(100%);
          transform: scale(5) translateX(100%);
  z-index: 2;
}
.admin-systems .frame-cards .card:hover {
  background-color: #141852;
}
.admin-systems .frame-cards .card:hover h3 {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(80%, #084ab6));
  background: linear-gradient(to right, #fff, #084ab6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.admin-systems .frame-cards .card:hover p {
  color: #ffffff;
}
.admin-systems .frame-cards .card:hover a {
  color: #fff;
}
.admin-systems .frame-cards .card:hover::after {
  -webkit-transform: scale(5) translateX(0%);
          transform: scale(5) translateX(0%);
}
@media (max-width: 420px) {
  .admin-systems .frame-cards .card {
    max-width: 90%;
    margin: 0 auto 20px;
  }
  .admin-systems .frame-cards .card::after {
    top: 15%;
    -webkit-transform: scale(15) translateX(100%);
            transform: scale(15) translateX(100%);
  }
}
.admin-systems .be-partner {
  padding: 40px 0;
}
.admin-systems .be-partner .be-partner-content > img {
  max-width: 120px;
}
.admin-systems .be-partner .be-partner-content h3 {
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #084ab6));
  background: linear-gradient(to right, #141852, #084ab6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  margin: 20px 0;
  line-height: 1.4;
}
.admin-systems .be-partner .be-partner-content h3 img {
  height: 30px;
  vertical-align: middle;
}
.admin-systems .be-partner .be-partner-content a {
  color: #006eff;
  font-size: 20px;
}
.admin-systems .be-partner .be-partner-content a img {
  height: 10px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .admin-systems .be-partner .be-partner-content {
    margin-bottom: 40px;
  }
}
.admin-systems .be-partner .card {
  -webkit-box-shadow: 0px 3px 20px 0px rgba(20, 24, 82, 0.17);
          box-shadow: 0px 3px 20px 0px rgba(20, 24, 82, 0.17);
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 18px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-align: center;
}
.admin-systems .be-partner .card .icon img {
  max-width: 140px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .admin-systems .be-partner .card .icon img {
    max-width: 100%;
  }
}
.admin-systems .be-partner .card .icon img:nth-child(1) {
  display: block;
}
.admin-systems .be-partner .card .icon img:nth-child(2) {
  display: none;
}
.admin-systems .be-partner .card p {
  margin: 30px 0;
  color: #141852;
}
.admin-systems .be-partner .card a {
  color: #006eff;
  text-align: right;
}
.admin-systems .be-partner .card a img {
  height: 10px;
}
@media (max-width: 767px) {
  .admin-systems .be-partner .card {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 420px) {
  .admin-systems .be-partner .card {
    max-width: 90%;
    margin: 0 auto 20px;
  }
}
.admin-systems .be-partner .card:hover .icon img:nth-child(1) {
  display: none;
}
.admin-systems .be-partner .card:hover .icon img:nth-child(2) {
  display: block;
}
.admin-systems .be-partner .card:hover p {
  color: #141852;
}
.admin-systems .be-partner .card:hover a {
  color: #fff;
}
.admin-systems .be-partner .card:hover a .fa {
  color: #fff;
}
.admin-systems .be-partner .card:hover.orange-effect {
  background: #f8a541;
}
.admin-systems .be-partner .card:hover.green-effect {
  background: #2e9988;
}

/*
    Clients Testimonals Wrap
*/
.clients-testi-wrap .titles {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clients-testi-wrap .titles h2 {
  font-size: 27px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), to(#084ab6));
  background: linear-gradient(to right, #141852, #084ab6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clients-testi-wrap .titles .slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.clients-testi-wrap .titles .slider-arrows > div {
  margin-right: 20px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.clients-testi-wrap .titles .slider-arrows > div:last-child {
  margin-right: 0;
}
@media (max-width: 430px) {
  .clients-testi-wrap .titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .clients-testi-wrap .titles .slider-arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.clients-testi-wrap .swiper-slide .vector {
  width: 135px;
  height: 135px;
}
.clients-testi-wrap .swiper-slide .vector img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}
.clients-testi-wrap .swiper-slide p {
  font-family: "Gordita Medium";
  font-size: 16px;
  color: #090d48;
  margin: 20px 0;
}
.clients-testi-wrap .swiper-slide h4 {
  font-family: "Gordita Medium";
  font-size: 14px;
  color: #090d48;
  line-height: 1.8;
}
.clients-testi-wrap .swiper-slide h4 span {
  display: block;
  font-size: 12px;
  color: #006eff;
  font-family: "Gordita Regular";
}
@media (max-width: 420px) {
  .clients-testi-wrap .swiper-slide {
    text-align: center;
  }
}

/*
    Contact Us
*/
.contact-us {
  padding: 140px 0 0;
}
.contact-us .contact-form h2 {
  font-family: "Gordita Medium";
  font-size: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#3709a9), color-stop(32%, #4470c3));
  background: linear-gradient(to right, #3709a9, #4470c3 32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.contact-us .contact-form p {
  font-size: 24px;
  color: #141852;
  font-family: "Gordita Regular";
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-us .contact-form .form-group input {
  padding: 15px 5px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3a3d69;
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid #dfe9f7;
  margin-bottom: 25px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.contact-us .contact-form .form-group input:focus {
  border-color: #006eff;
  border-radius: 0;
}
.contact-us .contact-form .form-group textarea {
  padding: 15px 5px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3a3d69;
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid #dfe9f7;
  min-height: 150px;
}
.contact-us .contact-form .submit {
  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;
  margin-top: 30px;
}
.contact-us .contact-form .submit .form-links a {
  color: #006eff;
  font-family: "Gordita Medium";
  font-size: 14px;
  margin-right: 15px;
  text-decoration: underline !important;
  -webkit-text-decoration-color: #006eff;
          text-decoration-color: #006eff;
}
.contact-us .contact-form .submit .form-links a:last-child {
  margin-right: 0;
  color: #7250c0;
  -webkit-text-decoration-color: #7250c0;
          text-decoration-color: #7250c0;
}
.contact-us .contact-form .submit button {
  background-color: #006eff;
  font-family: "Gordita Regular";
  color: #ffffff;
  border: 0;
  padding: 25px 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 50px;
}
.contact-us .contact-form .submit button .fa {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}
.contact-us .contact-form .submit button:hover {
  -webkit-box-shadow: 0px 29px 73px 0px rgba(0, 110, 255, 0.39);
          box-shadow: 0px 29px 73px 0px rgba(0, 110, 255, 0.39);
}
.contact-us .contact-banner {
  height: 600px;
  -webkit-transform: translateX(32%);
          transform: translateX(32%);
}
.contact-us .contact-banner .swiper-container {
  height: 600px;
}
.contact-us .contact-banner img {
  border-radius: 40px;
  height: 100%;
  width: 100%;
}
.contact-us .talkWithUs {
  padding: 5rem 0 1rem;
}
.contact-us .talkWithUs h3 {
  font-size: 30px;
  font-family: "Gordita Regular";
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(50%, #084ab6));
  background: linear-gradient(to right, #141852, #084ab6 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}
.contact-us .talkWithUs h3 img {
  max-width: 30px;
}
.contact-us .talkWithUs .CountryItem {
  padding: 15px 0;
}
.contact-us .talkWithUs .CountryItem p {
  font-family: "Gordita Medium";
  color: #141852;
  margin: 20px 0;
}
.contact-us .talkWithUs .CountryItem p span {
  font-family: "Gordita Regular";
}
.contact-us .talkWithUs .CountryItem ul li {
  position: relative;
  font-family: "Gordita Medium";
  color: #596e7f;
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 10px;
}
.contact-us .talkWithUs .CountryItem ul li:last-child {
  margin-bottom: 5px;
}
.contact-us .talkWithUs .CountryItem ul li::after {
  content: " ";
  width: 10px;
  height: 10px;
  background-color: #3709a9;
  border-radius: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991px) {
  .contact-us .orderFirst {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contact-us .orderLast {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact-us .contact-banner {
    height: auto;
    max-width: 100%;
    margin: 0 auto 40px;
    -webkit-transform: none;
            transform: none;
  }
  .contact-us .contact-banner img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .contact-us .contact-form .submit {
    display: block;
  }
  .contact-us .contact-form .submit .form-links {
    margin-bottom: 20px;
  }
  .contact-us .talkWithUs .CountryItem {
    text-align: center;
  }
}

/*
    Process Page
*/
.process-page {
  padding: 5rem 0;
}
.process-page .process-item {
  position: relative;
  padding: 4rem 0;
}
.process-page .process-item .image {
  height: 500px;
  background-color: transparent;
}
.process-page .process-item .image img {
  max-width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 3px 57px 0px rgba(185, 181, 181, 0.4);
          box-shadow: 0px 3px 57px 0px rgba(185, 181, 181, 0.4);
}
.process-page .process-item .content .step-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.process-page .process-item .content .step-count .mini-progress {
  width: 70px;
  background-color: #efedf4;
  border-radius: 50px;
  height: 10px;
}
.process-page .process-item .content .step-count .mini-progress span {
  background-color: #08c08a;
  display: block;
  height: 100%;
  border-radius: 50px;
}
.process-page .process-item .content .step-count .num {
  font-family: "Gordita Medium";
  color: #0f52e7;
  font-size: 20px;
  margin-left: 15px;
}
.process-page .process-item .content .step-count .num.complete {
  color: #08c08a;
}
.process-page .process-item .content h2 {
  font-family: "Gordita Medium";
  font-size: 45px;
  color: #141852;
  margin: 1.5rem 0;
}
.process-page .process-item .content h2 span {
  font-family: "Gordita Regular";
}
.process-page .process-item .content p {
  font-family: "Gordita Regular";
  color: #141852;
  font-size: 27px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.process-page .process-item .content .value h4 {
  font-family: "Gordita Medium";
  font-size: 16px;
  color: #141852;
}
.process-page .process-item .content .value a {
  color: #336aea;
  text-decoration: underline !important;
  -webkit-text-decoration-color: #336aea;
          text-decoration-color: #336aea;
}
@media (max-width: 991px) {
  .process-page .process-item .content {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  .process-page .process-item .orderFirst {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .process-page .process-item .orderLast {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 520px) {
  .process-page .process-item {
    overflow: hidden;
  }
  .process-page .process-item .content h2 {
    font-size: 30px;
  }
  .process-page .process-item .content p {
    font-size: 20px;
  }
}
.process-page .process-item:nth-child(1)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -30%;
  left: 30%;
  position: absolute;
  opacity: .6;
}
.process-page .process-item:nth-child(2)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line-2.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -20%;
  left: 21%;
  position: absolute;
  opacity: .6;
}
.process-page .process-item:nth-child(3)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -30%;
  left: 30%;
  position: absolute;
  opacity: .6;
}
.process-page .process-item:nth-child(4)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line-2.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -20%;
  left: 21%;
  position: absolute;
  opacity: .6;
}
.process-page .process-item:nth-child(5)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -30%;
  left: 30%;
  position: absolute;
  opacity: .6;
}
.process-page .process-item:nth-child(6)::after {
  content: " ";
  display: block;
  background-image: url(../images/circle-line-2.png);
  background-repeat: no-repeat;
  width: 400px;
  height: 250px;
  bottom: -20%;
  left: 21%;
  position: absolute;
  opacity: .6;
}
@media (max-width: 520px) {
  .process-page .process-item .image img {
    position: relative;
    z-index: 4;
  }
  .process-page .process-item::after {
    z-index: 3;
  }
  .process-page .process-item:nth-child(1)::after {
    height: 100px;
    bottom: -1%;
    left: 40%;
  }
  .process-page .process-item:nth-child(2)::after {
    height: 100px;
    bottom: -4%;
    left: -45%;
  }
  .process-page .process-item:nth-child(3)::after {
    height: 100px;
    bottom: 0%;
    left: 38%;
  }
  .process-page .process-item:nth-child(4)::after {
    height: 100px;
    bottom: 0%;
    left: -45%;
  }
  .process-page .process-item:nth-child(5)::after {
    height: 100px;
    bottom: 0%;
    left: 40%;
  }
  .process-page .process-item:nth-child(6)::after {
    height: 100px;
    bottom: 0%;
    left: -45%;
  }
}

/*
    Services Page
*/
.services-page {
  padding: 4rem 0;
}
.services-page .servcies-items .item {
  -webkit-box-shadow: 0px 4px 13px 0px rgba(139, 145, 155, 0.2);
          box-shadow: 0px 4px 13px 0px rgba(139, 145, 155, 0.2);
  border-radius: 25px;
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
}
.services-page .servcies-items .item .icon img {
  max-width: 50px;
}
.services-page .servcies-items .item h2 {
  font-family: "Gordita Bold";
  font-size: 40px;
  color: #141852;
  margin: 30px 0;
}
.services-page .servcies-items .item p {
  color: #141852;
  font-family: "Gordita Regular";
  font-size: 22px;
  line-height: 1.6;
}
.services-page .servcies-items .item ul li {
  position: relative;
  font-family: "Gordita Medium";
  color: #4f5170;
  font-size: 14px;
  padding: 10px 0;
  vertical-align: middle;
}
.services-page .servcies-items .item ul li:last-child {
  margin-bottom: 0;
}
.services-page .servcies-items .item ul li::before {
  content: " ";
  display: inline-block;
  width: 35px;
  background-color: #3807a7;
  border-radius: 50px;
  height: 6px;
  margin-right: 15px;
}
.services-page .servcies-items .item.translated {
  -webkit-transform: translateY(-170px);
          transform: translateY(-170px);
}
@media (max-width: 767px) {
  .services-page .servcies-items .item.translated {
    -webkit-transform: none;
            transform: none;
  }
}

/*
    Work Page
*/
.work-page {
  padding: 140px 0 60px;
}
.work-page .titles {
  margin-bottom: 4rem;
}
.work-page .titles h2 {
  font-family: "Gordita Regular";
  font-size: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#3709a9), color-stop(55%, #4470c3));
  background: linear-gradient(to right, #3709a9, #4470c3 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.work-page .titles h2 span {
  font-family: "Gordita Bold";
}
.work-page .titles p {
  font-size: 19px;
  color: #141852;
  font-family: "Gordita Regular";
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
}
.work-page .work-item {
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  margin-bottom: 2rem;
}
.work-page .work-item > img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.work-page .work-item .caption {
  position: absolute;
  top: 30px;
  left: 30px;
}
.work-page .work-item .caption h3 {
  color: #ffffff;
  font-family: "Gordita Bold";
}
.work-page .work-item .caption p {
  font-family: "Gordita Medium";
  color: #ffffff;
  max-width: 300px;
  font-size: 15px;
}
.work-page .work-item .iconLogo {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  border-radius: 40px;
  line-height: 100px;
  text-align: center;
  background-color: #fff;
}
.work-page .work-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.work-page .work-item .overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50px;
  background-color: #fff;
  padding: 22px 27px;
  min-width: 200px;
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 15px;
  text-align: center;
}
.work-page .work-item:hover .overlay {
  opacity: 1;
}
@media (max-width: 567px) {
  .work-page .work-item {
    height: auto;
  }
  .work-page .work-item > img {
    height: 100%;
  }
  .work-page .work-item .iconLogo {
    width: 50px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    border-radius: 15px;
  }
  .work-page .work-item .iconLogo img {
    max-width: 80%;
  }
}

/*
    frameWORK Page
*/
.framework-page {
  padding: 4rem 0;
}
.framework-page .what-framework {
  padding: 2rem 0;
}
.framework-page .what-framework .brief h2 {
  color: #141852;
  font-family: "Gordita Regular";
  font-size: 30px;
}
.framework-page .what-framework .brief h2 span {
  font-family: "Gordita Medium";
  color: #084ab6;
}
.framework-page .what-framework .brief h4 {
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 20px;
  margin: 1.3rem 0;
  line-height: 1.6;
}
.framework-page .what-framework .brief p {
  font-family: "Gordita Regular";
  color: #787a9e;
  font-size: 16px;
}
.framework-page .what-framework .explan-img {
  text-align: center;
}
.framework-page .what-framework .explan-img p {
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 14px;
}
.framework-page .what-framework .explan-img img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.framework-page .what-framework .explan-img ul {
  margin-top: 20px;
}
.framework-page .what-framework .explan-img ul li {
  display: inline-block;
  margin-right: 20px;
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 14px;
}
.framework-page .what-framework .explan-img ul li .fa {
  display: block;
  font-size: 20px;
}
.framework-page .what-framework .explan-img ul li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .framework-page .what-framework .brief {
    margin-bottom: 40px;
  }
}
.framework-page .what-framework .membersOfTeam p {
  -webkit-transform: skewY(2deg);
          transform: skewY(2deg);
  margin-bottom: 0;
  position: relative;
  z-index: 222;
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 15px;
}
.framework-page .what-framework .membersOfTeam li {
  position: relative;
  background: #b3d0fd;
  padding: 25px 0;
  text-align: center;
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 16px;
}
.framework-page .what-framework .membersOfTeam li:first-child {
  background-color: #b3d0fd;
}
.framework-page .what-framework .membersOfTeam li:first-child::after {
  content: '';
  display: block;
  width: 100%;
  height: 23px;
  position: absolute;
  top: -13px;
  background: #fff;
  -webkit-transform: skewY(2deg);
          transform: skewY(2deg);
}
.framework-page .what-framework .membersOfTeam li:nth-child(2) {
  background: -webkit-gradient(linear, left top, right top, from(#c2d8fa), color-stop(50%, #d8e6fc));
  background: linear-gradient(to right, #c2d8fa, #d8e6fc 50%);
}
.framework-page .what-framework .membersOfTeam li:nth-child(3) {
  background: #d8e6fc;
}
.framework-page .what-framework .membersOfTeam li:nth-child(4) {
  background: #eaf2fe;
}
.framework-page .mob {
  display: none;
  -webkit-box-shadow: 1.5px 2.598px 13px 0px rgba(20, 24, 82, 0.067);
          box-shadow: 1.5px 2.598px 13px 0px rgba(20, 24, 82, 0.067);
  border-radius: 45px;
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 567px) {
  .framework-page .mob {
    display: block;
  }
  .framework-page .mob img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
  .framework-page .mob p {
    color: #141852;
    font-family: "Gordita Regular";
    font-size: 14px;
    margin-top: 15px;
  }
  .framework-page .mob .btn {
    display: block;
  }
  .framework-page .mob .btn a {
    background-color: #006eff;
    color: #fff;
    font-family: "Gordita Medium";
    font-size: 14px;
  }
}
.framework-page .benefits {
  padding: 2rem 0;
}
.framework-page .benefits .card {
  border: 0;
}
.framework-page .benefits .card > h2 {
  font-size: 30px;
  color: #141852;
  margin-bottom: 2rem;
}
.framework-page .benefits .card > h2 span {
  font-family: "Gordita Medium";
  color: #084ab6;
}
.framework-page .benefits .benefit-item {
  padding: 2rem 0;
}
.framework-page .benefits .benefit-item .icon {
  width: 110px;
  height: 100px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 6px 29px 0px rgba(139, 145, 155, 0.17);
          box-shadow: 0px 6px 29px 0px rgba(139, 145, 155, 0.17);
  text-align: center;
  line-height: 90px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.framework-page .benefits .benefit-item .icon img {
  max-width: 35px;
}
.framework-page .benefits .benefit-item h3 {
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 18px;
  margin: 2.5rem 0 1rem;
}
.framework-page .benefits .benefit-item p {
  font-family: "Gordita Regular";
  color: #3e4061;
  font-size: 16px;
}
@media (max-width: 576px) {
  .framework-page .benefits .benefit-item {
    text-align: center;
  }
  .framework-page .benefits .benefit-item .icon {
    display: block;
    margin: 0 auto;
  }
}
.framework-page .benefits .benefit-item:hover .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media (max-width: 991px) {
  .framework-page .orderFirst {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .framework-page .orderLast {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 567px) {
  .framework-page .card > img {
    display: none !important;
  }
}

/*
    Study Page
*/
.study-page {
  padding: 5rem 0;
  overflow-x: hidden;
}
.study-page .study__brief {
  text-align: center;
}
.study-page .study__brief > img {
  max-width: 250px;
  margin: 0 auto;
}
.study-page .study__brief p {
  font-family: "Gordita Regular";
  font-size: 21px;
  color: #141852;
  max-width: 750px;
  margin: 40px auto 0;
}
.study-page .app-screens {
  padding: 6rem 0;
}
.study-page .app-screens .app-screen_item {
  background-color: #eef3f7;
  padding: 40px 50px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  height: 620px;
}
.study-page .app-screens .app-screen_item h3 {
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 20px;
}
.study-page .app-screens .app-screen_item h3::before {
  content: " ";
  display: inline-block;
  width: 35px;
  background-color: #006eff;
  border-radius: 50px;
  height: 6px;
  margin-right: 15px;
}
.study-page .app-screens .app-screen_item p {
  font-family: "Gordita Regular";
  color: #595c7c;
  font-size: 16px;
  margin-left: 50px;
}
.study-page .app-screens .app-screen_item img {
  max-width: 100%;
  margin: 2rem auto 0;
  display: block;
  max-height: 600px;
}
.study-page .app-screens .app-screen_item.withSpace {
  position: relative;
  top: 13%;
}
@media (max-width: 767px) {
  .study-page .app-screens .app-screen_item.withSpace {
    top: 0;
  }
}
@media (max-width: 767px) {
  .study-page .app-screens .app-screen_item {
    height: auto;
    margin-bottom: 3rem;
  }
}
.study-page .curved-quote {
  background-image: url(../images/study-curve-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 780px;
  overflow: hidden;
  margin: 10rem 0 0;
}
.study-page .curved-quote .curved-quote__content {
  padding: 5rem 2rem;
}
.study-page .curved-quote .curved-quote__content h3 {
  font-family: "Gordita Medium";
  color: #ffffff;
  font-size: 40px;
  font-size: 33px;
  line-height: 1.5;
}
.study-page .curved-quote .curved-quote__content h3 span {
  font-size: 100px;
  color: #006eff;
  margin-bottom: 2rem;
  display: block;
}
.study-page .curved-quote .curved-quote__content h4 {
  font-family: "Gordita Medium";
  color: #6895ce;
  font-size: 23px;
  margin-top: 2rem;
}
.study-page .curved-quote img {
  max-width: 140%;
  display: block;
  position: relative;
  left: -25%;
}
@media (max-width: 567px) {
  .study-page .curved-quote img {
    max-width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .study-page .curved-quote {
    margin: 0;
    height: auto;
    max-height: 100%;
    overflow: visible;
  }
}
.study-page .curved-quote.black {
  background-image: url(../images/study-curve--black-bg.png);
  padding: 4rem 0;
}
@media (max-width: 567px) {
  .study-page .curved-quote.black {
    background-position: center;
  }
}
.study-page .curved-quote.black .curved-quote__content h4 {
  color: #fff;
}
.study-page .project-scope {
  padding: 5rem 0;
}
.study-page .project-scope h2 {
  font-family: "Gordita Regular";
  font-size: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(25%, #4470c3));
  background: linear-gradient(to right, #141852, #4470c3 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.study-page .project-scope p {
  font-family: "Gordita Regular";
  font-size: 22px;
  color: #141852;
}
.study-page .project-scope .steps {
  margin-top: 2rem;
}
.study-page .project-scope .steps .multi-steps > li.is-active:before, .study-page .project-scope .steps .multi-steps > li.is-active ~ li:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
}
.study-page .project-scope .steps .multi-steps > li.is-active:after, .study-page .project-scope .steps .multi-steps > li.is-active ~ li:after {
  background-color: #e8e9f1;
}
.study-page .project-scope .steps .multi-steps {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.study-page .project-scope .steps .multi-steps > li {
  counter-increment: stepNum;
  display: table-cell;
  position: relative;
  color: #0f9df7;
}
.study-page .project-scope .steps .multi-steps > li p {
  font-family: "Gordita Bold";
  font-size: 13px;
  color: #141852;
  margin-bottom: 8px;
}
.study-page .project-scope .steps .multi-steps > li h3 {
  font-family: "Gordita Bold";
  color: #141852;
  font-size: 18px;
}
.study-page .project-scope .steps .multi-steps > li h3 span {
  display: block;
  font-family: "Gordita Regular";
  margin-top: 5px;
}
.study-page .project-scope .steps .multi-steps > li:before {
  content: '';
  display: block;
  margin-bottom: 15px;
  background-color: #0f9df7;
  width: 15px;
  height: 15px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  border-width: 2px;
  border-style: solid;
  border-color: #0f9df7;
  border-radius: 50%;
}
.study-page .project-scope .steps .multi-steps > li:after {
  content: '';
  height: 2px;
  width: 100%;
  background-color: #e8e9f1;
  position: absolute;
  top: 7px;
  left: 0;
  z-index: -1;
}
.study-page .project-scope .steps .multi-steps > li:last-child:after {
  display: none;
}
.study-page .project-scope .steps .multi-steps > li.is-active:before {
  background-color: #fff;
  border-color: #0f9df7;
}
.study-page .project-scope .steps .multi-steps > li.is-active ~ li {
  color: #808080;
}
.study-page .project-scope .steps .multi-steps > li.is-active ~ li:before {
  background-color: #e8e9f1;
  border-color: #e8e9f1;
}
@media (max-width: 767px) {
  .study-page .project-scope .steps .multi-steps {
    display: block;
  }
  .study-page .project-scope .steps .multi-steps > li {
    display: list-item;
    padding: 0 0 1rem 0;
  }
}

/*
    Similar Cases 
*/
.similarCases .titles {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.similarCases .titles h2 {
  font-size: 27px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), to(#084ab6));
  background: linear-gradient(to right, #141852, #084ab6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.similarCases .titles .slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.similarCases .titles .slider-arrows > div {
  margin-right: 20px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.similarCases .titles .slider-arrows > div:last-child {
  margin-right: 0;
}
@media (max-width: 430px) {
  .similarCases .titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .similarCases .titles .slider-arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.similarCases .work-item {
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  margin-bottom: 2rem;
  height: 500px;
}
.similarCases .work-item > img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  height: 100%;
}
.similarCases .work-item .caption {
  position: absolute;
  top: 30px;
  left: 30px;
}
.similarCases .work-item .caption h3 {
  color: #ffffff;
  font-family: "Gordita Bold";
}
.similarCases .work-item .caption p {
  font-family: "Gordita Medium";
  color: #ffffff;
  max-width: 300px;
  font-size: 15px;
}
.similarCases .work-item .iconLogo {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  border-radius: 40px;
  line-height: 100px;
  text-align: center;
  background-color: #fff;
}
.similarCases .work-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.similarCases .work-item .overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50px;
  background-color: #fff;
  padding: 20px 15px;
  min-width: 195px;
  font-family: "Gordita Medium";
  color: #141852;
  font-size: 15px;
  text-align: center;
}
.similarCases .work-item:hover .overlay {
  opacity: 1;
}
.similarCases .wide {
  width: 60% !important;
}
@media (max-width: 767px) {
  .similarCases .wide {
    width: 100% !important;
  }
}
.similarCases .normal {
  width: 30% !important;
}
@media (max-width: 767px) {
  .similarCases .normal {
    width: 100% !important;
  }
}

/*
    Footer
*/
.main-footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.main-footer .haveProduct {
  text-align: center;
}
.main-footer .haveProduct p {
  font-size: 27px;
  background: -webkit-gradient(linear, left top, right top, from(#141852), color-stop(80%, #084ab6));
  background: linear-gradient(to right, #141852, #084ab6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
.main-footer .haveProduct a {
  background-color: #006eff;
  padding: 20px 40px;
  border-radius: 50px;
  color: #fff;
  -webkit-box-shadow: 0px 29px 73px 0px rgba(0, 110, 255, 0.39);
          box-shadow: 0px 29px 73px 0px rgba(0, 110, 255, 0.39);
  display: inline-block;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.main-footer .haveProduct a:hover {
  background-color: #fff;
  color: #006eff;
}
.main-footer .footLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 70px;
}
.main-footer .footLinks .logo img {
  max-width: 140px;
}
.main-footer .footLinks .links ul li {
  display: inline-block;
  margin-right: 25px;
}
.main-footer .footLinks .links ul li a {
  color: #090d48;
  font-family: "Gordita Medium";
  font-size: 13px;
}
.main-footer .footLinks .links ul li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .main-footer .footLinks .links ul {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .main-footer .footLinks .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-footer .footLinks .socail a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  color: #000;
  font-size: 20px;
}
@media (max-width: 576px) {
  .main-footer .footLinks {
    display: block;
    text-align: center;
  }
  .main-footer .footLinks .logo {
    margin-bottom: 20px;
  }
  .main-footer .footLinks .links {
    margin-bottom: 20px;
  }
}
@media (max-width: 567px) {
  .main-footer {
    background-position-x: -5px;
    background-image: url(../images/footer-bg-mobile.png);
    background-position: 45%;
  }
}

/*
    Responsive - Mobile Media
*/
@media (max-width: 520px) {
  .contact-us .contact-banner img {
    height: auto;
  }

  .contact-us .contact-banner .swiper-container {
    height: auto;
  }

  .contact-us .contact-form {
    text-align: center;
  }
  .contact-us .contact-form p {
    font-size: 22px;
  }
  .contact-us .contact-form .submit button {
    width: 100%;
  }
  .contact-us .contact-form .submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-us .contact-form .submit .form-links {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
  .contact-us .talkWithUs h3 {
    text-align: center;
  }
  .contact-us .talkWithUs .CountryItem {
    text-align: left;
    padding: 15px;
  }

  .clients-testi-wrap .swiper-slide {
    text-align: left;
    padding: 15px;
  }

  .main-footer .footLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .main-footer .footLinks .socail {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1.5rem;
  }
  .main-footer .footLinks .links {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 2.5rem;
  }
  .main-footer .footLinks .links ul li {
    margin-right: 15px;
  }
  .main-footer .footLinks .logo {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  header.main-header .logo img:first-child {
    display: none;
  }
  header.main-header .logo img.colord {
    display: block !important;
  }
  header.main-header .innerWrap .nav-items > li {
    color: #141852 !important;
  }
  header.main-header .innerWrap .mobile-menu .mobile-menu-items .getBtn {
    display: block !important;
  }
  header.main-header .innerWrap.white .toggle-nav .toggle-btn span {
    background-color: #fff !important;
  }
  header.main-header .innerWrap.white .navButtons .toggle-nav .toggle-btn::after {
    color: #fff !important;
  }
  header.main-header .innerWrap .navButtons .getBtn {
    color: #141852;
  }
  header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn span {
    background-color: #141852;
  }
  header.main-header .innerWrap .navButtons .toggle-nav .toggle-btn::after {
    color: #141852;
  }

  .main-section.insideMainSection {
    background-image: none;
    min-height: auto;
    padding: 110px 0 0;
    overflow: visible;
  }
  .main-section.insideMainSection.study {
    background-image: url(../images/study-bg.jpg);
    padding: 110px 0;
    border-bottom-right-radius: 100px;
    background-position: 100%;
  }
  .main-section.insideMainSection.study .main-section-content h1 {
    color: #fff;
  }
  .main-section.insideMainSection.study .main-section-content p {
    color: #fff;
  }
  .main-section.insideMainSection.study .main-section-content {
    text-align: center;
  }
  .main-section.insideMainSection.study .apps {
    width: 100%;
    text-align: center;
  }
  .main-section.insideMainSection .down {
    display: none;
  }
  .main-section.insideMainSection .main-section-content {
    text-align: left;
  }
  .main-section.insideMainSection .main-section-content h1 {
    color: #3212b0;
    font-size: 32px;
  }
  .main-section.insideMainSection .main-section-content p {
    color: #141852;
    font-size: 19px;
  }
  .main-section.insideMainSection .main-section-content h1 span {
    background: none;
    -webkit-text-fill-color: #141852;
  }

  .process-page {
    padding: 2rem 0;
  }
  .process-page .process-item {
    padding-top: 0;
  }
  .process-page .process-item .content {
    margin-bottom: 2rem;
  }
  .process-page .orderFirst {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .process-page .orderLast {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .framework-page .orderFirst {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .framework-page .orderLast {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .framework-page .brief {
    margin-top: 40px;
  }
}
