/*
* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Nabvar Area CSS
** - App Landing CSS
** - Services Area CSS
** - Features Area CSS
** - Footer Area CSS
** - Go top CSS

*******************************************
/*

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto");
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #7f7f7f;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #242424;
  font-weight: bold;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
}

button:focus {
  outline: 0;
}

p {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #7f7f7f;
}

p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table .d-table-cell {
  vertical-align: middle;
}

.default-btn {
  padding: 15px 40px;
  border-radius: 30px;
  display: inline-block;
  border: 1px solid #ffffff;
}

.section-title {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}

.section-title span {
  font-size: 16px;
  font-weight: 500;
  color: #547af0;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 525px;
  margin: auto;
}


/* Nabvar Area CSS */
.main-navbar {
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main-navbar.menu-shrink {
  -webkit-box-shadow: 0px 2px 25px #ddd;
          box-shadow: 0px 2px 25px #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}

.main-navbar .navbar-nav .nav-link {
  color: #301d44;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  margin: 0 20px;
  position: relative;
}

.main-navbar .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  background-color: #002246;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main-navbar .navbar-nav .nav-link::focus {
  color: #002246;
}

.main-navbar .navbar-nav .nav-link:hover {
  color: #002246;
}

.main-navbar .navbar-nav .nav-link:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-navbar .navbar-nav .nav-link.active {
  color: #002246;
}

.main-navbar .navbar-nav .nav-link.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-navbar .nav-btn .default-btn {
  padding: 10px 25px;
}

.main-navbar .nav-btn .default-btn.bg-main {
  background-color: #002246;
  color: #ffffff;
}

.main-navbar .nav-btn .default-btn.bg-main:hover {
  background-color: #301d44;
  color: #ffffff;
}

.main-navbar .nav-btn .default-btn.bg-color {
  background-color: #301d44;
  color: #ffffff;
}

.main-navbar .nav-btn .default-btn:hover {
  background-color: #002246;
  color: #ffffff;
}

/* Toggler Navbar */
.navbar-toggler {
  border: none;
  padding: 7px;
  border-radius: 0;
}

.navbar-toggler .icon-bar {
  width: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #069ee8;
  height: 2px;
  display: block;
}

.navbar-toggler .top-bar {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
  left: 0;
  position: relative;
}

.navbar-toggler .middle-bar {
  opacity: 1;
  margin: 6px 0;
}

.navbar-toggler .bottom-bar {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
  left: 0px;
  position: relative;
}

.navbar-toggler[aria-expanded="true"] .top-bar {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0;
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 0;
}



/* Features Area CSS */
.features-area {
  background-color: #f9f9f9;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.features-area .features-card-content .title {
  font-size: 36px;
  margin-bottom: 40px;
}

.features-area .features-contant {
  position: relative;
  z-index: 1;
}

.features-area .features-contant .features-shape {
  position: absolute;
  max-width: 440px;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}



/* Popup Video Area CSS */
.popup-video-area {
  background-size: cover;
  background-position: center center;
  height: 460px;
  position: relative;
}

.popup-video-area.bg-1 {
  background-image: url("../images/saas-img/video-area-bg.jpg");
}

.popup-video-area.bg-2 {
  background-image: url("../images/app-img/video-bg.jpg");
}

.video-btn {
  position: relative;
  text-align: center;
}

.video-btn a {
  background-color: #002246;
  color: #ffffff;
  height: 100px;
  width: 100px;
  position: absolute;
  text-align: center;
  margin: -50px 0 0 -30px;
  border-radius: 100px;
  z-index: 1;
  font-size: 40px;
  line-height: 100px;
}

.video-btn a .ripple {
  background-color: rgba(86, 125, 244, 0.3);
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: -1;
  left: 50%;
  top: 50%;
  opacity: 0;
  margin: -50px 0 0 -50px;
  border-radius: 100%;
  -webkit-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
}

.video-btn a .ripple:nth-child(2) {
  animation-delay: .4s;
  -webkit-animation-delay: .4s;
}

.video-btn a .ripple:nth-child(3) {
  animation-delay: .8s;
  -webkit-animation-delay: .8s;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Footer Area CSS */
.footer-area {
  background-color: #354873;
}

.footer-area.bor-radius-right {
  border-radius: 0px 130px 0px 0px;
}

.footer-area.bor-radius-top {
  border-radius: 130px 130px 0px 0px;
}

.footer-area.pt-200 {
  padding-top: 200px;
}

.footer-area .footer-widget {
  margin-bottom: 30px;
}

.footer-area .footer-widget .logo {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer-area .footer-widget p {
  color: #ffffff;
}

.footer-area .footer-widget .footer-social {
  padding-left: 0;
  margin: 25px 0 0 0;
}

.footer-area .footer-widget .footer-social li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0;
}

.footer-area .footer-widget .footer-social li a i {
  color: #ffffff;
  font-size: 17px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-area .footer-widget .footer-social li a i.bg-1 {
  background-color: #fa866b;
}

.footer-area .footer-widget .footer-social li a i.bg-2 {
  background-color: #f5d150;
}

.footer-area .footer-widget .footer-social li a i.bg-3 {
  background-color: #58d7c1;
}

.footer-area .footer-widget .footer-social li a i.bg-4 {
  background-color: #fb9ed7;
}

.footer-area .footer-widget .footer-social li a:hover i.bg-1 {
  background-color: #58d7c1;
}

.footer-area .footer-widget .footer-social li a:hover i.bg-2 {
  background-color: #fb9ed7;
}

.footer-area .footer-widget .footer-social li a:hover i.bg-3 {
  background-color: #fa866b;
}

.footer-area .footer-widget .footer-social li a:hover i.bg-4 {
  background-color: #f5d150;
}

.footer-area .footer-widget .title {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 50px;
}

.footer-area .footer-widget .footer-text {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-area .footer-widget .footer-text li {
  padding: 0 0 0 20px;
  margin: 0 0 7px 0;
  position: relative;
}

.footer-area .footer-widget .footer-text li a {
  color: #ffffff;
}

.footer-area .footer-widget .footer-text li a i {
  position: absolute;
  left: 0;
  top: 5px;
}

.footer-area .footer-widget .footer-text li a:hover {
  color: #242424;
}

.footer-area .footer-widget .footer-image img {
  margin-bottom: 10px;
}

.footer-area .copyright-text {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #6b8df5;
}

.footer-area .copyright-text p {
  color: #ffffff;
}

.footer-area .copyright-text p a {
  color: #f5d150;
}

.footer-area .copyright-text p a:hover {
  color: #fa866b;
}


/* Preloader CSS */
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
}

.preloader .lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader .lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 32px solid #002246;
  border-color: #002246 transparent #002246 transparent;
  -webkit-animation: lds-hourglass 1.2s infinite;
          animation: lds-hourglass 1.2s infinite;
}

@-webkit-keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

@keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

/* Contact Area */
.contact-area .contact-content .form-group {
  margin-bottom: 25px;
}

.contact-area .contact-content .form-group .form-control {
  height: 60px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  color: #242424;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-area .contact-content .form-group textarea.form-control {
  height: auto !important;
}

.contact-area .contact-content .form-group .with-errors .list-unstyled {
  padding: 0;
  margin: 10px 0 0;
}

.contact-area .contact-content .form-group .with-errors .list-unstyled li {
  color: #ff0000;
}

.contact-area .contact-content .default-btn {
  background-color: #002246;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-area .contact-content .default-btn:hover {
  background-color: #242424;
  color: #ffffff;
}

.contact-area .contact-content .text-danger {
  color: #ff0000 !important;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Go top */
.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 9999;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.go-top.active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.go-top i {
  background: #242424;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.go-top i:hover {
  background: #002246;
  color: #ffffff;
}







/* Our Services Area */
.our-services-area {
  background-color: #f6f4ff;
}

.our-service-card {
  padding: 40px 30px;
  -webkit-box-shadow: 0px 0px 20px 1px #e0dddd;
          box-shadow: 0px 0px 20px 1px #e0dddd;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.our-service-card i {
  font-size: 30px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

.our-service-card i.bg-1 {
  background-color: #002246;
}

.our-service-card i.bg-2 {
  background-color: #f6d665;
}

.our-service-card i.bg-3 {
  background-color: #fb9ed7;
}

.our-service-card i.bg-4 {
  background-color: #a78bc5;
}

.our-service-card i.bg-5 {
  background-color: #f47456;
}

.our-service-card i.bg-6 {
  background-color: #58d7c1;
}

.our-service-card i i {
  position: relative;
  left: -15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.our-service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.our-service-card:hover {
  margin-top: -5px;
  -webkit-box-shadow: 0px 8px 20px 0px #b9b8b9;
          box-shadow: 0px 8px 20px 0px #b9b8b9;
  background-color: #002246;
}

.our-service-card:hover i {
  background-color: #ffeae5;
  color: #f47456;
}

.our-service-card:hover h3 {
  color: #ffffff;
}

.our-service-card:hover p {
  color: #f9f9f9;
}

/* Testimonials SLider Area */
.testimonials-slider {
  position: relative;
}

.testimonials-slider .testimonials-slider-item {
  position: relative;
  max-width: 900px;
  margin: 60px auto 60px;
  text-align: center;
  padding: 70px 120px;
  -webkit-box-shadow: 0px 0px 20px #cecece;
          box-shadow: 0px 0px 20px #cecece;
  border-radius: 50px;
}

.testimonials-slider .testimonials-slider-item::before {
  content: '';
  position: absolute;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 20px #e9e9e9;
          box-shadow: 0px 10px 20px #e9e9e9;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  max-width: 765px;
  height: 30px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -30px;
  z-index: -1;
}

.testimonials-slider .testimonials-slider-item img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px #cecece;
          box-shadow: 0px 0px 20px #cecece;
  border: 8px solid #ffffff;
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
}

.testimonials-slider .testimonials-slider-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.testimonials-slider .testimonials-slider-item .rating {
  margin-bottom: 10px;
}

.testimonials-slider .testimonials-slider-item .rating i {
  color: #ffb300;
}

.testimonials-slider .testimonials-slider-item p {
  font-size: 18px;
}

.testimonials-slider.owl-theme .owl-nav {
  margin: 0;
}

.testimonials-slider.owl-theme .owl-nav .owl-prev, .testimonials-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  font-size: 25px;
  color: #242424;
  margin: 0;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.testimonials-slider.owl-theme .owl-nav .owl-prev:hover, .testimonials-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: transparent;
  color: #002246;
}

.testimonials-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 10px;
}


/*================================================
App Landing CSS
=================================================*/
/* Navbar Area */
.main-navbar.app-nav {
  border-bottom: 1px solid #edf0f4;
}

.main-navbar.app-nav.menu-shrink .nav-btn .bg-main {
  border: 1px solid;
}

.main-navbar.app-nav .nav-btn .bg-main {
  background-color: #ffffff;
  color: #002246;
}

.main-navbar.app-nav .nav-btn .bg-main:hover {
  border-color: #242424;
}

/* App Landing Banner Area */
.app-banner-area {
  background-color: #f9fdff;
  position: relative;
  padding-bottom: 40px;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: hidden;
}

.app-banner-area .app-bennr-text {
  position: relative;
  z-index: 1;
}

.app-banner-area .app-bennr-text .app-btn {
  margin-top: 40px;
}

.app-banner-area .app-bennr-text .app-btn .app-btn-1 {
  background-color: #002246;
  border: 1px solid #002246;
  color: #ffffff;
}

.app-banner-area .app-bennr-text .app-btn .app-btn-1:hover {
  background-color: #ffffff;
  color: #002246;
}

.app-banner-area .app-bennr-text .app-btn .app-btn-2 {
  border: 1px solid #002246;
  color: #002246;
}

.app-banner-area .app-bennr-text .app-btn .app-btn-2:hover {
  background-color: #002246;
  color: #ffffff;
}

.app-banner-area .app-bennr-text span {
  font-size: 18px;
  color: #002246;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 30px;
}

.app-banner-area .app-bennr-text h1 {
  font-size: 58px;
  margin-bottom: 40px;
}

.app-banner-area .app-bennr-text p {
  font-size: 20px;
}

.app-banner-area .app-bennr-text .mt-30 {
  margin-top: 30px;
}

.app-banner-area .app-bennr-text .app-text {
  padding-left: 130px;
  position: relative;
  margin-top: 30px;
}

.app-banner-area .app-bennr-text .app-text h3 {
  font-size: 44px;
  position: absolute;
  left: 0;
  padding-right: 10px;
  border-right: 1px solid #c1bfcb;
  color: #002246;
}

.app-banner-area .app-bennr-text .app-text p {
  font-size: 16px;
  color: #242424;
}

.app-banner-area .app-bennr-text .app-shapes .shape-1 {
  position: absolute;
  bottom: 0;
  left: -380px;
  max-width: 350px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
  z-index: -1;
}

.app-banner-area .app-bennr-text .app-shapes .shape-30 {
  position: absolute;
  top: -30px;
  left: -70px;
  max-width: 150px;
  opacity: .5;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.app-banner-area .app-bennr-text .app-shapes .shape-28 {
  position: absolute;
  top: -50px;
  right: 0;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.app-banner-area .app-bennr-text .app-shapes .shape-16 {
  position: absolute;
  top: -30px;
  left: -110px;
  -webkit-animation: animationFramesOne 20s infinite linear;
          animation: animationFramesOne 20s infinite linear;
}

.app-banner-area .app-bennr-text .app-shapes .shape-11 {
  position: absolute;
  bottom: 10px;
  left: -50px;
  -webkit-animation: animationFramesOne 20s infinite linear;
          animation: animationFramesOne 20s infinite linear;
}

.app-banner-area .app-bennr-text .app-shapes .shape-14 {
  position: absolute;
  right: 0;
  bottom: 120px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.app-banner-area .app-banner-img {
  position: relative;
  z-index: 1;
}

.app-banner-area .app-banner-img .app-shapes .shape-31 {
  position: absolute;
  bottom: 60px;
  left: 10px;
  z-index: -1;
  max-width: 200px;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.app-banner-area .app-banner-img .app-shapes .shape-22 {
  position: absolute;
  bottom: 430px;
  right: -60px;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.app-banner-area .app-banner-img .app-shapes .shape-2 {
  position: absolute;
  bottom: 50px;
  right: 0;
  -webkit-animation: animationFramesOne 20s infinite linear;
          animation: animationFramesOne 20s infinite linear;
}

.app-banner-area .app-banner-img .app-shapes .shape-4 {
  position: absolute;
  top: 180px;
  right: -50px;
  -webkit-animation: animationFramesOne 20s infinite linear;
          animation: animationFramesOne 20s infinite linear;
}

.app-banner-area .app-banner-img .app-shapes .shape-5 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.app-banner-area .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  max-width: 400px;
}

/* Service Shape Area */
.service-shape {
  position: relative;
  z-index: 1;
}

.service-shape .our-service-shape {
  position: absolute;
  bottom: 380px;
  right: 80px;
  z-index: -1;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

/* Easy Step Area */
.easy-step-area .easy-step-img {
  position: relative;
  z-index: 1;
}

/*.easy-step-area .easy-step-img .step-1 {
  -webkit-box-shadow: 0px 0px 20px #dddddd;
          box-shadow: 0px 0px 20px #dddddd;
  border-radius: 70px;
}
*/
.easy-step-area .easy-step-img .shape-1 {
  position: absolute;
  top: -50px;
  left: -80px;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.easy-step-area .easy-step-img .shape-21 {
  position: absolute;
  right: 60px;
  bottom: -40px;
  z-index: -1;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.easy-step-area .easy-step-card {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f2f1f3;
}

.easy-step-area .easy-step-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.easy-step-area .easy-step-card .step-signle-card {
  text-align: center;
  padding:25px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px #dddddd;
          box-shadow: 0px 0px 20px #dddddd;
  border-radius: 10px;
  position: relative;
}

.easy-step-area .easy-step-card .step-signle-card i {
  color: #ffffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 30px;
  text-align: center;
  border-radius: 5px;

}

.easy-step-area .easy-step-card .step-signle-card i.bg-1 {
  background-color: #002246;
}

.easy-step-area .easy-step-card .step-signle-card i.bg-2 {
  background-color: #f6d665;
}

.easy-step-area .easy-step-card .step-signle-card i.bg-3 {
  background-color: #fb9ed7;
}

.easy-step-area .easy-step-card .step-signle-card span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 50px;
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1;
  z-index: -1;
}

.easy-step-area .easy-step-card .step-signle-card h3 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.4;
}


/* Powerful Area */
.powerful-area {
  background-color: #002246;
  border-radius: 0px 0px 700px 0px;
}

.powerful-area .section-title {
  text-align: left;
}

.powerful-area .section-title h2 {
  font-size: 36px;
  color: #ffffff;
}

.powerful-area .powerful-card {
  padding-left: 80px;
  position: relative;
  margin-bottom: 30px;
}

.powerful-area .powerful-card i {
  position: absolute;
  color: #ffffff;
  width: 55px;
  height: 55px;
  left: 0;
  top: 4px;
  line-height: 55px;
  font-size: 30px;
  text-align: center;
  border-radius: 5px;
}

.powerful-area .powerful-card i.bg-1 {
  background-color: #fa866b;
}

.powerful-area .powerful-card i.bg-2 {
  background-color: #f5d150;
}

.powerful-area .powerful-card i.bg-3 {
  background-color: #58d7c1;
}

.powerful-area .powerful-card i.bg-4 {
  background-color: #fb9ed7;
}

.powerful-area .powerful-card h3 {
  font-size: 20px;
  color: #ffffff;
}

.powerful-area .powerful-card p {
  color: #f4f6ff;
}

.powerful-area .powerful-img {
  max-width: 400px;
}

.powerful-area .powerful-img img {
  -webkit-box-shadow: 1px 20px 20px #dddddd;
          box-shadow: 1px 20px 20px #dddddd;
  border-radius: 65px;
}

/* Perfect Area */
.perfect-area .perfect-img {
  position: relative;
  z-index: 1;
}

.perfect-area .perfect-img .perfect-1 {
  -webkit-box-shadow: 5px 6px 20px #dddddd;
          box-shadow: 5px 6px 20px #dddddd;
  border-radius: 65px;
  max-width: 400px;
  width: 100%;
}

.perfect-area .perfect-img .perfect-shape {
  position: absolute;
  left: -200px;
  bottom: 0;
  max-width: 400px;
  z-index: -1;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.perfect-area .section-title {
  text-align: left;
  margin-bottom: 0;
}

.perfect-area .section-title h2 {
  font-size: 36px;
}

.perfect-area .section-title p {
  margin-left: 0;
}

.perfect-area .perfect-card {
  margin-top: 40px;
  padding-right: 5px;
}

.perfect-area .perfect-card i {
  background-color: #002246;
  color: #ffffff;
  width: 55px;
  height: 55px;
  font-size: 30px;
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
}

.perfect-area .perfect-card h3 {
  font-size: 24px;
}

/* Clients Silder Two */
.clients-slider-two-area {
  position: relative;
}

.clients-slider-two-area .clients-slider-two .slider-two-item {
  background-color: #fff;
  max-width: 570px;
  -webkit-box-shadow: 0px 0px 20px #dddddd;
          box-shadow: 0px 0px 20px #dddddd;
  border-radius: 10px;
  padding: 60px 35px;
  position: relative;
  margin: 15px 15px 30px 15px;
  z-index: 5;
}

.clients-slider-two-area .clients-slider-two .slider-two-item img {
  border-radius: 50%;
  border: 3px solid #002246;
  position: absolute;
  top: 40px;
  right: 35px;
  width: 70px;
  height: 70px;
}

.clients-slider-two-area .clients-slider-two .slider-two-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.clients-slider-two-area .clients-slider-two .slider-two-item p {
  margin: 0;
}

.clients-slider-two-area .clients-slider-two .slider-two-item span {
  font-size: 14px;
}

.clients-slider-two-area .clients-slider-two .slider-two-item .rating {
  color: #ffc700;
  margin-top: 10px;
  margin-bottom: 5px;
}

.clients-slider-two-area .clients-slider-two .slider-two-item .clients-icon {
  position: absolute;
  bottom: 35px;
  right: 60px;
  font-size: 40px;
  color: #aabef9;
}

.clients-slider-two-area .clients-slider-two.owl-theme .owl-dots {
  line-height: 1;
}

.clients-slider-two-area .clients-slider-two.owl-theme .owl-dots .owl-dot span {
  background-color: #002246;
  height: 12px;
  width: 12px;
  margin: 0 6px;
}

.clients-slider-two-area .clients-slider-two.owl-theme .owl-dots .owl-dot.active span {
  background-color: #002246;
  width: 50px;
  height: 12px;
}

.clients-slider-two-area .client-shape {
  position: absolute;
  bottom: 120px;
  right: 30px;
  z-index: -1;
}

/* Screens Slider Area */
.screens-slider-area {
  background-color: #f9fdff;
}

.screens-slider-area .screens-slider .screen-slider-item {
  margin: 15px;
}

/*
.screens-slider-area .screens-slider .screen-slider-item img {
  -webkit-box-shadow: 0px 0px 20px #d3d7e2;
          box-shadow: 0px 0px 20px #d3d7e2;
  border-radius: 30px;
}
*/

.screens-slider-area .screens-slider.owl-theme .owl-dots {
  line-height: 1;
}

.screens-slider-area .screens-slider.owl-theme .owl-dots .owl-dot span {
  background-color: #002246;
  height: 12px;
  width: 12px;
  margin: 0 6px;
}

.screens-slider-area .screens-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color: #002246;
  width: 50px;
  height: 12px;
}

/* App Features Area */
.app-features-area {
  background-image: url("../images/app-img/app-download-bg.jpg");
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
}

.app-features-area .section-title {
  max-width:700px;
}


.app-features-area .section-title h2 {
  color: #ffffff;
}



/* Shape rotate */
.rotateme {
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
  }
}

/* End Shape rotate */
@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes moveScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes moveScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

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

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}
/*# sourceMappingURL=style.css.map */
