

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Colors */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2F2E41;
  --brand-color: #71c55d;
  --brand-secondary-color: #F9B546; 
  --contrast-color: #ffffff;
  --dark-color: #2F2E41; 
  --surface-color: #f1f6f1;
  --alert-color: #E0010C;
}

.bg-primary {
  background-color: #0093ca !important;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;  
  --nav-hover-color: #71c55d; 
  --nav-background-color: #ffffff; 
}

:root {
  scroll-behavior: smooth;
}

section.light-background {
  background-color: var(--surface-color); 
}

section.wave-background {
  background-image: url('../img/wave.svg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.badge.bgcolor {
  background-image: linear-gradient(130deg,blue, green, yellow, red) !important;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  color: var(--contrast-color);
  background-color: var(--brand-color);
  border-bottom: 1px solid var(--brand-color);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  white-space: nowrap !important;
}

.header .logo img {
  max-height: 42px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 1.8em;
  margin: 0;
  font-weight: 700;
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--dark-color);
  background-image: url('../img/footer.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 14px;
  padding: 50px 0; 
  box-shadow: inset 0 3em 4em -3em #001;
}

.footer .social-links { 
  margin-top: 20px; 
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px; 
  border: 1px solid color-mix(in srgb, var(--brand-color), transparent 10%);
  background-color: var(--dark-color);
  font-size: 16px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--brand-secondary-color);
  border-color: var(--brand-secondary-color);
}

.footer a {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--brand-color);
  border-top-color: color-mix(in srgb, var(--brand-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--brand-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  animation: animate-scroll-top 2s linear infinite;
}

@keyframes animate-scroll-top {
  0% {
    background-color: var(--brand-color);    
  }
  1% {
    background-color: var(--brand-secondary-color);  
  }
  100% {
    background-color: var(--brand-color);   
  }
}

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

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


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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color); 
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 42px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--brand-color), transparent 90%);
  color: var(--brand-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--brand-color);
}



/*--------------------------------------------------------------
# 1. intro Section
--------------------------------------------------------------*/

.intro {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}

.intro .container {
  position: relative;
  z-index: 3;
}

.intro h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .intro h2 {
    font-size: 36px;
  }
}

/* h2 > span yellow-highlight */
.intro h2 > span {
  animation-name: yellow-highlight;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

/* animation for h2 > span yellow-highlight */
@keyframes yellow-highlight {
  to {
    --s: 0.6em;
    /* control the size */
    --d: 3px;
    /* control the distance */
    background:
      linear-gradient(#FFC661 0 0) 50% calc(100% - var(--d))/calc(100% - var(--s)) var(--s),
      radial-gradient(farthest-side, #FFC661 98%, #0000) bottom var(--d) left 0/var(--s) var(--s),
      radial-gradient(farthest-side, #FFC661 98%, #0000) bottom var(--d) right 0/var(--s) var(--s);
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}

.intro p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  margin-bottom: 30px;
}

.intro .spin {
  position: relative;
  display: block;  
}

.intro .spin:after {
  position: absolute;
  top: 0; left: -20px;
  height: 100%; width: 100%;
  content: '';  
  background: url('../img/flight-path-forward.svg') no-repeat center center; 
  animation: spin 20s linear infinite;
  animation-direction: normal;
  z-index: -10;
}

.intro .spin:before {
  position: absolute;
  top: 0; left: -20px;
  height: 100%; width: 100%;
  content: '';
  background: url('../img/flight-path-backward.svg') no-repeat center center;
  animation: spin 10s linear infinite;
  animation-direction: reverse;
  z-index: -10;
}

@keyframes spin {
  from {transform: rotate(0deg);}  
  to {transform: rotate(360deg);}   
}

.intro .info-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.intro .info-box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-origin: border-box;
  padding: 50px 20px 20px; /* top | left and right | bottom */
  position: relative; 
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  border-radius: 16px;  
}

.intro .customer { 
  border: 1px solid color-mix(in srgb, var(--brand-color), transparent 30%);
  border-bottom: 5px solid var(--brand-color);
}

.intro .company {
  border: 1px solid color-mix(in srgb, var(--brand-secondary-color), transparent 30%);
  border-bottom: 5px solid var(--brand-secondary-color);
}

.intro .step-1 {
  background-image: linear-gradient(to bottom,
  rgba(255, 255, 255, 1) 30%,
  rgba(113, 197, 93, .2)),
  url('../img/step-1.jpeg');
}

.intro .step-2 {
  background-image: linear-gradient(to bottom,
  rgba(255, 255, 255, 1) 30%,
  rgba(249, 181, 70, .2)),
  url('../img/step-2.jpeg');
}

.intro .step-3 {
  background-image: linear-gradient(to bottom,
  rgba(255, 255, 255, 1) 30%,
  rgba(249, 181, 70, .2)),
  url('../img/step-3.jpeg');
}

.intro .step-4 {
  background-image: linear-gradient(to bottom,
  rgba(255, 255, 255, 1) 30%,
  rgba(249, 181, 70, .2)),
  url('../img/step-4.jpeg');
}


.intro .info-box h4 {
  font-weight: 700;
  margin: 22px 0px 22px 0;
  font-size: 24px;
  text-shadow: 1px 1px #fff;
  color: #000;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 10px;
  padding: 8px;
}

.intro .info-box .icon {
  display: inline-block;
  font-size: 50px;
  line-height: 1; 
}

.intro .customer .icon i {
  color: var(--brand-color);
}

.intro .company .icon i {
  color: var(--brand-secondary-color);
}



/*--------------------------------------------------------------
# 2. Benefit Section
--------------------------------------------------------------*/

.benefit ul {
  list-style: none;
  padding: 0;
}

.benefit ul li {
  padding-bottom: 10px;
}

.benefit ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--brand-color);
}

.benefit p:last-child {
  margin-bottom: 0;
}

.benefit .benefit-images img {
  border-radius: 10px;
}



/*--------------------------------------------------------------
# change Section
--------------------------------------------------------------*/

.change .info-box {
  background-color: var(--background-color); 
  padding: 24px 24px 0px 24px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--brand-color);
  height: 100%;
  position: relative;
}

.change .info-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: .6em;
  margin-bottom: .4em;
}

.change .info-box p {
  font-size: 14px;
  font-weight: 400;
}

.change .info-box i {
  color: var(--contrast-color);
  background: var(--brand-color);
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: absolute;
  top: -10px; left: -10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.stats i {
  background-color: var(--brand-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

#pricing .example:after {   
  position: absolute;
  top: 152px; left: -30px;  
  content: ' ';
  background-image: url('../img/bracket.svg');
  background-repeat: no-repeat;
  background-size: 42px 154px;
  height: 154px;
  width: 42px;
}

#pricing .card .card-header {
  background-color: var(--brand-color) !important;
}

#pricing .card .card-header h4 {
  color: var(--contrast-color) !important;
  font-weight: 600;
}

#pricing .card .card-footer {
  background-color: var(--dark-color) !important;
}

#pricing .card .card-footer h5 {
  color: var(--contrast-color) !important; 
}

#pricing .tab-content th {
  background-color: var(--dark-color);
  color: var(--contrast-color); 
}

.nav .nav-link {
  color: var(--dark-color);
}

.nav .nav-link.active {
  background: linear-gradient(#fff, #F9B546);
}


/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/

.contact .content h3 {
  font-weight: 400;
  font-size: 24px;
}

.contact .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .info-item+.info-item {
  margin-top: 18px; 
}

.contact .info-item i {
  color: var(--brand-color);
  background: color-mix(in srgb, var(--brand-color), transparent 92%);
  font-size: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 14px;
}

.contact .info-item h3 {
  padding: 0; margin: 0;
  display: block;
  font-size: 17px;
  font-weight: 700; 
}


.contact .info-item i {
  background: var(--brand-color);
  color: var(--contrast-color);
}

/* FAQ-Section */
.contact .faq-container .faq-item {
  background-color: var(--background-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.contact .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.contact .faq-container .faq-item h3 .num {
  color: var(--brand-color);
  padding-right: 5px;
}

.contact .faq-container .faq-item h3:hover {
  color: var(--brand-color);
}

.contact .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.contact .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.contact .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.contact .faq-container .faq-item .faq-toggle:hover {
  color: var(--brand-color);
}

.contact .faq-container .faq-active h3 {
  color: var(--brand-color);
}

.contact .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.contact .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--brand-color);
}