body {
	background-color: var(--background-color);
}

.faq-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 2em;
    margin-bottom: 4em;
}

.faq-section h1 {
	font-size: 3em;
	font-family: 'Bitter',serif;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-top: 1em;
}

.faq-options {
    margin-top: 1em;
    border: 1px solid var(--primary);
    width: 100%;
}

.option-title {
    padding: 1em 2em 1em 1em;
    background-color: var(--primary);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}

.option-title h2 {
    color: white;
	font-family: 'Montserrat',serif;
    font-weight: 400;
    font-size: 1.8em;
}

.option-text p {
    padding: 1.2em 1.2em 1.2em 1.2em;
    color: white;
	/* font-family: 'Open Sans',serif; */
	font-family: 'Montserrat',serif;
    font-size: 1.6em;
    line-height: 1.5em;
}

.option-text a {
    text-decoration: none;
    color: var(--tertiary);
    font-size: 1.1em;
}

.dropdown-arrow {
    width: 15px;
    height: 15px;
}

@media screen and (min-width: 500PX) {
    .faq-wrapper {
        width: 80%;
    }
}

@media screen and (min-width: 650px) {
    .faq-wrapper {
        width: 70%;
    }
}

@media screen and (min-width: 950px) {
    .faq-wrapper {
        width: 65%;
    }
}
@media screen and (min-width: 1100px) {
    .faq-wrapper {
        width: 50%;
    }
}