
.sectionHeader{
    min-height: calc(100vh - 172px);
    padding-block: 80px 130px;
    position: relative;
    display: flex;
    align-items: center;
}

.sectionHeader .background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sectionHeader .container{
    z-index: 1;
}

.sectionHeader .figcaption{
    background-color: #fff;
    padding: 50px;
    border-radius: 24px;
    max-width: 600px;
    position: relative;
}

.sectionHeader .titre{
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 16px;
    color: var(--primary);
    text-transform: uppercase;
}

.sectionHeader .soustitre{
    font-size: 32px;
    line-height: 38px;
    font-weight: normal;
    margin-bottom: 24px;
    color: var(--secondary);
}

.sectionHeader .btn{
    margin-top: 24px;
}

.sectionHeader::before{
    position: absolute;
    opacity: 0.70;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 0;
    content: "FORNEL";
    font-weight: bold;
    font-size: 20vw;
    line-height: 15vw;
    color: #fff;
    text-align: center;
}

.page-613 .sectionHeader::before{
    content: "BOISSONOT";
    font-size: 14vw;
    line-height: 12vw;
}

.page-619 .sectionHeader::before{
    content: "CAP FOCÉAN";
    font-size: 14vw;
    line-height: 12vw;
}

.page-617 .sectionHeader::before{
    content: "AUNIS FRUITS";
    font-size: 12vw;
    line-height: 10vw;
}

.sectionHeader .btnArrowContainer{
    position: absolute;
    bottom: -75px;
    left: 0px;
}

.btnArrow{
    border-radius: 100px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: 300ms ease;
    background-color: #fff;
    border: solid 1px var(--primary);
    cursor: pointer;
}
  
.btnArrow svg{
    transition: 300ms ease;
    height: 28px;
    width: 19px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: animBtnArrowSVG 2000ms ease-in-out infinite;
}

.btnArrow::after{
    content: "";
    position: absolute;
    height: 28px;
    width: 19px;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    transition: 300ms ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.61' height='28.078' viewBox='0 0 18.61 28.078'%3E%3Cpath id='Tracé_71' data-name='Tracé 71' d='M3.657,8.614l24.38-.081.041,1.869-24.015.041,6.7,6.7L9.305,18.61,0,9.346V9.305L1.463,7.842,9.305,0l1.463,1.5Z' transform='translate(0 28.078) rotate(-90)' fill='%2323346a' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: animBtnArrowAfter 2000ms ease-in-out infinite;
}

.sectionHeader .breadcrumbsContainer{
    margin-bottom: 24px;
    position: absolute;
    top: 24px;
    width: 100%;
}

.frontpage .sectionHeader .breadcrumbsContainer{
    display: none;
}

.sectionHeader .breadcrumbs li *,
.sectionHeader .breadcrumbs{
    color: #fff;
}

.sectionHeader .breadcrumb li::after{
    background-image: url("data:image/svg+xml,%3Csvg id='next' xmlns='http://www.w3.org/2000/svg' width='4.566' height='8.455' viewBox='0 0 4.566 8.455'%3E%3Cg id='Groupe_7' data-name='Groupe 7' transform='translate(0 0)'%3E%3Cpath id='Tracé_19' data-name='Tracé 19' d='M4.47,4,.559.1A.328.328,0,0,0,.1.56L3.774,4.228.1,7.9a.328.328,0,0,0,.463.464L4.47,4.46A.328.328,0,0,0,4.47,4Z' transform='translate(0 0)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.sectionHeader .logo{
    margin-bottom: 24px;
    max-width: 350px;
    width: 100%;
}

@keyframes animBtnArrowSVG {
    0% {
        top: 50%;
    }
    20% {
        top: 150%;
    }
    100% {
        top: 150%;
    }
}

@keyframes animBtnArrowAfter {
    0% {
        top: -50%;
    }
    20% {
        top: 50%;
    }
    100% {
        top: 50%;
    }
}

@media (max-width: 1600px) {
    .sectionHeader .figcaption{
        padding: 52px 40px;
    }
    .sectionHeader .titre{
        font-size: 42px;
        line-height: 50px;
    }
    .sectionHeader .soustitre{
        font-size: 27px;
        line-height: 33px;
    }
}

@media (max-width: 1400px) {
    .sectionHeader{
        min-height: calc(100vh - 132px);
    }
    .sectionHeader::before{
        line-height: 18vw;
    }
    .page-613 .sectionHeader::before,
    .page-619 .sectionHeader::before{
        line-height: 13vw;
    }
    .page-617 .sectionHeader::before{
        line-height: 12vw;
    }
}

@media (max-width: 992px) {
    .sectionHeader .figcaption{
        padding: 24px;
    }
    .sectionHeader .titre{
        font-size: 30px;
        line-height: 35px;
    }
    .sectionHeader .soustitre{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .sectionHeader::before{
        font-size: 24vw;
        line-height: 18vw;
        bottom: 50px;
    }
    .page-613 .sectionHeader::before,
    .page-619 .sectionHeader::before{
        line-height: 10vw;
    }
    .page-617 .sectionHeader::before{
        font-size: 13vw;
        line-height: 9vw;
    }
    .sectionHeader .breadcrumbsContainer{
        top: 8px;
    }
}

@media (max-width: 700px) {
    .sectionHeader{
        min-height: calc(100svh - 116px);
        padding-block: 40px 130px;
    }
    .sectionHeader .btnArrowContainer{
        bottom: -60px;
    }
}

@media (max-width: 600px) {
    .sectionHeader{
        min-height: calc(100svh - 107px);
    }
}





