.faq-section svg{
   width: 54px;
    fill: #fff;
}
.faq-item.open svg{
    fill: #d4251a;
}
.faq-section {
background-color: #373737;
    margin: 0px 0px 10px 0px;
    padding: 65px 75px 65px 75px;
    border-radius: 60px 60px 60px 60px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-title {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    background-color: transparent;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Archivo';
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 36px;
}

.faq-item.open .title-in {
    color: #d4251a;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 27px;
}

.faq-item.open .faq-content {
    transition: max-height 0.4s ease;
    max-height: 100%;
}

/* SVG Icons */
.e-fas-plus-circle {
    display: inline-block;
}

.faq-item.open .e-fas-plus-circle {
    display: none;
}

.faq-item.open .e-fas-minus-circle {
    display: inline-block;
}

.e-fas-minus-circle {
    display: none;
}
h2.title-in {
    width: calc(100% - 54px);
    font-size: 28px !important;
}

@media (max-width:991px){
    .faq-section {
        padding: 40px;
    }
    h2.title-in {
        width: calc(100% - 24px);
        font-size: 18px !important;
        line-height: 27px !important;
    }
    .faq-section svg{
       width: 24px;
    }
    .faq-title {
        font-size: 18px;
        line-height: 27px;
    }
    
    .faq-content {
        font-size: 15px;
    }
}

@media (max-width:991px){
    .faq-section {
        padding: 10px;
    }
    h2.title-in {
        width: calc(100% - 18px);
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .faq-section svg{
       width: 18px;
    }
    .faq-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .faq-content {
        font-size: 14px;line-height: 20px;
    }
    .faq-section {
        border-radius: 10px;
    }
}
