h1{
    text-align: center;
}
.faq{
    width: 100%;
}

.question button{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border: none;
    color: #fea53d;
    background-color: transparent;
    font-size: 25px;
}

.question button:hover{
    color: #f5ca98;
}

.faq{
    border-bottom: 2px solid #fea53d;
    padding: 20px 0;
}

.answer{
    display: none;
}

.answer.active{
    display: block;
}

.fa-chevron-down.rotate{
    display: inline-block;
    transform: rotate(180deg);
}

/*hero banner */
.hero {
    width: 100%;
    height: 50vh;
    background-color: gray;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.hero .overlay {
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.hero .hero-content {
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: 99;
}

.hero .hero-content .content {
    margin-top: 150px;
    text-align: center;
    align-items: center;

}

.hero .hero-content .link {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;


}

.hero .hero-content a {
    text-decoration: none;
    color: white;
}

.hero .hero-content .link u {
    background-color: transparent;
    color: #FEA53D;
}

.hero .hero-content a:hover {
    color: #FEA53D;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #FEA53D;

}

.hero .hero-content .content p {
    font-size: 25px;
    width: 600;
    margin-top: -20px;
    margin-left: 20px;
    color: #ddd;

}