/* ============ FONTS =========== */
@font-face {
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
  font-family: "Poppins-SemiBold";
}

@font-face {
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
  font-family: "Poppins-Regular";
}

body {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 14px;
  color: #35405a;
}

.mb30 {
  margin-bottom: 30px;
}

.tosca {
  color: #2BC239;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.title {
  margin: 40px 0;
  font-size: 48px;
  font-family: "Poppins-SemiBold";
  text-align: center;
  color: #333333;
}

.btn-purple {
  background-color: #2BC239;
  color: #ffffff;
}

.btn-purple:hover {
  background-color: #2BC239;
  color: #ffffff;
}

.btn {
  padding: 15px 10px;
}

.newClass {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.33);
}

/* Icon 1 */
.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.animated-icon1 span {
  background: #ffffff;
}

.animated-icon2 span {
  background: #e3f2fd;
}

.animated-icon3 span {
  background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* ============ HEADER =========== */
.navbar-light .navbar-toggler {
  border-color: transparent;
}

#header {
  padding: 10px;
  background: rgb(43, 194, 57);
  background: linear-gradient(90deg, rgba(43, 194, 57, 1) 32%, rgba(64, 242, 80, 1) 100%);
  color: #ffffff;
  font-family: "Poppins-SemiBold";
}

#header .navbar-brand img {
  height: 45px;
}

#header .navbar-nav {
  margin-left: 100px;
}

#header .nav-link {
  position: relative;
  font-size: 16px;
  color: #ffffff;
}

#header .nav-link:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  margin: auto;
  width: 0%;
  color: transparent;
  background-color: #ffffff;
  height: 2px;
  transition: all .3s;
}

#header .nav-link:hover:after {
  width: 100%;
}

/*
============ MAIN BANNER =========== */
#main-banner {
  position: relative;
  height: 630px;
  color: #ffffff;
  background: rgb(43, 194, 57);
  background: linear-gradient(90deg, rgba(43, 194, 57, 1) 32%, rgba(64, 242, 80, 1) 100%);
}

#main-banner h1 {
  margin-top: 100px;
  font-size: 50px;
  font-family: "Poppins-SemiBold";
}

#main-banner .lead {
  font-size: 25px;
}

#main-banner p {
  font-size: 16px;
}

#main-banner .waves-bg {
  position: absolute;
  bottom: -1px;
}

/* ============ FITUR =========== */
#fitur {
  padding: 0 0 70px 0;
  background:
    url(../img/bg1.png) left 0 top 0 no-repeat,
    url(../img/bg2.png) right 0 bottom -70px no-repeat;
}

#fitur .fitur-item {
  margin: 90px 0;
}

.box-item {
  min-height: 313px;
  margin-bottom: 15px;
  background: #ffffff none repeat scroll 0 0;
  border-left: 0 solid #2BC239;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  border-radius: 30px;
  z-index: 1;
}

.box-item:after {
  background: #2BC239 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.box-item i {
  color: #2BC239;
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.box-item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.box-item .p {
  color: #666666;
  line-height: 26px;
  margin: 0 0 15px;
  text-transform: none;
  font-weight: 400;
}

.box-item:hover i,
.box-item:hover h4,
.box-item:hover p {
  color: #ffffff;
}

.box-item:hover::after {
  left: 0;
}

/*
============ SCREENSHOTS =========== */
#screenshots {
  background-color: #F7F7F7;
  text-align: center;
}

.screenshots .section-title {
  margin: 0
}

.main_drag {
  overflow: hidden;
}

.swiper-screenshots {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 20px auto;
}

.swiper-slide {
  text-align: center;
  background-position: center;
  width: 340px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  background-image: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-size: 17px;
}

.swiper-button-prev:before {
  content: "\f177";
  font-family: "FontAwesome";
}

.swiper-button-next:before {
  content: "\f178";
  font-family: "fontAwesome";
}

.screenshots .main_drag {
  position: relative;
  text-align: center;
}

.swiper-screenshots .swiper-slide {
  width: 260px;
  height: auto;
}

.swiper-screenshots .swiper-slide-active {
  box-shadow: none;
  padding-left: 3px;
  width: 260px;
}

.mockup-mobile-slider {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
}

.mockup-mobile-slider img {
  width: 301px;
}

.screenshoot-img {
  width: 400px !important;
  position: absolute;
  top: 3.7%;
  left: 31.9%;
  height: 680px;
}

/*
============ DOWNLOAD =========== */
#download {
  padding: 30px 0 60px 0;
  color: #ffffff;
  background: rgb(43, 194, 57);
  background: linear-gradient(90deg, rgba(43, 194, 57, 1) 32%, rgba(64, 242, 80, 1) 100%);
  text-align: center;
}

#download .title {
  color: #ffffff;
}

/* ============ CONTACT =========== */
#contact {
  padding: 30px 0 80px 0;
}

#contact ul {
  list-style: none;
}

#contact ul li {
  display: table;
  margin-bottom: 15px;
}

#contact ul li img {
  float: left;
}

#contact ul li a {
  float: left;
  margin-left: 15px;
  color: #2BC239;
}

/*
============ FOOTER =========== */
#footer {
  padding: 20px 0;
  background-color: #F8F9FA;
  color: #333333;
}

#footer span {
  float: left;
  font-size: 14px;
}

#footer ul {
  float: right;
  margin-bottom: 0;
  list-style: none;
}

#footer ul li {
  position: relative;
  float: left;
  margin-right: 18px;
}

#footer ul li:after {
  position: absolute;
  content: "|";
  right: -10px;
}

#footer ul li:last-child:after {
  display: none;
  content: "";
}

#footer ul li a {
  color: #333333;
}


/*
============ FAQ =========== */
#faq {
  padding: 40px 0;
  height: 1000px;
  background:
    url(../img/bg1.png) left 0 top 0 no-repeat,
    url(../img/bg2.png) right 0 bottom 0 no-repeat;
}

#faq ol li {
  padding-left: 10px;
}

.accordion .card-header .card-title {
  font-family: "Poppins-SemiBold";
}

.accordion .card-header:hover {
  cursor: pointer;
}

.accordion .card-header:after {
  font-family: 'FontAwesome';
  content: "\f068";
  float: right;
}

.accordion .card-header.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f067";
}

.accordion>.card .card-header {
  margin-bottom: 0px;
}

/*
============ TERMS =========== */
#terms {
  padding: 40px 0;
  background:
    url(../img/bg1.png) left 0 top 0 no-repeat,
    url(../img/bg2.png) right 0 bottom 0 no-repeat;
}

#terms h5 {
  font-family: "Poppins-SemiBold";
}

/*
============ LOADER =========== */
#overlayer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  background: rgb(43, 194, 57);
  background: linear-gradient(90deg, rgba(43, 194, 57, 1) 32%, rgba(64, 242, 80, 1) 100%);
}

.loader {
  display: inline-block;
  position: absolute;
  z-index: 9999;
  top: 40%;
  left: 40%;
}

.scrollToTop {
  position: fixed;
  background: #2BC239;
  height: 35px;
  width: 35px;
  right: 50px;
  bottom: 77px;
  color: #ffffff !important;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  display: none;
  cursor: pointer;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.scrollToTop:hover {
  background: #444;
}

/* ============ MOBILE RESPONSIVE =========== */
@media (max-width: 992px) {
  .title {
    font-size: 30px;
  }

  #header .navbar-nav {
    margin-left: 30px !important;
  }

  #header .navbar-collapse {
    margin-top: 8px;
    border-top: 1px solid #ffffff;
  }

  #header .nav-link:hover:after {
    width: 25%;
  }

  #main-banner {
    padding: 0;
    height: 375px;
  }

  #main-banner h1 {
    font-size: 30px;
    margin-top: 30px;
  }

  #main-banner .lead {
    font-size: 16px;
  }

  #main-banner p {
    font-size: 14px;
  }

  .playstore {
    height: 60px;
  }

  #fitur .box-item {
    padding: 15px;
    min-height: 295px;
  }

  #fitur .box-item i {
    font-size: 46px;
  }

  #fitur .box-item h4 {
    font-size: 20px;
  }

  #faq,
  #terms {
    padding: 0 0 40px 0;
  }

  .loader {
    top: 20%;
    left: 25%;
  }

  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }

  .mockup-mobile-slider {
    display: none;
  }

}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-style {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}