
.templateB{
    padding-bottom: 120px;
}

.templateB .breadcrumbs{
    margin-bottom: 80px;
}

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

.templateB .section{
    display: flex;
    align-items: center;
    gap: 140px;
}

.templateB .section.even{
    flex-direction: row-reverse;
}

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

.templateB .section .sur-titre{
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 5px;
}

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

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

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

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

.templateB .section .right{
    height: fit-content;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.templateB .section .right.rondes{
    border-radius: 100%;
}

.templateB .section .right.carrees{
    border-radius: 16px;
}

.templateB .section .imgContainer{
    height: auto;
    width: 100%;
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    position: relative;
}

.templateB .section .right .imgContainer::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(46, 103, 215, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.templateB .section .right img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 992px) {
    .templateB{
        padding-bottom: 50px;
    }
    .templateB .breadcrumbs{
        margin-bottom: 20px;
    }
    .templateB .section{
        flex-direction: column;
        gap: 40px;
    }
    .templateB .sections{
        gap: 50px;
    }
    .templateB .section.even{
        flex-direction: column;
    }
    .templateB .section .sur-titre{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .templateB .section .titre{
        font-size: 30px;
    }
    .templateB .section .left,
    .templateB .section .right{
        width: 100%;
    }
    .templateB .section .paragraphe{
        margin-top: 30px;
    }
    .templateB .section .btn{
        margin-top: 30px;
    }
    .templateB .section .right{
        display: block;
        border-radius: 0px !important;
        aspect-ratio: 1;
        width: 100%;
        transform: none;
        padding-inline: 0;
    }
    .templateB .section .right .imgContainer{
        width: 100%;
        min-width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    .templateB .section .right.rondes .imgContainer{
        border-radius: 100%;
    }
    .templateB .section .right.carrees .imgContainer{
        border-radius: 16px;
    }
}