/*
Primary			rgba(147, 252, 237,1)		#dde89c			rgba(var(--wp--preset--color--global--primary),1);	
Secondary		rgba(28,69,59,1)		#1c453b			rgba(var(--wp--preset--color--global--secondary),1);		
Tertiary		rgba(209,219,219,1)		#d1dbdb			rgba(var(--wp--preset--color--global--tertiary),1);		
Fourth  		rgba(177,198,197,1)		#b1c6c5			rgba(var(--wp--preset--color--global--fourth),1);
Fifth  		    rgba(255,252,213,1)		#fffcd5			rgba(var(--wp--preset--color--global--fifth),1);

Text color		rgba(99,99,99,1)		#636363			rgba(var(--main-text-color),1);
Main background	rgba(255,255,255,1)		#ffffff			rgba(var(--main-background-color),1);

Main Nav Text color  rgba(147, 252, 237,1)	        #000000         rgba(var(--main-nav-text-color),1);
Main Nav Text color hover  rgba(0,0,0,1)	#000000         rgba(var(--main-nav-text-color-hover),1);
*/


@font-face {
    font-family: "Alcyone";
    /* Reference name for the font */
    src: url("webfonts/Alcyone-Regular.woff2") format("woff2");
    font-weight: normal;
}

@font-face {
    font-family: "Alcyone Medium";
    /* Reference name for the font */
    src: url("webfonts/Alcyone-Medium.woff2") format("woff2");
    font-weight: normal;
}

@font-face {
    font-family: "Alcyone Bold";
    /* Reference name for the font */
    src: url("webfonts/Alcyone-Bold.woff2") format("woff2");
    font-weight: normal;
}

@font-face {
    font-family: "Alcyone Light";
    /* Reference name for the font */
    src: url("webfonts/Alcyone-Light.woff2") format("woff2");
    font-weight: normal;
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");

:root {
    --wp--preset--color--global--primary: 147, 252, 237;
    --wp--preset--color--global--secondary: 28, 69, 597;
    --wp--preset--color--global--tertiary: 209, 219, 219;
    --wp--preset--color--global--fourth: 177, 198, 197;
    --wp--preset--color--global--fifth: 255, 252, 213;

    --main-text-color: 0, 0, 0;
    --main-background-color: 0, 0, 0;
    --main-nav-text-color: 147, 252, 237;
    --main-nav-text-color-hover: 255, 255, 255;

    --header-h: 175px;
    /* safe fallback */
    --footer-h: 250px;

    --bs-gutter-x: 1.5rem;
}


body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: rgba(var(--main-text-color), 1);
    background-color: rgba(var(--main-background-color), 1);
    font-family: "Alcyone";
}

a,
a:link,
a:visited {
    color: rgba(var(--main-text-color), 1);
}


a[href*="youtube.com"],
a[href*="youtu.be"],
a[href*="vimeo.com"] {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

a[href*="youtube.com"]:hover,
a[href*="youtu.be"]:hover,
a[href*="vimeo.com"]:hover {
    transform: scale(1.01);
}

a[href*="youtube.com"]::after,
a[href*="youtu.be"]::after,
a[href*="vimeo.com"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814l-3.5-2.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    opacity: 0.25;
    transition: all 0.3s ease-in-out;
}

a[href*="youtube.com"]:hover::after,
a[href*="youtu.be"]:hover::after,
a[href*="vimeo.com"]:hover::after {
    opacity: 1;
}

.wp-block-gallery a {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.wp-block-gallery a:hover {
    transform: scale(1.025);
}



/* Alignment Classes for Gutenberg */
.alignwide {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: var(--wide-width);
    width: auto;
}

.alignfull {
    margin-left: calc((50% - 50vw) - (var(--bs-gutter-x) * .5));
    margin-right: calc((50% - 50vw) - (var(--bs-gutter-x) * .5));
    max-width: none;
    width: auto;
}

/* Constrain alignwide and alignfull on larger screens */
@media (min-width: 1200px) {
    .alignwide {
        margin-left: calc((100% - var(--wide-width)) / -2);
        margin-right: calc((100% - var(--wide-width)) / -2);
    }
}

body .wp-block-cover,
body .wp-block-cover-image {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/**
 * TYPOGRAPHY
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Alcyone Bold";
}

h1 a,
h2 a,
h3 a,
h4 a {
    text-decoration: none;
}


.w1 {
    font-family: "Alcyone Bold";
}

.w2 {
    font-family: "Alcyone Medium";
}

.w3 {
    font-family: "Alcyone";
}

.w4 {
    font-family: "Alcyone Light";
}


.s1 {
    letter-spacing: -0.05em;
}

.s2 {
    letter-spacing: 0em;
}

.s3 {
    letter-spacing: 0.05em;
}

.s4 {
    letter-spacing: 0.1em;
}

.s5 {
    letter-spacing: 0.15em;
}

.entry-meta {
    font-size: 0.8rem;
    font-family: "Alcyone Bold";
}

/**
 * CARD
 */


.card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 0;
}

.card .page-header,
.card .entry-header {
    margin-bottom: 0;
}

.card h2 a {
    text-decoration: none;
}


.posted-on {
    text-transform: uppercase;
    font-size: 0.8rem;
}

.cat-links,
.meta-info {
    text-transform: uppercase;
    font-size: 0.8rem;
}

.entry-footer a,
.meta-info a,
.posted-on a {
    text-decoration: none;
}

.card .row>* {
    margin-top: 0;
}

.card a img {
    width: 100%;
}

/**
 * HEADER
 */
.site-header {
    color: #fff;
}


.fullscreen_slider_banner_header {
    position: absolute;
    width: 100%;
    z-index: 1000000;
    background-color: transparent;
    border-color: white;
}

h1.site-title,
p.site-title {
    margin: 0.5em 1em 0.5em 0;
    padding: 0;
    line-height: 0.9;
    font-size: 3em;
    font-weight: normal;
    font-family: "Alcyone Bold";
    letter-spacing: -0.03em;
}

h1.site-title a,
p.site-title a {
    text-decoration: none;
    color: white;
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*
h1.site-title a,
p.site-title a {
    display: inline-block;
    width: 90px;
    height: 50px;
    background: url(images/logo.svg) no-repeat center center;
    background-size: contain;
    text-indent: -5000px;
}
*/

.home .fullscreen_slider_page header:not(.main-nav--sticky) h1.site-title a,
.home .fullscreen_slider_page header:not(.main-nav--sticky) p.site-title a {
    color: white;
    text-decoration: none;
}

.site-header .container,
.site-header .container-fluid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.site-description {
    position: absolute;
    left: -9999px;
}

body .navbar-toggler {
    position: fixed;
    top: 30px;
    right: 12px;
    z-index: 20;
}

.navbar-toggler .icon-bar {
    background-color: white;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.main-nav--sticky {
    position: absolute;
    top: -100%;
}

/* SLIDER */

.fullscreen-banner .carousel-item-background {
    min-height: 100vh;
    /* = #big-video height */
    background: no-repeat center center;
    background-size: cover;
}

.fullscreen-banner .carousel-item .wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.fullscreen-banner .carousel-item-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle, transparent 50%, black 150%);

}

.carousel li::marker {
    font-size: 0;
}

/* BIG VIDEO */
.fullscreen-banner #big-video {
    height: 100vh;
    /* = .carousel-item height */
    position: absolute;
    top: 0;
    width: 100%;
}

#big-video {
    height: 25vh;
    overflow: hidden;
    position: relative;
}

#big-video:after {
    content: " ";
    /*display: block;*/
    /* DISPLAY VIDEO OVERLAY */
    display: none;
    /* HODE VIDEO OVERLAY */
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    background-image: radial-gradient(rgba(0, 0, 0, 0.33) 33%, transparent 33%);
    background-size: 3px 3px;
}

#big-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* SCROLL DOWN ICON */
.scrolldownbox {
    position: relative;
}

.scrolldownbox a {
    position: absolute;
    bottom: 7em;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}

.scrolldownbox a:hover {
    opacity: .5;
}

.scrolldownbox a {
    padding-top: 60px;
}

.scrolldownbox a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb04 2s infinite;
    animation: sdb04 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb04 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes sdb04 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        transform: rotate(-45deg) translate(0, 0);
    }
}

/* HEADER SIDEBAR */
.header-sidebar-1,
.header-sidebar-1 .menu,
.header-sidebar-1 .widget-area {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.header-sidebar-1 ul,
.header-sidebar-1 ul.menu,
.header-sidebar-1 ul.menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-sidebar-1 ul.menu li {
    margin: 0.2rem 1rem;
}

.header-sidebar-1 ul.menu li a {
    font-size: 0.8rem;
    font-weight: 800;
}

.header-sidebar-1 .widget {
    margin: 0;
}

.header-sidebar-1 .wp-block-social-links {
    margin-left: 2rem;
}

body .dropdown-menu {
    border-radius: 0;
    margin-top: -2px;
}

body .dropdown-menu {
    border-color: white;
}

/**
 * SMART SLIDER
 */
.n2-ss-slider * {
    font-family: "Alcyone" !important;
}

.n2-ss-slider {
    border-radius: 2rem;
    overflow: hidden;
}


#n2-ss-2 {
    height: 50vh !important;
    min-height: 50vh !important;
    max-height: 50vh !important;
}

/* Neutralise le ratio d'aspect (padding-top) */
#n2-ss-2 .n2-ss-slider-1,
#n2-ss-2 .n2-ss-slider-2 {
    height: 50vh !important;
    padding-top: 0 !important;
}

/* Force la zone des slides */
#n2-ss-2 .n2-ss-slide-backgrounds,
#n2-ss-2 .n2-ss-slide {
    height: 50vh !important;
}

/**
 * AOS
 */
.archive article[data-aos],
.archive article {
    opacity: 0;
}

.archive article[data-aos].aos-animate {
    opacity: 1;
}


.archive.post-type-archive-projet article {
    animation: simplefadin 3s forwards;
}

@keyframes simplefadin {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/**
 * masonry
 */

.masonry-grid {
    margin: 0 auto;
}

.grid-sizer,
.grid-item {
    width: calc((100% - 80px) / 5);
}

/* 4 colonnes */
@media (max-width: 1200px) {

    .grid-sizer,
    .grid-item {
        width: calc((100% - 60px) / 4);
    }
}

/* 3 colonnes */
@media (max-width: 992px) {

    .grid-sizer,
    .grid-item {
        width: calc((100% - 40px) / 3);
    }
}

/* 2 colonnes */
@media (max-width: 768px) {

    .grid-sizer,
    .grid-item {
        width: calc((100% - 20px) / 2);
    }
}

/* 1 colonne */
@media (max-width: 576px) {

    .grid-sizer,
    .grid-item {
        width: 100%;
    }
}

.grid-item {
    margin-bottom: 10px;
}


/**
 * VENOBOX GALLERY
 */
.thumbnail-wrapper {
    position: relative;
    display: block;
}

.thumbnail-wrapper img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-plus-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 50%;

    font-size: 40px;
    line-height: 1;
    font-weight: 300;

    color: #000;
    text-decoration: none;
    opacity: .6;
    z-index: 10;
    transition: all .2s ease-in-out;

    padding: 0;
    font-variant-numeric: tabular-nums;
    transition: all .2s ease-in-out;
}

.gallery-plus-btn span {
    transform: translateY(-0.025em);
    transition: all .2s ease-in-out;
}

.gallery-plus-btn:hover {
    opacity: 1;
}


body .vbox-child img {
    max-height: 80vh;
}


/**
 * MAIN
 */
.site-main {
    margin-right: calc(var(--bs-gutter-x) * .5);
    margin-left: calc(var(--bs-gutter-x) * .5);
    border-radius: 2rem;
    overflow: hidden;
    padding: 1.5rem 0;
    background-color: rgba(var(--wp--preset--color--global--primary), 1);
    animation: bgfadein 2s;
}

.home .site-main {
    animation: none !important;
    background-color: transparent;
}

@keyframes bgfadein {
    from {
        background-color: rgba(var(--wp--preset--color--global--primary), 0);
    }

    to {
        background-color: rgba(var(--wp--preset--color--global--primary), 1);
    }
}

.home .site-main {
    padding-top: 0;
    padding-bottom: 0;
}

.home .site-main .entry-footer {
    display: none;
}

.site-main * {
    pointer-events: auto;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 0;
}


.page-header,
.entry-header {
    margin-bottom: 2rem;
}


.site-main section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.site-main .wp-block-list li {
    margin-bottom: 0.75rem;
}

.wp-block-accordion {
    background-color: rgba(0, 0, 0, 0.075);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}

.wp-block-accordion-panel {
    margin: 0.5rem 0 1rem 0.5rem !important;
}

/**
 * EVENTS ARCHIVE
 */
.archive .evenement .card-content {
    font-size: 1.1rem;
}

.event-col-illustration a {
    display: block;
    width: 100%;
    height: 100%;
}

.event-col-illustration a img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nav-links a {
    text-decoration: none;
}

.post-navigation .nav-links span.nav-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.7em;
    font-family: "Alcyone Light";
}

.post-navigation .nav-links span.nav-title {
    font-family: "Alcyone Medium";
}

.post-navigation .nav-links {
    margin-top: 4rem;
}

/**
 * FOOTER
 */
.site-footer {
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.8rem;
    color: white;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer .menu,
.site-footer .menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copyright-box,
.site-info {
    font-size: 0.6rem;
}

.copyright-box {
    margin-top: 1rem;
}

/* COMPLIANZ */
body .cmplz-cookiebanner .cmplz-close {
    outline: none;
}


/* MEDIA QUERIES */
@media only screen and (min-width: 420px) {
    .scrolldownboxposition {
        bottom: 20px;
        /* 20px*/
    }

}

@media only screen and (min-width: 576px) {}

@media only screen and (min-width: 768px) {

    body .navbar-toggler {
        top: 40px;
        right: 40px;
    }


    h1.site-title,
    p.site-title {
        font-size: 4em;
    }

    .gallery-plus-btn {
        width: 80px;
        height: 80px;
        font-size: 80px;
    }

}


@media only screen and (min-width: 992px) {

    .site-header {
        color: #fff;
        top: 0;
        position: fixed;
        width: 100%;
        z-index: 1;
    }

    .site-main {
        margin-top: var(--header-h);
        margin-bottom: var(--footer-h);
        margin-right: calc(var(--bs-gutter-x) * .5);
        margin-left: calc(var(--bs-gutter-x) * .5);
        border-radius: 2rem;
        overflow: hidden;
        padding: 2rem;
        background-color: rgba(var(--wp--preset--color--global--primary), 1);
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    .site-footer {
        padding-top: 5rem;
        padding-bottom: 2rem;
        font-size: 0.8rem;
        color: white;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1;
    }

    h1.site-title a,
    p.site-title a {
        width: 120px;
        height: 70px;
    }

    h1.site-title,
    p.site-title {
        margin: 1em 1em 1em 0;
    }

    .site-header .container-fluid,
    .site-footer .container-fluid {
        padding-right: var(--bs-gutter-x, 3rem);
        padding-left: var(--bs-gutter-x, 3rem);
    }

    .main-nav--sticky {
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background-color: white;
        -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
        animation: slide-down 0.7s;
        z-index: 100;
    }

    @keyframes slide-down {
        0% {
            opacity: 0;
            transform: translateY(-100%);
        }

        100% {
            opacity: 0.9;
            transform: translateY(0);
        }
    }

    .menu-item {
        margin-left: 0.5rem;
    }

    .navbar-light .navbar-nav .nav-link,
    .fullscreen_slider_page .main-nav--sticky .navbar-light .navbar-nav .nav-link {
        color: rgba(var(--main-nav-text-color), 1);
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease-in-out;
    }

    .fullscreen_slider_page header:not(.main-nav--sticky) .navbar-light .navbar-nav .nav-link {
        color: white;
    }

    .navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .current-menu-item .nav-link,
    .fullscreen_slider_page .main-nav--sticky .navbar-light .navbar-nav .nav-link:focus,
    .fullscreen_slider_page .main-nav--sticky .navbar-light .navbar-nav .nav-link:hover,
    .fullscreen_slider_page .main-nav--sticky .navbar-light .navbar-nav .current-menu-item .nav-link {
        color: rgba(var(--main-nav-text-color-hover), 1);
        border-bottom: 1px solid rgba(var(--main-nav-text-color-hover), 1);
    }

    .fullscreen_slider_page header:not(.main-nav--sticky) .navbar-light .navbar-nav .nav-link:focus,
    .fullscreen_slider_page header:not(.main-nav--sticky) .navbar-nav .nav-link:hover,
    .fullscreen_slider_page header:not(.main-nav--sticky) .navbar-nav .current-menu-item .nav-link {
        color: white;
        border-bottom: 1px solid white;
    }

    .main-nav--sticky h1,
    .main-nav--sticky p {
        margin: 0.25em 0;
    }

    .site-header .container-fluid,
    .site-footer .container-fluid {
        padding-right: var(--bs-gutter-x, 3rem);
        padding-left: var(--bs-gutter-x, 3rem);
    }

    .site-main {
        margin-right: var(--bs-gutter-x, 3rem);
        margin-left: var(--bs-gutter-x, 3rem);
    }

    .alignfull {
        margin-left: calc((50% - 50vw) - (var(--bs-gutter-x, 3rem)));
        margin-right: calc((50% - 50vw) - (var(--bs-gutter-x, 3rem)));
        max-width: none;
        width: auto;
    }

}

@media only screen and (min-width: 1200px) {}

@media only screen and (min-width: 1400px) {}

/* Change responsive menu breakpoint (large desktops, 1200px and up) */
@media (max-width: 990px) {
    .navbar-header {
        float: right;
    }

    .navbar-left,
    .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
        transition: none !important;
    }

    .navbar-collapse.collapse.show {
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;

        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;

    }

    .navbar-nav {
        float: none !important;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: static;
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border: 0;
        transition: none !important;
    }

    body .navbar-nav>li {
        float: none;
        margin-bottom: 2rem;
        text-align: center;
    }

    body .navbar-nav>li>a {
        padding-top: 0;
        padding-bottom: 0;
        font-size: 2.5rem;

    }

    body .navbar-light .navbar-nav .nav-link {
        color: white;
    }

    body .navbar-light .navbar-nav .nav-link:focus,
    body .navbar-light .navbar-nav .nav-link:hover {
        color: white;
    }


    .collapse.in {
        display: block !important;

    }

    .navbar-collapse,
    .navbar-collapse.collapse {
        background-color: rgba(var(--main-text-color), 1);
        z-index: 10;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    body .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1),
    body .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
        background-color: white;
    }


    .navbar-collapse.collapse {
        opacity: 1;
        transition: opacity 0.15s ease-in-out !important;
        transition-delay: 0s !important;
    }

    .navbar-collapse.collapsing {
        opacity: 0;
    }




    .navbar-toggle {
        border: none;
        background: transparent !important;
    }

    .navbar-toggle:hover {
        background: transparent !important;
    }

    .navbar-toggle .icon-bar {

        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }


    .navbar-expand-lg .navbar-toggler {
        display: block;
    }


    /* ANIMATED X */
    .navbar-toggle.x .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 10% 10%;
        -ms-transform-origin: 10% 10%;
        transform-origin: 10% 10%;

    }

    .navbar-toggle.x .icon-bar:nth-of-type(2) {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .navbar-toggle.x .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 10% 90%;
        -ms-transform-origin: 10% 90%;
        transform-origin: 10% 90%;
    }

    /* ANIMATED X COLLAPSED */
    .navbar-toggle.x.collapsed .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        background-color: white;
    }

    .navbar-toggle.x.collapsed.content-icon .icon-bar:nth-of-type(1) {
        background-color: black;
    }


    .navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
        opacity: 1;
        filter: alpha(opacity=100);
        background-color: white;
    }

    .navbar-toggle.x.collapsed.content-icon .icon-bar:nth-of-type(2) {
        background-color: black;
    }

    .navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        background-color: white;
    }

    .navbar-toggle.x.collapsed.content-icon .icon-bar:nth-of-type(3) {
        background-color: black;
    }

    /* END ANIMATED X */


}