/* ============  WebTheme widgets section style css start here  ==============  */
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Regular.woff2') format('woff2'),
       url('fonts/Urbanist-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*==================  Marque Animation Css Start here  =====================   */
.marque-section {
    position: relative;
    --duration: 40s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap:0;
}
.marque-section .marque-content h1 {
    margin: 0;
    color: #121D17;
    font-size: 50px;
    line-height: 70px;
}
.marque-section .marque-text-animate {
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0px;
    min-width: 100%;
    -webkit-animation: text-animate 20s linear infinite;
    animation: text-animate 20s linear infinite;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
.marque-section .marque-text-animate:hover {
    animation: inherit;
}
@-webkit-keyframes text-animate {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
.marque-section .marque-text-animate h1 img {
    animation: img_circle_rotate 15s linear infinite;
    padding: 0 20px 0 20px;
    margin: 0 0 0 13px;
}
@keyframes img_circle_rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*   Marque option 2   */
.marque-section.option2 .marque-text-animate {
    animation: text-animate-2 25s infinite linear;
    transition:0.5s;
}
@keyframes text-animate-2 {
    from {
        transform: translateX(-50%)
    }
    to {
        transform: translateX(0%)
    }
}
.marque-section.option2 .marque-text-animate h1 img {
    animation: img_circle_rotate2 10s linear infinite;
    padding: 0 20px 0 20px;
    margin: 0 0 0 13px;
}
@keyframes img_circle_rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
/*   Marque css end  */

/* ======================  Banner Section Title Css Start here  =========================== */
.banner-section.option1 .banner-content {
  text-align: center;
}
.banner-section.option1 {
    z-index: 0;
    position: relative;
}
.banner-section.option1 .banner-subtitle h4 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.banner-section.option1 .banner-title h2 {
  font-size: 60px;
  line-height: 70px;
  color: #060E14;
  font-weight: 700;
  margin: 18px 0 13px;
}
.banner-section.option1 .banner-description p {
  font-size: 17px;
  color: #738397;
  line-height: 26px;
  margin: 0 auto 32px;
  font-weight: 300;
  width: 60%;
}
.banner-section.option1 .single-image {
    text-align: center;
    margin-top: 112px;
    transition: 0.4s;
}
.banner-section.option1 .single-image img {
    transition: 0.4s;
}
.banner-section.option1 .single-image img:hover {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg);
}
.banner-section.option1 .single-shap {
  position: absolute;
  top: 280px;
  left: 100px;
  animation: circle 8s linear infinite;
}
.banner-section.option1 .bannar-shap {
  position: absolute;
  top: 275px;
  right: 100px;
  animation: circle 7s linear infinite;
}
.banner-section.option1 .foter-shape{
  animation: circle 7s linear infinite;
}
.foter-shape{
  animation: circle 7s linear infinite;
}
@keyframes circle {
  0% {
      transform: rotate(0);
  }
  100% {
      transform: rotate(-360deg);
  }
  }
  .circle {
      animation: circle 15s linear infinite;
  }
.banner-section.option1 .bannar-shapes {
    position: absolute;
    top: 18px;
    left: 100px;
    animation: dance2 4s alternate infinite;
}
.banner-section.option1 .bannar-shapes2 {
  position: absolute;
  top: 20px;
  right: 100px;
  animation: dance2 4s alternate infinite;
}
.banner-section.option1 .bannar-shapes3 {
  position: absolute;
  bottom: 40px;
  left: 250px;
  transition: 0.4s;
}
.banner-section.option1 .bannar-shapes3:hover {
    -webkit-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
}
.banner-section.option1 .bannar-shapes4 {
  position: absolute;
  bottom: 85px;
  right: 175px;
  transition: 0.4s;
}
.banner-section.option1 .bannar-shapes4:hover {
    -webkit-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
}
.banner-section.option1 .bannar-shapes5 {
  position: absolute;
  top: -120px;
  left: 0;
}
.banner-section.option1 .bannar-shapes6 {
  position: absolute;
  top: -360px;
  right: -180px;
}
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.banner-button {
    display: inline-block;
}
.banner-button a {
  display: inline-block;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  padding: 0;
  line-height: 58px;
  text-align: center;
  height: 58px;
  width: 185px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}
.banner-button2 {
  display: inline-block;
}
.banner-button2 a {
  display: inline-block;
  background: transparent;
  padding: 0;
  line-height: 58px;
  text-align: center;
  height: 58px;
  width: 160px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  border: 1px solid #3268E4;
  font-size: 18px;
  color: #3268E4;
  font-weight: 500;
  margin-left: 28px;
  font-family: "Urbanist", sans-serif;
}
.banner-button2 a::before{
  content: "";
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  height: 50%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s;
  z-index: -1;
}
.banner-button2 a::after{
  content: "";
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .5s;
    z-index: -1;
}
.banner-button a:hover {
    color: #ffffff;
}
.banner-button a:before {
    background: #060E14;
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.4s;
    border-radius: 26px;
}
.banner-button a:hover:before {
    width: 103%;
}
.banner-button2 a:hover {
  color: #ffffff;
}
.banner-button2 a:hover:before{
  width: 100%;
  right: 0;
  left: auto;
}
.banner-button2 a:hover:after{
  width: 100%;
  left: 0;
  right: auto;
}
@keyframes dance2 {
  0% {
      -webkit-transform: translate3d(0, 0, 0);
  }

  50% {
      -webkit-transform: translate3d(25px, -25px, 0);
  }

  100% {
      -webkit-transform: translate3d(0, -25px, 25px);
  }
}
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); 
  } 
}

.banner-section.option2 .banner-subtitle h4 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.banner-section.option2 .banner-title.one h2 {
  font-size: 55px;
  line-height: 65px;
  color: #060E14;
  font-weight: 700;
  margin: 18px 0 0px;
}
.banner-section.option2 .banner-title.two h2 {
  font-size: 55px;
  line-height: 65px;
  color: #060E14;
  font-weight: 700;
  margin: 0px 0 13px;
}
.banner-section.option2 .banner-description p {
  font-size: 17px;
  color: #738397;
  line-height: 26px;
  margin: 0 0 32px;
  font-weight: 300;
  width: 54%;
}
.banner-section.option2 .single-shap {
  position: absolute;
  top: -110px;
  right: -90px;
}
.banner-section.option2 .single-image {
  position: absolute;
  top: -55px;
  right: -120px;
  z-index: 1;
}
.banner-section.option2 .single-image img {
  transition:0.4s;
}
.banner-section.option2 .single-image img:hover {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg);
}
.banner-section.option2 .bannar-shap {
  position: absolute;
  bottom: -170px;
  left: 645px;
  animation: circle 8s linear infinite;
}
.banner-section.option2 .bannar-shapes {
  position: absolute;
  top: -166px;
  right: 450px;
  animation: circle 8s linear infinite;
}
.banner-section.option2 .bannar-shapes2 {
  position: absolute;
  top: 355px;
  right: -200px;
}
.banner-section.option2 .single-shap2.bounce-animate {
  position: absolute;
  top: -140px;
  left: -128px;
}
.banner-section.option2 .bannar-shapes3 {
  position: absolute;
  bottom: -290px;
  right: -290px;
}
.banner-section.option2 .bannar-shapes4 {
    position: absolute;
    top: -360px;
    left: -300px;
}

/*=====================     Brand section css start here  =======================  */

.brand-images {
  text-align: -webkit-center;
  filter: grayscale(1);
  transition: .5s;
}
.brand-images:hover{
  filter: grayscale(0);
}
/*==================    button section css start here  =====================  */
svg {
    overflow: hidden;
    vertical-align: middle;
    height: 20px;
    width: auto;
}

/*   single Button css option 1  */
.single-button.option1 .button-content a {
  display: inline-block;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  padding: 0 37px;
  line-height: 55px;
  text-align: center;
  height: 58px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}
.single-button.option1  .button-content a:hover {
  color:#fff;
}
.single-button.option1 .button-content a:before {
  background: #060E14;
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: 0.4s;
  border-radius: 26px;
}
.single-button.option1 .button-content a:hover:before {
  width:103%;
}

/*   single Button css option 2  */
.single-button.option2 .button-content a {
  display: inline-block;
  background: transparent;
  padding: 14px 37px;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 18px;
  border: 1px solid #3F45DE;
  color: #3F45DE;
  font-weight: 600;
  font-family: Urbanist;
}
.single-button.option2  .button-content a:hover {
  color:#fff;
}
.single-button.option2 .button-content a:before {
  background: linear-gradient(90deg, #3F45DE 0%, #2688EA 100%);
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: 0.4s;
  border-radius: 26px;
}
.single-button.option2 .button-content a:hover:before {
  width:103%;
}
.single-button.option2 .button-content a i {
  padding: 0 0 0 5px;
  position: relative;
  top: 0;
  font-size: 12px;
  color: #121d17;
  transition: 0.4s;
  font-weight: 900;
}
.single-button.option2 .button-content a:hover i {
  color: #ffffff;
}

/*   single Button css option 3  */

.single-button.option3 .button-content a {
    display: inline-block;
    background: #2688EA0D;
    padding: 0 0px;
    font-size: 16px;
    line-height: 55px;
    color: #7E858B;
    font-weight: 400;
    width: 100%;
    text-align: center;
    height: 55px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.single-button.option3 .button-content a:before {
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  content:"";
  position:absolute;
  right: 0;
  top:0;
  height:100%;
  width:0;
  z-index: -1;
  transition:0.4s;
  border-radius: 5px;
}
.single-button.option3 .button-content a:hover:before {
  width:100%;
  left: 0;
}
.single-button.option3 .button-content a i {
  font-size: 20px;
  color: #3F45DE;
  margin-right: 10px;
  transition:0.4s;
}
.single-button.option3 .button-content a:hover{
  color: #fff;
}
.single-button.option3 .button-content a:hover i {
  color: #fff;
}

/*   single Button css option 4  */
.button-content {
  line-height: 0;
}
.single-button.option1.option4 .button-content a {
  display: inline-block;
  background: #3F45DE;
  padding: 0;
  line-height: 60px;
  text-align: center;
  height: 60px;
  width: 196px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Poppins";
}

/*  =====================  Faq section css start here  ========================= */

.accordion-content li {
    position: relative;
    margin-bottom: 20px;
    list-style: none;
    z-index: 1;
}
.accordion-content li p {
    display: none;
    padding: 17px 25px 3px;
    color: #738397;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}
.accordion-content a {
    z-index: 1;
    position: relative;
    width: 100%;
    display: inline-grid;
    cursor: pointer;
    padding: 25px 20px;
    background: #F5F7F6;
    border-radius: 10px 10px 0 0;
    font-size: 22px;
    line-height: 30px;
    color: #060E14 !important;
    font-weight: 600;
    transition:0.4s;
}

.accordion-content a.active {
    color: #fff !important;
    background: linear-gradient(180deg, #2688EA 0%, #3F45DE 100%);
}
.accordion-content a.active:hover {
    color: #fff !important;
}
.accordion-content a:after {
    width: 10px;
    height: 2px;
    background: #3F45DE;
    position: absolute;
    right: 24px;
    content: " ";
    top: 50%;
    transition:0.3s;
    transform: translate(-50%, -50%);
}
.accordion-content a:before {
    width: 2px;
    height: 10px;
    background: #3F45DE;
    position: absolute;
    right: 32px;
    content: " ";
    top: 50%;
    transform: rotate(0);
    transition: all 0.2s ease-in-out;
    transform: translate(-50%, -50%);
}
.accordion-content li p {
    display: none;
    font-size: 16px;
    color: #6c7470;
    padding: 23px 0 23px 30px;
    background: #fff;
    border: 1px solid rgba(18,29,23,0.1);
}
a.active:after {
    transition: 0.3s;
    background: #fff;
    transform: translate(-50%, -50%);
}
a.active:before {
 display: none;
}

/*=================   Call to action section css start here =============== */

.single-call-to-action {
    text-align: center;
    padding: 50px;
    background: #efefef;
    border-radius: 10px;
}
.call-video-button {
    display: inline-block;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}
.call-video-link a {
    color: #fff;
    font-size: 30px;
}
.call-action-title h3 {
    padding: 20px 0 0 0;
    font-size: 20px;
}
.call-action-title h1 {
    padding: 20px 0 20px 0;
    font-size: 40px;
}
.call-action-description p {
    font-size: 18px;
    color: #6c7470;
    padding: 0 0 30px 0;
}
.call-action-button a {
    background: #6c7470;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 17px;
}
/* js div class css start here */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}
.video-popup-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.video-popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/* ==================   case study post type css start here ===============*/
.single-case-study-post-type{
  transition: .5s;
}
.case-study-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 3px;
}

.single-case-study-post-type .case-study-thumb a img {
	line-height: 0;
	height: 445px;
	object-fit: cover;
	border-radius: 5px;
}
.single-case-study-post-type .case-study-content {
    background: #fff;
    position: absolute;
    bottom: 20px;
    width: 95%;
    padding: 0 0 15px 37px;
    margin: 0 0 0 21px;
    border-radius: 7px 0 0 7px;
    z-index: 1;
    transition: .5s;
}

.single-case-study-post-type .case-study-title h1 a {
  display: inline-block;
  transition: 0.5s;
  font-size: 23px;
  line-height: 40px;
  color: #060E14;
  font-weight: 700;
  z-index: 2;
  position: relative;
  padding: 0 0 0;
  font-family: "Figtree", sans-serif;
}
.case-study-category a {
  font-size: 17px;
  line-height: 26px;
  color: #464C52;
  font-weight: 400;
  z-index: 2;
  transition: 0.5s;
  position: relative;
  padding:0 0 0px;
  display: inline-block;
  font-family: "Figtree", sans-serif;
}
.case-study-content:hover {
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
}
.case-study-content:hover .case-study-title h1 a{
  color: #fff;
}
.case-study-content:hover .case-study-category a{
  color: #fff;
}
.case-study-button {
  position: absolute;
  bottom: 18px;
  right: 10px;
  transition: .5s;
}
.case-study-button a {
  font-size: 15px;
  line-height: 42px;
  color: #ffffff;
  font-weight: 500;
  transition: 0.5s;
}
.case-study-button a i {
  font-size: 20px;
  color: #3F45DE;
  background-color: #2688EA1A;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
  font-weight: 700;
  display: inline-block;
}
.case-study-content:hover .case-study-button a i {
  transform: rotate(-45deg);
  border-radius: 50%;
  background-color: #fff;
}

/* ==================   Circle Progress css start here ===============*/

.single-circle-progress {
    display: inline-block;
    position: relative;
}
.single-circle-progress h2 {
    text-align: left;
    font-size: 18px;
    display: inline-block;
    position: relative;
    left: 15px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}
.circle-progress-content {
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: transparent;
  display: inline-block;
  position: relative;
}
.circle-progress-content:after {
    content: "";
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 6px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}
.circle-progress-content > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.circle-progress-content .circle-progress-site-2 {
  left: 0;
}
.circle-progress-content .circle-progress-graph {
    width: 90%;
    height: 90%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #121D17;
}
.circle-progress-content .circle-progress-site-2 .circle-progress-graph {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  transform-origin: center left;
}
.circle-progress-content .circle-progress-site-1 {
  right: 0;
}
.circle-progress-content .circle-progress-site-1 .circle-progress-graph {
    left: -96%;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}
.circle-progress-content .circle-progress-value {
    display: flex;
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-weight: 400;
    color: #121D17;
}
.circle-progress-content .circle-progress-value span {
  font-size: 18px;
  text-transform: uppercase;
}

/* Circle progress animation */
.circle-progress-content[data-percentage="10"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-1 1.5s linear forwards;
}
.circle-progress-content[data-percentage="10"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="20"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-2 1.5s linear forwards;
}
.circle-progress-content[data-percentage="20"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="30"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-3 1.5s linear forwards;
}
.circle-progress-content[data-percentage="30"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="40"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-4 1.5s linear forwards;
}
.circle-progress-content[data-percentage="40"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="50"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="50"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="60"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="60"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-1 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="70"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="70"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-2 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="80"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="80"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-3 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="90"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="90"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-4 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="100"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="100"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards 1.5s;
}

@keyframes progress-loding-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes progress-loding-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes progress-loding-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes progress-loding-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes progress-loding-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

/*  =================    Counter Section CSS   ==================  */
.counter-section.option1 {
  display: flex;
  align-items: center;
  gap: 22px;
}
.counter-section.option1 .counter-icon {
  height: 90px;
  width: 90px;
  line-height: 128px;
  background: #ffffff3b;
  border-radius: 50%;
  text-align: center;
}
.counter-section.option1:hover .counter-icon img {
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}
.counter-section.option1 .calculate-number {
  display: inline-block;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.counter-section.option1 .conter-plus {
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
}
.counter-section.option1 .counter-title h1 {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
  margin: 6px 0 0;
}

/*  counter option 2 Css Start here   */
.counter-section.option2 {
  text-align: center;
  padding: 28px 0 30px;
  border-radius: 10px;
  position: relative;
  margin: 0 3px;
  border: 1px solid #FFFFFF4D;
  transition: .5s;
}
.counter-section.option2::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: #ffffff2a;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.counter-section.option2 .counter-icon {
  line-height: 125px;
  text-align: center;
  border-radius: 50%;
  background: #FFFFFF40;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  transition: .5s;
}
.counter-section.option2 .counter-icon img{
  transition: .5s;
}
.counter-section.option2 .calculate-number {
  font-size: 40px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  margin: 21px 0 17px;
}
.counter-section.option2 span.conter-plus {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0;
}
.counter-section.option2 .counter-title h1 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 24px;
  margin: 0 0 0;
}
.counter-section.option2:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
}
.counter-section.option2:hover .counter-icon img {
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}

/* ======================  Feature Box Css Start here  =========================== */
.single-feature-box {
	text-align: center;
	z-index: 1;
	padding: 38px 30px 18px;
	border-radius: 5px;
	background: #fff;
  transition: .5s;
  position: relative;
  overflow: hidden;
}
.single-feature-box .feature-title h1 {
	font-size: 30px;
	font-weight: 600;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	margin: 15px 0 15px;
}
.single-feature-box .feature-description {
  font-weight: 400;
	margin-bottom: 20px;
	transition: .5s;
}
.single-feature-box .feature-icon{
	display:inline-block;
	position:relative;
  margin-bottom: 10px;
}
.single-feature-box .feature-icon svg {
    display: inline-block;
    color: #fff;
    height: 30px;
    text-align: center;
    transition: 0.5s;
}

/* ======================  Flip Box Css Start here  =========================== */

.single-flip-box .flip-box-content {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: .5s;
}
.single-flip-box .flip-box-content .flip-box-above {
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  text-align: center;
  backface-visibility: hidden;
  perspective: 1000px;
  transition: .5s;
  border-radius: 5px;
  padding: 45px 25px 40px;
  background: #fff;
  position: relative;
  bottom: 0;
  z-index: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.single-flip-box .flip-box-content:hover .flip-box-above {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.single-flip-box .flip-box-content .flip-icon {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: #ffffff;
  border: 1px solid #3F45DE;
  text-align: center;
  line-height: 90px;
  margin: auto;
}
.single-flip-box .flip-box-content .above-title h1 {
  font-size: 22px;
  line-height: 28px;
  color: #121D17;
  font-weight: bold;
  font-family: "Poppins";
  text-align: center;
  padding: 20px 0 20px 0;
}
.single-flip-box .flip-box-content .above-description p {
  font-size: 16px;
  line-height: 26px;
  color: #616161;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  margin: 0;
}
.single-flip-box .flip-box-content .flip-box-behind{
  padding: 47px 25px 68px 25px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  text-align: center;
  backface-visibility: hidden;
  perspective: 1000px;
  transition: .5s;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.single-flip-box .flip-box-content:hover .flip-box-behind {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.single-flip-box .flip-box-content .flip-box-behind:before {
  border-radius: 5px;
  background: rgb(181, 154, 109, 0.9);
  z-index: -1;
  content:"";
  top:0;
  left: 0;
  height: 100%;
  width:100%;
  position: absolute;
}
.single-flip-box .flip-box-content .behind-title h1 {
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Poppins";
  text-align: center;
}
.single-flip-box .flip-box-content .behind-description p {
  font-size: 16px;
  line-height: 26px;
  color: #fafafa;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  padding: 17px 0 37px 0;
  margin: 0;
}
.single-flip-box .flip-box-content a.behind-btn {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 16px 30px 16px 30px;
}
.single-flip-box .flip-box-content a.behind-btn i {
  font-size: 15px;
  color: #fff;
  padding: 0 0 0 5px;
  top: 1px;
  position: relative;
}

/* ======================  Heading Title Css Start here  =========================== */
.single-heading.option1 .heading-title {
  font-size: 16px;
  color: #7E858B;
  font-weight: 400;
  padding: 0px 0 0 0;
}
.single-heading.option2 p.heading-title {
  font-size: 16px;
  color: #7E858B;
  font-weight: 400;
  padding: 0px 0 0 0;
}

/* ======================  Section Title Css Start here  =========================== */
/*      title css option 1      */
.main-title-area.option1 .section-subtitle h3 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.main-title-area.option1 .section-title-one h1 {
  font-size: 40px;
  line-height: 50px;
  color: #060E14;
  margin: 19px 0 19px;
  font-weight: bold;
}
.main-title-area.option1 .section-description p {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  margin: 0 0 0;
}

/*      title css option 2      */

.main-title-area.option2 .section-subtitle h3 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.main-title-area.option2 .section-title-one h1 {
  font-size: 40px;
  line-height: 50px;
  color: #060E14;
  margin: 19px auto 0px;
  width: 45%;
  font-weight: bold;
}
/*      title css option 3     */
.main-title-area.option3 .section-subtitle h3 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.main-title-area.option3 .section-title-one h1 {
  font-size: 40px;
  line-height: 50px;
  color: #060E14;
  margin: 19px 0 0px;
  font-weight: bold;
}

/*      title css option 4    */

.main-title-area.option4 .section-subtitle h3 {
  font-size: 18px;
  line-height: 30px;
  color: #2688EA;
  font-weight: 500;
  margin: 0;
  background: #E4F0FC;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 31px;
  border-radius: 5px;
}
.main-title-area.option4 .section-title-one h1 {
  font-size: 40px;
  line-height: 50px;
  color: #060E14;
  margin: 19px 0 0px;
  font-weight: bold;
}

/* ======================  Icon Box Css Start here  =========================== */
.icon-box-section.option1 {
  transition: 0.5s;
  border: 1px solid rgb(4 20 36 / 7%);
  padding: 0px 17px;
  margin-bottom: 3px;
  border-radius: 30px;
}
.icon-box-section.option1 .icon-box-icon-content {
  display: inline-block;
}
.icon-box-section.option1 .icon-box-title h2{
  font-size: 20px;
  color: #464C52;
  margin: 0 0 0;
  font-weight: 600;
}
.icon-box-section.option1 .icon-box-text-content {
  display: inline-block;
}
.icon-box-section.option1 .icon-box-icon-content .small-img img {
  filter: grayscale(1);
  transition: 0.5s;
  margin-right: 7px;
  line-height: 0;
    position: relative;
    top: 3px;
}
.icon-box-section.option1:hover .icon-box-icon-content .small-img img {
  filter: grayscale(0);
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}
.icon-box-section.option1:hover .icon-box-title h2 {
  color: #3F45DE;
}
.icon-box-section.option1:hover {
  background-color: #3f44de14;
  border: 1px solid transparent;
}

@keyframes wobble_vertical{
16.65% {
  transform: translateY(8px);
}
33.3% {
  transform: translateY(-6px);
}
49.95% {
  transform: translateY(4px);
}
66.6% {
  transform: translateY(-2px);
}
83.25% {
  transform: translateY(1px);
}
100% {
  transform: translateY(0);
}
}

/*   icon box option 2*/
.icon-box-section.option2 {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #7e858b24;
  background-color: rgb(255,255,255);
  padding: 24px 25px 22px;
  position: relative;
  z-index: 1;
  transition: .5s;
}
.icon-box-section.option2::before{
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  z-index: -1;
  border-radius: 10px;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  transition: .5s;
}
.icon-box-section.option2 .icon-box-icon-content {
  flex-shrink: 0;
  margin-right: 17px;
  transition: .5s;
}
.icon-box-section.option2 .small-img{
  height: 70px;
  width: 70px;
  line-height: 88px;
  text-align: center;
  background-color: #2688ea1f;
  border-radius: 50%;
  transition: .5s;
}
.icon-box-section.option2 .small-img img{
  transition: .5s;
}
.icon-box-section.option2 .icon-box-title h2 {
  font-size: 22px;
  line-height: 30px;
  color: #464C52;
  font-weight: 600;
  margin: 0 0 10px;
  transition: 0.5s;
}
.icon-box-section.option2 .icon-box-description p {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  transition: 0.5s;
}
.icon-box-section.option2:hover:before{
  width: 100%;
  left: 0;
}
.icon-box-section.option2:hover .small-img{
  background-color: rgb(255,255,255);
}
.icon-box-section.option2:hover .icon-box-title h2 {
  color: #fff;
}
.icon-box-section.option2:hover .icon-box-description p {
  color: #fff;
}
.icon-box-section.option2:hover .small-img img {
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}

/*   icon box option 3    */
.icon-box-section.option3 {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0 0;
  justify-content: center;
  transition: 0.5s;
}
.icon-box-section.option3 .icon-box-icon {
  display: inline-block;
  float: left;
  padding: 0 10px 0 0;
}
.icon-box-section.option3 .icon-box-icon i {
  color: #fff;
  background-color: #2688EA;
  font-size: 24px;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
}
.icon-box-description p {
  color: #7E858B;
}

.social-media-section {
  padding: 14px 0 15px;
  transition: .5s;
}
.social-media-section ul li {
  display: inline-block;
  margin-right: 6px;
}
.social-media-section ul li a i {
  display: inline-block;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: #2688EA;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: .5s;
}
.social-media-section ul li a i::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  transition: .5s;
  transform: scale(0);
  border-radius: 50%;
  z-index: -1;
}
.social-media-section ul li a i:hover:after{
  transform: scale(1);
}

/*   icon box option 4    */
.icon-box-section.option4 {
  align-items: center;
  display: flex;
  transition: .5s;
}
.icon-box-section.option4 .small-img {
  position: relative;
  top: 4px;
  transition: .5s;
  filter: brightness(0.4);
}
.icon-box-section.option4 .icon-box-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: #464C52;
  line-height: 30px;
  margin: 0 0 0 10px;
  transition: .5s;
}
.icon-box-section.option4:hover .icon-box-title h2{
  color: #3F45DE;
}
.icon-box-section.option4:hover .small-img{
  filter: brightness(1);
}

/*   icon box option 5    */
.icon-box-section.option5 {
  padding: 32px 0 4px;
  transition: .5s;
}
.icon-box-section.option5 .icon-box-icon i{
  font-size: 40px;
  display: inline-block;
  color: #2688EA;
  height: 80px;
  background: #363DA31A;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
}
.icon-box-section.option5 .icon-box-title h2 {
  font-size: 28px;
  color: #060E14;
  font-weight: 700;
  line-height: 34px;
  margin: 20px 0 15px;
}
.icon-box-section.option5 .icon-box-description p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  margin: 0;
}
.contact-box{
  border-top: 1px solid #9094B640;
  border-bottom: 1px solid #9094B640;
}
.form-group input{
  height: 56px;
  width: 100%;
  background-color: #fff;
  outline: 0;
  border: 1px solid #586D9126;
  border-radius: 5px;
  margin-bottom: 32px;
}
.form-group textarea {
  height: 161px;
  width: 100%;
  background-color: #fff;
  outline: 0;
  border: 1px solid #586D9126;
  border-radius: 5px;
  margin-bottom: 32px;
  padding: 12px 15px 0;
}
.buttons input {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  width: 170px;
  height: 58px;
  background: linear-gradient(270deg, #2688EA 0%, #3F45DE 100%);
  border-radius: 30px;
  margin-bottom: 0px;
  transition: .5s;
}
.buttons input:hover{
  background-color: #060E14;
}
.icon-box-section.option6 {
  display: flex;
  align-items: center;
  transition: .5s;
  margin-left: 30px;
}
.icon-box-section.option6 .icon-box-icon i {
  font-size: 30px;
  color: #26A692;
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  background-color: #fff;
  line-height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.icon-box-section.option6 .icon-box-title h2 {
   font-size: 17px;
   color: #fff;
   font-weight: 400;
   margin: 0 0 0;
}
.icon-box-section.option6 .icon-box-description p {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
}

/* ======================  Service section Css Start here  =========================== */
.service-section.option1 {
  text-align: center;
  padding: 41px 5px 30px;
  background: #fff;
  position: relative;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 0px 0px 6px 0px #00000026;
}
.service-section.option1::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  height: 20px;
  width: 100%;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  border-radius: 0 0 10px 10px;
  z-index: -1;
  transition: .5s;
}
.service-section.option1 .service-icon-img {
  background: #2688ea25;
  height: 70px;
  width: 70px;
  line-height: 100px;
  border-radius: 5px;
  text-align: center;
  margin: auto;
  filter: brightness(1) invert(0);
  transition: 0.5s;
}

.service-section.option1 .service-title h1 {
  font-size: 22px;
  margin: 24px 0 11px;
  transition: 0.5s;
  line-height: 30px;
  color: #464C52;
  font-weight: 600;
  text-align: center;
}
.service-section.option1 .service-description p {
  transition: 0.5s;
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  text-align: center;
  padding: 0 0 17px;
}
.service-section.option1 .service-button a {
  font-size: 18px;
  color: #464C52;
  font-weight: 600;
  position: relative;
  display: inline-block;
  z-index: 1;
  transition: 0.4s;
  font-family: "Urbanist", sans-serif;
}
.service-section.option1 .service-button a::before {
  position: absolute;
  content: "";
  top: 24px;
  right: 0;
  height: 1px;
  width: 0%;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  z-index: -1;
  transition: .4s;
}
.service-section.option1:hover:before{
  bottom: -7px;
}
.service-section.option1:hover .service-icon-img{
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  border-radius: 50%;
}
.service-section.option1:hover .service-icon-img img{
  filter: brightness(0) invert(1);
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}
.service-section.option1:hover .service-title h1{
  color: #3F45DE;
}
.service-section.option1:hover .service-button a{
  color: #3F45DE;
}
.service-section.option1:hover .service-button a::before{
  width: 100%;
  left: 0;
}

/*  service option 2 css Start here  */
.service-section.option2 {
  text-align: center;
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0;
}
.service-section.option2 .service-single-image {
    line-height: 0;
    border: 20px solid #fff;
    border-bottom: 0;
}
.service-single-image img {
    width: 100%;
}
.service-section.option2 .service-text-content {
  padding: 50px 20px 32px 20px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 5px 5px;
  filter: drop-shadow(0px 10px 25px rgba(163,168,157,0.2));
  background-color: #ffffff;
}
.service-section.option2 .service-icon-img {
  background: #3F45DE;
  height: 75px;
  width: 75px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  transition: 0.5s;
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  margin: auto;
}
.service-section.option2:hover .service-icon-img {
  background: #ff8611;
}
.service-section.option2 .service-title h1 {
  margin: 0;
  padding: 0 0 3px 0;
  transition: 0.5s;
  font-size: 20px;
  line-height: 44px;
  color: #121d17;
  font-weight: 600;
  font-family: "Poppins";
  text-align: center;
}
.service-section.option2 .service-description p {
  transition: 0.5s;
  font-size: 16px;
  line-height: 26px;
  color: #6c7470;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  padding: 0 0 20px 0;
}
.service-section.option2 .service-button a {
  font-size: 15px;
  color: #121d17;
  font-weight: 500;
  font-family: "Poppins";
  transition: 0.4s;
  border-bottom: 1px solid #D0D2D1;
}
.service-section.option2 .service-button a:hover {
  color: #3F45DE;
  border-bottom: 1px solid #3F45DE;
}
.service-section.option2 .service-button a i {
  color: #3F45DE;
  transform: rotate(-45deg);
  display: inline-block;
  padding: 0 0 0 2px;
  transition:0.4s;
}
.service-section.option2 .service-button:hover i {
  transform: rotate(0deg);
}

/* ==========================
	    service-carousel css
=========================*/
.slick-initialized .slick-slide {
  display: block;
  text-align: center;
  position: relative;
  background-color: #fff;
  margin: 2px 12px;
  padding: 27px 5px 31px;
  transition: .5s;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 0px #00000040;
  transition: .5s;
}
.slick-initialized .slick-slide::before{
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: #3f44de63;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.service-carousel-img {
  text-align: center;
  display: inline-block;
}
.service-carousel-title a h1 {
  font-size: 22px;
  line-height: 30px;
  color: #464C52;
  margin: 21px 0 11px;
  display: inline-block;
  transition: .5s;
  font-weight: 600;
}
.service-carousel-desc p{
  font-size: 17px;
  color: #7E858B;
  line-height: 26px;
  margin: 0 0 0;
}

.slick-initialized ul.slick-dots {
  position: absolute;
  top: -120px;
  left: 625px;
}
.slick-initialized ul.slick-dots li {
  display: inline-block;
  margin-right: 5px;
}
.slick-initialized .slick-slide:hover:before{
  left: 0;
  right: 0;
  opacity: 0;
}
.service-carousel-title a h1:hover{
  color: #3F45DE;
}

/* ======================
	Form area custom css
=========================*/
.subscribe-wrapper button {
  display: inline-block;
  font-size: 28px;
  position: absolute;
  color: #3F45DE;
  background-color: transparent;
  border: none;
  outline: 0;
  top: 12px;
  right: 320px;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}
/* ======================  Main Contact css start here  =========================== */

.main-form-section input {
  font-size: 16px;
  height: 52px;
  line-height: 52px;
  padding: 0 0 0 15px;
  border: 1px solid #ebebeb;
  color: #6c7470 !important;
  font-weight: 400;
  font-family: "Roboto";
  margin: 0 0 30px 0;
  border-radius: 5px;
}
.main-form-section textarea {
  height: 150px !important;
  border: 1px solid #ebebeb;
  margin: 0 0 30px 0;
  border-radius: 5px;
}
.main-form-section .contact-button input {
  height: 55px;
  background: #3F45DE;
  color: #fff !important;
  width: 202px;
  line-height: 55px;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-family: "Roboto";
  margin: 10px 0 0 0;
  border-radius: 5px;
}
.main-form-section .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #3F45DE;
}
.main-form-section input::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
  font-family: "Roboto";
}
.main-form-section textarea::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
  font-family: "Roboto";
}
.main-form-section select {
  font-size: 16px;
  height: 52px;
  line-height: 52px;
  padding: 0 0 0 15px;
  border: 1px solid #ebebeb;
  color: #b1b1b1 !important;
  font-weight: 400;
  font-family: "Roboto";
  margin: 0 0 30px 0;
  border-radius: 5px;
  width: 100%;
  outline: 0;
}
.main-form-section select option {
  font-size: 16px;
  color: #121D17;
  font-weight: 400;
  font-family: "Poppins";
}
.main-form-section select option:hover {
  background: #3F45DE;
  color: #fff;
}
.main-form-section select::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
  font-family: "Roboto";
}
.main-form-section .select:focus {
  outline: none;
  box-shadow: none;
  border-color: #3F45DE;
}
p.footer-email label {
  width: 100%;
}
p.footer-email label input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 15px;
  border-radius: 5px;
  background: transparent;
  outline: 0;
  margin: 0 0 20px 0;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
}
p.footer-email label input::placeholder {
  opacity: 0.3;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
}
.footer-email-button {
  transition: 0.5s;
}
.footer-email-button input[type="submit"] {
  background: #3F45DE;
  color: #fff;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.5s;
  border: 1px solid transparent;
}
.footer-email-button input[type="submit"]:hover {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 2px;
}

/* ======================  Icon List Css Start here  =========================== */
ul.single-list-content {
  padding: 18px 0 24px;
}

.list-section.style1 .single-list-content li {
  display: inline-block;
}
.list-section.style1 .single-list-content li a {
  font-size: 18px;
  display: inline-block;
  color: #7E858B;
  margin-right: 37px;
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
  transition: .5s;
  font-weight: 500;
}
.list-section.style1 .single-list-content li a:hover{
  color: #3F45DE;
}

.list-section.style3 .single-list-content li {
  display: inline-block;
}
.list-section.style3 .single-list-content li a {
  font-size: 16px;
  display: inline-block;
  color: #7E858B;
  margin-left: 7px;
  text-transform: capitalize;
  font-family: "Urbanist", sans-serif;
  transition: .5s;
  font-weight: 500;
}
.list-section.style3 .single-list-content li a:hover{
  color: #3F45DE;
}

/* ======================  Pricing Css Start here  =========================== */
.pricing-section {
  padding: 35px 34px 27px;
  position: relative;
  transition: 0.4s;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin: 0 7px;
  box-shadow: 0px 0px 6px 0px #00000026;
  gap: 22px;
}
.pricing-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  z-index: -1;
  transform: rotate(2deg);
  border-radius: 10px;
  transition: .5s;
}
.pricing-inner-box {
  width: 50%;
}
.pricing-content {
  width: 50%;
}
.pricing-price-content {
  padding: 20px 0 14px;
}
.pricing-price-content .dollar {
    font-size: 40px;
    line-height: 50px;
    color: #060E14;
    font-weight: 700;
    transition: 0.4s;
}
.pricing-price-content .pricing-price {
  font-size: 40px;
  line-height: 50px;
  color: #060E14;
  font-weight: 700;
  transition: 0.4s;
}
.pricing-price-content .price-date {
    font-size: 17px;
    line-height: 26px;
    color: #7E858B;
    font-weight: 400;
    transition: 0.4s;
}
.pricing-desc p {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  transition: 0.4s;
}
.pricing-name h2 {
    font-size: 18px;
    line-height: 42px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}
.pricing-title h1 {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  transition: 0.4s;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  margin: 0;
  border: 1px solid #3F45DE;
  position: relative;
  display: inline-block;
  padding: 3px 23px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 1;
}
.pricing-title h1::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fff;
  transition: .5s;
  border-radius: 30px;
  z-index: -1;
}
.pricing-services-list li {
    list-style: none;
    font-size: 17px;
    line-height: 26px;
    color: #464C52;
    font-weight: 400;
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
    transition: 0.4s;
}
.pricing-section span.pricing-svg {
  position: absolute;
  right: 0;
}
.pricing-contact-button {
  display: inline-block;
  padding: 22px 0 0 0;
}
.pricing-contact-button a {
  border-radius: 28px;
  background-image: linear-gradient(to right, #3F45DE, #2688EA);
  position: relative;
  display: inline-block;
  padding: 12px 44px;
  z-index: 1;
  transition: 0.4s;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  overflow: hidden;
  font-family: "Urbanist", sans-serif;
}
.pricing-contact-button a:before {
  content: "";
  background: #060E14;
  height: 50%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s;
  z-index: -1;
}
.pricing-contact-button a::after {
  content: "";
  background: #060E14;
  height: 50%;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: .5s;
  z-index: -1;
}
.pricing-contact-button a:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.pricing-contact-button a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.pricing-contact-button a:hover{
  color: #fff;
} 
.pricing-title h1:hover:before{
  width: 100%;
}
.pricing-title h1:hover{
  color: #3F45DE;
}
.pricing-section:hover .pricing-price-content span{
  color: #3F45DE;
}
.pricing-section:hover::before{
  transform: rotate(-2deg);
}

/* ======================  team Member Css Start here  =========================== */
.team-section.option1 {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    padding: 0 0 24px;
    border-radius: 150px 150px 0  0;
    overflow: hidden;
    box-shadow: 0px 0px 6px 0px #00000026;
}
.team-member-image {
  line-height: 0;
  position: relative;
  transition: .5s;
}

.team-member-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.team-section.option1 .team-member-image img {
  transition:0.4s;
}
.team-section.option1 .team-member-content {
  padding: 0;
}
.team-section.option1 .team-member-name h1 {
  font-size: 22px;
  margin: 22px 0 0;
  line-height: 30px;
  color: #464C52;
  font-weight: 600;
  text-align: center;
  transition: 0.4s;
}
.team-section.option1 .member-designation {
  position: relative;
}
.team-section.option1 .member-designation h3 {
  margin: 1px 0 10px;
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 300;
  text-align: center;
  transition: 0.5s;
}
.team-section.option1 ul.team-media-icon li a {
  font-size: 16px;
  color: #2688EA;
  margin-right: 8px;
  display: inline-block;
  transition: 0.5s;
}

ul.team-media-icon li {
  list-style: none;
  display: inline-block;
}
.team-section.option1 ul.team-media-icon li {
  list-style: none;
  display: inline-block;
  padding: 0 5px 0;
}
.team-section.option1:hover .team-member-name h1{
  color: #2688EA;
}
.team-section.option1:hover .team-member-image::before{
  animation: shine 800ms;
}

/* ======================  team Member Slide Css Start here  =========================== */

.team-slide-section {
  background: #3F45DE;
  border-radius: 0 0 5px 5px;
}
ul.team-slide-media-icon li {
  list-style: none;
  display: inline-block;
}
.team-slide-member-designation p {
  transition: 0.4s;
  color: #121D17;
  font-size: 18px;
  font-weight: 500;
}
.team-slide-member-name h1 {
  font-size: 25px;
  transition: 0.4s;
  color: #121D17;
  font-weight: 700;
  line-height: 35px;
}

/* ======================  Testimonial Css Start here  =========================== */
.testimonial-section.option1 .testimonial-single-content {
  position: relative;
  z-index: 1;
  padding: 32px 20px 35px;
  border-radius: 7px;
  margin: 5px;
  transition: 0.5s;
  box-shadow: 0px 0px 6px 0px #00000026;
}
.testimonial-section.option1 .testimonial-img-desc-content {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}
.testimonial-section.option1 .testimonial-image img {
  height: auto;
  width: auto;
  display: inline-block;
  position: relative;
  top: 7px;
}
.testimonial-section.option1 .about-author {
  padding: 0;
  display: inline-block;
}
.testimonial-section.option1 .testimonial-image {
  position: absolute;
  bottom: 40px;
  right: 20px;
}
.testimonial-section.option1 .about-author h1 {
  font-size: 22px;
  line-height: 30px;
  color: #464C52;
  transition: 0.4s;
  font-weight: 600;
  margin: 0;
}
.testimonial-section.option1 .about-author h3 {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  margin: 5px 0 0;
}
.testimonial-section.option1 .testi-description p {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  padding: 18px 0 15px 0;
}
.testimonial-section.option1 .author-info {
  position: relative;
  align-content: center;
  text-align: left;
  transition:0.5s;
}
.testimonial-section.option1 .author-image {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 12px 0 0;
}
.testimonial-section.option1 .author-image img {
  display: inline-block;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  top: 8px;
}
.testimonial-star i.fa.fa-star.active {
  font-size: 15px;
  color: #FFC542;
  padding: 0 5px 0 0;
}

.testimonial-section-carousel1 .owl-dots {
  text-align: right;
  position: absolute;
  bottom: 13px;
  right: 0;
}
.testimonial-section-carousel1 .owl-dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #CFD2D1;
  margin: 0 10px 0 0;
}
.testimonial-section-carousel1 .owl-dot.active {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #3F45DE;
}

/*=======testimonial.option2============*/
.testimonial.option2 .testimonial-single-content {
  position: relative;
  z-index: 1;
  padding: 32px 20px 35px;
  border-radius: 7px;
  margin: 5px;
  transition: 0.5s;
  box-shadow: 0px 0px 6px 0px #00000026;
}
.testimonial.option2 .about-author h1 {
  font-size: 22px;
  line-height: 30px;
  color: #464C52;
  transition: 0.4s;
  font-weight: 600;
  margin: 0;
}
.testimonial.option2 .about-author h3 {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  margin: 5px 0 0;
}
.testimonial.option2 .testi-description p {
  font-size: 17px;
  line-height: 26px;
  color: #7E858B;
  font-weight: 400;
  padding: 18px 0 15px 0;
}
.testimonial.option2 .author-image {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 20px 0 0;
}
.testimonial.option2 .author-image img {
  display: inline-block;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  top: 8px;
}
.testimonial.option2 .about-author {
  padding: 0;
  display: inline-block;
}
.testimonial.option2 .testimonial-image {
  position: absolute;
  bottom: 40px;
  right: 20px;
}

/* ======================  Work System Css Start here  =========================== */
.work-system-section {
  background: #3F45DE;
  border-radius: 10px;
  padding: 30px 0 30px 0;
  text-align: center;
  transition: 0.5s;
}
.working-title h1 {
  font-size: 25px;
}
.work-system-single-img {
  line-height: 0;
}
.work-system-numbering h3 {
  padding: 0 0 20px 0;
  font-size: 20px;
}

/* ======================  Last Post Css Start here  =========================== */
.single-last-post {
    padding: 0;
    margin: 0 0 20px 0;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
.last-post-content {
    display: inline-block;
    padding: 0 0 0 15px;
}
.last-post-img {
    display: inline-block;
    float: left;
    line-height: 0;
}
.last-post-img img {
  height: 80px;
  width: 80px;
  border-radius: 5px;
}
.last-post-title h1 {
    line-height: 30px;
}
.last-post-title h1 a {
    color: #fff;
    font-size: 15px;
    display: inline-block;
    line-height: 25px;
    font-weight: 500;
    transition:0.4s;
}
.last-post-title h1 a:hover {
    color: #3F45DE;
}
.last-post-time span {
    color: #3F45DE;
    font-size: 14px;
}

/* ======================  Blog Post Css Start here  =========================== */
.single-blog-post-content.option1 {
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin: 3px 0;
  box-shadow: 0px 0px 2px 0px #00000040;
}
.single-blog-post-content.option1 .blog-post-img {
    position: relative;
    line-height: 0;
    transition: .5s;
    overflow: hidden;
}
.single-blog-post-content.option1 .blog-post-img::before{
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.single-blog-post-content .blog-post-img img {
  height: 208px;
  width: 260px;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  position: relative;
}
.blog-post-text-content {
  margin: 35px 0 14px;
}
.single-blog-post-content .blog-author-admin span i {
  display: inline-block;
  color: #3F45DE;
  margin-right: 8px;
}
.single-blog-post-content .blog-author-admin a {
  text-transform: capitalize;
  display: inline-block;
  margin: 0 0 0;
  font-size: 15px;
  line-height: 26px;
  color: #464C52;
  font-weight: 400;
  transition:0.4s;
}
.single-blog-post-content .blog-author-admin a:hover {
  color: #3F45DE;
}
.single-blog-post-content .blog-post-title h1 a {
  font-size: 22px;
  display: inline-block;
  padding: 17px 0 27px;
  line-height: 30px;
  color: #060E14;
  font-weight: 600;
  transition: 0.5s;
}
.single-blog-post-content .blog-post-title h1 a:hover {
  color: #3F45DE;
}
.single-blog-post-content .blog-author-admin {
  display: inline-block;
  margin-right: 18px;
}
.single-blog-post-content .blog-post-time {
  display: inline-block;
}
.single-blog-post-content .blog-post-time span {
  display: inline-block;
  padding: 0;
  font-size: 15px;
  line-height: 26px;
  color: #464C52;
  font-weight: 400;
}
.single-blog-post-content .blog-post-time span i{
  display: inline-block;
  color: #3F45DE;
  margin-right: 8px;
}
.single-blog-post-content .blog-post-button a {
  display: inline-block;
  transition: 0.5s;
  font-size: 18px;
  line-height: 26px;
  color: #3F45DE;
  font-weight: 500;
  border: 1px solid #3F45DE;
  border-radius: 30px;
  padding: 15px 35px;
  position: relative;
  overflow: hidden;
  font-family: "Urbanist", sans-serif;
  z-index: 1;
}
.single-blog-post-content .blog-post-button a:hover{
  color: #fff;
}
.single-blog-post-content .blog-post-button a:before {
  background: linear-gradient(to right, #3F45DE, #2688EA);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: 0.4s;
  border-radius: 30px;
}
.single-blog-post-content .blog-post-button a:hover:before {
  width: 100%;
}
.single-blog-post-content .blog-post-button a i {
  transition: 0.5s;
  font-size: 15px;
  color: #3F45DE;
  position: relative;
  top: 1px;
}
.single-blog-post-content .blog-post-button a:hover i{
  color: #fff;
}
.single-blog-post-content.option1 .blog-post-img img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}
.single-blog-post-content:hover .blog-post-img::before{
  animation: shine 800ms;
}
@keyframes shine{
  100%{
    left: 100%;
  }
}

/*==========        Portfolio css          ==========*/
.portfolio-category-tab-menu {
    position: absolute;
    top: -90px;
    right: 10px;
}
.portfolio-category-tab-menu ul {
    padding: 0;
    text-align: right;
    margin: 0;
}
.portfolio-category-tab-menu ul li {
    background: #F5F7F6;
    font-size: 15px;
    line-height: 1;
    transition: 0.5s;
    cursor: pointer;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    margin: 0 3px;
    margin-bottom: 7px;
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #F5F7F6;
    color: #000000;
}
.portfolio-category-tab-menu li:hover {
	color: #fff;
	background: #3F45DE;
}
.portfolio-category-tab-menu li.active_category_menu {
	color: #fff;
	background: #3F45DE;
}
.single-portfolio {
  position: relative;
  margin: 0 0 30px 0;
  transition: 0.5s;
  overflow: hidden;
}
.portfolio-thumb {
    line-height: 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.single-portfolio .portfolio-thumb img {
    height: 430px;
    object-fit: cover;
    border-radius: 5px;
}
.portfolio-text-content {
    background: #000000;
    position: absolute;
    width: 80%;
    height: 42%;
    z-index: 1;
    bottom: -100%;
    text-align: left;
    padding: 25px 20px 20px 40px;
    transition: 0.5s;
    border-radius: 0 0 5px 0;
}
.single-portfolio:hover .portfolio-text-content {
    bottom: 0;
}
.portfolio-category a {
    font-size: 15px;
    line-height: 26px;
    color: #FF8711;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    transition: 0.4s;
    padding: 0 0 0 30px;
    position: relative;
    z-index: 1;
}
.portfolio-category a:hover {
  color: #ffffff;
}
.portfolio-category a:before {
    content:"";
    background: #FF8711;
    position: absolute;
    z-index: -1;
    left:0;
    height:1px;
    width:25px;
    transition:0.4s;
    top:10px;
}
.portfolio-category a:hover:before {
    background: #fff;
}
.portfolio-title h1 {
    line-height: 22px;
    padding: 0 0 18px 0;
}
.portfolio-title h1 a {
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    transition:0.4s;
}
.portfolio-title h1 a:hover {
    color: #7bb92f;
}
.portfolio-button a {
    color: #7bb92f;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-family: "Poppins";
    transition: 0.4s;
    border-bottom: 1px solid #7bb92f;
}
.portfolio-button a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}
.portfolio-button a i {
    color: #3F45DE;
    transform: rotate(-45deg);
    display: inline-block;
    padding: 0 0 0 2px;
    transition: 0.4s;
}
.portfolio-button a:hover i {
    color: #fff;
    transform: rotate(0deg);
}

/* ======================  Video Button Css Start here  =========================== */
.video-popup {
    /* position: absolute; */
    z-index: 1;
    /* top: -369px; */
    /* right: 82px; */
    width: 197px;
    height: 88px;
    border-radius: 44px;
    background: #3F45DE;
}
.video-popup-button {
  position: absolute;
  top: 44px;
  left: 45px;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3F45DE;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.3s;
}
.video-popup-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: inherit;
    height: inherit;
    background: inherit;
    border-radius: 50%;
    -webkit-animation: animate-border 1500ms ease-out infinite;
    animation: animate-border 1500ms ease-out infinite;
    z-index: -1;
}
@keyframes animate-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
a.video-text {
  position: relative;
  top: 40px;
  left: 100px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
/* ======================  elemento advince Css Start here  =========================== */

.footer-title{
  position: relative;
  z-index:1;
  transition: 0.4s;
}
.footer-title:before{
  position: absolute;
  content:"";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  z-index: -1;
	background: #3F45DE;
  transition: 0.4s;
}
.footer-title:after{
  position: absolute;
  content:"";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  z-index: 1;
	background: #fff;
  transition: 0.4s;
}
.footer-title:hover:after{
  width: 60px;
}
.footer-icon i{
  font-size: 16px;
}
.footer-copyright span{
	color: #3F45DE;
}
.footer-call-number i{
  position: relative;
}
.footer-call-number i:after {
  position: absolute;
  content: "";
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: inherit;
  border: 2px solid #fff;
  left: -10px;
  top: -14px;
}
.zoom-in-out {
    -webkit-animation: zoom_inout 2s alternate infinite;
    animation: zoom_inout 2s alternate infinite;
}

@keyframes zoom_inout {
    0% {
        -webkit-transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.1);
    }
}
.suntek-progress-bar .elementor-progress-percentage {
    padding-inline-end: 0;
    position: absolute;
    right: 0;
    top: -25px;
}

.subscribe-wrapper {
  text-align: center;
  padding: 0 0 0;
}
.subscribe-wrapper input {
  position: relative;
  width: 56%;
  height: 58px;
  background: #fff;
  outline: 0;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 0 35px;
}
.subscribe-wrapper input::before{
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 35px;
  background-color: #80868C;
}

.h2-about{
  position: absolute;
  right: 118px;
  bottom: 104px;
}

.dance {
  -webkit-animation: dance 2s alternate infinite;
  animation: dance 2s alternate infinite;
}

@keyframes dance {
  0% {
      -webkit-transform: scale(0.5);
  }

  100% {
      -webkit-transform: scale(1.2);
  }
}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
  animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
  0% {
      -webkit-transform: translate3d(0, 0, 0);
  }

  50% {
      -webkit-transform: translate3d(25px, -25px, 0);
  }

  100% {
      -webkit-transform: translate3d(0, -25px, 25px);
  }
}


