/* CSS générique */

.txt-background {
    background: #292929;
    color: white;
}

.txt-color-primary {
    color: #057C95;
}

.txt-color-secondary {
    color: #292929;
}

.txt-color-white {
    color: #FFFFFF;
}

.lc-main {
    color: #292929;
    letter-spacing:0.42px;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

ul li {
    margin-bottom: 10px;
}

ul li:last-child {
    margin-bottom: 0;
}

.underline, 
.underline-white {
    display: inline-block;
}

.underline::after {
    content: "";
    display: block;
    width: 100%; /* Le soulignement s'ajustera à la largeur du texte */
    height: 2px; /* Épaisseur du soulignement */
    background-color: #292929; /* Couleur du soulignement */
    margin-top: 1px; /* Ajuster la distance entre le texte et le soulignement */
}

.underline-white::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    margin-top: 0.5px;
}

@media only screen and (max-width:782px) {
    .mobile-break {
        display: none;
    }
}
/* CSS personnalisé */

/* HERO */

.lc-ttl {
    text-align: center;
    font-size: 66px;
    margin-top: 80px;
}

.ttl-black {
    padding: 0 10px;
}

@media only screen and (max-width:782px) {
    .lc-ttl {
        font-size: 25px;
        margin-top: 40px;
    }
}

/* TEXT-MEDIA */

.lc-text-media {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 90px;
}

.lc-text,
.lc-media {
    width: 48%;
}

.lc-text h2 {
    font-size: 32px;
    margin-top: 0;
}

.lc-text p {
    font-size: 21px;
    letter-spacing: 0.42px;
}

@media only screen and (max-width:782px) {
    .lc-text-media {
        margin-top: 45px;
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .lc-text,
    .lc-media {
        width: 100%;
    }
    .lc-text h2 {
        font-size: 22px;
    }
    
    .lc-text p {
        font-size: 16px;
        letter-spacing: 0.42px;
    }
}

/* INFOGRAPHIE */

.lc-info {
    margin-top: 134px;
    border: 1px solid #292929;
    padding: 40px 70px 10px 0;
}

.lc-info-wrp {
    display: flex;
    justify-content: space-between;
}

.lc-info-media, 
.lc-info-text {
    width: 48%;
}

.lc-info-media {
    display: flex;
    justify-content: center;
}

.lc-info-media img {
    width: 470px;
    height: auto;
    margin-top: -200px;
    object-fit: contain;
}

.lc-info-text h2 {
    letter-spacing: 0.42px;
    font-size: 26px;
}

.lc-info-text p {
    font-size: 21px;
    letter-spacing: 0.42px;
}

.lc-info-text a {
    font-style: italic;
    text-decoration: underline;
}

@media only screen and (max-width:782px) {
    .lc-info-wrp {
        flex-direction: column;
    }
    .lc-info-media, 
    .lc-info-text {
        width: 100%;
    }
    .lc-info {
        padding: 10px;
    }
    .lc-info-media img {
        width: 100%;
        max-width: 300px; /* Cette règle peut être utilisée pour éviter que l'image soit trop large */
        height: auto;
        margin-top: -120px;
    }
    .lc-info-text p {
        font-size: 16px;
    }
    .lc-info-text h2 {
        font-size: 23px;
    }
}

/* TEXTE DEUX COLONNES */

.lc-text-2col {
    margin-top: 47px;
}

.lc-text-2col-ttl {
    text-align: center;
    font-size: 26px;
}

.lc-text-2col-wrp {
    display: flex;
    justify-content: space-between;
}

.lc-text-col1,
.lc-text-col2 {
    width: 48%;
    font-size: 21px;
}

.lc-text-col2 li::marker {
    color: #057C95;
}

@media only screen and (max-width:782px) {
    .lc-text-2col-wrp {
        flex-direction: column;
    }
    .lc-text-col1,
    .lc-text-col2 {
        width: 100%;
        font-size: 16px;
    }
    .lc-text-2col-ttl {
        font-size: 22px;
    }
}

/* BOXES */

.lc-boxes {
    margin-top: 64px;
    padding: 78px 0 88px 0;
    background: transparent linear-gradient(54deg, #007A8C 0%, #037C8D 3%, #56AEB1 100%) 0% 0% no-repeat padding-box;
}

.lc-boxes-subttl {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px !important;
    margin-top: 60px;
}

.lc-boxes h2 {
    font-size: 32px;
}

.lc-boxes h3 {
    margin-top: 58px;
    font-size: 21px;
}

.lc-boxes-first {
    padding: 50px;
    font-size: 21px;
}

.box {
    border: 2px solid;
}

.lc-boxes ul li::marker {
    color: #FFFFFF;
}

.lc-boxes-wrp {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.lc-boxes-twobox {
    display: flex;
    gap: 40px;
}

.lc-boxes-second {
    width: 40%;
}

.lc-boxes-third {
    width: 60%;
}

.lc-boxes-second, 
.lc-boxes-third {
    padding: 40px;
    font-size: 21px;
}

@media only screen and (max-width:782px) {
    .lc-boxes {
        padding: 40px 0;
    }
    .lc-boxes-ctn h2 {
        font-size: 24px;
    }
    .lc-boxes-subttl {
        font-size: 18px;
    }
    .lc-boxes-twobox {
        flex-direction: column;
    }
    .lc-boxes-second,
    .lc-boxes-third {
        width: 100%;
    }
    .lc-boxes-first,
    .lc-boxes-second,
    .lc-boxes-third {
        padding: 20px;
        font-size: 16px;
    }
    .lc-boxes-wrp,
    .lc-boxes-twobox {
        gap: 20px;
    }
}

/* SIGNAL */

.lc-signal {
    background-color: #292929;
    color: #FFFFFF;
    padding: 83px 0;
}

.lc-signal ul li::marker {
    color: #057C95;
}

.lc-signal ul li {
    margin-bottom: 15px;
}

.lc-signal a {
    text-decoration: underline;
    font-weight: 600;
}

.lc-signal-txt {
    font-size: 21px;
}

.number {
    text-decoration: none !important;
    font-weight: normal !important;
}

.lc-signal-desc {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.64px;
}

.lc-signal-media {
    display: flex;
    margin-top: 90px;
    gap: 60px;
}

.lc-signal-desc {
    width: 40%;
    margin-top: 50px;
}

.lc-signal-video {
    width: 60%;
    display: flex;
    justify-content: end;
    position: relative;
    cursor: pointer;
}

.lc-signal-video video{
    width: 100%;
    max-width: 730px;
    height: auto;
}

@media only screen and (max-width:1300px) {
    .lc-signal {
        padding: 40px 0;
    }
    .lc-signal-txt h2 {
        font-size: 24px;
    }
    .lc-signal-txt ul li {
        font-size: 18px;
    }
    .lc-signal-media {
        flex-direction: column;
        margin-top: 0;
        gap: 30px;
    }
    .lc-signal-desc,
    .lc-signal-video {
        width: 100%;
    }
    .lc-signal-desc {
        margin-top: 20px;
    }
    .lc-signal-desc h3 {
        font-size: 24px;
    }
    .lc-signal-video {
        justify-content: center;
    }
}




/* LINKS */

.lc-links {
    background-color: #FFFFFF;
    margin-top: -450px;
    padding: 85px 0 130px 0;
}

.lc-links h3 {
    font-size: 21px;
}

.lc-links-link p {
    padding: 7px;
    width: fit-content;
    text-decoration: underline;
}

.link {
    display: flex;
    gap: 10px;
}

@media only screen and (max-width:1300px) {
    .lc-links {
        margin-top: 0;
        padding: 40px 0;
    }
}

/* Header et Footer */

.page-template-landing-campagne header {
    height: 188px;
    background-color: #FFFFFF !important;
    box-shadow: 0px 3px 56px #00000029;
    display: flex;
    align-items: center;
}

.page-template-landing-campagne .header_container::after {
    content: none;
}

.page-template-landing-campagne .header_page_content {
    display: none;
}


.page-template-landing-campagne footer {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 56px #00000029;
    margin-top: 0;
}

.logo-wrp {
    display: flex;
    justify-content: space-between;
    padding: 0 178px;
    width: 100%;
}

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

    .page-template-landing-campagne header {
        height: 130px;
    }

    .logo-wrp {
        padding: 0 20px;
    }
    .logo-landing {
        height: auto;
        max-width: 25%;
    }
}