
/**
 * ----------------------------------------------
 * COLOR CODES
 * ----------------------------------------------
 *
*/
/**
 * ----------------------------------------------
 * Font face
 * 
 */


@font-face {
  font-family: 'Axiforma-Bold';
  src: url('../fonts/Axiforma-Bold.woff2') format('woff2'),
       url('../fonts/Axiforma-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Regular';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
       url('../fonts/Outfit-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}






/*! ===== button rounded style =====*/
.btn-rounded {
  display: inline-block;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  background-color: #fcd57e;
  color: #ffffff;
  font-family: 'Outfit-Regular';
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #fcd57e;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-rounded.btn-o {
  background-color: #ffffff;
  color: #fcd57e;
  border-color: #fcd57e;
}

.btn-rounded:hover,
.btn-rounded:focus {
  background-color: #fabd33;
  border-color: #fabd33;
  outline: none;
  color: #ffffff;
}

/*! ===== button square style =====*/
.btn-square {
  display: inline-block;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  background-color: #fcd57e;
  color: #ffffff;
  font-family: 'Outfit-Regular';
  font-size: 16px;
  border-radius: 0;
  border: 2px solid #fcd57e;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-square.btn-o {
  background-color: #ffffff;
  color: #fcd57e;
  border-color: #fcd57e;
}

.btn-square:hover,
.btn-square:focus {
  background-color: #fabd33;
  border-color: #fabd33;
  outline: none;
  color: #ffffff;
}

.btn-circle {
  /*===== button circle style =====*/
  display: inline-block;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  background-color: #fcd57e;
  color: #ffffff;
  font-family: 'Outfit-Regular';
  font-size: 16px;
  border-radius: 25px;
  border: 2px solid #fcd57e;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-circle.btn-o {
  background-color: #ffffff;
  color: #fcd57e;
  border-color: #fcd57e;
}

.btn-circle:hover,
.btn-circle:focus {
  background-color: #fabd33;
  border-color: #fabd33;
  outline: none;
  color: #ffffff;
}

/*===== heading style 1 =====*/
.heading-1 {
  font-family: 'Axiforma-Bold';
  font-size: 36px;
  color: #ffffff;
  line-height: 1.38;
  margin-bottom: 0 !important;
}

.header-content-left .heading-2 {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}



/*===== heading style 2 =====*/
.heading-2 {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 20px;
  color: #212121;
  letter-spacing: 0.2px;
}

/*===== heading style 3 =====*/
.heading-3 {
  font-family: 'Axiforma-Bold';
  font-size: 20px;
  color: #212121;
  letter-spacing: 1.5px;
  margin-top: 0px;
}

/*===== heading style 4 =====*/
.heading-4 {
  font-family: 'Axiforma-Bold';
  font-size: 34px;
  color: #212121;
  letter-spacing: 0.5px;
  opacity: 1;
  text-align: center;
}

/*===== heading style 5 =====*/
.heading-5 {
  font-family: 'Axiforma-Bold';
  font-size: 16px;
  color: #212121;
  letter-spacing: 0.5px;
}

/*===== paragraph style 1 =====*/
.p-text {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 16px;
  color: #212121;
  line-height: 1.5;
  opacity: 0.7;
}

/*! ===== link style =====*/
.link-text {
  text-decoration: none;
  font-family: 'Outfit-Regular';
  font-weight: bold;
  font-size: 16px;
  color: #fc977b;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.link-text:hover,
.link-text:focus {
  text-decoration: none;
  outline: none;
  color: #fa5c30;
}

.link-text i {
  font-size: 12px;
  margin-left: 5px;
}

/**
 * ----------------------------------------------
 * SIMPLE RESET
 * ----------------------------------------------
 */
* {
  font-family: 'Outfit-Regular';
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
}

body::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

body::-webkit-scrollbar-thumb {
  background: #fef5e2;
}

body::-webkit-scrollbar-track {
  background: floralwhite;
}

a {
  text-decoration: none;
  color: #41AADA;
}

a:hover {
  text-decoration: none;
}

/**
 * ----------------------------------------------
 * CUSTOM CLASS
 * ----------------------------------------------
 */
.page-wrapper {
  position: relative;
}

.fix-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.download-app-text h2{font-family: 'Axiforma-Bold';}

@media only screen and (max-width: 500px) {
  .fix-container {
    padding: 0 3%;
  }
}

@media only screen and (min-width: 500px) and (max-width: 800px) {
  .fix-container {
    padding: 0 3%;
  }
}

.white-space {
  height: 130px;
  width: 100%;
}

@media only screen and (min-width: 1370px) {
  .white-space {
    height: 160px;
  }
}

@media only screen and (max-width: 500px) {
  .white-space {
    height: 80px;
  }
}

@media only screen and (max-width: 400px) {
  .white-space {
    height: 50px;
  }
}

.fix {
  margin: 0px;
  padding: 0px;
}

.p-none {
  padding: 0px;
}

.m-none {
  margin: 0px;
}

.clear {
  clear: both;
}

/*! ===== input field style =====*/
.input-field {
  border: 1px solid #616161;
  padding: 12px;
  border-radius: 5px;
  font-family: 'Outfit-Regular';
  font-size: 14px;
}

.input-field:hover::-webkit-input-placeholder,
.input-field:focus::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.input-field:hover:-ms-input-placeholder,
.input-field:focus:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.input-field:hover::-ms-input-placeholder,
.input-field:focus::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.input-field:hover::placeholder,
.input-field:focus::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.custom-container {
  width: 85%;
  margin: 0 auto;
}

/**
 * ----------------------------------------------
 * Header
 * ----------------------------------------------
 */
header .header-bg {
  height: auto;
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 1649px) {
  header .header-bg {
    height: 960px;
  }
}

@media only screen and (max-width: 1650px) {
  header .header-bg {
    height: 969px;
  }
}

@media only screen and (max-width: 1359px) {
  header .header-bg {
    height: 979px;
  }
}

@media only screen and (max-width: 1199px) {
  header .header-bg {
    height: 835px;
  }
}

header .header-content {
  position: absolute;
  top: 0;
  width: 100%;
}

header .navbar-default {
  background-color: transparent;
  border-color: transparent;
  padding-top: 44px;
}

header .navbar-default .navbar-brand {
  padding-top: 15px;
  padding-bottom: 0;
}

header .navbar-default .navbar-nav li a {
  font-family: 'Outfit-Regular';
  font-size: 18px;
  color: #ffffff;
  padding: 10px 0px 10px 60px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .navbar-default .navbar-nav li a:hover,
header .navbar-default .navbar-nav li a:focus {
  color: #d9d9d9;
}

header .navbar-default .navbar-toggle {
  border-color: #ffffff;
}

header .navbar-default .navbar-toggle:hover,
header .navbar-default .navbar-toggle:focus {
  background-color: #4262d6;
}

header .navbar-default .navbar-toggle .icon-bar {
  background-color: #ffffff;
}

header .header-content-details .header-content-left {
  margin-top: 29px;
}

@media only screen and (min-width: 991px) {
  header .header-content-details .header-content-left {
    margin-top: 148px;
  }
}

header .header-content-details .header-content-left .heading-1 {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  header .header-content-details .header-content-left .heading-1 {
    margin-right: 198px;
  }
}

header .header-content-details .header-content-left .p-text {
  color: #ffffff;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) {
  header .header-content-details .header-content-left .p-text {
    margin-right: 120px;
  }
}

@media only screen and (max-width: 375px) {
  header .header-content-details .header-content-left .p-text {
    margin-bottom: 20px;
  }
}

header .header-content-details .header-content-left .white-button {
  padding: 14px 29px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 7px;
  font-family: 'Outfit-Regular';
  font-size: 18px;
  color: #212121;
  text-decoration: none;
  display: inline-block;
  margin-right: 24px;
  margin-top: 40px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

header .header-content-details .header-content-left .white-button:hover {
  background-color: #fabd33;
  border-color: #fabd33;
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  header .header-content-details .header-content-left .white-button {
    min-width: 200px;
  }
}

header .header-content-details .header-content-left .piech-button {
  padding: 14px 29px;
  border: 1px solid #fcd57e;
  background-color: #fcd57e;
  border-radius: 7px;
  color: #070818;
  margin-right: 24px;
  margin-top: 40px;
  font-family: 'Outfit-Regular';
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

header .header-content-details .header-content-left .piech-button:hover {
  background-color: #fabd33;
  border-color: #fabd33;
  text-decoration: none;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  header .header-content-details .header-content-left .piech-button {
    min-width: 200px;
  }
}

header .header-content-details .header-img {
  padding-top: 29px;
}

header .header-content-details .header-img img {
  width: 100%;
}

/**
 * ----------------------------------------------
 * feature
 * ----------------------------------------------
 */
.features {
  padding: 80px 0px 160px;
}

.features .heading-2 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .features .heading-2 {
    margin-bottom: 30px;
  }
}

.features .circle {
  width: 60px;
  height: 60px;
  opacity: 0.1;
  background-color: #fc977b;
  border-radius: 100%;
  margin: 0px auto;
  position: absolute;
  left: 35%;
  top: -6px;
}

.features .feature-single {
  margin-top: 30px;
  padding: 0px 20px;
}

.features .feature-single img {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .features {
    padding: 60px 0px 80px;
  }
}

/**
 * ----------------------------------------------
 * how its works
 * ----------------------------------------------
 */
.how-it-works .heading-4 {
  margin-bottom: 82px;
}

@media only screen and (max-width: 767px) {
  .how-it-works .heading-4 {
    margin-bottom: 30px;
  }
}

.how-it-works .works-content img {
  padding: 10px;
  background-color: #F3FFE5;
  border-radius: 25px;
}

.how-it-works .works-content .heading-2 {
  margin-top: 27px;
  margin-bottom: 29px;
}

.how-it-works .works-content .p-text {
  margin-bottom: 5px;
}

.how-it-works .works-content .p-text span {
  font-weight: 600;
  font-size: 20px;
}

.news-bottom-space {
  margin-bottom: 30px;
}

.how-it-works .works-img {
  margin-bottom: 30px;
}

.how-it-works .works-img img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .how-it-works .works-img {
    margin-top: 30px;
  }
}

/**
 * ----------------------------------------------
 * testimonials
 * ----------------------------------------------
 */
.testimonials {
  padding-top: 161px;
  height: 521px;
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#f8f8f8),
      to(#ffffff));
  background-image: -webkit-linear-gradient(bottom, #f8f8f8, #ffffff);
  background-image: -o-linear-gradient(bottom, #f8f8f8, #ffffff);
  background-image: linear-gradient(to top, #f8f8f8, #ffffff);
}

.testimonials .item {
  margin-top: 70px;
}

.testimonials .item .heading-2 {
  font-style: italic;
  line-height: 1.28;
  opacity: 0;
}

.testimonials .item img {
  width: 60px;
  margin: 0 auto;
  margin-top: 81px;
  opacity: 0.2;
}

.testimonials .item .user-name {
  opacity: 0;
  color: #2c2c2c;
  font-family: 'Outfit-Regular';
  font-size: 20px;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 0px;
}

.testimonials .item .designation {
  opacity: 0;
  color: #9fa3a7;
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 1.9px;
}

.testimonials .item .review {
  width: 430px;
  margin: 0px auto 65px;
}

@media only screen and (min-width: 1200px) {
  .testimonials .item .review {
    margin-left: -57%;
  }
}

@media only screen and (min-width: 992px) {
  .testimonials .item .review {
    margin-left: -30%;
  }
}

@media only screen and (min-width: 768px) {
  .testimonials .item .review {
    margin-left: -50%;
  }
}

@media only screen and (max-width: 767px) {
  .testimonials .item .review {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .testimonials .item {
    margin-top: 20px;
  }
}

.testimonials .owl-item.active.center .item .heading-2 {
  opacity: 1;
}

.testimonials .owl-item.active.center .item img {
  width: 90px;
  margin-top: 0px;
  opacity: 1;
}

.testimonials .owl-item.active.center .item .user-name,
.testimonials .owl-item.active.center .item .designation {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .testimonials {
    padding-top: 40px;
    height: auto;
  }
}

/**
 * ----------------------------------------------
 * newspaper
 * ----------------------------------------------
 */
.newsletter {
  padding: 220px 0px 0px;
}

.newsletter .heading-2 {
  margin-bottom: 90px;
}

.newsletter form {
  margin-bottom: 120px;
}

.newsletter form .input-group {
  width: 100%;
  border: 1px solid #e8e6e6;
  border-radius: 7px;
  padding: 5px;
}

@media only screen and (max-width: 480px) {
  .newsletter form .input-group {
    border: 0px solid #e8e6e6;
    border-radius: 7px;
    padding: 0px;
  }
}

.newsletter form .email-address {
  text-align: left;
  width: 75%;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.newsletter form .email-address:focus {
  outline: 0;
  outline-offset: 0;
}

.newsletter form .email-address::-webkit-input-placeholder {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 18px;
  color: #202020;
  opacity: 0.5;
  letter-spacing: -0.1px;
}

.newsletter form .email-address:-ms-input-placeholder {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 18px;
  color: #202020;
  opacity: 0.5;
  letter-spacing: -0.1px;
}

.newsletter form .email-address::-ms-input-placeholder {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 18px;
  color: #202020;
  opacity: 0.5;
  letter-spacing: -0.1px;
}

.newsletter form .email-address::placeholder {
  font-family: 'Outfit-Regular';
  font-weight: normal;
  font-size: 18px;
  color: #202020;
  opacity: 0.5;
  letter-spacing: -0.1px;
}

@media only screen and (max-width: 480px) {
  .newsletter form .email-address {
    width: 100%;
    border: 1px solid #e8e6e6;
    margin-bottom: 20px;
  }
}

.newsletter form .btn-info {
  width: 25%;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(190deg, #fee140, #fa709a);
  background-image: -o-linear-gradient(190deg, #fee140, #fa709a);
  background-image: linear-gradient(260deg, #fee140, #fa709a);
  border: 0px;
  padding: 15px 0px;
  font-family: 'Outfit-Regular';
  font-size: 18px;
  color: #292C33;
}

@media only screen and (max-width: 480px) {
  .newsletter form .btn-info {
    width: 50%;
  }
}

@media only screen and (max-width: 757px) {
  .newsletter form {
    margin-bottom: 60px;
  }
}

.newsletter hr {
  border-top: 0px;
  height: 2px;
  background-color: #e8e6e6;
}

@media only screen and (max-width: 767px) {
  .newsletter {
    padding: 60px 0px 0px;
  }

  .navbar-nav {
    background: #4262d6;
  }

  header .navbar-default .navbar-nav li a {
    color: #ffffff;
  }
}

/**
 * ----------------------------------------------
 * footer
 * ----------------------------------------------
 */
footer {
  padding: 73px 0px 82px;
}

footer .logo {
  font-family: 'Outfit-Regular';
  font-size: 25px;
  color: #484848;
  letter-spacing: -1px;
  margin-bottom: 27px;
  margin-top: 21px;
  display: inline-block;
}

footer .p-text {
  margin-bottom: 45px;
}

.social-icon {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.social-icon li {
  display: inline-block;
  margin: 0px 5px;
}

.social-icon li a i {
  border-radius: 100%;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 7px;
}

.social-icon li a .fb {
  background-color: #4c5bb4;
}

.social-icon li a .fb:hover {
  background-color: #35407e;
}

.social-icon li a .twt {
  background-color: #3fccfd;
}

.social-icon li a .twt:hover {
  background-color: #02b1ed;
}

.social-icon li a .g-plus {
  background-color: #fe5339;
}

.social-icon li a .g-plus:hover {
  background-color: #e92001;
}

/**
 * ----------------------------------------------
 * privacy policy
 * ----------------------------------------------
 */

.extra-link {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}

.privacy-policy-header {
  width: 100%;
  text-align: center;
}

.privacy-title {
  font-family: 'eras_bold_itcregular';
  font-size: 48px;
  color: #4262d6;
  line-height: 1.38;
  letter-spacing: -1.5px;
}

.privacy-policy-content .heading-title-h4 {
  font-family: 'eras_bold_itcregular';
  font-size: 22px;
  color: #212121;
  letter-spacing: 1.5px;
  padding: 16px 0;
}

.privacy-policy-content p {
  font-size: 18px;
  line-height: 150%;
  width: 100%;
  padding-bottom: 4px;
}

.privacy-policy-content p strong {
  font-family: 'eras_bold_itcregular';
}

.privacy-policy-content ul {
  list-style: none;
  padding: 0;
  float: left;
  width: 100%;
}

.privacy-policy-content ul li {
  position: relative;
  padding: 0 0 20px 20px;
  text-align: left;
  line-height: 150%;
  font-size: 18px;
}

.privacy-policy-content ul li strong {
  font-size: 18px;
}

.privacy-policy-content ul li:before {
  content: "";
  height: 8px;
  width: 8px;
  position: absolute;
  left: 0;
  top: 9px;
  line-height: 1.5em;
  background-color: #137dc5;
  border-radius: 99em;
  box-sizing: border-box;
}

.privacy-policy-content ol {
  padding: 0;
  float: left;
  width: 100%;
}

.privacy-policy-content ol li {
  position: relative;
  padding: 0 0 20px 20px;
  text-align: left;
  line-height: 150%;
  font-size: 18px;
}

.how_features .flex {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.how_features .flex h4 {
  font-size: 22px;
  font-family: 'Axiforma-Bold';
}

.how-it-works .works-content .flex img {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  width: 70px;
}

.instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}


/* ------------------ CMS page css ------------------ */



.cms-page {
  padding: 140px 0px 0;
}

.cms-page .custom-container{
  width: 95%;
}

.cms-page .heading-4 {
  text-align: left !important;
}

.cms-page .heading-5 {
  font-family: 'Axiforma-Bold';
  font-size: 20px;
  color: #212121;
  letter-spacing: 0;
  margin-top: 30px;
}

.cms-content{
  margin-top:  30px;
}

.cms-content .content-list {
  margin: 0 0 20px 40px;
}


@media only screen and (max-width: 767px) {
  .cms-page {
    padding: 140px 0px 80px;
  }
}