/* ============================ */
/*    Home Drug Checks Hero Section */
/* ============================ */

.home-hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7.5rem 2rem 2rem 2rem;
  background: linear-gradient(180deg, #14131b 0%, #004aad 100%);
}
.home-hero-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  max-width: 1225px;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  max-width: 500px;
}
.home-hero-content h1 {
  font-size: clamp(2.5rem, 17vw, 3.5rem);
  margin-bottom: 1rem;
  color: white;
}
.home-hero-content h1 span {
  color: #4c98ff;
}
.home-hero-content p {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.home-hero-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  background-color: #4c98ff;
  transition: background-color 0.3s ease;
}
.home-hero-content a:hover {
  background-color: #1676f6;
}

.home-hero-image {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: auto;
}
.home-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

@media (max-width: 750px) {
  .home-hero-container {
    padding: 6.5rem 1rem 2rem 1rem;
  }
  .home-hero-wrap {
    flex-direction: column;
  }
  .home-hero-content {
    max-width: 100%;
  }
  .home-hero-image {
    height: 400px;
  }
}

/* ============================ */
/*    Home Drug Checks Stats Section */
/* ============================ */

.home-stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  background-color: #14131b;
}
.home-stats-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  width: 100%;
  max-width: 1225px;
}

.home-stats-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
  width: 100%;
}
.home-stats-header h2 {
  font-size: 2.5rem;
  color: white;
}
.home-stats-header h2 span {
  color: #4c98ff;
}
.home-stats-header p {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.home-stats-header .text-divider {
  width: 100px;
  height: 5px;
  border-radius: 0px;
  background: #004aad;
}

.home-stats-box-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  width: 100%;
  color: white;
}
.home-stats-box-large {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0rem 2rem;
  gap: 2rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #004aad 0%, transparent 100%);
}
.home-stats-box-large h1 {
  font-size: 8rem;
  text-shadow: rgba(255, 255, 255, 0.5) 2.5px 2.5px;
}
.home-stats-box-large h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  font-size: 2.25rem;
  color: #4c98ff;
}
.home-stats-box-small-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}
.home-stats-box-small {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
  gap: 1rem;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #004bad75;
  background: linear-gradient(90deg, #242232 0%, #14131b 100%);
}
.home-stats-box-small:nth-child(1) {
  transition-delay: 0.1s;
}
.home-stats-box-small:nth-child(2) {
  transition-delay: 0.2s;
}
.stat-spacer {
  width: 4px;
  height: 100%;
  min-height: 50px;
  background: #ffffff;
}

.home-stats-source {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.25rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
}
.home-stats-source a {
  padding: 0.1rem 0.5rem;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: white;
}
.home-stats-source a:hover {
  background-color: white;
  color: #4c98ff;
}

@media (max-width: 750px) {
  .home-stats-container {
    padding: 3rem 1rem 3rem 1rem;
  }
  .home-stats-box-large {
    flex-direction: column;
    align-items: start;
    padding: 0rem 1rem 1rem 1rem;
    gap: 0rem;
  }
  .home-stats-box-large h1 {
    font-size: 6rem;
  }
  .home-stats-box-small-wrap {
    flex-direction: column;
  }
  .home-stats-box-small {
    width: 100%;
  }
  .stat-spacer {
    min-height: 75px;
  }
}

/* ============================ */
/*    Home Drug Checks Model Section */
/* ============================ */

.home-model-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(180deg, #14131b 0%, #004aad50 100%);
}
.home-model-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 2rem;
  width: 100%;
  max-width: 1225px;
  border-radius: 20px;
  background: linear-gradient(180deg, #14131b50 80%, transparent 100%);
}

.home-model-image {
  display: flex;
  width: 100%;
  height: auto;
}
.home-model-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.home-model-list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0.25rem;
  width: 100%;
  max-width: 500px;
}
.model-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: start;
  margin-top: 1.5rem;
  gap: 0.5rem;
}
.model-header img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}
.home-model-list h2 {
  font-size: 2rem;
  color: white;
}
.home-model-list p {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
#m-1,
#m-2 {
  transition-delay: 0.1s;
}
#m-3,
#m-4 {
  transition-delay: 0.2s;
}
#m-5,
#m-6 {
  transition-delay: 0.3s;
}

@media (max-width: 800px) {
  .home-model-container {
    padding: 2rem 0rem 3rem 0rem;
  }
  .home-model-wrap {
    padding: 1rem;
    flex-direction: column;
  }
  .home-model-image {
    max-width: 500px;
  }
  .home-model-list {
    max-width: 100%;
  }
  .home-model-list h2 {
    font-size: 1.75rem;
  }
}

/* ============================ */
/*    Home Drug Checks Process Section */
/* ============================ */

.home-process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0rem 2rem 2rem;
  background: linear-gradient(360deg, #14131b 0%, #004aad50 100%);
}
.home-process-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1225px;
}

.home-process-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  gap: 0.5rem;
  width: 100%;
}
.home-process-header h2 {
  font-size: 2.5rem;
  color: white;
}
.home-process-header h2 span {
  color: #4c98ff;
}
.home-process-header p {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.home-process-header .text-divider {
  width: 100px;
  height: 5px;
  border-radius: 0px;
  background: #004aad;
}

.home-process-box-wrap {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  max-width: 100%;
  padding: 1rem 1rem 1rem 0rem;
  gap: 3rem;
}
.home-process-box-wrap::-webkit-scrollbar {
  display: none;
}

.home-process-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 0.5rem;
  height: 100%;
  min-width: 300px;
}
.home-process-box h1 {
  font-size: 4rem;
  color: #ffffff;
}
.home-process-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 1rem 0.5rem;
  gap: 0.5rem;
  border-radius: 10px;
}
#process-1 {
  background: linear-gradient(90deg, #14131b 0%, #242232 100%);
}
#process-2 {
  background: linear-gradient(90deg, #004aad 0%, transparent 100%);
}
#process-3 {
  background: linear-gradient(90deg, #1676f6 0%, #004aad 100%);
}
.home-process-content h2 {
  font-size: 2rem;
  color: white;
}
.home-process-content p {
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.scroll-controls {
  max-width: 100%;
}

@media (max-width: 750px) {
  .home-process-container {
    padding: 2rem 1rem 3rem 1rem;
  }
}
