/* BREAKPOINT */
/* HERO TITLE ANCRE */
.hero-primary {
    position: relative;
}

.hero-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.75;
}

.hero-primary img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-primary .hero-primary--content {
    padding: 144px 16px 64px 16px;
    display: flex;
    flex-direction: column;
    gap: 111px;
    z-index: 1;
    position: relative;
}

@media screen and (min-width: 768px) {
    .hero-primary .hero-primary--content {
        padding: 201px 80px 150px 80px;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.hero-primary .hero-primary--content .hero-primary--content-title {
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 768px) {
    .hero-primary .hero-primary--content .hero-primary--content-title {
        gap: 48px;
    }
}

@media screen and (min-width: 768px) {
    .hero-primary .hero-primary--content .hero-primary--content-title h1 {
        max-width: 740px;
        width: 100%;
    }
}

.hero-primary .hero-primary--content .hero-primary--content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button {
    font-size: 0.875rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    gap: 24px;
    position: relative;
    padding-right: 80px;
    color: var(--white);
    font-family: "Silka", sans-serif;
    font-weight: 500;
}

@media screen and (min-width: 1024px) {
    .hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button {
        padding-right: 102px;
    }
}

.hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--orange);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1024px) {
    .hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button::before {
        width: 72px;
        height: 72px;
    }
}

.hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button::after {
    content: "";
    position: absolute;
    -webkit-mask: url(../images/icon/bottomlongarrow.svg);
    mask: url(../images/icon/bottomlongarrow.svg);
    mask-size: contain;
    -webkit-mask: url(../images/icon/bottomlongarrow.svg);
    -webkit-mask-size: contain;
    width: 24px;
    height: 24px;
    right: 16px;
    background: var(--white);
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button::after {
        top: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button::after {
        right: 24px;
        top: auto;
    }
}

.hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button:hover::before {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.hero-primary .hero-primary--content .hero-primary--content-inner .scroll-button:hover::after {
    background-color: var(--white);
}

/* HERO TITLE ANCRE */

/* NAVTAB */
.navTab {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--white);
    padding: 18px 0 0 0;
}

@media screen and (min-width: 1024px) {
    .navTab {
        padding: 0;
    }
}

.navTab .navTab--container {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid var(--neutrals-light-grey, #F3F2F0);
}

.navTab .navTab--container::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 768px) {
    .navTab .navTab--container {
        padding: 18px 16px;
    }
}

@media screen and (min-width: 1281px) {
    .navTab .navTab--container {
        padding: 0 80px;
    }
}

.navTab .menu {
    position: relative;
    padding: 0 16px;
}

.rgpd .navTab {
    display: none;
}

@media screen and (min-width: 768px) {
    .navTab .container .menu {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0;
    }
}

@media screen and (min-width: 1281px) {
    .navTab .container .menu {
        padding: 18px 0;
    }
}

.navTab .menu .menu-item {
    text-align: center;
}

.navTab .menu .menu-item a.cta-secondary {
    display: flex;
    align-items: center;
}

.navTab .menu .menu-item a {
    display: inline-block;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.navTab .menu .menu-item a.active {
    font-style: italic;
    font-weight: 700;
    position: relative;
    border-bottom: 1px solid var(--orange);
    padding: 8px 0 15.5px 0;
}

@media screen and (min-width: 1025px) {
    .navTab .menu .menu-item a.active {
        border-bottom: unset;
        padding: 0;
    }
}

.navTab .menu .menu-item a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%) rotate(180deg);
    mask: url(../images/icon/vector.svg) no-repeat center;
    -webkit-mask: url(../images/icon/vector.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-maskmask-size: contain;
    background-color: var(--orange);
    width: 12.5px;
    height: 10px;
}

@media screen and (min-width: 1025px) {
    .navTab .menu .menu-item a.active::after {
        display: none;
    }
}

.navTab .menu .menu-item:hover a {
    font-style: italic;
    font-weight: 700;
}

.navTab #marker {
    height: 1px;
    background-color: var(--orange);
    position: relative;
    display: none;
}

@media screen and (min-width: 1025px) {
    .navTab #marker {
        display: flex;
    }
}

.navTab #marker span {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%) rotate(180deg);
    mask: url(../images/icon/vector.svg) no-repeat center;
    -webkit-mask: url(../images/icon/vector.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-maskmask-size: contain;
    background-color: var(--orange);
    width: 12.5px;
    height: 10px;
}

/* NAVTAB */