
:root {

    /* Couleurs */
    --color-white: #fff;
    --color-black: #000;
    --color-grey: #F9F9F9;

    --color-text: #252E38;
    --color-bold: #6A2E35;
    --color-nav: #569690;
    --color-nav-dark: #6A2E35;
    --color-text--header: #FDFDFD;
    --color-border: #707070;
    --color-border-grey: #D5E3EC;


    --color-primary: #6A2E35;
}

/******************/
/** Styles Reset **/
/******************/

.cmplz-btn.cmplz-manage-consent {
    display: none;
}

.sr-only {
    display:none;
}

.skip-to-content {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--color-nav);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--color-nav);
    outline-offset: 2px;
}

* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: underline;
}
a:hover {
    color: var(--color-nav-dark);
    font-weight: 500;
    text-decoration: underline;
    transition: linear .15s;
}
strong {
    color: var(--color-text);
    font-weight: 550;
}


ul, ol {
    list-style: none;
    padding-left: 0;
}

button {
    background: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px
}
@media all and (max-width: 1024px){
    .container {
        padding:0 16px;
    }
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    font-weight: 400;
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}


/* -------------------- Default section -------------------- */

.section {
}

.section .container {
}

.section .section__header {
}

.section .section__title {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 24px;
}

.section .section__subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500; 
    margin-bottom:0;
}

.section .section__introduction {
    line-height: 1.6;
    font-size: 18px;
}

.section .section__text {
    line-height: 1.6;
    font-size: 18px;
}

.section .section__content {
}

.section .section__list {
    padding: 0;
}

.section .section__list .section__list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 16px;
}

.section .section__list .section__list-item::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-nav);
    position: absolute;
    top: 12px;
    left: 0;
}
.section .section__list .section__list .section__list-item {
    padding-left: 40px;
    font-size:14px;
}
.section .section__list .section__list .section__list-item::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-nav);
    position: absolute;
    top: 8px;
    left: 24px;
}

.section .section__footer {
}

/*#region Navigation */


/* -------------------------------------------------
   LOADER
------------------------------------------------- */

figure.is-loading {
    background: linear-gradient(
        100deg,
        var( --color-grey) 25%,
        #f5f5f5 37%,
        var( --color-grey) 63%
    );
    background-size: 200% 100%;
    animation: skeleton-wave 3s ease infinite;
}

figure.is-loaded {
    animation: none;
    background: none;
}

figure > img {
    opacity: 0;
    transition: opacity 0.35s ease;
}

figure.is-loaded > img {
    opacity: 1;
}

/* wp-block-image : centrer l'image quand elle est plus petite que la figure
   (flex-direction:column pour garder figcaption sous l'image) */
.wp-block-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em; /* espace après la figure, qu'il y ait caption ou non */
}

.wp-block-image > img {
    margin-inline: auto;
}

.wp-element-caption {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
}

@keyframes skeleton-wave {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* -------------------------------------------------
   NEWSLETTERS
------------------------------------------------- */

.form-newsletters button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.newsletter-success {
    width:100%;
    text-align: center;
}

/* -------------------------------------------------
   NAVIGATION
------------------------------------------------- */

.nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: var(--color-white);
    border-bottom: 1px solid rgb(218, 217, 220);
    transition: .25s;
}
.home .nav:not(.is-scrolled) {
    background: none;
    border-bottom: 1px solid transparent;
}
.home .nav:not(.is-scrolled) .nav__logo img{
    filter: brightness(0) invert(1);
}
.home .nav:not(.is-scrolled) .nav__menu > a {
    color: var(--color-text--header);
    font-weight: 400;
}
.nav .nav__left{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}
.nav .nav__right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}
.nav .nav__socials{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:2px;
}
.nav .nav__socials .nav__social{
    width:24Px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.home .nav:not(.is-scrolled) .nav__socials .nav__social svg *{
    fill:var(--color-white);
}
.nav .nav__socials .nav__social svg{
    width:16px;
}
.nav .nav__socials .nav__social svg *{
    fill:var(--color-text);
}

.home .nav:not(.is-scrolled) .nav__contact {
    background:none;
    border:1px solid var(--color-white);
}
.home .nav:not(.is-scrolled) .nav__contact:hover {
    background:var(--color-white);
    color:var(--color-text);
}
.nav .nav__contact  {
    background:var(--color-nav);
    border:1px solid var(--color-nav);
    color:var(--color-white);
    line-height:36px;
    padding:0 16px;
    font-size:14px;
    margin:0 0 0 16px;
    border-radius: 4px;
    text-decoration:none;
}
.nav .nav__contact:hover {
    background:var(--color-bold);
    border-color:var(--color-bold);
}
.nav .nav__link--search {
    margin-right:12px;
    margin-bottom:-5Px;
}
.home .nav:not(.is-scrolled) .nav__link--search svg *{
    fill:var(--color-white);
}
.nav .nav__link--search svg{
    width: 16px;
}
.nav .nav__link--search svg *{
    fill:var(--color-black);
}

.home .nav:not(.is-scrolled) .nav__item--dropdown > .nav__link{
    color: var(--color-text--header);
    font-weight: 400;
}
.home .nav:not(.is-scrolled) .nav__item--dropdown .nav__link svg *{
    fill:var(--color-text--header);
}
.home .nav:not(.is-scrolled) .nav__menu > a:hover {
    text-decoration: underline;
    color: var(--color-text--header);
}
.home .nav:not(.is-scrolled) .nav__item--dropdown .nav__link:hover svg *{
    color: var(--color-text--header);
}

.page:not(.home) .nav ,
.home .nav.is-scrolled {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

/* WRAPPER */
.nav  .container {
    max-width: 100%;
}
.nav .nav__wrapper {
    width:100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:32px;
}

/* LOGO */
.nav .nav__logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-text);
    margin: 0 32px 0 0;
}

/* MENU DESKTOP */
.nav .nav__menu {
    display: flex;
    gap: 24px;
}

.nav .nav__menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 450;
    font-size:15px;
    transition: .25s;
}

.nav .nav__menu a:hover {
    color: var(--color-nav);
}

/* HAMBURGER */
.nav .nav__hamburger {
    width: 34px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav .nav__hamburger span {
    height: 3px;
    width: 100%;
    background: var(--color-text);
    display: block;
    border-radius: 2px;
}

/* -------------------------------------------------
   SIDEBAR MOBILE
------------------------------------------------- */

.nav .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.nav .nav__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nav .nav__sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -6px 0 22px rgba(0, 0, 0, 0.15);
    padding: 24px;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1100;
}

.nav .nav__sidebar.is-open {
    right: 0;
}

.nav .nav__close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    align-self: flex-end;
    padding: 0;
    margin-bottom: 20px;
}

.nav .nav__sidebar-menu a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.nav .nav__sidebar-toggle {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--color-text);
    font-size: 18px;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #eee;
    background: none;
    cursor: pointer;
}

.nav .nav__sidebar-dropdown {
    display: none;
    padding-left: 14px;
}

.nav .nav__sidebar-dropdown.is-open {
    display: block;
}

.nav .nav__sidebar-dropdown a {
    font-size: 16px;
}

/* -----------------------------------------------
   DROPDOWN DESKTOP
----------------------------------------------- */

.nav .nav__item--dropdown {
    position: relative;
}

.nav .nav__item--dropdown .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .nav__item--dropdown .nav__link svg {
    width: 14px;
    margin: 0 0 0 8px;
}

.nav .nav__item--dropdown .nav__link svg * {
    fill: var(--color-text);
}

.nav .nav__item--dropdown .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 240px;
    padding: 14px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .25s;
    z-index: 1000;
}

.nav .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav .nav__dropdown a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
}

.nav .nav__dropdown a:hover {
    background: rgba(0, 0, 0, 0.04);
}


/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */
@media (max-width: 1210px) {
    .nav .nav__menu a{
        font-size:14px;
    }
    .nav .nav__link--search {
        margin-right:8px;
    }
    .nav .nav__socials {
        display:none;
    }
}
@media (max-width: 1075px) {
    .nav .nav__menu{
        gap:12px;
    }
    .nav .nav__menu a{
        font-size:13px;
    }
}
@media (max-width: 980px) {

    .nav .nav__menu {
        display: none;
    }
    .nav .nav__wrapper {
        justify-content: space-between;
    }
    .nav .nav__link--search {
        margin-right:24px;
    }
    .nav .nav__link--search svg{
        width:22px;
    }

    .nav .nav__contact  {
        display:none;
    }
    .nav .nav__hamburger {
        display: flex;
    }

    .page:not(.home) .nav, .home .nav:not(.is-scrolled) .nav__hamburger span{
        background:var(--color-white);
    }
}

/*#endregion Navigation */

/*#region Footer */

.footer {
    padding: 60px 0 0 0;
    background: var(--color-grey);
}

/* TOP GRID */
.footer .footer__top .container {
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap:75px;
}

/* COLUMNS */
.footer .footer__column {
    font-size: 15px;
    line-height: 1.6;
}

.footer .footer__column--left {
   width:100%;

       display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer .footer__column--right {
    width:100%;
}

/* TITLES */
.footer .footer__logo {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 0 32px 0;
}
.footer .footer__logo-img,
.footer .footer__logo img {
    max-width: 250px;
    height: auto;
}
.footer .footer__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.footer .footer__text {
    margin-bottom: 16px;
    max-width: 550px;
    text-align: center;
}
.footer .footer__text strong{
    color:var(--color-black);
}
/* SOCIALS */
.footer .footer__socials {
       display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer .footer__social {
    width: 28px;
    height: 28px;
    background: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer__social svg {
    width: 14px;
}

.footer .footer__social svg * {
    fill: var(--color-white);
}

.footer .footer__social:hover {
    background: var(--color-nav);
}

.footer__newsletter {
    margin: 48Px 0 0 0;
}

.footer .footer__form {
    display: flex;
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.footer label {
    flex:1;
}
.footer .footer__input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.footer .footer__button {
    padding: 14px 30px;
    background: var(--color-text);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.footer .footer__button:hover {
    background: var(--color-nav);
}

/* LINKS */

.footer .footer__links {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .footer__links-group .footer__links-title:not(:first-child) {
    margin-top: 32Px;
}

.footer .footer__links-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
      text-align: center;
}

.footer .footer__links button,
.footer .footer__links a {
    display: block;
    width:100%;
    text-decoration: none;
    color: var(--color-text);
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

.footer .footer__links button:hover,
.footer .footer__links a:hover {
    color: var(--color-bold);
    text-decoration: underline;
}

/* BOTTOM BAR */
.footer .footer__bottom {
    background: var(--color-text);
    color: var(--color-white);
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    margin-top: 40px;
}

.footer .footer__copyrights {
    width: 100%;
    text-align: left;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap:5px;
}

.footer .footer__copyrights ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:5px;
}
.footer .footer__copyrights ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:5px;
}
.footer .footer__copyrights ul li:not(:first-child)::before{
    content:'–';
    color:var(--color-white);
    display: block;

}
.footer .footer__copyrights button,
.footer .footer__copyrights a {
    color: var(--color-white);
    text-decoration: none;
}

.footer .footer__copyrights button:hover,
.footer .footer__copyrights a:hover {
    text-decoration: underline;
}

@media all and (max-width: 1024px){
    .footer .footer__top .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .footer .footer__column--left {
        width: 100%;
    }
    .footer .footer__column--right {
        width: 100%;
        margin: 32px 0 0 0;
    }
    .footer__links-group {
        width: calc(100% / 3);
    }
}
@media all and (max-width: 768px){
    .footer .footer__links {
        flex-wrap: wrap;
    }
    .footer__links-group {
        width: calc(100% / 2);
    }
    .footer .footer__links-title {
        width: 100%;
        text-align: center;
    }
    .footer .footer__links a {
        width: 100%;
        text-align: center;
    }
}
@media all and (max-width: 500px){
    .footer__links-group {
        width:100%;
    }
    .footer .footer__links {
        gap:24px;
    }
    .footer .footer__bottom{
        margin-top:0;
    }
}
/*#endregion Footer */



.top-icones {
    position: fixed;
    right: 0;
    top: 175px;

    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;

    z-index: 800;
}

.top-icones .icone {
    height: 55px;
    width: 200px;

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

    background: var(--color-nav);
    border-radius: 30px 0 0 30px;
    cursor: pointer;
    border: none;

    margin: 0 -10px 0 0;
    padding: 0 20px;
    transform: translateX(130px);
    transition: .3s linear;

    text-decoration: none;
}
.top-icones .icone  svg{
    width: 32px;
}
.top-icones .icone  svg *{
    fill: var(--color-white);
}
.top-icones .icone span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 0 15px;
    padding: 0 15px 0 0;
}

.top-icones .icone:hover {
    transform: translateX(0);
    text-decoration: none;
}

/* Share flyout */
.top-icones .icone-share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -10px;
}

.top-icones .icone-share .icone {
    margin-right: 0;
}

.top-icones .icone-share.is-open .icone--share {
    transform: translateX(0);
}

.top-icones .share-flyout {
    position: absolute;
    right: 24px;
    top: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.top-icones .icone-share.is-open .share-flyout {
    pointer-events: auto;
    opacity: 1;
}

.top-icones .share-flyout__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 50%;
    color: var(--color-black);
    text-decoration: none;
    transform: scale(0) translateY(-12px);
    opacity: 0;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), opacity .2s ease, background .2s ease, border-color .2s ease;
    transition-delay: 0s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-icones .icone-share.is-open .share-flyout__item {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition-delay: calc(var(--i, 0) * 40ms);
}

.top-icones .share-flyout__item svg {
    width: 18px;
    height: 18px;
}

.top-icones .share-flyout__item svg * {
    fill: var(--color-black);
}

.top-icones .share-flyout__item:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    text-decoration: none;
}

.top-icones .share-flyout__item:hover svg * {
    fill: var(--color-white);
}

.top-icones .share-flyout__item.is-copied {
    background: var(--color-black);
    border-color: var(--color-black);
}

.top-icones .share-flyout__item.is-copied svg * {
    fill: var(--color-white);
}

@media all and (max-width: 768px) {
    .top-icones {
        top: auto;
        bottom: 16px;
        gap: 8px;
    }

    .top-icones .share-flyout {
        top: auto;
        bottom: 100%;
        margin-top: 0;
        margin-bottom: 12px;
    }
}




.section--newsletter .section__box {
    display: flex;
    justify-content: space-between;
}

/* IMAGE */
.section--newsletter .section__image {
    width: 45%;
}
.section--newsletter .section__image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    display:block;
}

.section--newsletter .section__image-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.section--newsletter .section__content {
    width:55%;
    padding: 90px 50px;
}

.section--newsletter .section__subtitle {
}

.section--newsletter .section__title {
    margin-bottom: 16px;
}

.section--newsletter .section__introduction {
    margin-bottom: 30px;
}

/* FORM */
.section--newsletter .section__form {
    display: flex;

}
.section--newsletter label{
    flex: 1;
}
.section--newsletter .section__input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-nav);
    outline: none;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
}

.section--newsletter .section__input:focus {
    border-color: var(--color-nav);
}

.section--newsletter .section__button {
    padding: 14px 20px;
    background: var(--color-nav);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-size:16px;
    font-weight: 500;
    transition: 0.25s;
    border-radius: 0 50px 50px 0;
}

.section--newsletter .section__button:hover {
    background:var(--color-bold);
}

.section--newsletter .section__regles {
    width: 100%;
    text-align: right;
    text-wrap: balance;
    font-size:12px;
    line-height: 1.4;
    margin: 24px 0 0 0;
}




@media all and (max-width: 1024px){
    .section--newsletter .section__box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .section--newsletter .section__image {
        aspect-ratio: 16 / 9;
    }
    .section--newsletter .section__content {
        padding: 40px 32px;
    }
}

@media all and (max-width: 768px){
    .section--newsletter .section__content {
        padding: 32px 16px;
    }
}







.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: -1;
}

.newsletter-modal.is-open {
    opacity: 1;
    pointer-events: auto;
        display: flex;
    z-index: 999;
}

.newsletter-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}

.newsletter-modal__content {
    position: relative;
    background: white;
    border-radius: 18px;
    max-width: 1270px;
    width: calc(100% - 40px);
    max-height: 90vh;
    overflow: auto;

    box-shadow: 0 30px 80px rgba(0,0,0,.25);

    transform: translateY(10px) scale(.98);
    transition: transform .25s ease;
}

.newsletter-modal.is-open .newsletter-modal__content {
    transform: translateY(0) scale(1);
}

.newsletter-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 100;
    width: 40Px;
    height: 40Px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: linear .15s;
}
.newsletter-modal__close svg{
    width:16px;
    max-width:20px;
}
.newsletter-modal__close svg *{
    fill:var(--color-text);
}
.newsletter-modal__close:hover {
    opacity: 1;
}

/*#region Back to top*/

.back-to-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 900;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-nav);
    border: 1px solid var(--color-nav);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s, visibility .25s, transform .25s, background .15s, border-color .15s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
    flex-shrink: 0;
    margin-bottom: -8px;
}

.back-to-top:hover {
    background: var(--color-white);
    border-color: var(--color-border-grey);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover svg {
    fill: var(--color-nav);
}

.back-to-top:active {
    transform: translateY(0) scale(0.92);
}

@media all and (max-width: 768px) {
    .back-to-top {
        bottom: 12px;
        right: 12px;
    }
}

/*#endregion Back to top*/
