.tabs {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.tabs li a {
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}
.tabs li a {
  text-decoration: none;
  color: #fff;
}

.tabs li h3 {
  margin: 0;
}

.tab-content {
  display: none;
  background-color: #fff;
  padding: 53px 98px;
}

.tab-content.active {
  display: block;
}

.tabs .active a {
  color: #eb5d99;
}

.lot_infos {
  color: #fff;
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.dropdown-title {
  cursor: pointer;
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  border-bottom: 1px solid #707070;
  margin: 0;
  padding-bottom: 5px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  padding: 10px;
  transition: all 0.4s ease;
}

.chevron {
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #eb5d99;
}

.dropdown.active .chevron {
  transform: rotate(180deg);
}

.dropdown.active .dropdown-content {
  display: block;
}

.status {
  position: absolute;
  top: 0;
  right: 0;
  color: #eb5d99;
  text-transform: uppercase;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .tab-content {
    padding: 40px 30px 20px 30px;
  }

  .status {
    top: -19px;
  }

  .lot_infos {
    font-size: 16px;
  }

  .tabs {
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
}
