/**
* Template Name: Fasttrack - v2.3.1
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
      body {
        position: relative;
        height: 100%;
      }

:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
body{
    overflow-x: hidden;
}
/*
.container{
    max-width: 1300px;
}
*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-orange);
    text-transform: uppercase;
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.logo {
    margin-right: 40px;
}
.header.sticked {
  background: var(--color-default);
  box-shadow: 2px 2px 12px #000;
}

.header .logo img {
  /* max-height: 40px; */
  /* margin-right: 6px; */
  width: 120px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 12px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  font-weight: 700;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

.header .btn-getstarted:nth-child(1){background: transparent;margin-right: 0;}
.header .btn-getstarted-1:nth-child(1){background: var(--color-primary);}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1100px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 19px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
.mob-contact{display: none;}
.mob-login{display: none;}
.logo-mob{display: none !important;}
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1099px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-black-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 30px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-black-rgb), 0.8);
    z-index: 9996;
  }
    
.container{max-width: 100%;}
.mob-contact{display: block;}
.mob-login{display: block;padding: 0 20px;}
.mob-login-inner{border-top: 2px solid var(--color-orange);margin-top: 20px;padding-top: 20px;}
.mob-login-inner a{padding-left: 0;padding-right: 0;color: var(--color-orange);}
.logo-mob{display: block;margin-bottom: 10px;}
.logo-mob img{width: 105px !important;max-height: 50px !important;}
.mob-login-inner .navbar a, .navbar a:focus{padding-left: 0;padding-right: 0;}   
    
    

}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background-size: cover;
  position: relative;
  padding: 120px 0 0;
}

.hero-animated h1 {
  margin: 0 0 10px 0;
  font-size: 75px;
  font-weight: 500;
  color: var(--color-orange);
  line-height: 75px;
  text-transform: uppercase;
}

.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 75px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
}

.hero-animated h2 span {
  font-weight: 800;
}

.hero-animated p {
  color:var(--color-white);
  margin: 0 0 30px 0;
  font-size: 17px;
  font-weight: 500;
}

.hero-animated .animated {
  /* margin-bottom: 60px; */
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.mobile{display: none;}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 100%;
  }
}

.get-started {
    display: flex;
    gap:20px;
}
.btn-get-started {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 12px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);color: var(--color-white);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features .btn-get-started{
    box-shadow: 0px 3px 6px #b7afaf;
}
.features .btn-get-started:nth-child(2){
    background: #d7d7d7; color:var(--color-orange);
}

.features {
    background: linear-gradient(180deg, #151515 25%, #ffffff 20%);
    padding-top: 0;
}
.features .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 2%;
}
.features .nav-tabs img{
  filter: grayscale(100%);
}
.features .nav-tabs li{
    width: 49%;
}

.features .nav-link {
  border: 0;
  padding: 25px 100px;
  background: var(--color-default);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.features .nav-link {
  position: relative;
}


.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active img{filter: inherit;}
.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-default);
}
.features .nav-link span{
    position: absolute;
    right: 30px;
    top: 0;
    width: 40px;
}
.features .nav-link span img{
    position: absolute;
    right: 0;

}
.features .tab-content {
  margin-top: 60px;
}

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 800;
  font-size: 40px;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-top: 60px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
  width: 90px;
}

.services .img img {
  transition: 0.6s;
}

.services .service-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.services .details {
  padding: 10px 10px;
  position: relative;
  text-align: center;
}


.services .details h3 {
  color: var(--color-white);
  font-weight: 800;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  text-transform: uppercase;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--color-white);
}



/*--------------------------------------------------------------
# Services Box
--------------------------------------------------------------*/
.services .service-box {
  height: 100%;
  padding: 45px 30px 20px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px 20px 0 0;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  font-weight: 800;
  color: var(--color-white);
}
.services  p {
  color: var(--color-white);
}
.service-top{margin:0 0 40px 0;position: relative;padding-bottom: 16px;overflow: hidden;}
.service-top:before{content: '';position: absolute;background: #3a3a48;height: 16px;width: 100%;bottom: 0px;border-radius: 20px 20px 0 0;z-index: 9;}


.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  background-image: url(../images/color-bg-1.png);
}
.services .service-box.orange {
  background-image: url(../images/color-bg-2.png);
}
.services .service-box.green {
  background-image: url(../images/color-bg-3.png);
}

.services .service-box.red {
  background-image: url(../images/color-bg-4.png);
}

.services .service-box{transition: transform .2s;position: relative;}
.services .service-box:hover{ transform: scale(1.1); position: relative;}


/*--------------------------------------------------------------
# Fast Track Affiliates
--------------------------------------------------------------*/

.why-fasttrack  .btn-get-started:nth-child(1){
    background: #302f38; 
}

.why-fasttrack  .btn-get-started:nth-child(2){
    background: #d7d7d7;
    color: #151515;
    position: relative;
    padding-right: 50px;
}

.why-fasttrack  .btn-get-started:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 18px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 14px;
    height: 14px;
    border-top: solid 2px #302f38;
    border-right: solid 2px #302f38;
    transform: translateY(-50%) rotate(135deg);
}

.why-fasttrack  {
  background-image: url(../images/bg-1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #151515;
  position: relative;
  z-index: 9;
  padding-bottom: 30px;
}
.section-header h2{
    color: var(--color-white);
}
.why-fasttrack  h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .why-fasttrack  h3 {
    font-size: 28px;
  }
}

.why-fasttrack  .content .icon-box {
/*
  display: flex;
  gap: 14px;
*/
}


.why-fasttrack  .content .icon-box div{
   overflow: hidden;
    position: relative;
}


.why-fasttrack  .content .icon-box span{
   width: 80px;
   float: left;
   margin-right: 15px;
}
.why-fasttrack  .content .icon-box span img{
  width: 100%;
}

.why-fasttrack  .content .icon-box h4 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--color-white);
  text-transform: uppercase;
}

.why-fasttrack  .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.why-fasttrack  .content .icon-box p {
  font-size: 15px;
  color: var(--color-white);
}


ul.other-affiliates{
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0;
    margin: 0;
}

ul.other-affiliates li {
	list-style: none;
	width:33.33333333%;
}

ul.other-affiliates li .line {
	 border: 1px solid var(--color-primary); 
	color: var(--color-white);
	font-size: 16px;
	border-bottom: 0;
	border-right: 0;
	background: var(--color-default);
	height: 42px;
	line-height: 42px;
	padding: 0 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}
ul.other-affiliates li:first-child .line {justify-content: flex-start;}
ul.other-affiliates li:first-child .line:first-child {
	border-radius: 50px 0 0 0;
}
ul.other-affiliates li:first-child .line:last-child {
	border-radius: 0 0 0 50px;
}
ul.other-affiliates li:nth-child(2) .line:first-child {
	border-radius: 50px 50px 0 0;
}
ul.other-affiliates li:last-child .line:nth-child(2) {
	border-radius: 0 50px 0 0;
}
ul.other-affiliates li:last-child .line:last-child {
	border-radius: 0 0 50px 0;
}

ul.other-affiliates li .line:last-child {
	border-bottom: 1px solid var(--color-primary);
}
ul.other-affiliates li:last-child .line {
	border-right: 1px solid var(--color-primary);
}

ul.other-affiliates li .line img {
	width: 32px;
}

.chart-bg{display: none;position: relative;z-index: 9;}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .btn-get-started:nth-child(1){
    background: #302f38;
    box-shadow: 0px 3px 6px #505050;
}

.testimonials {
  background: url("../images/bg-3.png") no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 0;
  z-index: 1;
  height: 100%;
}

.testimonials .box {
  padding: 20px;
  height:336px;
  background: var(--color-default);
  border-radius: 12px;
}

.testimonials .box .client-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.testimonials .box img {
    margin: 0 0 30px 0;
    transition: 0.5s;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    max-width: 100%;
    max-height: 36px;
}
.testimonials .box h3 {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 18px;
  border-top: 1px solid var(--color-orange);
  padding-top: 20px;
  word-break: break-all;
  min-height: 60px;
}

.testimonials .box p {
    color: var(--color-white);
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.testimonials .swiper {
    width: 100%;
    /* height: 50%; */
    padding-right: 15px;
  }
.testimonials .swiper-slide {
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
.testimonials .swiper-scrollbar-drag{background: var(--color-primary);}
.testimonials .col-lg-3{margin-bottom: 20px;}
.testimonials .content {
  display: none;
}
.notestimonial{cursor: not-allowed;}
.testimonials-margin{padding-top: 0;}

.slick-slide{padding: 0 12px;}
.slick-slide div:nth-child(1) .item {
    padding-bottom: 24px;
}
.slick-slider {
    margin-left: -12px;
    margin-right: -12px;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
.faq {
  padding-top: 160px;
  background: url("../images/bg-2.png") no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: -160px;
}



.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  border-radius: 50px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 15px 15px;
  font-weight: 600;
  border: 0;
  font-size: 16px;
  color: var(--color-white);
  text-align: left;
  background: var(--color-default);
  box-shadow: none;
  border-radius: 5px !important;
}

.faq .accordion-button:not(.collapsed) {
  border-bottom: 0;
  box-shadow: none;
  border-radius: 5px 5px 0 0 !important;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-body {
  padding: 0 30px 25px 20px;
  border: 0;
  border-radius: 0 0 5px 5px;
  background: var(--color-default);
  box-shadow: none;
  color: var(--color-white);
}

.accordion-button {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}
.accordion-button::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 22px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 14px;
    height: 14px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: translateY(-50%) rotate(135deg);
}
.faq .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(315deg);
    top: 28px;
    background-image: none;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: var(--color-primary-light);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Ready to get started?
--------------------------------------------------------------*/
.ready {
  padding-top: 100px;
  background: url("../images/chips.png") no-repeat;
  background-position: center center;
  position: relative;
}
.ready .section-header p{
    color:var(--color-white);
}

.ready .btn-get-started:nth-child(2){
    background: #d7d7d7; color:var(--color-orange);
}



/*--------------------------------------------------------------
# Login & Sign Up
--------------------------------------------------------------*/
.login .signup {
  position: fixed;
  width: 600px;
  top: 0;
  bottom: 0;
  padding: 30px 45px;
  color: white;
  z-index: 999;
  background-image: url(../images/login.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid var(--color-primary);
}
.login .signup.right {
  right: -600px;
  transition: 0.2s ease;
}
.login .signup.right.active {
  right: 0;
}

.login h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .login h3 {
    font-size: 28px;
  }
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.login .nav-link {
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  padding: 20px 50px;
  font-family: var(--font-secondary);
  text-decoration: none;
}

.login .nav-link.active {
  color: var(--color-white);
  background: var(--color-default);
  border-radius: 25px 25px 0 0;
}

@media (max-width: 575px) {
  .login .nav-link {
    font-size: 16px;
  }
}

.login .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.form-group{
    margin-bottom: 12px;
}
#tab1.tab-pane{
    background: var(--color-default);
    padding: 34px;
    border-radius: 0 25px 25px;
}
#tab2.tab-pane{
    background: var(--color-default);
    padding: 40px 34px;
    border-radius: 25px;
}
#tab2.tab-pane p{
    color: var(--color-white);
}
#tab2.tab-pane h2{
    text-transform: uppercase;font-size: 22px;
}
#tab3.tab-pane h1{
    text-transform: uppercase;font-size: 22px;
}
#tab3.tab-pane{
    background: var(--color-default);
    padding: 40px 34px;
    border-radius: 25px;
}
.login .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    background-color: #151515;
    background-clip: padding-box;
    border: 1px solid #151515;
    border-radius: 0.375rem;
    height: 42px;
}

.login ::placeholder { 
  color: #95959e;
  opacity: 1; 
}

.login :-ms-input-placeholder { 
  color: #95959e;
}

.login ::-ms-input-placeholder { 
  color: #95959e;
}
.login select.form-control { 
  color: #95959e;
  opacity: 1; 
}
.login select.form-control:focus { 
  color: #fff;
  opacity: 1; 
}

.form-control:focus {
    box-shadow: none;
}

.login a svg{width: 40px;}
/*radio & checkbox*/
.container-checkbox{display:block;position:relative;padding-left: 24px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height: 18px;font-weight: normal !important;margin-bottom: 10px;width: 100%;color: #95959e;}
.container-checkbox input{position:absolute;opacity:0;cursor:pointer;}
.container-checkbox .checkmark{position:absolute;top:0;left:0;height: 18px;width: 18px;background-color: var(--color-orange);border: 1px solid #151515;border-radius: 4px;}
.container-checkbox:hover input ~ .checkmark{/* background-color:#ccc; */}
.container-checkbox input:checked ~ .checkmark{background-color: var(--color-orange);;border-color: var(--color-orange);}
.container-checkbox .checkmark:after{content:"";position:absolute;display:none;}
.container-checkbox input:checked ~ .checkmark:after{display:block;}
.container-checkbox .checkmark:after{left: 6px;top: 1px;width: 6px;height: 10px;border:solid white;border-width: 0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}
.container-radio{display:block;position:relative;padding-left:24px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-transform: inherit !important;font-weight: inherit !important;line-height: 18px;/* width: 100%; */margin-bottom: 10px;padding-right: 12px;color: #95959e;}
.container-radio input{position:absolute;opacity:0;cursor:pointer;}
.container-radio .checkmark{position:absolute;top:0;left:0;height:18px;width:18px;background-color:var(--color-orange);;border-radius:50%;}
.container-radio:hover input ~ .checkmark{background-color:var(--color-orange);}
.container-radio input:checked ~ .checkmark{background-color:var(--color-orange);}
.container-radio .checkmark:after{content:"";position:absolute;display:none;}
.container-radio input:checked ~ .checkmark:after{display:block;}
.container-radio .checkmark:after{top:5px;left:5px;width:8px;height:8px;border-radius:50%;background: #fff;}
.form-radio{display: flex;flex-wrap: wrap;}
.form-radio-1{display: flex;justify-content: flex-start;}
label.label_hd {
    text-transform: uppercase;
    margin: 10px 0;
    font-size: 14px;
}
a.toggle-close {
    width: 50px;
    fill: #fff;
    position: absolute;
    right: 31px;
    top: 36px;
}
.login a{color: #95959e; text-decoration: underline;}
.login .btn-get-started{border: 0; margin-top: 15px;}

.hand-right-2 {
    width: auto;
    position: absolute;
    right: -308px;
    bottom: 70px;
    z-index: 9999;
}
.hand-right {
    width: auto;
    position: absolute;
    right: -128px;
    top: -18px;
    z-index: 9999;
}

.login .contact {
  position: fixed;
  width: 100%;
  bottom: 0;
  top: 0;
  padding: 30px 45px;
  color: white;
  z-index: 999;
  background-image: url(../images/login.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.contact.left {
  right: -100%;
  transition: 0.2s ease;
}
.contact.left.active {
  right: 0;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact section {
  padding: 0;
}

.contact p {
  color: var(--color-white);
}


.contact section .section-title h2{
  color: var(--color-orange);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  background: var(--color-default);
  color: var(--color-white);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-orange);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-white);
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  color: #fff;
  background: var(--color-orange);
}

.contact .php-email-form {
  width: 100%;
  background: var(--color-default);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.contact .php-email-form .form-group {
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 90px;
}

.contact .php-email-form button[type=submit] {
  border: 0;
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-link{display: flex;align-items: center;justify-content: space-between;margin-top: 80px;border-top: 1px solid var(--color-orange);padding: 20px 0;}
.footer-link .copyright{
  color: var(--color-orange);
  font-size: 14px;
}

.footer-link ul{
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.footer-link ul li{
  list-style: none;
}
.footer-link ul li a{
  color: var(--color-white);
  font-size: 16px;
}



/*
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}
*/

@media (max-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 100%;
    padding: 0 25px;
  }
}


@media (max-width: 1070px) {
    .hand-right{display: none;}
    .hand-right-2{display: none;}
    .footer-link{flex-direction: column;margin-bottom: 20px;padding: 30px 0;}
    .footer-link ul{gap:10px;order: 1;margin-bottom: 20px;}
    .footer-link .copyright{order: 2;}
    .features {background: linear-gradient(180deg, #151515 16%, #ffffff 14%);}
    .why-fasttrack{background-size: cover;background-position: right bottom;}
    .testimonials{margin-top: 0;padding-top: 60px;}
    .faq{background-size: cover;margin-top: 0;padding-top: 60px;}
}


@media (max-width: 991px) {
    .features .nav-link{padding: 50px 25px;}
    .hero-img{text-align: center;padding: 0;}
    .desktop{display: none;}
    .mobile{display: block;}
    .why-fasttrack .desktop{display: block;}
    .why-fasttrack .mobile{display: none;}
    .service-top .col-lg-3{width: 25%;}
    .hero-animated{padding: 97px 0 30px;}
    .hero-animated .animated{animation: up-down 0s ease-in-out infinite alternate-reverse both;}
    #hero-animated .container{padding: 0}
    #hero-animated .col-lg-6:nth-child(1){padding: 0 36px;}
    .features .tab-pane h3{margin-top: 0;margin-bottom: 30px;}
    .features .tab-content {margin-top:50px;}
    .section-header {/* padding-bottom:15px; */}
    #brands .get-started{margin:40px 0 20px; justify-content: center;}
    .slick-slider{margin-left: 0;margin-right: 0;}
}


@media (max-width: 767px) {
    .footer-link ul li a{font-size: 15px;}
    .features {background: linear-gradient(180deg, #151515 16%, #ffffff 12%);}
    .service-item{margin-bottom: 15px;}
    .section-header h2{font-size: 36px;}
    .logo {text-align: left;margin-right:0px;justify-content: flex-start;}
    .header .logo img{max-height: 40px;width: 100%;}
    .service-top:before{display: none;}
    .services .service-box.blue{background: none;}
    .services .service-box.orange{background: none;}
    .services .service-box.green{background: none;}
    .services .service-box.red{background: none;}
    .services .service-box{padding: 0;margin-left: -15px;margin-right: -15;}
    .services .service-box span{width: 100%;display: inline-block;}
    .services .service-box span img{width: 100%;}
    .why-fasttrack .get-started{justify-content: center;/* margin-bottom: 20px; */}
    .chart-bg{text-align: center;margin-left: -13px;margin-right: -13px;}
    .chart-bg img{width: 100%;}
    .hero-animated h1{font-size: 50px;line-height: 50px;}
    .hero-animated h2{font-size: 50px;line-height: 50px;}
    .hero-animated p{font-size: 20px;}
    .ready{padding-top: 60px;margin-top: 0px;}
    .ready .section-header h2{margin-bottom:20px;}
    .section-header h2{margin-bottom: 0;}
    .services .section-header h2{margin-bottom: 40px;}
    .footer-link{margin-top:30px;}
    .btn-get-started{min-width: 150px;text-align: center;}
    .login .signup.right{width: 90%;}
    .login .signup.right{right: -90%;}
    .login .signup{padding: 30px;border: 0;}
    #tab1.tab-pane {padding:20px;border-radius: 0 15px 15px;}
    #tab2.tab-pane {padding:20px;border-radius: 15px;}
    #tab3.tab-pane {padding:20px;border-radius: 15px;}
    .login .nav-link.active {border-radius: 15px 15px 0 0;}
    .login .nav-link {padding: 15px 50px;}
    .tab-content .col-md-6{width: 50%;}
    .why-fasttrack .desktop{display: none;}
    .why-fasttrack .mobile{display: block;}
    .mobile-nav-toggle{top: 20px;}
    .header .btn-getstarted, .header .btn-getstarted:focus {margin-right: 40px;}
    .features .nav-link {padding:50px 30px;}
    section {padding:50px 0;}
    #commissions .section-header{margin-bottom: 20px;}
    .service-top {margin:20px 0 40px 0;}
    .services .service-box:hover{transform: inherit;position: relative;}
    .why-fasttrack .content .icon-box span {width:110px;}
    .faq .accordion-button{font-size: 18px;}
    .contact .php-email-form{padding: 20px;border-radius: 15px;}
    aside#left .section-header h2{margin-bottom: 20px;}
    table.sample {width: 100% !important;}
    .section-bg .section-header h2{margin-bottom: 20px;}
}


@media (max-width: 600px) {
    .footer-link ul li a{font-size: 14px;}
    .footer-link ul{gap:8px;}
    #forgot_password .panel .panel-body h3 {text-align: center !important;}
    .testimonials .col-lg-3{width: 50%;}
}


@media (max-width: 500px) {
    .service-top .col-lg-3 {width: 50%;}
    .services .service-box span img{max-width: 132px;}
    .section-header h2 {font-size:28px;}
    .why-fasttrack .content .icon-box h4 {font-size: 22px;}
    .services .details h3{font-size: 20px;}
    .hero-animated h1 {font-size: 40px;line-height: 40px;}
    .hero-animated h2 {font-size: 40px;line-height: 40px;}
    .features .tab-pane h3{font-size: 28px;}
    .footer-link ul li a{font-size: 12px;}
    .btn-get-started{font-size: 14px;border-radius: 6px;}
    .login .signup.right{width: 100%;}
    .login .signup.right{right: -100%;}
    .contact section .section-title h2 {font-size:20px;text-align: center;}
    .testimonials .col-lg-3{width: 100%;}

}


@media (max-width: 450px) {
    .header .btn-getstarted, .header .btn-getstarted:focus {font-size: 14px;padding: 8px 8px;border-radius: 8px;font-weight: 600;}
    .get-started {gap: 10px;}
    .header .btn-getstarted, .header .btn-getstarted:focus {margin-right: 35px;}
	.features .nav-link {padding: 30px 15px;}
	.get-started .btn-get-started {min-width: auto;padding: 10px 20px;font-size: 13px;white-space: nowrap;}
	.why-fasttrack .btn-get-started:nth-child(2) { padding-right: 30px;}
    .why-fasttrack .btn-get-started:nth-child(2)::after {width: 12px;height: 12px;top: 16px;right: 11px;}
	.footer-link ul {display: block;}
	.footer-link ul li {width: 33%;float: left;}
	.features .nav-link span {right: 15px;width: 20px;}
    .features {background: linear-gradient(180deg, #151515 14%, #ffffff 12%);}
    .why-fasttrack .content .icon-box span {width: 80px;/* text-align: center; *//* margin-bottom: 15px; */}
    .why-fasttrack .content .icon-box span img{max-width: 90px;}
    .why-fasttrack .content .icon-box div{/* width: 100%; *//* text-align: center; */}
    .login .contact{padding: 15px;}
    .login .signup {padding: 15px;}
    .tab-content .col-md-6 {width:100%;}
    a.toggle-close{width: 30px;top: 20px;right: 10px;}
    a.toggle-close svg{width: 30px;}
    .login .nav-link {padding: 10px 37px;}
    .login .nav-link.active {border-radius: 15px 15px 0 0;}
    aside#left .container {padding: 0;}
}
@media (max-width: 360px){
    .features .nav-link span { right: 10px;width: 20px;}
    .features {background: linear-gradient(180deg, #151515 12%, #ffffff 12%);}
    .get-started .btn-get-started{font-size: 12px;padding: 10px 10px;min-width: 90px;}
    .why-fasttrack .get-started .btn-get-started{min-width: 80px;}
    .why-fasttrack .content .icon-box span img {max-width:80px;}
}



