* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #173e7a;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('bg-cidade.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  padding-top: 99px;
  padding-left: 136px;
}

.logo {
  display: block;
  width: 250px;
  height: auto;
}

h1 {
  margin: 45px 0 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.city-area {
  width: 450px;
  margin-top: 27px;
}

.city-area label {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
.city-area2 label {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  margin-top:20px;
}

.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.select-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 43px 0 18px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #252525;
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.select-button i {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #333;
}

.select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  z-index: 20;
  width: 100%;
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.select-wrap.open .select-dropdown {
  display: block;
}

.search-box {
  padding: 5px 5px 4px;
  background: #f5f5f5;
}

.search-box input {
  display: block;
  width: 100%;
  height: 32px;
  padding: 3px 6px;
  border: 1px solid #9d9d9d;
  outline: none;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
}

.option {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f0f0f0;
  color: #101010;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.option:hover,
.option.active {
  background: #1d3f7d;
  color: #fff;
}

.option[hidden] {
  display: none;
}

.mobile-overlay {
  display: none;
}

@media (max-width: 1024px) {
  .content {
    padding-left: 70px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    background-position: 69% center;
  }

  .mobile-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 87, 190, 0.76);
  }

  .content {
    max-width: none;
    padding: 17px 28px 0 12px;
  }

  .logo {
    width: min(68vw, 210px);
    display: block;
    margin: 0 auto;
  }

  h1 {
    margin-top: 54px;
    font-size: clamp(24px, 5.8vw, 29px);
    line-height: 1.15;
    letter-spacing: 1.4px;
    white-space: nowrap;
  }

  .city-area {
    width: 100%;
    margin-top: 28px;
	
  }

  .city-area label {
    margin-bottom: 19px;
    font-size: 20px;
    line-height: 1;
  }

  .select-button {
    height: 63px;
    border-radius: 8px;
    padding-left: 16px;
    font-size: 21px;
  }

  .select-button i {
    right: 16px;
  }
}

@media (max-width: 380px) {
  .content {
    padding-right: 14px;
  }

  h1 {
    font-size: 23px;
    letter-spacing: 1px;
  }

  .select-button {
    font-size: 19px;
  }
}
