 /* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #003A86;
    --secondary-color: #D74C63;
    --medical-color: #5FBCA4;
    --artisan-color: #BD615B;
    --gerant-color: #FBCE00;
    --grey-color: #F5F5F5;
    --blue-color: #282828;
    --black-color: #282828;
    --white-color: #FFF;
}
   
.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}
   
.black {
    color: var(--black-color);
}
   
.white {
    color: var(--white-color);
}

.medical {
    color: var(--medical-color);
}

.gerant {
    color: var(--gerant-color);
}

.artisan {
    color: var(--artisan-color);
}
   
.bg-primary {
    background-color: var(--primary-color);
}
   
.bg-secondary {
    background-color: var(--secondary-color);
}
   
.bg-grey {
    background-color: var(--grey-color);
}
   
.bg-black {
    background-color: var(--black-color);
}
   
.bg-white {
    background-color: var(--white-color);
}

.bg-medical {
    background-color: var(--medical-color);
}

.bg-gerant {
    background-color: var(--gerant-color);
}

.bg-artisan {
    background-color: var(--artisan-color);
}


/* Layout */
.layout-canvas-g {
    max-width: 1152px;
    margin: 0 auto;
}

.stylingblock-content-wrapper {
    min-width: 100%;
}

.section {
    margin: 0;
}

/*
.columns {
    display: flex;
} 
*/

.col {
    flex-grow: 1;
}

/* Typography */
body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
}

h1, h2 {
    color: var(--primary-color);
    padding-bottom: 15px;
}

h3 {
    color:  var(--black-color);
}

h4 {
    color: var(--secondary-color);
}

h5 {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.5em;
}
   
.center {
    text-align: center;
}
   
.font-small {
    font-size: 14px;
}

.font-base {
    font-size: 16px;
}

.font-medium {
    font-size: 20px;
}

.font-large {
    font-size: 24px;
}

.font-Xlarge {
    font-size: 32px;
    line-height: 1.1em;
    font-weight: 600;
}

.font-testify {
    font-size: 24px;
}

.emphasized {
    font-style: italic;
}

/* vertical Spacing */
.vertical-spacing-zero {
    padding-top: 0;
}

.vertical-spacing-xsmall {
    padding-top: 8px;
    padding-bottom: 8px;
}

.vertical-spacing-small {
    padding-top: 16px;
    padding-bottom: 16px;
}

.vertical-spacing-medium {
    padding-top: 24px;
    margin-bottom: 24px;
}

.vertical-spacing-large {
    padding-top: 48px;
    padding-bottom: 48px;
}
   
/* bottom Spacing */
.bottom-spacing-zero {
    padding-bottom: 0;
}

.bottom-spacing-small {
    padding-bottom: 8px;
}

.bottom-spacing-medium {
    padding-bottom: 16px;
}

.bottom-spacing-large {
    padding-bottom: 24px;
}
   
/* top Spacing */
.top-spacing-zero {
    padding-top: 0;
}

.top-spacing-small {
    padding-top: 8px;
}

.top-spacing-medium {
    padding-top: 16px;
}

.top-spacing-large {
    padding-top: 24px;
}
   
/* vertical Margin */
.vertical-margin-zero {
    margin-top: 0;
    margin-bottom: 0;
}

.vertical-margin-xsmall {
    margin-top: 8px;
    margin-bottom: 8px;
}

.vertical-margin-small {
    margin-top: 16px;
    margin-bottom: 16px;
}

.vertical-margin-medium {
    margin-top: 24px;
    margin-bottom: 24px;
}

.vertical-margin-large {
    margin-top: 48px;
    margin-bottom: 48px;
}
   
/* bottom Margin */
.bottom-margin-zero {
    margin-bottom: 0;
}

.bottom-margin-small {
    margin-bottom: 16px;
}

.bottom-margin-medium {
    margin-bottom: 24px;
}

.bottom-margin-large {
    margin-bottom: 48px;
}  
   
/* top Margin */
.top-margin-zero {
    margin-top: 0;
}

.top-margin-small {
    margin-top: 16px;
}

.top-margin-medium {
    margin-top: 24px;
}

.top-margin-large {
    margin-top: 48px;
}  
   
/* horizontal Spacing */

.horizontal-spacing-zero {
    padding-left: 0;
    padding-right: 0;
}

.horizontal-spacing-small {
    padding-left: 16px;
    padding-right: 16px;
}

.horizontal-spacing-medium {
    padding-left: 24px;
    padding-right: 24px;
}

.horizontal-spacing-large {
    padding-left: 48px;
    padding-right: 48px;
}
   
/* horizontal Margin */

.horizontal-margin-zero {
    margin-left: 0;
    margin-right: 0;
}

.horizontal-margin-small {
    margin-left: 16px;
    margin-right: 16px;
}

.horizontal-margin-medium {
    margin-left: 24px;
    margin-right: 24px;
}

.horizontal-margin-large {
    margin-left: 48px;
    margin-right: 48px;
}
   
/* right Margin */

.right-margin-zero {
    margin-right: 0;
}

.right-margin-small {
    margin-right: 16px;
}

.right-margin-medium {
    margin-right: 24px;
}

.right-margin-large {
    margin-right: 48px;
}

/* Form */
   
.input-container {
    margin-bottom: 15px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    height: 48px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="checkbox"] {
    margin-top: 10px;
    margin-bottom: 10px;
}

input[type="submit"] {
    width: 100%;
    height: 48px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Boutons */

.button-container {
    text-align: left;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-gerant {
    font-family: "Ubuntu Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 24px;
    box-shadow: none;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

/* Définition des couleurs et des bordures pour chaque bouton */
.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    color: #fff;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
   
.btn-tertiary {
    color: var(--primary-color);
    background: var(--tertiary-color);
    border: 2px solid var(--primary-color);
}

.btn-gerant {
    color: var(--primary-color);
    background: var(--gerant-color);
    border: 2px solid var(--gerant-color);
}

/* Changement de couleur au survol */
.btn-primary:hover,
.btn-tertiary:hover {
    transition: background-color 300ms, color 300ms, border-color 300ms;
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    transition: background-color 300ms, color 300ms, border-color 300ms;
    background-color: #9F293D;
    color: #fff;
    border-color: #9F293D;
}

.btn-gerant:hover {
    transition: background-color 300ms, color 300ms, border-color 300ms;
    background-color: #EB9B00;
    color: var(--primary-color);
    border-color: #EB9B00;
}

/* Ajustement de la largeur et de la marge des boutons */
.btn-primary,
.btn-tertiary {
    flex: 1;
    margin-right: 12px;
}

.btn-primary:last-child,
.btn-tertiary:last-child {
    margin-right: 0;
}

/* Sticky CTA */

    #sticky-cta {
        display: none;
    }

/* Header */

.section-container {
  position: relative;
  padding-bottom: 50px;
  min-height: 900px;
}

.blue-background {
  background-color: var(--primary-color);
  padding: 20px 40px;
  height: 650px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.custom-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.left-column, .right-column {
  width: 48%;
}

.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.responsive-image {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.text-content {
  text-align: left;
}

.form-container {
  position: relative;
  z-index: 2;
  background-color: #F4F7FA;
  border-radius: 10px;
  padding: 20px;
  margin-left: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.input-container {
  margin-bottom: 10px;
}

.button-container {
  margin-top: 20px;
}

/* footer */

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.column-footer {
    flex: 1;
    margin: 0 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
}

.arrow {
    width: 16px !important;
    height: auto !important;
    margin-left: 16px;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.phone-icon {
    width: 36px !important;
    height: auto !important;
    margin-right: 16px !important;
}

.info {
    text-align: center;
}

.title {
    margin-bottom: 8px !important;
}

.phone-number {
    margin: 0;
}

.address-container {
    text-align: center;
}

/* Media Query for Desktop */

@media (min-width: 769px) {
    .footer-container {
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .column-footer {
        width: calc(25% - 20px);
        text-align: left;
        align-items: flex-start;
    }

    .info-container, .address-container {
        flex-direction: row;
        text-align: left;
    }

    .info {
        text-align: left;
    }

    .phone-icon {
        margin-right: 16px;
        margin-bottom: 0;
    }

    .address-container {
        margin-top: 16px;
        text-align: left;
    }

/* Sticky CTA */

    #sticky-cta {
        display: none;
    }
}

/* Media Queries */
@media only screen and (max-width: 480px) {
    .mobile-hidden {
        display: none !important;
    }

    .responsive-td {
        width: 100% !important;
        display: block !important;
        padding: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .WautoHauto {
      width:100% !important; height:auto !important;
      margin:0 auto !important;
  }

    .M-center {
      text-align:center;
}


/* Header */

    .section-container {
  min-height: 1460px;
}

    .blue-background {
  height: 750px;
  padding: 20px 20px;
}
    .custom-columns {
    flex-direction: column;
  }

    .left-column, .right-column {
    width: 100%;
}

    .left-column {
    padding: 0px 20px;
}

    .right-column {
    margin-top: 20px;
  }

    .form-container {
    top: 0;
    margin-left: 0;
}

    /* Button */

.button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .button-container button {
        margin-bottom: 24px;
    }

    /* fontes */

.font-Xlarge {
    font-size: 24px;
    line-height: 1.1em;
    font-weight: 600;
}

.font-large {
    font-size: 20px;
    line-height: 1.1em;
    font-weight: 600;
}

.font-testify {
    font-size: 16px;
}

/* footer */

.footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .column-footer {
        width: 100%;
        text-align: center;
    }

    .info-container, .address-container {
        flex-direction: column;
        text-align: center;
    }

    .phone-icon {
        margin-bottom: 16px !important;
    }

    .info {
        text-align: center;
    }

    .address-container {
        text-align: center;
    }
    
/* horizontal Spacing */

.horizontal-spacing-zero {
    padding-left: 0;
    padding-right: 0;
}

.horizontal-spacing-small {
    padding-left: 8px;
    padding-right: 8px;
}

.horizontal-spacing-medium {
    padding-left: 16px;
    padding-right: 16px;
}

.horizontal-spacing-large {
    padding-left: 20px;
    padding-right: 20px;
}
    
/* horizontal Margin */

.horizontal-margin-zero {
    margin-left: 0;
    margin-right: 0;
}

.horizontal-margin-small {
    margin-left: 8px !important;
    margin-right: 8px !important;
}

.horizontal-margin-medium {
    margin-left: 16px;
    margin-right: 16px;
}

.horizontal-margin-large {
    margin-left: 20px;
    margin-right: 20px;
}

#sticky-cta {
    z-index: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 95%;
    background-color: var(--secondary-color);
    text-align: center;
    padding: 15px 0;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
    border-radius: 20px 20px 0 0;
    display: none;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    margin: auto;
}

#sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    padding: 0 15px;
}
}