:root {
  --primary-color: #222;
  --heading-color: #212b36;
  --subtle-body: #8c8c8c;
  --primary-brand-color: #fec428;
  --primary-brand-color-dark: #a28200; /* #For hover state */
  --dark-brand-color: #371c32;
  --tblr-link-color: #066fd1;
}

body {
  font-family: "Brockmann", sans-serif;
}

.fp-gap-6 {
  gap: 8rem;
}

.fp-gap-lg-6 {
  gap: 8rem !important;
}

.fp-rounded {
  border-radius: 1.5rem;
}

.fp-rounded-top {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.fp-rounded-bottom {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.ud-header {
  padding-top: 30px;
}

.btn-primary {
  background-color: var(--primary-brand-color);
  border-color: var(--primary-brand-color);
  border-width: 3px;
  color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: var(--primary-brand-color);
  color: var(--primary-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: #381c32;
  border-color: #381c32;
  border-width: 3px;
  color: #fdc428;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #381c32;
  border-color: #d3a312;
  color: #fdc428;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
}

.fp-btn-rounded {
  border-radius: 3rem;
}

/* Navigation */
.navbar-toggler .toggler-icon {
  background-color: var(--primary-color);
}

/* Hero Section */

.fp-hero-section {
  position: relative;
  margin: 15px;
  overflow: hidden;
  margin-bottom: 0;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  background-color: var(--primary-brand-color);
}

.fp-hero-section:before {
  content: "";
  position: absolute;
  bottom: -19%;
  left: 15%;
  width: 70%;
  height: 100%;
  background-image: url("../illustrations/circles.594a20a0c45e.svg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .fp-hero-section:before {
    content: "";
    position: absolute;
    bottom: -19%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../illustrations/circles.594a20a0c45e.svg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}

.fp-hero-section:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 100%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/hero/hero-curved-mask.1c009094ada9.svg");
}

@media (max-width: 1200px) {
  .fp-hero-section:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 34%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-image: url("../images/hero/hero-curved-mask.1c009094ada9.svg");
  }
}

/* Hero content */
.fp-hero-content {
  /* background-image: url("../illustrations/circles.594a20a0c45e.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */

  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
}

/* .fp-hero-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../illustrations/circles.594a20a0c45e.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

.fp-platform-image {
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1200px) {
  .fp-platform-image {
    max-width: 75vw;
  }
}

.fp-hero-image {
  width: 100%;
  height: 100%;
  min-height: 681px;
  position: relative;
  z-index: 1;
}

.fp-hero-image:before {
  content: "";
  position: absolute;
  top: 40px;
  left: -10%;
  width: 100%;
  height: 75%;
  background-image: url("../illustrations/mobile1.d1b4dec9d5d7.png");
  background-size: contain;
  background-position: center 50%;
  background-repeat: no-repeat;
}

@media (min-width: 400px) {
  .fp-hero-image:before {
    height: 90%;
  }
}

@media (min-width: 1200px) {
  .fp-hero-image:before {
    background-image: url("../images/hero/platform-collage.df9991b604df.png");
    background-position: contain;
  }
}

.fp-hero-title {
  font-weight: 500;
  text-align: center;
  font-size: 2.5rem;
}

@media (min-width: 1200px) {
  .fp-hero-title {
    font-size: 3.75rem;
  }
}

.fp-hero-cta {
  border-radius: 3rem;
}

.fp-hero-high-z-index {
  z-index: 2;
  position: relative;
}

.fp-feature-pill-text {
  display: none;
}

@media (min-width: 1200px) {
  .fp-feature-pill-text {
    display: block;
  }

  .fp-feature-pill {
    background-color: #fff;
    padding: 10px;
    border-radius: 12rem;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding-right: 40px;
    color: #381c32;
  }
}

@media (max-width: 1200px) {
  .fp-hero-feature-icon {
    width: 81px;
    background: #fdc428;
    border: 3px solid #fff;
    border-radius: 81px;
    height: 81px;
    object-fit: contain;
  }
}

@media (min-width: 1200px) {
  .fp-hero-feature-icon {
    width: 71px;
    background: #fdc428;
    border-radius: 71px;
    height: 71px;
    object-fit: contain;
    padding: 10px;
  }
}

.fp-feature-pill-list {
  position: relative;
}

@media (max-width: 1199px) {
  #fp-feature-pill-1 {
    position: absolute;
    top: 0;
    left: 50px;
  }

  #fp-feature-pill-2 {
    position: absolute;
    top: 30px;
    /* right: 50px; */

    left: 50%;
    transform: translateX(100%);
  }

  #fp-feature-pill-3 {
    position: absolute;
    top: 398px;
    left: 54%;
    transform: translateX(99%);
  }

  #fp-feature-pill-4 {
    position: absolute;
    top: 310px;
    left: 0;
  }
}

@media (min-width: 1200px) {
  #fp-feature-pill-1 {
    position: absolute;
    top: 0;
    left: 50px;
  }

  #fp-feature-pill-2 {
    position: absolute;
    top: 30px;
    /* right: 50px; */

    left: 50%;
    transform: translateX(100%);
  }

  #fp-feature-pill-3 {
    position: absolute;
    top: 210px;
    right: 0;
  }

  #fp-feature-pill-4 {
    position: absolute;
    top: 230px;
    left: 0;
  }
}

/* ===== Sections ===== */

.fp-primary-bg {
  background-color: var(--primary-brand-color);
}
.fp-light-bg {
  background-color: #fbfcfe;
}

.fp-medium-bg {
  background-color: #f1f4f9;
}

.fp-dark-bg {
  background-color: #371c32;
}

.fp-min-height-section {
  min-height: 70vh;
}

/* ===== Features Section ===== */

.fp-feature-section {
  padding-top: 0;
}

.fp-single-feature {
  padding: 2.5rem;
  border-radius: 2rem;
  height: calc(100% - var(--bs-gutter-x));
  background-color: #fff;
  margin-bottom: var(--bs-gutter-x);
  box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 3%);
}

.fp-feature-icon {
  margin-bottom: 1rem;
}

.fp-feature-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  width: 120px;
  height: 120px;
}

.fp-feature-title {
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.fp-feature-description {
  color: var(--subtle-body);
}

/* ===== Common titles ===== */

.max-width-medium {
  max-width: 620px;
}

.max-width-small {
  max-width: 420px;
}

.fp-section-title span {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.fp-section-title h2 {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .fp-section-title {
    font-size: 2.5rem;
  }
}

.fp-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .fp-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.fp-section-description {
  color: var(--subtle-body);
}

@media (max-width: 1199px) {
  #about-image {
    margin-top: 3rem;
    max-width: 140%;
  }
}

/* ===== Pricing Section ===== */

.fp-pricing-content {
  border-radius: 2rem;
  background: #fff;
}

.fp-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

@media (min-width: 1200px) {
  .fp-pricing-list {
    grid-template-columns: 1fr 1fr;
  }
}

.fp-pricing-list li {
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.fp-pricing-list li:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../illustrations/tick.f3486dc318f3.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

/* Testimonials Section */

.fp-testimonials {
  padding: 10rem 0;
}

@media (max-width: 1199px) {
  .fp-testimonials-list-container {
    overflow: hidden;
    margin: 0px -12%;
    padding: 1rem 0;
    position: relative;
    min-height: 43vh;
  }
}

@media (max-height: 1000px) {
  .fp-testimonials-list-container {
    min-height: 85vh;
  }
}

.fp-testimonials-list {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

@media (max-width: 1199px) {
  .fp-testimonials-list {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
  }
}

.fp-single-testimonial:nth-child(1) {
  transform: rotate(-6deg) translateX(10%);
}

.fp-single-testimonial:nth-child(2) {
  transform: rotate(6deg) translateX(-10px);
}

.fp-single-testimonial:nth-child(3) {
  transform: rotate(6deg) translateX(-7%) translateY(15%);
}

.fp-single-testimonial {
  border-radius: 0.5rem;
  background: #fff;
  padding: 2rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-brand-color);
  flex: 1;
  min-width: 290px;
}

.fp-single-testimonial:before {
  content: "“";
  font-size: 5rem;
  font-family: sans-serif;
  line-height: 1;
  display: block;
  margin-bottom: -1.8rem;
}

.fp-testimonial-content,
.fp-testimonial-content p {
  color: var(--primary-color);
  font-size: 1.125rem;
}

.fp-testimonial-ratings {
  font-size: 1.8rem;
  color: var(--primary-brand-color);
}

.fp-single-testimonial.highlight {
  background: var(--primary-brand-color);
  z-index: 1;
  transform: rotate(0deg) translateX(0px);
}

.fp-single-testimonial.highlight .fp-testimonial-ratings {
  color: #fff;
}

.fp-testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.fp-testimonial-company {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--primary-color);
}

/* Logistics Section */

.logistics-image-container {
  position: relative;
  padding-left: 13px;
}

.fp-marker {
  position: absolute;
  font-size: 10px;
  animation: floatUpDown 2s ease-in-out infinite;
  padding: 1em;
  border-radius: 0.5rem;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.fp-marker--fitters {
  left: -2.5%;
  top: 33.5%;
}

.fp-marker--company {
  left: 63.5%;
  top: 42%;
  animation-delay: 0.4s;
}

.fp-marker--customer {
  left: 48.5%;
  top: 79%;
  animation-delay: 0.9s;
}

@media (min-width: 1200px) {
  .fp-marker--fitters {
    left: 0.5%;
    top: 39.5%;
  }

  .fp-marker--company {
    left: 68.5%;
    top: 45%;
  }

  .fp-marker--customer {
    left: 54.8%;
    top: 86%;
  }
}

.fp-marker::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -0.5em;
  bottom: -1em;
  left: 50%;
  box-sizing: border-box;
  border: 0.5em solid black;
  border-color: transparent transparent #fff #fff;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.2);
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Let's talk/ contact section */

.fp-contact-image {
  width: 95%;
  max-width: 300px;
  transform: scale(1.1);
  z-index: 4;
  position: relative;
}

@media (min-width: 1200px) {
  .fp-contact-image {
    max-width: 370px;
  }
}

/* Legal content (privacy and terms) */

.fp-legal-content ul {
  list-style-type: disc;
  padding-left: 1rem;
  margin: 1rem 0;
}
.fp-legal-content ul li {
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
}

.fp-legal-content,
.fp-legal-content p {
  font-size: 1.1rem;
  line-height: 1.4;
}

.fp-legal-content p {
  margin-bottom: 1rem;
}

.fp-legal-content strong {
  font-weight: 700;
}

/* Footer */

.fp-footer {
  color: var(--primary-color);
}

.fp-footer p,
.fp-footer a {
  color: var(--primary-color);
}

.fp-footer a:hover {
  text-decoration: underline;
}

.fp-footer-logo {
  font-size: 17vw;
  text-align: left;
  font-weight: 600;
  overflow: hidden;
  vertical-align: text-top;
  max-height: 17vw;
  opacity: 0.03;
}

.fp-single-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fp-contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fp-single-info .fp-icon {
  font-size: 1.5rem;
}

.fp-widget-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fp-widget-links li {
  font-size: 0.9rem;
}

.fp-footer small {
  font-size: 0.8rem;
  opacity: 0.8;
}
