.faq-header{
  text-align: center;
  padding-top: 7%;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--light-purple);
  font-size: 35px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1100px) {
    .faq-header {
        font-size: 20px;
    }
}


@media screen and (max-width: 820px) {
    .faq-header {
        font-size: 18px;
    }
}

@media screen and (max-width: 620px) {
    .faq-header {
        font-size: 16px;
    }
}


@media screen and (max-width: 450px) {
    .faq-header {
        font-size: 16px;
    }
}

@media screen and (max-width: 350px) {
    .faq-header {
        font-size: 14px;
    }
}

.search-input {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: 900px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 15px;
    background-color: #e0e0e0;
    color: #6b6b6b;
    border-radius: 6px;
    border:none;
    transition: all .4s;
}

.search-input:focus {
  border:none;
  outline:none;
  box-shadow: 0 1px 12px #b8c6db;
  -moz-box-shadow: 0 1px 12px #b8c6db;
  -webkit-box-shadow: 0 1px 12px #b8c6db;
}

.questions{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10vh;
}

.question{
    width: 900px;
    margin-bottom: 30px;
    background: rgb(147, 119, 245);
    color: white;
    border-radius: 20px;
    padding: 40px;
}


.question-header {
    font-size: 24px;
    margin-bottom: 12px;
}

.question-text {
    line-height: 24px;
}


@media screen and (min-width: 1920px){
    .question {
        margin: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .search-box {
        margin-bottom: 30px;
    }

    .search-input {
        width: 700px;
    }

    .question {
        width: 700px;
    }
}

@media screen and (max-width: 820px) {
    .search-input {
        width: 500px;
    }

    .question {
        width: 500px;
    }

    .question-header {
        font-size: 20px;
    }
    
    .question-text {
        font-size: 14px;
    }
    
}

@media screen and (max-width: 620px) {
    .search-input {
        width: 350px;
    }

    .questions {
        margin-top: 40px;
    }

    .question {
        width: 350px;
        padding: 30px;
        margin-bottom: 20px;
    }

    .question-header {
        font-size: 16px;
    }
    
    .question-text {
        font-size: 12px;
        line-height: 20px;
    }
}


@media screen and (max-width: 470px) {
    .search-input {
        width: 300px;
    }

    .questions {
        margin-top: 30px;
    }

    .question {
        width: 300px;
        padding: 30px;
        margin-bottom: 20px;
    }

    .question-header {
        font-size: 14px;
    }
    
    .question-text {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 400px) {
    .search-input {
        width: 270px;
        font-size: 12px;
    }

    .questions {
        margin-top: 30px;
    }

    .question {
        width: 250px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .question-header {
        font-size: 14px;
    }
    
    .question-text {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 350px) {
    .search-input {
        width: 220px;
        font-size: 12px;
    }

    .questions {
        margin-top: 30px;
    }

    .question {
        width: 210px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .question-header {
        font-size: 14px;
    }
    
    .question-text {
        font-size: 12px;
        line-height: 18px;
    }
}