html {
    font-family: "Poppins", sans-serif;
    color: #231c13;
    background-repeat: no-repeat;
}



.main-section {
    width: 83.33vw;
    max-width: 922px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.questions-section {
    width: 83.33vw;
    max-width: 922px;
    margin: 0 auto;
}

.first-page {
    min-height: calc(100vh - 170px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-section p {
    font-size: 1.1rem;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.btn {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 5em;
    height: 3.334rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 3.334rem;
    text-align: center;
    padding: 0 1em;
    margin: 0;
    background-color: #41afa5;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.default-btn {
    background-color: transparent;
    color: #41afa5;
    border: 1px solid #41afa5;
}

.btn.first-b {
    width: 100%;
}

.emojis-sec {
    font-size: 30px;
}

@media (min-width: 594px) {
    .btn.first-b {
        width: auto;
        min-width: 18.75rem;
    }
}

@media (max-width: 594px) {
   .option label{
         font-size: 20px !important;
    
   }
   .questions-section h1{
    font-size: 24px;
   }
}

.second-page {
    display: none;
}

.third-page {
    display: none;
}

.fourth-page {
    display: none;
}

.fifth-page {
    display: none;
}

.sixth-page {
    display: none;
}

.seventh-page {
    display: none;
}

.eighth-page {
    display: none;
}

.eighth-page {
    display: none;
}

.nineth-page {
    display: none;
}

.progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background: #41afa5;
    width: 100vw;
    -webkit-transition: width .2s ease-in;
    transition: width .2s ease-in;
    height: 10px;
}

.questions-section label {
    font-size: 24px;
}


.survey-bottom {
    display: flex;
    margin-top: 40px;
}

.survey-bottom button:last-child {
    margin-left: auto;
}


.question-counter {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(35, 28, 19, .25);
    font-weight: 600;
    margin-top: 60px;
    display: none;
}

.option label {
    display: inline-flex;
    align-items: baseline;
}

.option input[type=checkbox],
.option input[type=radio] {
    position: relative;
    appearance: none;
    font-size: inherit;
    width: 1em;
    margin: 0;
    color: #41afa5;
    outline: none;
    font-family: 'Font Awesome 5 Pro';
    transition: 300ms ease-out;
}

.option input[type=checkbox]::after,
.option input[type=radio]::after {
    content: '\f111';
    display: inline-block;
    text-align: center;
    width: 1em;
}

.option input[type=checkbox]:checked::after,
.option input[type=radio]:checked::after {
    font-weight: 900;
}

.option label input[type=checkbox]:active,
.option label input[type=radio]:active {
    transform: scale(0.6);
}

.option label input[type=checkbox]+span,
.option label input[type=radio]+span {
    margin-left: 0.35em;
}

.option label input[type=checkbox]:checked::after {
    content: '\f058';
}

.option label input[type=radio]:checked::after {
    content: '\f192';
}

.option.square label input[type=checkbox]:after {
    content: '\f0c8';
}

.option.square label input[type=checkbox]:checked::after {
    content: '\f14a';
}

input[type=radio] {
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Chrome, Safari, Opera */
    transform: scale(1.5)
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.questions-section{
    margin-bottom: 40px;
}

.questions-section p{
    color: rgba(35, 28, 19, .25);
}

.zip-input input[type=text]{
    width:100%;
    border:1px solid rgba(35, 28, 19, .25);
    border-radius:4px;
    margin:8px 0;
    outline:none;
    padding:8px;
    box-sizing:border-box;
    transition:.3s;
    height: 50px;
    font-size: 24px;
  }
  
.zip-input input[type=text]:focus{
    border-color:#41afa5;
    box-shadow:0 0 8px 0 #41afa5;
  }

  .final-page{
    display: none;
    width: 83.33vw;
    max-width: 922px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: calc(100vh - 20px);
    justify-content: center;
    align-items: center;
  }

  .footer{
    height: 150px;
    width: 100%;
    bottom: 0;
    position: fixed;
    opacity: 0.4;
  }


  .final-page-fail{
    display: none;
    width: 83.33vw;
    max-width: 922px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: calc(100vh - 20px);
    justify-content: center;
    align-items: center;
  }

  @media  (max-width: 588px) {
    .footer {
        height: calc(100vw / 4.2);
        width: 100%;
        bottom: 0;
        position: fixed;
        opacity: 0.4;
        background-repeat: no-repeat;
        background-size: contain;
    }
  }