
.templateC{
    padding-bottom: 80px;
}

.templateC .breadcrumbs{
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .templateC{
        padding-bottom: 60px;
    }
    .templateC .breadcrumbs{
        margin-bottom: 20px;
    }
}

/* ----------------------- HEADER ----------------------- */

.templateC .header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 140px;
    margin-bottom: 90px;
}

.templateC .header .titre{
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 500;
}

.templateC .header .titre strong{
    color: var(--color-secondary);
    font-weight: 500;
}

.templateC .header img{
    grid-column: span 2;
    width: 100%;
    height: auto;
    aspect-ratio: 132/50;
}

@media (max-width: 1600px) {
    .templateC .header .titre{
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .templateC .header{
        grid-template-columns: 1fr;
        margin-bottom: 60px;
        gap: 0px;
    }
    .templateC .header .titre{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .templateC .header img{
        margin-top: 30px;
        grid-column: span 1;
        aspect-ratio: 380/170;
    }
}

/* ----------------------- SECTIONS ----------------------- */

.templateC .sections{
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.templateC .sections .section{
    display: flex;
    gap: 140px;
}

.templateC .sections .section .left,
.templateC .sections .section .right{
    width: 50%;
}

.templateC .sections .section .titre{
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 500;
}

.templateC .sections .section .titre strong{
    color: var(--color-secondary);
    font-weight: 500;
}

.templateC .sections .section .paragraphe{
    margin-top: 35px;
}

.templateC .sections .section .btn{
    margin-top: 35px;
}

.templateC .sections .section .imgContainer{
    position: relative;
    display: block;
}

.templateC .sections .section img{
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 100%;
}

@media (max-width: 1600px) {
    .templateC .sections .section{
        gap: 100px;
    }
    .templateC .sections .section .titre{
        font-size: 40px;
    }
}

@media (min-width: 993px) {
    .templateC .sections .section:nth-child(even) .right{
        order: -1;
    }
}

@media (max-width: 992px) {
    .templateC .sections{
        gap: 70px;
    }
    .templateC .sections .section{
        flex-direction: column;
        gap: 40px;
    }
    .templateC .sections .section .titre{
        font-size: 30px;
    }
    .templateC .sections .section .left,
    .templateC .sections .section .right{
        width: 100%;
    }
    .templateC .sections .section .paragraphe{
        margin-top: 25px;
    }
    .templateC .sections .section .btn{
        margin-top: 25px;
    }
}
