/**
* Template Name: Vesperr - v4.0.1
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


@font-face {
  font-family: Regular;
  src: url(../font/AvenirNextLTPro-Regular.otf);
}

@font-face {
  font-family: HeavyCn;
  src: url(../font/AEH.ttf);
}

@font-face {
  font-family: MediumCn;
  src: url(../font/AvenirMedium.ttf);
}

@font-face {
  font-family: roman;
  src: url(../font/avenirroman.otf);
}







body {
  font-family: HeavyCn;
  /* overflow: hidden; */
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

@media (min-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 976px!important;
}
}








/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #853FE4;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover i {
  color: #853FE4;
}

.back-to-top:hover {
  background: #fff;
  border: 1px solid #853FE4;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0!important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 33px 0;
  background: transparent;
}



#header .logo2{
  display: none;
}



#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  /* background-image: linear-gradient(to bottom right, #fff,#853FE4, #5842DD); */
  background-color:#fff ;

}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}


/* 
@media (max-width: 575.98px) { 
  #header .logo1{
    display: none;
  }

  #header .logo2{
    display: block;
  }

 
 } */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  margin-right: 10px;
}

.navbar li {
  position: relative;
}

#header.header-scrolled a.nav-link.scrollto{
  color:#5842DD;
}

#header.header-scrolled .navbar > ul > li > a:before{
  background-color:#5842DD; ;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 10px 18px;
  font-size: 14px;
  /* font-weight: 500; */
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/* 
.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
} */

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: calc(100% - 31px);
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 7px;
  border-radius: 2px;
  left: 25px;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}


.navbar .getstarted {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #4aa3df;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #3498db;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #853FE4;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3498db;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# social Section
--------------------------------------------------------------*/
.social-media-links{
  top: 61%;
  position: fixed;
  z-index: 10000;
}
.social-media-links a{
  font-size: 20px;
    display: block;
    color: #BDC9D9;
    line-height: 1;
    padding: 12px 0;
    margin-right: 4px;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    text-align: center;
    width: 69px;
    height: 46px;
    transition: 0.5s;

}
.social-media-links a:hover{
    background-image: linear-gradient(to right, #5842DD , #853FE4);
    color: #fff;
}

@media (max-width: 1199.98px) { 
  .social-media-links{
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  /* height: 100vh; */
  position: relative;
  background: url(../img/headerBg.png)top center no-repeat;
  background-size: cover;
  padding-top: 110px;
  padding: 90px 0;
  
}

/* #hero h1 {
  margin: 0 0 10px 0;
  font-size: 37px;
  color: #222D39;
  font-family: HeavyCn;
} */

#hero .hero-develping-it{
  margin: 156px 0 7px 0;
  font-size: 37px;
  color: #222D39;
  line-height: 46px;
  font-family: HeavyCn;
}

#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .weDevelop{
    color: #677294;
    font-size: 16px;
    line-height: 28px;
    /* font-weight: 500; */
    font-family: MediumCn;
}





/*animation shape*/

@-webkit-keyframes p1 {
  0% {
      left: 0px;
      top: 0px
  }
  50% {
      left: 0;
      top: 800px
  }
  100% {
      left: 0px;
      top: 0px
  }
}

@keyframes p1 {
  0% {
      left: 800px;
      top: 0px
  }
  50% {
      left: 0px;
      top: 800px
  }
  100% {
      left: 800px;
      top: 0px
  }
}

@-webkit-keyframes p2 {
  0% {
      left: 0;
      top: 100px
  }
  50% {
      left: 0;
      top: 800px
  }
  100% {
      left: 0;
      top: 100px
  }
}

@keyframes p2 {
  0% {
      left: 0;
      top: 100px
  }
  50% {
      left: 0px;
      top: 800px
  }
  100% {
      left: 0;
      top: 100px
  }
}

@-webkit-keyframes p3 {
  0% {
      left: 300px;
      top: 900px
  }
  50% {
      left: 500px;
      top: 0px
  }
  100% {
      left: 300px;
      top: 900px
  }
}

@keyframes p3 {
  0% {
      left: 300px;
      top: 900px
  }
  50% {
      left: 500px;
      top: 0px
  }
  100% {
      left: 300px;
      top: 900px
  }
}

@-webkit-keyframes p4 {
  0% {
      left: 1000px;
      top: 500px
  }
  50% {
      left: 00px;
      top: 500px
  }
  100% {
      left: 1000px;
      top: 500px
  }
}

@keyframes p4 {
  0% {
      left: 1000px;
      top: 500px
  }
  50% {
      left: 0px;
      top: 500px
  }
  100% {
      left: 1000px;
      top: 500px
  }
}

@-webkit-keyframes p5 {
  0% {
      left: 500px;
      top: 1000px
  }
  50% {
      left: 50%;
      top: 0px
  }
  100% {
      left: 500px;
      top: 1000px
  }
}

@keyframes p5 {
  0% {
      left: 500px;
      top: 1000px
  }
  50% {
      left: 50%;
      top: 0px
  }
  100% {
      left: 500px;
      top: 1000px
  }
}

@-webkit-keyframes p6 {
  0% {
      left: 500px;
      top: 200px
  }
  50% {
      left: 50%;
      top: 70%
  }
  100% {
      left: 500px;
      top: 200px
  }
}

@keyframes p6 {
  0% {
      left: 500px;
      top: 200px
  }
  50% {
      left: 50%;
      top: 70%
  }
  100% {
      left: 500px;
      top: 200px
  }
}

@-webkit-keyframes p7 {
  0% {
      left: 50px;
      top: 10%
  }
  50% {
      left: 50%;
      top: 10%
  }
  100% {
      left: 50px;
      top: 10%
  }
}

@keyframes p7 {
  0% {
      left: 50px;
      top: 10%
  }
  50% {
      left: 50%;
      top: 10%
  }
  100% {
      left: 50px;
      top: 10%
  }
}

@-webkit-keyframes p8 {
  0% {
      left: 0;
      top: 20%
  }
  50% {
      left: 50%;
      top: 20%
  }
  100% {
      left: 0;
      top: 20%
  }
}

@keyframes p8 {
  0% {
      left: 0;
      top: 20%
  }
  50% {
      left: 50%;
      top: 20%
  }
  100% {
      left: 0;
      top: 20%
  }
}

@-webkit-keyframes p9 {
  0% {
      left: 1000px;
      top: 100px
  }
  50% {
      left: 500px;
      top: 950px
  }
  100% {
      left: 1000px;
      top: 100px
  }
}

@keyframes p9 {
  0% {
      left: 1000px;
      top: 100px
  }
  50% {
      left: 500px;
      top: 950px
  }
  100% {
      left: 1000px;
      top: 100px
  }
}



.circles {
  overflow: hidden;
  /* width: 100%;
  position: absolute;
  height: 1200px; */
}

.animated-point-1 {
  background-color: red;
  height: 12px;
  width: 12px;
  position: relative;
  -webkit-animation-name: p1;
  -webkit-animation-duration: 80s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p1;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

.animated-point-2 {
  background-color: green;
  height: 15px;
  width: 15px;
  position: relative;
  -webkit-animation-name: p2;
  -webkit-animation-duration: 90s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p2;
  animation-duration: 90s;
  animation-iteration-count: infinite;
}

.animated-point-3 {
  background-color: orange;
  height: 8px;
  width: 8px;
  position: relative;
  -webkit-animation-name: p3;
  -webkit-animation-duration: 80s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p3;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

.animated-point-4 {
  background-color: pink;
  height: 10px;
  width: 10px;
  position: relative;
  -webkit-animation-name: p4;
  -webkit-animation-duration: 80s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p4;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}


.animated-point-5 {
  background-color: #ffc64c;
  height: 12px;
  width: 12px;
  position: relative;
  -webkit-animation-name: p5;
  -webkit-animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p5;
  animation-duration: 50s;
  animation-iteration-count: infinite;
}

.animated-point-6 {
  background-color: purple;
  height: 10px;
  width: 10px;
  position: relative;
  -webkit-animation-name: p6;
  -webkit-animation-duration: 70s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p6;
  animation-duration: 70s;
  animation-iteration-count: infinite;
}

.animated-point-7 {
  background-color: orange;
  height: 14px;
  width: 14px;
  position: relative;
  -webkit-animation-name: p7;
  -webkit-animation-duration: 70s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p7;
  animation-duration: 70s;
  animation-iteration-count: infinite;
}

.animated-point-8 {
  background-color: purple;
  height: 8px;
  width: 8px;
  position: relative;
  -webkit-animation-name: p8;
  -webkit-animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-name: p8;
  animation-duration: 50s;
  animation-iteration-count: infinite;
}

.point {
    border-radius: 50%;
    z-index: 999;
    position: absolute;
}


#hero .btn-get-started {
  font-size: 16px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  color: #FFFFFF;
  box-shadow: 0 0 20px 0px #7040e178;
  /* border: 2px solid #3498db; */
  background-image: linear-gradient(to right, #5842DD , #853FE4);
  width: 151px;
  height: 49px;
  line-height: 21px;


}

#hero .btn-get-started:hover {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow: 0 0 14px 0px #7040e180;

  
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* @media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
} */

@media (min-width: 992px){
  .hero-animation-img {
    position: relative;
    display: block;
    width: 100%;
}


@media (min-width: 1200px) {
  #hero {
    height: 100vh;
  
 }
}

.animation-one {
    -webkit-animation: move-one 7s ease-in-out infinite;
    animation: move-one 7s ease-in-out infinite;
    padding-left: 96px;
}
@keyframes move-one {
    0% {
        -webkit-transform: translateX(0) translateY(5px);
        transform: translateX(0) translateY(5px)
    }
    50% {
        -webkit-transform: translateX(0) translateY(-5px);
        transform: translateX(0) translateY(-5px)
    }
    100% {
        -webkit-transform: translateX(0) translateY(5px);
        transform: translateX(0) translateY(5px)
    }
}
@-webkit-keyframes move-one {
    0% {
        -webkit-transform: translateX(0) translateY(5px);
        transform: translateX(0) translateY(5px)
    }
    50% {
        -webkit-transform: translateX(0) translateY(-5px);
        transform: translateX(0) translateY(-5px)
    }
    100% {
        -webkit-transform: translateX(0) translateY(5px);
        transform: translateX(0) translateY(5px)
    }
}

.animation-two {
    position: absolute;
    bottom: -10px;
    -webkit-animation: move-two 8s ease-in-out infinite;
    animation: move-two 8s ease-in-out infinite;
    left: 91px;
    bottom: -53px;
}
@-webkit-keyframes move-two {
    0% {
        -webkit-transform: translateX(-25px) translateY(-225px);
        transform: translateX(-25px) translateY(-225px)
    }
    50% {
        -webkit-transform: translateX(-25px) translateY(-205px);
        transform: translateX(-25px) translateY(-205px)
    }
    100% {
        -webkit-transform: translateX(-25px) translateY(-225px);
        transform: translateX(-25px) translateY(-225px)
    }
}
@keyframes move-two {
    0% {
        -webkit-transform: translateX(-25px) translateY(-225px);
        transform: translateX(-25px) translateY(-225px)
    }
    50% {
        -webkit-transform: translateX(-25px) translateY(-205px);
        transform: translateX(-25px) translateY(-205px)
    }
    100% {
        -webkit-transform: translateX(-25px) translateY(-225px);
        transform: translateX(-25px) translateY(-225px)
    }
}

.animation-three {
    position: absolute;
    -webkit-animation: move-three 9s ease-in-out infinite;
    animation: move-three 9s ease-in-out infinite;
    left: 102px;
    bottom: -164px;
}
@-webkit-keyframes move-three {
    0% {
        -webkit-transform: translateX(-45px) translateY(-225px);
        transform: translateX(-45px) translateY(-225px)
    }
    50% {
        -webkit-transform: translateX(-45px) translateY(-205px);
        transform: translateX(-45px) translateY(-205px)
    }
    100% {
        -webkit-transform: translateX(-45px) translateY(-225px);
        transform: translateX(-45px) translateY(-225px)
    }
}
@keyframes move-three {
    0% {
        -webkit-transform: translateX(-45px) translateY(-225px);
        transform: translateX(-45px) translateY(-225px)
    }
    50% {
        -webkit-transform: translateX(-45px) translateY(-205px);
        transform: translateX(-45px) translateY(-205px)
    }
    100% {
        -webkit-transform: translateX(-45px) translateY(-225px);
        transform: translateX(-45px) translateY(-225px)
    }
}
.animation-four {
    position: absolute;
    -webkit-animation: move-four 6s ease-in-out infinite;
    animation: move-four 6s ease-in-out infinite;
    left: 12px;
    bottom: -271px;
}
.animation-new{
    position: absolute;
    bottom: 10px;
}
@-webkit-keyframes move-four {
    0% {
        -webkit-transform: translateX(330px) translateY(-215px);
        transform: translateX(330px) translateY(-215px)
    }
    50% {
        -webkit-transform: translateX(330px) translateY(-240px);
        transform: translateX(330px) translateY(-240px)
    }
    100% {
        -webkit-transform: translateX(330px) translateY(-215px);
        transform: translateX(330px) translateY(-215px)
    }
}
@keyframes move-four {
    0% {
        -webkit-transform: translateX(330px) translateY(-215px);
        transform: translateX(330px) translateY(-215px)
    }
    50% {
        -webkit-transform: translateX(330px) translateY(-240px);
        transform: translateX(330px) translateY(-240px)
    }
    100% {
        -webkit-transform: translateX(330px) translateY(-215px);
        transform: translateX(330px) translateY(-215px)
    }
}

}

@media (min-width: 992px) and (max-width: 1199px) {
.animation-four, .animation-new{
    display: none !important;
}
}

@media (max-width: 991px) {
  /* #hero {
    height: 100vh;
  } */
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
    margin: auto;
    padding-top: 60px;
  }

  #hero .weDevelop{
    color: #000;
    
}
}

@media (max-width: 768px) {
  /* #hero {
    margin-top: 20px;
  } */
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
    margin: auto;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
    margin: auto;
  }


}

/* @media (min-width: 576px) and (max-width: 992px){
  .ptb-100 {
    padding-top: 230px;
  }
} */


@media (max-width: 575.98px) {
  .ptb-100 {
    padding-top: 0px;
  }
  /* #hero{
    padding-top:0px ;
  } */
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts{
  padding-top: 33px;
  padding-bottom: 20px;
}


.counts .counters span {
  font-size: 47px;
  display: inline-block;
  color: #853FE4;
  
}

.counts .counters p {
  padding: 0;
    display: inline-block;
    margin: 0 0 20px 0;
    font-size: 17px;
    /* font-weight: 400; */
    color: #677294;
    font-family: MediumCn;
}

@media (max-width: 575.98px) { 
  .counts .counters p {
      display: block;
     
  }
 }


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 90px 0; */
  overflow: hidden;
}



.section-title {
  text-align: center;
  padding-bottom: 41px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}


/* @media (max-width: 991px){
  section{
    padding: 0px;
  }
} */

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #3498db;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #3498db;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #3498db;
}

.about .content .btn-learn-more:hover {
  background: #3498db;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #F9F9FC;
  padding-top: 57px;
  padding-bottom: 52px;

}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.services .ourServices{
  font-size: 31px;
  color: #222D39;

}

.services .ourServiceDescription{
  font-size: 16px;
  color: #677294;
  width: 48%;
  margin: auto;
  font-family:MediumCn ;
}

.services .title {
  font-weight: 500;
  margin-bottom: 16x;
  font-size: 18px;
  margin-top: 16px;
}

.services .title a {
  color: #222D39;

}

.services .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #677294;
  font-family: MediumCn;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}

@media (max-width: 991px){
.services {
    padding-top: 60px;
}
}



/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

/*--
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.bgTestimosialPortfolio{
  background-color:#F9F9FC ;
  width: 100%;
  height: 86vh;
  top: 682px;


}

/* .testimonials .swiper-slide-active .testimonial-item{
  margin-left:20px ;
} */




.testimonials .testimonialsText{
  font-size: 31px;
  color: #222D39;

}

.testimonials .testimonialsDescription{
  font-size: 16px;
  color: #677294;
  width: 46%;
  margin: auto;
  font-family: MediumCn;
  line-height: 28px;
}


.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px 21px 0px 31px;
      /* margin: 30px 22px 30px 0px; */
    box-shadow:4px 17px 14px 0px rgb(0 0 0 / 4%);
    position: relative;
    background: #fff;
    border-radius: 30px;
    height: 179px;
    margin-left: 8px;
    margin-right: 8px;
}




.testimonials .testName{
  font-size: 14px;
  color: #000000;
  font-family: MediumCn;
  
}

.testimonials  .testJob{
  font-size: 13px;
  color: #666666;
  font-family: MediumCn;

}

.testimonials .testimonial-item .testimonial-img {
  width: 52px;
  border-radius: 50px;
  /* border: 6px solid #fff; */
  /* position: absolute;
  left: -45px; */
}





.testimonials .testimonial-item .teamName{
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
}


.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 24px auto 0px auto;
  font-size: 14px;
  color: #666666;
  font-family: MediumCn;
  line-height: 19px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}
.testimonials .swiper-button-next,.testimonials .swiper-button-prev{
  top: 45%;
  outline: none;
}

.testimonials .swiper-button-next:hover:after,.testimonials .swiper-button-prev:hover:after{
  background-color:#6D41E0 ;
  color: #fff;

}
.testimonials .swiper-button-next:after,.testimonials .swiper-button-prev:after{
  font-size: 14px;
  color: #6D41E0;
  border: 1px solid #D3D3D3;
  border-radius: 49px;
  padding: 11px 15px;
  font-weight: 600;
  transition: .3s;
  background-color:#fff ;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D8D8D8;
  opacity: 1;
  border:none;
}



.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6D41E0;
    border:none;

}

/* @media (max-width: 575.98px) { 
  .testimonials .testimonial-item p {
    font-size: 0px;
  }
 } */




@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/* @media (min-width: 1360px) { 
  .testimonials .testimonial-item {
   
    width: 78%;
  }
} */

@media (max-width: 1199.99px) { 
  .testimonials .testimonial-item {
   
    width: auto;
  }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio{
  padding-top: 94px;
  padding-bottom: 94px;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .ourProject{
  font-size: 31px;
  color: #222D39;

}

.portfolio .ourProjectDescriton{
  font-size: 14px;
  color: #677294;
  width: 44%;
  margin: auto;
  font-family:MediumCn;
  line-height: 28px;
}


.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 15px;
  /* font-weight: 400; */
  line-height: 20px;
  color: #677294;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  font-family: MediumCn;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #6D41E0;
}

.portfolio #portfolio-flters li:hover .line, .portfolio #portfolio-flters li.filter-active .line{
  visibility: visible;
  opacity: 1;
}



.portfolio .line{
  width: calc(100% - 10px);
  height: 1px;
  background-color: #6D41E0;
  visibility: hidden;
  opacity: 0;
  /* transition: visibility 0s, opacity 0.5s linear; */
  transition: all 0.3s ease-in-out 0s;
  margin: auto;
  margin-top: 0px;


}



.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background-color: #8c7ca28a;
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  /* width: 100%; */
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #6D41E0;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #6D41E0;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.portfolio button{
  background: #F9F9FC;
  /* padding: 10px 24px; */
  transition: 0.4s;
  border-radius: 50px;
  border: .5px solid #6d41e080;
  box-shadow: 0 6px 42px 0px rgb(91 87 208 / 30%);
  width: 151px;
  height: 49px;
  font-size: 16px;
  color: #6D41E0;
}

.portfolio button:hover {
  background: linear-gradient(to right, #5842DD , #853FE4);
  border: .5px solid #853FE4;
  color: #fff;
  box-shadow: 0 0 14px 0px #7040e1d1;
}

@media (min-width: 1200px) { 
  .portfolio .portfolio-wrap img{
      width: -webkit-fill-available;
  }
}

@media (max-width: 767.98px) { 
  .portfolio .portfolio-wrap img{
    width: -webkit-fill-available;
}
 }

 
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: url(../img/success.png) center center no-repeat;
  background-size: 100% 100%;
  /* padding: 34px 0; */
  /* height: 219px; */
  padding-top: 28px;
}



.cta .success{
  font-size: 31px;
  color: #FFFFFF;
  font-family: MediumCn;

}

.cta .successDescriton{
  font-size: 14px;
  color: #FFFFFF;
  width: 36%;
  margin: auto;
  opacity: .66;
  line-height: 28px;
  font-family: MediumCn;
  padding-top: 9px;

}



.cta .cta-btn {
    /* font-weight: 500; */
    font-size: 16px;
    /* letter-spacing: 1px; */
    width: 123px;
    height: 49px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 24.5px;
    transition: 0.5s;
    color: #FFFFFF;
    border: 1px solid #fff;
    background: transparent;
    margin-top: 9px;
    margin-bottom: 27px;
}



.cta .cta-btn:hover {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow:  0px 0px 14px 0px #fff;
  
}



@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

 
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog{
  padding-top: 94px;
  padding-bottom: 90px;
}
.blog .blogImg{
  width: 300px;
  height: 165px;
  border-radius: 30px;
}

.blog .blogText{
  font-size: 31px;
  color: #222D39;
  line-height: 41px;
}


.blog .blogTextDescription{
  font-size: 16px;
  color: #677294;
  width: 41%;
  margin: auto;
  line-height: 28px;
  font-family: MediumCn;
  padding-top: 16px;
}

.blog .blogs{
  margin-top: 10px;
}



.blog .dateSharesComments{
  margin-top: 15px;
}

.blog .dateSharesComments div{
  color: #677294;
  font-size: 10px;
  margin-right: 9px;
  font-family: MediumCn;
}

.blog .blogText1{
  color: #222D39;
  font-size: 19px;
  line-height: 29px;
  margin-top: 3px;
}

.blog .blogText2{
  font-size: 14px;
  color: #677294;
  line-height: 25px;
  font-family: MediumCn;
  margin-top: 10px;
}
.blog .blogText3{
  margin-top: 7px;

}

.blog .blogText3 a{
  color: #000000;
    font-size: 14px;
    font-family: MediumCn;
    line-height: 19px;

}

.blog .blogText3 a:hover{
  color: #677294;
  font-size: 14px;

}



@media (max-width: 767.98px) { 
  .blog .blog2,.blog .blog3{
    margin-top: 73px;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/


.clients{
  padding-top: 94px;
  padding-bottom: 40px;
}

.clients .trusted{
  font-size: 31px;
  color: #222D39;
  line-height: 41px;


}

.clients .trustedDescreption{
    font-size: 16px;
    color: #677294;
    width: 58%;
    margin: auto;
    font-family: 'MediumCn';
    line-height: 28px;
    margin-top: 14px;
}

.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;;
}



.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 18px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D8D8D8;
  opacity: 1;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6D41E0;
}


.clients form {
  background: #fff;
  padding: 9px 21px;
  position: relative;
  border-radius: 27px;
  box-shadow: 0px 0 20px rgb(0 0 0 / 13%);
  text-align: left;
  margin: auto;
  margin-top: 45px;
  width: 423px;
  height: 50px;
  border: 1px solid #EBEBEB;
}

.clients form input[type="email"] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
  outline: none;
  
}

.clients ::placeholder {
  color: #B4B4B4;
  opacity: .94; /* Firefox */
  font-size: 16px;
  font-family: roman;
  
}

.clients :-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #B4B4B4;
 font-size: 14px;

}

.clients ::-ms-input-placeholder { /* Microsoft Edge */
 color: #B4B4B4;
 font-size: 14px;

}

.clients form input[type="submit"] {
  position: absolute;
  top: 2px;
  right: 3px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: linear-gradient(to right, #5842DD , #853FE4);
  color: #fff;
  transition: 0.3s;
  border-radius: 31px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  outline: none;
  width: 147px;
  height: 44px;
  font-family: roman;
  line-height: 21px;

}

.clients form input[type="submit"]:hover {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow:  0 0 14px 0px #7040e180;
}


@media (max-width: 767.98px) {
  .clients form {
   width: 100%;
  }

  .clients .clients-slider .swiper-slide img {
    width: 70%;
  }
  .clients .clients-slider .swiper-slide {
    text-align: center;
  }

}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team{
   padding-top: 71px;
   padding-bottom: 81.5px;
}
.team .testimonial-item .testimonial-img {
  width: 94%;
  border-radius: 30px;
}



.team .testimonial-item::before {
  content: "";
  background: linear-gradient(to right, #5842DD , #853FE4);
  
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  /* transition: all ease-in-out 0.3s; */
  z-index: 2;
  width: 0;
  margin: auto;
  border-radius: 30px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}



.team .testimonial-item:hover::before {

  left: 0;
  width: 94%;
  visibility: visible;
  opacity: .6;
  transition: opacity 1s linear;
}

.team .testimonial-item:hover .teamName{
  opacity: 1;
}


.team  .testName{
  font-size: 18px;
  color: #fff;
  
}

.team  .testJob{
  font-size: 13px;
  color: #fff;
}


.team  .teamName{
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  z-index: 3;
  left: 26%;
  top: 41%;
  opacity: 0;
}




.team .ourTeam{
  font-size: 31px;
  color: #222D39;

}

.team .ourTeamDescription{
  font-size: 16px;
  color: #677294;
  width: 41%;
  margin: auto;
  line-height: 28px;
  font-family: MediumCn;
  padding-top: 8px;
}



.team .swiper-slide{
  text-align: center;
}

.team .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.team .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.team .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}
.team .swiper-button-next,.team .swiper-button-prev{
  top: 45%;
  outline: none;
}

.team .swiper-button-next:hover:after ,.team .swiper-button-prev:hover:after{
  background-color:#6D41E0 ;
  color: #fff;
  border: none;

}
.team .swiper-button-next:after,.team .swiper-button-prev:after{
  font-size: 14px;
  color: #6D41E0;
  border: 1px solid #D3D3D3;
  border-radius: 49px;
  padding: 11px 15px;
  font-weight: 600;
  transition: .3s;
}

.team .swiper-button-next:after, .team .swiper-button-prev:after{
  background-color:#fff ;
  color:#6D41E0 ;
}

.team .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D8D8D8;
  opacity: 1;
  border:none;
}



.team .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6D41E0;
    border:none;

}
/* 
.team .team-slider{
  margin-right: -30px!important;
  margin-left: 2px!important;

}


.team .swiper-button-prev{
  left: 7px;
}

.team .swiper-button-next {
  right: 6px;
}
/*  */
/* .team .testimonial-item {
  margin-left: 12px;
}  */



@media (max-width: 767px) {
  .team .testimonial-wrap {
    padding-left: 0;
  }
  /* .team .testimonial-item {
    padding: 30px;
    margin: 15px;
  } */
  .team .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

  .team .teamName{
    opacity: 0!important;
  }
}





/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact{
  background-color: #F9F9FC;
  padding-top: 77px;
  padding-bottom: 69px;
}
.contact .contactWithUs{
  font-size: 31px;
  color: #222D39;
  line-height: 41px;

}

.contact .contactWithUsDescreption{
  font-size: 16px;
    color: #677294;
    width: 91%;
    margin-right: auto;
    line-height: 33px;
    font-family: 'MediumCn';
}

.contact .contactPhone,.contact .contactEmail{
  font-size: 14px;
  color: #677294;
  font-family: 'MediumCn';
  line-height: 19px;

  
}

.contact .contactPhone{
  margin-top: 29px;

}


.contact .reachUs{
  color: #222D39;
  font-size: 18px;
  line-height: 24px;
}






.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 10px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #6D41E0;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: linear-gradient(to right, #5842DD , #853FE4);
  border: 0;
  color: #fff;
  transition: 0.4s;
  border-radius: 24.5px;
  box-shadow: 0 0 20px 0px #7040e178;
  width: 135px;
  height: 40px;
  font-size: 15px;
  font-family: 'MediumCn';
  line-height: 20px;
  margin-top: 16px;
}


.contact .php-email-form button[type="submit"]:hover {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow: 0 0 14px 0px #7040e180;
  ;}


  
.contact ::placeholder {
  color: #677294;
  opacity: 1; /* Firefox */
  font-size: 12px;
  line-height: 16px;
  font-family: MediumCn;
  opacity: .68;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  /* background:; */
}

#footer .footer-top {
  padding: 100px 0 0px 0;
  background:  url('../img/footer.png') center center no-repeat;
  background-size: cover;
}


#footer .footer-top .footer-contact .logoText {
  font-size: 13px;
  margin-top: 3px;
  color: #fff;
  line-height: 23px;
  font-family: roman;
  width: 90%;
}


#footer .footer-top .footer-links {
  margin-bottom: 56px;
}


#footer .footer-top .otherLinks,#footer .support,#footer .location {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}



#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 13px;
}


#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a,#footer .footer-top .footer-links ul li{
  transition: 0.3s;
    line-height: 29px;
    color: #fff;
    font-size: 13px;
    margin-top: 5px;
    font-family: 'MediumCn';
}

#footer .footer-top .footer-links ul.supportList li{

  margin-top: 6px;
}

.supportList img{
  margin-right: 5px;
}


#footer .footer-top .footer-links ul.supportList li svg{

  font-size: 16px;
  margin-right: 10px;
}




#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1b191b;
}

#footer .social-links{
  margin-left: -15px;

}

#footer .social-links a {
  font-size: 16px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: -6px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 33px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #853FE4;
  text-decoration: none;
}
#footer .social-image {
  margin-top: 0px!important;
}

#footer .social-image{
  margin-right: 8px!important;
}

#footer .social-image li:first-child{
  margin-bottom: 19px;
}

#footer .social-image li:nth-child(2){
  margin-bottom: 7px;
} 

#footer .social-image li:nth-child(3){
  margin-bottom: 7px;
} 
.copyright{
  color: #fff;
  font-size: 12px;
  padding: 15px 0px;
}
.copyrightbg{
  background-color: #00000054;
}

#chartdiv {
  width: 100%;
  /* height: 98vh; */
}




/*--------------------------------------------------------------
# Career Header
--------------------------------------------------------------*/
.careerHeader {
  z-index: 997;
  transition: all 0.5s;
  padding: 11px 0!important;
  background: transparent;
}



.careerHeader.header-scrolled {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  padding: 12px 0;
  /* background-image: linear-gradient(to bottom right, #fff,#853FE4, #5842DD); */
  background-color: #853FE4!important
}
.careerHeader.header-scrolled a.nav-link.scrollto {
  color: #fff!important
}

.careerHeader.header-scrolled .navbar > ul > li > a:before {
  background-color: #fff!important
}



.careerHeader .logo2{
  display: none;
}



.careerHeader.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background-image: linear-gradient(to bottom right, #fff,#853FE4, #5842DD);


}



.careerHeader .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.careerHeader .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

.careerHeader .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
}


@media (max-width: 575.98px) { 
  .careerHeader .logo1{
    display: none;
  }

  .careerHeader .logo2{
    display: block;
  }

 
 }

/*--------------------------------------------------------------
#  careerBg
--------------------------------------------------------------*/

.careerBg{
 
  width: 100%;
  height: 244px;
  position: relative;
  background: url(../img/careerBg.png) center top no-repeat;
  background-size: cover;
  /* padding-top: 110px; */
  padding-top: 82px;

}

.careerBg .sumbitJob{
  font-size: 40px;
  color: #fff;
}

.careerBg .homePages a{
  font-size: 13px;
  font-family: MediumCn;
  line-height: 20px;
  color: #fff;
}



/*--------------------------------------------------------------
#  work
--------------------------------------------------------------*/

.work .doYouWant{
  font-size: 40px;
  color: #222D39;
  line-height: 53px;
  margin-top: 57px;
  /* margin-bottom: 26px; */
}

.work .input--style-4,.work .form-control {
  /* line-height: 50px; */
  width: 100%;
  height: 49px!important;
  /* background: #FFFFFF; */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 12px;
  border: 1px solid #EBEBEB;
  color: #677294;
  /* -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease; */
  outline: none!important;
  font-family: MediumCn;

}

.work textarea#description{
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 16px;
  border: 1px solid #EBEBEB;
  color: #666;
  
  outline: none!important;

}

.work .form-control{
  /* background-image: linear-gradient(to bottom right, #F4F4F4,#fff); */
  appearance: none;

  /* background-image:linear-gradient(to bottom right, #F4F4F4,#fff),
  url('../img/Path.png'); */

  background-image: url(../img/bgwork.svg);
  background-repeat: no-repeat;
  background-size: cover;


}

.work .cv{
  font-size:12px;
  color:#677294;
  margin-top:31px;
  display: inline-block;
  margin-right: 17px;
}


.work ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #677294;
  font-size: 12px;
  font-family: MediumCn;
}

.work :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #677294;
  font-size: 12px;
  font-family: MediumCn;


}

.work ::-ms-input-placeholder { /* Microsoft Edge */
  color: #677294;
  font-size: 12px;
  font-family: MediumCn;


}



.work .form-control:focus{
  box-shadow: none;
}

.work option:disabled{
  color: #677294 !important;
}

.work .personalInfo{
  font-size:20px;
  color:#677294;
  margin-top: 26px;
  margin-bottom: 21px;

}

.work .custom-file-input {
  display: inline-block;
  position: relative;
  color: #533e00;
  opacity: 1;
  width: auto;
}
.work .custom-file-input input {
  visibility: hidden;
  width: 100px;
}
.work .custom-file-input:before {
  content: 'Choose File';
  display: block;
  background-color:transparent;
  border: 1px solid #EBEBEB;
  border-radius: 18px;
  padding: 8px 0px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  text-shadow: 1px 1px rgba(255,255,255,0.7);
  /* font-weight: bold; */
  text-align: center;
  font-size: 12px;
  position: absolute;
  left: 0;
  right: 0;
  color:#677294;
  bottom: 3px;
  width: 104px;
  height: 36px;
  font-family: MediumCn;
}
.work .custom-file-input:hover:before {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow: 0 0 14px 0px #7040e180;
}
.work .custom-file-input:active:before {
  background: #853FE4;
  color: #fff;
}

.work .btn-get-started {
  /* font-family: "Raleway", sans-serif; */
  /* font-weight: 500; */
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 0px;
 
  border-radius: 50px;
  transition: 0.5s;
  color: #FFFFFF;
  box-shadow: 0 0 20px 0px #7040e178;
  /* border: 2px solid #3498db; */
  background-image: linear-gradient(to right, #5842DD , #853FE4);
  width: 151px;
  height: 49px;
  text-align: center;
  margin-bottom: 71px;


}

.work .btn-get-started:hover {
  background: #fff;
  border: 1px solid #853FE4;
  color: #853FE4;
  box-shadow: 0 0 14px 0px #7040e180;

  
}

.select2-results__option--highlighted {
  background-color: #5842DD !important;
}


.select2-container--default .select2-selection--single {
  background-image: linear-gradient(to bottom right, #F4F4F4,#fff);  border: 1px solid #aaa;
  border-radius: 4px;
  width: 100%;
  height: 49px!important;
  /* background: #FFFFFF; */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 16px;
  border: 1px solid #EBEBEB;
  color: #666;
  outline: none!important;
}

.select2-container{
  width: 100%!important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -14px;
  margin-top: -2px;
  position: absolute;
  top: 87%;
  width: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
  padding-top: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
}


