#page-header{
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #AD8D7C;
}
#page-header .container{
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: center;
    row-gap: 16px;
}
h1{
    color: white;
    text-align: center;
}
#breadcrumbs{
    color: white;
}

#page-content{
    background: white;
    padding: 90px 0 120px;
}
.faq-wrapper{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: auto;
    gap: 8%;
    align-items: start;
}
.faq-item__title-wrapper{
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: stretch;
    column-gap: 20px;
    border: 1px solid #E2E2E2;
    margin-bottom: 40px;
}
.faq-item__title-icon{
    padding: 20px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
}
.faq-item__title{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: start;
}
.faq-item__title p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #241F1F80;
}
.faq-item__title h2{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.23;
    text-transform: uppercase;
}
.question{
    border-bottom: 1px solid #E2E2E2;
}
.question-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 10px 10px 10px 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.28;
    text-transform: uppercase;
    color: #241F1F80;
}
.question:first-child{
    border-top: 1px solid #E2E2E2;
}
.question-title svg{
    min-width: 16px;
    flex-shrink: 0;
}
.question-title svg path{
    stroke: #241F1F80;
}
.question-title.active{
    color: #241F1F;
}
.question-title.active svg path{
    stroke: #241F1F;
}
.answer{
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
}
.answer.active {
    padding-bottom: 80px;
    visibility: visible;
    opacity: 1;
    height: auto;
}
.answer p{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.23;
    color: #241F1F80;
    max-width: 420px;
}
.answer p a{
    font-weight: 700;
    color: #241F1F;
}
@media(max-width:1024px){
    #page-content{
        padding: 60px 0 80px;
    }
    .faq-wrapper{
        grid-template-columns: minmax(0,1fr);
    }
}
@media(max-width:767px){
    #page-header{
        padding: 50px 0;
    }
    #page-header .container{
        row-gap: 8px;
    }
    h1{
        font-size: 24px;
    }
    #page-content{
        padding: 40px 0 60px;
    }
    .faq-wrapper{
        row-gap: 40px;
    }
    .faq-item__title-wrapper{
        column-gap: 10px;
        margin-bottom: 20px;
    }
    .faq-item__title-icon{
        padding: 10px;
    }
    .faq-item__title-icon img{
        width: 20px;
        height: 20px;
    }
    .faq-item__title{
        padding: 10px 10px 10px 0;
    }
    .faq-item__title p{
        font-size: 12px;
    }
    .faq-item__title h2{
        font-size: 20px;
    }
    .question-title{
        font-size: 12px;
    }
    .answer.active {
        padding-bottom: 40px;
    }
}