@charset "utf-8";
/*------------------------------------------------------------------
[Master Stylesheet]

Project:    Zappit Marketing Website
Version:    1.0
Created:    12.17.2019 12:30 PM
Use:        Static marketing website for fintech product
-------------------------------------------------------------------*/



/*------------------------------------------------------------------
[Table of contents]

1. Fonts import, Typography
2. Colors
3. Common styles
4. Page loader / .page-loader
5. Global styles
6. Buttons and CTA
7. Forms fields
8. Pages & Sections
9. Animations

-------------------------------------------------------------------*/


/*------------------------------------------------------------------

 - Global styles

-------------------------------------------------------------------*/

.e-section{
  padding: 150px 0;
}


/* Custom scroll bar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #1d2e99;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*Inputs*/
textarea:focus, input:focus{
  outline: none;
}






/*------------------------------------------------------------------

 - Pages & Sections

-------------------------------------------------------------------*/

.e-whyzap-section img{
  height: 50px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.e-whyzap-section h4 b{
  font-weight: 600;
}


.e-howit-section{
  /*background-image: linear-gradient(to left, #4553ad, #4591de); */
  /*background-image: linear-gradient(to right, #98d0fa, #edf7ff);*/

  padding-bottom: 10px;
}
.e-howit-item-count{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding-top: 14px;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
}
.e-howit-item-count.e-inactive{
  color: #1d2e99;
  background-color: #fff;
  transition: all .5s ease;
  cursor: pointer;
}
.e-howit-item-count.e-inactive:hover{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.e-howit-item-count.e-inactive.e-active:hover{
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.e-howit-section h4{
  padding-bottom: 90px;
}
.e-howit-mob-wrap{
  background-image: url("../images/how-it-phone-mask.png");
  background-size: 100%;
  background-repeat: no-repeat;
  text-align: center;
  display: inline-block;
  width: 360px;
  padding-bottom: 120px;
  text-align: center;
  z-index: 9;
  position: relative;
}
.e-howit-right-wrap .e-hwit-main-img{
  max-width: 80%;
  border-radius: 40px;
  position: relative;
  left: -30px;
  top: 30px;
}
.e-howit-right-wrap{
  padding-top: 40px;
  text-align: right;
}
.e-howit-item-count.e-active #halfclip {
  top: 0;
  width: 50%;
  height: 100%;
  right: 0px;
  position: absolute;
  overflow: hidden;
  transform-origin: left center;
  animation: cliprotate 6s steps(2) infinite;
  -webkit-animation: cliprotate 6s steps(2) infinite;
}
.e-howit-item-count.e-active .halfcircle {
  top: 0;
  box-sizing: border-box;
  height: 100%;
  right: 0px;
  position: absolute;
  border: solid 2px transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
}
.e-howit-item-count.e-active #clipped {
  top: 0;
  width: 200%;
  animation: rotate 3s linear infinite;
  -webkit-animation: rotate 3s linear infinite;
}
.e-howit-item-count.e-active #fixed {
  top: 0;
  width: 100%;
  transform: rotate(135deg);
  animation: showfixed 6s steps(2) infinite;
  -webkit-animation: showfixed 6s linear infinite;
}
.e-howit-item-count.e-active{
  position: relative;
  width: 50px;
  height: 50px;
  animation: colors 2s infinite;
  color: #fff;
  background-color: #1d2e99;
  transition: all .5s ease;
}
.slick-dots li button::before{
  font-size: 13px;
}
.slick-dots{
  bottom: -10px;
  width: initial;
  right: 33px;
}
.slick-dots li.slick-active button:before{
  color: #1d2e99;
}
.slick-dots li button:before{
  color: #c1c1c1;
}

.slick-slide{
  outline: none !important;
}



/*How it works slider*/
@-webkit-keyframes cliprotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

@keyframes cliprotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

@-webkit-keyframes rotate {
  0% {transform: rotate(-45deg);}
  100% {transform: rotate(135deg);}
}

@keyframes rotate {
  0% {transform: rotate(-45deg);}
  100% {transform: rotate(135deg);}
}

@-webkit-keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
  100% {opacity: 1;}
}

/*App store button hover*/
.e-btn-hover, .e-btn-hover-1{
  transition: all .5s ease;
  cursor: pointer;
}
.e-btn-hover:hover{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 0 0 0 rgba(0,0,0,.5), 0 1px 3px 0 rgba(0,0,0,.5), 0 4px 15px 0 rgba(0,0,0,.5);
}
.e-btn-hover-1:hover{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}


/*------------------------------------------------------------------

 - Animation & Transitions

-------------------------------------------------------------------*/
@-webkit-keyframes scrollDownArrow {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 40px);
    opacity: 0;
  }
}

.slide-top {
  -webkit-animation: slide-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.slide-top-opacity-1{
  -webkit-animation: slide-top-opacity .9s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-top-opacity .9s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.slide-top-opacity-2 {
  -webkit-animation: slide-top-opacity 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-top-opacity 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) 300ms both;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}


@-webkit-keyframes slide-top-opacity {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-top-opacity {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

.slide-right-1 {
  -webkit-animation: slide-right-1 .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 500ms  both;
  animation: slide-right-1 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 500ms  both;
}

.slide-right-2 {
  -webkit-animation: slide-right-2 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 600ms  both;
  animation: slide-right-2 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 600ms  both;
}

@-webkit-keyframes slide-right-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  10% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes slide-right-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  10% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes slide-right-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }
  10% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes slide-right-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }
  10% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.fade-in-fwd-1 {
  -webkit-animation: fade-in-fwd 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in-fwd 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fade-in-fwd {
  -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1200ms both;
  animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1200ms both;
}

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}




