:root {
  --primary-color: #3e4095;
  --bs-primary-rgb: 62, 64, 149;
  --secondary-color: #01243f;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
}

.ff-titillium {
  font-family: 'Titillium Web', sans-serif;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}

header {
  /* background-color: #fff; */
  transition: background-color 0.4s ease, color 0.4s ease;
  text-transform: uppercase;
  font-size: 14px;
}

header .btn {
  font-size: 14px !important;
}

.contactForm {
  background-color: var(--primary-color);
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  background-color: transparent;
}

.contactForm .form-control::placeholder {
  color: #fff;
}

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

.navbar-brand {
  position: relative;
  display: inline-block;
  height: 110px;
}

.navbar-brand img {
  width: auto;
  height: 100px;
  position: absolute;
  top: 5px;
  left: 0;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.footer {
  background-color: var(--secondary-color);
}

header,
header .btn {
  font-family: 'Titillium Web', sans-serif;
}

header .logo-light {
  opacity: 1;
  z-index: 2;
}

header .logo-dark {
  opacity: 0;
  z-index: 1;
}

/* On scroll: fade between them */
header.scrolled .logo-light {
  opacity: 0;
}

header.scrolled .logo-dark {
  opacity: 1;
}

header.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header.scrolled .navbar-brand {
  height: 100px;
}

header.scrolled .navbar-brand img {
  height: 90px;
  top: 5px;
}

header.scrolled .menuList1 {
  display: none !important;
}

header .nav-link {
  position: relative;
  color: #fff;
}

header .nav-link:focus, header .nav-link:hover {
  color: #fff;
}

header.scrolled .nav-link {
  color: #000;
}

header.scrolled .nav-link:focus, header.scrolled .nav-link:hover {
  color: #000;
}

header .nav-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5px;
  right: calc(100% + 5px);
  bottom: -2px;
  background: var(--primary-color);
  height: 2px;
  border-radius: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 1001;
}

header .nav-item:hover .nav-link::before,
header .nav-link.active::before {
  right: -5px;
}

header .navbar-mobile-menu .nav-link.active::before {
  right: calc(100% + 5px);
}

header .navbar-mobile-menu-toggle {
  color: #fff;
}

header.scrolled .navbar-mobile-menu-toggle {
  color: var(--primary-color);
}

.navbar-mobile-menu {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgb(17 100 255 / 8%);
}

.text-black {
  color: #000;
}

#hero {
  position: relative;
  overflow: hidden;
}

#hero .swiper {
  height: calc(100vh - 80px);
}

#hero .swiper-slide {
  position: relative;
}

#hero .slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 4%) 12.77%, rgba(0, 0, 0, 0) 20.13%), linear-gradient(90deg, rgb(0 0 0 / 60%) 1.71%, rgba(52, 52, 52, 0) 100%);
  z-index: 1;
}

#hero .slide-content {
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  text-align: start;
  width: 90%;
}

#hero .slide-content h2,
#hero .slide-content h3 {
  margin: 0;
  font-weight: bold;
}

#hero .slide-content h2 {
  font-size: 4rem;
  color: #fff;
  font-weight: 900;
  /* color: transparent; */
  /* -webkit-text-stroke: 3px white; */
}

#hero .slide-content h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}
#heroAttached {
  margin-top: -120px;
  z-index: 999;
  position: relative;
}
#tracking {
  scroll-margin-top: 150px;
}
#heroAttached .card {
  border-radius: 0;
}
/* ============ Breadcrum ============= */
.breadcrum {
  position: relative;
}

.breadcrum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 4%,
      rgba(0, 0, 0, 0) 20.13%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 1.71%,
      rgba(52, 52, 52, 0) 100%);
}

.breadcrum img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.breadcrum .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============ Breadcrum ============= */

/* =========== FAQs =========== */
/* .accordion-button:not(.collapsed) {
            background-color: unset;
        }
        .accordion-button:focus {
            box-shadow: none;   
        } */
/* =========== FAQs =========== */
/* =========== Features  =========== */
.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-box img.icon {
  width: 40px;
  margin-right: 15px;
}

.feature-title {
  font-weight: 700;
  text-transform: uppercase;
}

.feature-title span {
  display: block;
  height: 3px;
  width: 30px;
  background-color: var(--primary-color);
  margin: 4px 0 10px;
}

.feature-text {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* =========== Features  =========== */
/* =========== Stats  =========== */
.progress {
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.progress-bar {
  background-color: var(--primary-color);
  /* background-color: #fff; */
  font-weight: bold;
  text-align: right;
  padding-right: 8px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin: 20px 0;
  line-height: 1.6;
}

.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* =========== Stats  =========== */
/* =========== Paralex  =========== */
.parallax-section {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* =========== Paralex  =========== */
/* =========== FAQ  =========== */
#faqs .accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

#faqs .accordion-button {
  padding: 20px 0;
  font-weight: 600;
  color: #333;
  background-color: transparent;
}

#faqs .accordion-button:not(.collapsed) {
  color: #333;
  background-color: transparent;
  box-shadow: none;
}

#faqs .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

#faqs .accordion-button {
  padding-left: 2rem !important;
  /* Make space for the icon */
  position: relative;
}

#faqs .accordion-button::before {
  content: "+";
  position: absolute;
  left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

#faqs .accordion-button::after {
  background-image: none !important;
  content: none;
}

#faqs .accordion-button:not(.collapsed)::before {
  content: "-";
}

#faqs .accordion-body {
  padding: 0 0 20px 32px;
}

/* =========== FAQ  =========== */
/* =========== Hero Animation  =========== */
.truckAnimation {
  position: absolute;
  z-index: 999;
  bottom: 0;
  width: 100%;
  display: none;
}

.loop-wrapper {
  margin: 0 auto;
  position: relative;
  display: block;
  /* width: 600px; */
  height: 250px;
  overflow: hidden;
  border-bottom: 3px solid #fff;
  color: #fff;
}

.mountain {
  position: absolute;
  right: -900px;
  bottom: -20px;
  width: 2px;
  height: 2px;
  box-shadow:
    0 0 0 50px #4DB6AC,
    60px 50px 0 70px #4DB6AC,
    90px 90px 0 50px #4DB6AC,
    250px 250px 0 50px #4DB6AC,
    290px 320px 0 50px #4DB6AC,
    320px 400px 0 50px #4DB6AC;
  transform: rotate(130deg);
  animation: mtn 20s linear infinite;
}

.hill {
  position: absolute;
  right: -900px;
  bottom: -50px;
  width: 400px;
  border-radius: 50%;
  height: 20px;
  box-shadow:
    0 0 0 50px #4DB6AC,
    -20px 0 0 20px #4DB6AC,
    -90px 0 0 50px #4DB6AC,
    250px 0 0 50px #4DB6AC,
    290px 0 0 50px #4DB6AC,
    620px 0 0 50px #4DB6AC;
  animation: hill 4s 2s linear infinite;
}

.tree,
.tree:nth-child(2),
.tree:nth-child(3) {
  position: absolute;
  height: 100px;
  width: 35px;
  bottom: 0;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/tree.svg) no-repeat;
}

.rock {
  margin-top: -17%;
  height: 2%;
  width: 2%;
  bottom: -2px;
  border-radius: 20px;
  position: absolute;
  background: #ddd;
}

.truck,
.wheels {
  transition: all ease;
  width: 85px;
  margin-right: -60px;
  bottom: 0px;
  right: 50%;
  position: absolute;
  background: #eee;
}

.truck {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/truck.svg) no-repeat;
  background-size: contain;
  height: 60px;
}

.truck:before {
  content: " ";
  position: absolute;
  width: 25px;
  box-shadow:
    -30px 28px 0 1.5px #fff,
    -35px 18px 0 1.5px #fff;
}

.wheels {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/wheels.svg) no-repeat;
  height: 15px;
  margin-bottom: 0;
}

.tree {
  animation: tree 3s 0.000s linear infinite;
}

.tree:nth-child(2) {
  animation: tree2 2s 0.150s linear infinite;
}

.tree:nth-child(3) {
  animation: tree3 8s 0.050s linear infinite;
}

.rock {
  animation: rock 4s -0.530s linear infinite;
}

.truck {
  animation: truck 3s 0.080s ease infinite;
}

.wheels {
  animation: truck 3s 0.001s ease infinite;
}

.truck:before {
  animation: wind 1.5s 0.000s ease infinite;
}

.features i {
    color: var(--primary-color);
    background: rgba(var(--bs-primary-rgb), 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

@keyframes tree {
  0% {
    transform: translate(1350px);
  }

  50% {}

  100% {
    transform: translate(-50px);
  }
}

@keyframes tree2 {
  0% {
    transform: translate(650px);
  }

  50% {}

  100% {
    transform: translate(-50px);
  }
}

@keyframes tree3 {
  0% {
    transform: translate(2750px);
  }

  50% {}

  100% {
    transform: translate(-50px);
  }
}

@keyframes rock {
  0% {
    right: -200px;
  }

  100% {
    right: 2000px;
  }
}

@keyframes truck {
  0% {}

  6% {
    transform: translateY(0px);
  }

  7% {
    transform: translateY(-6px);
  }

  9% {
    transform: translateY(0px);
  }

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

  11% {
    transform: translateY(0px);
  }

  100% {}
}

@keyframes wind {
  0% {}

  50% {
    transform: translateY(3px)
  }

  100% {}
}

@keyframes mtn {
  100% {
    transform: translateX(-2000px) rotate(130deg);
  }
}

@keyframes hill {
  100% {
    transform: translateX(-2000px);
  }
}
.testimonials {
  overflow-x: hidden;
}

.review {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  margin: 0 25px;
  overflow: visible;
  margin-bottom: 40px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0px 8px 20px 0px rgba(20, 20, 20, .15);
  min-height: 375px;
  position: relative;
  padding: 80px 30px 40px 30px;
}

.review .author-avatar {
  display: inline-block;
  /* float: left; */
}

.review .review-author img {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0 15px 0 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

.review-author.d-flex.align-items-center {
  position: fixed;
  top: 40px;
}

.review .review-author h5 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.review-author span {
  color: #858585;
  font-size: 0.95rem;
  font-weight: 300;
}

.review .quote-ico {
  position: relative;
  margin-bottom: -25px;
}

.review .quote-ico img {
  width: 65px;
  height: 65px;
  opacity: .15;
}

.review .rating {
  margin: 10px 0px;
}

.review .img-85 {
  width: 85px;
  height: 85px;
}

/* =========== Hero Animation  =========== */


@media (max-width: 768px) {
  .navbar-brand {
    height: 75px;
  }

  .navbar-brand img {
    height: 55px;
  }

  .swiper {
    height: 80vh;
  }

  #hero .slide-content {
    top: 35%;
    left: 15px;
  }

  #hero .slide-content h2 {
    font-size: 3rem;
  }

  #hero .slide-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;

  }

  #hero .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 12.77%,
        rgba(0, 0, 0, 0) 20.13%),
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.85) 1.71%,
        rgba(52, 52, 52, 0) 100%);
    z-index: 1;
  }
}



@media (max-width: 576px) {
  .breadcrum img {
    height: 350px;
  }

  .swiper {
    height: 70vh;
  }

  #hero .slide-content {
    top: 38%;
  }

  #hero .slide-content h2 {
    font-size: 2rem;
  }

  #hero .slide-content h3 {
    font-size: 1rem;
  }
}