.container-main-routes {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.container-more-routes {
  display: grid;
  grid-template-rows: 0fr;
  /* grid-template-columns: repeat(4, 1fr); */
  transition: all 0.5s ease;
}

.content-more-routes {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.container-more-routes.open-routes {
  grid-template-rows: 1fr;
  margin-top: 8px;
}

.route {
  text-decoration: none;
  font-family: "Archivo" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  letter-spacing: 0.2px !important;
}

.btn-prefooter-routes-desk {
  text-decoration: underline;
  padding: 0;
  background-color: transparent;
  margin-top: 32px;
  transition: all 0.3s ease;
  color: white !important;
}

button:hover {
  color: var(--primary);
}

/* MOBILE */

.prefooter-routes-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-500);
  cursor: pointer;
}

.prefooter-routes-heading .prefooter-routes-title {


  color: var(--color-gray-white, #FFF);

  /* Desktop/Body/Body */
  font-family: Archivo;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0 !important;

}


.btn-prefooter-routes-mob {
  text-decoration: underline;
  padding: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
}

.prefooter-routes-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.5s ease;
}

.prefooter-routes-content.open-routes {
  grid-template-rows: 1fr;
}

.prefooter-inner-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 624px;
  transition: all 0.3s ease;
}

.prefooter-routes-content.open-routes .prefooter-inner-container {
  padding-top: 24px;
  overflow-y: auto;
}

.prefooter-inner-container::-webkit-scrollbar {
  width: 4px;
  height: 45px;
  cursor: pointer;
}

.prefooter-inner-container::-webkit-scrollbar-track {
  background-color: transparent;
}

.prefooter-inner-container::-webkit-scrollbar-thumb {
  background-color: #dc2c46;
  border-radius: 4px;
  cursor: pointer;
}