.cities-main-image-container {
  position: relative;
  text-align: center;
  display: flex;
  width: 100%;
  height: 95vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cities-main-image-container::before {
  z-index: 1;
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: radial-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.cities-main-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  clip-path: polygon(0 86%, 100% 70%, 100% 100%, 0% 100%);
}

.cities-header {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  color: white;
  margin: 0 12rem 6rem 12rem;
  z-index: 2;
}

.cities-header h1 {
  font-weight: 800;
  font-size: 3.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  user-select: none;
  text-align: end;
}

.cities-header p {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  user-select: none;
}

.heading-text-button-container {
  background-color: rgb(250 250 250);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 23rem;
}

.heading-text-button-container h2,
h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(252, 180, 47);
  font-size: 2.25rem;
  line-height: 1.4;
  color: rgb(252, 180, 47);
}

.heading-text-button-container p {
  line-height: 1.6rem;
  font-size: 1.1rem;
}

.text-image-rows-city-container {
  background-color: black;
}

.text-image-rows-city-container p {
  color: white;
}

.city-slider-container {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.city-slider-wrapper {
  width: 66%;
  overflow: hidden;
}

.city-slider {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;
  padding: 3rem;
}

.city-slide {
  min-width: 360px;
  margin-right: 50px;
  height: max-content;
}

.sub-heading {
  display: flex;
  justify-content: center;
}

.city-slider-container .sub-heading h3 {
  color: rgb(252, 180, 47);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.city-vertical-text {
  display: block;
  position: absolute;
  top: 62rem;
  right: -10rem;
  transform: rotate(180deg);
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 11.25rem;
  letter-spacing: 25px;
  text-transform: uppercase;
  opacity: 0.04;
  pointer-events: none;
  color: white;
}

.city-heading {
  height: 4rem;
  width: 90%;
  display: flex;
  color: rgb(252, 180, 47);
  justify-content: center;
  align-items: center;
}

.city-heading h2 {
  font-weight: 600;
  font-size: 2.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (max-width: 500px) {
  .city-vertical-text {
    display: none;
  }

  .city-heading {
    height: 2rem;
  }

  .city-heading h2 {
    font-weight: 500;
    font-size: 1.6rem;
    margin: 0;
  }

  .cities-header {
    margin: 0 2rem 2rem 2rem;
  }

  .city-slider {
    padding: 1rem;
  }

  .city-slider-wrapper {
    width: 100%;
  }

  .city-slider-container {
    height: auto;
  }
}

@media (501px <= width <= 1000px) {
  .city-slider-wrapper {
    width: 435px;
  }
}

@media (1001px <= width <= 1300px) {
  .city-slider-wrapper {
    width: 850px;
  }
}
