/* Fonts are found in the Custom.css file */

/* UTILITIES  */
.text-center {
    text-align: center !important;
  }

  .container {
    max-width: 1380px !important;
    margin: 0 auto !important;
    padding: 95px 100px;
    overflow: hidden !important;
  }

  .container_pad {
    padding: 2.5rem 2.5rem 0px 95px;
  }

  .btn {
    display: inline-block;
    padding: 14px 30px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 8px;
  }

  .btn:hover {
    transform: scale(0.98 );
  }

  .btn-outline {
    background-color: transparent;
    border: 1px solid;
  }

  .no-pad {
    padding: 0;
  }

  .no-up-pad {
    padding: 0 100px
  }
  


  /* ===============================
   BANNER SECTION START 
  ================================== */

  .banner_bg {
    background-color: #021B27;
  }

  .banner_items{
    display: flex;
    justify-content: space-between;
  }

  .banner_text {
    /* margin-left: 160px; */
    max-width: 620px;
    color: #fff !important;
    margin: 100px 0;
  }
  
  .banner_text h1 {
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    padding-bottom: 24px;
  }

  .banner_unique_text {
    color: #85EAFF;
  }

  .banner_text p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    padding-bottom: 48px;
  }

  /* Banner Image */
  .banner_image {
    max-width: 590px;
  }
  .banner_image img {
    width: 100%;
    padding-top: 20px;
    height: 100%;
  }

  /* Banner Buttons */

  .start_btn {
    background-color: #00B8DE;
  }

  /* Banner Section End */


/* ===============================
   MONITOR PAYMENTS SECTION START 
  ================================== */

  .monitor-payments {
    background-color: #EBF8FE;
  }

  .payment_features_flex {
    padding-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .font-bg {
    height: 50px;
    width: 50px;
    display: flex;
    border: 6px solid #A8D6EF;
    background-color: #6EB4E0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }

  .font-bg i {
   vertical-align: middle;
    font-size: 15px;
    color: #fff;
  }

  .payment_feature:hover .font-bg {
    animation: avatar-pulse 2s infinite;
    transition: background-color 0.5s;
    transition: 0.5s ease all;
  }
  
  @keyframes avatar-pulse {
    0% {
      box-shadow: 0 0 0 0 #A8D6EF;
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
  } 

  .payment_feature {
    padding-bottom: 60px;
  }

  .payment_feature_text {
    max-width: 347px;
    /* padding-top: 20px; */
  }

  .payment_feature_text h3 {
    padding-bottom: 8px;
    font-size: 20px;
  }

  .icon_container {
    padding-bottom: 20px;
  }

  /* ===============================
   AFRICAN BUSINESSES SECTION START 
  ================================== */

  .african_businesses {
    background: #021B27;
  }

  .african_businesses_heading {
    text-align: center;
    font-family: Averta;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
  }

  .african_businesses_flex {
    padding-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .business_image {
    max-width: 170px;
  }

  .business_image img {
    width: 100%;
  }

  /* ===============================
   SCALE YOUR BUSINESS SECTION START 
  ================================== */
  .scale_cards_flex {
    padding-top: 64px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    }
  .scale_card {
    width: 360px;
    /* height: 100%; */
    display: flex;
    /* flex: 1; */
    padding: 25px;
    margin: 10px;
    background: #FFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    flex-direction: column;
    justify-content: space-between;
  }

  .payment_feature_text p {
    font-size: 15px;
  }

  .activate_feature_btn {
    padding: 12px 16px;
    border-radius: 40px;
    border: 1px solid;
    color: #000 !important;
  }

  .scale_card_image {
    max-width: 160px;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .scale_card_image img {
    width: 100%;
  }

  .scale_card:hover .scale_card_image {
    transform: scale(1.1 );
  }

  .scale_card:hover .activate_feature_btn {
    background-color: #00B8DE;
    color: #fff !important;
    border: none !important;
  }

  .scale_card:hover {
    border: 2px solid rgba(0, 0, 0, 0);
    animation: spinner 2s;
    animation-timing-function: cubic-bezier(0.57, -0.01, 0.45, 1.45);
    animation-fill-mode: forwards;
  }
  @keyframes spinner {
    0% {
      border-radius: 8px;
      border-right: 2px solid var(--V1, #fa9cfc);
    }
   
    50% {
      border-radius: 8px;
      border-bottom: 2px solid var(--V2, #e0e06e);
    }
   
    75% {
      border-radius: 8px;
      border-left: 2px solid var(--V3, #e393ff);
    }
   
    100% {
      border-radius: 8px;
      border: 1.8px solid #a8d6ef;
    }
  }



/* .card_container {
  border-radius: 10px;
} */


/* ===============================
   INTEGRATE SECTION START 
================================== */

.integrate {
  background-color: #EBF8FE;
  position: relative;
}

.integrate_flex {
    display: flex;
    justify-content: space-between;
    overflow: hidden !important;
    padding-top: 40px;
   
}

.integrate_text {
    max-width: 532px;
    padding-bottom: 55px;
    padding-top: 20px;
}

.integrate_text h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    padding-bottom: 12px;
}

.dashbaord_features_flex {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 20px;
}

.dashboard_features {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dashboard_features i {
    color: #7BC6E4;
}

.integrate_btn {
    padding-top: 48px;
}

.dashboard_img {
  overflow: hidden !important;
  height: 100%;
}

.dashboard_img img {
    position: absolute;
    right: 0px;
    bottom: 0;
    /* width: 550px; */
}

.dashbaord_responsive  {
    display: none;
}

/* ===============================
   SUBSCRIBE SECTION START 
================================== */

.subscribe_main {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.subscribe_main h3{
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    padding-bottom: 8px;
}

.subscribe_main p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

/* Form area */
.form {
    padding-top: 32px;
}

.form__email {
    padding: 16px 25px;
	border-radius: 5px;
 	border: 1px solid #CAD3DB;
	/* width: 431px; */
	font-size: 18px;
	color: #0F121F;
}

.subscribe_btn {
   background-color: #00B8DE;
   padding: 22px 40px;
}

/* ===============================
   RESPOSNSIVE STYLING HERE
================================== */

@media (max-width: 1080px) {
    .dashboard_normal {
        display: none;
    }

    .dashbaord_responsive {
        display: block;
    }

    .dashboard_img img {
        position:unset;
        width: 100%;
        /* width: 550px; */
    }

    .dashboard_img {
        max-width: 550px;
    }

    .integrate_flex {
        display: flex;
        overflow: hidden !important;
        flex-direction: column;
    }

}

@media (max-width: 991px) {
    .banner_items {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }

    .banner_image {
      margin-bottom: -5px;
    }
    .business_image {
        max-width: 130px;
        
    }

    .african_businesses_flex {
        flex-wrap: wrap;
    }

    .dashbaord_features_flex {
        flex-direction: column;
    }

    .banner_text {
      margin: 40px 0;
    }

    .scale_card:hover {
      border: 2px solid rgba(0, 0, 0, 0);
      animation: spinner 2s;
      animation-timing-function: cubic-bezier(0.57, -0.01, 0.45, 1.45);
      animation-fill-mode: forwards;
    }
    @keyframes spinner {
      0% {
        border-radius: 8px;
        border-right: 2px solid var(--V1, #fa9cfc);
      }
     
      50% {
        border-radius: 8px;
        border-bottom: 2px solid var(--V2, #e0e06e);
      }
     
      75% {
        border-radius: 8px;
        border-left: 2px solid var(--V3, #e393ff);
      }
     
      100% {
        border-radius: 8px;
        border: 1.8px solid #a8d6ef;
      }
    }
  
}

@media (max-width: 600px) {
    .banner_text h1 {
        color: #fff;
        font-size: 37px;
        line-height: 46px;
    }

    .form__email {
        margin-bottom: 16px;
    }

    .form {
        width: 100%;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        margin: 0 auto;
    }

    .subscribe_btn { 
        margin: 0 !important;
    }

    .container {
      padding: 30px 40px;
    }

    .no-up-pad {
      padding: 0 40px
    }

    .payment_features_flex {
      padding-top: 32px;
    }

    .payment_feature {
      padding-bottom: 24px;
  }

  .icon_container {
    padding-bottom: 8px;
}

.scale_cards_flex {
  padding-top: 32px;
}

.integrate_text {

  padding-top: 0px;
}
}

@media (max-width: 480px) {
    .banner_text h1 {
        color: #fff;
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 16px;
    }

    .banner_text p {
        font-size: 12px;
        line-height: 18px;
    }

    .payments-top-text h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .business_image {
        max-width: 80px;
    }

    .african_businesses_flex {
        padding-top: 20px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
    }

    .payment_feature_text h3 {
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
    }

    .font-bg {
      padding: 17px;
    }

    .payment_feature_text p {
      font-size: 12px;
      line-height: 16px;
    }

    .african_businesses_heading {
      font-size: 14px;
      font-weight: 300;
      line-height: 20px; 
    }

    .subscribe_main h3 {
      font-size: 16px;
      font-weight: 600;
      line-height: 24px; 
    }

    .subscribe_main p {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px
    }

    .scale_card {
      border-image: conic-gradient(from var(--angle), red, yellow, lime, blue, magenta, red) 1 ;
    }

   
}

@media (max-width: 375px) {
    .btn {
        padding: 14px 12px;
    }
}

@media screen and (max-width: 780px) {
  .form--data {
      margin: 0 auto;
      margin-top: 40px;
      margin-bottom: 50px;
      padding: 50px 20px;
  }
}

.form--data {
  max-width: 600px;
  width: 100%;
  padding: 50px;
  border: 1px solid #eaecef;
  border-radius: 16px;
  margin-top: 80px;
  margin-bottom: 80px;
  margin: 0 auto;
}



input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;

  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input.check_box {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  display: inline-flex;
  width: auto;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* .scale_card:hover {
  border: 1.5px solid;

  --angle: 0deg;
  border-image: conic-gradient(from var(--angle), red, yellow, lime, blue, magenta, red) 1 ;
animation: 10s rotate linear infinite;
border-radius: 8px !important;
}

@keyframes rotate {
to {
  --angle: 360deg;
}
}

@property --angle {
border-radius: 8px !important;
syntax: '<angle>';
initial-value: 0deg;
inherits: false;
} */