
/*========= About Page==========*/

.inner-banner .hero-section h1 {
  font-size: 60px;
  line-height: 70px;
  color: #000;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
}
.inner-banner .hero-section h1 strong {
  color: #EB6F25;
  font-weight: 700;
}
.main-hdng h2 strong {
  font-weight: 600;
  color: #EB6F25;
}
.inner-banner .hero-section h3 {
color: #000000;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 1.5;
}
.inner-banner .hero-section p {
  margin-bottom: 30px;
}
.inner-banner {
  position: relative;
}
.para_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #2E2E2E;
  margin-bottom: 15px;
}

.stats-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.stats-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.affiliatesuccess {
  padding: 0 0 100px;
}
.affiliatesuccess .main-hdng {
  margin-bottom: 15px;
}
.stats-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.stats-card p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; 
  text-align: center;
}

.mint-bg {
  background-color: #DFEBE7;
  color: #205C49;
}

.orange-bg {
  background-color: #FFF3EC;
  color: #EB6F25;
}

.yellow-bg {
  background-color: #FFF9E6;
  color: #F7BC00;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bulk-content {
  position: relative;
  background-color: black;
  overflow: hidden;
  background-image: url(../images/bulk_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 100 0;
}
.bulk-content .para_text {
  margin-bottom: 30px;
}
.bulk-content .main-hdng h2 {
  font-weight: 600;
  color: #fff;
}
.bulk-content .main-hdng h2 strong {
  color: #F7BC00;
}
.bulk-content .main-hdng {
  margin-bottom: 15px;
}
.bulk-content .para_text {
  color: #fff;
}
.bulk-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bulk-text {
  flex: 1;
  max-width: 680px;
  margin-right: 32px;
}
.hero-image-container {
  position: absolute;
  bottom: -10px;
  right: 100px;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 680px;

}
.mission-section {
  padding: 100px 0;
  position: relative;
}
.mission-content {
  display: flex;
  gap: 64px;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  max-width: 470px;
}
.mission-text .main-hdng {
  margin-bottom: 20px;
}
.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.auto_payment .btn-group {
  justify-content: center;
  display: flex;
  gap: 20px;
}
.mission-text {
  flex: 1;
  padding-top: 45px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.mission-columns {
  display: flex;
  gap: 32px;
}

.mission-column {
  flex: 1;
}
.mission-column .column-title {
  color: #EB6F25;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5; 
  margin-bottom: 15px;
}
.platform-guide-video {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}
.platform-guide-video .button {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.platform-guide-video .button.is-play {
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.platform-guide-video .button.is-play .button-outer-circle {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  }
.platform-guide-video .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  }
  .platform-guide-video .button.is-play .button-icon .triangle {
  -webkit-animation: fadeIn 7s ease;
  animation: fadeIn 7s ease;
  }
.platform-guide-video .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
  animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  }
  .platform-guide-video .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
  animation: smallScale 3s infinite;
  }
  .platform-guide-video .has-delay-short {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  }  
  @-webkit-keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    @keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    @-webkit-keyframes triangleStroke {
    from {
    stroke-dashoffset: 90;
    }
    to {
    stroke-dashoffset: 0;
    }
    }
    @keyframes triangleStroke {
    from {
    stroke-dashoffset: 90;
    }
    to {
    stroke-dashoffset: 0;
    }
    }
    @-webkit-keyframes smallScale {
    from {
    transform: scale(1);
    opacity: 1;
    }
    to {
    transform: scale(1.5);
    opacity: 0;
    }
    }
    @keyframes smallScale {
    from {
    transform: scale(1);
    opacity: 1;
    }
    to {
    transform: scale(1.5);
    opacity: 0;
    }
    }
    .auto_payment {
      padding-top: 0;
    }
    .guide_value {
      background-color: #FFF3EC;
    }

    .guide-container{
      display: flex;
      list-style: none;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .guide-box {
      flex: 1 1 calc(50% - 20px); /* Two cards per row, accounting for the gap */
      background-color: #BCF9EA;
      border-radius: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.2s ease;
      height: 280px;
    }
    .guide-box:first-child, .guide-box:last-child{
      background-color: #FDE8AA;
    }
    .guide-container li:nth-child(odd) {
      transform: translateY(-20px);
    }
  
    .guide-box p {
      color: #2E2E2E;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px; /* 1.714 */
    }
    .guide-box h3 {
      color: #000000;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 18px; /* 1.125 */
      margin-bottom: 15px;
    }
    .guide-box .icon {
      font-size: 30px;
      margin-bottom: 10px;
      color: #ff9f29;
      width: 61px;
      height: 61px;
      flex-shrink: 0;
      background-color: #FFF3EC;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
    }
    .growing-strong .btn-group {
      gap: 20px;
    }
    .more-sales-sec.about-bigger {
      background-image: url(../images/Affiliate-marketing-bg.png);
    }
    
    /*---------------feture page------------------*/
    .become-affiliate-sec.feature {
      background-color: #FFF3EC;
    }
    section.become-affiliate-sec.feature .become-affiliate-bx-icon {
      background-color: #fff;
      border-radius: 50%;
  }

/*-------------feature end----------------*/
/*-------------affiliates----------------*/
section.comprehensive-services-sec.affiliates-ec-one {
  background: #FFF3EC;
}
section.comprehensive-services-sec.affiliates-ec-one .comprehensive-services-bx-left {
  background-color: #fff;
}
section.comprehensive-services-sec.affiliates-ec-one .comprehensive-services-bx:hover .comprehensive-services-bx-left {
  background-color: #28A745;
}

.more-sales-sec.affiliares-four {
  background-image: url(../images/Affilliate-bl-banner.png);
  background-position: right;
}
.aap-sec.affiliates-cev-five {
  background-color: #fff;
  padding: 100px 0 50px;
}
.aap-bx .plantag {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5; /* 30px */
  text-align: center;
  border-radius: 10px;
  padding: 7px 13px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.aap-bx.aap-bx-left .plantag {
  background-color: #F7BC00;
  background-blend-mode: multiply;
  color: #fff;
}
.aap-bx.aap-bx-right .plantag {
  background-color: #23c8a5;
  color: #fff;
}
.plan-price {
  display: flex;
  align-items: center;
  margin: 0 auto 15px;
  justify-content: center;
  gap: 10px;
}

.plan-price .amount {
  color: #000000;
  font-family: "Lato";
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 65px */
  text-align: center;
  text-transform: capitalize;
  color: #000;
  margin: 0;
}

.plan-price .period {
  color: #2E2E2E;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2; /* 1.647 */  
  margin: 0;
}
.aap-sec.affiliates-cev-five .aap-bx h5 {
  color: #2E2E2E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; 
  margin-bottom: 15px;
}
.aap-sec.affiliates-cev-five .aap-bx .para_text {
  text-align: center;
}
.aap-sec.affiliates-cev-five .aap-bx {
  display: flex;
  flex-direction: column;
  transition: 0.5s ease-in-out;
  border-top: 7px solid transparent;
  padding-bottom: 110px;
  padding-top: 80px;
  position: relative;
}
.aap-sec.affiliates-cev-five .aap-bx .ribbon {
  width: 130px;
  height: 130px;
  overflow: hidden;
  position: absolute;
}
.aap-bx.freetrial {
  overflow: unset;
}
.aap-bx.freetrial h4 {
  color: #EB6F25;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}
.aap-sec.affiliates-cev-five .aap-bx .ribbon-top-left {
  top: -15px;
  left: -10px;
}
.ribbon-top-left::before, .ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #EB6F25;
}
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #EB6F25;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}
.ribbon span {
  position: absolute;
  display: block;
  width: 195px;
  padding: 10px 0;
  background-color: #EB6F25;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}
.aap-sec.affiliates-cev-five .aap-bx .btn-group {
  width: 100%;
  justify-content: center;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 50px;
  margin: 0;
}
.aap-sec.affiliates-cev-five .aap-bx ul {
  margin-bottom: 50px;
}
/* .aap-sec.affiliates-cev-five .aap-bx::before {
  display: none;
} */
.aap-sec.affiliates-cev-five .aap-bx.aap-bx-left:hover {
  border-top: 7px solid #F7BC00;
}
.aap-sec.affiliates-cev-five .aap-bx.aap-bx-right:hover {
  border-top: 7px solid #23c8a5;
}
.trans-pricing-card {
  background: url(<path-to-image>), lightgray 50% / cover no-repeat;
  border-radius: 30px;
  background-blend-mode: multiply;
  background-color: #BBF7E8;
  padding: 80px;
  border: none;
  transition: 0.5s ease-in-out;
  border-top: 7px solid transparent;
  margin-top: 80px;
}
.trans-pricing-card:hover {
  border-top: 7px solid #28A745;
}
.trans-pricing-card h5 {
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.22; /* 33px */
  margin-bottom: 10px;
}
.trans-pricing-card h6 {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 15px;
}
.trans-pricing-card .price-text {
  color: #000000;
  font-family: "Lato";
  font-size: 54px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2; 
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.trans-pricing-card .per-text {
  color: #2E2E2E;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 1.647 */  

}

.trans-pricing-card ul {
  list-style: none;
}
.trans-pricing-card-right {
  padding-left: 50px;
  border-left: 1px solid #000000;
}
.trans-pricing-card ul li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 15px;
  color: #2E2E2E;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.trans-pricing-card ul li:last-child {
  padding-bottom: 0;
}
.trans-pricing-card ul li::before {
  display: inline-block;
  content: "\f058";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #28A745;
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 17px;
}
.more-sales-sec.sellers-bigger {
  background-image: url(../images/sellers-bulk-bg.png);
}
.guide_value.seller-area {
  background-color: #FFF;
}
.guide_value.seller-area .guide-container {
  display: block;
  list-style: none;
  gap: 20px;
}
.guide_value.seller-area .guide-container li:nth-child(odd) {
  transform: unset;
}
.guide_value.seller-area .guide-container li:nth-child(even) {
  margin-left: 40px;
}
.guide_value.seller-area .guide-container li {
  margin-bottom: 20px;
}
.guide_value.seller-area .guide-container li{
  display: flex;
  gap: 20px;
}
.guide_value.seller-area .guide-container li.guide-box .icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.guide_value.seller-area .guide-container li.guide-box .icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.guide_value.seller-area .guide-container li.guide-box .guide-box-seller-cnt {
  width: calc(100% - 61px);
}
.guide_value.seller-area .main-hdng {
  position: relative;
  margin-bottom: 15px;
}
/*---------contact-us--------------*/
.contact-us-hero ul {
  list-style: none;
}
.contact-us-hero ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-us-hero ul li span {
  width: 34px;
  height: 34px;
  background-color: #EB6F25;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
.contact-us-hero ul li p, .contact-us-hero ul li a {
  width: calc(100% - 34px);
  padding-left: 15px !important;
  display: block;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
 
.inner-banner.contact-us-hero ul li p{ 
  margin-bottom: 0;
}
.contact-main {
  background-color: #FFF3EC;
}
.contact-main .form-container {
  width: 100%;
  border-radius: 0.5rem;
}

.contact-main .form-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-main .form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-main .form-group,
.login-sec .form-group {
  position: relative;
  flex: 1;
}

.contact-main .form-control,
.login-sec .form-control {
  width: 100%;
  height: 3.5rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid #F7AF84;
  border-radius: 5px;  
  background: transparent;
  font-size: 17px;
  transition: border-color 0.2s ease-in-out;
}
.login-sec .otp-bx-area .form-control {
  text-align: center;
}

.contact-main .form-control:focus,
.login-sec .form-control:focus {
  box-shadow: none;
  border: 1px solid #28A745;
}

.contact-main .form-label,
.login-sec .form-label {
  position: absolute;
  left: 0.75rem;
  top: 16px;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: #727272;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.contact-main .form-control:focus ~ .form-label,
.contact-main .form-control:not(:placeholder-shown) ~ .form-label,
.login-sec .form-control:focus ~ .form-label,
.login-sec .form-control:not(:placeholder-shown) ~ .form-label {
  top: -7px;
  font-size: 0.75rem;
  background-color: #fff;
}
.contact-main .form-control:-webkit-autofill,
.contact-main .form-control:-webkit-autofill,
.login-sec .form-control:-webkit-autofill,
.login-sec .form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important; /* Makes background transparent */
  -webkit-text-fill-color: #000 !important; /* Set your desired color */
  transition: background-color 5000s ease-in-out 0s;
  caret-color: auto; /* keeps the cursor visible */
}
.contact-main .form-control-webkit-autofill:focus,
.contact-main .form-control-webkit-autofill:focus,
.login-sec .form-control-webkit-autofill:focus,
.login-sec .form-control-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important; /* Makes background transparent */
  -webkit-text-fill-color: #000 !important; /* Set your desired color */
  transition: background-color 5000s ease-in-out 0s;
  caret-color: auto; /* keeps the cursor visible */
}
.contact-main .phone-input,
.login-sec .phone-input {
  display: flex;
  border: 1px solid #F7AF84;
  border-radius: 5px;
}
.contact-main .phone-input .form-control,
.login-sec .phone-input .form-control {
  border: none!important;
  padding: 0.25rem 0.75rem 0.25rem;
}
.contact-main .country-code,
.login-sec .country-code {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  border: 0.0625rem solid var(--border-color);
  border-right: none;
  border-radius: 0;
  font-size: 17px;
  gap: 4px;
}
.country-code img {
  width: 1.25rem;
  margin-right: 0.25rem;
}

.phone-input .form-control {
  border: 1px solid #F7AF84;
  border-radius: 5px;

}

.phone-input .form-label {
  left: 4.5rem;
}

.contact-main .form-select,
.login-sec .form-select {
  width: 100%;
  height: 3.5rem;
  padding: 0 2rem 0 0.75rem;
  border: 1px solid #F7AF84;
  border-radius: 5px;  
  font-size: 17px;
  background: #FFF3EC;
  color: #000;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color 0.2s ease-in-out;
}
.contact-main select:required:invalid,
.login-sec select:required:invalid {
  color: #727272;
}
.contact-main option,
.login-sec option {
  color: #000;
}
.contact-main .form-select:focus,
.login-sec .form-select:focus {
  box-shadow: none;
  border: 1px solid #28A745;
  -webkit-text-fill-color: #000 !important; /* Set your desired color */
}

.contact-main .form-textarea,
.login-sec .form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-main .checkbox-group,
.login-sec .checkbox-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
}
.contact-main .checkbox-input,
.login-sec .checkbox-input {
  margin-top: 0.25rem;
  width: 23px;
  height: 23px;
  border: 0.0625rem solid #EB6F25;
  border-radius: 0.25rem;
  appearance: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: -4px;
}
.contact-main .form-control:focus,
.login-sec .form-control:focus {
  box-shadow: none;
  border: 1px solid #28A745;
  -webkit-text-fill-color: #000 !important; /* Set your desired color */
}
.contact-main .checkbox-input:checked,
.login-sec .checkbox-input:checked {
  background-color:#28A745;
  border-color:#28A745;
  background-image: url(../images/check-solid.svg);
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}

.contact-main .checkbox-label,
.login-sec .checkbox-label {
  color: #2E2E2E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}
.contact-faq .main-hdng p {
  font-weight: 500;
}
.contact-faq .main-hdng p span{
  color: #EB6F25;
  font-weight: 500;
}


.termscondition h3, .termscondition h4, .termscondition h5 {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 36px */
  margin-bottom: 10px;
}
.termscondition p{
  color: #2E2E2E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 15px;
}

.termscondition ul {
  list-style: none;
  margin-bottom: 15px;
}
.termscondition ul li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 15px;
  color: #2E2E2E;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.termscondition ul li::before {
  display: inline-block;
  content: "\f058";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #28A745;
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 17px;
}
.termscondition .main-hdng {
  position: relative;
  margin-bottom: 20px;
}
.termscondition ul:last-child {
  margin-bottom: 0;
}
.cmsmain {
  padding: 60px 0 80px;
}
.termscondition-sec .main-hdng {
  margin-bottom: 30px;
}
.termscondition {
  border-top: 1px solid #F7AF84;
  padding-top: 30px;
}