/* CSS Main File */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@font-face { font-family: 'azurlog'; src: url("./../fonts/motschcc.ttf"); }
@keyframes shake {
    0% { transform: translate(0, 0) rotate(0); }
    10% { transform: rotate(-20deg); }
    20% { transform: rotate(20deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60%, 100% { transform: none; }
}

@keyframes float {
    0%, 50% { transform: none; }
    60% { transform: translateY(0px); }
    70% { transform: translateY(-4px); }
    80% { transform: translateY(0px); }
    90% { transform: translateY(-2px); }
    100% { transform: none; }
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Open sans', sans-serif;
    cursor: default;
}

body {
    min-height: 100vh;
    color: rgb(0,0,0);
    background: whitesmoke;
    font-family: 'Open sans', sans-serif;
}

header, main {
    display: block;
    margin: 50px auto 0 auto;
    width: 1200px;
}

.poles div {
    cursor: pointer!important;
}

#cookiesAccept {
    color: white!important;
}

.alert {
    margin: 10px 0;
    font-size: 16px;
}

.alert>.glyphicon {

    margin-right: 10px;
    font-size: 30px;
    vertical-align: top;
}

.alert>p {

    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    color: inherit;
}

.alert>ul {

    list-style: none;
}

.main-inner, aside {

    display: inline-block;
    vertical-align: top;
    padding: 8px;
    min-height: 1634px;
}

.main-inner {

    width: 900px;
}

aside {

    width: 300px;
    float: right;
}

img {
    max-width: 100%;
}

a {

    text-decoration: none!important;
    outline: 0;
    cursor: pointer;
}

.navbar-nav li{
    font-family: 'Open sans', sans-serif;
    color: #333333;
    margin: auto 20px;
}

li {
    font-family: 'Open sans', sans-serif;
    color: #333333;
    margin: auto 20px;
}

#BtnEnvoyer button{
    background-color:#043267;
    border-radius: 5px;
    color: white;
}

label {

    font-weight: 600!important;
    margin-bottom: 2px;
}

input:focus-visible, textarea:focus-visible {
    outline: none!important;
    border-color: #3c75b5!important;
    box-shadow: 0 0 0 0.25rem rgb(4 50 130 / 25%)!important;
}

input[type="text"], input[type="email"], textarea {

    width: 100%;
    border: 1px solid #ddd;
    padding: 8px 10px;
    cursor: text;
    margin-bottom: 8px;
    border-radius: 3px;
}

button[type="submit"] {

    display: block;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 2px;
    transition: 0.1s;
    margin-top: 6px;
}

input[type="text"]:hover, input[type="email"]:hover, textarea:hover, button[type="submit"]:hover {

    border: 1px solid lightblue;
}

a>img {
    cursor: pointer;
}

a:hover {
    color: unset;
}

i {
    color: #acacac;
}

h1, h2, h3, h4 {
    padding: 0;
    margin: 0;
    letter-spacing: 0.5px;
}

.h1_separator {
    display: block;
    width: 40px;
    height: 3px;
    background: #dc1d1c;
    margin: 75px auto 10px auto;
}

h1 {
    font-weight: 700;
    font-size: 25px;
    color: #CCE6F4;
    text-align: center;
    margin-bottom: 28px;
}

h2 {
    font-weight: 600;
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 1.325rem!important;
    }
}

h2::after {
    content: "";
    background: rgb(4,49,104);
    width: 25px;
    height: 2px;
    margin-top: 10px;
    display: block;
}

h3 {
    width: 100%;
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 10px;
}

h4 {
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 10px;
}

#LesAvis {
    height: 675px;
}

p {
    text-align: justify;
    color: #333333;
    font-family: 'Open sans', sans-serif;
}

footer {

    margin-top: 14px;
    text-align: center;
}

footer p {

    color: rgb(250,250,250);
    font-weight: 600;
}

/********************/

.loader-wrapper {
    position: fixed;
    background: rgb(5,49,104);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.loader-wrapper>svg {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-wrapper>svg>path, .loader-wrapper>svg>rect {
    fill: #dc1d1c;
}

/********************/

#cookiesAccept {

    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(17,17,17,0.95);
    width: 100%;
    z-index: 10;
    text-align: center;
    min-height: 50px;
    font-size: 15px;
    padding: 15px;
    letter-spacing: 0.8px;
}

#cookiesAccept>a {

    color: #5eb5e0;
    transition: 0.2s;
}

#cookiesAccept>a:hover {

    color: #dc1d1c;
}

#cookiesAccept>button {

    font-weight: bold;
    padding: 6px 14px;
    margin: 10px 0 0 20px;
    border: 3px solid #dc1d1c;
    background: #fff;
    color: #000;
    border-radius: 10px;
    transition: 0.2s;
}

#cookiesAccept>button:hover {

    color: #fff;
    background: #000;


}







/********************/







.header-img {

    display: inline-block;
    width: 550px;
}

.header-inner {

    width: calc(1200px - 580px);
    margin-top: 14px;
    float: right;
}

.header-links-wrapper {

    float: right;
}

.header-links {

    display: inline-block;
    width: 80px;
    margin: 0 2px;
    color: rgb(250,250,250);
}

.header-links>button {

    display: block;
    margin: 0 auto 6px auto;
    background: linear-gradient(to bottom, #3c75b5, #1f5cb1);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    outline: none;
}

.header-links>button>span {

    font-size: 22px;
    text-align: center;
}

.header-links>div {

    text-align: center;
    font-family: 'azurlog', sans-serif;
    font-size: 12px;
    transition: 0.2s;
    letter-spacing: 0.8px;
}

.header-links:hover>div {

    color: #dc1d1c;
}

.main-separator {

    display: block;
    width: 75%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgb(198,198,198), rgb(198,198,198), transparent);
    margin: 16px auto;
}







/********************/










/********************/







.main-inner-container {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 20px;
    border-top: 5px solid #3c75b5;
}

.main-inner-container-col1-3,
.main-inner-container-col1-2,
.main-inner-container-col2-3,
.main-inner-container-col1-5,
.main-inner-container-col4-5 {

    display: inline-block;
    vertical-align: top;
}

.main-inner-container-col1-3 img {
    border-radius: 5px;}

.main-inner-container-col1-1 {

    width: 100%;
}

.main-inner-container-col1-2 {

    width: calc(50% - 20px);
    margin: 0 8px;
}

.main-inner-container-col1-3 {

    width: calc(33% - 20px);
    margin: 10px 10px 0 10px;
}

.main-inner-container-col2-3 {
    width: calc(67% - 25px);
    margin-top: 10px;
    margin-left: 15px;
}


.main-inner-container-col1-5 {

    width: calc(20% - 5px);
}

.main-inner-container-col4-5 {

    width: calc(80% - 30px);
    margin-left: 20px;
}

.intro-img {

    width: 150px;
}

.intro-img-text {

    color: #3C75B5;
    margin-top: 4px;
}

.intro-img-text-carac {

    font-family: 'azurlog', sans-serif;
    display: inline-block;
    transition: 1s ease-in-out;
    font-size: 34px;
    height: 30px;
}

.intro-text {

    line-height: 1.92;
}

.aside-container {
    display: block;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background: white;
    color: #333;
}

.trophee {
    border-radius: 20px;
}

.logo-ebp {
    height: 100%;
    width: 27%!important;
}





/********************/







.poles {

    display: inline-block;
    vertical-align: top;
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    width: 150px;
    height: 150px;
    padding: 12px;
    margin: 12px 7px;
    transition: 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.20);
}

.poles:hover {
    box-shadow: 0 3px 2px rgba(0,0,0,0.10);}

.poles:focus {
    animation: click 0.5s;}

@keyframes click {
    50% {
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);    }
}



.poles>img {

    display: block;
    width: 60px;
    margin: 12px auto 18px auto;
}

.poles>div {

    font-size: 18px;
    color: #212121;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-family: 'Gill', sans-serif;
}


.lien {
    color: #053168;
    font-weight: 600;
}

.lien:hover {
    color: #dc1d1c;
    font-weight: 600;
}

.avis_slider {

    height: 510px;
    width: 100%;
    min-height: 230px;


}

.avis_slider_slides {

    width: 550px;
    height: 680px;
    margin: 0 auto;
    user-select: none;
    animation: fade 1s ease-in-out;
}

@media screen and (max-width: 575px) {
    .avis_slider_slides {
        height: 1175px;
    }
    #LesAvis {
        height: 670px;
    }
}


.avis_slider_slides>img {

    margin-bottom: 10px;    
    height: 90px;
}

.avis_slider_slides_title {

    display: inline-block;
    vertical-align: middle;
    margin: 10px 0 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.avis_slider_buttons_prev, .avis_slider_buttons_next {

    width: 150px;
    height: 230px;
    cursor: pointer;
    font-size: 24px;
    color: #1f5cb1;
    text-align: center;
    padding-top: 90px;
    transition: 0.2s;
}

.avis_slider_buttons_prev:hover, .avis_slider_buttons_next:hover {

    color: #dc1d1c;
}

.avis_slider_buttons_prev {

    float: left;
}

.avis_slider_buttons_next {

    float: right;
}

.avis_dots {

    display: block;
    width: 65px;
    margin: 15px auto;
}

.avis_dot {

    display: inline-block;
    background: black;
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.avis_link {

    color: #053168;
    font-weight: 600;
    margin-top: -15px;
    float: right;
    font-style: italic;
    font-size: 16px;
}







/********************/







.ebp_link {

    display: block;
    list-style: square inside;
}

.ebp_card {

    display: inline-block;
    vertical-align: top;
    background: #f5f9fa;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    width: 420px;
    height: 290px;
    color: #333;
    margin: 10px;
    padding: 30px;
    border-radius: 2px;
}

.ebp_card>img {

    display: block;
    height: 60px;
}

.ebp_card>h3 {

    margin-top: 10px;
}

.ebp_card>div {

    color: #838383;
}

.ebp_card>a {

    margin-top: 6px;
    float: right;
    font-weight: bold;
    transition: 0.1s;
}

.ebp_card>a:hover {

    color: #dc1d1c;
}

.ebp_button {

    display: block;
    float: right;
    text-align: center;
    width: 190px;
    font-size: 16px;
    background-color: #DC1D1C;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.ebp_button:hover {

    color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}







/********************/







.achat_button {

    display: block;
    float: right;
    text-align: center;
    font-size: 16px;
    background-color: #DC1D1C;
    color: #fff;
    padding: 6px 16px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.achat_button:hover {

    color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}







/********************/



iframe {
    border-radius: 5px!important;
}



.web_module {

    display: inline-block;
    vertical-align: top;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    margin-right: auto!important;
    padding: 20px!important;
    width: 200px;
    height: 200px;
    padding: 12px;
    margin: 40px 25px;
    transition: 0.1s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.web_module>img, .web_module>svg {

    display: block;
    width: 60px;
    margin: 10px auto;
}

.web_module>svg {
    margin-bottom: 20px;}

.web_module_title {

    font-size: 22px;
    color: #212121;
    border-bottom: 1px solid #ddd;
    font-family: 'Gill', sans-serif;
}

.web_module_text{

    color: #333;
    margin: 10px 0;
    font-size: 14px;
}

.web_creation {

    display: inline-block;
    width: 100%;
    position: relative;
    vertical-align: top;
    height: 100%;
    border-radius: 5px;
    transition: 0.2s;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.web_creation:hover {
    width: 97%;
    height: 97%;
    transform: translate3d(1.5%, 1.5%, 0);
    margin-bottom: 1.6%;
    box-shadow: 0 3px 3px rgb(0 0 0 / 10%), 0 3px 3px rgb(0 0 0 / 15%);}

.web_creation:focus {

    width: 95%;    
    height: 95%;
    transform: translate3d(2.5%, 2.5%, 0);
    margin-bottom: 2.6%;
    box-shadow: 0 3px 3px rgb(0 0 0 / 10%), 0 3px 3px rgb(0 0 0 / 10%);
}



.web_creation>img {

    opacity: 0.8;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.web_creation_text {

    text-align: center;
    padding: 8px 0;
    color: #111;
    font-size: 22px;
}

.web_creation>button {

    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffa800;
    color: #000;
    font-size: 16px;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
}







/********************/







.utilitaires {

    display: inline-block;
    vertical-align: top;
    background: white;
    width: 48%;
    margin: 0 6px;
    padding: 20px;
    color: #000;
    height: 280px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 6px;
}

.utilitaires>img {

    width: 60px;
    margin-bottom: 16px;
}

.utilitaires_title {

    font-size: 22px;
    font-family: 'gill', sans-serif;
    margin-bottom: 6px;
}

.utilitaires_text {

    color: #838383;
}

.utilitaires>a {

    float: right;
    margin-top: 16px;
    color: #fff;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
}

.utilitaires>a:hover {
    color: white!important;
    transform: scale(95%);
}

.achat_button {
    border-radius: 3px!important;
}


/********************/

.contact_map {

    width: 100%;
    height: 400px;
    border: none;
    margin-bottom: 16px;
    border-radius: 2px;
}

.contact_infos {

    text-align: center;
}

.contact_infos>span {

    color: #1f5cb1;
    font-size: 30px;
    margin-bottom: 8px;
}

#contact_form_texte {

    height: 76px;
}

#contact_form_captcha {

    margin-bottom: 10px;
}

#contact_form_captcha>div {

    margin: 0 auto;
    width: 304px;
}







/********************/







.footer-map-container {

    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}

.footer-map-wrapper>div {

    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: rgb(190,190,190);
}

.footer-map-wrapper>a {

    display: block;
    font-weight: 600;
    transition: 0.2s;
    color: rgb(250,250,250);
}

.footer-map-wrapper>a:hover {

    color: #dc1d1c;
}

footer>a {

    color: lightblue;
    margin: 0 20px ;
    padding: 10px 0;
}

#Dev {
    font-size: 2rem;
    font-weight: 400!important;
    text-align: start;
    color: #333;
    margin-bottom: 10px!important;
}

#Dev::after {
    content: "";
    background: rgb(4,49,104);
    width: 25px;
    height: 2px;
    margin-top: 10px;
    display: block;
}

.sousTitre {
    margin-bottom: 50px!important;
    color: rgb(5, 49, 104);
    font-weight: 600!important;
    text-align: center;
    font-size: 2.5rem!important;
}

.desc::after, .sousTitre::after {
    display: none;
}

.desc {
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    letter-spacing: 0;
}

.ordinateur > * {
    cursor: pointer;
}

.ordinateur img {
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}


.ContainerOrdi {
    width: 100%;
    height: 400px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.ContainerOrdi button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: none;
}

.ContainerOrdi span {
    background-color: transparent;
    color: transparent;
    padding: 10px;
    border-radius: 10px;
    transition-duration: 0.25s;
    position: absolute;
    cursor: pointer;
}

#Ordi1, #Ordi2 {
    background-repeat: no-repeat;
    background-size: cover;
    width: 120%;
    height: 120%;
    transition-duration: 0.5s;
    cursor: pointer;
}

#Ordi1 {
    background-image: url('../../img/dev_module/ordinateur1.png');
    background-position: 75% center;
}

#Ordi2 {
    background-image: url('../../img/dev_module/ordinateur2.jpg');
    background-position: 25% center;
}

.ContainerOrdi:hover span {
    background-color: #043267;
    color: white;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.ContainerOrdi:hover #Ordi1 , .ContainerOrdi:hover #Ordi2 {
    filter: blur(5px);
    width: 100%;
    height: 100%;
    background-position: center center;
}

.DiapoDev {
    width: 258px;
    height: 368px;
    margin-top: -70px;
}

.ImgDiapoDev {
    position: absolute;
    border-radius: 7px;
    height: 368px;
}

#ImageDevWeb {
    animation: DevWeb 20s infinite;
}

#ImageDevWeb2 {
    animation: DevWeb2 20s infinite;
}


@keyframes DevWeb {
    0% {
        opacity: 0;
    }
    46% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes DevWeb2 {
    0% {
        opacity: 1;
    }
    46% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.svgHebergement {
    padding-bottom: 110px;
}

@media screen and (max-width: 1199px) {
    .DiapoDev {
        width: 183px;
        height: 260px;
        margin-top: 0px;
        text-align: start!important;
    }
    .ImgDiapoDev {
        height: 260px;
    }
    .ContainerOrdi {
        height: 345px;
    }
    .svgHebergement {
        width: 50%;
        margin-left: 25%;
        padding-bottom: 75px;
    }
}

@media screen and (max-width: 576px) {
    .svgHebergement {
        width: 100%;
        margin-left: 0%;
    }
}

/************************ 
PAGE EBP-SOLUTIONS 
************************/

.ebp {
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.pb-ebp {
    padding-bottom: 65px;
}
#BRgb {
    background: linear-gradient(to right, #9516AA, #B40045, #FF7C00);
}
.bandeau {
    height: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#EbpSolution {
    background-image: url(../../img/ebp/img/ebp.jpg);
}
.imageHeader {
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 240px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
#TRgb {
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #9516AA, #B40045, #FF7C00) border-box;
    border: 2px solid transparent;
    margin-top: -90px;
}
.titre {
    background-color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.55);
}
.titre h1 {
    color: #707070!important;
    margin-bottom: 0!important;
    font-size: 23px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.titre h2 {
    color: #707070!important;
    height: 80px;
    padding-top: 10%;
    margin-bottom: 0%!important;
}
.ebp-composant:hover .contour-blue,.ebp-composant:hover .contour-orange,.ebp-composant:hover .contour-red {
    box-shadow: 3px 3px 6px rgb(0 0 0 / 20%)!important;
    cursor: pointer!important;
}
.contour-blue{
    border: 2px solid #007A89;
    opacity: 0.99;
}
.contour-orange{
    border: 2px solid #EC6009;
    opacity: 0.99;
}
.contour-red{
    border: 2px solid #CE1719;
    opacity: 0.99;
}
.ebp-composant:hover .img-titre-ebp { 
    filter: drop-shadow(3px 3px 6px rgb(0 0 0 / 12%));
}
#commerce{
    background-image: url(../../img/ebp-solution/commerce.png);
}
#compta{
    background-image: url(../../img/ebp-solution/compta.png);
}
#crm{
    background-image: url(../../img/ebp-solution/crm.png);
}
#batiment{
    background-image: url(../../img/ebp-solution/batiment.png);
}
#vente{
    background-image: url(../../img/ebp-solution/vente.png);
}
#commerce, #compta, #batiment{
    width: 70%;
    height: 70%;
    margin-top: 40%;
    margin-bottom: -5%;
}
#crm, #vente{
    width: 70%;
    height: 70%;
    margin-top: 60%;
    margin-bottom: -5%;
}
.contour-blue, .contour-orange, .contour-red{
    transition-duration: 0.3s;
}
/* .imgEbp-solution{
    margin-left: 22px;
    margin-right: 22px;
    height: 200px;
    width: 200px;
} */
.img-titre-ebp{
    transition-duration: 0.3s;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(6px 6px 6px rgb(0 0 0 / 55%));
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.ebp-titre {
    font-size: 1.2em;
}
#titre-solution-ebp{
    padding-left: 30px;
    text-align: center;
    margin-top: 2%;
}
.ebp-titre::after, #titre-solution-ebp::after{
    background: rgba(255, 255, 255, 0)!important;
}
.textHautEbp {
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
}
/*.textHautEbp-solution {
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}*/
.textBasEbp {
    margin-top: 25px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 65px;
}
.second-part {
    margin-top: 25%!important;
}

@media screen and (max-width: 1199px) {
    .titre h1 {
        font-size: 23px;
    }

    .contour-blue, .contour-red, .contour-orange{
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 991px) {
    #batiment {
        margin-top: 60%;
    }
    #vente {
        margin-top: 70%;
    }
    .second-part {
        margin-top: 35%!important;
    }
}

@media screen and (max-width: 768px) {
    .bandeau {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    .ebp {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .titre {
        margin-right: auto!important;
        margin-left: auto!important;
        margin-top: -90px!important;
        /*z-index: 10;*/
    }
    .imgPdf2 {
        width: 85px;
        height: 105px;
        margin-left: 0px;
        margin-top: 0px;
    }
    .img-titre-ebp {
        margin-bottom: 10px;
        width: 83.33333333%;
    }
    .contour-blue, .contour-red, .contour-orange{
        width: 83.33333333%;
        padding-left: 0!important;
        padding-right: 0!important;
    }
    #commerce, #compta{
        margin-bottom: 35%;
        height: 160%;
    }
    #batiment {
        margin-bottom: 10%;
        height: 90%;
        margin-top: 100%;
    }
    #crm { 
        margin-bottom: 20%;
        margin-top: 112%;
    }
    #vente{
        margin-bottom: 25%;
        margin-top: 110%;
    }
    .second-part {
        margin-top: 50%!important;
    }
}

@media screen and (max-width: 575px) {
    
    .ebp {
        box-shadow: none;
    }
    #LogoEbp {
        height: 160px;
    }
    #commerce {
        margin-bottom: 20%;
        height: 290%;
        margin-top: 10%;
    }
    #compta{
        margin-bottom: 20%;
        height: 70%;
        margin-top: 80%;
    }
    #batiment {  
        margin-bottom: 10%;
        height: 70%;
        margin-top: 90%;
    }
    #crm { 
        margin-bottom: 20%;
        height: 50%;
        margin-top: 90%;
    }
    #vente{
        margin-bottom: 20%;
        height: 60%;
        margin-top: 80%;
    }
    .second-part {
        margin-top: 75%!important;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Style du footer */
footer {
    padding: 20px 0; /* Ajout d'un espace autour du contenu du footer */
}

/* Style de la liste */
.footer-ul {
    list-style: none; /* Suppression des puces de la liste */
    display: flex; /* Utilisation de Flexbox pour aligner les éléments horizontalement */
    flex-wrap: wrap; /* Permet à la liste de passer à la ligne si l'écran est réduit */
    justify-content: space-around; /* Espace égal entre les éléments */
}

/* Style des éléments de la liste */
.footer-li {
    margin-bottom: 10px; /* Espacement entre les éléments verticalement */
}