.states-section {
  margin: 120px auto;
}

.state-head-text {
  color: #7A7C83;
  line-height: 1.5;
}

.state-head-active {
  text-align: center;
  padding-top: 40px;
}
.state-head-active .h3 {
  font-size: 114px;
}
.state-head-active .state-head-text {
  font-size: 24px;
  padding-top: 16px;
}

.states {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  margin-top: 64px;
  aspect-ratio: 1240/630;
}

.state {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 100%;
  transition: ease 0.9s;
  aspect-ratio: 338/426;
}
.state img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.state-bg {
  z-index: 1;
}

.state-title {
  position: absolute;
  left: 50%;
  bottom: 100px;
  opacity: 0;
  transform: translateX(-50%) scale(0.7);
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1.2;
  font-family: Semi;
  z-index: 2;
  background: linear-gradient(180deg, #fff 0%, #f1f1f1 47.5%, rgba(255, 255, 255, 0.39) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: ease 0.9s;
}

.state-collage {
  z-index: 3;
}

.btn-state {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  z-index: 4;
  bottom: -44px;
  opacity: 0;
  transition: ease 0.4s;
}

.state-active {
  flex: 1 0.8 100%;
  aspect-ratio: 500/614;
}
.state-active .state-title {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.state-active .btn-state {
  opacity: 1;
  bottom: 28px;
  transform: translateX(-50%) scale(1);
}

.state-active.state-nebraska .state-title {
  bottom: 280px;
  font-size: 82px;
}

.state-active.state-arizona .state-title {
  bottom: 300px;
  font-size: 82px;
}

.state-active.state-iowa .state-title {
  bottom: 256px;
  font-size: 96px;
}

@media (max-width: 1300px) {
  .state-active.state-nebraska .state-title {
    bottom: 21vw;
    font-size: 6vw;
  }
  .state-active.state-arizona .state-title {
    bottom: 23vw;
    font-size: 6vw;
  }
  .state-active.state-iowa .state-title {
    bottom: 19vw;
    font-size: 7vw;
  }
  .state-head-active {
    padding-top: 32px;
  }
  .state-head-active .h3 {
    font-size: 96px;
  }
  .state-head-active .state-head-text {
    font-size: 20px;
    padding-top: 12px;
  }
}
@media (max-width: 1000px) {
  .states-section {
    margin: 48px 0;
  }
  .state-head-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .states {
    flex-direction: column;
    aspect-ratio: unset;
    gap: 8px;
    margin-top: 24px;
  }
  .state {
    aspect-ratio: 328/180;
    width: 100%;
  }
  .state-title {
    opacity: 1;
  }
  .state-nebraska .state-title {
    bottom: 16vw;
    font-size: 18vw;
  }
  .state-arizona .state-title {
    bottom: 19vw;
    font-size: 18vw;
  }
  .state-iowa .state-title {
    bottom: 14vw;
    font-size: 20vw;
  }
  .state-head-active {
    padding-top: 0;
  }
  .state-head-active .h3 {
    font-size: 32px;
  }
  .state-head-active .state-head-text {
    font-size: 16px;
    padding-top: 8px;
  }
  .btn-state {
    bottom: 8px;
    opacity: 1;
    width: fit-content;
    padding: 0;
    transform: translateX(-50%) scale(1);
    background: transparent;
    border: none;
  }
  .btn-state span {
    display: none;
  }
  .btn-state .brand-btn-icon {
    display: flex;
    width: 32px;
    height: 32px;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.3);
  }
  .btn-state .brand-btn-icon svg {
    fill: white;
  }
}