/*
** Ce fichier regroupe toutes les class CSS utilisées pour le site ;
*/

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=Yeseva+One&display=swap');

:root {
    --color-primary: #FB9100;
    --color-primary-rgb: 251, 145, 0;
    --color-primary-foreground: #fff;

    --color-secondary: #295CAE;
    --color-secondary-rgb: 41, 92, 174;

    --color-text: #424242;
    --color-border: #DCDCDC;

    --color-bg-dark: #2F2F2F;

    --block-shadow: 15px 15px;
    --radius-small: 10px;
    --shadow-text: 0 4px 4px rgba(0,0,0,.25);
}

html,
body {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 400;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}
html,
body,
p {
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.647rem;
    font-weight: 400;
}
p {
    line-height: 26px;
}
strong {
    font-weight: 600;
}
section {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 100%;
}
.section-pt {
    padding-top: 20px;
}
h1, h2, h3 {
    color: var(--color-secondary);
    font-weight: 600;
}
h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
}
h2 {
    font-family: "Yeseva One", cursive;
    font-size: 60px;
    margin-bottom: 58px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 69px;
}
h3 {
    font-size: 23px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;

    background-image: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    color: transparent;
    background-clip: text;
}
h4 {
    font-size: 20px;
}
.text-gradient {
    background-image: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    color: transparent;
    background-clip: text;
}
.color-primary {
    color: var(--color-primary) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.bg-primary {
    background: var(--color-primary) !important;
}
.bg-secondary {
    background: var(--color-seondary) !important;
}
.row {
    margin-left: -16px;
    margin-right: -16px;
}
[class^=col-] {
    padding-left: 16px;
    padding-right: 16px;
}

/* Navigation & Navbar */

nav.nav-wrapper {
    position: relative;
}
nav.nav-wrapper .nav-inline {
    padding: 35px 0;
}
nav.nav-wrapper .container {
    display: flex;
    align-items: center;
    flex-direction: row;
}
nav .nav-logo-placeholder {
    width: 248px !important;
    height: 5px;
    flex: 1 !important;
}
nav .logo-wrapper {
    margin-bottom: -110px;
    position: relative;
    z-index: 1028;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 248px;
    max-width: 248px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
nav .logo-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
nav .nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
}
nav .nav-menu li {
    list-style: none;
    width: max-content;
    flex: unset;
}
nav .nav-menu li a {
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    transition: all .2s;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    padding: 10px 28px;
}
nav .nav-menu li a:hover {
    text-decoration: none;
    color: var(--color-primary);
}
nav .nav-menu li button .bi-chevron-down {
    display: inline-block;
    transition: all .2s ease;
    vertical-align: 2px;
    -webkit-text-stroke: thin;
    font-size: 12px;
}
nav .nav-menu li button[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(-180deg);
}
nav .nav-menu li a.active {
    color: var(--color-primary);
}
nav .nav-menu-btn {
    background: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-align: center;
    border: none;
    -webkit-appearance: none;
    transition: all .2s;
}
nav .nav-menu-btn.bi-x {
    background: #fff;
    color: var(--color-secondary);
    border-color: #fff;
}

/* Header */

header.hero {
    position: relative;
    padding-top: 44px;
    background-color: var(--color-secondary);
    background-image: url('../img/01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100vw;
    overflow: hidden;
}
header.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
header.hero h1 {
    font-family: "Yeseva One", cursive;
    font-size: 55px;
    line-height: 55px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 0 4px 4px rgba(0,0,0,.25);
}
header.hero h1 span {
    background-color: transparent;
    padding: 0;
    display: block;
    text-align: center;
    font-family: "M PLUS 2", sans-serif;
    font-size: 23px;
    line-height: 39px;
    font-weight: 300;
}
header.hero p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
header.hero .hero-mention {
    display: block;
    color: #fff;
    background-color: var(--color-primary);
    box-shadow: 0 4px 4px rgba(0,0,0,.15);
    padding: 8px 16px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 28px;
}
header.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
header .header-content {
    padding: 348px 15px 85px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    position: relative;
}
header .header-content.header-content-small h1,
header .header-content.header-content-small p {
    text-shadow: 0 0 28px rgba(0,0,0,5);
}
header .header-content::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40%;
    width: 100%;
    background-image: linear-gradient(
        0deg,
        rgba(var(--color-primary-rgb), 1) 5%,
        rgba(255, 0, 170, .3) 60%,
        rgba(var(--color-primary-rgb), 0) 100%
    );
}
header.hero-small .header-content {
    padding: 160px 15px 80px 15px;
}
header h1:not(> span) {
    text-shadow: var(--text-shadow);
}

/* Footer */

.footer-bottom {
    background-color: var(--color-bg-dark);
    padding: 36px 64px;
}
.footer-bottom p {
    color: #fff;
    font-weight: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.footer-bottom a {
    color: white;
}
.footer-bottom a:hover {
    color: var(--color-primary);
}
footer {
    font-size: 14px;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 24px;
    font-weight: 400;
}
footer * {
    color: var(--color-text);
}
footer .color-muted {
    color: #BABABA;
}
footer ul {
    margin-bottom: 0;
}
footer a:hover {
    color: var(--color-primary);
}

/* Related Articles */

.related-item {
    display: block;
    width: 100%;
    transition: all .2s;
    padding-top: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 50px rgba(var(--color-primary-rgb), .13);
}
a.related-item:hover {
    text-decoration: none;
    transform: scale(1.04) !important;
}
.related-item .related-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.related-item .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.related-item .related-image::after {
    content: " ";
    width: 100%;
    height: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.related-item .related-infos {
    padding: 25px;
    position: relative;
}
.related-item .related-infos p {
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
}
.related-item .related-infos h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.related-item .related-infos * {
    text-shadow: 0 1px 5px rgba(0,0,0,.5);
}

/* Pagination */

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.pagination-btn {
    width: auto;
    height: 32px;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    transition: all .2s ease-in-out;
    border: none;
}
.pagination-btn:hover {
    color: var(--color-primary);
    text-decoration: none;
}
.pagination-btn.active {
    color: #fff;
    font-weight: 600;
    color: var(--color-primary);
}

/* Grid Images */
.grid-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.grid-img-wrapper img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
}
.grid-img-wrapper img:first-child {
    flex: none;
    width: calc(38% - 12px);
    height: 350px;
}
.grid-img-wrapper img:nth-child(2) {
    flex: none;
    width: calc(62% - 12px);
    height: 350px;
}
.grid-img-wrapper img:nth-child(3),
.grid-img-wrapper img:nth-child(4),
.grid-img-wrapper img:nth-child(5) {
    flex: 1;
    width: auto;
    height: 350px;
}

/* Gallery */

.img-expand {
    cursor: pointer;
    transition: all .2s ease;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 4px rgba(0,0,0,.15);
}
.img-expand:hover {
    filter: brightness(.8);
}

/* Modal */

.modal-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: scroll;
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    transition: all .2s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1024;
    padding: 15px;
    pointer-events: none;
    opacity: 0;
}
.modal-expand .modal-expand-content {
    margin: auto;
    transition: all .2s ease;
    position: relative;
    transform: scale(.8);
    opacity: 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.modal-expand .modal-expand-content .modal-expand-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--color-text-primary);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    border: none;
}
.modal-expand .modal-expand-nav .modal-expand-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--color-text-primary);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    opacity: .6;
    transition: all .2s ease;
}
.modal-expand .modal-expand-nav .modal-expand-btn:hover {
    opacity: 1;
}
.modal-expand .modal-expand-nav .modal-expand-btn#modalBtnPrev {
    left: 4px;
}
.modal-expand .modal-expand-nav .modal-expand-btn#modalBtnNext {
    right: 4px;
}
.modal-expand .modal-expand-content img {
    width: auto;
    height: 100%;
}
.modal-expand.show {
    pointer-events: auto;
    opacity: 1;
}
.modal-expand.show .modal-expand-content {
    transform: scale(1);
    opacity: 1;
}
.modal-expand .modal-expand-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-image: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

/* Galery */

.galery-wrapper img {
    cursor: pointer;
    transition: all .1s ease-in-out;
}
.galery-wrapper img:hover {
    filter: brightness(.7) grayscale(.5)
}

/* Lightbox */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox-overlay video {
    width: 90%;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.visible img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Map */

.map-wrapper {
    display: block;
    width: 100%;
    /* padding-top: 100%; */
    height: 100%;
    position: relative;
}
.map-wrapper #map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mapboxgl-ctrl-top-left {
    display: none;
}

/* Sections */

.section-dark {
    background-color: var(--color-bg-dark);
    padding-top: 30px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.section-dark .icon-quote {
    position: absolute;
    top: -3px;
    left: -40px;
    width: 220px;
    height: auto;
}
.section-dark h2 {
    margin-top: 82px;
    padding-left: 74px;
}
.section-dark .block {
    background-color: #F1EEEE;
    position: relative;
    z-index: 1;
}
.section-dark .block .block-body {
    padding: 81px 252px 0 83px;
}
.section-dark .block .block-body-full {
    padding: 80px;
}
.section-dark .block p {
    color: var(--color-text);
}
.section-dark .block .btn-bf-wrapper {
    padding-left: 83px;
    padding-bottom: 106px;
    overflow: hidden;
    position: relative;
}
.section-dark .block .btn-bf-icon {
    position: absolute;
    width: 186px;
    height: 186px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    padding: 34px 46px 61px 69px;
    left: -15px;
    bottom: -34px;
}
.section-dark .block .btn-bf {
    margin-top: 58px;
    display: inline-block;
    position: relative;
    background-color: #F1EEEE;
    z-index: 1;
}
.section-dark .block .btn-bf span {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background-image: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    color: transparent;
    background-clip: text;
}
.section-dark .block .btn-bf:before {
    content: " ";
    background-color: #F1EEEE;
    position: absolute;
    inset: -10px;
    z-index: -1;
}
.section-dark .block .img-fluid {
    position: absolute;
    right: -180px;
    top: 129px;
}
.section-bg {
    background-image: url('../img/04.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 113px;
    padding-bottom: 94px;
}
.section-bg h2 {
    margin-bottom: 436px;
}
.section-bg:has(.subh2) h2 {
    margin-bottom: 10px;
}
.section-bg:has(.subh2) .subh2 {
    margin-bottom: 436px;
}
.section-bg .subh2,
.section-bg .text-lg {
    font-size: 20px;
    color: #fff;
    text-align: center;
}
.section-bg .text-lg {
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 15px rgba(0,0,0,1);
}
.section-video,
.section-map {
    padding-top: 109px;
    padding-bottom: 109px;
    position: relative;
    z-index: 1;
}

.section-map .map-wrapper {
    max-width: 70vw;
}
.section-video:after {
    content: " ";
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg,
        rgba(245, 29, 29, 0) 0%,
        rgba(245, 94, 29, .12) 25%,
        rgba(244, 98, 16, 1) 61%,
        rgba(243, 143, 7, 1) 100%
    );
}
.section-map:after {
    content: " ";
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg,
        rgba(245, 29, 29, 0) 0%,
        rgba(245, 94, 29, .12) 35%,
        rgba(244, 98, 16, 1) 61%,
        rgba(243, 143, 7, 1) 100%
    );
    pointer-events: none;
}
.section-map .row,
.section-map .container {
    pointer-events: none;
}
.section-map .row div[class^="col-"] {
    pointer-events: auto;
}
.section-video:before {
    content: " ";
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030605;
    background-image: url('../img/05.jpg');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.section-video.section-video-bis:before {
    background-image: url('../img/06.jpg');
    background-size: cover;
    width: 70%;
}
.section-map .map-wrapper {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-video .col-lg-6:has(.btn-video) {
    position: static;
}
.section-video h2,
.section-map h2 {
    font-size: 46px;
    color: #fff;
    margin-bottom: 29px;
    line-height: 53px;
}
.section-video ul,
.section-map ul {
    padding-left: 40px;
    padding-right: 15px;
    list-style: none;
    margin-bottom: 29px;
}
.section-video ul li,
.section-map ul li {
    color: #000;
}
.section-video ul li:not(:last-child),
.section-map ul li:not(:last-child) {
    margin-bottom: 7px;
}
.section-video ul li::before,
.section-map ul li::before {
    content: " ";
    width: 7px;
    height: 7px;
    border-radius: 0;
    background-color: #fff;
    position: absolute;
    left: -40px;
    top: 11px;
}
.section-video p,
.section-map p {
    font-size: 22px;
    font-weight: 500;
    line-height: 26.3px;
    color: #fff;
    margin-bottom: 29px;
}
.section-video .btn-video {
    position: absolute;
    top: 255px;
    left: calc(50vw - 160px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 131px;
    height: 131px;
    padding: 5px;
    transition: all .1s ease-in-out
}
.section-video .btn-video img {
    width: 100%;
    height: 100%;
}
.section-video .btn-video:hover {
    cursor: pointer;
    transform: scale(1.08);
}

.section-light {
    background-color: #fff;
    padding-top: 108px;
    padding-bottom: 92px;
    position: relative;
}
.section-light h2 {
    text-align: center;
    margin-bottom: 41px;
    position: relative;
    font-size: 55px;
    line-height: 63.5px;
}
.section-light h2:before {
    content: " ";
    background-color: #fff;
    inset: -4px;
    position: absolute;
    z-index: -1;
}
.section-light .container {
    position: relative;
    z-index: 1;
}
.section-light .section-shape {
    position: absolute;
    z-index: 0;
    position: absolute;
    top: 63px;
    left: calc(50vw - 656px);
    width: 178px;
    height: 257px;
}
.section-light p {
    padding-left: 254px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 33.3px;
    font-weight: 300;
    max-width: 88%;
}
.section-gallery {
    padding-top: 0;
    padding-bottom: 0;
}
.section-gallery .row {
    margin-left: 0;
    margin-right: 0;
}
.section-gallery div[class^="col-"] {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}
.section-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 480/310;
    object-fit: cover;
    object-position: top;
    transform-origin: top;
    transform: scale(1.1);
}
.gallery-wrapper {
    padding: 2rem 1rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.gallery-grid img {
    flex: 1 1 200px;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top;
    width: 25%;
    height: auto;
    display: block;
    max-height: 250px;
}
.section-blur {
    background-color: #000;
    padding-top: 85px;
    padding-bottom: 105px;
    position: relative;
    overflow: hidden;
}
.section-blur span {
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    filter: blur(84px);
    -webkit-filter: blur(84px);
    -moz-filter: blur(84px);
    -o-filter: blur(84px);
}
.section-blur span:nth-child(1) {
    background-color: #fff;
    opacity: .42;
    top: -152px;
    left: calc(50vw - 348px);
    width: 337px;
    height: 337px;
}
.section-blur span:nth-child(2) {
    background-color: rgba(var(--color-primary-rgb), .87);
    opacity: 1;
    top: -200px;
    left: calc(50vw - 46px);
    width: 434px;
    height: 434px;
}
.section-blur span:nth-child(3) {
    background-image: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    opacity: .56;
    top: 166px;
    left: calc(50vw - 190px);
    width: 239px;
    height: 239px;
}
.section-blur .container {
    position: relative;
    z-index: 1;
}
.section-blur p {
    color: #fff;
    font-weight: 300;
}
.section-blur .btn-bf {
    color: var(--color-primary);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: .2px;
    margin-top: 32px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}
.section-blur .btn-bf:before {
    content: " ";
    width: 186px;
    height: 186px;
    aspect-ratio: 1/1;
    position: absolute;
    top: -9px;
    left: -88px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    opacity: .17;
    background-image: url('../img/icons/arrow.svg');
    background-size: 88px;
    background-position: 50% 40%;
    background-repeat: no-repeat;
    filter: brightness(10) grayscale(1);
}
.contact-form {
    position: relative;
    z-index: 2;
}
.contact-form::before {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    z-index: -1;
}
.section-bg {
    background-image: url('../img/04.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 113px;
    padding-bottom: 94px;
}
.section-blur:has(.subh2) h2 {
    margin-bottom: 10px;
}
.section-blur:has(.subh2) .subh2 {
    margin-bottom: 50px;
}
.section-blur .subh2 {
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-weight: 400;
}

.block-sm {
    background-color: rgba(241, 238, 238, .96);
    padding: 50px 34px 51px;
}
.block-sm p {
    padding-bottom: 15px;
}
.block-sm h3 {
    text-align: center;
}

.tag {
    background-color: var(--color-primary);
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
    margin: 5px;
    line-height: 18px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}
.tag small {
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 5px;
    line-height: 16px;
}
.tag:last-child {
    background-color: #DB0956;
}

/* Timeline */
.timeline-wrapper {
    padding-left: 40px;
    width: fit-content;
    margin: 0 auto;
}
.timeline-item {
    position: relative;
}
.timeline-item::before {
    content: " ";
    position: absolute;
    top: 6px;
    left: -40px;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 100%;
    background-color: #fff;
    border: 4px solid #000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .4);
    transform: scale(0);
}
.timeline-item:not(:last-child)::after {
    content: " ";
    position: absolute;
    top: 22px;
    left: -33px;
    width: 1px;
    /* height: calc(100% + 83px); */
    height: 0px;
    display: block;
    background-color: rgba(255, 255, 255, .4);
}
.timeline-item:nth-child(1)::before {
    animation: projectBullet 1s forwards .5s;
}
.timeline-item:nth-child(1)::after {
    animation: projectLine 1s forwards 1s;
}
.timeline-item:nth-child(2)::before {
    animation: projectBullet 1s forwards 2s;
}
.timeline-item:nth-child(2)::after {
    animation: projectLine 1s forwards 3s;
}
.timeline-item:nth-child(3)::before {
    animation: projectBullet 1s forwards 4s;
}
.timeline-item:nth-child(3)::after {
    animation: projectLine 1s forwards 5s;
}
.timeline-item:not(:last-child) {
    margin-bottom: 50px;
}
.timeline-item h3 {
    font-size: 18px;
    text-transform: none;
    margin: 0;
    color: #fff;
}

@keyframes projectBullet {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes projectLine {
    from {
        height: 0px;
    }
    to {
        height: calc(100% + 33px);
    }
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: .75em;
}
article h2 {
    font-size: 38px;
}
article,
article p {
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(var(--color-text-rgb), .8)
}

/* WYSIWYG */

.article-wp img {
    box-shadow: 0 0 50px 10px rgba(0,0,0,.05);
}
.article-wp ul,
.article-wp ol {
    margin-top: 40px;
    margin-bottom: 40px;
}
.wys-featured-img {
    width: 100%;
    max-width: 100%;
}
.article-wp .wys-img-left {
    float: left;
    margin: 5px 30px 15px 0;
}
.article-wp .wys-img-right {
    float: right;
    margin: 5px 0 15px 30px;
}
.article-wp .wys-highlighted {
    margin: 40px auto;
    width: 75%;
    padding: 40px;
    font-style: italic;
    background-color: #F1EEEE;
}

/* Buttons */

.btn {
    border: none;
    padding: 10px 35px 12px;
    font-weight: 500;
    border-radius: 50px;
    transition: all .2s;
    letter-spacing: .32px;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--color-primary-foreground);
}
.btn.btn-primary {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;

    background: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--color-primary) 10%, #DB0956 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.btn.btn-primary:hover {
    background-color: var(--color-secondary);
}
.btn.btn-secondary {
    background-color: #fff;
    font-size: 15px;
    padding: 13px 35px 14px;
    color: #000;
}
.btn.btn-secondary:hover {
    background-color: var(--color-primary);
}
.btn i,
.btn .bi {
    vertical-align: 1px;
    margin-right: 4px;
}
.btn:focus,
button:focus {
    outline: none;
}

#scrollTopButton {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1032;
    font-size: 22px;
}
#scrollTopButton i::before {
    font-weight: 800 !important;
}

/* Inputs */

.form-control {
    border-radius: 22px;
    height: 48px;
    padding: 15px 18px;
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb),.2);
}
.form-check-input {
    margin-top: 5px;
}
select.form-control {
    padding: 2px 18px;
}
input[type="file"] {
    appearance: none;
    -webkit-appearance: none;
    line-height: 20px;
    padding: 3px 44px;
    position: relative;
    cursor: pointer;
}
input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    width: 100%;
    display: block;
    height: 0;
}
input[type="file"]::before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" color="darkgrey" width="16" height="16" fill="darkgrey" class="bi bi-file-earmark-text" viewBox="0 0 16 16"><path d="M5.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zM5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5z"/><path d="M9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.5L9.5 0zm0 1v2A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z"/></svg>');
    width: 20px;
    height: 20px;
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-43%);
}
.form-group label {
    line-height: 1em;
}
label[required]::after,
label[required="required"]::after {
    content: "*";
    color: var(--color-primary);
}

/* Dropdowns */

.dropdown-menu {
    border-radius: 0;
    border-color: transparent;
    box-shadow: 0 0 37px rgba(0,0,0,.06);
}
.dropdown-item {
    font-size: 16px;
    padding: 10px 20px;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    background: var(--color-primary);
}

/* Responsive ; Media Queries */

@media (min-width:1200px) and (max-width: 1399px) {
    .section-light h2 {
        font-size: 51px;
        line-height: 58px;
    }
    .section-light .section-shape {
        left: calc(50vw - 606px);
    }
    .section-light p {
        padding-left: 174px;
        max-width: 94%;
    }
}
@media (max-width: 1399px) {
    h2 {
        font-size: 50px;
        line-height: 59px;
    }
    nav .nav-menu li a {
        padding: 10px 20px;
    }
    .section-dark h2 {
        margin-top: 72px;
        padding-left: 64px;
        margin-bottom: 40px;
    }
    .section-dark .block .img-fluid {
        right: -220px;
    }
    .section-dark .block .block-body {
        padding: 60px 230px 0 60px;
    }
    .section-dark .block .block-body-full {
        padding: 60px;
    }
    .section-dark .block .btn-bf-wrapper {
        padding-left: 60px;
        padding-bottom: 76px;
    }
    .section-dark .block .btn-bf {
        margin-top: 38px;
    }
    .section-dark .block .btn-bf-icon {
        bottom: -66px;
        left: -38px;
    }
}
@media (max-width: 1199px) {
    nav .logo-wrapper {
        width: 208px;
        max-width: 208px;
        height: 79px;
    }
    nav .nav-logo {
        margin-bottom: -100px;
    }
    .section-video,
    .section-map {
        padding-top: 60vw;
    }
    .section-video:before {
        background-size: 100% auto;
        background-position: top center;
    }
    .section-video.section-video-bis:before {
        width: 100%;
        height: 65%;
    }
    .section-map .map-wrapper {
        height: 65%;
        max-width: 100%;
    }
    .section-video:after {
        background-image: linear-gradient(
            180deg,
            rgba(245, 29, 29, 0) 0%,
            rgba(245, 94, 29, .12) 25%,
            rgba(244, 98, 16, 1) 61%,
            rgba(243, 143, 7, 1) 100%
        );
    }
    .section-map:after {
        background-image: linear-gradient(
            180deg,
            rgba(245, 29, 29, 0) 0%,
            rgba(245, 94, 29, .12) 45%,
            rgba(244, 98, 16, 1) 61%,
            rgba(243, 143, 7, 1) 100%
        );
    }
    .section-video .btn-video {
        top: 29vw;
        left: calc(50vw + 105px);
    }
    .section-light h2 {
        font-size: 41px;
        line-height: 53px;
    }
    .section-light .section-shape {
        left: calc(50vw - 526px);
    }
    .section-light p {
        padding-left: 144px;
        max-width: 100%;
    }
    .section-bg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .block-sm {
        padding: 35px;
    }
}
@media (max-width:575px) {
    section {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .block-body,
    .section-dark .block .block-body-full {
        padding: 20px;
    }
    .timeline-item:not(:last-child) {
        margin-bottom: 30px;
    }
    @keyframes projectLine {
        from {
            height: 0px;
        }
        to {
            height: calc(100% + 13px);
        }
    }
}
@media (min-width:576px) and (max-width:990px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .block-body,
    .section-dark .block .block-body-full {
        padding: 40px;
    }
}

@media (max-width:991px) {
    nav .nav-menu {
        position: absolute;
        top: 100%;
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(21px);
        -webkit-backdrop-filter: blur(21px);
        -moz-backdrop-filter: blur(21px);
        -o-backdrop-filter: blur(21px);
        width: 100%;
        z-index: 1024;
        left: 0;
        padding: 20px;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 110px 100px 0px rgba(0,0,0,.3);
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .2s;
        width: calc(100% - 30px);
        margin-left: 15px;
        border-radius: 10px;
        margin-top: 20px;
    }
    nav .nav-menu.opened {
        opacity: 1;
        transform: scaleY(1);
    }
    nav .nav-menu li:not(:last-child) {
        margin-bottom: 10px;
    }
    nav.nav-wrapper .container {
        justify-content: space-between;
    }
    nav .nav-menu li.nav-item-logo {
        display: none;
    }
    nav .nav-menu-btn {
        order: 2;
    }
    nav.nav-wrapper .nav-inline {
        padding: 10px 0;
    }
    nav .logo-wrapper {
        transform: none;
        top: unset;
        left: unset;
        position: relative;
        width: 250px;
        max-width: 300px;
        height: 96px;
        margin-bottom: 0;
    }
    nav .nav-logo-placeholder {
        display: none;
    }
    header.hero {
        padding-top: 20px;
    }
    header.hero .container {
        flex-direction: row;
    }
    .section-dark .block .img-fluid,
    .section-dark .img-fluid {
        position: static;
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: top;
    }
    .section-dark .block .block-body {
        padding: 30px 30px 0;
    }
    .section-dark .block .btn-bf-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .section-dark .block .btn-bf-icon {
        left: -59px;
    }
    .section-light .section-shape {
        left: calc(50vw - 555px);
        top: 106px;
    }
    .section-light p {
        padding-left: 0;
    }
    .section-dark {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-dark h2 {
        margin-top: 0;
    }
}
@media (max-width:767px) {
    html, body, p,
    .btn {
        font-size: 16px;
    }
    nav .logo-wrapper {
        width: 180px;
        max-width: 180px;
        height: 69px;
    }
    .logo-wrapper {
        width: 110px;
        max-width: 110px;
        height: 118px;
    }
    .logo-wrapper img {
        width: 103px;
        max-width: 223px;
    }
    h1 span,
    h2 span,
    h3 span {
        font-size: 28px;
    }
    header.hero h1 {
        font-size: 37px;
        line-height: 42px;
        padding: 0 15px;
    }
    header.hero .hero-mention {
        font-weight: 600;
        font-size: 14px;
        text-align: center;
    }
    header .header-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    header.hero .header-content-small {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    header.hero .header-content-small p {
        font-size: 16px;
        line-height: 22px;
    }
    h2 {
        font-size: 30px;
        line-height: 34px;
    }
    h2 span {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 0px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .featured-icon {
        border-width: 5px;
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    .grid-img-wrapper img {
        flex: none;
        width: 100% !important;
        height: auto !important;
    }
    .block-sm {
        padding: 25px;
    }
    .section-video,
    .section-map {
        padding-top: 65vw;
        padding-bottom: 80px;
    }
    .section-video:after,
    .section-map:after {
        background-image: linear-gradient(
            180deg,
            rgba(245, 29, 29, 0) 0%,
            rgba(245, 94, 29, .12) 35vw,
            rgba(244, 98, 16, 1) 70vw,
            rgba(243, 143, 7, 1) 100%
        );
    }
    .section-video .btn-video {
        top: 27vw;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }
    .section-video h2,
    .section-map h2 {
        font-size: 28px;
        line-height: 42px;
    }
    .section-video p,
    .section-map p {
        font-size: 20px;
        line-height: 24px;
    }
    .section-dark .icon-quote {
        width: 150px;
    }
    .section-light h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 21px;
    }
}

@media (min-width:768px) {
    header .header-content.header-content-small {
        padding-top: 160px;
    }
}

@media (min-width:768px) and (max-width:991px) {
}

@media (min-width:992px) {
    nav .nav-menu-btn {
        display: none;
    }
    nav .nav-menu {
        flex: 1;
    }
    nav .nav-wrapper .logo-wrapper {
        margin-bottom: 118px;
        margin-top: 118px;
    }
    .col-lg-45 {
        flex: 0 0 38.33%;
        max-width: 38.33%;
    }
    .col-lg-55 {
        flex: 0 0 61.67%;
        max-width: 61.67%;
    }
    .section-dark .col-lg-8 {
        flex: 0 0 64.925%;
        max-width: 64.925%;
    }
}

@media (min-width:769px) and (max-width:1199px) {
    .block-sm h3 {
        text-align: left;
    }
    .block-sm p {
        padding-bottom: 0;
    }
    .block-sm .btn.btn-primary {
        position: absolute;
        top: 22px;
        right: 35px;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    h2 {
        font-size: 48px;
    }
    nav .nav-menu li a:not(.dropdown-item):not(.btn),
    nav .nav-menu li button {
        padding: 5px 8px;
    }
    .section-dark h2 {
        margin-top: 52px;
        padding-left: 44px;
        margin-bottom: 40px;
    }
    .section-dark .block .block-body {
        padding: 60px 130px 0 60px;
    }
    .section-dark .block .img-fluid {
        right: -290px;
        top: 79px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 1400px) {
    .container.container-xl {
        max-width: 1395px;
    }
    div[class^="col-xxl"] {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}
@media (min-width: 1500px) {
    .section-video:before {
        background-size: 58% auto;
        background-position: top left;
    }
}
