/* hero-section */
/* ============ */
.hero-section {
  width: 100%;
  height: 867.11px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-image: url(../images/parking-solutions/bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 211px;
  position: relative;
}
.illustrator {
  position: absolute;
  bottom: 0;
}
.illustrator img {
  width: 100%;
}
.hero-section .content {
  z-index: 1;
}
.hero-section h1 {
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 15px;
  font-family: var(--font-01);
  font-weight: 700;
  text-align: center;
}
.hero-section h1 span {
  color: rgba(64, 147, 206, 1);
}
.hero-section p {
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  color: rgba(55, 65, 81, 1);
}
.hero-section .breadcrumps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 23px;
}
.hero-section .breadcrumps a,
.hero-section .breadcrumps p {
  color: black;
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 400;
  line-height: 28px;
}
.hero-section .breadcrumps a:hover {
  color: rgba(64, 147, 206, 1);
}

/* parking cards section */
/* ===================== */
.parking-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(231, 231, 231, 1);
  padding: 100px 40px 100px;
}
.parking-cards .center-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 98.55px 57.66px;
}
.parking-cards .center-content .card {
  width: 404px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.parking-cards .center-content .card img {
  margin-bottom: 0.17px;
  display: block;
  min-height: 130px;
  min-width: 130px;
  max-height: 2000px;
  width: auto;
  object-fit: contain;
}
.parking-cards .center-content .card h4 {
  font-family: var(--font-01);
  font-weight: 600;
  font-size: 18px;
  line-height: calc(18px * 1.5);
  color: rgba(55, 65, 81, 1);
}
.parking-cards .center-content .card p {
  font-family: var(--font-01);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(55, 65, 81, 1);
}

.parking-cards .center-content .card p br {
  display: none;
}

/* Media Query */
/* =========== */

@media screen and (max-width: 1477px) {
  .hero-section {
    height: 750.11px;
  }
  .parking-cards .center-content .card {
    width: 350px;
  }
  .parking-cards .center-content .card h4 {
    font-size: 22px;
    line-height: calc(22px * 1.5);
  }
  .parking-cards .center-content .card p {
    font-size: 16px;
    line-height: 26px;
  }
  .hero-section p {
    font-size: 16px;
    line-height: 26px;
  }
  .hero-section h1 {
    font-size: 46px;
  }
  .hero-section .breadcrumps a,
  .hero-section .breadcrumps p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-width: 1171px) {
  .hero-section {
    height: 665px;
  }
}

@media screen and (max-width: 600px) {
  .hero-section {
    height: 420px;
    padding: 118px 20px 0;
  }
  .hero-section h1 {
    font-size: 24px;
    line-height: 24px;
  }
  .hero-section p {
    font-size: 14px;
    line-height: 24px;
  }
  .hero-section .breadcrumps {
    margin-top: 18px;
  }
  .hero-section .breadcrumps a,
  .hero-section .breadcrumps p {
    font-size: 14px;
    line-height: 24px;
  }
  .parking-cards {
    padding: 40px 0 40px;
  }
  .parking-cards .center-content {
    width: 90%;
    gap: 40px;
  }
  .parking-cards .center-content .card {
    width: 100%;
    /* justify-content: center;
    align-items: center; */
  }
  .parking-cards .center-content .card p br,
  .hero-section p br {
    display: none;
  }
  .parking-cards .center-content .card:nth-child(1) img {
    width: 65px;
  }
  .parking-cards .center-content .card:nth-child(2) img,
  .parking-cards .center-content .card:nth-child(3) img,
  .parking-cards .center-content .card:nth-child(5) img {
    width: 95px;
  }
  .parking-cards .center-content .card:nth-child(4) img {
    width: 100px;
  }
  .parking-cards .center-content .card:nth-child(6) img {
    width: 130px;
  }
  .parking-cards .center-content .card h4 {
    font-size: 16px;
    line-height: calc(16px * 1.5);
  }
  .parking-cards .center-content .card p {
    font-size: 14px;
    line-height: 24px;
    /* text-align: center; */
  }
}