.bloc-input {
    padding: 0 25%;
}

.searchfaq {
    position: relative;
}

.searchfaq i {
    position: absolute;
    top: 5px;
    left: 20px;
    font-size: 24px;
    color: #a9b6c1;
}

.searchfaq input {
    height: 45px;
    border-radius: 50px;
    padding-left: 52px;
}

.searchfaq input:active .icon-search {
    color: red;
}

.newquestion-bloc {
    display: flex;
}

.newquestion-bloc input {
    border-radius: 0;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-right: none;
    height: 45px;
    padding-left: 25px;
}

.newquestion-bloc button {
    border-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    height: 45px;
    padding-left: 25px;
    padding-right: 25px;
}


.blocfaq {
    border-radius: 0;
    padding-left: 25px;
    background: #fff;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.blocfaq.show {
    box-shadow: 0px 0px 30px rgba(1, 41, 112, 0.15);
    margin: 10px 0;
}

.blocfaq::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #1a26401f;
    top: 0;
    left: 0;
}

.blocfaq.show::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #74a339;
    top: 0;
    left: 0;
}

.blocfaq .reponse {
    overflow: hidden;
    height: 0;
    transition: all 0.5s;
}

.blocfaq.show .reponse {
    padding-bottom: 25px;
    padding-top: 0px;
    display: block;
    height: auto;
}

.blocfaq .question {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.blocfaq .question h4 {
    color: #1a2640;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
}

.blocfaq .question i {
    color: #b6bbc6;
    font-size: 20px;
    transition: all 0.5s;
    cursor: pointer;
}

.blocfaq .question i:hover {
    color: #1a2640;
}

.blocfaq.show .question i {
    color: #1a2640;
    transform: rotate(90deg);
}

.blocfaq.show .question h4 {
    color: #74a339;
}

.blocfaq:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blocfaq:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media(max-width: 960px) {
    .bloc-input {
        padding: 0 15%;
    }
}

@media(max-width: 768px) {
    .bloc-input {
        padding: 0 5px;
    }
}