<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.question-block {
    background-color: #EFEFEF;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
    -moz-box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
    box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
    padding: 5px;
    width: 80%;
    margin: 20px auto;
    position: relative;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.question-block&gt;.question {
    width: 100%;
    text-align: center;
    color: #474747;
    font-weight: 500;
    font-size: 1.1em;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.question-block&gt;.question:after {
    content: url('data:image/svg+xml; utf8, &lt;svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"&gt;&lt;path fill="#676767" d="M166.9 264.5l-117.8 116c-4.7 4.7-12.3 4.7-17 0l-7.1-7.1c-4.7-4.7-4.7-12.3 0-17L127.3 256 25.1 155.6c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0l117.8 116c4.6 4.7 4.6 12.3-.1 17z" class=""&gt;&lt;/path&gt;&lt;/svg&gt;');
    position: absolute;
    right: 10px;
    top: 50%;
    line-height: 35px;
    width: 13px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform: translateY(-50%);
}

.question-block&gt;.answer {
    max-height: 0px;
    overflow: hidden;
    padding: 0px 25px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transition-timing-function: cubic-bezier(0, 1, 0, 1);
}

.question-block.opened&gt;.question:after {
    transform: translateY(-50%) rotateZ(90deg);
}

.question-block.opened&gt;.answer {
    max-height:1000px;
    transition-timing-function: cubic-bezier(1, 0, 1, 0);
    padding: 20px 25px;
}

.question-block&gt;.answer&gt;ul {
padding-left: 30px;
list-style-type: circle;
}
.question-block&gt;.answer&gt;ul&gt;li {
    margin-top: 5px;
}



.help-block {
    background-color: #EFEFEF;
    padding: 10px;
    position: relative;
    height: 180px;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
    -moz-box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
    box-shadow: 0px 2px 10px 0px rgba(133,133,133,0.27);
}

.help-block h3 {
 font-size: 1.2em;
    text-transform: uppercase;
}

.help-block&gt;.help-description {
    z-index: 5;
    text-align: center;
}

.help-block&gt;.help-description&gt;.help-icon {
    margin: 30px auto;
    height: 60px;
}

.help-block&gt;.help-content {
    z-index: 10;
    opacity: 0;
    padding: 10px;
    transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    -webkit-transition: opacity .2s ease-out;
    -o-transition: opacity .2s ease-out;
}

.help-block&gt;.help-description, .help-block&gt;.help-content {
    background-color: #EFEFEF;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.help-block&gt;.help-content:hover {
    opacity: 1;
}

.help-block&gt;.help-content h3 {
    text-align: center;
}

.help-block&gt;.help-content a {
    color: #333333;
}
.help-block&gt;.help-content&gt;ul&gt;li {
    list-style-type: none;
    padding-left: 10px;
}

.help-blocks-mobile{
    display: none;
}

 @media screen and (max-width: 772px) {
     .help-blocks{
         display: none;
     }
     
     .help-blocks-mobile{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 80%;
        margin: 0 auto;
    }
     
     .help-blocks-mobile .help-description{
        padding-bottom: 15px;
        padding-top: 15px;
         border-bottom: 1px solid rgb(204, 204, 204);
         width: 100%;
    }
     
     .help-blocks-mobile h3{
        margin : 0;
        font-size: 1.3rem;
    }

    .question-block {
        width: 95%;
    }


    .question-block&gt;.answer, .question-block.opened&gt;.answer {
        padding: 0px 5px;
    }

    .question-block.opened&gt;.answer {
        padding: 5px 5px;
    }

    .question-block&gt;.question:after {
        right: 5px;
    }
}

@media screen and (max-width: 992px) {

    .bloc-questions{
        display: none;
    }
    
    .contact-section h3{
        margin-top: 1.5em;
    }
}

    
</pre></body></html>