
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
}

/*
========================================
Start Basic Setup
========================================
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul li {
  list-style-type: none;
}

a,
span,
label {
  display: inline-block;
}

a,
a:focus {
  text-decoration: none;
}

button,
input,
textarea,
button:focus,
input:focus,
textarea:focus {
  outline: 0;
  border: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
p,
hr {
  margin: 0;
  padding: 0;
}

/*
========================================
End Basic Setup
========================================
*/

/*
========================================
Start Font Size
========================================
*/

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-60 {
  font-size: 60px;
}

.font-size-72 {
  font-size: 72px;
}

/*
========================================
End Font Size
========================================
*/

/*
========================================
Start Font Color
========================================
*/

.font-color-ff {
  color: #fff;
}

.font-color-0f {
  color: #0f66dc;
}

.font-color-2c {
  color: #2c2c2c;
}

.font-color-74 {
  color: #748494;
}

.font-color-23 {
  color: #232323;
}

.font-color-00 {
  color: #000000;
}

.font-color-8a {
  color: #8a8a8a;
}

/*
========================================
End Font Color
========================================
*/

/*
========================================
Start Background Color
========================================
*/

.bg-color-ff {
  background: #fff;
}

.bg-color-0f {
  background: #0f66dc;
}

.bg-color-f0 {
  background: #f0f8ff;
}

.bg-color-23 {
  background: #232323;
}

/*
========================================
End Background Color
========================================
*/

/*
========================================
Start Reusable Components
========================================
*/

.btn-1 {
  width: 190px;
  height: 70px;
  border-radius: 35px;
  line-height: 70px;
}

.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.hvr-bounce-out:hover,
.hvr-bounce-out:focus,
.hvr-bounce-out:active {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  -o-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.transition-ease-3s {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.transition-ease-5s {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.transition-linear-3s {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.transition-linear-5s {
  -webkit-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  transition: 0.5s linear;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #fff;
  height: 3px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}
/*
========================================
End Reusable Components
========================================
*/

/*
====================
Start Preloader
====================
*/

.preloader {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 99999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #fff;
}

/*
====================
End Preloader
====================
*/

/*
========================================
Start Header Section Css
========================================
*/

.header-section {
  background: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-bg.png");
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-bg.png");
/*  height: 128vh;*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 300px;
}

.nav {
  padding: 20px 0px;
}
.hero-section{
  padding-bottom: 215px;
}
.hero-content {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
/*  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
}

.hero-content span {
  margin-bottom: 18px;
}

/*
======================
Start Curve Css             
======================                      
*/

.custom-shape-divider-bottom-1628750158 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1628750158 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1628750158 .shape-fill {
  fill: #ffffff;
}

/*
======================
End Curve Css             
======================                      
*/

/*
======================
MOBILE MENU             
======================                      
*/

.mobile-menu .hamburger-menu {
  width: 35px;
  height: 30px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -ms-flex-pack: distribute;
  justify-content: space-around;
  right: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  cursor: pointer;
}

.hamburger-menu .line {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  background: #fff;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}

.change .line-1 {
  transform: rotateZ(-45deg) translate(-8px, 6px);
  -webkit-transform: rotateZ(-45deg) translate(-8px, 6px);
  -moz-transform: rotateZ(-45deg) translate(-8px, 6px);
  -o-transform: rotateZ(-45deg) translate(-8px, 6px);
  -ms-transform: rotateZ(-45deg) translate(-8px, 6px);
}

.change .line-2 {
  opacity: 0;
}

.change .line-3 {
  transform: rotateZ(45deg) translate(-8px, -6px);
  -webkit-transform: rotateZ(45deg) translate(-8px, -6px);
  -moz-transform: rotateZ(45deg) translate(-8px, -6px);
  -o-transform: rotateZ(45deg) translate(-8px, -6px);
  -ms-transform: rotateZ(45deg) translate(-8px, -6px);
}

.mobile-menu .nav-list {
  background: #0f66dc;
  position: fixed;
  left: -400px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  height: 100%;
  width: 400px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: left 0.8s;
  -webkit-transition: left 0.8s;
  -moz-transition: left 0.8s;
  -o-transition: left 0.8s;
  -ms-transition: left 0.8s;
}

.slide-menu {
  left: 0 !important;
}

.nav-list ul {
  text-align: center;
  padding: 0px;
}

.nav-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.nav-list ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    padding: 6px 0px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    font-family: "Inter-400";
}
/*
===================================
Start Sticky Menu
===================================
*/

.nav.stick {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999999;
  background-color: rgba(17, 17, 17, .7);
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*
===================================
End Sticky Menu
===================================
*/

/*
========================================
End Header Section Css
========================================
*/

/*
========================================
Start Features Section Css
========================================
*/

.features-section {
    overflow: hidden;
    bottom: -250px;
    width: 100%;
}

.features-section .row {
  margin-right: -30px;
  margin-left: -30px;
}

.features-section .row > * {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
}

.features-item {
  border: 1px solid #e4e4e4;
  border-radius: 7px;
  background: #fff;
  padding-left: 8px;
  padding-right: 8px;
  transition: border .3s ease-in;
}
.features-item:hover{
  border: 1px solid transparent;
}
.features-item:hover span,
.features-item:hover h3,
.features-item:hover p,
.features-item:hover a {
  color: #fff;
}

.translate-hvr {
  -webkit-transition: -webkit-transform 0.7s linear;
  transition: -webkit-transform 0.7s linear;
  -o-transition: transform 0.7s linear;
  transition: transform 0.7s linear;
  transition: transform 0.7s linear, -webkit-transform 0.7s linear;
}

.translate-hvr:hover {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.bg-hvr {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.bg-hvr:hover {
  background: #0f66dc;
}

.features-item h3 {
  margin-bottom: 22px;
}

.features-item p {
  margin-bottom: 13px;
}

/*
========================================
End Features Section Css
========================================
*/

/*
========================================
Start Counter Up Section Css
========================================
*/

.counter-section {
  padding-bottom: 117px;
}

.counter-title h2 {
  max-width: 917px;
}

.counter-content h3 {
  margin-top: -4px;
  margin-bottom: 22px;
}

/*
========================================
End Counter Up Section Css
========================================
*/

/*
========================================
Start Redefine Section Css
========================================
*/

.redefine-desc h3 {
  margin-right: 132px !important;
  margin-bottom: 22px;
}

.redefine-desc p {
  margin-right: 140px;
}

.redefine-img {
  padding-left: 18px;
}

.redefine-img img {
  border-radius: 7px;
  width: 100%;
}

.redefine-btn a {
  display: inline-block !important;
}

/*
========================================
End Redefine Section Css
========================================
*/

/*
========================================
Start Brand Section Css
========================================
*/

.brand-section {
  overflow: hidden;
  padding-bottom: 120px;
}

/*
========================================
End Brand Section Css
========================================
*/

/*
========================================
Start Technologies Section Css
========================================
*/

.technologies-img img {
  width: 100%;
}

.technologies-desc h3 {
  max-width: 453px;
  line-height: 36px;
}

.technologies-desc p {
  max-width: 430px;
}

/*
========================================
End Technologies Section Css
========================================
*/

/*
========================================
Start Service Section Css
========================================
*/

.service-section {
  padding-top: 114px;
  padding-bottom: 127px;
}

.service-section .row {
  margin-left: -30px;
  margin-right: -30px;
}

.service-section .row > * {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
}

.service-title h2 {
  max-width: 937px;
  margin-bottom: 32px;
}

.service-title p {
  max-width: 540px;
}

.service-box {
  border: 1px solid #e4e4e4;
  border-radius: 7px;
}

.service-box:hover {
  background: #f0f8ff;
}

.service-box:hover a {
  bottom: -40px;
  visibility: visible;
  opacity: 1;
}

.service-box span:not(:last-child) {
  margin-bottom: 14px;
}

.service-box a {
  background: #0f66dc;
  height: 80px;
  visibility: hidden;
  opacity: 0;
  width: 80px;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  line-height: 80px;
}

/*
========================================
End Service Section Css
========================================
*/

/*
========================================
Start Latest Project Section Css
========================================
*/

.latest-project {
  overflow: hidden;
}

.title-container {
  padding-top: 110px;
  padding-bottom: 53px;
}

.latest-project-title h2 {
  max-width: 937px;
  margin-bottom: 32px;
}

.latest-project-title p {
  max-width: 540px;
}
.latest-project i.icon-arrow-circle-left-solid,
.latest-project i.icon-arrow-circle-right-solid {
  font-size: 36px;
}

.partialViewSlider-prev {
  left: 215px;
}

.partialViewSlider-next {
  right: 215px;
}

/*
========================================
Start Latest Project Section Css
========================================
*/

/*
========================================
Start Consulting Section Css
========================================
*/

.consulting-section {
  overflow: hidden;
  background: url("../images/consulting-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
}

.consulting-section .row .col-xl-6:first-child {
  width: 450px;
}

.consulting-section .row .col-xl-6:last-child {
  width: 720px;
}

.inner-row {
  margin-left: -10px;
  margin-right: -10px;
}

.inner-row > * {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

.consulting-box {
  background: #eff7ff;
  border-radius: 7px;
}

.consulting-box h3 {
  margin-top: 8px;
  margin-bottom: 24px;
}

/*
========================================
End Consulting Section Css
========================================
*/

/*
========================================
Start Newslatter Section Css
========================================
*/

.newslatter-field form {
  width: 550px;
  border: 1px solid #e5e5e5;
  background: #f5f8fd;
  border-radius: 35px;
}

.newslatter-field form input[type="email"] {
  width: 323px;
  background: transparent;
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]:focus {
  background: transparent;
}

.newslatter-field form input[type="email"]::-webkit-input-placeholder {
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]::-moz-placeholder {
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]:-ms-input-placeholder {
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]::-ms-input-placeholder {
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]::placeholder {
  font-family: "Inter-400";
  color: #a7a7a7;
}

.newslatter-field form input[type="email"]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.newslatter-field form input[type="submit"] {
  text-transform: capitalize !important;
}

/*
========================================
End Newslatter Section Css
========================================
*/

/*
========================================
Start Footer Section Css
========================================
*/
.footer-section {
  overflow: hidden;
}

.social-icon ul li {
  margin-right: 12px;
}
/*
========================================
End Foooter Section Css
========================================
*/

/*
===================================
Start Scroll to Top 
===================================
*/

.scroll-top {
  display: none;
  position: fixed;
  right: 30px;
  height: 40px;
  width: 40px;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  line-height: 40px;
  text-align: center;
  background: #2D80F1;
  bottom: 40px;
}

/* Bob */

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.hvr-bob {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.4s, 1.5s;
  animation-duration: 0.4s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/*
===================================
End Scroll to Top 
===================================
*/

/*
.technologies-img{
  background:url('../images/technologies-img.png');
}*/