*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.25;
}

.container {
  padding: 1rem;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: "Roboto", sans-serif;
  max-width: 600px;
  overflow: hidden;
}

body {
  background-color: #f2fbfd;
}

p {
  margin-bottom: 0.75rem;
  font-size: 20px;
}

.small {
  font-size: 20px;
}

h1 {
  font-weight: 700;
  position: relative;
  line-height: 1;
  font-size: 38px;
}

.subline {
  position: relative;
  font-weight: inherit;
}

.line {
  height: 1px;
  width: 100%;
  background-color: #ddd;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.subline::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: yellow;
  z-index: -1;
}

strong {
  font-weight: 700;
}

@keyframes showup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#state_name {
  font-weight: inherit;
}

.question__container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.question__subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.question__subtitle a {
  color: black;
  font-style: italic;
  font-weight: inherit;
}
.question__title {
  font-size: 24px;
  font-weight: 700;
}
.question__element {
  text-align: center;
  display: none;
  animation: showup 0.5s ease-in forwards;
}
.question #question_1 {
  display: block;
}
.question__element#question_1 {
  padding: 1rem 1.5rem;
  background-color: #e6fbfb;
  border: 1px solid rgba(234, 234, 234, 0.7215686275);
  border-radius: 6px;
}
.question__element#question_1 .question__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.question__element#question_1 .question__option {
  border-radius: 100px;
}
.question__element#question_2, .question__element#question_3 {
  max-width: 380px;
  margin: 0 auto;
}
.question__element#question_2 .question__options, .question__element#question_3 .question__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.question__element#question_2 .question__option, .question__element#question_3 .question__option {
  border-radius: 100px;
}
.question__counter {
  font-size: 13px;
  text-align: left;
  color: #aaa;
}
.question__option {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
.question__option.red {
  background-color: #e82e2e;
}
.question__option.green {
  background-color: #25b846;
}
.question__link {
  display: block;
  width: 100%;
  font-size: 20px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  color: white;
  text-decoration: none;
  background-color: #3f4378;
  border-radius: 500px;
  cursor: pointer;
  margin-bottom: 0.9rem;
  border: none;
}

.question__element, .final {
  display: none;
}

.final {
  background-color: white;
  border: 1px solid dashed;
  padding: 1rem;
  animation: showup 0.5s ease-in forwards;
}
.final .italic {
  font-style: italic;
}
.final h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.final .red {
  color: red;
  font-weight: inherit;
}
.final .yellowhighlight {
  background-color: yellow;
  font-weight: inherit;
  font-style: italic;
}

.cta {
  color: white;
  text-decoration: none;
  background-color: #25b846;
  padding: 0.8rem 2rem;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  border-radius: 5px;
  margin-bottom: 1rem;
}

@keyframes leftan {
  0% {
    left: -50%;
  }
  100% {
    left: 0%;
  }
}
@keyframes rightan {
  0% {
    left: 0%;
    opacity: 1;
  }
  100% {
    left: 50%;
    opacity: 0;
  }
}
.review__element {
  background-color: #b2edff;
  border-radius: 18px;
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  margin: 0 auto;
  position: absolute;
  left: -50%;
  opacity: 0;
}
.review__element p:last-of-type {
  margin-bottom: 0;
}
.review__element.active {
  animation: leftan 1.5s forwards 0.3s;
  opacity: 1 !important;
}
.review__element.notactive {
  animation: rightan 1s forwards;
}
.review__author {
  font-size: 13px;
  color: #444;
}
.review__container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin-top: 3rem;
}

.state_name {
  font-weight: 700;
}

footer {
  font-size: 12px;
}
footer p, footer a, footer li {
  font-size: 12px;
  color: #555;
}
footer p {
  margin-bottom: 0.5rem;
}
footer p a {
  text-decoration: none;
  font-weight: 700;
  color: #4a4a4a;
}
footer ul {
  display: flex;
  list-style: none;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer ul li {
  padding: 0 13px;
  border-right: 1px solid #bababa;
}
footer ul li:last-of-type {
  border-right: none;
}
footer ul a {
  color: #4a4a4a;
  text-decoration: none;
}
footer img {
  max-width: 100%;
}
footer .footer-icons {
  max-width: 230px;
  margin: 0 auto;
  display: block;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

nav p {
  margin-bottom: 0;
  font-size: 14px;
}
nav a {
  color: black;
  text-decoration: none;
}
nav .gcircle {
  width: 10px;
  height: 10px;
  background-color: #63c95e;
  display: inline-block;
  border-radius: 80px;
}
nav .stitle {
  font-weight: 300;
  margin-top: 0.2rem;
}
nav .number {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  background: #3f4378;
  color: white;
  padding: 6px 13px;
  border-radius: 5px;
  text-align: center;
  white-space: pre;
  display: grid;
  grid-template-columns: 14px auto 14px;
}
nav .container {
  display: flex;
  justify-content: space-between;
}
nav .available, nav .gtitle, nav .gnumber, nav .gavailable {
  display: none;
}
nav .phone {
  height: 14px;
  width: 14px;
}

@media (min-width: 510px) {
  nav .stitle, nav .number {
    display: none;
  }
  nav .gnumber, nav .gtitle, nav .gavailable {
    display: block;
  }
  nav .gavailable {
    color: #606060;
  }
  nav .gnumber {
    color: #3f4378;
    font-size: 20px;
  }
}
.logo {
  max-width: 104px;
}

@media (min-width: 500px) {
  .logo {
    max-width: 180px;
  }
}

/*# sourceMappingURL=style.css.map */
