:root {
    /* Color */
    --red: #CF2C29;
    --dark-red: #991F14;
    --yellow: #F2AE2C;
    --green: #87b78a;
    --dark-blue: #262D42;
    --blue-green: #074F5A;
    --green-light: #C9DFCA;
    --grey: #F5F7F7;
    --grey-2: #D9D9D9;
    --grey-3: #636363;
    --white: #FFFFFF;

    /* Font */
    --font-h1: 600 42px/normal "WorkSans";
    --font-h1-small: 600 36px/normal "WorkSans";
    --font-h2: 600 32px/normal "WorkSans";
    --font-h3: 600 21px/normal "WorkSans";
    --text-big-bold: 600 20px/26px "OpenSans";
    --text-big: 400 19px/24px "OpenSans";
    --text-semi-bold: 500 16px/23px "OpenSans";
    --text: 400 16px/23px "OpenSans";
    --text-small: 400 14px/18px "OpenSans";
    --text-small-bold: 500 14px/18px "OpenSans";
    --text-bold: 600 16px/23px "OpenSans";
    --quote: 400 29px/normal "Caveat";
    --quote-big: 400 32px/44px "Caveat";
    --letter-quote: -2px;
    --label: 600 21px/24px "Caveat";
    --link: 500 17px/normal "OpenSans";
    --button: 600 15px/normal "OpenSans";
    --semi-bold-small: 500 15px/normal "OpenSans";
    --price: 700 24px/normal "OpenSans";

    --font-figtree-regular: 400 16px/20px "Figtree";
    --font-figtree-semibold: 600 16px/20px "Figtree";

}

@media(max-width: 1024px) {
    :root {
        --font-h1-small: 600 28px/normal "WorkSans";
        --font-h2: 600 28px/normal "WorkSans";
        --quote-big: 400 30px/42px "Caveat";
        --text-semi-bold: 500 15px/23px "OpenSans";
    }
}

@media (max-width: 768px) {
    :root {
        --font-h2: 600 23px/normal "WorkSans";
        --font-h3: 600 17px/normal "WorkSans";
        --text: 400 15px/18px "OpenSans";
        --button: 600 14px/normal "OpenSans";
        --text-bold: 600 15px/20px "OpenSans";
        --price: 700 21px/normal "OpenSans";
        --semi-bold-small: 500 13px/normal "OpenSans";
    }
}


/*--START-- IMPORT FONT */

@font-face {
    font-family: 'WorkSans';
    font-style: normal;
    font-weight: 600;
    src: local('WorkSans-Bold'),
        url('../fonts/WorkSans-Bold.woff') format('woff'),
        url('../fonts/WorkSans-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 600;
    src: local('Caveat-Bold'),
        url('../fonts/Caveat-Bold.woff') format('woff'),
        url('../fonts/Caveat-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 400;
    src: local('Caveat-Regular'),
        url('../fonts/Caveat-Regular.woff') format('woff'),
        url('../fonts/Caveat-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 400;
    src: local('OpenSans-Regular'),
        url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 500;
    src: local('OpenSans-SemiBold'),
        url('../fonts/OpenSans-SemiBold.woff') format('woff'),
        url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 600;
    src: local('OpenSans-Bold'),
        url('../fonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 400;
    src: local('Figtree-Regular'),
        url('../fonts/Figtree-Regular.woff') format('woff'),
        url('../fonts/Figtree-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 600;
    src: local('Figtree-SemiBold'),
        url('../fonts/Figtree-SemiBold.woff') format('woff'),
        url('../fonts/Figtree-SemiBold.ttf') format('truetype');
    font-display: swap;
}

/*--END-- IMPORT FONT */


/*--START-- GLOBAL CSS */

html .container {
    max-width: 2550px;
    width: 100%;
    padding: 0;
}

body,
html,
main {
    background: var(--white);
    font-family: OpenSans;
}

#index #wrapper {
    overflow-x: hidden;
}

main {
    width: 100%;
}

p,
a,
li,
span {
    font: var(--text);
}

.elementor-element p,
.elementor-element a,
.elementor-element li,
.elementor-element span {
    font: inherit;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: none !important;
}

.modal {
    z-index: 9999;
}

.row {
    margin: 0;
}

button:focus,
.btn:focus {
    outline: none;
}

#wrapper {
    padding: 0;
    background: var(--white);
}

#product #content-wrapper,
#index #content-wrapper {
    padding: 0;
}

.border-white-button {
    font: var(--button);
    text-transform: uppercase;
    color: var(--white);
    border-radius: 50px;
    padding: 15px 39px;
    border: 1.5px solid var(--white);
    transition: .3s;
}

.border-white-button:hover {
    color: var(--dark-blue);
    background: var(--white);
}

.border-dark-button {
    font: var(--button);
    text-transform: uppercase;
    color: var(--dark-blue);
    border-radius: 50px;
    padding: 15px 39px;
    border: 1.5px solid var(--dark-blue);
    transition: .3s;
    width: fit-content;
}

.border-dark-button:hover {
    color: var(--white);
    background: var(--blue-green);
    border-color: var(--blue-green);
}

.white-button {
    font: var(--button);
    text-transform: uppercase;
    color: var(--dark-blue);
    border-radius: 50px;
    padding: 15px 39px;
    background: var(--white);
    transition: .3s;
}

.white-button:hover {
    background: var(--white);
    color: var(--dark-blue);
}

@media (max-width: 768px) {

    .border-dark-button,
    .border-white-button {
        padding: 13px 37px;
    }
}

#wrapper .breadcrumb {
    padding: 10px 30px;
    margin-bottom: 5px;
}

#wrapper .breadcrumb span,
#wrapper .breadcrumb li::after {
    font: var(--text-small);
    color: var(--grey-3);
}

#wrapper .breadcrumb li::after {
    margin: 0;
}

@media(max-width: 1024px) {

    #wrapper .breadcrumb span,
    #wrapper .breadcrumb li::after {
        font-size: 13px;
    }

    #wrapper .breadcrumb {
        padding: 10px 15px;
    }
}

@media(max-width: 768px) {

    #wrapper .breadcrumb span,
    #wrapper .breadcrumb li::after {
        font-size: 12px;
    }
}

.page-content.page-cms {
    padding: 0;
}

/*--END-- GLOBAL CSS */



/*--START-- HEADER */

#header {
    box-shadow: none;
    position: sticky;
    top: 0;
    background: none;
    pointer-events: none;
}

/*--START-- HEADER TOPBAR */
#header .topbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 8px 40px;
    background-color: var(--red);
    align-items: center;
    pointer-events: auto;
}

#header .topbar p {
    color: var(--white);
    margin: 0;
    font: var(--semi-bold-small);
}

#header .topbar a {
    color: var(--white);
}

#header .topbar hr {
    background-color: white;
    width: 1px;
    height: 18px;
    margin: 0;
}

@media (max-width: 1024px) {
    #header .topbar {
        padding-inline: 30px;
    }

    #header .topbar p:last-of-type,
    #header .topbar hr:last-of-type {
        display: none;
    }

    #header .topbar p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #header .topbar hr {
        display: none;
    }

    #header .topbar {
        flex-direction: column;
        height: 35px;
        gap: 0;
        justify-content: flex-start;
        padding-block: 0;
        padding-inline: 15px;
    }

    #header .topbar p:last-of-type {
        display: block;
    }

    #header .topbar p {
        transition: .3s;
        padding-block: 8.5px;
        font-size: 13px;
        line-height: 18px;
    }
}

/*--END-- HEADER TOPBAR */

#header .logo {
    width: 170px;
    height: auto;
    transition: .3s;
}

#header .header-top .container {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 20px;
}

#header .header-top #search_widget input {
    border-radius: 65px;
    font: var(--text);
    color: var(--grey-3);
    padding: 15px 20px;
    background: var(--grey);
}

#header .header-top #search_widget input::placeholder {
    color: var(--grey-3);
    opacity: 1;
}

#header #search_widget form i.search {
    position: absolute;
    padding: 0;
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.1667 13.1667L19.5 19.5M7.88889 15.2778C3.80812 15.2778 0.5 11.9697 0.5 7.88889C0.5 3.80812 3.80812 0.5 7.88889 0.5C11.9697 0.5 15.2778 3.80812 15.2778 7.88889C15.2778 11.9697 11.9697 15.2778 7.88889 15.2778Z' stroke='%23262D42' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    width: 19px;
    height: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#header #search_widget form {
    margin-bottom: 0;
}

#header #_desktop_logo {
    width: auto;
    padding: 0;
}

#header .search-widgets {
    flex: 1;
    max-width: none;
    padding-inline: 5px 30px;
}

#header .xyblockcart-container {
    margin: 0;
}

#header .user-info,
#header #contact-link,
#header .xyblockcart-container .shopping-cart a {
    display: flex;
    align-items: center;
    gap: 5px;
    font: var(--text-bold);
}

#header .user-info span,
#header .user-info a,
#header #contact-link a {
    font: var(--text-bold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

#header .user-info a p,
#header #contact-link a p,
#header .xyblockcart-container .shopping-cart span {
    font: var(--button);
    color: var(--dark-blue);
    margin: 0;
    position: relative;
}

#header .user-info.logged .icon-connect {
    fill: var(--green);
}

#header .xyblockcart-container .shopping-cart .cart-products-count {
    color: var(--white);
    background-color: var(--dark-blue);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: initial;
    font: var(--text);
}

#header .xyblockcart-container .inactive {
    pointer-events: none;
    cursor: default;
}

#header .xyblockcart-container .inactive .shopping-cart .cart-products-count {
    color: var(--dark-blue);
    background-color: var(--grey);
}

#header .user-info a,
#header #contact-link a,
#header .xyblockcart-container .shopping-cart a {
    text-decoration: none;
    position: relative;
}

#header .xyblockcart-container .shopping-cart span {
    position: relative;
}

#header .user-info a p::after,
#header #contact-link a p::after,
#header .xyblockcart-container .shopping-cart span:not(.cart-products-count)::after,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image span:not(.svg)::after,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content a::after,
#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories a::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menu_content_title::after,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title::after,
#header.is-mobile .submenu .mm_columns_li .ets_mm_categories .ets_mm_url span::after,
#header.is-mobile .mm_blocks_ul .mm_block_type_image .ets_mm_block_content span::after,
#footer .links a::after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background: var(--dark-blue);
    transition: .2s ease-in-out;
    position: absolute;
}

#header .ets_mm_megamenu .mm_menus_li.red:not(.mm_has_sub) .mm_menu_content_title::after {
    background: var(--red);
}

#footer .links a::after {
    background: white;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content a::after,
#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories a::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menu_content_title::after,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title::after {
    bottom: 0;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content a,
#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories a,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menus_li,
#footer .links a,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title,
#header.is-mobile .submenu .mm_columns_li .ets_mm_categories .ets_mm_url span,
#header.is-mobile .mm_blocks_ul .mm_block_type_image .ets_mm_block_content span {
    position: relative;
    width: fit-content;
}

#header .user-info a:hover p::after,
#header #contact-link a:hover p::after,
#header .xyblockcart-container .shopping-cart a:hover span:not(.cart-products-count)::after,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image a:hover span:not(.svg)::after,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content a:hover::after,
#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories a:hover::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menu_content_title:hover::after,
#footer .links a:hover::after,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title:hover::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) a:focus .mm_menu_content_title::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) a:active .mm_menu_content_title::after,
#header.is-mobile .ets_mm_megamenu .mm_menus_li:not(:last-child) a:focus .mm_menu_content_title::after,
#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) a:focus .mm_menu_content_title::after,
#header.is-mobile .submenu .mm_columns_li .ets_mm_categories .ets_mm_url:hover span::after,
#header.is-mobile .mm_blocks_ul .mm_block_type_image .ets_mm_block_content:hover span::after {
    width: 100%;
}

#header.is-mobile .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menu_content_title {
    width: fit-content;
}

#header .header-top {
    padding: 15px 30px;
    border-bottom: 1px solid var(--grey-2);
    background: var(--white);
    z-index: 2;
    position: relative;
    pointer-events: auto;
}

body {
    padding-top: var(--header-height);
}

/*--START-- HEADER MENU */
#header .ets_mm_megamenu {
    margin: 0;
    border: none;
    pointer-events: auto;
}

#header .ets_mm_megamenu .ets_mm_megamenu_content {
    background: white;
    border-top: none;
    border-bottom: 1px solid var(--grey-2);
}

#header .ets_mm_megamenu .mm_menus_li.red .mm_menu_content_title {
    color: var(--red);
}

#header .ets_mm_megamenu .menu-pieces .mm_menu_content_title {
    background: none;
    border: none;
    position: relative;
}

#header .ets_mm_megamenu .menu-pieces .mm_menu_content_title::before {
    display: none;
}

#header .ets_mm_megamenu .mm_bubble_text {
    text-transform: initial;
}

#header .ets_mm_megamenu .menu-pieces:hover .mm_menu_content_title::after,
#header .ets_mm_megamenu .menu-pieces.open_li .mm_menu_content_title::after {
    display: block;
}

#header .ets_mm_megamenu .container {
    padding: 15px 30px;
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul {
    width: calc(100% + 60px) !important;
    margin-left: -30px;
    margin-top: 15px;
    min-height: 400px;
    background-color: var(--grey) !important;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul {
    background-color: var(--white) !important;
}

#header .ets_mm_megamenu .menu-produit:not(.open_li) .mm_columns_ul {
    min-height: 0;
    height: 0 !important;
    visibility: visible;
    overflow: hidden;
}

#header .ets_mm_megamenu .menu-produit.open_li .mm_columns_ul {
    height: auto !important;
}

#header .ets_mm_megamenu .menu-produit .mm_menu_content_title {
    float: none;
    padding: 7.5px 20px;
    min-height: auto;
    gap: 7px;
    color: var(--white);
}

#header .ets_mm_megamenu .menu-produit .mm_menu_content_title::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='0.5' y1='0.5' x2='9.5' y2='0.5' stroke='white' stroke-linecap='round'/%3e%3cline x1='0.5' y1='5.5' x2='9.5' y2='5.5' stroke='white' stroke-linecap='round'/%3e%3cline x1='0.5' y1='10.5' x2='9.5' y2='10.5' stroke='white' stroke-linecap='round'/%3e%3c/svg%3e ");
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
}

#header .ets_mm_megamenu .menu-produit.open_li .mm_menu_content_title::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.7959 0.75L1.12865 12.4173M12.4173 12.6893L0.75 1.02208' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e ");
    margin-top: 2px;
}

#header .ets_mm_megamenu .menu-produit a::before,
#header .ets_mm_megamenu .menu-produit a::after {
    display: none;
}

#header .ets_mm_megamenu .mm_menu_content_title {
    float: none;
    padding: 7.5px 20px;
    min-height: auto;
    font: var(--button) !important;
    color: var(--dark-blue);
    text-transform: none;
}

#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .mm_menu_content_title,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title {
    padding: 0;
}

#header .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .ets_mm_url,
#header .ets_mm_megamenu .mm_menus_li.menu-pieces>.ets_mm_url {
    padding: 7.5px 20px;
}

#header .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title {
    margin-left: 5px;
}

#header.is-mobile .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title {
    width: 100%;
    margin: 0;
    font-size: 15px;
    padding-right: 25px;
}

#header.is-mobile .ets_mm_megamenu .mm_menus_li.menu-pieces .mm_menu_content_title .ets_mm_url {
    font-size: 15px !important;
}

#header .ets_mm_megamenu .mm_menus_li,
#header .ets_mm_megamenu .mm_menus_li:last-child {
    border: none;
    width: auto !important;
}

#header .ets_mm_megamenu .mm_menus_li>a {
    border-radius: 50px;
}

#header .ets_mm_megamenu .mm_menus_li .ets_mm_url::before {
    display: none !important;
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul:not(.open) .mm_columns_contents_ul {
    visibility: hidden;
}

#index #header .ets_mm_megamenu_content {
    border: none;
}

#header .mm_block_type_image .ets_mm_block_content a,
#header .mm_block_type_image .ets_mm_block_content {
    display: flex;
    align-items: center;
    gap: 5px;
}

#header .mm_block_type_image .ets_mm_block_content p {
    margin-bottom: 0;
}

#header .ets_mm_block_content img:hover,
#header .ets_mm_block_content a:hover img {
    transform: none;
}

#header .mm_block_type_image .ets_mm_block_content img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    object-position: center;
    visibility: visible;
    opacity: 1;
}

#header .mm_block_type_image .ets_mm_block_content span {
    font: var(--text);
    color: var(--dark-blue);
    margin-bottom: 0;
    visibility: visible;
    opacity: 1;
}

#header .mm_block_type_html .ets_mm_block_content,
#header .mm_block_type_html .ets_mm_block_content a {
    font: var(--link);
    color: var(--dark-blue) !important;
    text-decoration: underline;
    margin-top: 4px;
}

#header .menu-produit .mm_columns_contents_ul {
    padding: 0;
    display: flex;
    flex: 1;
    width: 100% !important;
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child {
    padding: 20px 30px;
    width: fit-content;
    border: none;
    flex: none;
    min-width: 335px;
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .mm_blocks_li {
    padding: 0;
    margin: 0;
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .mm_blocks_ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .mm_blocks_li svg {
    display: none;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) {
    border-left: 1px solid var(--grey-2);
    flex: 1;
    padding: 20px 30px;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_blocks_ul {
    display: flex;
    gap: 30px;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_blocks_ul li {
    padding: 0;
    margin: 0;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_block_type_image .ets_mm_block_content,
#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_block_type_image .ets_mm_block_content a {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    overflow: visible;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_block_type_image .ets_mm_block_content img {
    width: 100%;
    flex: 100%;
    height: 340px;
    max-height: 340px;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

#header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) .mm_block_type_image .ets_mm_block_content span {
    text-transform: uppercase;
    color: var(--dark-blue);
    font: var(--button);
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories {
    display: flex;
    gap: 22px;
    flex-direction: column;
}

#header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child .ets_mm_categories a {
    color: var(--dark-blue);
    font: var(--text);
}

#header .menu-produit .mm_tab_li_content {
    border: none;
    width: 100%;
    padding: 5px 16px 5px 5px;
    border-radius: 5px;
    background: none;
}

#header .menu-produit .mm_tab_li_content .mm_tab_toggle_title {
    padding: 0;
}

#header .menu-produit .mm_tab_li_content .mm_tab_toggle_title img {
    width: 34px;
    height: auto;
}

#header .menu-produit .mm_tab_li_content .mm_tab_name {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

#header .menu-produit .mm_tab_li_content .mm_tab_name .mm_tab_toggle_title .ets_mm_url {
    display: flex;
    align-items: center;
    gap: 10px;
    font: var(--button);
    color: var(--dark-blue);
}

#header .menu-produit .container-tabs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--grey);
    overflow: hidden;
}

.mm_tabs_li.open.mm_tabs_has_content .mm_tab_li_content .mm_tab_name::before,
.mm_menus_li.hover .mm_tabs_li.mm_tabs_has_content:hover .mm_tab_li_content .mm_tab_name::before {
    display: none;
}

#header .ets_mm_megamenu .menu-produit.open_li .mm_columns_ul,
#header .ets_mm_megamenu .menu-pieces.open_li .mm_columns_ul {
    border-top: 1px solid var(--grey-2);
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul {
    display: flex !important;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul {
    min-height: 0;
    height: 0;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul.open {
    min-height: 0;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat {
    width: 100%;
    display: flex;
    background: var(--white);
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item {
    border-right: 1px solid var(--grey-2);
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    flex: 1;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:last-child {
    border: none;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item>* {
    width: 100%;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item .mm_tab_li_content {
    border: none;
    padding: 0;
    margin-bottom: 15px;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item .mm_tab_li_content .mm_tab_name::after {
    display: none;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item .ets_mm_url {
    display: flex;
    gap: 5px;
    align-items: center;
    font: var(--button);
    color: var(--dark-blue);
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item .ets_mm_url img {
    margin: 0;
    width: 34px;
    height: auto;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item .mm_tab_toggle_title {
    padding: 0;
}

#header .ets_mm_megamenu .menu-pieces>.ets_mm_url::before {
    display: none;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul * {
    width: 100%;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul ul li a::before {
    display: none;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li {
    padding: 0;
    margin-bottom: 20px;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li .ets_mm_block_content {
    margin-top: 0;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:last-child {
    margin: 0;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:nth-last-child(2) {
    margin-bottom: 15px;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .ets_mm_url,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content a,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .mm_blocks_li:not(:last-child) .ets_mm_block_content {
    font: var(--text);
    font-size: 15px;
    text-decoration: none;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .mm_tab_li_content {
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    background: var(--grey);
    margin: 0;
    display: flex;
    align-items: center;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .mm_tab_li_content * {
    width: 100%;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .ets_mm_url {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font: var(--text);
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .ets_mm_url img {
    width: 116px;
    height: auto;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .ets_mm_url .mm_bubble_text {
    position: initial;
    text-align: center;
    font: var(--text-bold);
    background: none !important;
    text-decoration: underline;
}

#header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_columns_contents_ul .ets_mm_categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#header .menu-produit .mm_columns_ul {
    flex-direction: row;
    flex-wrap: nowrap;
}

#header .menu-produit .mm_columns_ul .container-columns {
    background-color: var(--white);
    flex: 1;
    overflow: hidden;
}

#header .menu-produit .mm_columns_ul .container-columns> :not(:first-child),
#header .menu-produit .mm_columns_ul .container-columns .mm_columns_contents_ul {
    display: none;
}

#header .menu-produit .mm_columns_ul .container-columns .mm_columns_contents_ul.active {
    display: flex;
}

#header .menu-produit .mm_tabs_li {
    width: 100%;
}

#header .menu-produit .mm_tabs_li.open {
    background-color: var(--white);
    border-radius: 5px;
}

#header .menu-produit .mm_tabs_li.open .mm_tab_has_child::after {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='13' viewBox='0 0 16 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.16253 4.10423C1.13091 3.9464 1.23649 4.04986 1.16638 3.81415C1.181 3.79822 1.19571 3.78179 1.21033 3.76587C1.21404 3.85317 1.21784 3.94025 1.22155 4.02754C1.20191 4.05325 1.18227 4.07895 1.16253 4.10466C1.16253 4.10452 1.16253 4.10437 1.16253 4.10423ZM1.13573 5.1975C1.15372 4.94851 1.21089 4.88213 1.14913 4.65236C1.14422 4.73781 1.13919 4.82324 1.13428 4.9087C1.11284 4.84242 1.09126 4.77616 1.06982 4.71025C1.06211 4.74283 1.05441 4.77544 1.0467 4.80766C1.03688 4.65917 1.02714 4.51027 1.01732 4.36142C1.02604 4.38315 1.03488 4.40527 1.0436 4.427C1.07807 4.30642 1.10874 4.27344 1.15554 4.25098C1.15143 4.21585 1.14731 4.18102 1.1432 4.14589C1.16695 4.20565 1.19069 4.26556 1.21434 4.32532C1.1938 4.38398 1.17084 4.44922 1.1518 4.5039C1.18226 4.73673 1.23598 4.60715 1.26395 4.55859C1.30203 4.4923 1.29343 4.60301 1.32168 4.55666C1.32619 4.54942 1.3267 4.46264 1.33562 4.46118C1.38062 4.4543 1.46802 4.50029 1.41691 4.70277C1.34284 4.67669 1.27968 4.83929 1.20702 4.77989C1.22624 5.01401 1.18796 5.09369 1.13573 5.1975ZM2.49629 4.45199C2.47384 4.5657 2.42813 4.51981 2.39717 4.44088C2.39713 4.44088 2.3971 4.44088 2.39706 4.44088C2.39024 4.4235 2.37481 4.27238 2.39706 4.27854C2.43333 4.28909 2.45087 4.52697 2.46991 4.36548C2.47842 4.39554 2.48737 4.42229 2.49629 4.45199ZM2.57511 4.43789C2.59736 4.49621 2.58727 4.67545 2.55941 4.62694C2.55941 4.62708 2.55941 4.62723 2.55941 4.62737C2.54779 4.60708 2.57061 4.46541 2.52892 4.60921C2.5204 4.49733 2.51202 4.39555 2.5036 4.2873C2.51381 4.28549 2.52312 4.28255 2.53383 4.2811C2.52663 4.46499 2.55287 4.38003 2.57511 4.43789ZM1.4545 4.60152C1.458 4.43609 1.44335 4.43713 1.4184 4.32233C1.44195 4.32776 1.4655 4.33356 1.48895 4.33899C1.47743 4.42661 1.46602 4.5139 1.4545 4.60152ZM0.901274 4.57589C0.901238 4.57589 0.901203 4.57589 0.901167 4.57589C0.893452 4.60197 0.885714 4.62814 0.878096 4.65386C0.873484 4.59481 0.86893 4.53603 0.864317 4.47698C0.837059 4.53241 0.809652 4.58782 0.782394 4.6436C0.785704 4.46325 0.834637 4.49259 0.861593 4.36655C0.901677 4.42088 0.920993 4.52557 0.923598 4.67842C0.916183 4.64439 0.908789 4.60992 0.901274 4.57589ZM7.45703 5.29491C7.46615 5.24494 7.47515 5.19492 7.48427 5.14495C7.47215 5.12214 7.46012 5.10474 7.4479 5.0783C7.41594 5.29561 7.41293 5.10339 7.37105 5.11675C7.24267 5.15805 7.27673 5.49556 7.16079 5.00119C7.25388 5.02471 7.21811 4.79241 7.27423 4.61348C7.28585 4.74968 7.23024 5.05685 7.26792 5.1206C7.33286 4.97646 7.3953 4.84221 7.46734 4.74913C7.46524 4.72559 7.46314 4.70196 7.46104 4.67842C7.44962 4.69327 7.43829 4.70822 7.42686 4.72307C7.43919 4.66004 7.45124 4.59756 7.46376 4.53381C7.44793 4.67687 7.48828 4.59693 7.48288 4.7613C7.48048 4.83447 7.46264 4.93598 7.45212 5.00589C7.47928 5.04391 7.50712 5.07875 7.53458 5.11569C7.52035 5.17398 7.50614 5.23234 7.49202 5.29063C7.4804 5.29244 7.46887 5.29374 7.45725 5.29555C7.45718 5.29533 7.45711 5.29512 7.45703 5.29491ZM13.3015 4.53423C13.2671 4.70448 13.2044 4.73265 13.1714 4.5432C13.2148 4.54031 13.2581 4.53713 13.3015 4.53423ZM0.926214 4.80445C0.922311 4.77551 0.918528 4.74688 0.914625 4.71794C0.931858 4.66434 0.949194 4.61111 0.966429 4.55752C0.969734 4.64115 0.973117 4.72481 0.976523 4.80808C0.95979 4.807 0.942946 4.80554 0.926214 4.80445ZM2.02883 4.71132C2.01622 4.71638 2.0151 4.71364 1.9994 4.70171C1.99942 4.70178 1.99944 4.70185 1.99946 4.70192C1.99323 4.69746 1.94115 4.64861 1.94696 4.58422C1.97281 4.58313 2.0004 4.58422 2.02685 4.58422C2.02765 4.62658 2.02783 4.6686 2.02883 4.71132ZM1.72447 4.67372C1.72443 4.67358 1.7244 4.67344 1.72436 4.6733C1.71495 4.66351 1.70603 4.6436 1.69632 4.63997C1.73129 4.53862 1.73682 4.72045 1.76858 4.66902C1.80035 4.61723 1.81998 4.5169 1.84693 4.766C1.83691 4.80331 1.82612 4.85669 1.81579 4.90015C1.7707 4.80055 1.75856 4.89428 1.72239 4.99243C1.72309 4.88595 1.72377 4.7802 1.72447 4.67372ZM6.88549 4.791C6.87687 4.91414 6.86726 4.79331 6.86626 4.79185C6.86628 4.79171 6.8663 4.79156 6.86631 4.79142C6.78998 4.90547 6.87625 4.72326 6.8042 4.70405C6.81492 4.67328 6.82547 4.64078 6.83609 4.60964C6.85252 4.66903 6.86946 4.73632 6.88549 4.791ZM4.40517 4.77946C4.40447 4.7436 4.40363 4.70766 4.40292 4.6718C4.44622 4.68013 4.45726 4.53896 4.49323 4.66753C4.46387 4.70519 4.43453 4.74259 4.40517 4.77989C4.40517 4.77975 4.40517 4.7796 4.40517 4.77946ZM2.24704 4.97214C2.19904 5.0406 2.16353 5.07076 2.11743 4.9621C2.11739 4.96196 2.11736 4.96181 2.11732 4.96167C2.11467 4.95498 2.12752 4.87996 2.12405 4.86106C2.11454 4.87228 2.10472 4.88953 2.0951 4.90293C2.0938 4.84285 2.09256 4.78278 2.09126 4.72307C2.11832 4.74009 2.14539 4.7571 2.17254 4.77412C2.16854 4.73899 2.16443 4.70416 2.16042 4.66902C2.18347 4.65091 2.20643 4.63287 2.22947 4.61477C2.22146 4.71325 2.21346 4.81177 2.20555 4.91062C2.21937 4.93126 2.23322 4.95114 2.24704 4.97214ZM5.12593 5.17187C5.11831 5.13275 5.13242 5.06713 5.12059 5.03345C5.10876 5.00019 5.08696 5.07319 5.09207 4.96274C5.10799 4.9479 5.12471 4.93088 5.14094 4.91532C5.08873 4.71615 5.03664 4.89637 5.03583 4.65044C5.08594 4.71419 5.12714 4.68457 5.17565 4.61647C5.17365 4.81169 5.12513 4.98048 5.15568 5.16375C5.14586 5.16628 5.13555 5.16999 5.12604 5.17144C5.126 5.17158 5.12597 5.17172 5.12593 5.17187ZM0.224892 7.25245C0.195225 7.2376 0.127257 7.31727 0.0897751 7.20353C0.0805544 7.17551 0.0498313 6.81242 0.0499878 6.76456C0.0508883 6.60337 0.0884088 6.58144 0.0482254 6.4764C0.0617437 6.47531 0.0748608 6.46926 0.0882797 6.46636C0.0858735 6.35805 0.0834821 6.25004 0.0811768 6.14209C0.0648405 6.15839 0.0484865 6.17478 0.0321503 6.19144C0.0313492 6.15558 0.0305481 6.11964 0.029747 6.08378C0.088477 6.08305 0.0538048 5.94465 0.0842743 5.81569C0.0562185 5.75051 0.0279549 5.68564 0 5.62045C0.016133 5.62842 0.0351692 5.63432 0.0494003 5.64374C0.0513044 5.46011 0.0173532 5.50389 0.0115356 5.46986C-0.021234 5.27753 0.145603 5.3746 0.159256 5.10736C0.132605 5.07766 0.104638 5.04868 0.0773849 5.01935C0.085203 4.98639 0.0931189 4.95341 0.100937 4.92044C0.162764 5.10477 0.232098 5.17006 0.304145 5.28487C0.310655 5.27727 0.317176 5.26946 0.323585 5.26222C0.32168 5.17931 0.319882 5.09671 0.317977 5.01379C0.327798 5.00401 0.337743 4.99431 0.347564 4.98453C0.318606 5.25762 0.358708 5.25389 0.407111 5.42051C0.38136 5.51648 0.349593 5.4583 0.351783 5.63711C0.440169 5.49954 0.543672 5.69397 0.629653 5.53864C0.650995 5.50025 0.650927 5.26957 0.70111 5.29085C0.699405 5.3162 0.699115 5.36198 0.698012 5.39531C0.784803 5.28483 0.83746 5.21878 0.927656 5.33143C0.922449 5.24853 0.917325 5.16527 0.912115 5.08236C0.892975 5.12366 0.873798 5.16561 0.854758 5.2069C0.841734 5.06999 0.860981 5.00957 0.803863 5.01102C0.757059 5.0121 0.784922 5.07255 0.772193 5.11312C0.754958 5.16851 0.739832 5.05955 0.721297 5.12145C0.706966 5.16891 0.722469 5.28187 0.685088 5.25325C0.70012 5.10691 0.715456 4.95581 0.73059 4.80766C0.739711 4.84062 0.74876 4.87409 0.75788 4.90741C0.74866 4.94653 0.739596 4.98514 0.730376 5.02426C0.762845 4.95399 0.793521 4.88772 0.827094 4.81492C0.816169 5.02646 0.850869 4.94715 0.869711 4.92215C0.899061 4.88308 0.873916 5.02866 0.893156 5.00439C0.912397 4.97975 0.933148 4.8171 0.967924 4.85187C0.949289 4.94604 0.974639 5.03048 0.96974 5.11739C0.964829 5.20431 0.928047 5.22356 0.963385 5.3184C1.03133 5.24632 0.9576 4.91533 1.00349 4.8617C1.05861 4.79723 1.07172 5.33678 1.0553 5.45277C1.04237 5.54405 0.997885 5.52569 0.984854 5.61661C1.06453 5.78069 1.06522 5.45677 1.07885 5.39338C1.12835 5.16267 1.0951 5.77846 1.15372 5.55573C1.15262 5.67088 1.15173 5.77446 1.15063 5.8849C1.16074 5.8639 1.16745 5.83598 1.17968 5.81933C1.14364 5.59495 1.17314 5.60457 1.18828 5.60422C1.21213 5.60349 1.17529 5.49405 1.1816 5.4658C1.19864 5.39019 1.22558 5.42452 1.20905 5.32567C1.21647 5.37167 1.22451 5.41781 1.23212 5.46345C1.25999 5.40613 1.32548 4.92549 1.26315 5.02255C1.26896 4.84397 1.28913 4.92981 1.30486 4.95697C1.32059 4.98411 1.3203 4.87039 1.33413 4.89139C1.38914 4.97543 1.35315 5.16997 1.34443 5.32246C1.41709 5.21742 1.34596 5.14793 1.45066 5.07766C1.46078 4.95342 1.4124 4.82085 1.45269 4.74913C1.46011 4.96497 1.48977 5.12002 1.54759 5.19173C1.5532 5.14211 1.5588 5.09204 1.56441 5.04242C1.59598 5.24164 1.57984 5.4488 1.63827 5.20177C1.6069 5.65635 1.62847 5.36553 1.68078 5.5506C1.69141 5.58791 1.66686 5.68222 1.68169 5.73004C1.68842 5.7516 1.70474 5.68041 1.72116 5.73538C1.72917 5.76254 1.76666 5.93782 1.79262 5.85457C1.77357 5.63434 1.82289 5.44699 1.7806 5.26479C1.85877 5.3097 1.91348 5.20396 1.82589 5.50425C1.84573 5.5709 1.86559 5.63726 1.88543 5.70355C1.89926 5.65103 1.91321 5.59892 1.92714 5.54676C1.92925 5.72776 1.92713 5.77854 1.98162 5.7467C1.95798 5.78942 1.93444 5.83285 1.9107 5.87593C1.90989 5.91248 1.90659 5.95047 1.90738 5.98594C1.93646 5.91642 2.01833 5.8865 2.03817 5.83834C2.05802 5.79016 2.0197 5.77698 2.02541 5.73025C2.073 5.34493 2.06923 5.62912 2.10338 5.56299C2.12343 5.52387 2.07557 5.48139 2.08629 5.46473C2.12605 5.40366 2.14449 5.60844 2.17975 5.61105C2.16723 5.49482 2.15481 5.37677 2.14258 5.25945C2.17956 5.26561 2.22079 5.26664 2.25516 5.22933C2.26866 5.21476 2.25846 5.12831 2.26066 5.12252C2.2716 5.09282 2.31609 5.04577 2.3208 5.04541C2.35625 5.04472 2.35727 5.16446 2.39172 5.17101C2.3782 5.18115 2.36548 5.19029 2.35225 5.20006C2.34624 5.39419 2.34011 5.58831 2.33409 5.7828C2.36786 5.79692 2.40165 5.81076 2.43551 5.82488C2.41076 5.76005 2.38592 5.69553 2.36117 5.63071C2.39985 5.47387 2.43854 5.31668 2.47722 5.15948C2.49737 5.25582 2.51743 5.35215 2.53757 5.44849C2.59227 5.42308 2.58126 5.03198 2.60721 5.37458C2.62334 5.34562 2.63947 5.31667 2.6556 5.28807C2.65329 5.33696 2.65101 5.38594 2.64871 5.43482C2.66815 5.40476 2.68759 5.37489 2.70703 5.34447C2.68659 5.17134 2.66655 4.98916 2.6463 4.82111C2.68456 4.78349 2.6853 4.93036 2.691 4.96701C2.70614 5.06409 2.73617 4.93315 2.7482 5.02298C2.75227 5.05382 2.71477 5.1505 2.72769 5.26201C2.73022 5.28362 2.78042 5.69352 2.81245 5.59888C2.81185 5.52462 2.80937 5.43357 2.80807 5.3528C2.85115 5.30769 2.87311 5.6953 2.8674 5.80395C2.89035 5.72788 2.9239 5.72153 2.92861 5.60272C2.94033 5.59982 2.95197 5.59708 2.96369 5.59418C2.95148 5.88353 3.00038 5.83062 3.00359 5.58179C2.98344 5.57563 2.96328 5.56915 2.94313 5.56299C2.95837 5.258 2.89715 5.07391 3.02452 5.35643C3.04887 5.51508 2.98124 5.33481 3.00108 5.45362C3.03555 5.52277 3.06791 5.46491 3.10068 5.57538C3.14146 5.71338 3.09129 5.84611 3.18629 5.67044C2.97674 5.23035 3.21503 5.37314 3.31345 5.23659C3.34051 5.67126 3.42362 5.80894 3.53807 5.67962C3.52615 5.55865 3.49014 5.62098 3.46939 5.58115C3.44865 5.54131 3.47109 5.46954 3.44525 5.41303C3.4194 5.35655 3.3645 5.27975 3.33834 5.1943C3.3605 5.12583 3.46989 4.96396 3.39756 5.15841C3.45156 5.27828 3.47692 5.40146 3.54384 5.42393C3.56388 5.23522 3.5624 5.11771 3.62763 5.11227C3.58905 5.3745 3.66318 5.55675 3.64686 5.82766C3.6006 5.76456 3.62646 5.50125 3.5997 5.37523C3.59696 5.36263 3.55386 5.42864 3.54384 5.42393C3.58733 5.66046 3.60238 5.7485 3.57562 6.02995C3.60638 6.00532 3.62552 6.04065 3.62833 5.90627C3.63474 5.96457 3.64119 6.02291 3.6475 6.08121C3.65751 6.07976 3.66653 6.07437 3.67714 6.07545C3.66252 5.87273 3.69086 5.99752 3.711 5.90562C3.73114 5.81362 3.70412 5.6536 3.75944 5.65143C3.741 5.60397 3.72414 5.56326 3.7063 5.51835C3.74197 5.46619 3.77776 5.41371 3.81343 5.36155C3.78838 5.23769 3.73408 5.05372 3.73557 4.89075C3.752 4.95228 3.80829 4.84415 3.81445 4.8397C3.8383 4.82304 3.8253 4.92581 3.8271 4.92835C3.86458 4.97829 3.89544 4.9433 3.90967 5.09902C3.93783 5.02876 3.95906 5.06882 3.98892 5.06485C4.00536 5.06267 4.00216 4.94829 4.01178 4.97C4.07572 5.11488 4.0148 5.26269 4.13814 4.98132C4.12321 4.90164 4.10848 4.82013 4.09354 4.73973C4.10747 4.70966 4.12133 4.67943 4.13525 4.64937C4.14457 4.66386 4.15381 4.67846 4.16313 4.69295C4.16293 4.86571 4.16269 5.03884 4.16249 5.2116C4.17271 5.22102 4.18298 5.23016 4.1932 5.23958C4.17566 5.25661 4.15808 5.27361 4.14054 5.29063C4.13894 5.32103 4.13744 5.35145 4.13584 5.38185C4.1619 5.42894 4.18787 5.47645 4.21392 5.5239C4.21442 5.4638 4.21492 5.40328 4.21542 5.34318C4.27414 5.42686 4.27554 5.47773 4.33136 5.31221C4.37435 5.31402 4.40937 5.06274 4.43422 4.95697C4.44314 4.99065 4.45207 5.02476 4.46108 5.05844C4.46679 5.00845 4.47257 4.95868 4.47828 4.9087C4.4896 4.97824 4.50108 5.04779 4.51241 5.11697C4.51871 4.95913 4.52198 4.90985 4.4778 4.85444C4.49293 4.65812 4.57073 4.74472 4.60239 4.81065C4.62642 4.86067 4.59976 5.02442 4.60277 5.04434C4.6128 5.11201 4.6524 5.05362 4.66071 5.06485C4.69589 5.11157 4.72053 5.10339 4.7523 5.13961C4.75849 5.14686 4.77578 5.25064 4.77724 5.25389C4.78867 5.27164 4.81687 5.32208 4.82008 5.32353C4.9855 5.401 4.80874 4.95076 4.96256 4.9982C4.95795 4.93883 4.95372 4.87985 4.94921 4.82047C4.96083 4.81685 4.97257 4.81341 4.98419 4.80979C4.99892 4.85942 4.9811 4.94966 5.01036 4.87687C5.00846 4.95003 5.00654 5.02323 5.00454 5.09603C5.01727 5.05655 5.02954 5.01739 5.04256 4.97791C5.06301 5.23181 5.13764 5.28948 5.13234 5.58756C5.13053 5.68898 5.07762 5.79305 5.10558 5.90135C5.1283 5.92267 5.11292 5.80154 5.12219 5.79519C5.18914 5.751 5.18525 5.92078 5.21261 5.87551C5.21691 5.80274 5.22144 5.72855 5.22585 5.65506C5.23617 5.67642 5.24652 5.69778 5.25693 5.71914C5.25934 5.67024 5.26185 5.62129 5.26425 5.57239C5.25453 5.56913 5.24358 5.56582 5.23466 5.56256C5.2471 5.37317 5.36132 5.28809 5.31776 5.44956C5.30003 5.51512 5.26754 5.48727 5.28807 5.71102C5.31863 5.67879 5.35331 5.64585 5.38548 5.61362C5.38648 5.66179 5.38742 5.71006 5.38842 5.75823C5.43177 5.72705 5.39234 5.53443 5.39242 5.43119C5.40234 5.4283 5.41236 5.42576 5.42228 5.42286C5.42648 5.46954 5.43048 5.5184 5.43488 5.56363C5.43529 5.48935 5.44084 5.31668 5.4704 5.38078C5.4894 5.4225 5.45947 5.60991 5.49571 5.58392C5.493 5.46804 5.47991 5.32689 5.52028 5.28957C5.52428 5.41052 5.52983 5.52132 5.53293 5.64844C5.58313 5.53224 5.60598 5.71902 5.6649 5.58392C5.70228 5.49844 5.75349 5.19498 5.77764 5.66253C5.80498 5.67484 5.7963 5.55841 5.8044 5.53223C5.84258 5.40835 5.87098 5.63006 5.8781 5.6431C5.92348 5.72669 5.94382 5.64994 5.9808 5.7546C5.97879 5.66803 5.9777 5.58608 5.9761 5.50168C5.94222 5.63136 5.92507 5.62527 5.87756 5.59738C5.89349 5.58 5.90943 5.56222 5.92536 5.54483C5.92276 5.47458 5.92017 5.40432 5.91767 5.33443C5.77075 5.61116 5.80502 5.17393 5.92819 5.0783C5.93881 5.20832 5.94982 5.33799 5.96034 5.46836C6.03149 5.27132 6.06498 5.44237 6.14544 5.48331C6.15501 5.488 6.18986 5.4131 6.20483 5.4094C6.20458 5.40891 6.20433 5.40841 6.20408 5.40791C6.2134 5.28513 6.20078 5.22863 6.19928 5.11889C6.20739 5.10513 6.21551 5.09142 6.22363 5.07766C6.24176 5.16131 6.23538 5.23002 6.27105 5.2101C6.26625 5.1268 6.2615 5.04348 6.25669 4.96018C6.29577 4.95728 6.32135 5.04779 6.35773 5.00867C6.35162 5.04018 6.34558 5.07178 6.33947 5.1033C6.41864 5.18371 6.35563 5.67347 6.41546 5.4297C6.41927 5.47242 6.42298 5.51557 6.42678 5.55829C6.40214 5.56879 6.37747 5.57898 6.35292 5.58948C6.35242 5.64995 6.35188 5.71015 6.35148 5.77062C6.37784 5.75251 6.40433 5.73383 6.43068 5.71572C6.41144 5.75629 6.39209 5.79691 6.37285 5.83748C6.40341 5.86646 6.43398 5.89545 6.46454 5.92442C6.43209 5.70207 6.47417 5.67488 6.46625 5.45469C6.52037 5.63797 6.56288 5.87958 6.64676 5.72491C6.66339 5.6941 6.65436 5.54023 6.70156 5.72747C6.69013 5.48264 6.74926 5.36776 6.74166 5.13491C6.72523 5.14614 6.70819 5.1532 6.69227 5.16695C6.7104 5.24772 6.71341 5.46992 6.68586 5.53586C6.65068 5.61989 6.59938 5.4659 6.60148 5.71252C6.58745 5.70093 6.5744 5.6941 6.56078 5.68432C6.56639 5.62314 6.57188 5.56158 6.57739 5.5004C6.53862 5.59632 6.51426 5.56513 6.49563 5.4109C6.54182 5.37541 6.58791 5.34029 6.63411 5.30516C6.6273 5.29467 6.6204 5.2841 6.6136 5.27397C6.64857 5.11641 6.6125 4.96716 6.67774 4.93348C6.67734 5.00554 6.67702 5.07765 6.67662 5.15008C6.70037 4.95737 6.7654 4.95842 6.74466 4.73674C6.7643 4.80483 6.7683 4.8479 6.77942 4.72841C6.83124 4.89684 6.86451 5.10984 6.84607 5.36412C6.86531 5.32319 6.88456 5.28221 6.9037 5.24129C6.89257 5.17176 6.88144 5.10255 6.87032 5.03302C6.90379 5.03736 6.93751 5.04164 6.97088 5.04562C6.97409 5.25133 6.90645 5.10803 6.92597 5.29192C6.92987 5.32883 6.94789 5.24976 6.95262 5.27056C7.00252 5.49548 6.92418 5.33298 6.93889 5.50532C7.01326 5.55856 6.95375 5.84733 7.05617 5.60465C7.05888 5.66404 7.06178 5.72462 7.06429 5.78365C7.09984 5.78722 7.09696 5.65307 7.12752 5.62772C7.14666 5.61194 7.17068 5.84751 7.19182 5.6871C7.19559 5.65752 7.16003 5.3696 7.23476 5.38227C7.29276 5.3921 7.26862 5.59557 7.29997 5.66766C7.33134 5.73974 7.4031 5.45761 7.42424 5.77746C7.40781 5.73509 7.38688 5.71224 7.36865 5.67749C7.36123 5.73978 7.35401 5.8014 7.3467 5.86333C7.38839 5.78292 7.43148 5.87769 7.45954 5.72918C7.51517 5.95629 7.57737 5.74553 7.56053 5.48908C7.54223 5.52606 7.56214 5.63788 7.53672 5.56662C7.53411 5.50686 7.53136 5.44738 7.52876 5.38761C7.57205 5.39486 7.60212 5.39318 7.58238 5.57538C7.58909 5.57973 7.59574 5.58406 7.60246 5.58841C7.60366 5.45656 7.60473 5.32422 7.60593 5.19237C7.61395 5.17752 7.622 5.16279 7.63002 5.14794C7.63893 5.1769 7.64786 5.2062 7.65688 5.23552C7.64475 5.44416 7.6241 5.45105 7.69245 5.56769C7.69265 5.49561 7.69294 5.42381 7.69314 5.35173C7.75036 5.44337 7.75187 5.61798 7.82372 5.61148C7.7686 5.86175 7.73844 5.41812 7.73864 5.92015C7.72481 5.88719 7.71087 5.85378 7.69704 5.82082C7.69494 5.89363 7.69285 5.96654 7.69084 6.03935C7.7651 6.00094 7.88845 5.52213 7.93817 5.83962C7.94418 5.80087 7.95021 5.76719 7.95632 5.72555C8.00503 5.91717 8.02606 5.48697 8.07547 5.73474C8.08057 5.76074 8.0699 6.16491 8.13422 6.15042C8.13262 6.0979 8.13178 6.00948 8.13048 5.94322C8.14441 5.97545 8.15826 6.00917 8.17208 6.04212C8.17459 5.99361 8.17721 5.94511 8.17972 5.89623C8.15597 5.87739 8.13228 5.85824 8.10853 5.83941C8.12827 5.82275 8.14813 5.80608 8.16786 5.78942C8.14212 5.71012 8.1305 5.70928 8.14602 5.58222C8.16837 5.57461 8.19075 5.56654 8.2131 5.55893C8.2154 5.52638 8.21769 5.49344 8.21999 5.46088C8.20917 5.36382 8.19823 5.26889 8.18741 5.17037C8.24563 5.24969 8.29626 5.254 8.34095 5.44486C8.34857 5.4771 8.32163 5.60356 8.37353 5.48951C8.37433 5.55648 8.37572 5.61087 8.37663 5.67279C8.44017 5.48516 8.46104 5.54116 8.52728 5.67663C8.48439 5.55022 8.52266 5.63244 8.53359 5.5647C8.54107 5.51803 8.51186 5.52493 8.51516 5.47605C8.51847 5.42752 8.55643 5.23154 8.52397 5.20797C8.4444 5.60967 8.42272 5.1294 8.3205 5.32246C8.33623 5.27067 8.35208 5.21875 8.36782 5.16695C8.3604 5.13185 8.35377 5.09999 8.34576 5.06271C8.40277 5.1413 8.37504 5.09024 8.39847 5.02832C8.42192 4.96638 8.46454 4.91376 8.4931 4.89673C8.5021 4.89138 8.49261 4.98148 8.51292 4.98987C8.52675 4.99566 8.56454 4.8621 8.57327 5.01956C8.57898 5.12206 8.51826 5.40431 8.60221 5.40364C8.61801 5.50412 8.57776 5.47291 8.5769 5.48502C8.56958 5.60456 8.62119 5.69443 8.64504 5.60315C8.64698 5.59528 8.62814 5.50213 8.64862 5.46558C8.69723 5.37829 8.7253 5.48511 8.75677 5.62964C8.76018 5.46012 8.80108 5.25766 8.85199 5.32033C8.8546 5.27182 8.85708 5.22288 8.85968 5.174C8.85178 5.19968 8.84387 5.22501 8.83597 5.25069C8.82735 5.22026 8.81822 5.19811 8.8098 5.16225C8.861 5.12057 8.86824 4.88694 8.89279 4.80146C8.97681 4.50947 8.92589 5.12713 8.91074 5.2336C8.89981 5.1905 8.88925 5.14238 8.87843 5.0971C8.87963 5.15614 8.88085 5.21564 8.88195 5.27504C9.00772 5.27324 8.9011 5.65831 8.96494 5.76806C8.98138 5.47757 9.02826 5.44958 9.08799 5.63391C9.0946 5.63246 9.10124 5.63209 9.10786 5.63028C9.10896 5.58792 9.10894 5.52318 9.11074 5.49528C9.1827 5.44601 9.19552 5.89336 9.20233 5.93574C9.23259 6.12371 9.25616 5.86364 9.26508 5.86141C9.30266 5.85235 9.31358 5.96783 9.34936 5.91823C9.38783 5.86463 9.36153 5.77602 9.37323 5.69671C9.38262 5.63373 9.41297 5.62251 9.42551 5.55722C9.42053 5.61062 9.41499 5.66298 9.41003 5.71658C9.4499 5.78937 9.4825 5.86032 9.52779 5.87807C9.57889 5.48737 9.62238 6.14643 9.60474 5.61191C9.56185 5.57532 9.53787 5.51441 9.51492 5.37822C9.54307 5.36083 9.57125 5.3439 9.5994 5.32652C9.60762 5.38519 9.61345 5.44236 9.62317 5.50211C9.64421 5.37753 9.69299 5.43099 9.71214 5.39445C9.80184 5.22312 9.77409 5.01062 9.85596 5.36775C9.79695 5.40255 9.79705 5.576 9.73852 5.5521C9.75115 5.67597 9.78089 5.65031 9.76165 5.79882C9.81827 5.76224 9.79996 5.62965 9.822 5.51194C9.841 5.41046 9.87927 5.40478 9.87711 5.2729C9.88103 5.34541 9.88405 5.4156 9.88795 5.48801C9.92463 5.48729 9.9613 5.48724 9.99797 5.48652C9.98234 5.56221 9.96671 5.63804 9.95108 5.71337C9.9629 5.74196 9.97473 5.77044 9.98654 5.79903C10.0767 5.56359 10.2323 5.99509 10.2074 5.40364C10.2509 5.3848 10.2564 5.45898 10.28 5.57089C10.2826 5.52599 10.2851 5.48864 10.2877 5.43867C10.3158 5.48567 10.3373 5.31709 10.3621 5.36091C10.3868 5.4044 10.393 5.56363 10.3966 5.29598C10.4126 5.37275 10.4286 5.43653 10.4445 5.50788C10.4541 5.44707 10.4637 5.38697 10.4732 5.32652C10.4883 5.35839 10.5033 5.39013 10.5184 5.42201C10.5264 5.29424 10.5855 5.34931 10.6115 5.26351C10.6363 5.40123 10.6356 5.83487 10.6938 5.75716C10.6923 5.64961 10.6908 5.54237 10.6893 5.43482C10.7026 5.45728 10.716 5.47966 10.7294 5.50211C10.7302 5.53721 10.7309 5.57232 10.7317 5.60742C10.7249 5.59656 10.7182 5.58575 10.7114 5.57453C10.7173 5.63393 10.7231 5.69306 10.7289 5.75246C10.7492 5.66446 10.7696 5.57645 10.79 5.48844C10.7625 5.42181 10.7349 5.35513 10.7074 5.2885C10.7419 5.20953 10.766 5.2883 10.7961 5.20028C10.8222 5.34876 10.8126 5.43432 10.8019 5.59546C10.8117 5.5817 10.8215 5.56842 10.8312 5.55466C10.8248 5.71582 10.8412 5.81185 10.7844 5.79882C10.7883 5.84478 10.7923 5.88861 10.7961 5.93639C10.8054 5.92914 10.8115 5.968 10.8217 5.95027C10.8496 5.90173 10.8709 5.61866 10.869 5.51941C10.868 5.46742 10.8405 5.56685 10.8416 5.49335C10.8443 5.31413 10.9074 5.3946 10.8165 5.21459C10.8466 5.10049 10.8534 5.18654 10.8866 5.2195C10.884 5.15978 10.8815 5.10043 10.879 5.04071C10.8944 5.06823 10.9099 5.09564 10.9253 5.12316C10.9039 5.42995 11.0176 5.54518 10.9152 5.81356C10.9455 5.82732 10.9756 5.84115 11.0058 5.85564C10.9996 5.88715 10.9934 5.91834 10.9871 5.94984C10.9735 5.93318 10.96 5.9168 10.9463 5.9005C10.9624 5.95807 10.9784 6.01531 10.9945 6.07288C11.0323 6.00153 11.0472 5.89178 11.0645 5.75631C11.0204 5.65745 11.0349 5.79249 11.0005 5.81933C11.0017 5.73353 11.0001 5.65462 11.0031 5.56449C11.0209 5.74219 11.0788 5.61291 11.0922 5.60422C11.1331 5.57782 11.101 5.75242 11.1284 5.7561C11.1557 5.75972 11.188 5.6558 11.2103 5.82894C11.2099 5.73189 11.2081 5.63149 11.2065 5.54312C11.2491 5.51125 11.2406 5.62589 11.245 5.64075C11.3154 5.88488 11.3536 5.67877 11.434 5.65378C11.4238 5.62372 11.4135 5.59658 11.4032 5.56833C11.4639 5.36228 11.423 5.42537 11.3703 5.35728C11.4197 5.37793 11.448 5.20245 11.4829 5.15029C11.5177 5.09822 11.5775 5.18834 11.5994 5.25859C11.5494 5.37161 11.4954 5.29708 11.4399 5.32823C11.4462 5.42709 11.4524 5.51076 11.4589 5.61938C11.4927 5.41189 11.5122 5.55063 11.5233 5.57816C11.556 5.65889 11.555 5.4808 11.5747 5.67236C11.5739 5.60646 11.5733 5.55106 11.5725 5.48951C11.64 5.51704 11.7127 5.63353 11.7566 5.39018C11.7606 5.54845 11.7637 5.70094 11.7683 5.86248C11.7968 5.74333 11.8213 5.86534 11.8453 5.83748C11.8693 5.80959 11.8602 5.68168 11.8883 5.63241C11.8935 5.62336 11.9044 5.70342 11.9172 5.64438C11.9302 5.58502 11.9779 5.1437 11.9836 5.52924C12.0078 5.53105 12.0307 5.54515 12.0543 5.55167C12.0313 5.5734 12.0082 5.59445 11.9852 5.61618C12.0049 5.70962 12.0244 5.80278 12.044 5.89623C12.0466 5.81291 12.0491 5.7281 12.0515 5.64587C12.1044 5.54445 12.1428 5.68066 12.1962 5.64844C12.2051 5.643 12.1841 5.47829 12.2237 5.52027C12.2632 5.56228 12.2926 5.86972 12.36 5.75097C12.3635 5.74481 12.3834 5.50936 12.4076 5.67236C12.4131 5.7093 12.3899 5.76397 12.4026 5.81249C12.4152 5.86103 12.4715 5.90094 12.4759 6.01649C12.4753 5.97557 12.4718 5.93317 12.4701 5.89153C12.4797 5.87197 12.4895 5.8524 12.4992 5.83321C12.5001 5.90528 12.501 5.97746 12.5019 6.04917C12.5573 5.88147 12.5859 5.6079 12.6678 5.69842C12.6448 5.59375 12.6217 5.48866 12.5988 5.38398C12.5925 5.45751 12.5861 5.53154 12.5799 5.60507C12.5421 5.57574 12.5043 5.54661 12.4665 5.51728C12.4603 5.60095 12.4542 5.68438 12.448 5.76806C12.4379 5.75719 12.428 5.74667 12.418 5.7358C12.4205 5.67532 12.423 5.61515 12.4256 5.55466C12.4058 5.56951 12.3859 5.58467 12.3662 5.59952C12.4064 5.24247 12.4784 5.62989 12.4732 5.33122C12.4821 5.37756 12.4911 5.42422 12.5 5.47092C12.5039 5.3261 12.522 5.36778 12.554 5.39061C12.5466 5.31925 12.5386 5.24886 12.5319 5.17678C12.5629 5.27747 12.618 5.26769 12.6502 5.30644C12.6643 5.32346 12.6502 5.42846 12.6544 5.4408C12.676 5.50528 12.7172 5.32207 12.7258 5.33656C12.7773 5.42278 12.8108 5.77012 12.867 5.5412C12.8089 5.4847 12.8405 5.50856 12.8199 5.38142C12.8134 5.34156 12.7384 5.2584 12.8323 5.29533C12.8433 5.29996 13.0136 5.53994 12.9577 5.72384C12.9852 5.66516 13.0068 5.59731 13.0321 5.53501C13.0938 6.01966 13.0724 5.56436 13.0545 5.3137C13.0646 5.31262 13.0742 5.31007 13.0847 5.31007C13.0625 5.57341 13.1753 5.58976 13.2136 5.45683C13.2265 5.41263 13.1906 5.32834 13.2203 5.2885C13.2344 5.30697 13.2504 5.33088 13.2653 5.35151C13.2437 5.1849 13.2862 5.1207 13.2856 4.9512C13.3127 5.10224 13.3335 5.42237 13.3186 5.59589C13.341 5.52563 13.3636 5.45546 13.386 5.38484C13.3756 5.34463 13.365 5.30478 13.3546 5.26457C13.428 5.37107 13.5223 5.12874 13.5376 5.48481C13.5474 5.48227 13.5572 5.48008 13.5669 5.47755C13.5699 5.41742 13.5728 5.35717 13.5758 5.29704C13.6198 5.34919 13.6637 5.40169 13.7077 5.45383C13.6685 5.49115 13.6592 5.57674 13.6181 5.50724C13.634 5.57639 13.6501 5.64593 13.6656 5.71508C13.7274 5.5289 13.7359 5.40654 13.829 5.46195C13.8332 5.46449 13.9035 5.62062 13.9059 5.63583C13.9169 5.70537 13.9002 5.8064 13.9051 5.84154C13.9188 5.94007 14.0016 6.18745 14 6.22476C13.9797 6.68261 13.7011 6.68868 13.6257 6.71223C12.844 6.95635 12.0795 6.62974 11.3027 6.68552C11.2947 6.68639 11.2982 6.75398 11.2948 6.75687C11.2737 6.77385 11.2529 6.66851 11.2451 6.66416C11.2284 6.65521 11.2376 6.75253 11.2254 6.7526C11.0993 6.75151 10.9803 6.69428 10.8542 6.71094C10.846 6.71203 10.8543 6.63416 10.8399 6.64793C10.8325 6.65547 10.8091 6.77493 10.7923 6.77674C10.7336 6.78289 10.6843 6.74459 10.6223 6.7464C10.5885 6.74748 10.5376 6.73733 10.4998 6.73914C10.483 6.73991 10.4656 6.79456 10.4491 6.79639C10.4256 6.79892 10.4304 6.68813 10.4268 6.68125C10.411 6.65119 10.4088 6.77279 10.3938 6.7699C10.3658 6.76411 10.3643 6.68292 10.3288 6.6898C10.3035 6.69487 10.2454 6.75897 10.2135 6.7778C10.1387 6.68364 10.0445 6.72102 9.97474 6.75217C9.93345 6.77064 9.92962 6.65696 9.91279 6.65733C9.85347 6.65953 9.80845 6.80471 9.75273 6.80942C9.67879 6.81555 9.61326 6.71955 9.54162 6.71265C9.53 6.71157 9.53267 6.81572 9.52127 6.81839C9.47908 6.82817 9.42513 6.84713 9.38754 6.83228C9.34566 6.81596 9.33021 6.66478 9.28922 6.69556C9.27721 6.70471 9.27369 6.83726 9.25355 6.85428C9.22138 6.88104 9.18611 6.76415 9.16367 6.7511C9.1329 6.73372 9.15965 6.86876 9.11817 6.85065C9.11646 6.84986 9.11025 6.75333 9.10134 6.75794C9.07539 6.77098 9.07796 6.847 9.03998 6.83975C9.03633 6.83875 8.98597 6.74677 8.98097 6.7464C8.9515 6.74495 8.89218 6.71275 8.87474 6.73231C8.8124 6.80185 8.86148 6.94704 8.80847 6.63191C8.78512 6.70904 8.76197 6.78722 8.73722 6.86218C8.75374 6.79227 8.68671 6.69139 8.682 6.69791C8.64304 6.75045 8.66625 6.87306 8.61685 6.85278C8.68209 6.56952 8.55311 6.81627 8.52435 6.82352C8.38585 6.85864 8.25996 6.78796 8.12076 6.78977C8.07416 6.79051 8.01171 6.85039 7.96241 6.84894C7.95092 6.84885 7.9596 6.78182 7.94949 6.78037C7.9394 6.77938 7.95059 6.85463 7.93907 6.85065C7.86742 6.82456 7.81128 6.68256 7.74564 6.86005C7.74244 6.83438 7.74255 6.81411 7.73725 6.78592C7.68354 6.94492 7.58009 6.7311 7.5412 6.70176C7.48039 6.65615 7.46485 6.76362 7.42067 6.74192C7.36224 6.71294 7.27452 6.50298 7.31369 6.84958C7.27361 6.86044 7.23503 6.86344 7.19455 6.83121C7.19004 6.82755 7.19315 6.73946 7.19134 6.73765C7.17992 6.725 7.1762 6.80387 7.16848 6.8075C7.14756 6.81724 7.1817 6.72279 7.15187 6.74918C7.13614 6.76331 7.12721 6.8321 7.08352 6.83356C6.82014 6.84116 6.53421 6.81652 6.26422 6.80493C6.24568 6.80421 6.25788 6.8894 6.23463 6.88397C6.15386 6.86512 6.00927 6.72174 5.93962 6.74128C5.86997 6.76084 5.88568 6.88542 5.8421 6.93759C5.83368 6.94773 5.84058 6.87673 5.83297 6.87564C5.78175 6.86911 5.7207 6.75837 5.67921 6.7417C5.65177 6.73054 5.65397 6.84224 5.63494 6.85022C5.60658 6.86181 5.57739 6.74896 5.56225 6.74534C5.49111 6.72942 5.4422 6.82032 5.37576 6.77396C5.37836 6.79854 5.38008 6.8213 5.38228 6.84552C5.30361 6.84154 5.22505 6.83754 5.14638 6.83356C5.15009 6.85602 5.15368 6.87867 5.15739 6.90149C5.06509 6.88916 5.07562 6.64576 5.08374 7.15974C5.07703 7.17785 5.06991 7.19884 5.0635 7.2155C5.0661 6.95073 5.01027 6.75697 4.93922 6.68958C4.93401 6.68451 4.89905 6.94267 4.90285 6.63767C4.89373 6.71229 4.8883 6.76373 4.88058 6.82929C4.86556 6.73695 4.85033 6.6457 4.8353 6.55373C4.82718 6.56749 4.81895 6.58076 4.81084 6.59453C4.80963 6.65429 4.81056 6.71635 4.80795 6.77503C4.77027 6.78408 4.693 6.7102 4.66322 6.71778C4.58926 6.73698 4.51396 6.89857 4.45644 6.72397C4.42842 6.74177 4.45624 6.85908 4.41457 6.84424C4.40986 6.78485 4.40543 6.72792 4.40052 6.66673C4.36646 6.93208 4.35934 6.77066 4.31267 6.71522C4.2811 6.67755 4.26043 6.7424 4.23037 6.72974C4.22275 6.72648 4.22383 6.6486 4.21862 6.65113C4.20117 6.65916 4.15137 6.76636 4.13905 6.76926C4.02741 6.79751 3.93151 6.78548 3.82518 6.75687C3.81376 6.75397 3.82857 6.83084 3.81674 6.82758C3.79772 6.82246 3.80891 6.70435 3.79789 6.69855C3.76715 6.68306 3.76691 6.8076 3.72403 6.81412C3.58283 6.83548 3.42048 6.74192 3.27297 6.73359C3.26836 6.73359 3.26863 6.80656 3.26362 6.80728C3.23096 6.81085 3.1979 6.71221 3.16824 6.71329C3.11903 6.71474 3.08205 6.81726 3.03344 6.8169C2.93844 6.81653 2.85355 6.76404 2.75584 6.76114C2.67587 6.75861 2.60641 6.76834 2.51872 6.76798C2.13568 6.76653 1.74482 6.99815 1.35917 6.875C1.34936 6.87174 1.35335 6.80727 1.35036 6.81006C1.3219 6.83795 1.31936 6.92494 1.30924 6.74277C1.27298 6.77867 1.26154 6.91554 1.21776 6.90576C1.19442 6.90063 1.21184 6.68851 1.17236 6.79788C1.13671 6.89676 1.17605 7.01302 1.07004 6.89422C1.06723 6.89096 1.05342 6.76166 1.03137 6.79532C1.00922 6.82865 1.03486 6.92123 0.981543 6.94912C0.856376 7.01431 0.69794 6.90255 0.552428 6.93695C0.543309 6.93912 0.455477 7.00824 0.43814 7.04012C0.404587 7.10206 0.411598 7.19814 0.368018 7.22169C0.334345 7.2398 0.306561 7.13096 0.266975 7.15269C0.262362 7.15534 0.254642 7.26729 0.224892 7.25245ZM7.60235 5.07788C7.61057 4.96803 7.6254 4.56371 7.67509 4.68675C7.6798 4.69834 7.65437 4.97639 7.68182 5.02063C7.65496 5.04997 7.62881 5.05947 7.60235 5.0783C7.60235 5.07816 7.60235 5.07802 7.60235 5.07788ZM0.00950623 4.67436C0.0466863 4.69465 0.0839961 4.71474 0.121178 4.73503C0.0955214 4.78393 0.0698303 4.83273 0.0442734 4.88199C0.0326517 4.81282 0.0211279 4.74353 0.00950623 4.67436ZM4.63796 4.8664C4.63793 4.8664 4.63789 4.8664 4.63786 4.8664C4.67694 4.81424 4.71605 4.76198 4.75513 4.70982C4.75103 4.74822 4.74691 4.78678 4.7428 4.82517C4.71194 4.88565 4.68106 4.94605 4.6503 5.00653C4.64619 4.95981 4.64207 4.91312 4.63796 4.8664ZM4.32917 5.2729C4.30422 5.22726 4.31032 5.15029 4.29659 5.07531C4.29659 5.07546 4.29659 5.0756 4.29659 5.07574C4.29297 5.05622 4.27609 5.03914 4.26957 5.03622C4.27197 5.0844 4.27508 5.13196 4.27769 5.17977C4.21946 5.29641 4.10559 4.88193 4.25301 4.71495C4.25081 4.77579 4.2487 4.83632 4.2465 4.89716C4.31976 4.88014 4.40143 5.01211 4.32917 5.2729ZM8.19142 4.90271C8.25395 4.70349 8.274 4.66149 8.34987 4.79804C8.33915 4.85451 8.32844 4.91097 8.31772 4.96744C8.30519 4.90985 8.29276 4.85265 8.28023 4.79505C8.28019 4.79505 8.28016 4.79505 8.28012 4.79505C8.27762 4.85554 8.2751 4.91614 8.2727 4.97662C8.24564 4.952 8.21847 4.92734 8.19142 4.90271ZM1.93532 5.12893C1.91788 4.73104 1.92291 4.96232 1.9727 4.8726C1.98993 4.84144 1.97314 4.77183 1.98386 4.76024C2.04177 4.69692 2.0464 4.96351 2.03347 5.10223C2.0007 5.11165 1.96759 5.12024 1.93542 5.12893C1.93539 5.12893 1.93535 5.12893 1.93532 5.12893ZM0.432853 5.2116C0.432817 5.2116 0.432782 5.2116 0.432746 5.2116C0.431246 5.11455 0.454587 5.08844 0.42826 4.99649C0.448289 4.99685 0.468319 4.99762 0.488448 4.99799C0.482546 5.00703 0.476514 5.01565 0.470611 5.02469C0.475823 5.05801 0.481048 5.09176 0.486259 5.12509C0.493373 5.01353 0.499984 5.07838 0.521026 5.11569C0.515211 4.99652 0.509429 4.87727 0.503615 4.7581C0.528063 4.79359 0.5526 4.8292 0.577048 4.86469C0.577348 4.89472 0.577657 4.9248 0.577956 4.95484C0.587172 4.91646 0.596298 4.87765 0.605514 4.83927C0.608018 4.87512 0.610433 4.91065 0.612937 4.94651C0.624057 4.91935 0.635195 4.89221 0.646316 4.86469C0.6497 4.95154 0.62519 4.98908 0.668639 4.96701C0.655312 5.05611 0.642011 5.14493 0.628585 5.23403C0.563344 5.22678 0.498094 5.2192 0.432853 5.2116ZM2.38825 5.00653C2.31639 5.02319 2.33663 4.96025 2.35327 4.76323C2.36489 4.84434 2.37663 4.92542 2.38825 5.00653ZM6.09022 5.18191C6.11107 5.04752 6.132 4.91448 6.15335 4.7848C6.19584 4.70982 6.23835 4.95476 6.20638 5.05075C6.1679 5.16592 6.1277 5.03702 6.09022 5.18191ZM7.05804 5.12209C7.00605 5.05978 7.05497 4.9001 7.06669 4.80702C7.08107 4.95662 7.10113 4.94342 7.13334 4.96082C7.1031 4.97052 7.06664 5.13267 7.05804 5.12252C7.05804 5.12238 7.05804 5.12224 7.05804 5.12209ZM5.25357 5.03088C5.23274 5.0349 5.21201 5.07243 5.19338 5.02682C5.199 4.89832 5.23627 5.01523 5.20962 4.82475C5.22294 4.82149 5.23628 4.81833 5.24951 4.81471C5.24111 4.89363 5.25241 4.95261 5.25352 5.03045C5.25353 5.0306 5.25355 5.03074 5.25357 5.03088ZM3.08444 4.85508C3.12533 5.00721 3.13308 4.94212 3.17427 4.83671C3.18008 4.96058 3.13096 5.16806 3.1002 5.21373C3.09499 5.09421 3.08976 4.9746 3.08444 4.85508ZM12.7561 4.91852C12.7462 5.07641 12.6738 5.097 12.6378 5.05032C12.6421 5.0269 12.6464 5.00317 12.6507 4.9794C12.6858 4.95912 12.721 4.93881 12.7561 4.91852ZM7.14867 4.9715C7.14328 4.96687 7.13817 4.96342 7.13334 4.96082C7.13871 4.9591 7.14389 4.96179 7.14867 4.9715ZM9.3257 5.65677C9.30857 5.80562 9.35949 5.85563 9.29766 5.79732C9.29766 5.79747 9.29766 5.79761 9.29766 5.79775C9.25677 5.75936 9.24774 5.7491 9.20986 5.73751C9.2235 5.54629 9.30035 5.47793 9.19443 5.43845C9.19303 5.43828 9.19581 5.55207 9.17889 5.5365C9.17366 5.53166 9.15694 5.43828 9.13152 5.41111C9.1233 5.40242 9.06154 5.37362 9.14572 5.37181C9.14322 5.23851 9.14774 5.10359 9.14754 4.97427C9.1804 4.93669 9.20565 5.19771 9.24041 5.19131C9.29202 5.18116 9.31829 4.91722 9.32821 5.26351C9.28481 5.34858 9.21029 5.35063 9.20057 5.14239C9.15858 5.13985 9.14653 5.31047 9.18038 5.39488C9.3254 5.28766 9.22019 5.64813 9.34717 5.51194C9.34867 5.46378 9.35389 5.41195 9.3531 5.36668C9.39186 5.53616 9.33181 5.60353 9.3257 5.65677ZM9.02246 5.2885C9.04752 5.18671 9.07249 5.08411 9.09744 4.98197C9.09744 5.14786 9.08368 5.29673 9.0442 5.39018C9.03699 5.35616 9.02967 5.32216 9.02246 5.2885ZM11.1301 5.24492C11.1337 5.15473 11.1433 5.07208 11.1503 4.98624C11.1579 5.0623 11.3383 5.13527 11.2465 5.20989C11.2332 5.22076 11.1519 5.06127 11.1301 5.24492ZM2.80054 4.99094C2.82179 5.05143 2.84295 5.11202 2.86409 5.17251C2.83154 5.21088 2.79896 5.25026 2.76641 5.28935C2.77782 5.18991 2.78913 5.09038 2.80054 4.99094ZM6.43608 5.34019C6.4271 5.33681 6.45691 5.21277 6.42155 5.23232C6.44791 5.15299 6.47259 5.08585 6.49835 5.01123C6.50607 5.06991 6.51386 5.12835 6.52158 5.18703C6.52759 5.14936 6.53372 5.11192 6.53974 5.07425C6.53613 5.15973 6.53292 5.24322 6.52911 5.33015C6.48572 5.14687 6.47576 5.35468 6.43608 5.34019ZM5.14574 5.6745C5.13794 5.48871 5.20078 5.37823 5.13896 5.34852C5.15069 5.22646 5.16954 5.16244 5.20572 5.15157C5.21152 5.19825 5.21732 5.24459 5.22313 5.29128C5.22393 5.16636 5.23324 5.11993 5.25357 5.03088C5.25359 5.03102 5.25361 5.03117 5.25362 5.03131C5.30862 5.02227 5.30534 5.06392 5.31856 5.26927C5.26033 5.15336 5.2586 5.34099 5.21891 5.45255C5.19165 5.52927 5.15606 5.49453 5.14574 5.6745ZM10.9379 5.24706C10.979 5.09023 10.9421 4.94395 11.0151 5.11056C11.0104 5.1504 11.0057 5.18991 11.001 5.22976C10.9799 5.23591 10.9589 5.24163 10.9379 5.24706ZM4.94253 5.03772C4.94724 5.3253 4.98601 5.54917 4.99263 5.08129C4.95485 4.98603 4.9733 5.25105 4.94253 5.03772ZM7.04031 5.57239C6.96766 5.55897 6.98139 5.23438 7.01126 5.07211C7.01587 5.13115 7.02047 5.1903 7.02498 5.24898C7.03771 5.22218 7.05044 5.19532 7.06317 5.16888C7.05555 5.30326 7.04793 5.43801 7.04031 5.57239ZM3.66171 5.35365C3.71723 5.14827 3.60177 5.23943 3.64056 5.1112C3.67153 5.0087 3.71233 5.21565 3.6969 5.34532C3.68618 5.34894 3.67424 5.35148 3.66181 5.35365C3.66178 5.35365 3.66174 5.35365 3.66171 5.35365ZM3.983 5.29491C3.97388 5.07547 3.98702 5.13943 3.94315 5.17892C3.93063 5.19014 3.83108 5.10773 3.87287 5.28957C3.90844 5.28957 3.94602 5.29273 3.983 5.29491ZM7.88011 5.25133C7.88078 5.34689 7.80413 5.55672 7.79429 5.50425C7.79429 5.50439 7.79429 5.50453 7.79429 5.50467C7.76773 5.3616 7.84859 5.34127 7.81352 5.14495C7.89118 5.3177 7.91442 4.89985 7.90901 5.45042C7.86326 5.47457 7.88492 5.36108 7.88011 5.25133ZM13.7071 5.36839C13.7071 5.36839 13.7072 5.36839 13.7072 5.36839C13.7021 5.3639 13.6596 5.22365 13.6648 5.17507C13.7158 5.21672 13.7067 5.30904 13.7542 5.15734C13.7568 5.2062 13.759 5.25359 13.7618 5.30281C13.743 5.33179 13.7326 5.39049 13.7071 5.36839ZM11.3251 5.4376C11.3064 5.46259 11.2722 5.35903 11.2508 5.36519C11.3188 4.96747 11.4 5.33834 11.3251 5.4376ZM1.13557 5.19793C1.13562 5.19778 1.13567 5.19764 1.13573 5.1975C1.13571 5.19772 1.13569 5.19792 1.13567 5.19814C1.13564 5.19807 1.1356 5.198 1.13557 5.19793ZM9.87284 5.199C9.87526 5.22481 9.87662 5.24724 9.87711 5.26692C9.87711 5.26877 9.87711 5.27063 9.87711 5.27248C9.87581 5.2483 9.87442 5.22386 9.87284 5.199ZM8.03942 5.22249C8.07135 5.35576 7.96498 5.56764 7.93058 5.51706C7.93299 5.45624 7.93336 5.40109 7.93897 5.33122C7.96673 5.48874 8.03411 5.20004 8.03942 5.22249ZM5.61427 5.27141C5.69836 5.27503 5.58893 5.80124 5.58442 5.38142C5.58459 5.37329 5.6121 5.27213 5.61427 5.27141ZM7.37634 5.2776C7.35492 5.43692 7.39797 5.47922 7.32913 5.4517C7.32512 5.41043 7.32112 5.36907 7.31711 5.3278C7.33685 5.31115 7.3566 5.29426 7.37634 5.2776ZM6.1651 5.96223C6.27092 5.87349 6.37214 5.71694 6.3032 5.2776C6.2952 5.29172 6.28708 5.30536 6.27906 5.31947C6.27786 5.53381 6.24831 5.41681 6.20504 5.40983C6.19888 5.49493 6.17489 5.5146 6.17038 5.58692C6.16168 5.7267 6.18925 5.82497 6.1651 5.96223ZM1.69723 5.6134C1.69894 5.57682 1.7006 5.54004 1.70231 5.50382C1.71904 5.46253 1.73582 5.42143 1.75256 5.38014C1.74986 5.45035 1.74714 5.52055 1.74444 5.59076C1.72872 5.59836 1.71306 5.60601 1.69734 5.61362C1.6973 5.61355 1.69727 5.61347 1.69723 5.6134ZM8.91934 5.74072C8.92895 5.33803 8.89535 5.4122 8.82721 5.61575C8.85788 5.65741 8.88867 5.69906 8.91934 5.74072ZM4.46455 5.79903C4.46235 5.68463 4.46018 5.57058 4.45788 5.45618C4.4217 5.57536 4.42842 5.70637 4.44576 5.85778C4.45206 5.83824 4.45825 5.81857 4.46455 5.79903ZM3.94342 5.84774C3.95843 5.8716 3.95077 5.77924 3.95234 5.78109C3.99032 5.82963 3.99567 5.872 4.04228 5.80245C4.04798 5.77819 4.0536 5.75267 4.05931 5.72769C4.03777 5.48797 4.02213 5.61862 3.97653 5.47776C3.98475 5.55998 3.99294 5.64232 4.00115 5.72491C3.97581 5.70753 3.95056 5.69038 3.92521 5.673C3.9222 5.69836 3.91919 5.72348 3.91618 5.74883C3.9252 5.78142 3.9345 5.81805 3.94342 5.84774ZM1.50369 5.50937C1.47904 5.49996 1.45427 5.49017 1.42962 5.48075C1.42871 5.53979 1.42785 5.59922 1.42695 5.65826C1.45249 5.60865 1.47814 5.55899 1.50369 5.50937ZM9.42551 5.55722C9.42747 5.53628 9.42938 5.51521 9.43107 5.49378C9.4309 5.5199 9.42877 5.54028 9.42551 5.55722ZM13.7721 5.69223C13.8001 5.73351 13.8404 5.7064 13.8711 5.71508C13.8686 5.56697 13.7907 5.60791 13.7633 5.51813C13.7589 5.54471 13.7603 5.67485 13.7721 5.69223ZM6.9398 5.55936C6.93279 5.63324 6.92578 5.70678 6.91887 5.78066C6.90193 5.77269 6.88495 5.76428 6.86792 5.75631C6.86741 5.8168 6.86692 5.87782 6.86642 5.93831C6.94147 5.85972 6.92417 6.03415 6.96132 6.20618C6.95411 5.9907 6.94701 5.7752 6.9398 5.55936ZM0.719268 5.89302C0.773485 5.85209 0.792717 5.77564 0.762153 5.59418C0.743016 5.63582 0.72377 5.6775 0.704635 5.71914C0.709543 5.77708 0.714459 5.83508 0.719268 5.89302ZM10.4129 5.69393C10.4583 5.62613 10.4591 5.86967 10.5034 5.73367C10.4797 5.68876 10.4559 5.64336 10.4323 5.59845C10.4259 5.6302 10.4193 5.66218 10.4129 5.69393ZM8.18773 6.36276C8.20687 6.44748 8.24265 6.04475 8.29646 6.34204C8.30929 6.25331 8.31733 6.16856 8.32835 6.08164C8.33476 6.17618 8.34205 6.27193 8.34816 6.36575C8.3482 6.36575 8.34823 6.36575 8.34827 6.36575C8.39707 6.33387 8.36543 6.2153 8.36653 6.11496C8.36705 6.07337 8.40327 6.1429 8.39195 6.05238C8.37241 5.89698 8.29939 5.98634 8.29919 5.7969C8.32484 5.85881 8.37494 5.80707 8.36012 5.68069C8.34389 5.54197 8.29668 5.77445 8.26661 5.65933C8.30969 5.96211 8.22071 5.86859 8.21059 5.63605C8.15838 5.81462 8.20637 5.88746 8.25988 5.87914C8.22721 6.05735 8.2753 5.96106 8.28322 6.1092C8.24953 6.19862 8.13392 6.12408 8.18773 6.36276ZM5.72434 6.03443C5.76043 6.02294 5.81681 6.1248 5.84151 5.97441C5.8559 5.88679 5.79939 5.81893 5.83836 5.68133C5.8032 5.69475 5.79518 5.7485 5.80119 5.8691C5.79318 5.88358 5.78506 5.8977 5.77705 5.91182C5.77334 5.88829 5.76954 5.86507 5.76584 5.84154C5.76163 5.89116 5.75739 5.94038 5.75329 5.99C5.74478 5.98023 5.73616 5.97044 5.72765 5.96031C5.72665 5.98526 5.72494 6.00697 5.72434 6.03443ZM11.7157 5.68646C11.7056 5.68791 11.6957 5.68935 11.6857 5.69116C11.6868 5.72053 11.6881 5.75112 11.6894 5.7813C11.6903 5.80516 11.6912 5.82901 11.6921 5.85286C11.6863 5.76764 11.6386 5.62599 11.6185 5.71701C11.6083 5.76266 11.6314 5.92475 11.5885 5.95305C11.6196 5.94471 11.6483 5.92259 11.6785 5.90883C11.6758 5.95701 11.6732 6.0057 11.6705 6.05387C11.6705 6.05394 11.6705 6.05401 11.6705 6.05409C11.6805 6.06495 11.6907 6.07633 11.7007 6.0872C11.7057 5.95354 11.7106 5.82012 11.7157 5.68646ZM4.49393 6.02525C4.5281 5.93071 4.53954 5.88161 4.52341 5.72875C4.52337 5.72868 4.52334 5.72861 4.5233 5.72854C4.51057 5.79626 4.49784 5.86396 4.48512 5.93169C4.48802 5.96284 4.49092 5.9941 4.49393 6.02525ZM9.71989 6.06178C9.79254 5.48115 9.62892 5.83708 9.66007 6.03486C9.66148 6.04392 9.71307 5.99766 9.71989 6.06178ZM7.05366 5.75097C7.03372 5.75568 7.01373 5.75993 6.99369 5.76464C6.9983 5.836 7.00302 5.90711 7.00763 5.97847C7.02296 5.90276 7.03833 5.82667 7.05366 5.75097ZM0.955321 6.15662C0.976312 6.316 1.03019 6.37374 1.05652 6.20041C1.04269 6.18013 1.02886 6.15982 1.01503 6.13953C1.04118 6.11962 1.06703 6.09769 1.09337 6.07886C1.09478 5.85682 1.06441 5.98564 1.01871 5.92442C1.01164 5.91455 0.966402 5.63893 0.950781 5.84667C0.947641 5.88937 0.995759 5.9184 0.962317 6.04255C0.976941 6.05232 0.989563 6.05015 1.00339 6.05558C1.00439 6.10847 1.00538 6.16141 1.00648 6.21429C0.989391 6.19515 0.972411 6.17577 0.955321 6.15662ZM5.93444 6.01713C5.98401 6.02938 5.99013 5.94066 6.00045 5.78387C5.9774 5.80161 5.95434 5.81909 5.93129 5.83684C5.93239 5.89681 5.93334 5.9568 5.93444 6.01713ZM1.39837 6.20746C1.42551 6.23311 1.41389 6.10548 1.42481 6.08121C1.4661 5.98995 1.49426 6.08116 1.53504 6.02397C1.53233 6.0486 1.52985 6.07162 1.52724 6.09553C1.52728 6.09553 1.52731 6.09553 1.52735 6.09553C1.72046 6.20309 1.61903 5.91365 1.50348 5.96074C1.50077 5.91329 1.49817 5.86577 1.49547 5.81868C1.44376 5.90163 1.39607 5.98144 1.39837 6.20746ZM9.07437 6.08164C9.07658 6.11134 9.05784 6.3001 9.09301 6.21173C9.12086 5.93614 9.07518 6.07293 9.06374 5.96693C9.07327 5.94049 9.083 5.91476 9.09242 5.88832C9.0355 5.81044 9.02719 5.87597 9.04794 6.07737C9.04942 6.0909 9.07216 6.05203 9.07437 6.08164ZM9.44848 6.2175C9.4563 5.81145 9.38446 5.99404 9.38706 6.12009C9.39698 6.12512 9.40469 6.05637 9.41521 6.08677C9.42583 6.11719 9.42854 6.21204 9.44848 6.2175ZM7.39028 6.11817C7.39238 6.11998 7.41353 6.29064 7.41143 6.15705C7.38527 5.84083 7.33257 6.04437 7.34178 6.15448C7.35922 6.14904 7.37084 6.10159 7.39028 6.1186C7.39028 6.11845 7.39028 6.11831 7.39028 6.11817ZM0.628371 6.25232C0.629371 6.26365 0.682124 6.33224 0.688933 6.26855C0.694544 6.19685 0.697327 6.11999 0.701537 6.04575C0.672474 6.11458 0.613645 6.06215 0.628478 6.25232C0.628443 6.25232 0.628407 6.25232 0.628371 6.25232ZM8.95822 9.19094C8.83124 9.09156 8.98217 9.09963 8.7743 8.96658C8.77578 8.9445 8.77677 8.92218 8.77826 8.90009C8.83751 8.96431 8.89671 9.02831 8.95597 9.09253C8.95669 9.12554 8.95779 9.15825 8.9585 9.19127C8.95841 9.19116 8.95832 9.19105 8.95822 9.19094ZM9.64156 10.0448C9.49536 9.84239 9.49843 9.75296 9.30085 9.61901C9.35202 9.68764 9.40309 9.75634 9.45426 9.82496C9.39451 9.78864 9.33448 9.75259 9.27512 9.71641C9.28994 9.74651 9.30481 9.77663 9.31944 9.80643C9.21601 9.69939 9.11251 9.59189 9.00897 9.48447C9.02983 9.49533 9.05097 9.50644 9.07186 9.51726C9.02154 9.40201 9.02455 9.35635 9.04724 9.30784C9.02131 9.28375 8.99558 9.25989 8.96967 9.23577C9.02711 9.26552 9.08465 9.29536 9.14213 9.32506C9.16346 9.38381 9.18729 9.44906 9.20729 9.50372C9.38176 9.66115 9.34113 9.52591 9.33229 9.46984C9.32031 9.39325 9.38455 9.48389 9.37751 9.42922C9.37649 9.42061 9.32099 9.3539 9.32728 9.34668C9.33901 9.33349 9.36004 9.32186 9.38653 9.32183C9.43467 9.31947 9.49615 9.35351 9.55008 9.475C9.54148 9.47857 9.53429 9.48377 9.52818 9.49022C9.48154 9.54044 9.51548 9.67428 9.42931 9.67751C9.59561 9.84353 9.61643 9.93019 9.64156 10.0448ZM10.1963 8.5764C10.2577 8.67463 10.1919 8.67311 10.1156 8.63614C10.1156 8.63616 10.1155 8.63619 10.1155 8.63621C10.0986 8.62817 9.9847 8.52765 10.0053 8.51698C10.0392 8.50004 10.2136 8.66275 10.1181 8.53098C10.145 8.54709 10.1695 8.56079 10.1963 8.5764ZM10.2451 8.51166C10.3015 8.5387 10.4163 8.67675 10.3625 8.66062C10.3626 8.66073 10.3627 8.66083 10.3628 8.66094C10.3404 8.65417 10.2607 8.53471 10.3278 8.66876C10.2451 8.59295 10.1695 8.52431 10.0895 8.45084C10.0958 8.44252 10.1007 8.43393 10.1077 8.42536C10.228 8.56472 10.1891 8.48478 10.2451 8.51166ZM9.51782 9.37008C9.41508 9.24036 9.40339 9.25138 9.3073 9.18208C9.33204 9.16847 9.3564 9.15579 9.37982 9.14348C9.42585 9.21911 9.47174 9.29445 9.51782 9.37008ZM9.05569 9.72524C9.05567 9.72526 9.05564 9.72529 9.05561 9.72531C9.06629 9.75038 9.07704 9.77551 9.08759 9.80021C9.04613 9.75791 9.00493 9.71573 8.96345 9.67344C8.97768 9.73377 8.9919 9.79404 9.00638 9.85451C8.89372 9.71365 8.95033 9.70475 8.89054 9.59045C8.95633 9.6063 9.03896 9.67362 9.13908 9.78915C9.11146 9.76789 9.08341 9.74642 9.05569 9.72524ZM13.3119 5.77889C13.2667 5.80241 13.2211 5.82553 13.1758 5.84884C13.1662 5.87334 13.1617 5.89553 13.1498 5.92295C13.3413 5.81394 13.1941 5.93775 13.2352 5.96613C13.3623 6.05163 13.5854 5.79385 13.3069 6.22293C13.2527 6.12831 13.1074 6.3139 12.9279 6.38101C13.0218 6.28152 13.2948 6.12681 13.3143 6.05242C13.1576 6.0924 13.0063 6.12135 12.8789 6.11134C12.8622 6.1281 12.8454 6.14492 12.8287 6.16172C12.8492 6.16354 12.8696 6.16496 12.8898 6.16628C12.8316 6.19459 12.7736 6.22224 12.7138 6.24961C12.8379 6.17565 12.7436 6.18585 12.8766 6.08896C12.9356 6.04556 13.0284 5.99912 13.0905 5.96467C13.0997 5.91553 13.108 5.87001 13.1176 5.82206C13.1737 5.79928 13.2294 5.77577 13.2846 5.75158C13.2938 5.76027 13.3028 5.76936 13.3123 5.7783C13.3122 5.7785 13.312 5.77869 13.3119 5.77889ZM8.5785 1.66979C8.74262 1.60947 8.80526 1.65217 8.67086 1.79108C8.63965 1.75063 8.60871 1.71026 8.5785 1.66979ZM9.22207 9.88403C9.20042 9.86442 9.17909 9.84494 9.1574 9.82535C9.13653 9.77292 9.11588 9.72077 9.09507 9.66826C9.15149 9.7301 9.20789 9.79197 9.26414 9.85348C9.25027 9.86371 9.23587 9.87389 9.22207 9.88403ZM10.0254 9.08337C10.0194 9.09548 10.017 9.09391 9.99734 9.09538C9.9974 9.09542 9.99746 9.09546 9.99752 9.0955C9.98973 9.09648 9.91932 9.09338 9.88109 9.04123C9.89947 9.02365 9.9204 9.00661 9.93948 8.98966C9.9682 9.0208 9.99624 9.0521 10.0254 9.08337ZM9.77674 9.24909C9.77662 9.249 9.7765 9.24892 9.77638 9.24883C9.76299 9.24732 9.74364 9.23757 9.73415 9.24079C9.69468 9.14161 9.816 9.27713 9.80618 9.21802C9.79631 9.15843 9.7445 9.0707 9.92705 9.24221C9.94386 9.27698 9.97089 9.32413 9.99135 9.36384C9.89298 9.31695 9.94471 9.39595 9.98048 9.49418C9.91243 9.41228 9.84482 9.33096 9.77674 9.24909ZM13.3551 6.57992C13.4499 6.50102 13.3664 6.58862 13.3657 6.59009C13.3656 6.59018 13.3655 6.59026 13.3654 6.59035C13.4798 6.54675 13.3187 6.64013 13.318 6.66834C13.2942 6.68789 13.2682 6.70746 13.2423 6.72518C13.2827 6.68123 13.3238 6.62653 13.3551 6.57992ZM11.8602 7.4451C11.8349 7.41965 11.8095 7.39424 11.7842 7.36879C11.8228 7.34355 11.734 7.23313 11.8501 7.30015C11.8537 7.34871 11.857 7.39723 11.8605 7.44541C11.8604 7.4453 11.8603 7.4452 11.8602 7.4451ZM10.3631 9.13009C10.3728 9.21393 10.3663 9.26052 10.2586 9.2112C10.2585 9.21111 10.2584 9.21103 10.2583 9.21095C10.2518 9.20778 10.2113 9.14328 10.1961 9.13159C10.1964 9.14639 10.2006 9.16578 10.2025 9.18208C10.1614 9.13821 10.1204 9.0943 10.0796 9.05073C10.1106 9.04577 10.1425 9.03994 10.174 9.03437C10.1474 9.01105 10.121 8.98798 10.0945 8.96459C10.0996 8.93555 10.1041 8.90708 10.1092 8.87796C10.1695 8.95626 10.2298 9.03458 10.2904 9.1131C10.3145 9.1191 10.3387 9.12391 10.3631 9.13009ZM12.6812 7.20856C12.6485 7.18555 12.6147 7.12731 12.5824 7.11137C12.5504 7.09579 12.5838 7.1645 12.5122 7.08028C12.5141 7.0581 12.5156 7.03343 12.5177 7.01021C12.3408 6.90288 12.4239 7.07205 12.2548 6.8935C12.3378 6.90306 12.3492 6.85173 12.3407 6.76659C12.4723 6.91079 12.5499 7.06923 12.6987 7.18108C12.6928 7.18999 12.6874 7.20017 12.6809 7.20817C12.681 7.2083 12.6811 7.20843 12.6812 7.20856ZM10.1292 12.2911C10.0867 12.3039 10.0456 12.4307 9.92727 12.3726C9.8975 12.3589 9.65598 12.0829 9.63087 12.042C9.54589 11.9051 9.58024 11.8566 9.47281 11.8011C9.48963 11.789 9.50169 11.7739 9.51629 11.7606C9.45334 11.6724 9.39082 11.5843 9.3287 11.496C9.32003 11.5213 9.31039 11.547 9.30034 11.5731C9.28028 11.5433 9.26022 11.5135 9.24023 11.4837C9.305 11.4415 9.19173 11.3496 9.15151 11.2218C9.08832 11.1855 9.02563 11.1486 8.96559 11.1088C8.98474 11.1065 9.00595 11.1002 9.02419 11.0996C8.92639 10.9443 8.92053 10.9998 8.89741 10.974C8.76962 10.828 8.95928 10.8207 8.81563 10.5934C8.77825 10.5834 8.74146 10.5735 8.70608 10.5617C8.69342 10.5305 8.68067 10.4994 8.6675 10.4685C8.81337 10.5926 8.90721 10.6056 9.03371 10.6539C9.03429 10.644 9.03478 10.6338 9.03552 10.6242C8.98383 10.5593 8.93247 10.4946 8.88091 10.4296C8.88246 10.4162 8.88438 10.4025 8.88578 10.3891C9.02948 10.623 9.05769 10.597 9.19958 10.6976C9.23758 10.7897 9.17556 10.7639 9.28627 10.9044C9.27628 10.7387 9.48197 10.823 9.45451 10.6449C9.44752 10.6011 9.30147 10.4226 9.35486 10.4062C9.36962 10.4269 9.39848 10.4624 9.41877 10.4889C9.41817 10.3462 9.41739 10.2609 9.5617 10.287C9.50431 10.2269 9.44679 10.1665 9.38939 10.1064C9.40057 10.1509 9.41254 10.1956 9.42367 10.2401C9.32559 10.1436 9.30215 10.0845 9.25795 10.1232C9.22177 10.1547 9.28235 10.1829 9.29821 10.2225C9.31976 10.2766 9.23843 10.2024 9.26322 10.2622C9.28203 10.3082 9.36613 10.3853 9.31825 10.3876C9.23722 10.2648 9.15331 10.1382 9.07074 10.0142C9.09879 10.0338 9.12719 10.0538 9.15561 10.0735C9.17331 10.1096 9.19081 10.1452 9.20851 10.1814C9.18925 10.1061 9.17102 10.0351 9.15082 9.95721C9.27764 10.1269 9.25409 10.0433 9.25307 10.0116C9.25106 9.96232 9.32466 10.0905 9.32428 10.0592C9.32381 10.0275 9.23553 9.88927 9.28553 9.8927C9.33122 9.97729 9.40573 10.025 9.4577 10.0948C9.50968 10.1647 9.49261 10.2041 9.58186 10.2531C9.5896 10.1524 9.31804 9.94827 9.31996 9.87661C9.32209 9.79059 9.68025 10.1943 9.74175 10.2942C9.79019 10.3727 9.74275 10.3886 9.79079 10.467C9.96035 10.5388 9.75238 10.2904 9.72236 10.2329C9.61314 10.0232 9.98364 10.5163 9.88683 10.3066C9.96018 10.3953 10.0262 10.4751 10.0965 10.5603C10.0911 10.5374 10.0785 10.5115 10.0776 10.4905C9.90399 10.3434 9.93399 10.3307 9.94575 10.3203C9.96432 10.3037 9.86437 10.2448 9.8512 10.219C9.81601 10.1498 9.85976 10.1578 9.78278 10.0934C9.81837 10.1235 9.8546 10.1533 9.89011 10.1831C9.87527 10.1206 9.61824 9.70866 9.6307 9.82511C9.52026 9.68465 9.59181 9.73659 9.6219 9.74676C9.65202 9.75688 9.57851 9.6701 9.60321 9.67676C9.70154 9.70382 9.79787 9.87703 9.88916 9.99951C9.88272 9.9117 9.83382 9.88106 9.81523 9.83147C9.80672 9.8078 9.80527 9.77963 9.81884 9.73901C9.74808 9.63626 9.62211 9.56862 9.61058 9.48491C9.75488 9.64563 9.87867 9.74439 9.97083 9.76136C9.94377 9.71936 9.91642 9.67702 9.88936 9.63501C10.0412 9.76799 10.1608 9.93799 10.0495 9.70935C10.3148 10.0799 10.1461 9.84206 10.3066 9.94919C10.3391 9.97065 10.3797 10.0596 10.4224 10.0862C10.4418 10.0981 10.4092 10.0325 10.4581 10.0633C10.482 10.0787 10.626 10.1864 10.5936 10.1046C10.4356 9.94995 10.3526 9.77447 10.2013 9.66405C10.2911 9.64649 10.2652 9.5288 10.3926 9.81559C10.4516 9.8527 10.5108 9.8893 10.5704 9.92535C10.547 9.87607 10.5237 9.82729 10.5006 9.77819C10.6214 9.91296 10.6531 9.95282 10.6756 9.89053C10.6853 9.93894 10.695 9.98826 10.7038 10.0377C10.7272 10.0658 10.7495 10.0968 10.7734 10.123C10.7517 10.0498 10.7979 9.9691 10.7816 9.91907C10.7656 9.86882 10.7259 9.88646 10.6995 9.84738C10.4812 9.5259 10.6667 9.74118 10.6495 9.66779C10.6389 9.62479 10.5735 9.62636 10.5707 9.60653C10.5605 9.53366 10.7119 9.67286 10.7413 9.64975C10.6534 9.57257 10.5646 9.49365 10.4769 9.41479C10.509 9.39416 10.5416 9.36592 10.5425 9.31454C10.5429 9.29447 10.4769 9.23768 10.4747 9.23188C10.4629 9.2024 10.4649 9.13678 10.4681 9.13334C10.4947 9.10795 10.5762 9.19566 10.6069 9.17624C10.6035 9.19324 10.6001 9.2088 10.5969 9.22504C10.7237 9.37209 10.8503 9.5194 10.9773 9.66691C11.0131 9.6531 11.0493 9.63857 11.0845 9.62513C11.0218 9.59491 10.958 9.56603 10.8953 9.53561C10.8188 9.39284 10.7414 9.25031 10.6641 9.10756C10.7446 9.16423 10.8255 9.2205 10.907 9.27627C10.9308 9.21937 10.6573 8.94319 10.907 9.1703C10.9079 9.17108 10.9087 9.17186 10.9096 9.17265C10.9018 9.14025 10.8942 9.10772 10.8869 9.0753C10.9186 9.11258 10.9504 9.14992 10.9821 9.18721C10.9765 9.15127 10.9708 9.11557 10.9646 9.07968C10.8306 8.96806 10.6905 8.84968 10.5602 8.74152C10.5634 8.6869 10.6645 8.79343 10.6939 8.81613C10.7716 8.87626 10.7046 8.75953 10.7754 8.81617C10.7997 8.8357 10.8374 8.933 10.9237 9.00488C10.9406 9.0187 11.2597 9.28116 11.2194 9.18904C11.1679 9.13551 11.1035 9.07113 11.047 9.01336C11.049 8.94944 11.3317 9.21556 11.4021 9.29844C11.3674 9.22662 11.3887 9.19763 11.3104 9.10816C11.3173 9.09766 11.3242 9.08729 11.3312 9.0767C11.5209 9.2955 11.5222 9.22137 11.353 9.03888C11.3337 9.04869 11.3135 9.05897 11.2941 9.06891C11.0957 8.83668 10.9226 8.74722 11.2136 8.8605C11.3412 8.95804 11.166 8.87582 11.2628 8.94775C11.3363 8.97337 11.3216 8.90748 11.4222 8.96423C11.5482 9.03483 11.6018 9.16703 11.5527 8.97123C11.0903 8.80382 11.3694 8.73527 11.3495 8.56546C11.6702 8.86026 11.8281 8.89983 11.8255 8.72347C11.7329 8.64458 11.7487 8.71578 11.7054 8.70198C11.6622 8.68817 11.6296 8.62008 11.5711 8.59787C11.5127 8.57554 11.4178 8.55999 11.3392 8.51684C11.3084 8.45157 11.2797 8.25519 11.3591 8.44822C11.4828 8.49581 11.587 8.56662 11.6531 8.53449C11.5379 8.38363 11.4556 8.29972 11.5011 8.24865C11.6532 8.466 11.8352 8.54421 12.0101 8.75176C11.9315 8.7396 11.7691 8.53058 11.6618 8.45886C11.651 8.45176 11.6639 8.53068 11.6531 8.53449C11.8495 8.67404 11.9218 8.72669 12.096 8.94952C12.1023 8.90938 12.1412 8.92111 12.0504 8.82196C12.0956 8.85946 12.1408 8.89697 12.1858 8.93454C12.1924 8.92624 12.1955 8.91581 12.2043 8.9089C12.0531 8.77302 12.1609 8.84261 12.1125 8.76167C12.0642 8.68062 11.9331 8.58454 11.9734 8.54296C11.9267 8.52201 11.8858 8.50478 11.8413 8.4852C11.8321 8.42178 11.823 8.35788 11.8139 8.29442C11.7094 8.223 11.5411 8.12941 11.4296 8.01055C11.4845 8.04315 11.4524 7.92424 11.4539 7.9166C11.4604 7.88731 11.5217 7.97097 11.5248 7.9715C11.5876 7.98049 11.5868 7.93284 11.7052 8.03509C11.6779 7.96394 11.7217 7.97752 11.7416 7.95303C11.7525 7.93956 11.671 7.85921 11.6933 7.86793C11.8419 7.92635 11.8978 8.07737 11.7968 7.78463C11.7305 7.73782 11.663 7.68957 11.5961 7.64227C11.5859 7.61044 11.5755 7.57854 11.5653 7.54672C11.5824 7.55044 11.5995 7.55431 11.6165 7.55805C11.7357 7.68311 11.8552 7.80846 11.9743 7.93352C11.9886 7.93293 12.0027 7.93209 12.017 7.9315C12.0154 7.95652 12.0138 7.98155 12.0124 8.00652C12.0321 8.02965 12.052 8.05272 12.0718 8.07586C12.124 8.09111 12.1766 8.10662 12.229 8.12211C12.1879 8.07829 12.1465 8.03416 12.1054 7.99034C12.2075 8.0085 12.2439 8.04413 12.1718 7.88411C12.2056 7.85439 12.0589 7.64707 12.0047 7.5526C12.0346 7.57059 12.0651 7.58871 12.0951 7.60657C12.065 7.56622 12.0351 7.526 12.005 7.48565C12.0616 7.5278 12.1182 7.56988 12.1745 7.61183C12.0704 7.49296 12.039 7.45481 11.9672 7.44671C11.8433 7.29362 11.9625 7.29974 12.0319 7.32469C12.0846 7.34363 12.1772 7.48154 12.1932 7.49381C12.2473 7.53577 12.2375 7.46452 12.2515 7.46669C12.3104 7.47521 12.3236 7.4514 12.3728 7.45469C12.3825 7.45548 12.467 7.5184 12.4704 7.51972C12.4911 7.52455 12.5475 7.54057 12.5509 7.53935C12.7302 7.47659 12.2863 7.27647 12.4365 7.19998C12.3922 7.16016 12.3486 7.12025 12.3044 7.08027C12.3107 7.06939 12.3177 7.05804 12.3242 7.04699C12.3696 7.07241 12.4177 7.15106 12.3903 7.07686C12.439 7.13155 12.4876 7.18626 12.536 7.24074C12.5187 7.20277 12.5011 7.16562 12.4842 7.1273C12.6742 7.29718 12.7703 7.2862 12.97 7.50755C13.0377 7.58315 13.0689 7.69643 13.164 7.75581C13.1956 7.7554 13.1013 7.67776 13.104 7.6665C13.1251 7.58628 13.2373 7.71391 13.2276 7.6611C13.1813 7.60477 13.1342 7.54724 13.0875 7.4903C13.1099 7.49863 13.1323 7.50702 13.1546 7.51544C13.1231 7.47794 13.0917 7.44027 13.0604 7.40267C13.0506 7.40726 13.0403 7.41236 13.0312 7.41632C12.9112 7.26926 12.9422 7.12474 13.0181 7.27439C13.0492 7.33493 13.0052 7.33777 13.173 7.48728C13.1737 7.46772 13.1747 7.44763 13.1758 7.42751C13.1779 7.40035 13.1801 7.37299 13.1817 7.3465C13.2153 7.38101 13.2489 7.41562 13.2826 7.45011C13.2952 7.39563 13.1326 7.28397 13.0624 7.20823C13.068 7.19911 13.0739 7.19004 13.0794 7.18089C13.1146 7.21192 13.1511 7.24464 13.1855 7.2744C13.1349 7.21997 13.0205 7.09055 13.0867 7.11615C13.1298 7.13275 13.2361 7.29029 13.2459 7.24511C13.1638 7.16328 13.057 7.07012 13.0609 7.01474C13.1475 7.09929 13.2284 7.17523 13.3188 7.2646C13.2764 7.14416 13.4241 7.26118 13.3738 7.12109C13.3424 7.03202 13.1636 6.78152 13.5137 7.09245C13.543 7.08025 13.4535 7.0052 13.4408 6.98077C13.3799 6.86605 13.5598 6.99891 13.5744 7.00254C13.6683 7.02555 13.6276 6.95704 13.7309 6.99998C13.6664 6.9422 13.606 6.88684 13.5434 6.83017C13.6133 6.94505 13.5961 6.95433 13.5411 6.97118C13.5402 6.94717 13.5393 6.9224 13.5381 6.89843C13.4855 6.85188 13.4328 6.80526 13.3806 6.75879C13.4734 7.06086 13.1874 6.72805 13.2027 6.57422C13.3039 6.65649 13.4057 6.73761 13.5079 6.81923C13.415 6.63056 13.5624 6.72325 13.6494 6.68792C13.6599 6.68322 13.6274 6.60704 13.635 6.5928C13.6344 6.59267 13.6339 6.59253 13.6333 6.5924C13.5473 6.50423 13.4964 6.47667 13.413 6.40524C13.408 6.39014 13.4029 6.37517 13.3976 6.36029C13.4719 6.40231 13.5203 6.45145 13.5279 6.41202C13.4616 6.36143 13.3954 6.31062 13.3293 6.25971C13.3503 6.23081 13.4354 6.27021 13.4261 6.21991C13.447 6.24406 13.4679 6.26841 13.4885 6.29292C13.5976 6.28651 13.9412 6.64041 13.7888 6.44065C13.8248 6.46407 13.861 6.48773 13.8971 6.51093C13.8893 6.53794 13.8808 6.56482 13.8722 6.59177C13.9187 6.63054 13.9648 6.66921 14.0112 6.70794C14.0159 6.67374 14.0201 6.63871 14.0238 6.60458C14.0428 6.64618 14.0606 6.68901 14.0783 6.73153C14.1225 6.72309 14.1679 6.71243 14.2134 6.70037C14.0136 6.5957 14.0213 6.54067 13.84 6.41528C14.0181 6.48008 14.2508 6.58648 14.1832 6.37602C14.1729 6.34054 14.0908 6.3243 14.1223 6.28549C14.1338 6.26727 14.1621 6.2397 14.2011 6.18218C13.9637 6.23951 13.8478 6.26706 13.6543 6.3984C13.6604 6.38542 13.6511 6.36204 13.6544 6.30134C13.7481 6.35376 13.9465 6.21702 14.0198 6.25299C14.0298 6.25791 14.0362 6.26522 14.0394 6.2733C14.0576 6.34136 13.9492 6.32394 14.1383 6.43583C14.1188 6.44608 14.104 6.45649 14.0868 6.46471C14.0397 6.42512 13.9914 6.38641 13.9428 6.34887C14.0013 6.43524 13.9577 6.44185 13.8226 6.36541C13.8203 6.30885 13.8189 6.24707 13.7965 6.21262C13.7862 6.20983 13.7751 6.2082 13.7646 6.20615C13.7015 6.16127 13.6324 6.13142 13.578 6.105C13.52 6.09986 13.4909 5.99339 13.4257 6.1831C13.4229 6.19583 13.4206 6.20909 13.4188 6.22269C13.491 6.22416 13.5631 6.22755 13.6354 6.2318C13.5286 6.29377 13.5176 6.42448 13.488 6.47081C13.458 6.52433 13.4206 6.56581 13.3177 6.61104C13.3939 6.60352 13.424 6.56982 13.3335 6.64872C13.4765 6.55693 13.5964 6.37065 13.7994 6.21632C13.7569 6.2303 13.7145 6.24496 13.6714 6.25903C13.6286 6.31496 13.5854 6.37004 13.5406 6.42394C13.5247 6.40038 13.5044 6.37305 13.4829 6.34496C13.6297 6.20078 13.5735 6.34937 13.6929 6.20813C13.7167 6.17961 13.647 6.22107 13.6586 6.20317C13.7847 6.0097 13.7242 6.18135 13.8379 6.05098C13.8225 5.95781 14.0741 5.80331 13.8252 5.89391C13.8664 5.85107 13.9084 5.80729 13.9496 5.76491C13.9276 5.73641 13.8318 5.83036 13.7918 5.82463C13.766 5.81998 13.9245 5.64436 13.7911 5.73596C13.7663 5.75261 13.5787 5.97473 13.5345 5.90643C13.5007 5.85343 13.6707 5.7385 13.704 5.66693C13.7391 5.5976 13.4742 5.72072 13.7081 5.50126C13.6852 5.54024 13.6816 5.5717 13.6665 5.60783C13.719 5.5735 13.7705 5.53898 13.8226 5.50457C13.7349 5.5255 13.7815 5.43289 13.6485 5.5045C13.7918 5.32048 13.5897 5.4028 13.3958 5.5715C13.4368 5.56404 13.5127 5.47938 13.4722 5.54358C13.4267 5.5824 13.3816 5.62124 13.3362 5.66022C13.3134 5.61913 13.2929 5.59451 13.4506 5.50103C13.4498 5.49284 13.4491 5.48469 13.4483 5.47645C13.3423 5.55476 13.2358 5.6334 13.1296 5.71155C13.1124 5.71339 13.0953 5.71512 13.078 5.71677C13.0953 5.69148 13.1129 5.66603 13.1306 5.64056C13.307 5.5281 13.3241 5.54012 13.3766 5.4141C13.318 5.45616 13.2597 5.49797 13.2011 5.54001C13.2394 5.4361 13.3819 5.33553 13.3346 5.27803C13.5725 5.18269 13.2263 5.46096 13.6364 5.17153C13.6173 5.20156 13.598 5.23201 13.5791 5.2622C13.6394 5.22126 13.6996 5.18017 13.7597 5.13899C13.6901 5.10916 13.2226 5.27264 13.4612 5.05637C13.4255 5.0725 13.3939 5.08573 13.3556 5.10306C13.4909 4.95904 13.1156 5.17034 13.2996 4.99647C13.3193 4.97866 13.6692 4.77671 13.6264 4.73335C13.582 4.76152 13.5065 4.80749 13.4502 4.84253C13.4647 4.82282 13.48 4.80281 13.4952 4.78288C13.5014 4.77385 13.5077 4.76482 13.5138 4.75582C13.4706 4.77812 13.4274 4.80033 13.384 4.8229C13.3831 4.8319 13.3823 4.84092 13.3814 4.84996C13.3783 4.87151 13.3752 4.89299 13.3722 4.91433C13.3513 4.90742 13.3303 4.90012 13.3091 4.89255C13.3056 4.89115 13.3021 4.88976 13.2986 4.88838C13.2925 4.89571 13.2871 4.90235 13.2822 4.90843C13.2435 4.95463 13.2361 4.96844 13.1319 5.01359C13.1282 5.01029 13.1244 5.00699 13.1206 5.00366C13.1056 4.99042 13.0908 4.97785 13.0759 4.9647C13.0467 4.97933 13.0172 4.99421 12.988 5.00892C12.9106 5.06845 12.8348 5.1268 12.7556 5.18632C12.7938 5.0953 12.7719 5.05117 12.9089 4.91075C12.932 4.88692 13.0539 4.84283 12.9285 4.85834C12.9844 4.82145 13.0294 4.79081 13.0809 4.75649C12.8859 4.80061 12.9232 4.75544 12.9924 4.618C12.9156 4.72875 12.9591 4.64732 12.8971 4.67703C12.8544 4.69756 12.8777 4.71865 12.8357 4.74381C12.7935 4.76818 12.6124 4.85149 12.6111 4.89051C12.9865 4.72692 12.6009 5.01364 12.8163 4.99346C12.764 5.00749 12.7118 5.02207 12.66 5.03724C12.6343 5.06216 12.6108 5.0846 12.5834 5.11093C12.6208 5.02338 12.5916 5.07266 12.5279 5.0882C12.4642 5.10374 12.3997 5.10183 12.3717 5.09133C12.3628 5.08797 12.4418 5.04362 12.4383 5.024C12.4357 5.01008 12.3083 5.06149 12.4313 4.96298C12.5103 4.8973 12.7755 4.78196 12.7249 4.71375C12.796 4.64091 12.7956 4.69297 12.8059 4.68657C12.9075 4.62305 12.9464 4.52391 12.8578 4.55842C12.8504 4.56168 12.7879 4.63339 12.746 4.63869C12.6464 4.65204 12.7138 4.56541 12.8044 4.44759C12.67 4.55091 12.4882 4.64807 12.5035 4.56943C12.4649 4.5989 12.4261 4.62879 12.3873 4.65861C12.4118 4.64777 12.436 4.63713 12.4606 4.62651C12.4429 4.65269 12.4317 4.67375 12.4093 4.70289C12.3454 4.69156 12.1636 4.83873 12.0848 4.87824C11.8163 5.01482 12.3086 4.63939 12.3997 4.58187C12.3744 4.61841 12.3447 4.65754 12.3171 4.69492C12.3611 4.65551 12.4054 4.61574 12.4496 4.57611C12.3656 4.48275 12.726 4.30959 12.7629 4.18569C12.5339 4.36538 12.4827 4.35012 12.5745 4.1782C12.5687 4.17406 12.5636 4.16914 12.5574 4.1652C12.5257 4.19328 12.4784 4.23753 12.4568 4.25522C12.3702 4.23501 12.6837 3.91597 12.709 3.88109C12.8211 3.72636 12.6164 3.88892 12.6081 3.8836C12.5729 3.86045 12.6477 3.77179 12.5847 3.77859C12.5178 3.78709 12.4746 3.86942 12.4095 3.91642C12.3578 3.95377 12.3269 3.93857 12.2717 3.97573C12.3131 3.94164 12.3542 3.90872 12.3958 3.87453C12.4179 3.79355 12.4429 3.71842 12.4208 3.67164C12.1816 3.8556 12.3766 3.60474 12.3192 3.65324C12.3075 3.66335 12.285 3.68624 12.2458 3.72839C12.2267 3.7489 12.2037 3.77397 12.1761 3.80435C12.1833 3.86262 12.1577 3.92288 12.0794 4.037C12.0458 4.02827 12.0141 4.0208 11.9806 4.01235C11.9933 3.99484 12.0061 3.97769 12.0189 3.96055C12.0413 3.93084 12.0637 3.90113 12.0856 3.86951C11.9832 3.94357 11.9836 3.86947 11.9441 3.88208C11.7574 3.93993 11.6319 4.11415 11.8176 3.79737C11.8859 3.81461 12.0063 3.68978 12.0338 3.74953C12.1101 3.65099 12.07 3.64802 12.1875 3.55503C12.1194 3.54016 12.0412 3.64897 11.9429 3.71779C11.8582 3.77708 11.8258 3.75392 11.7362 3.85068C11.7833 3.79548 11.8296 3.74257 11.8766 3.6874C11.8481 3.66111 11.8208 3.63517 11.7923 3.60901C11.8562 3.56535 11.9206 3.52193 11.9844 3.4787C11.9951 3.44943 12.0057 3.42017 12.0163 3.3908C11.7856 3.49625 11.9631 3.07059 11.5764 3.51887C11.5303 3.5013 11.5771 3.44352 11.6357 3.34504C11.603 3.37589 11.5755 3.40129 11.5393 3.43584C11.5501 3.38148 11.4182 3.4889 11.4294 3.43937C11.4404 3.39 11.5445 3.26935 11.3587 3.46212C11.399 3.39459 11.4304 3.33666 11.467 3.27321C11.4181 3.31075 11.3698 3.3478 11.3212 3.38517C11.3315 3.35118 11.3416 3.31712 11.3519 3.28317C11.2586 3.37088 11.251 3.28843 11.1726 3.33267C11.2477 3.21434 11.5438 2.89751 11.4461 2.91275C11.374 2.99256 11.302 3.07212 11.2299 3.15192C11.235 3.126 11.24 3.10011 11.2451 3.0741C11.2683 3.04783 11.2917 3.02163 11.315 2.99535C11.3128 3.00816 11.3106 3.02087 11.3082 3.03394C11.3441 2.98623 11.38 2.93881 11.416 2.89116C11.3404 2.94109 11.2648 2.99099 11.1893 3.04093C11.165 3.10935 11.1408 3.17784 11.1164 3.24621C11.0363 3.27946 11.0714 3.20461 10.9885 3.24775C11.0696 3.12038 11.1352 3.06453 11.253 2.95404C11.2362 2.9572 11.2196 2.95993 11.2028 2.96309C11.3174 2.84956 11.3701 2.76747 11.4048 2.81754C11.4331 2.78108 11.4599 2.74613 11.4895 2.70841C11.4774 2.70707 11.4992 2.67428 11.4793 2.67997C11.4248 2.69563 11.2158 2.88789 11.1498 2.96199C11.1152 3.00083 11.2039 2.94752 11.1531 3.0006C11.029 3.13 11.0356 3.02625 10.9827 3.22277C10.8819 3.28494 10.9353 3.21711 10.9323 3.1693C10.8937 3.21493 10.8552 3.26023 10.8165 3.30578C10.8234 3.27466 10.8303 3.24359 10.8372 3.21247C11.0623 3.0028 11.0533 2.83733 11.3144 2.71346C11.3005 2.68181 11.2867 2.65016 11.2734 2.61805C11.2996 2.59936 11.3255 2.58091 11.3517 2.56223C11.3509 2.58417 11.3502 2.60586 11.3496 2.62752C11.3764 2.57389 11.4029 2.52043 11.4297 2.46677C11.3521 2.49208 11.2662 2.56209 11.1607 2.64909C11.1274 2.75302 11.2081 2.64366 11.2528 2.64845C11.1935 2.71052 11.1411 2.76953 11.0775 2.83351C11.1847 2.69054 11.0523 2.74416 11.0361 2.74099C10.9868 2.73131 11.13 2.62596 11.1115 2.60385C11.093 2.58175 10.9975 2.63499 11.098 2.49206C11.0324 2.56358 10.9656 2.63855 10.9068 2.70454C10.8526 2.69778 10.9368 2.61954 10.9435 2.60553C11.0552 2.37627 10.8859 2.50047 10.8071 2.46163C10.7946 2.49097 10.7842 2.51831 10.7729 2.54636C10.5862 2.6543 10.6608 2.6374 10.6548 2.72461C10.6311 2.67456 10.4898 2.78294 10.4278 2.79663C10.3655 2.80995 10.3811 2.70155 10.4118 2.63424C10.5269 2.58684 10.5179 2.67998 10.5816 2.69645C10.6438 2.61938 10.6959 2.5536 10.7647 2.46923C10.598 2.59768 10.6771 2.48183 10.6872 2.4537C10.7169 2.3712 10.5968 2.50269 10.7118 2.34813C10.6676 2.39706 10.6305 2.43815 10.5893 2.48389C10.556 2.41558 10.5794 2.27847 10.3804 2.42588C10.4849 2.3069 10.5862 2.19288 10.6924 2.0711C10.5893 2.13801 10.6541 2.03169 10.6164 2.03473C10.579 2.03809 10.499 2.13833 10.444 2.1545C10.4338 2.15739 10.4803 2.09131 10.4301 2.12524C10.3796 2.15939 10.0426 2.44863 10.3009 2.16235C10.2834 2.14362 10.2754 2.11693 10.262 2.09553C10.2942 2.09585 10.3262 2.09689 10.3589 2.09756C10.4072 2.01495 10.4558 1.93283 10.5046 1.85064C10.4459 1.90984 10.3862 1.97014 10.3284 2.0286C10.2185 2.06488 10.2821 1.93788 10.2197 1.92361C10.2092 1.92118 10.113 2.05677 10.111 1.99739C10.1103 1.97332 10.1411 1.91862 10.1692 1.86494C10.2106 1.78692 10.2487 1.71333 10.172 1.73611C10.1657 1.73859 9.9832 1.88896 10.0832 1.75781C10.1061 1.72837 10.161 1.70646 10.1874 1.66397C10.2138 1.62166 10.2067 1.55587 10.2892 1.47476C10.2595 1.50291 10.2306 1.53404 10.2011 1.56352C10.1807 1.57025 10.1601 1.57674 10.1396 1.58282C10.1924 1.53365 10.2451 1.48441 10.2976 1.43557C10.1409 1.51223 9.91358 1.66849 9.9296 1.54657C9.8639 1.63126 9.79912 1.71742 9.73601 1.80454C9.79618 1.76172 9.8565 1.71829 9.91614 1.67481C9.91935 1.72319 9.92384 1.77182 9.92919 1.82069C9.99493 1.76852 10.0601 1.71607 10.1252 1.66316C10.1239 1.67768 10.1229 1.69191 10.1218 1.70647C10.0765 1.74654 10.0312 1.78627 9.98555 1.82605C10.0104 1.83062 10.0356 1.83473 10.0602 1.83853C9.77518 2.05849 10.0021 1.73383 9.78782 1.94187C9.81518 1.9032 9.84305 1.86455 9.87122 1.82613C9.76141 1.92061 9.77851 1.87759 9.77283 1.83669C9.72456 1.88984 9.67789 1.94327 9.62927 1.99704C9.68074 1.90369 9.63372 1.86425 9.64064 1.81207C9.64376 1.78928 9.73415 1.73369 9.74068 1.72226C9.77573 1.66378 9.6063 1.746 9.6114 1.7292C9.64245 1.63033 9.89649 1.39143 9.67978 1.48482C9.67172 1.56725 9.67057 1.52646 9.58344 1.62166C9.55602 1.6514 9.54111 1.7674 9.50711 1.66369C9.50152 1.65005 9.58678 1.36211 9.77036 1.30098C9.70655 1.31323 9.63871 1.33523 9.57263 1.34997C9.93092 1.0176 9.57204 1.29845 9.37864 1.45909C9.37146 1.45086 9.36341 1.44388 9.3569 1.43463C9.58517 1.30164 9.53215 1.19723 9.39971 1.23819C9.3554 1.25156 9.30719 1.33073 9.25628 1.32657C9.26303 1.30357 9.27344 1.27617 9.28176 1.25146C9.15623 1.3635 9.07714 1.36064 8.93617 1.4547C9.04516 1.34578 9.30111 1.15224 9.45458 1.06984C9.38298 1.08885 9.31132 1.10744 9.23917 1.12596C9.2115 1.15719 9.18406 1.1881 9.15652 1.21946C9.2031 1.09615 8.94483 1.14107 9.23743 0.937482C9.22998 0.930409 9.22252 0.922668 9.21491 0.915327C9.16231 0.944622 9.10965 0.974053 9.05703 1.00332C9.0767 0.936564 9.09658 0.869162 9.11671 0.802892C9.1699 0.817661 9.24795 0.781118 9.21159 0.854094C9.26131 0.803167 9.31186 0.752816 9.36166 0.701981C9.16965 0.746033 9.06085 0.802211 9.05645 0.691684C9.05624 0.686362 9.14755 0.540235 9.15759 0.528279C9.20827 0.478992 9.30308 0.438996 9.3291 0.414691C9.40961 0.355609 9.52798 0.0964355 9.53614 0.0520963C9.99968 -0.1144 10.1742 0.167438 10.2294 0.208948C10.5854 0.514093 10.761 0.848481 10.9154 1.07116C11.1251 1.32386 11.344 1.58439 11.6086 1.79754C11.6153 1.80257 11.6586 1.75048 11.6631 1.75077C11.6909 1.75332 11.6354 1.84547 11.6385 1.85424C11.6453 1.87274 11.7043 1.79476 11.7137 1.80339C11.8101 1.89401 11.863 2.02101 11.9718 2.09929C11.9789 2.10439 11.9195 2.15543 11.94 2.1557C11.9508 2.15551 12.0502 2.08472 12.0644 2.09547C12.114 2.1332 12.1261 2.19674 12.1753 2.2401C12.2022 2.26367 12.2348 2.30794 12.2653 2.33398C12.2788 2.34557 12.3297 2.3183 12.3437 2.32894C12.3636 2.34408 12.2842 2.4215 12.2823 2.42913C12.274 2.46251 12.3589 2.37542 12.3686 2.38848C12.3864 2.41308 12.332 2.47338 12.3641 2.4941C12.3875 2.50907 12.476 2.50432 12.5141 2.51433C12.5074 2.63735 12.6067 2.67987 12.6825 2.70901C12.7276 2.72649 12.652 2.81149 12.6653 2.82365C12.7133 2.86649 12.8491 2.79561 12.896 2.83429C12.9393 2.87018 12.9459 2.93769 12.9619 2.99561C12.9699 3.02271 12.9797 3.04762 12.9957 3.06649C13.0042 3.07633 13.0753 3.00018 13.0864 3.00737C13.1271 3.0338 13.1839 3.06363 13.2041 3.10504C13.2265 3.15077 13.1317 3.26993 13.1864 3.28186C13.2027 3.2854 13.3007 3.19607 13.3296 3.20135C13.375 3.2097 13.3205 3.32184 13.3294 3.35017C13.3424 3.38921 13.4183 3.27277 13.4397 3.32198C13.4406 3.32409 13.3755 3.39575 13.3863 3.40059C13.4176 3.41507 13.4709 3.36061 13.4981 3.40099C13.5004 3.40486 13.4755 3.51421 13.4792 3.51899C13.5032 3.5478 13.5296 3.62675 13.5593 3.6315C13.6657 3.64905 13.7353 3.50664 13.5393 3.76322C13.6183 3.73755 13.6986 3.71226 13.7793 3.69297C13.7105 3.71884 13.6896 3.85453 13.6983 3.85549C13.7731 3.86658 13.8507 3.76584 13.8776 3.83536C13.5952 3.93088 13.9022 3.929 13.9324 3.96093C14.0633 4.09186 14.0998 4.25692 14.166 4.38747C14.1706 4.39712 14.1756 4.4065 14.1812 4.41551C14.2012 4.44745 14.2784 4.45843 14.298 4.49154C14.3028 4.49922 14.2427 4.52968 14.2458 4.53725C14.2493 4.54453 14.3078 4.49628 14.3093 4.506C14.3171 4.56598 14.2263 4.68508 14.4004 4.62408C14.3809 4.6409 14.3643 4.65253 14.3437 4.67221C14.4965 4.61323 14.3705 4.80191 14.3667 4.84472C14.3605 4.91091 14.4521 4.85317 14.4564 4.89283C14.4619 4.94553 14.3486 5.13535 14.5912 4.88595C14.619 4.90166 14.6406 4.92155 14.6377 4.96637C14.6373 4.97139 14.5703 5.02873 14.57 5.03102C14.567 5.04651 14.6273 4.99564 14.6341 4.99774C14.6527 5.00352 14.5644 5.04707 14.6002 5.04698C14.6192 5.0468 14.6745 5.00541 14.7008 5.03128C14.7421 5.07248 14.7825 5.1136 14.8508 5.18841C14.8863 5.22836 14.9266 5.27038 15.003 5.37081C15.0407 5.42265 15.0921 5.48931 15.1615 5.6266C15.2211 5.75723 15.3536 6.01924 15.2959 6.45799C15.2168 6.84852 15.1658 6.85303 15.1318 6.93599C15.0968 6.99884 15.0701 7.03912 15.0464 7.07426C14.9993 7.14297 14.962 7.19027 14.9263 7.2346C14.8564 7.32049 14.794 7.38979 14.7344 7.45509C14.7179 7.4731 14.793 7.51657 14.7686 7.53641C14.6841 7.60576 14.4583 7.63931 14.4152 7.71243C14.3718 7.78614 14.4745 7.85892 14.475 7.93333C14.475 7.94778 14.4301 7.89217 14.4228 7.89805C14.3752 7.9375 14.2449 7.91139 14.199 7.93331C14.1682 7.94809 14.2483 8.02594 14.2379 8.04733C14.222 8.07916 14.1185 8.02234 14.1034 8.03185C14.0325 8.07814 14.0535 8.1834 13.965 8.20263C13.9839 8.21855 14.0009 8.23384 14.0193 8.2498C14.0036 8.2632 13.9878 8.27663 13.9719 8.2901C13.9261 8.32818 13.878 8.36863 13.8314 8.40797C13.8495 8.42181 13.8676 8.43589 13.8859 8.45002C13.8089 8.50507 13.6507 8.31992 14.008 8.68941C14.0155 8.70724 14.0246 8.72747 14.0312 8.74407C13.852 8.54921 13.6782 8.44649 13.5787 8.4477C13.5714 8.44763 13.7224 8.66004 13.5159 8.43554C13.5603 8.49628 13.5915 8.53754 13.6307 8.59071C13.556 8.53421 13.4822 8.47845 13.4077 8.4223C13.4111 8.43805 13.414 8.45355 13.4173 8.46934C13.4575 8.51361 13.5008 8.55803 13.5392 8.60251C13.5173 8.63568 13.4084 8.63711 13.3914 8.66368C13.3489 8.7305 13.4041 8.90106 13.2404 8.81591C13.2315 8.84894 13.3333 8.91395 13.2919 8.93295C13.2474 8.89332 13.2048 8.85529 13.1589 8.81451C13.3164 9.03097 13.1995 8.91936 13.1262 8.91266C13.0765 8.90805 13.1055 8.96996 13.0743 8.98232C13.0663 8.98544 13.0133 8.92834 13.0111 8.93392C13.0035 8.95227 13.04 9.06571 13.0327 9.07663C12.9681 9.17747 12.8875 9.23797 12.7873 9.2942C12.7767 9.30036 12.841 9.34519 12.8298 9.35139C12.8119 9.36144 12.7387 9.268 12.7264 9.27178C12.6924 9.28282 12.7783 9.37302 12.7504 9.40874C12.6584 9.52631 12.4704 9.57666 12.3523 9.67781C12.3488 9.68115 12.3993 9.73375 12.396 9.73791C12.3737 9.7641 12.2801 9.71711 12.2584 9.73925C12.2216 9.77636 12.2644 9.87707 12.2265 9.91264C12.1532 9.98179 12.052 10.0054 11.9739 10.0751C11.9324 10.112 11.8979 10.1493 11.8604 10.1879C11.8386 10.2103 11.8176 10.2315 11.792 10.2552C11.5129 10.5163 11.2742 11.0154 10.9345 11.1621C10.9235 11.1674 10.9122 11.1725 10.9008 11.1773C10.891 11.1813 10.8526 11.1293 10.852 11.1335C10.8476 11.1737 10.9015 11.242 10.7761 11.1094C10.7706 11.1611 10.8496 11.2735 10.8084 11.2954C10.7864 11.3073 10.6636 11.1333 10.7025 11.2436C10.7375 11.3434 10.8445 11.4053 10.6821 11.3867C10.6777 11.3862 10.5832 11.2968 10.587 11.3376C10.5905 11.3782 10.671 11.4315 10.6452 11.4895C10.5842 11.6259 10.3796 11.6514 10.2691 11.7847C10.2625 11.7929 10.2241 11.912 10.2262 11.9508C10.232 12.0249 10.2979 12.0954 10.2678 12.1485C10.244 12.1897 10.1487 12.1255 10.1182 12.1753C10.1148 12.1811 10.1727 12.2777 10.1292 12.2911ZM13.0406 5.78369C12.9474 5.8424 12.6129 6.07079 12.675 5.94719C12.6812 5.936 12.9234 5.79625 12.9403 5.74437C12.9824 5.75241 13.0079 5.77084 13.0409 5.78343C13.0408 5.78351 13.0407 5.7836 13.0406 5.78369ZM8.47941 10.2971C8.50825 10.3032 8.54158 10.3055 8.57678 10.306C8.58782 10.3577 8.59881 10.409 8.60919 10.4608C8.56474 10.4071 8.52126 10.3526 8.47941 10.2971ZM12.0975 7.3393C12.0975 7.33933 12.0974 7.33935 12.0974 7.33938C12.0914 7.27311 12.0852 7.20701 12.0794 7.14064C12.1027 7.17149 12.126 7.20247 12.1493 7.23333C12.1671 7.29978 12.1853 7.36576 12.2034 7.43194C12.1681 7.40105 12.1328 7.37018 12.0975 7.3393ZM12.143 7.85725C12.0926 7.84224 12.0441 7.78215 11.9819 7.73785C11.982 7.73795 11.9821 7.73805 11.9822 7.73816C11.966 7.72666 11.9414 7.72654 11.9344 7.72917C11.9695 7.76227 12.0047 7.79442 12.0397 7.82711C12.0761 7.95356 11.7035 7.73635 11.7 7.5088C11.7403 7.5544 11.7805 7.5997 11.8209 7.6453C11.8648 7.57977 12.0177 7.61635 12.143 7.85725ZM12.5235 5.31967C12.3215 5.36996 12.2779 5.37881 12.3578 5.2494C12.4105 5.22712 12.4635 5.20524 12.5167 5.18382C12.474 5.22425 12.4313 5.26394 12.3882 5.30384C12.3882 5.30387 12.3882 5.3039 12.3883 5.30392C12.441 5.27423 12.4939 5.24459 12.5467 5.21496C12.539 5.24959 12.5313 5.28457 12.5235 5.31967ZM10.2316 9.45836C9.95662 9.17023 10.1123 9.34139 10.0906 9.24099C10.0828 9.20639 10.0243 9.16514 10.0245 9.14946C10.0253 9.06425 10.2063 9.25992 10.2886 9.3724C10.2702 9.40136 10.2505 9.43023 10.2317 9.45829C10.2316 9.45831 10.2316 9.45834 10.2316 9.45836ZM9.09148 10.5169C9.09145 10.5169 9.09142 10.5169 9.0914 10.517C9.03034 10.4415 9.03223 10.4068 8.95507 10.3505C8.9707 10.3387 8.98674 10.327 9.00257 10.3149C9.0036 10.3256 9.00428 10.3361 9.00534 10.3468C9.03007 10.3697 9.05514 10.3929 9.07999 10.4157C9.01614 10.3239 9.06168 10.3706 9.10147 10.3865C9.0224 10.2972 8.94346 10.2076 8.86474 10.118C8.90526 10.131 8.94652 10.1435 8.98771 10.1559C9.00683 10.179 9.026 10.2022 9.04513 10.2254C9.02823 10.1896 9.01078 10.1538 8.99367 10.1183C9.01822 10.1445 9.04251 10.1706 9.0671 10.1968C9.05862 10.1687 9.05024 10.1405 9.04136 10.1122C9.09902 10.1772 9.10355 10.222 9.12361 10.1771C9.1696 10.2546 9.2155 10.3318 9.26109 10.4096C9.20458 10.4463 9.1479 10.4822 9.09148 10.5169ZM10.4927 9.05785C10.4503 9.11957 10.4223 9.05971 10.3017 8.903C10.3651 8.95485 10.4288 9.00639 10.4927 9.05785ZM13.3882 6.52732C13.303 6.42137 13.2177 6.31724 13.1342 6.2161C13.1038 6.13763 13.314 6.2691 13.3664 6.35505C13.4282 6.4593 13.3061 6.40235 13.3882 6.52732ZM13.4736 6.22444C13.468 6.30899 13.3148 6.37959 13.2382 6.43413C13.3358 6.31953 13.3108 6.3123 13.2984 6.27331C13.3293 6.29243 13.4752 6.21077 13.4739 6.22415C13.4738 6.22424 13.4737 6.22434 13.4736 6.22444ZM12.6838 7.01335C12.6706 7.03112 12.68 7.07359 12.6342 7.05392C12.5511 6.95572 12.66 7.01411 12.5093 6.89412C12.5176 6.88197 12.5259 6.86997 12.5336 6.85782C12.5808 6.92169 12.6297 6.9568 12.6835 7.01307C12.6836 7.01317 12.6837 7.01326 12.6838 7.01335ZM10.9134 8.45404C11.0489 8.53515 11.0102 8.48207 10.9685 8.37627C11.0584 8.46166 11.1642 8.64746 11.1725 8.70261C11.0862 8.61976 10.9998 8.53686 10.9134 8.45404ZM9.26403 1.96429C9.39485 1.8753 9.46218 1.92571 9.4537 1.98771C9.4326 1.99901 9.4112 2.01043 9.38974 2.02184C9.34763 2.00321 9.30566 1.98394 9.26403 1.96429ZM13.2942 6.2531C13.2949 6.26059 13.2965 6.26744 13.2984 6.27331C13.2929 6.26991 13.2907 6.26355 13.2942 6.2531ZM12.4164 3.98031C12.5354 3.88902 12.5329 3.81504 12.5377 3.90316C12.5378 3.90306 12.5379 3.90296 12.538 3.90286C12.5413 3.96119 12.5403 3.97487 12.5603 4.01244C12.4116 4.13364 12.308 4.12472 12.3557 4.23117C12.3566 4.23233 12.4369 4.1516 12.4377 4.17505C12.4378 4.18212 12.3827 4.25971 12.3807 4.29714C12.38 4.30908 12.4026 4.37525 12.3421 4.31354C12.247 4.40696 12.1458 4.49633 12.052 4.58536C12.0026 4.58781 12.1743 4.38974 12.1449 4.36856C12.101 4.33774 11.8946 4.50442 12.1343 4.25423C12.2259 4.22592 12.2813 4.28038 12.1376 4.43144C12.1642 4.46297 12.2972 4.35534 12.3342 4.27168C12.1537 4.23881 12.4875 4.06527 12.2973 4.06571C12.2619 4.09845 12.2213 4.13108 12.1897 4.16349C12.2821 4.01591 12.3735 4.01254 12.4164 3.98031ZM12.3664 4.46204C12.2744 4.51225 12.182 4.56337 12.091 4.61558C12.2124 4.50257 12.3299 4.41014 12.4266 4.37724C12.4065 4.40569 12.3864 4.43409 12.3664 4.46204ZM10.763 2.97776C10.699 3.04139 10.6355 3.09523 10.5717 3.15323C10.6175 3.09197 10.5286 2.91029 10.6498 2.92074C10.6675 2.92231 10.6214 3.09697 10.763 2.97776ZM10.7928 8.75576C10.8505 8.78442 10.908 8.81341 10.9655 8.84228C10.9676 8.89311 10.9694 8.94561 10.9719 8.99702C10.9122 8.91662 10.8524 8.83621 10.7928 8.75576ZM13.7309 6.36942C13.723 6.37411 13.6423 6.27582 13.6374 6.31389C13.5902 6.24554 13.5504 6.18696 13.5016 6.12726C13.5526 6.15698 13.6036 6.18615 13.6551 6.21506C13.627 6.18947 13.5994 6.16365 13.5707 6.13886C13.6396 6.18952 13.7066 6.2394 13.7757 6.2923C13.6042 6.21722 13.7669 6.34636 13.7309 6.36942ZM13.0397 7.56146C12.9068 7.4313 12.8796 7.30557 12.8119 7.32815C12.7378 7.23039 12.708 7.17052 12.729 7.13618C12.7653 7.16612 12.8014 7.19585 12.8377 7.22586C12.7532 7.13383 12.7288 7.09308 12.6838 7.01335C12.6839 7.01344 12.684 7.01353 12.6842 7.01363C12.7212 6.96689 12.7469 6.99998 12.8964 7.1414C12.7728 7.09784 12.8985 7.23717 12.9443 7.34697C12.9752 7.42294 12.9248 7.42249 13.0397 7.56146ZM10.9118 3.11271C10.7736 3.19848 10.7025 3.33199 10.7598 3.15793C10.7905 3.13204 10.821 3.10643 10.8517 3.08055C10.872 3.09097 10.892 3.10176 10.9118 3.11271ZM12.4483 7.24317C12.649 7.44921 12.8323 7.58415 12.5167 7.2386C12.4224 7.19659 12.6179 7.3765 12.4483 7.24317ZM13.8133 5.9282C13.8555 5.99194 13.6123 6.20716 13.4724 6.29564C13.5117 6.25132 13.5511 6.20698 13.5903 6.16302C13.5617 6.17191 13.5321 6.17972 13.5038 6.18828C13.6069 6.10177 13.7104 6.015 13.8133 5.9282ZM11.6937 8.39847C11.5937 8.20989 11.5694 8.35925 11.5101 8.23855C11.4626 8.14213 11.6366 8.26206 11.7146 8.36696C11.709 8.37735 11.7017 8.38783 11.6938 8.3984C11.6937 8.39842 11.6937 8.39845 11.6937 8.39847ZM11.8961 8.1236C11.7375 7.97161 11.7917 8.00832 11.7858 8.06859C11.784 8.08577 11.6518 8.09825 11.8091 8.19941C11.836 8.17366 11.8666 8.14878 11.8961 8.1236ZM13.0025 5.42958C13.0823 5.37723 13.301 5.32618 13.2636 5.36413C13.2637 5.36405 13.2638 5.36397 13.264 5.36389C13.1626 5.46906 13.0957 5.40753 12.9556 5.55032C13.0507 5.38308 12.6877 5.59053 13.1513 5.29362C13.1983 5.32105 13.0911 5.36455 13.0025 5.42958ZM9.04454 0.848634C9.04452 0.848602 9.0445 0.84857 9.04448 0.848538C9.04373 0.855824 8.9478 0.967054 8.90387 0.988409C8.91116 0.921388 8.99408 0.879847 8.83963 0.918949C8.8796 0.890725 8.91854 0.863606 8.9587 0.835006C8.99392 0.836642 9.04896 0.813971 9.04454 0.848634ZM10.7441 2.6978C10.7755 2.69277 10.7313 2.793 10.752 2.8037C10.4298 3.04745 10.6191 2.71735 10.7441 2.6978ZM9.6417 10.0452C9.64165 10.0451 9.6416 10.0449 9.64156 10.0448C9.64168 10.045 9.6418 10.0452 9.64193 10.0453C9.64185 10.0453 9.64178 10.0453 9.6417 10.0452ZM11.6883 3.90715C11.7043 3.88676 11.7188 3.86958 11.732 3.855C11.7333 3.85366 11.7346 3.85233 11.7359 3.85099C11.7201 3.86939 11.7043 3.88806 11.6883 3.90715ZM12.8835 5.29757C12.979 5.19886 13.2179 5.18184 13.1948 5.23839C13.1424 5.26943 13.096 5.29917 13.0341 5.3321C13.1503 5.22204 12.868 5.31543 12.8835 5.29757ZM13.1174 6.93481C13.1817 6.87691 13.4687 7.33247 13.1721 7.0351C13.1665 7.0292 13.1164 6.9368 13.1174 6.93481ZM13.3548 5.85839C13.4918 5.77383 13.4942 5.71123 13.5207 5.78499C13.4921 5.81503 13.4634 5.84519 13.4349 5.87536C13.4084 5.87006 13.3812 5.864 13.3548 5.85839ZM14.0208 6.99102C14.0349 6.84201 13.9824 6.65859 13.5999 6.43149C13.6056 6.44662 13.6107 6.46176 13.6162 6.47707C13.7788 6.61667 13.6695 6.56468 13.6354 6.59292C13.6951 6.65399 13.6934 6.68558 13.7442 6.73722C13.8423 6.83724 13.936 6.87975 14.0208 6.99102ZM10.3602 9.98617C10.3381 9.95698 10.3158 9.92771 10.2938 9.89883C10.2806 9.85601 10.2674 9.81338 10.2541 9.7706C10.2973 9.826 10.3405 9.88143 10.3836 9.93689C10.376 9.95328 10.3681 9.96997 10.3605 9.98626C10.3604 9.98623 10.3603 9.9862 10.3602 9.98617ZM12.7755 4.24114C12.4665 4.49978 12.5434 4.47411 12.7456 4.39821C12.7564 4.34627 12.7663 4.29391 12.7755 4.24114ZM12.6086 8.14032C12.528 8.05907 12.4477 7.97806 12.367 7.8969C12.4217 8.00943 12.5173 8.09929 12.6348 8.19645C12.6261 8.17773 12.6173 8.15903 12.6086 8.14032ZM12.2482 8.55174C12.2761 8.55814 12.2064 8.49692 12.2089 8.49713C12.2712 8.50476 12.3045 8.53149 12.2917 8.44755C12.2792 8.42589 12.2658 8.40339 12.2529 8.38121C12.0709 8.2235 12.1494 8.32924 12.0176 8.26042C12.0806 8.3139 12.1437 8.36749 12.207 8.42123C12.1758 8.42701 12.1449 8.43286 12.1137 8.43863C12.129 8.45913 12.144 8.47946 12.1593 8.49996C12.1886 8.51699 12.221 8.53673 12.2482 8.55174ZM10.1375 10.0356C10.1116 10.0448 10.0854 10.0538 10.0595 10.0631C10.0966 10.1091 10.134 10.1553 10.1711 10.2012C10.1595 10.1462 10.1485 10.0909 10.1375 10.0356ZM12.2717 3.97573C12.2554 3.9891 12.2392 4.0026 12.2228 4.01652C12.2413 3.99816 12.2573 3.98531 12.2717 3.97573ZM9.28292 0.61903C9.30232 0.572264 9.25596 0.549627 9.24501 0.516907C9.1226 0.600051 9.20157 0.647755 9.14034 0.719359C9.16532 0.709182 9.27482 0.638823 9.28292 0.61903ZM13.8763 6.01296C13.9347 5.96707 13.9934 5.92204 14.052 5.8765C14.0586 5.89494 14.066 5.91506 14.0731 5.93449C14.1179 5.89387 14.1631 5.85291 14.208 5.81235C14.0902 5.80135 14.2317 5.69776 14.3278 5.5492C14.1776 5.70392 14.0272 5.85846 13.8763 6.01296ZM9.75259 10.8587C9.77101 10.7905 9.73775 10.7186 9.59711 10.5995C9.60812 10.6445 9.61923 10.6894 9.62996 10.7345C9.67081 10.7759 9.71174 10.8173 9.75259 10.8587ZM11.6182 3.15992C11.5372 3.17697 11.7031 2.9986 11.5761 3.06609C11.5637 3.11597 11.5509 3.16614 11.5382 3.2158C11.5648 3.19718 11.5916 3.17848 11.6182 3.15992ZM13.7806 4.57715C13.8416 4.51401 13.4766 4.68781 13.6964 4.47792C13.6128 4.51144 13.5357 4.54808 13.4553 4.58332C13.5314 4.52672 13.6077 4.46826 13.6829 4.41163C13.6828 4.41159 13.6828 4.41155 13.6828 4.41152C13.6232 4.37726 13.5447 4.4748 13.4593 4.52742C13.424 4.54939 13.459 4.47536 13.3903 4.53594C13.2726 4.63965 13.3923 4.66223 13.2311 4.762C13.2689 4.70518 13.1948 4.68529 13.0972 4.7673C12.9894 4.85611 13.2135 4.77589 13.1324 4.86419C13.366 4.66573 13.338 4.79931 13.1434 4.92739C13.3253 4.88393 13.3621 4.80278 13.3239 4.75603C13.4951 4.69465 13.3852 4.69899 13.5064 4.61344C13.6038 4.6005 13.6066 4.75156 13.7806 4.57715ZM13.7367 7.39561C13.7566 7.35955 13.8733 7.38625 13.7847 7.26162C13.7328 7.18934 13.6415 7.18566 13.5724 7.0595C13.5559 7.0956 13.5881 7.13942 13.6786 7.21939C13.6828 7.23575 13.6867 7.25199 13.6905 7.2682C13.6709 7.25457 13.6515 7.24115 13.632 7.2274C13.664 7.26554 13.6957 7.30347 13.7278 7.34165C13.7143 7.34136 13.7007 7.34114 13.6869 7.3406C13.7037 7.35902 13.7177 7.37571 13.7367 7.39561ZM10.6131 2.23756C10.6217 2.2436 10.6303 2.2496 10.6393 2.25542C10.6584 2.23308 10.6782 2.2097 10.6977 2.18665C10.7132 2.1685 10.7287 2.15035 10.7442 2.1322C10.6909 2.19893 10.6312 2.33671 10.7084 2.28419C10.7472 2.25788 10.8396 2.12249 10.8918 2.13229C10.8621 2.11616 10.8253 2.11228 10.7927 2.10084C10.8275 2.06742 10.8626 2.03355 10.8974 2.00013C10.8975 2.00007 10.8975 2 10.8976 1.99994C10.8972 1.9848 10.8971 1.96922 10.8968 1.95414C10.8022 2.04865 10.7077 2.14305 10.6131 2.23756ZM12.7868 8.28299C12.7474 8.19 12.7221 8.14628 12.6046 8.04709C12.6045 8.04706 12.6044 8.04703 12.6044 8.04701C12.6415 8.10518 12.6785 8.16336 12.7156 8.22156C12.7393 8.24203 12.763 8.26258 12.7868 8.28299ZM12.4023 3.39686C11.9433 3.76067 12.3149 3.62506 12.4294 3.46067C12.4345 3.45291 12.363 3.44801 12.4023 3.39686ZM13.9331 5.79505C13.951 5.80709 13.9674 5.81814 13.9857 5.83036C14.0339 5.77754 14.0819 5.72481 14.1301 5.672C14.0646 5.71309 13.9991 5.75464 13.9331 5.79505ZM10.1142 10.9006C10.2338 11.0083 10.3147 11.0157 10.2243 10.8653C10.2 10.8592 10.1759 10.853 10.1516 10.8469C10.1598 10.8139 10.1667 10.7795 10.1756 10.7473C10.0337 10.5765 10.0922 10.6957 10.0161 10.6797C10.0039 10.6771 9.7905 10.4964 9.91129 10.6662C9.9362 10.7011 9.9938 10.6906 10.0466 10.8084C10.0647 10.8059 10.0734 10.7958 10.0881 10.7905C10.123 10.8303 10.1579 10.8702 10.1928 10.9099C10.1665 10.907 10.1405 10.9035 10.1142 10.9006ZM13.8866 7.21737C13.9337 7.18561 13.8734 7.12006 13.7667 7.00459C13.7628 7.0348 13.7581 7.06518 13.7538 7.09547C13.798 7.136 13.8421 7.17663 13.8866 7.21737ZM10.5018 10.6406C10.5384 10.6434 10.4478 10.5528 10.4406 10.5272C10.4136 10.4309 10.4939 10.4828 10.4902 10.4118C10.5037 10.4326 10.5164 10.452 10.5295 10.4721C10.5295 10.4721 10.5295 10.4721 10.5296 10.4721C10.7565 10.4241 10.4872 10.2713 10.4248 10.3838C10.3924 10.349 10.3601 10.3141 10.3279 10.2795C10.3394 10.3776 10.3546 10.4691 10.5018 10.6406ZM12.9127 3.88441C12.9327 3.86234 13.0858 3.74976 12.9936 3.78041C12.7706 3.94531 12.9058 3.8897 12.8366 3.97107C12.8098 3.98104 12.7839 3.99095 12.7575 4.00135C12.7427 4.09987 12.7974 4.06288 12.93 3.90945C12.9389 3.89909 12.8925 3.90611 12.9127 3.88441ZM12.7208 3.49107C12.4284 3.77286 12.6115 3.69784 12.6994 3.6075C12.6953 3.59625 12.6403 3.63846 12.654 3.60915C12.6674 3.57957 12.7325 3.51045 12.7208 3.49107ZM13.9916 5.30953C13.9916 5.30676 14.1111 5.18343 14.0092 5.26979C13.7808 5.49011 13.9696 5.39815 14.0476 5.3198C14.0329 5.31092 13.9903 5.33396 13.9919 5.30926C13.9918 5.30935 13.9917 5.30944 13.9916 5.30953ZM9.90458 11.1988C9.9126 11.2069 10.0009 11.2233 9.96608 11.1694C9.92524 11.1102 9.87873 11.0489 9.83503 10.9887C9.85481 11.0616 9.77197 11.0616 9.90467 11.1987C9.90464 11.1988 9.90461 11.1988 9.90458 11.1988Z' fill='%23262D42'/%3e%3c/svg%3e ");
    display: block;
}

#header .menu-produit .mm_tabs_li .mm_tab_has_child::after {
    display: none;
    border: none;
    transform: none;
    margin: 0;
    width: auto;
    height: auto;
    position: initial;
}

#header .ets_mm_megamenu {
    transition: transform 0.3s ease, opacity 0.2s ease;
    will-change: transform;
    opacity: 1;
    z-index: 1;
}

#header.hidden-on-scroll .ets_mm_megamenu {
    transform: translateY(-100%);
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul::after,
#header .ets_mm_megamenu .menu-pieces .mm_columns_ul::after {
    display: block;
    content: '';
    width: 100%;
    position: absolute;
    height: calc((var(--vh, 1vh) * 100));
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul,
#header .ets_mm_megamenu .menu-pieces.open_li .mm_columns_ul {
    padding-top: 15px !important;
    background-color: var(--white) !important;
    margin-top: 0 !important;
    border-top: none !important;
}

#header .ets_mm_megamenu .menu-produit .mm_columns_ul>*,
#header .ets_mm_megamenu .menu-pieces.open_li .mm_columns_ul>* {
    border-top: 1px solid var(--grey-2);
}

#header .header-banner {
    overflow: hidden;
}

#header.is-mobile .header-top .ets_mm_megamenu {
    width: fit-content;
    padding: 0;
}

#header.is-mobile .header-top .ets_mm_megamenu .container,
#header.is-mobile .header-top .ets_mm_megamenu .ybc-menu-toggle {
    padding: 0;
}

#header.is-mobile .header-top .ets_mm_megamenu .container::after,
#header.is-mobile .user-info p {
    display: none;
}

#header.is-mobile #_desktop_logo {
    flex: 1;
}

#header.is-mobile .header-top .container {
    gap: 15px;
}

#header.is-mobile .user-info span,
#header.is-mobile .user-info a,
#header.is-mobile #contact-link a,
#header.is-mobile .xyblockcart-container .shopping-cart span {
    font-size: 15px;
}

#header.is-mobile .mm_menus_ul {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    height: 100%;
    max-width: 630px;
    width: 100%;
    transform: none;
    visibility: visible;
    opacity: 1;
    overflow-x: hidden;
    z-index: 10;
    overflow-y: auto;
}

#header.is-mobile .mm_menus_ul::-webkit-scrollbar,
#header.is-mobile .submenu::-webkit-scrollbar {
    display: none;
}

#header.is-mobile .submenu {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 20;
    max-width: 630px;
    transition: .3s;
    overflow: auto;
}

#header.is-mobile .submenu.open {
    left: 0;
}

#header.is-mobile .submenu .close-tab {
    padding: 15px 25px;
    border-bottom: 1px solid #00000033;
    display: flex;
    gap: 10px;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    font: var(--text-bold);
    color: var(--dark-blue);
    z-index: 2;
}

#header.is-mobile .submenu .close-tab img {
    width: 34px;
    height: auto;
}

#header.is-mobile .submenu .mm_columns_li:not(:last-child) {
    padding: 25px;
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

#header.is-mobile .submenu .mm_columns_li:not(:last-child) .mm_blocks_ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#header.is-mobile .submenu .mm_columns_li:not(:last-child) .mm_blocks_li {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}

#header.is-mobile .submenu .mm_columns_li:not(:last-child) .mm_blocks_li svg {
    display: none;
}

#header.is-mobile .submenu .mm_columns_li:not(:last-child) .mm_blocks_li img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    object-position: center;
}

#header.is-mobile .submenu .mm_columns_li:last-child {
    padding: 25px;
    padding-top: 0;
}

#header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_ul {
    display: flex;
    gap: 20px;
}

#header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content,
#header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

#header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content span {
    font: var(--button);
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

/* #header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content .link span:not(.svg) svg {
    display: none;
} */

#header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_li {
    flex: 1;
    padding: 0;
}

#header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_li img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    height: auto;
    border-radius: 5px
}

#header.is-mobile .submenu .mm_columns_li .ets_mm_categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#header.is-mobile .submenu .mm_columns_li .ets_mm_categories .ets_mm_url::before {
    display: none;
}

#header.is-mobile .submenu .mm_columns_li .ets_mm_categories .ets_mm_url {
    font: var(--text);
    color: var(--dark-blue);
    margin-bottom: 0;
}

#header.is-mobile .submenu>ul {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
}

#header.is-mobile .submenu>ul .mm_tab_li_content {
    border: none;
}

#header.is-mobile .submenu>ul>li {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #00000033;
    padding-top: 25px;
    padding-bottom: 15px;
}

#header.is-mobile .submenu>ul>li:first-child {
    border: none;
    padding-top: 0;
}

#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_toggle_title a {
    display: flex;
    gap: 5px;
    align-items: center;
}

#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_toggle_title a,
#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_toggle_title span {
    font: var(--text-bold);
    color: var(--dark-blue) !important;
}

#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_toggle_title a img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    object-position: center;
}

#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_name::after {
    display: none;
}

#header.is-mobile .submenu>ul .mm_tab_li_content .mm_tab_toggle_title {
    padding: 0;
}

#header.is-mobile .submenu>ul>li .mm_blocks_li {
    margin: 0;
    padding: 0;
}

#header.is-mobile .submenu>ul>li .ets_mm_block_content {
    margin: 0;
    margin-bottom: 5px;
    text-decoration: none;
}

#header.is-mobile .submenu>ul>li .ets_mm_block_content a,
#header.is-mobile .submenu>ul>li .ets_mm_categories a {
    text-decoration: none;
    color: var(--dark-blue);
    font: var(--text);
}

#header.is-mobile .submenu>ul>li .ets_mm_categories a::before {
    display: none;
}

#header.is-mobile .submenu>ul>li .mm_blocks_li:last-child .ets_mm_block_content {
    text-decoration: underline;
}

#header.is-mobile .submenu>ul>li .mm_blocks_li:last-child .ets_mm_block_content a {
    font: var(--link);
}

#header.is-mobile .submenu>ul>li .ets_mm_categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#header.is-mobile .submenu>ul>li .mm_tab_li_content:has(.mm_bubble_text) {
    padding: 20px;
    background: var(--grey);
    border-radius: 10px;
}

#header.is-mobile .submenu>ul>li .mm_tab_li_content:has(.mm_bubble_text) .ets_mm_url {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font: var(--text);
    gap: 10px;
}

#header.is-mobile .submenu>ul>li .mm_tab_li_content:has(.mm_bubble_text) .mm_tab_name {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header.is-mobile .submenu>ul>li .mm_tab_li_content:has(.mm_bubble_text) .ets_mm_url .mm_bubble_text {
    position: initial;
    text-align: center;
    font: var(--text-bold);
    background: none !important;
    text-decoration: underline;
    height: fit-content;
    margin: 0;
    text-transform: initial;
}

#header.is-mobile .submenu>ul>li .mm_tab_li_content:has(.mm_bubble_text) .ets_mm_url img {
    width: 116px;
    height: auto;
    margin: 0;
    margin-bottom: -20px;
}

#header.is-mobile .ets_mm_megamenu .mm_menu_content_title {
    padding: 0;
}

#header.is-mobile .ets_mm_megamenu .mm_menus_li>a,
#header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title,
#header.is-mobile .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .ets_mm_url {
    padding: 15px 25px;
}

#header.is-mobile .container-menu-mobile {
    position: absolute;
    width: 100vw;
    height: calc((var(--vh, 1vh) * 100));
    left: calc(-100vw - 25px);
    display: flex;
    flex-direction: column;
    max-width: none;
    background: #414141B2;
    top: -58px;
    transition: .3s;
}

#header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title:has(a) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title::after {
    display: none;
}

#header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title span,
#header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title a {
    font: var(--text-bold) !important;
    color: var(--dark-blue);
    padding: 0;
}

#header.is-mobile .header-top .ets_mm_megamenu .container {
    background: none;
}

#header.is-mobile .container-menu-mobile.active {
    left: -25px;
}

#header.is-mobile .container-menu-mobile .close_menu {
    display: flex !important;
    background: white;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 10px 15px;
}

#header.is-mobile .container-menu-mobile .close_menu p {
    margin: 0;
    font: var(--text-semi-bold);
    color: var(--dark-blue);
    text-transform: uppercase;
}

#header:not(.is-mobile) .chat-client {
    display: none;
}

#header.is-mobile .mm_menus_ul #_desktop_contact_link {
    order: 2;
    padding: 12.5px 25px;
}

#header.is-mobile .ets_mm_megamenu .mm_menus_li.chat-client a {
    display: flex;
    align-items: center;
}

#header.is-mobile .mm_menus_ul #_desktop_contact_link img,
#header.is-mobile .mm_menus_ul .user-info img,
#header.is-mobile .mm_menus_ul #_desktop_contact_link svg,
#header.is-mobile .mm_menus_ul .user-info svg,
#header .ets_mm_megamenu .mm_menus_li.chat-client img,
#header .ets_mm_megamenu .mm_menus_li.chat-client svg {
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

#header.is-mobile .header-top .container::after {
    display: none;
}

#header.is-mobile .ets_mm_megamenu .user-info a,
#header.is-mobile .ets_mm_megamenu #contact-link span {
    display: flex;
}

#header.is-mobile .header-top>.container>* {
    order: 2;
}

#header.is-mobile .header-top .ets_mm_megamenu {
    order: 1;
}

#header.is-mobile .ets_mm_megamenu .user-info {
    order: 1;
    padding: 20px 25px 10px;
    border-top: 1px solid #00000033;
}

#header .ets_mm_megamenu .mm_menus_li.chat-client {
    order: 3;
}

#header .ets_mm_megamenu .mm_menus_li.chat-client .ets_mm_url {
    padding: 12.5px 25px;
}

@media (min-width: 1025px) {
    #header.is-mobile .container-menu-mobile.active {
        top: -70px;
        left: -30px;
    }

    #header.is-mobile .container-menu-mobile {
        left: calc(-100vw - 30px);
    }

    #header.is-mobile .container-menu-mobile.active {
        left: -30px;
    }
}

@media (min-width: 1250px) {
    #header.is-mobile .container-menu-mobile.active {
        top: -74px;
        left: -30px;
    }
}

#header.is-mobile .search-widgets {
    padding: 0;
    width: 100%;
    min-width: 100%;
}

#header.is-mobile.hidden-on-scroll .ets_mm_megamenu {
    transform: none;
}

#header.is-mobile .header-top .ets_mm_megamenu .ybc-menu-toggle {
    display: block;
}

#header.is-mobile .header-top .ets_mm_megamenu .ybc-menu-toggle::before,
#header.is-mobile .ets_mm_megamenu .menu-produit .mm_menu_content_title::before,
#header.is-mobile .menu-produit .mm_tab_li_content-mobile .mm_tab_has_child::after {
    display: none;
}

#header.is-mobile .header-bottom {
    display: flex;
    padding: 15px 25px;
    background: white;
    z-index: -1;
    transition: .2s;
}

#header.is-mobile.hidden-on-scroll .header-bottom {
    transform: translateY(-100%);
}

#header.is-mobile .ets_mm_megamenu .menu-produit .mm_menu_content_title {
    color: var(--dark-blue);
    font: var(--text-bold);
    padding: 0;
    padding: 0;
    margin-bottom: 20px;
}

#header.is-mobile .ets_mm_megamenu .menu-produit {
    padding: 20px 25px;
    background: var(--grey);
    margin-bottom: 10px;
}

#header.is-mobile .ets_mm_megamenu .menu-produit.mm_menus_li>a {
    padding: 0;
    background: none !important;
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile .mm_tab_name .mm_tab_toggle_title .ets_mm_url {
    display: flex;
    align-items: center;
    gap: 10px;
    font: var(--button);
    color: var(--dark-blue);
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile .mm_tab_toggle_title img {
    width: 34px;
    object-fit: contain;
    object-position: center;
    height: 34px;
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile {
    padding: 5px;
    padding-right: 15px;
    border-radius: 5px;
    display: flex;
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile:hover {
    background: white;
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile .mm_tab_toggle_title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    align-items: center;
    padding: 0;
}

/* #header.is-mobile .menu-produit .mm_tab_li_content-mobile .mm_tab_toggle_title svg {
    display: none;
} */
#header.is-mobile .menu-produit .mm_tab_li_content-mobile .ets_mm_url {
    flex: 1;
}

#header.is-mobile .menu-produit .mm_tab_li_content-mobile:hover .mm_tab_toggle_title svg {
    display: block;
}

#header.is-mobile .ets_mm_megamenu .ets_mm_megamenu_content {
    border: none;
}

#header.is-mobile .ets_mm_megamenu .menu-produit>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

#header .header-top #search_widget input {
    padding: 14px 20px;
    font-size: 15px;
}

@media(max-width: 1024px) {
    #header .header-top #search_widget input {
        font-size: 16px;
    }
}

#header.is-mobile .container-menu-mobile .user-info p {
    display: block;
}

#header.is-mobile .xyblockcart-container .shopping-cart span::after {
    display: none;
}

@media (max-width: 1024px) {

    #header .user-info p {
        display: none;
    }

    #header .header-top {
        padding: 10px 25px;
    }

    #header.is-mobile .container-menu-mobile .user-info a p,
    #header.is-mobile .container-menu-mobile #contact-link a p,
    #header.is-mobile .container-menu-mobile .xyblockcart-container .shopping-cart span,
    #header .ets_mm_megamenu .chat-client .mm_menu_content_title {
        font-weight: 500 !important;
    }

    #header .mm_block_type_image .ets_mm_block_content span {
        font-size: 16px;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content span,
    #header .mm_block_type_html .ets_mm_block_content,
    #header .mm_block_type_html .ets_mm_block_content a {
        font-size: 15px;
    }

    #footer .links a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    #header.is-mobile .container-menu-mobile {
        top: -54px;
        left: calc(-100vw - 15px);
    }

    #header #_desktop_logo {
        display: block !important;
    }

    #header #_desktop_contact_link,
    #header.is-mobile .header-top .container::after {
        display: none;
    }

    #header .search-widgets {
        margin: 0;
    }

    #header.is-mobile .header-bottom,
    #header .header-top {
        padding: 10px 15px;
    }

    #header .header__rightitem .shopping-cart {
        padding: 0;
    }

    #header.is-mobile .container-menu-mobile.active {
        left: -15px;
    }

    #header.is-mobile .mm_menus_ul,
    #header.is-mobile .submenu {
        max-width: 75%;
        min-width: 280px;
    }

    #header.is-mobile .ets_mm_megamenu .menu-produit {
        padding: 10px;
        margin-bottom: 2.5px;
        overflow-y: scroll;
    }

    #header.is-mobile .ets_mm_megamenu .mm_menus_li>a,
    #header.is-mobile .ets_mm_megamenu .menu-pieces .mm_menu_content_title,
    #header.is-mobile .ets_mm_megamenu .mm_menus_li:not(.mm_has_sub) .ets_mm_url {
        padding: 12.5px 15px;
    }

    #header.is-mobile .ets_mm_megamenu .user-info {
        padding: 15px 15px 7.5px;
    }

    #header .ets_mm_megamenu .mm_menus_li.chat-client .ets_mm_url,
    #header.is-mobile .mm_menus_ul #_desktop_contact_link {
        padding: 7.5px 15px;
    }

    #header.is-mobile .submenu>ul {
        padding: 15px;
    }

    #header.is-mobile .submenu .mm_columns_li:not(:last-child),
    #header.is-mobile .submenu .close-tab {
        padding: 15px;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child {
        padding-inline: 15px;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_ul {
        flex-direction: column;
        gap: 10px;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_ul .mm_blocks_li {
        margin: 0;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content,
    #header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content a {
        gap: 15px;
        width: 100%;
    }

    #header.is-mobile .submenu>ul>li .mm_blocks_li:last-child .ets_mm_block_content a {
        font-size: 15px;
    }

    #header.is-mobile .submenu .mm_columns_li:last-child .mm_blocks_li img {
        max-height: 140px;
    }

    #header.is-mobile .mm_menus_ul #_desktop_contact_link {
        display: flex;
    }
}

/*--END-- HEADER MENU */

/*--END-- HEADER */




/*--START-- FOOTER */

#footer {
    z-index: 12;
    position: relative;
    background: white;
}

#footer .blockreassurance {
    padding: 30px 60px;
    border-top: 1px solid var(--grey-2);
}

#footer .blockreassurance>.row {
    display: flex;
    align-items: center;
    gap: 25px;
}

#footer .blockreassurance>.row::after {
    display: none;
}

#footer .blockreassurance img,
#footer .blockreassurance svg {
    max-width: 82px;
    max-height: 70px;
    height: auto;
}

#footer .blockreassurance .row>div {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 0;
}

#footer .blockreassurance .row .text {
    display: flex;
    flex-direction: column;
}

#footer .blockreassurance .row .block-title {
    text-align: left;
    font: var(--text-bold);
}

#footer .blockreassurance .row .block-title~p {
    margin: 0;
    text-align: left;
}

.youtube {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='white'/%3e%3cpath d='M30.5401 14.69C30.4213 14.2154 30.1794 13.7806 29.8387 13.4294C29.4981 13.0783 29.0708 12.8232 28.6001 12.69C26.8801 12.27 20.0001 12.27 20.0001 12.27C20.0001 12.27 13.1201 12.27 11.4001 12.73C10.9293 12.8632 10.5021 13.1183 10.1614 13.4694C9.8208 13.8206 9.57887 14.2554 9.46008 14.73C9.1453 16.4756 8.99132 18.2463 9.00008 20.02C8.98886 21.8071 9.14285 23.5913 9.46008 25.35C9.59104 25.8099 9.83839 26.2282 10.1782 26.5645C10.5181 26.9008 10.9389 27.1438 11.4001 27.27C13.1201 27.73 20.0001 27.73 20.0001 27.73C20.0001 27.73 26.8801 27.73 28.6001 27.27C29.0708 27.1368 29.4981 26.8818 29.8387 26.5306C30.1794 26.1794 30.4213 25.7446 30.5401 25.27C30.8524 23.5376 31.0064 21.7804 31.0001 20.02C31.0113 18.233 30.8573 16.4487 30.5401 14.69Z' stroke='%23262D42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M23.25 19.7337C23.5833 19.9262 23.5833 20.4073 23.25 20.5998L18.75 23.1978C18.4167 23.3903 18 23.1497 18 22.7648L18 17.5687C18 17.1838 18.4167 16.9432 18.75 17.1357L23.25 19.7337Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

.instagram {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='white'/%3e%3cpath d='M20 13.4422C22.1375 13.4422 22.3906 13.4516 23.2313 13.4891C24.0125 13.5235 24.4344 13.6547 24.7156 13.7641C25.0875 13.9078 25.3563 14.0828 25.6344 14.361C25.9156 14.6422 26.0875 14.9078 26.2313 15.2797C26.3406 15.561 26.4719 15.986 26.5063 16.7641C26.5438 17.6078 26.5531 17.861 26.5531 19.9953C26.5531 22.1328 26.5438 22.386 26.5063 23.2266C26.4719 24.0078 26.3406 24.4297 26.2313 24.711C26.0875 25.0828 25.9125 25.3516 25.6344 25.6297C25.3531 25.911 25.0875 26.0828 24.7156 26.2266C24.4344 26.336 24.0094 26.4672 23.2313 26.5016C22.3875 26.5391 22.1344 26.5485 20 26.5485C17.8625 26.5485 17.6094 26.5391 16.7688 26.5016C15.9875 26.4672 15.5656 26.336 15.2844 26.2266C14.9125 26.0828 14.6438 25.9078 14.3656 25.6297C14.0844 25.3485 13.9125 25.0828 13.7688 24.711C13.6594 24.4297 13.5281 24.0047 13.4938 23.2266C13.4563 22.3828 13.4469 22.1297 13.4469 19.9953C13.4469 17.8578 13.4563 17.6047 13.4938 16.7641C13.5281 15.9828 13.6594 15.561 13.7688 15.2797C13.9125 14.9078 14.0875 14.6391 14.3656 14.361C14.6469 14.0797 14.9125 13.9078 15.2844 13.7641C15.5656 13.6547 15.9906 13.5235 16.7688 13.4891C17.6094 13.4516 17.8625 13.4422 20 13.4422ZM20 12.0016C17.8281 12.0016 17.5563 12.011 16.7031 12.0485C15.8531 12.086 15.2688 12.2235 14.7625 12.4203C14.2344 12.6266 13.7875 12.8985 13.3438 13.3453C12.8969 13.7891 12.625 14.236 12.4188 14.761C12.2219 15.2703 12.0844 15.8516 12.0469 16.7016C12.0094 17.5578 12 17.8297 12 20.0016C12 22.1735 12.0094 22.4453 12.0469 23.2985C12.0844 24.1485 12.2219 24.7328 12.4188 25.2391C12.625 25.7672 12.8969 26.2141 13.3438 26.6578C13.7875 27.1016 14.2344 27.3766 14.7594 27.5797C15.2688 27.7766 15.85 27.9141 16.7 27.9516C17.5531 27.9891 17.825 27.9985 19.9969 27.9985C22.1688 27.9985 22.4406 27.9891 23.2938 27.9516C24.1438 27.9141 24.7281 27.7766 25.2344 27.5797C25.7594 27.3766 26.2063 27.1016 26.65 26.6578C27.0938 26.2141 27.3688 25.7672 27.5719 25.2422C27.7688 24.7328 27.9063 24.1516 27.9438 23.3016C27.9813 22.4485 27.9906 22.1766 27.9906 20.0047C27.9906 17.8328 27.9813 17.561 27.9438 16.7078C27.9063 15.8578 27.7688 15.2735 27.5719 14.7672C27.375 14.236 27.1031 13.7891 26.6563 13.3453C26.2125 12.9016 25.7656 12.6266 25.2406 12.4235C24.7313 12.2266 24.15 12.0891 23.3 12.0516C22.4438 12.011 22.1719 12.0016 20 12.0016Z' fill='%23262D42'/%3e%3cpath d='M20 15.8922C17.7312 15.8922 15.8906 17.7328 15.8906 20.0016C15.8906 22.2703 17.7312 24.111 20 24.111C22.2688 24.111 24.1094 22.2703 24.1094 20.0016C24.1094 17.7328 22.2688 15.8922 20 15.8922ZM20 22.6672C18.5281 22.6672 17.3344 21.4735 17.3344 20.0016C17.3344 18.5297 18.5281 17.336 20 17.336C21.4719 17.336 22.6656 18.5297 22.6656 20.0016C22.6656 21.4735 21.4719 22.6672 20 22.6672Z' fill='%23262D42'/%3e%3cpath d='M25.2312 15.7297C25.2312 16.2609 24.8 16.6891 24.2719 16.6891C23.7406 16.6891 23.3125 16.2578 23.3125 15.7297C23.3125 15.1984 23.7438 14.7703 24.2719 14.7703C24.8 14.7703 25.2312 15.2016 25.2312 15.7297Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

.facebook {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='white'/%3e%3cpath d='M23.3843 17.6396C23.3629 17.6021 23.3629 20.0475 23.3629 20.0198H21.2342V26.8553H18.4256V20.0475C17.9317 20.0181 17.5283 20.0312 17.0064 20.0002C17.0064 19.3481 16.9834 18.696 17.0245 18.0602C17.0542 17.9699 17.1055 17.8881 17.174 17.8216C17.2425 17.7552 17.3262 17.7062 17.418 17.6788C17.7028 17.6168 18.0107 17.6608 18.3712 17.6608C18.5639 16.2409 17.9942 14.6547 19.5105 13.6765C20.7041 12.912 23.3629 13.2005 23.3382 13.1875V15.4959C23.3629 15.4828 21.8565 15.2888 21.3873 15.6459C21.0795 15.8806 21.2589 16.9908 21.1848 17.6396H23.3843Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

.youtube:hover {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='%23CDDFCB'/%3e%3cpath d='M30.54 14.6895C30.4212 14.2149 30.1793 13.7801 29.8387 13.4289C29.498 13.0778 29.0708 12.8227 28.6 12.6895C26.88 12.2695 20 12.2695 20 12.2695C20 12.2695 13.12 12.2695 11.4 12.7295C10.9293 12.8627 10.502 13.1178 10.1614 13.4689C9.82074 13.8201 9.57881 14.2549 9.46002 14.7295C9.14524 16.4751 8.99126 18.2458 9.00002 20.0195C8.9888 21.8066 9.14279 23.5908 9.46002 25.3495C9.59098 25.8094 9.83833 26.2277 10.1782 26.564C10.518 26.9003 10.9388 27.1433 11.4 27.2695C13.12 27.7295 20 27.7295 20 27.7295C20 27.7295 26.88 27.7295 28.6 27.2695C29.0708 27.1363 29.498 26.8813 29.8387 26.5301C30.1793 26.179 30.4212 25.7441 30.54 25.2695C30.8524 23.5371 31.0063 21.7799 31 20.0195C31.0112 18.2325 30.8573 16.4482 30.54 14.6895Z' stroke='%23262D42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M23.25 19.733C23.5833 19.9255 23.5833 20.4066 23.25 20.599L18.75 23.1971C18.4167 23.3896 18 23.149 18 22.7641L18 17.5679C18 17.183 18.4167 16.9425 18.75 17.1349L23.25 19.733Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

.instagram:hover {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='%23CDDFCB'/%3e%3cpath d='M20 13.4426C22.1375 13.4426 22.3906 13.452 23.2313 13.4895C24.0125 13.5238 24.4344 13.6551 24.7156 13.7645C25.0875 13.9082 25.3563 14.0832 25.6344 14.3613C25.9156 14.6426 26.0875 14.9082 26.2313 15.2801C26.3406 15.5613 26.4719 15.9863 26.5063 16.7645C26.5438 17.6082 26.5531 17.8613 26.5531 19.9957C26.5531 22.1332 26.5438 22.3863 26.5063 23.227C26.4719 24.0082 26.3406 24.4301 26.2313 24.7113C26.0875 25.0832 25.9125 25.352 25.6344 25.6301C25.3531 25.9113 25.0875 26.0832 24.7156 26.227C24.4344 26.3363 24.0094 26.4676 23.2313 26.502C22.3875 26.5395 22.1344 26.5488 20 26.5488C17.8625 26.5488 17.6094 26.5395 16.7688 26.502C15.9875 26.4676 15.5656 26.3363 15.2844 26.227C14.9125 26.0832 14.6438 25.9082 14.3656 25.6301C14.0844 25.3488 13.9125 25.0832 13.7688 24.7113C13.6594 24.4301 13.5281 24.0051 13.4938 23.227C13.4563 22.3832 13.4469 22.1301 13.4469 19.9957C13.4469 17.8582 13.4563 17.6051 13.4938 16.7645C13.5281 15.9832 13.6594 15.5613 13.7688 15.2801C13.9125 14.9082 14.0875 14.6395 14.3656 14.3613C14.6469 14.0801 14.9125 13.9082 15.2844 13.7645C15.5656 13.6551 15.9906 13.5238 16.7688 13.4895C17.6094 13.452 17.8625 13.4426 20 13.4426ZM20 12.002C17.8281 12.002 17.5563 12.0113 16.7031 12.0488C15.8531 12.0863 15.2688 12.2238 14.7625 12.4207C14.2344 12.627 13.7875 12.8988 13.3438 13.3457C12.8969 13.7895 12.625 14.2363 12.4188 14.7613C12.2219 15.2707 12.0844 15.852 12.0469 16.702C12.0094 17.5582 12 17.8301 12 20.002C12 22.1738 12.0094 22.4457 12.0469 23.2988C12.0844 24.1488 12.2219 24.7332 12.4188 25.2395C12.625 25.7676 12.8969 26.2145 13.3438 26.6582C13.7875 27.102 14.2344 27.377 14.7594 27.5801C15.2688 27.777 15.85 27.9145 16.7 27.952C17.5531 27.9895 17.825 27.9988 19.9969 27.9988C22.1688 27.9988 22.4406 27.9895 23.2938 27.952C24.1438 27.9145 24.7281 27.777 25.2344 27.5801C25.7594 27.377 26.2063 27.102 26.65 26.6582C27.0938 26.2145 27.3688 25.7676 27.5719 25.2426C27.7688 24.7332 27.9063 24.152 27.9438 23.302C27.9813 22.4488 27.9906 22.177 27.9906 20.0051C27.9906 17.8332 27.9813 17.5613 27.9438 16.7082C27.9063 15.8582 27.7688 15.2738 27.5719 14.7676C27.375 14.2363 27.1031 13.7895 26.6563 13.3457C26.2125 12.902 25.7656 12.627 25.2406 12.4238C24.7313 12.227 24.15 12.0895 23.3 12.052C22.4438 12.0113 22.1719 12.002 20 12.002Z' fill='%23262D42'/%3e%3cpath d='M20 15.8926C17.7313 15.8926 15.8906 17.7332 15.8906 20.002C15.8906 22.2707 17.7313 24.1113 20 24.1113C22.2687 24.1113 24.1094 22.2707 24.1094 20.002C24.1094 17.7332 22.2687 15.8926 20 15.8926ZM20 22.6676C18.5281 22.6676 17.3344 21.4738 17.3344 20.002C17.3344 18.5301 18.5281 17.3363 20 17.3363C21.4719 17.3363 22.6656 18.5301 22.6656 20.002C22.6656 21.4738 21.4719 22.6676 20 22.6676Z' fill='%23262D42'/%3e%3cpath d='M25.2312 15.73C25.2312 16.2613 24.8 16.6894 24.2719 16.6894C23.7406 16.6894 23.3125 16.2582 23.3125 15.73C23.3125 15.1988 23.7438 14.7707 24.2719 14.7707C24.8 14.7707 25.2312 15.2019 25.2312 15.73Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

.facebook:hover {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='40' height='40' rx='20' fill='%23CDDFCB'/%3e%3cpath d='M23.3843 17.6395C23.3629 17.602 23.3629 20.0474 23.3629 20.0196H21.2342V26.8552H18.4256V20.0474C17.9317 20.018 17.5283 20.0311 17.0064 20.0001C17.0064 19.348 16.9834 18.6959 17.0245 18.0601C17.0542 17.9698 17.1055 17.8879 17.174 17.8215C17.2425 17.7551 17.3262 17.7061 17.418 17.6786C17.7028 17.6167 18.0107 17.6607 18.3712 17.6607C18.5639 16.2408 17.9942 14.6545 19.5105 13.6764C20.7041 12.9118 23.3629 13.2004 23.3382 13.1873V15.4957C23.3629 15.4827 21.8565 15.2887 21.3873 15.6457C21.0795 15.8805 21.2589 16.9907 21.1848 17.6395H23.3843Z' fill='%23262D42'/%3e%3c/svg%3e ");
}

#footer .block-social ul li {
    background-color: transparent;
    margin: 0;
}

#footer .block-social ul .youtube {
    order: 3;
}

#footer .block-social ul {
    margin: 0;
    display: flex;
    gap: 18px;
}

#footer .footer-container {
    border-radius: 30px 30px 0 0;
    background-color: var(--blue-green);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1256' height='457' viewBox='0 0 1256 457' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1211.78 0.579143C1212.62 0.630823 1213.47 0.682502 1214.31 0.735412C1238.72 3.2874 1238.45 4.21026 1248.79 6.89883C1253.49 8.12315 1256.93 7.53745 1254.13 9.96147C1252.74 11.1649 1252.17 9.86672 1232.58 17.978C1230.82 18.7064 1217.38 24.2706 1210.38 26.5839C1209.23 27.1585 1208.08 27.7331 1206.93 28.3078C1204.64 28.9402 1149.48 52.1838 1117.28 68.0359C1052.62 99.8632 1031.57 120.101 1023.91 123.449C1022.88 123.897 1023.1 124.078 1012.64 131.761C999.931 141.091 920.721 199.272 864.419 261.584C834.132 295.104 833.905 294.785 823.317 307.762C809.961 324.132 809.924 324.124 809.152 325.788C807.923 327.024 807.982 326.966 807.02 328.417C803.499 332.757 803.45 332.823 803.156 333.218C801.794 334.985 801.453 334.638 800.589 336.725C800.568 336.747 788.867 351.268 772.018 376.028C753.636 403.043 754.448 403.554 752.846 405.898C752.384 406.682 751.923 407.466 751.462 408.248C749.447 411.567 734.127 436.795 727.543 450.468L727.301 451.617C725.708 452.49 723.963 453.19 723.665 453.309C722.97 452.7 723.258 452.418 722.329 452.137C721.185 451.791 721.658 450.894 708.677 446.047C687.229 438.04 687.259 438.033 686.393 437.754C684.671 437.071 684.704 437.065 682.924 437.297C677.801 433.713 677.416 434.841 671.629 432.828C669.176 432.129 669.288 432.076 666.707 431.625C666.21 431.555 665.678 431.481 660.649 429.98C654.49 428.141 654.631 427.898 648.234 426.723C646.591 426.332 644.95 425.942 643.307 425.552C622.752 420.124 577.998 415.074 553.506 417.526C551.931 417.684 551.984 417.792 533.845 419.818C532.593 420.012 531.342 420.206 530.09 420.399C515.497 422.379 515.643 422.823 506.697 425.491L503.151 426.052C502.345 426.276 495.843 428.081 493.253 429.438C487.306 432.555 486.891 431.213 480.853 434.145C479.671 434.658 478.49 435.171 477.307 435.684C475.26 436.314 457.906 444.836 450.626 454.305C446.558 459.597 446.556 454.288 446.714 454.016C447.725 452.276 448.092 452.581 463.622 435.385C464.75 434.072 465.737 432.978 465.923 432.772C469.645 428.837 495.102 397.376 509.609 385.438C509.828 385.257 539.045 360.421 541.241 359.217C548.497 355.238 538.074 353.03 537.5 352.908C536.068 352.604 536.427 351.829 520.265 346.775C519.02 346.407 517.776 346.039 516.532 345.67C509.438 342.066 448.345 324.971 400.921 323.105C361.36 321.548 361.378 320.689 316.048 323.912C311.287 324.25 284.619 326.146 256.957 332.14C256.242 332.208 256.365 332.277 255.765 332.332C255.568 332.35 255.583 332.346 253.301 332.517C252.614 332.7 252.721 332.558 244.655 334.635C243.006 334.994 241.356 335.35 239.706 335.707C226.691 336.327 149.947 359.667 131.518 367.998C123.972 371.409 123.238 369.893 118.864 373.463C118.683 373.611 110.227 376.601 109.474 376.868C109.065 377.012 72.8137 393.046 71.3162 393.942C70.0476 394.7 44.2274 407.652 41.8674 408.835C11.0146 424.311 -0.482878 436.125 0.0154615 430.528C0.0732935 429.871 14.3492 418.817 24.2274 409.407C32.0064 401.998 38.7912 396.74 40.1177 395.712C42.271 394.044 56.5383 381.713 57.9582 380.486C60.4635 378.321 66.1889 374.378 67.0305 373.432C70.5656 369.459 103.102 347.041 104.584 345.883C112.328 339.838 165.552 309.78 172.045 307.469C176.2 305.989 175.266 303.98 222.685 285.627C225.109 284.964 224.945 284.894 227.273 283.746C228.475 283.426 228.287 283.052 241.936 278.574C244.567 277.71 244.224 277.072 246.979 276.379C253.592 274.714 252.799 272.243 328.306 250.854C328.883 250.693 333.192 249.494 335.628 249.284C343.668 246.966 343.592 247.138 351.688 244.715L355.292 244.307C356.143 244.048 356.992 243.789 357.842 243.529C358.35 243.436 402.776 233.405 415.629 232.035L419.284 231.826C436.668 228.349 455.534 227.282 458.705 227.104C459.934 227.076 461.163 227.049 462.393 227.024C476.093 225.269 529.935 225.783 538.728 227.318C547.543 228.856 574.928 231.007 578.082 231.255C582.992 232.083 582.903 232.103 587.91 232.526C619.33 237.487 619.373 236.529 650.719 241.702C651.557 241.766 652.397 241.831 653.235 241.895C664.312 242.729 665.694 245.844 673.775 238.202C692.024 220.946 743.406 181.023 759.888 170.402C761.843 169.144 761.62 168.857 783.829 153.935C826.424 125.315 870.538 102.909 876.287 98.8628C876.678 98.5872 876.961 99.3698 881.933 96.8658C887.515 94.0566 887.004 93.2396 901.488 86.7341C902.812 86.1398 902.673 85.8999 917.774 78.7435C923.439 76.0598 957.916 59.7229 990.05 48.4788C990.467 48.3336 990.317 48.1232 995.098 46.2628C1000.1 44.3149 1006.78 42.9294 1009.97 40.3836C1011.13 40.2015 1012.29 40.0181 1013.46 39.836C1034.09 30.7798 1045.65 30.7355 1054.51 24.9264C1056.28 25.2021 1056.23 25.0667 1057.93 24.3124C1060.54 23.9753 1060.47 24.0577 1062.86 23.05C1068.6 21.192 1068.7 21.5931 1070.5 20.0452C1072.32 20.2974 1072.26 20.215 1073.97 19.5825C1081.21 18.4074 1081.01 17.8119 1096.14 13.456L1099.72 12.9478C1100.56 12.6574 1101.41 12.3658 1102.26 12.0754C1108.52 11.3642 1108.28 10.6555 1114.49 9.30317C1115.75 9.06692 1117.01 8.82944 1118.28 8.59319C1123.67 7.81799 1138.91 3.43137 1174.84 0.748948C1177.79 0.528694 1194.41 -0.712849 1211.78 0.579143Z' fill='%23777777' fill-opacity='0.2'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-size: 1200px;
    background-position: right -200px bottom -90px;
    padding: 50px 30px 80px 30px;
}

#footer .block_newsletter {
    background: none;
    padding: 0;
    margin: 0;
    flex: 1;
    width: auto;
    max-width: none;
}

#footer .block_newsletter .alert {
    position: absolute;
    padding: 0;
    background: #BE3C33;
    padding: 2px 6px;
    border: none;
    bottom: -34px;
    border-radius: 4px;
    margin: 0;
    color: white;
    font: var(--text);
}

#footer .block_newsletter .alert.alert-success {
    background: #91B68E;
}

#footer .block_newsletter .alert-danger~.row input[type="email"] {
    color: var(--red);
}

#footer .block_newsletter>.row {
    display: flex;
    align-items: center;
}

#footer #block-newsletter-label,
#footer .avis-verif .text {
    color: var(--white);
    font: var(--text);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: fit-content;
}

#footer #block-newsletter-label strong,
#footer .avis-verif .text strong {
    font: var(--text-bold);
}

#footer .block-social {
    padding: 0;
    margin: 0;
    width: fit-content;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--white);
    width: fit-content;
}

#footer .footer-container .container>div>.row {
    display: flex;
    align-items: center;
}

#footer .block_newsletter>.row>div {
    flex: 1;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

#footer .block_newsletter form .row>:first-child {
    padding: 0;
    margin: 0;
}

#footer .block_newsletter form input[type="email"] {
    background-color: var(--white);
    border-radius: 30px;
    border: none;
    color: var(--dark-blue);
    padding: 11px 25px 11px 25px;
    font: var(--text);
}

#footer .block_newsletter form input[type="email"]::placeholder {
    color: var(--grey-3);
    opacity: 1;
}

#footer .block_newsletter form button[type=submit] {
    right: 6px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0;
    height: 33px;
    cursor: pointer;
}

#footer .avis-verif {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 35%;
}

#footer .links {
    width: calc(100% - 35% - 70px);
    padding: 0;
    margin: 0;
}

#footer .links .row {
    display: flex;
    gap: 20px;
}

#footer .links .row .wrapper {
    width: calc((100% - 20px * 2) / 3);
    padding: 0;
}

#footer .footer-container .container>div:last-child>.row {
    align-items: start;
    gap: 70px;
}

#footer .footer-container .container>div:last-child>.row::after {
    display: none;
}

#footer .links .row::after {
    display: none;
}

#footer hr {
    margin-top: 40px;
    margin-bottom: 30px;
    background-color: var(--white);
}

#footer .links .h3 {
    font: var(--text-bold);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: initial;
}

#footer .links a {
    font: var(--text);
    color: var(--white);
}

#footer .links li,
#footer .links ul {
    margin: 0;
}

#footer .links li:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 1250px) {

    #footer #block-newsletter-label,
    #footer .avis-verif {
        max-width: 350px;
        width: auto;
    }

    #footer .footer-container .container>div>.row:last-child {
        gap: 40px;
    }

    #footer .links {
        width: calc(100% - 350px - 40px);
    }

    #footer .blockreassurance {
        padding: 30px;
    }

    #footer .blockreassurance img,
    #footer .blockreassurance svg {
        max-width: 55px;
        max-height: 50px;
        height: auto;
    }

    .blockreassurance .block-icon,
    .blockreassurance .block-icon img,
    .blockreassurance .block-icon svg {
        height: 50px;
    }
}

@media (max-width:1024px) {
    #footer .footer-container .container>div>.row {
        flex-direction: column;
        gap: 20px;
    }

    #footer .block_newsletter>.row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #footer .block_newsletter {
        width: 100%;
    }

    #footer #block-newsletter-label,
    #footer .avis-verif {
        max-width: none;
    }

    #footer .block_newsletter>.row>div {
        padding-left: 0;
        width: 100%;
    }

    #footer .block_newsletter>.row::after,
    #footer .footer-container .container>div>.row::after {
        display: none;
    }

    #footer .block-social {
        padding: 0;
        margin: 0;
        border: none;
    }

    #footer .footer-container {
        padding: 20px 25px 50px 25px;
        background-size: 1020px;
    }

    #footer .footer-container .container>div>.row:last-child {
        flex-direction: column-reverse;
    }

    #footer .links .row {
        flex-direction: column;
    }

    #footer .links {
        width: 100%;
    }

    #footer hr {
        margin-top: 30px;
    }

    #footer .links .title {
        cursor: pointer;
        border-bottom: none;
        padding: 0;
        padding-bottom: 20px;
    }

    #footer .links .row .wrapper {
        width: 100%;
    }

    #footer .links .navbar-toggler {
        display: inline-block;
        padding: 0;
        width: auto;
        height: auto;
        margin-top: 9px;
        border: none;
        background: none;
        font-size: 0;
    }

    #footer .links .title.hidden-md-up {
        display: block !important;
    }

    #footer .links .wrapper>.h3 {
        display: none;
    }

    #footer .links .collapse,
    #footer .links .title .collapse-icons .remove,
    #footer .links .title[aria-expanded=true] .collapse-icons .add {
        display: none;
    }

    #footer .links .collapse.in,
    #footer .links .title[aria-expanded=true] .collapse-icons .remove {
        display: block;
    }

    #footer .links .row .wrapper {
        border-bottom: 1px solid var(--white);
    }

    #footer .links .collapse,
    #footer .links .row .wrapper * {
        background: none;
    }

    #footer .links li:not(:last-child) {
        margin-bottom: 6px;
    }

    #footer .links li:last-child {
        margin-bottom: 20px;
    }

    #footer .footer-container .links ul>li {
        border: none;
        padding-block: 0;
        padding-inline: 6px;
    }

    #footer .blockreassurance .row>.col-md-3 {
        display: none;
    }

    #footer .blockreassurance .carousel-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        touch-action: pan-y pinch-zoom;
        max-width: 500px;
        margin-inline: auto;
    }

    #footer .blockreassurance .carousel-wrapper {
        display: flex;
        transition: transform 0.3s ease-out;
        cursor: grab;
    }

    #footer .blockreassurance {
        border: none;
        padding-top: 0;
        padding-bottom: 40px;
    }

    #product #footer .blockreassurance {
        border-top: 1px solid var(--grey-2);
        padding-top: 30px;
    }

    #footer .blockreassurance .carousel-wrapper.dragging {
        transition: none;
        cursor: grabbing;
    }

    #footer .blockreassurance .carousel-item {
        min-width: 100%;
        text-align: left;
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    #footer .blockreassurance .carousel-item p {
        margin-bottom: 0;
    }

    #footer .blockreassurance .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 5px;
        align-items: center;
    }

    #footer .blockreassurance .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--grey-2);
        cursor: pointer;
        transition: background 0.3s;
    }

    #footer .blockreassurance .indicator.active {
        background: var(--dark-blue);
    }

    #footer .blockreassurance img,
    #footer .blockreassurance svg {
        max-width: 80px;
        max-height: 65px;
        height: auto;
    }

    #footer .blockreassurance .block-icon,
    #footer .blockreassurance .block-icon img,
    #footer .blockreassurance .block-icon svg {
        height: 65px;
        width: auto;
        margin: 0;
    }

    #footer {
        padding-top: 30px;
    }

    #footer .blockreassurance .block-title {
        padding-top: 0;
        max-width: none;
        height: auto;
    }

    #footer .block_newsletter .alert {
        font-size: 12px;
        line-height: 12px;
        bottom: -15px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #footer .block_newsletter {
        border: none;
    }

    #footer .block-social ul li {
        width: 40px;
        height: 40px;
    }

    .block_newsletter form input.btn {
        display: none;
    }

    #footer .footer-container {
        padding: 20px 15px 50px 15px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='795' height='427' viewBox='0 0 795 427' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3322_1461)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M960.958 0.575792C961.795 0.627172 962.631 0.678553 963.468 0.731157C987.707 3.26838 987.433 4.18589 997.694 6.85891C1002.36 8.07614 1005.78 7.49383 1003 9.90382C1001.62 11.1003 1001.05 9.80963 981.604 17.8739C979.857 18.5982 966.514 24.1301 959.569 26.43C958.427 27.0013 957.285 27.5726 956.143 28.1439C953.871 28.7728 899.115 51.8818 867.146 67.6422C802.958 99.2853 782.057 119.406 774.456 122.734C773.436 123.18 773.649 123.36 763.264 130.998C750.652 140.275 672.018 198.118 616.125 260.07C586.059 293.396 585.834 293.08 575.323 305.981C562.064 322.256 562.027 322.248 561.261 323.903C560.041 325.131 560.1 325.074 559.144 326.516C555.65 330.831 555.601 330.897 555.309 331.29C553.957 333.046 553.618 332.701 552.761 334.776C552.74 334.798 541.123 349.235 524.397 373.852C506.149 400.711 506.955 401.219 505.365 403.549C504.907 404.329 504.449 405.108 503.991 405.886C501.991 409.185 486.782 434.268 480.246 447.861L480.006 449.004C478.424 449.871 476.692 450.567 476.397 450.686C475.707 450.08 475.992 449.8 475.07 449.52C473.934 449.176 474.405 448.285 461.518 443.466C440.225 435.506 440.256 435.498 439.396 435.22C437.686 434.542 437.719 434.535 435.953 434.767C430.866 431.203 430.484 432.325 424.739 430.323C422.305 429.629 422.416 429.576 419.853 429.127C419.36 429.057 418.832 428.984 413.84 427.491C407.725 425.664 407.865 425.421 401.515 424.253C399.884 423.865 398.254 423.478 396.624 423.09C376.218 417.692 331.79 412.672 307.477 415.11C305.913 415.266 305.966 415.374 287.958 417.389C286.716 417.581 285.473 417.774 284.231 417.966C269.744 419.935 269.889 420.376 261.008 423.029L257.487 423.586C256.687 423.809 250.233 425.604 247.662 426.953C241.758 430.052 241.346 428.717 235.352 431.632C234.179 432.143 233.006 432.653 231.832 433.163C229.799 433.789 212.572 442.262 205.345 451.676C201.306 456.937 201.305 451.659 201.462 451.388C202.466 449.658 202.83 449.962 218.246 432.866C219.367 431.56 220.346 430.473 220.531 430.267C224.226 426.355 249.498 395.076 263.899 383.207C264.117 383.028 293.12 358.335 295.301 357.138C302.504 353.183 292.156 350.987 291.587 350.866C290.165 350.564 290.522 349.793 274.477 344.769C273.241 344.403 272.006 344.037 270.771 343.67C263.729 340.087 203.081 323.091 156.002 321.235C116.729 319.687 116.747 318.834 71.7469 322.038C67.0209 322.374 40.5471 324.259 13.0863 330.218C12.3766 330.285 12.4988 330.354 11.9027 330.409C11.7072 330.427 11.7219 330.422 9.45722 330.592C8.7744 330.775 8.88068 330.634 0.873673 332.699C-0.763151 333.055 -2.40119 333.41 -4.03924 333.765C-16.9592 334.381 -93.1448 357.586 -111.439 365.869C-118.931 369.26 -119.659 367.753 -124.001 371.302C-124.181 371.449 -132.575 374.421 -133.323 374.687C-133.729 374.83 -169.716 390.771 -171.203 391.662C-172.462 392.416 -198.095 405.293 -200.437 406.469C-231.066 421.855 -242.479 433.601 -241.985 428.037C-241.927 427.384 -227.755 416.393 -217.949 407.038C-210.227 399.671 -203.491 394.444 -202.174 393.422C-200.037 391.763 -185.873 379.504 -184.464 378.285C-181.977 376.132 -176.293 372.212 -175.458 371.271C-171.948 367.321 -139.649 345.033 -138.177 343.882C-130.49 337.871 -77.6536 307.987 -71.2077 305.69C-67.0826 304.218 -68.0098 302.22 -20.9364 283.974C-18.53 283.315 -18.6925 283.245 -16.3814 282.104C-15.188 281.786 -15.3749 281.414 -1.82587 276.962C0.786937 276.103 0.44613 275.468 3.18109 274.78C9.74549 273.124 8.95885 270.668 83.9156 249.402C84.4885 249.242 88.7663 248.051 91.1849 247.841C99.1662 245.537 99.0905 245.708 107.128 243.299L110.706 242.893C111.55 242.636 112.393 242.378 113.237 242.12C113.741 242.027 157.844 232.054 170.603 230.693L174.232 230.485C191.489 227.027 210.217 225.967 213.365 225.789C214.586 225.762 215.806 225.736 217.026 225.71C230.626 223.965 284.077 224.477 292.806 226.002C301.557 227.531 328.742 229.67 331.874 229.917C336.748 230.74 336.66 230.76 341.63 231.181C372.821 236.113 372.864 235.16 403.982 240.303C404.814 240.367 405.647 240.432 406.479 240.495C417.476 241.325 418.848 244.421 426.869 236.824C444.986 219.668 495.993 179.975 512.356 169.416C514.297 168.165 514.076 167.88 536.123 153.044C578.408 124.59 624.283 100.954 627.129 99.5761C629.975 98.1983 630.784 97.681 633.512 96.3053C636.241 94.9295 645.078 89.7616 652.925 86.2322C660.771 82.7028 658.785 83.1793 669.093 78.2878C679.4 73.3962 738.585 48.9892 740.842 48.1983C743.099 47.4074 744.871 46.4859 747.412 45.4953C749.954 44.5048 754.178 43.3152 756.676 42.3641C759.175 41.413 759.984 41.3427 764.078 39.6055C768.172 37.8683 803.031 25.7626 804.456 25.3618C805.882 24.9611 806.564 24.6813 808.723 24.1328C810.882 23.5843 813.264 22.9455 815.123 22.2892C813.149 22.9881 816.982 21.6329 815.123 22.2892C817.096 21.5903 819.755 20.7236 824.155 19.4692C828.555 18.2148 843.714 14.0832 846.159 13.3781C848.604 12.673 848.189 12.7641 849.957 12.4861C851.725 12.2081 850.659 12.4591 854.194 11.9595C857.73 11.4598 860.665 10.039 864.376 9.24933C868.086 8.45962 864.828 9.04633 868.134 8.54346C871.441 8.04059 888.619 3.41151 924.288 0.744614C927.214 0.525634 943.715 -0.708724 960.958 0.575792Z' fill='%23345F66'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3322_1461'%3e%3crect width='795' height='427' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
        background-size: 768px auto;
        background-position: center bottom;
    }

    #footer .blockreassurance {
        padding-inline: 15px;
    }
}

/*--END-- FOOTER */

.page-home {
    display: flex;
    flex-direction: column;
}

/*--START- SLIDER HOME */
#carousel {
    position: relative;
    overflow: hidden;
    /* indispensable pour masquer les slides hors écran */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 23%;
    padding-bottom: 55px;
}

/* Le track contient le wrapper */
#carousel .slider-track {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
}

#carousel .slide {
    margin-right: 15px;
}

#carousel .slide:last-child {
    margin-right: 0;
}

/* Le wrapper translate horizontalement */
#carousel .slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

/* Chaque slide occupe 100% de la largeur visible */
#carousel .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

/* IMAGE */
#carousel .slide figure {
    margin: 0;
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

#carousel .slide figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#carousel .slide figure::after,
.expert-advice .slider-advice .advice.content::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 50%) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* CAPTION */
#carousel .carousel-caption {
    position: absolute;
    left: 30px;
    bottom: 40px;
    color: white;
    z-index: 10;
    max-width: 600px;
    text-shadow: none;
    text-align: left;
    right: 0;
    padding-bottom: 0;
}

/* TITRES */
#carousel .caption-subtitle p {
    font: var(--font-h3);
    color: var(--white);
    margin-bottom: 10px;
    text-align: left;
}

#carousel .caption-title {
    font: var(--font-h1-small);
    margin-bottom: 15px;
    text-align: left;
}

/* CTA */
#carousel .btn-slider {
    display: inline-block;
    padding: 15px 54px;
    background-color: white;
    color: var(--dark-blue);
    text-transform: uppercase;
    font: var(--button);
    border-radius: 30px;
    text-align: left;
}

/* FLÈCHES */
#carousel .carousel-control-prev,
#carousel .carousel-control-next {
    position: absolute;
    top: calc(50% - (55px /2));
    z-index: 20;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
}

#carousel .carousel-control-prev {
    left: 140px;
}

#carousel .carousel-control-next {
    right: 140px;
}

#carousel .carousel-control-prev path,
#carousel .carousel-control-next path,
#carousel .carousel-control-prev rect,
#carousel .carousel-control-next rect {
    transition: .3s;
}

#carousel .carousel-control-prev svg:hover rect,
#carousel .carousel-control-next svg:hover rect {
    fill: white;
}

#carousel .carousel-control-prev svg:hover path,
#carousel .carousel-control-next svg:hover path {
    fill: var(--dark-blue);
}

/* INDICATEURS */
#carousel .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    list-style: none;
    transform: translateX(-50%);
    align-items: center;
    width: auto;
}

#carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    background-color: var(--grey-2);
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

#carousel .carousel-indicators li.active {
    background-color: var(--dark-blue);
    width: 64px;
}

@media (max-width: 1024px) {
    #carousel {
        padding: 0;
        padding-bottom: 60px;
    }

    #carousel .carousel-control-next,
    #carousel .carousel-control-prev {
        display: none;
    }

    #carousel .slide figure {
        border-radius: 0;
        height: 557px;
    }

    #carousel .btn-slider {
        padding: 15px 37px;
    }

    #carousel .slider-track {
        height: 557px;
    }

    #carousel .carousel-indicators {
        bottom: 30px;
    }

    #carousel .carousel-caption {
        left: 25px;
        bottom: 30px;
    }

    #carousel .slide {
        margin: 0;
    }
}

@media (max-width: 768px) {
    #carousel {
        padding-bottom: 60px;
    }

    #carousel .slide figure {
        height: 440px;
    }

    #carousel .btn-slider {
        padding: 12.5px 37px;
    }

    #carousel .slider-track {
        height: 440px;
    }

    #carousel .carousel-caption {
        left: 20px;
        width: calc(100% - 40px);
    }
}

/*--END-- SLIDER HOME */





/*--START-- CURRENT OFFER HOME */

.current-offer {
    display: flex;
    padding: 30px 25px;
    flex-direction: column;
    gap: 25px;
}

.current-offer .top,
.category-list .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-offer .top .title,
.category-list .top .title,
.support-projects>.top .title {
    font: var(--font-h2);
    color: var(--dark-blue);
    margin: 0;
}

.link-anim,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image .link-anim {
    display: flex;
    gap: 5px;
    align-items: center;
}

.link-anim p,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image span:not(.svg) {
    font: var(--text-bold);
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0;
    position: relative;
}

#header .menu-produit .mm_columns_contents_ul .mm_block_type_image span:not(.svg) {
    font: var(--text);
    text-transform: none;
}

.link-anim .svg,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image .link-anim .svg {
    display: flex;
    align-items: center;
}

.link-anim .svg>:first-child,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image .link-anim .svg>:first-child {
    height: 4px;
    width: 14px;
    margin-top: -1px;
    transition: .2s;
}

.link-anim:hover .svg>:first-child,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image:hover .link-anim .svg>:first-child {
    height: 4px;
    width: 20px;
}

.link-anim .svg>:last-child,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image .link-anim .svg>:last-child {
    margin-left: -4.5px;
}

.link-anim p svg,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image span:not(.svg) svg,
#header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content .link span:not(.svg) svg {
    bottom: -4px;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    opacity: 0;
}

.link-anim:hover p svg,
#header .menu-produit .mm_columns_contents_ul .mm_block_type_image:hover span:not(.svg) svg,
#header.is-mobile .submenu .mm_columns_li:last-child .ets_mm_block_content:hover .link span:not(.svg) svg {
    opacity: 1;
}

#header.is-mobile .mm_block_type_image .ets_mm_block_content p {
    position: relative;
}

.current-offer .cms-products {
    display: flex;
    gap: 25px;
    overflow: auto;
    overflow: hidden;
    scroll-behavior: smooth;
}

.current-offer .slider-wrapper {
    position: relative;
}

.current-offer .cms-products article,
.current-offer .cms-products .cms-element {
    width: 320px;
    min-width: 320px;
}

.current-offer .cms-products .cms-element {
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.current-offer .cms-products .cms-element .link {
    z-index: 2;
    text-align: center;
    width: fit-content;
}

.current-offer .cms-element .title {
    font: var(--font-h3);
    color: var(--white);
    z-index: 2;
    margin-bottom: 0;
}

.current-offer .cms-products .cms-element::before {
    display: block;
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 50%) 100%);
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.link-anim,
.link-anim:hover {
    z-index: 2;
    width: fit-content;
}

@media (max-width: 1250px) {
    #header .menu-produit .mm_columns_contents_ul .mm_block_type_image span:not(.svg) {
        font: var(--text-small-bold);
    }

    #header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child,
    #header .menu-produit .mm_columns_contents_ul .mm_columns_li:not(:first-child) {
        padding: 20px;
    }

    #header .menu-produit .mm_columns_contents_ul>.mm_columns_li:first-child {
        min-width: 250px;
        max-width: 275px;
    }

    #header .menu-produit .container-tabs {
        max-width: 240px;
        padding: 20px 15px;
    }

    #header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item,
    #header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .mm_tab_li_content {
        padding-inline: 15px;
    }

    #header .ets_mm_megamenu .menu-pieces .mm_columns_ul .container-flat .mm_flat_item:has(.mm_bubble_text) .ets_mm_url .mm_bubble_text {
        white-space: initial;
    }

    #header .logo {
        width: 150px;
    }

}

@media (max-width: 1024px) {
    .current-offer .cms-products .cms-element {
        display: none;
    }

    .current-offer .cms-products .cms-element:nth-child(2) .product-miniature {
        margin-left: 25px;
    }

    .current-offer .top,
    .category-list .top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-inline: 25px;
    }

    .current-offer .cms-products {
        gap: 15px;
        overflow: auto;
        width: 100%;
    }

    .current-offer .cms-products::-webkit-scrollbar {
        display: none;
    }

    .current-offer {
        padding-inline: 0;
    }

    .current-offer .cms-products> :nth-child(2) .product-miniature {
        margin-left: 25px;
    }

    .current-offer .cms-products> :last-child .product-miniature {
        margin-right: 25px;
    }

    .current-offer .cms-products article {
        min-width: 320px;
    }

    #header .user-info a .account,
    #header .xyblockcart-container .shopping-cart a svg {
        display: none;
    }

    #header .logo {
        width: 118px;
    }
}

@media(max-width: 768px) {
    .current-offer .cms-products article {
        min-width: 280px;
        width: 280px;
    }

    .current-offer .cms-products> :nth-child(2) .product-miniature {
        margin-left: 15px;
    }

    .current-offer .cms-products> :last-child .product-miniature {
        margin-right: 15px;
    }
}

/*--END-- CURRENT OFFER HOME */







/*--START-- CHOICE IN 5 MINUTES */
.product-selection {
    margin: 60px 30px;
    padding: 40px 11.3%;
    background: var(--grey);
    border-radius: 30px;
    display: flex;
    gap: 60px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='668' height='360' viewBox='0 0 668 360' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M667.463 166.88C663.034 173.724 658.748 180.617 654.674 187.505C631.675 226.389 631.39 226.122 623.601 240.948C613.775 259.65 613.737 259.651 613.312 261.436C612.354 262.891 612.4 262.823 611.746 264.437C609.162 269.39 609.126 269.466 608.917 269.911C607.934 271.914 607.531 271.642 607.101 273.859C607.084 273.885 598.511 290.447 586.936 318.069C574.307 348.204 575.204 348.544 574.102 351.16C573.806 352.02 573.509 352.88 573.213 353.739C572.923 354.547 572.211 356.534 571.234 359.298H347.746C352.515 353.342 356.68 348.231 357.438 347.589C363.755 342.244 353.101 342.157 352.515 342.152C351.051 342.14 351.247 341.308 334.403 339.577C333.11 339.465 331.817 339.352 330.524 339.238C322.852 337.12 259.58 332.545 212.735 340.167C173.658 346.526 173.505 345.682 129.727 357.874C128.824 358.125 127.105 358.605 124.729 359.298H0C6.28603 354.865 15.8107 348.446 30.6064 338.964C32.8493 337.831 32.6751 337.795 34.7275 336.206C35.8418 335.653 35.5833 335.324 48.0654 328.216C50.472 326.845 50.0088 326.287 52.5703 325.06C58.718 322.11 57.4501 319.846 127.178 283.838C127.711 283.565 131.696 281.533 134.041 280.841C141.457 276.967 141.417 277.15 148.868 273.162L152.318 272.044C153.1 271.621 153.881 271.197 154.662 270.773C155.169 270.568 196.681 251.895 208.998 247.993L212.539 247.06C228.881 240.187 247.156 235.382 250.228 234.575C251.427 234.304 252.626 234.033 253.825 233.763C266.901 229.313 319.766 219.086 328.688 218.837C337.633 218.587 364.895 215.237 368.037 214.852C373.013 214.685 372.931 214.722 377.921 214.139C409.699 212.738 409.551 211.791 441.299 210.612C442.133 210.508 442.969 210.404 443.803 210.3C454.824 208.91 456.799 211.686 463.194 202.588C477.638 182.041 520.033 132.677 534.067 118.985C535.732 117.362 535.457 117.125 554.246 98.0771C590.283 61.5425 629.046 30.793 633.873 25.6826C634.202 25.3349 634.636 26.0448 639.009 22.6006C643.918 18.7356 643.255 18.0367 656.151 8.77539C657.232 7.99936 657.17 7.76284 667.463 0V166.88Z' fill='%23F1F3F3'/%3e%3c/svg%3e ");
    background-position: bottom right;
    background-size: auto;
    background-repeat: no-repeat;
    justify-content: center;
}

.product-selection .left {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='426' height='430' viewBox='0 0 426 430' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 213C0 95.3633 95.3633 0 213 0C330.637 0 426 95.3633 426 213V430H0V213Z' fill='url(%23paint0_linear_515_1053)' fill-opacity='0.8'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_515_1053' x1='221.43' y1='43.5595' x2='214.698' y2='418.783' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23001E30' stop-opacity='0.35'/%3e%3cstop offset='1' stop-color='%23074F5A' stop-opacity='0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e ");
    background-position: bottom 25% center;
    background-size: 100%;
    width: calc(45% - 30px);
    background-repeat: no-repeat;
    max-width: 430px;
    position: relative;
}

.product-selection .right {
    width: calc(55% - 30px);
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.product-selection .slide-img img:not(.visible) {
    opacity: 0;
}

.product-selection .slide-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    max-width: 500px;
    height: auto;
}

.product-selection .slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 480px;
}

.product-selection .container-title {
    display: flex;
    gap: 14px;
    height: 49px;
    overflow: hidden;
}

.product-selection .container-title h2 {
    font: var(--font-h1);
    color: var(--dark-blue);
    margin: 0;
}

.product-selection .container-title .words {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font: var(--font-h1);
    color: var(--green);
}

.product-selection .container-title .words span {
    font: var(--font-h1);
    color: var(--green);
    height: 49px;
}

.product-selection .description {
    font: var(--text);
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.product-selection .scribe-text {
    position: absolute;
    top: 30px;
    right: 34px;
    transform: translateX(100%) rotate(-15deg);
}

.product-selection .scribe-text svg {
    margin-top: -11px;
    transform: rotate(15deg);
    margin-left: 30px;
}

.product-selection .scribe-text p,
.product-selection .scribe-text span {
    max-width: 150px;
    font: var(--quote-big);
    color: var(--dark-blue);
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.8px;
}

.product-selection .scribe-text span {
    position: relative;
}

.product-selection .scribe-text span:after {
    display: block;
    position: absolute;
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='55' height='25' viewBox='0 0 55 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.0092 24.1579C15.2888 24.3246 14.3795 24.2516 14.9926 24.4906C14.869 24.515 14.7434 24.5401 14.6197 24.5648C14.583 24.4668 14.5454 24.3691 14.5086 24.2711C14.6741 24.233 14.8421 24.195 15.0092 24.1574C15.0092 24.1576 15.0092 24.1577 15.0092 24.1579ZM15.1797 22.8987C15.0372 23.1903 14.5494 23.2905 15.094 23.5266C15.1318 23.427 15.1703 23.3274 15.2078 23.2278C15.3962 23.2947 15.5857 23.3617 15.774 23.4288C15.8392 23.3886 15.9036 23.3484 15.9685 23.3088C16.0604 23.4747 16.1519 23.6411 16.2436 23.8075C16.1675 23.7858 16.09 23.7638 16.014 23.7423C15.7237 23.8928 15.4613 23.9423 15.0611 23.9874C15.0984 24.0258 15.1357 24.0639 15.1731 24.1023C14.9653 24.0439 14.7587 23.9857 14.5523 23.928C14.7248 23.8519 14.9184 23.7675 15.0792 23.6972C14.8047 23.4439 14.3484 23.6159 14.1124 23.6847C13.7888 23.7786 13.8568 23.6481 13.6166 23.7152C13.5785 23.7257 13.5799 23.825 13.5039 23.8312C13.3989 23.8397 13.2658 23.8455 13.1384 23.8443C12.7958 23.8413 12.4781 23.7888 12.789 23.5996C12.9024 23.5975 13.0127 23.5888 13.1214 23.5762C13.6188 23.5184 14.071 23.3769 14.5881 23.406C14.4088 23.1475 14.7336 23.0388 15.1797 22.8987ZM11.9319 18.216C11.8307 18.4287 11.4558 18.5965 11.1794 18.6631C11.1792 18.6632 11.1789 18.6634 11.1786 18.6636C11.1192 18.6773 10.9101 18.6044 11.0804 18.5062C11.3544 18.3495 11.6411 18.4931 11.6819 18.2521C11.7632 18.2427 11.8465 18.228 11.9319 18.216ZM12.5209 17.845C12.7268 17.8009 12.7511 18.0241 12.5114 18.1019C12.5115 18.102 12.5116 18.1021 12.5117 18.1023C12.4126 18.1343 12.4995 17.8937 12.2728 18.2206C12.1456 18.1477 12.0186 18.0883 11.8906 18.0211C11.968 17.9719 12.0388 17.9255 12.1167 17.877C12.171 18.0894 12.3159 17.8894 12.5209 17.845ZM12.4721 23.7365C12.4549 23.9271 12.5797 23.9176 12.8045 24.0343C12.6007 24.0414 12.396 24.0485 12.1931 24.0556C12.2857 23.9492 12.378 23.8431 12.4721 23.7365ZM17.2337 23.5228C17.234 23.5227 17.2343 23.5227 17.2346 23.5227C17.3005 23.4904 17.3656 23.4581 17.4303 23.4263C17.4725 23.4922 17.5143 23.558 17.5566 23.6239C17.7895 23.5521 18.024 23.4805 18.257 23.4089C18.2354 23.6158 17.8118 23.5967 17.5847 23.7492C17.2372 23.6997 17.0656 23.5867 17.0366 23.413C17.102 23.4494 17.1673 23.4863 17.2337 23.5228ZM51.7944 1.72683C51.8507 1.64636 51.8923 1.57103 51.9573 1.48742C51.8389 1.50169 51.7514 1.5115 51.6376 1.51968C51.4421 1.85201 51.3724 1.64362 51.018 1.78475C49.9838 2.19954 50.3968 2.46255 49.2535 2.26821C50.0368 2.01912 49.6387 1.87859 50.0396 1.51998C50.1878 1.6327 49.8449 2.12616 50.181 2.08468C50.6516 1.74371 51.1173 1.41731 51.6682 1.10986C51.6428 1.0903 51.6174 1.07067 51.5917 1.0512C51.5066 1.09928 51.4179 1.14868 51.3242 1.19974C51.4074 1.094 51.4837 0.991348 51.5582 0.88776C51.4877 1.08608 51.7749 0.887649 51.799 1.07834C51.8003 1.16661 51.7051 1.32334 51.6446 1.42943C51.8708 1.39562 52.1159 1.35117 52.3589 1.30916C52.2545 1.41723 52.1757 1.51597 52.0785 1.62113C51.9787 1.65871 51.8878 1.69241 51.7963 1.72691C51.7957 1.72689 51.795 1.72686 51.7944 1.72683ZM6.3548 16.7148C6.58611 16.4457 7.10067 16.2636 7.43562 16.3921C7.0751 16.4998 6.71329 16.608 6.3548 16.7148ZM17.0085 23.2699C17.0434 23.3017 17.0773 23.3331 17.1122 23.3649C16.9661 23.4317 16.8185 23.4984 16.6726 23.5655C16.6403 23.4712 16.6074 23.3768 16.5742 23.2829C16.718 23.2783 16.8645 23.2742 17.0085 23.2699ZM8.60748 20.8576C8.51778 20.9468 8.50105 20.9569 8.37859 21.0586C8.37878 21.0585 8.37896 21.0585 8.37915 21.0584C8.35087 21.0833 8.23212 21.1796 8.10502 21.2966C7.98382 21.4025 7.85032 21.5548 7.84565 21.4939C8.07605 21.1433 8.28804 20.9554 8.49618 20.7623C8.53438 20.793 8.56775 20.8276 8.60748 20.8576ZM10.0608 23.767C10.0612 23.7672 10.0615 23.7673 10.0618 23.7675C10.1535 23.7789 10.2329 23.801 10.3241 23.8037C10.0008 23.9229 9.9461 23.7159 9.6349 23.7622C9.31756 23.8026 9.06992 23.9009 8.77371 23.5278C8.91789 23.5248 9.05669 23.4881 9.17207 23.4548C9.63496 23.6264 9.74731 23.5097 10.0811 23.4028C10.0745 23.5245 10.0679 23.6453 10.0608 23.767ZM46.9242 2.84545C46.9025 3.00288 46.7774 2.90116 46.7687 2.90254C46.7688 2.90233 46.7689 2.90213 46.769 2.90192C46.1867 3.25074 46.8251 2.79866 46.2244 2.99253C46.2969 2.92886 46.3757 2.86088 46.4505 2.79601C46.6093 2.81079 46.7737 2.83324 46.9242 2.84545ZM26.9029 10.885C26.8802 10.8503 26.8564 10.816 26.8337 10.7814C27.1796 10.6328 27.2029 10.4448 27.5477 10.4491C27.3343 10.5936 27.1167 10.7402 26.9031 10.8854C26.903 10.8853 26.9029 10.8851 26.9029 10.885ZM10.388 19.896C10.2199 20.0619 10.0556 20.2117 9.89269 20.3213C9.75068 20.4176 9.62094 20.4817 9.4353 20.5537C9.43494 20.5538 9.43458 20.5539 9.43422 20.5539C9.40958 20.5628 9.45457 20.422 9.41568 20.4241C9.35109 20.4883 9.29156 20.5584 9.23414 20.6224C9.18296 20.5752 9.13211 20.5278 9.08098 20.4811C9.28623 20.3455 9.49686 20.2148 9.71531 20.0839C9.66106 20.0731 9.60654 20.0631 9.55281 20.0522C9.58322 20.0256 9.61413 19.9989 9.64554 19.9719C9.76661 19.8656 9.90454 19.75 10.0316 19.6436C10.0388 19.7747 10.0385 19.9112 10.0441 20.0446C10.1637 19.9908 10.2728 19.9443 10.388 19.896ZM32.8198 8.76422C32.7414 8.74878 32.8251 8.63203 32.7155 8.63655C32.6059 8.64154 32.4643 8.79224 32.4558 8.65871C32.5765 8.58912 32.7028 8.51459 32.826 8.44337C32.3191 8.4099 31.9819 8.77799 31.8651 8.52223C32.2967 8.41717 32.6118 8.24705 32.9725 8.01124C33.0424 8.22377 32.7282 8.56533 33.0544 8.65528C32.9768 8.69104 32.8959 8.72974 32.8204 8.76341C32.8202 8.76368 32.82 8.76395 32.8198 8.76422ZM23.0078 20.2936C23.2657 20.3043 23.8533 20.1993 24.1816 20.3216C24.2622 20.3517 24.5385 20.7603 24.5384 20.8151C24.5349 20.9994 24.21 21.0321 24.5614 21.1439C24.4441 21.1479 24.3305 21.1575 24.2144 21.1636C24.2381 21.2868 24.2617 21.4097 24.2846 21.5326C24.4257 21.5107 24.5674 21.4886 24.7083 21.4663C24.7162 21.5071 24.7241 21.548 24.732 21.5888C24.223 21.6015 24.5271 21.7526 24.2665 21.9062C24.5114 21.9749 24.7581 22.0433 25.0024 22.1121C24.8621 22.1063 24.6971 22.1034 24.5735 22.0955C24.562 22.3057 24.8549 22.2488 24.9063 22.2865C25.1954 22.4996 23.7467 22.4226 23.6356 22.7308C23.8677 22.7592 24.1106 22.7866 24.3476 22.8146C24.2807 22.8539 24.2131 22.8931 24.1461 22.9324C23.6053 22.7344 23.0027 22.6741 22.3751 22.5584C22.3189 22.5685 22.2628 22.5788 22.2074 22.5884C22.2263 22.6828 22.2443 22.7767 22.2631 22.8711C22.1783 22.8844 22.0923 22.8976 22.0075 22.9109C22.2505 22.5926 21.9034 22.6055 21.479 22.426C21.699 22.3106 21.9765 22.3701 21.9522 22.1663C21.1902 22.3428 20.2864 22.1448 19.5465 22.3446C19.3626 22.394 19.3716 22.6573 18.9359 22.6466C18.9498 22.6172 18.9507 22.5649 18.959 22.5265C18.2114 22.6766 17.7583 22.7675 16.9729 22.6686C17.0215 22.7615 17.0694 22.8549 17.1181 22.9479C17.2825 22.8944 17.4455 22.8404 17.6092 22.7873C17.7278 22.9397 17.5629 23.0144 18.0574 22.9955C18.4617 22.9805 18.2187 22.9197 18.3273 22.8696C18.4745 22.8014 18.6089 22.9216 18.7676 22.8457C18.8897 22.7876 18.7512 22.6627 19.0762 22.6852C18.9508 22.8565 18.8243 23.0333 18.6986 23.2067C18.6184 23.1716 18.5389 23.1359 18.4589 23.1005C18.537 23.0532 18.614 23.0065 18.6924 22.9592C18.414 23.0486 18.1517 23.1332 17.8641 23.2265C17.9499 22.9816 17.6539 23.0826 17.4915 23.1172C17.2397 23.1711 17.4506 22.9969 17.2857 23.0307C17.1197 23.0651 16.9482 23.2576 16.6462 23.2299C16.8027 23.116 16.5801 23.0283 16.6184 22.9273C16.6566 22.8264 16.9743 22.7918 16.6641 22.6956C16.0795 22.8018 16.7328 23.1537 16.3387 23.2312C15.8662 23.3248 15.7263 22.7142 15.8622 22.5754C15.9692 22.4662 16.3556 22.4709 16.4645 22.3626C15.7656 22.2038 15.776 22.5748 15.6611 22.6523C15.2457 22.9353 15.4996 22.2187 15.0041 22.4973C15.0073 22.3654 15.0093 22.2468 15.0128 22.1202C14.9259 22.1485 14.8691 22.1832 14.7644 22.2075C15.0891 22.4482 14.8333 22.4498 14.7021 22.4568C14.4949 22.4682 14.8215 22.5768 14.7681 22.6119C14.6242 22.7056 14.3899 22.6786 14.5384 22.784C14.4717 22.7348 14.3997 22.6858 14.3306 22.6372C14.0927 22.7152 13.5582 23.2958 14.0901 23.1548C14.0508 23.3614 13.8719 23.2731 13.7348 23.25C13.5971 23.2269 13.6073 23.3565 13.4872 23.3397C13.0077 23.2727 13.3033 23.0319 13.3687 22.8533C13.1993 22.8963 13.1231 22.9309 13.0825 22.961C12.973 23.0418 13.1236 23.0895 12.4693 23.1913C12.3915 23.3387 12.8178 23.4624 12.4767 23.5671C12.3951 23.3251 12.1272 23.1662 11.6192 23.1156C11.5737 23.1752 11.5304 23.2352 11.4833 23.2948C11.1923 23.0829 11.3246 22.8407 10.8261 23.1462C11.0807 22.614 10.9007 22.9589 10.4421 22.7603C10.3511 22.7199 10.5563 22.607 10.4294 22.5555C10.3729 22.5323 10.2325 22.6167 10.0928 22.5537C10.0218 22.5231 9.7154 22.3204 9.50782 22.3959C9.65305 22.6608 9.19368 22.8365 9.55793 23.0758C9.2113 23.0313 8.87605 22.9721 8.74843 22.8835C8.6177 22.7835 8.77713 22.8576 9.18573 22.7577C9.03353 22.6564 8.86655 22.5143 8.86919 22.402C8.80079 22.4244 8.70927 22.3682 8.69855 22.2299C8.91442 22.2828 8.88298 22.348 9.12397 22.0069C9.03545 22.1614 8.97712 22.4023 9.0478 22.3632C9.08991 22.3637 9.13209 22.3402 9.17271 22.3413C9.1177 22.4913 9.11277 22.3096 9.23292 22.1551C9.33754 21.9967 9.485 21.8371 9.52278 21.7675C9.60898 21.6193 9.36468 21.8131 9.36514 21.7424C9.37573 21.1469 9.57196 21.4128 9.7517 21.1758C9.85996 21.036 9.50758 21.247 9.56731 21.1769C9.78132 20.9266 10.0298 20.9962 10.2722 20.8578C10.2872 20.8495 10.3022 20.8402 10.3173 20.8298C10.2897 20.8215 10.2621 20.8132 10.2346 20.8047C10.0937 20.7688 9.95471 20.731 9.8184 20.6928C9.88942 20.6433 9.96516 20.5907 10.044 20.5353C10.2373 20.3995 10.4481 20.2463 10.6111 20.1003C10.702 20.0199 10.5717 19.9879 10.5843 19.9716C10.6527 19.8847 10.939 19.6339 10.9792 19.608C11.241 19.439 11.3176 19.5526 11.582 19.3955C11.4869 19.4686 11.3955 19.5386 11.3051 19.6093C11.3801 19.8245 11.4553 20.0397 11.5328 20.254C11.7808 20.1143 12.0401 19.9704 12.2966 19.8314C12.0734 19.8819 11.859 19.9287 11.634 19.9835C11.8276 19.6488 12.0158 19.3212 12.208 18.9941C12.4126 18.9986 12.6286 18.997 12.829 19.0056C13.2183 18.7399 12.9196 18.3982 13.3066 18.6246C13.409 18.5261 13.5136 18.4267 13.6204 18.3269C13.6309 18.3854 13.6416 18.4439 13.6522 18.5024C13.7857 18.3851 13.9081 18.275 14.0383 18.1601C13.785 18.0774 13.5355 17.9811 13.2813 17.9068C13.5551 17.698 13.6374 17.8449 13.7027 17.8554C13.8707 17.8866 14.0273 17.6246 14.1697 17.6617C14.2201 17.6735 13.9856 17.9346 14.1483 17.9884C14.1838 17.9964 14.786 18.1924 14.9785 17.9602C14.9323 17.8888 14.8624 17.8088 14.8071 17.734C15.1111 17.5038 15.4885 17.8012 15.5068 17.933C15.6379 17.7604 15.8917 17.6119 15.8598 17.4745C15.9462 17.423 16.0328 17.3719 16.1206 17.3199C16.1858 17.6612 16.532 17.4027 16.4192 17.1405C16.2624 17.218 16.1026 17.297 15.9473 17.3744C15.8955 17.0058 15.3268 17.0757 16.454 16.8284C16.7246 16.8877 16.1157 16.9844 16.3303 17.0222C16.6258 16.9511 16.8461 16.7568 17.1553 16.734C17.54 16.707 17.2253 17.0463 17.8614 16.4802C16.0211 16.8938 17.9168 16.0605 18.6049 15.5287C19.0431 15.8604 19.7542 15.6667 20.5692 15.0873C20.4136 15.0112 20.1707 15.2148 19.9893 15.2565C19.8072 15.2986 19.9442 15.1363 19.7141 15.1817C19.4835 15.2273 19.024 15.3659 18.7743 15.3859C18.9126 15.225 19.6675 14.6281 19.2131 15.1123C19.691 15.02 19.9541 15.0432 20.4817 14.804C20.5393 14.5332 20.4702 14.4169 20.9708 14.1582C20.8065 14.5761 21.4743 14.4739 21.4865 14.8142C21.0962 14.9294 21.1611 14.5601 20.8899 14.5353C20.8634 14.5324 20.5618 14.7693 20.4817 14.804C20.9431 14.8733 21.1025 14.9059 21.0416 15.2969C21.2654 15.1523 21.4304 15.1147 21.3834 14.9664C21.4628 15.0011 21.5426 15.0357 21.6213 15.0708C21.6981 15.0304 21.7654 14.9899 21.8487 14.9497C21.6312 14.7993 21.9161 14.8164 22.0234 14.6458C22.1323 14.4743 21.8408 14.4145 22.2697 14.1993C22.1019 14.2218 21.9505 14.245 21.79 14.2675C22.0378 14.0776 22.2945 13.8837 22.5436 13.6949C22.289 13.6621 21.7678 13.6855 21.6978 13.5124C21.8564 13.5121 22.2444 13.1829 22.2884 13.1557C22.4656 13.0475 22.4162 13.2026 22.4315 13.1983C22.748 13.1066 22.9752 12.9515 23.1635 13.0578C23.347 12.8793 23.533 12.8401 23.7657 12.7229C23.894 12.6583 23.8122 12.5527 23.8989 12.5385C24.4705 12.4482 24.0634 12.8289 24.8958 12.0769C24.741 12.0495 24.5828 12.0216 24.426 11.9945C24.5208 11.9113 24.6168 11.8274 24.7108 11.7448C24.7908 11.7252 24.8704 11.706 24.9507 11.6863C25.0335 11.8656 25.1162 12.0453 25.199 12.2246C25.2836 12.1965 25.3687 12.1679 25.4536 12.1398C25.324 12.2223 25.1946 12.305 25.066 12.3875C25.0684 12.4248 25.0716 12.4617 25.074 12.499C25.3002 12.4513 25.5268 12.4044 25.7551 12.357C25.7298 12.293 25.7043 12.2286 25.679 12.1646C26.1832 12.0336 26.2146 12.0832 26.576 11.7067C26.9176 11.5505 27.07 11.1643 27.2174 10.9638C27.304 10.9664 27.3911 10.9694 27.4787 10.9717C27.5002 10.899 27.5228 10.8262 27.544 10.7537C27.6662 10.7853 27.7897 10.8164 27.9118 10.8477C27.8872 10.6609 27.8893 10.5977 27.5145 10.699C27.5398 10.4406 28.1986 10.2502 28.4815 10.2059C28.695 10.1726 28.5609 10.4381 28.594 10.4482C28.7048 10.483 28.9911 10.2816 29.0625 10.2638C29.3638 10.1877 29.5565 10.0919 29.8249 10.0185C29.8773 10.0044 30.0625 10.0523 30.0757 10.0505C30.1746 10.0291 30.4224 9.98317 30.4487 9.97349C31.7998 9.48074 30.186 9.62131 31.4361 9.13881C31.3725 9.0923 31.312 9.045 31.2489 8.99832C31.3405 8.95427 31.4322 8.9105 31.5235 8.86677C31.6636 8.86831 31.5617 9.02421 31.7628 8.84745C31.7805 8.93083 31.7982 9.01427 31.815 9.0976C31.8988 9.01256 31.9794 8.92943 32.066 8.84339C32.3443 9.03978 32.9656 8.84837 33.0557 9.18028C33.0861 9.29314 32.7113 9.58101 32.9821 9.60074C33.1724 9.54669 32.9961 9.47096 33.0671 9.43306C33.4936 9.20762 33.5974 9.30162 33.7334 9.26063C33.7614 9.25225 33.7907 9.23818 33.8245 9.21448C33.8268 9.12339 33.8304 9.03004 33.8333 8.93783C33.9252 8.92597 34.0173 8.91409 34.11 8.90202C34.1078 8.84242 34.1064 8.78243 34.1042 8.72282C34.025 8.75167 33.9359 8.78461 33.8631 8.81089C33.8789 8.56916 34.7587 8.10086 34.4795 8.41572C34.3657 8.5436 34.0934 8.62195 34.3556 8.79018C34.5862 8.6549 34.8499 8.50569 35.094 8.36606C35.1229 8.41373 35.1512 8.46172 35.1801 8.5094C35.5142 8.33446 35.1149 8.25971 35.0708 8.15029C35.1492 8.11469 35.2286 8.07917 35.307 8.04367C35.3608 8.07932 35.414 8.11799 35.4688 8.1515C35.4401 8.07155 35.4101 7.87059 35.6758 7.84194C35.8466 7.82421 35.6862 8.12015 35.9665 7.97475C35.8952 7.86078 35.7293 7.75367 36.0383 7.58304C36.1222 7.69825 36.2141 7.79777 36.2933 7.92251C36.6462 7.6375 36.9116 7.76118 37.3281 7.42956C37.5912 7.21992 37.8811 6.73288 38.2703 7.15424C38.4955 7.081 38.377 6.98455 38.4312 6.93118C38.6883 6.67848 39.011 6.82488 39.0735 6.81655C39.4739 6.76343 39.6064 6.6182 39.9496 6.61409C39.8978 6.52802 39.8552 6.44404 39.8075 6.35905C39.5855 6.60355 39.445 6.65034 39.0503 6.76954C39.1717 6.70099 39.2928 6.63219 39.4138 6.56405C39.3638 6.49729 39.3141 6.43046 39.265 6.3638C38.1921 7.12053 38.2882 6.54635 39.244 6.05802C39.383 6.16355 39.527 6.26675 39.666 6.37285C40.1615 5.94041 40.5036 6.0186 41.1713 5.81468C41.2494 5.79068 41.5029 5.60304 41.6237 5.55289C41.6214 5.55313 41.6192 5.55336 41.617 5.5536C41.6432 5.39366 41.5176 5.37211 41.4609 5.25947C41.5216 5.2197 41.5822 5.18005 41.6426 5.14043C41.8235 5.17438 41.8 5.26706 42.0799 5.13742C42.0076 5.06289 41.9357 4.98818 41.8633 4.91373C42.1747 4.79297 42.4275 4.80867 42.7052 4.65714C42.6683 4.70939 42.6319 4.76155 42.5948 4.81388C43.2694 4.66 42.9503 5.3765 43.3422 4.93323C43.3904 4.96739 43.4379 5.00231 43.4861 5.03652C43.2872 5.12322 43.093 5.20802 42.8987 5.29348C42.9188 5.35973 42.9385 5.42582 42.9595 5.49176C43.1652 5.39278 43.3712 5.29322 43.5806 5.19334C43.4397 5.29514 43.2961 5.39814 43.1587 5.49891C43.4129 5.43939 43.6816 5.37484 43.9388 5.31484C43.5873 5.17412 43.9176 5.0185 43.766 4.80633C44.2727 4.84207 44.7193 4.97137 45.3418 4.55528C45.465 4.47274 45.3332 4.33353 45.7869 4.39586C45.5964 4.1674 46.037 3.86727 45.8839 3.63984C45.753 3.70109 45.6143 3.7602 45.4927 3.82128C45.6703 3.85478 45.7816 4.08447 45.5854 4.23624C45.3357 4.42948 44.8479 4.42095 44.9661 4.67785C44.8489 4.70674 44.7408 4.73815 44.6263 4.76841C44.6477 4.68602 44.6679 4.60361 44.6884 4.5216C44.413 4.73962 44.1965 4.78164 43.9857 4.67165C44.3518 4.49305 44.7065 4.31976 45.073 4.14279C45.013 4.15203 44.9519 4.16154 44.8915 4.17134C45.1177 3.89672 44.7646 3.8442 45.2837 3.6135C45.3087 3.69205 45.3343 3.77042 45.3595 3.84936C45.4727 3.57345 46.0108 3.37909 45.7531 3.20322C45.941 3.21773 45.99 3.25232 46.0339 3.09116C46.5142 3.12175 46.8809 3.24841 46.8256 3.57729C46.9677 3.47628 47.1077 3.37603 47.2447 3.27702C47.129 3.23421 47.0125 3.1921 46.8952 3.14992C47.1634 3.0585 47.4512 2.96026 47.7213 2.8683C47.8288 3.07944 47.2174 3.12492 47.4489 3.26509C47.4957 3.2931 47.6133 3.15487 47.6598 3.16346C48.152 3.26002 47.4522 3.3137 47.638 3.45633C48.2653 3.29609 47.8852 3.78248 48.6335 3.22071C48.6781 3.27686 48.7247 3.33374 48.7675 3.39012C49.052 3.29305 48.9883 3.15301 49.226 3.03777C49.3745 2.96589 49.6586 3.15073 49.7742 2.9153C49.7916 2.87333 49.3992 2.66308 50.0041 2.46439C50.4924 2.30372 50.3681 2.59429 50.6472 2.58314C50.9372 2.56813 51.4206 2.05591 51.7041 2.34353C51.5613 2.34255 51.3811 2.37836 51.2108 2.3963C51.1767 2.48378 51.1429 2.57037 51.1075 2.65791C51.413 2.45277 51.8041 2.42979 51.9798 2.18768C52.5255 2.27076 52.9456 1.86309 52.7112 1.63599C52.5721 1.73103 52.7817 1.79151 52.5501 1.78809C52.5056 1.73145 52.4597 1.67569 52.4144 1.61934C52.7608 1.50497 53.0173 1.40648 52.921 1.66445C52.9778 1.64882 53.0449 1.62901 53.0919 1.61619C53.047 1.47198 52.9951 1.32991 52.9535 1.18438C52.989 1.16142 53.0127 1.14226 53.0175 1.13066C53.018 1.12933 53.0155 1.1289 53.0013 1.13584C52.9844 1.15301 52.9685 1.12397 52.8629 1.27229C52.8384 1.31496 52.8032 1.38827 52.8089 1.4984C52.8104 1.60689 52.8882 1.73076 52.94 1.77144C53.0464 1.86104 53.1074 1.86144 53.1435 1.87095C53.2141 1.88148 53.2273 1.87657 53.2413 1.87732C53.278 1.87642 53.2427 1.88633 53.2404 1.89179C53.1745 1.87324 53.0916 1.86105 53.0077 1.84944C53.0353 1.6376 53.1691 1.5596 52.8508 1.56123C52.7957 1.55859 52.7201 1.55985 52.6054 1.56879C52.6264 1.64848 52.6464 1.72811 52.6673 1.80781C52.1718 1.84233 52.0886 1.65912 51.5019 1.84108C51.865 1.43453 52.273 1.84348 52.103 1.29539C52.241 1.29419 52.3667 1.29733 52.4825 1.30315C52.4794 1.21742 52.4758 1.13176 52.4711 1.04652C51.8585 1.2682 50.9946 2.09903 50.474 1.87657C50.4378 1.93369 50.3991 1.98551 50.3618 2.04642C49.875 1.96426 49.8719 2.47875 49.363 2.33673C49.3111 2.32139 49.2738 1.85001 48.7421 2.02825C48.773 2.08162 48.8093 2.1762 48.8422 2.24537C48.7159 2.24513 48.58 2.24604 48.461 2.24274C48.4568 2.30196 48.4515 2.36148 48.4473 2.42112C48.6399 2.38524 48.8599 2.34146 49.0594 2.30359C48.9036 2.37063 48.7345 2.44175 48.5789 2.50879C48.8178 2.53109 48.921 2.50086 48.8304 2.68003C48.6388 2.74713 48.4704 2.80782 48.2841 2.87342C48.2757 2.91485 48.2676 2.95666 48.2591 2.99811C48.3819 3.07678 48.5039 3.15315 48.6252 3.23403C48.1133 3.2945 47.6994 3.41508 47.2577 3.32136C47.1847 3.30506 47.3614 3.10028 46.9733 3.35451C46.9445 3.28327 46.915 3.22727 46.8871 3.16181C46.4268 3.52595 46.2278 3.51963 45.6371 3.5377C46.0353 3.56744 45.6908 3.57414 45.6217 3.6761C45.5749 3.74611 45.8161 3.66441 45.8047 3.72628C45.7938 3.78758 45.5419 4.09844 45.8207 4.04167C46.3403 3.40354 46.6876 3.87151 47.4707 3.40285C47.3574 3.49914 47.2345 3.59852 47.1272 3.69303C47.1994 3.71301 47.2624 3.73189 47.344 3.75161C46.848 3.80855 47.0946 3.79456 46.9218 3.92109C46.7503 4.04725 46.4037 4.21563 46.1798 4.30415C46.1074 4.33258 46.1559 4.21015 45.9852 4.25214C45.8697 4.2804 45.595 4.52365 45.4703 4.37352C45.3887 4.27594 45.7967 3.81438 45.1055 4.02582C44.9422 3.95554 45.2832 3.8889 45.2857 3.87368C45.306 3.72468 44.854 3.75505 44.6842 3.91587C44.6707 3.92939 44.8588 3.98333 44.7002 4.07537C44.317 4.2965 44.061 4.24696 43.7486 4.16956C43.7781 4.3631 43.4988 4.69022 43.0617 4.74876C43.0563 4.80836 43.0521 4.86812 43.0468 4.92812C43.1037 4.88008 43.1605 4.83247 43.2171 4.78454C43.2982 4.79614 43.3805 4.79748 43.4613 4.81567C43.0555 4.98932 43.0716 5.26357 42.8959 5.41936C42.2922 5.95254 42.5087 5.14838 42.6016 4.99281C42.7075 5.01198 42.8118 5.03765 42.9169 5.05966C42.8872 4.99818 42.8572 4.93625 42.8282 4.87412C41.7811 5.1959 42.5389 4.50446 41.9748 4.54552C41.9383 4.90376 41.5508 5.05554 40.9986 5.00388C40.9445 5.02213 40.8898 5.03929 40.8357 5.05799C40.8407 5.10706 40.8624 5.17779 40.8568 5.21284C40.2755 5.44923 40.018 4.99331 39.9486 4.96387C39.6366 4.83456 39.5276 5.17863 39.4542 5.20371C39.1448 5.30902 39.0134 5.21118 38.7356 5.35529C38.4353 5.51106 38.6824 5.54145 38.6121 5.65773C38.5554 5.7503 38.307 5.83956 38.2242 5.94287C38.2479 5.87182 38.2765 5.80051 38.3 5.72931C37.9422 5.75159 37.6515 5.75558 37.2694 5.85107C36.9746 6.40798 36.3947 5.79751 36.7191 6.33719C37.0861 6.26882 37.3078 6.27392 37.5431 6.36481C37.3158 6.45499 37.0854 6.54559 36.8585 6.63565C36.771 6.59225 36.7037 6.54448 36.6033 6.50373C36.4709 6.69303 36.0481 6.75825 35.9008 6.84689C35.2145 7.26112 35.5161 7.42297 34.7167 7.24022C35.1954 7.05254 35.1369 6.86315 35.6294 6.74138C35.4836 6.63785 35.2458 6.74112 35.3556 6.53013C34.8986 6.71333 35.0944 6.81201 34.9508 6.99648C34.8268 7.15559 34.5109 7.2588 34.573 7.39741C34.5164 7.32805 34.4679 7.25897 34.4115 7.18969C34.1079 7.2832 33.8036 7.3761 33.4993 7.46977C33.6039 7.34744 33.7083 7.22497 33.8129 7.10306C33.7053 7.10171 33.5976 7.10054 33.49 7.09921C32.8204 7.58483 31.386 7.5065 31.7893 8.09023C31.4348 8.22076 31.3651 8.15337 31.132 8.0907C31.1253 8.14637 31.1167 8.19363 31.1117 8.25486C30.8628 8.27454 30.7401 8.51331 30.5203 8.5279C30.3006 8.54284 30.1968 8.38421 30.2561 8.68594C30.098 8.64234 29.9443 8.61294 29.7879 8.57531C29.7282 8.66613 29.6684 8.75614 29.6095 8.84627C29.474 8.84941 29.3385 8.85272 29.2035 8.85574C29.18 9.01552 28.6708 9.10461 28.4825 9.26435C28.2315 9.17613 28.0923 8.7005 27.6377 8.93145C27.686 9.04524 27.7337 9.15883 27.7819 9.27266C27.6639 9.2817 27.5444 9.29125 27.4253 9.30061C27.407 9.26425 27.3896 9.22762 27.3712 9.19126C27.4315 9.18591 27.4911 9.18072 27.5517 9.17573C27.4826 9.12576 27.4147 9.07576 27.3466 9.02549C27.2065 9.17317 27.0667 9.32074 26.9269 9.4683C27.1769 9.47199 27.4281 9.47534 27.6801 9.47835C27.4179 9.65233 27.192 9.62686 26.9727 9.79857C26.7074 9.70175 26.7588 9.58396 26.7929 9.38114C26.7171 9.4206 26.6412 9.45948 26.5647 9.49914C26.5646 9.30667 26.3966 9.24301 26.8702 9.11479C26.8226 9.07434 26.7752 9.03641 26.7279 8.99371C26.6533 9.025 26.5905 8.99765 26.5122 9.04258C26.2966 9.16599 26.2118 9.52977 26.2608 9.63344C26.2865 9.68773 26.4827 9.50947 26.498 9.59261C26.5343 9.79562 25.9831 9.86678 26.7995 9.83404C26.5879 10.0345 26.5008 9.95819 26.2137 10.0059C26.2552 10.0647 26.2959 10.1232 26.3365 10.1822C26.1991 10.191 26.0619 10.1998 25.9253 10.2084C26.0003 9.81932 25.0244 9.97751 25.7798 9.42801C25.5259 9.48858 25.2705 9.54944 25.014 9.60986C25.0552 9.55973 25.0967 9.50992 25.1381 9.45975C25.2571 9.4436 25.3774 9.4267 25.494 9.41083C25.3444 9.38743 25.1885 9.36632 25.0363 9.34367C24.7443 9.51733 24.6585 9.67435 24.5603 9.86584C24.9571 9.86376 24.7933 9.7521 25.07 9.63624C25.0885 9.7331 25.1278 9.81542 25.1327 9.92158C24.9251 9.77227 24.4905 10.0582 24.3825 10.1012C24.0488 10.2337 24.2593 9.96155 24.0297 10.0266C23.8002 10.0917 23.568 10.2859 23.3276 10.1518C23.363 10.257 23.4108 10.3624 23.4532 10.4551C23.427 10.466 23.403 10.4751 23.381 10.4828C23.1123 10.5757 23.1383 10.45 23.0996 10.4454C22.4337 10.3549 22.185 10.6759 21.5267 10.904C21.6208 10.9115 21.7151 10.9155 21.8099 10.9207C21.3767 11.297 21.6909 11.1272 22.1534 11.0691C21.7322 11.1714 21.5664 11.4307 21.2872 11.5769C21.01 11.7225 20.4947 11.7697 20.2838 11.7492C20.6643 11.5001 21.1334 11.448 21.5856 11.2748C21.5011 11.1822 21.4234 11.1057 21.3341 11.003C21.1182 11.3156 20.9105 11.2124 20.8092 11.21C20.5123 11.2029 20.5798 11.3951 20.3549 11.2341C20.3832 11.3042 20.4062 11.3634 20.433 11.4288C19.857 11.569 19.2209 11.6206 18.9338 11.9968C18.8488 11.8334 18.7738 11.674 18.6829 11.5085C18.4886 11.7087 18.241 11.6372 18.0505 11.7274C17.8607 11.8173 17.9779 11.9349 17.7618 12.0582C17.7216 12.081 17.6077 12.0195 17.5182 12.1166C17.4282 12.2142 17.1753 12.816 17.0029 12.4075C16.8052 12.4643 16.6063 12.5067 16.4078 12.558C16.592 12.4772 16.7813 12.3958 16.9613 12.3162C16.7703 12.2617 16.5753 12.2087 16.3809 12.1551C16.3872 12.2526 16.3939 12.3517 16.4007 12.4478C15.9968 12.6888 15.6281 12.6359 15.1985 12.8018C15.126 12.8297 15.3563 12.9578 15.0119 13.0099C14.6652 13.0625 14.3284 12.7959 13.802 13.0929C13.7752 13.1082 13.6882 13.4145 13.4339 13.2953C13.3757 13.2684 13.5524 13.1511 13.4307 13.1292C13.3078 13.1077 12.8266 13.202 12.7538 13.0857C12.772 13.1291 12.8147 13.1671 12.8422 13.2086C12.7688 13.2535 12.6967 13.298 12.6203 13.3434C12.5895 13.2666 12.558 13.1899 12.5273 13.1135C12.1195 13.4333 11.9691 13.8034 11.2617 13.9031C11.4852 13.9622 11.71 14.0214 11.936 14.0797C11.9652 13.9836 11.9944 13.8868 12.023 13.7908C12.3414 13.7322 12.6739 13.6691 12.9931 13.61C13.0174 13.5031 13.0411 13.3968 13.0657 13.2898C13.1524 13.2772 13.2386 13.2643 13.326 13.2515C13.3246 13.324 13.3229 13.3962 13.3207 13.4689C13.4828 13.4034 13.6418 13.3384 13.8001 13.2739C13.5871 13.7624 12.8552 13.5165 12.9976 13.8303C12.9089 13.8013 12.8212 13.7715 12.7305 13.7426C12.7445 13.911 12.5782 13.9103 12.3063 13.963C12.3898 14.0235 12.4796 14.0809 12.5588 14.1435C12.2697 14.1086 11.8111 14.255 11.5331 14.2903C11.411 14.3058 11.4937 14.1565 11.4551 14.1532C11.2569 14.1345 10.969 14.437 10.8941 14.4416C10.439 14.4721 10.0502 14.1722 9.65323 14.5605C10.1574 14.4807 9.88495 14.5317 10.0971 14.6212C10.163 14.6494 10.8118 14.5589 10.0219 14.7456C9.92575 14.7684 8.43321 14.9171 8.84007 14.5798C8.63018 14.7107 8.47236 14.8373 8.28104 14.967C7.61416 14.5838 7.93711 15.0319 8.16511 15.264C8.08139 15.2896 8.00349 15.3152 7.91543 15.3407C8.01574 14.9984 7.07033 15.2528 6.79439 15.4905C6.70214 15.5698 7.02605 15.5765 6.79295 15.6912C6.67008 15.7047 6.52715 15.7175 6.39661 15.7307C6.62973 15.8616 6.29625 16.0342 6.35517 16.2188C6.08262 16.1177 5.80569 15.8168 5.876 15.5901C5.71009 15.7215 5.54691 15.8519 5.38098 15.9837C5.48133 16.0026 5.58112 16.0213 5.68041 16.0405C5.03457 16.0999 4.3272 16.591 4.08576 16.2369C4.00536 16.263 3.92418 16.2889 3.84412 16.3148C3.83806 16.388 3.83288 16.4612 3.82684 16.5344C3.44337 16.5823 3.06152 16.6292 2.6783 16.6769C2.99275 16.5426 3.04423 16.4261 3.40786 16.4045C3.25391 16.3664 3.0988 16.3282 2.94713 16.2894C2.48977 16.6416 2.45831 16.7961 1.66474 16.957C1.62892 16.9643 0.993501 16.9602 0.968682 16.9492C0.855021 16.899 0.962711 16.7482 0.910788 16.7213C0.766465 16.6454 -0.0018188 16.5708 -8.37467e-05 16.5259C0.0251344 15.9746 2.3458 15.3045 2.96544 15.0988C9.3974 12.97 15.851 11.4522 22.2757 9.44678C22.3413 9.42597 22.2902 9.36069 22.3174 9.34904C22.4864 9.2778 22.6943 9.34078 22.7611 9.3258C22.9038 9.29342 22.7946 9.21018 22.8969 9.17921C22.9246 9.1709 22.9522 9.16264 22.9798 9.15442C23.9898 8.85392 24.9785 8.61879 25.9892 8.2928C26.0574 8.27081 26.0132 8.37723 26.1291 8.32561C26.1898 8.29819 26.3418 8.1094 26.4802 8.06521C26.9636 7.9111 27.3889 7.82764 27.9 7.67011C28.1809 7.58343 28.6068 7.46601 28.9193 7.36878C29.0576 7.32576 29.1841 7.22198 29.3209 7.17816C29.5151 7.11603 29.5122 7.24926 29.5445 7.24765C29.6863 7.24038 29.6633 7.10212 29.7888 7.06736C30.0223 7.0032 30.0617 7.08818 30.3538 6.991C30.5629 6.92125 31.0226 6.7046 31.2814 6.60323C31.9333 6.51705 32.7017 6.23807 33.2701 6.02743C33.6066 5.90271 33.6761 6.01731 33.8156 5.97432C34.3057 5.82215 34.6329 5.5488 35.0922 5.40294C35.7043 5.20877 36.2769 5.14864 36.876 4.97393C36.9728 4.94564 36.9159 4.83857 37.0096 4.80676C37.3557 4.68938 37.7966 4.53207 38.1143 4.45279C38.4682 4.3642 38.6409 4.49211 38.9748 4.35334C39.0718 4.31277 39.057 4.15889 39.2185 4.08923C39.4776 3.97813 39.8027 4.0185 39.9974 3.97465C40.2598 3.91529 39.9921 3.83566 40.3429 3.75018C40.3573 3.74671 40.441 3.8365 40.5132 3.80896C40.724 3.72899 40.6739 3.65345 40.9933 3.56457C41.0247 3.55619 41.4749 3.52865 41.5159 3.51657C41.7585 3.44423 42.263 3.3287 42.402 3.26291C42.8949 3.02939 42.4415 2.99426 42.9821 3.20586C43.1511 3.0621 43.3203 2.91708 43.4999 2.77274C43.3874 2.89056 43.9723 2.83269 44.0091 2.8137C44.3192 2.65638 44.0849 2.58129 44.502 2.47839C44.0579 2.95218 45.0348 2.35957 45.2796 2.2764C46.4174 1.8879 47.4853 1.64748 48.6433 1.29474C49.0238 1.17865 49.5234 0.956216 49.9409 0.832344C50.0373 0.803433 49.9868 0.898632 50.0714 0.87491C50.155 0.850962 50.0382 0.796284 50.134 0.772233C50.7465 0.619406 51.242 0.640415 51.7447 0.281074C51.7793 0.301484 51.7799 0.325459 51.8374 0.342155C51.9958 0.226907 52.2161 0.152422 52.4425 0.105421C52.5787 0.0751712 52.6489 0.0657991 52.8335 0.0372437C52.8501 0.0365761 52.8779 0.0265758 53.0318 0.00857664C53.0743 0.00465249 53.1254 -0.00119274 53.2281 0.000226097C53.3398 0.0169641 53.4672 -0.0385385 53.9276 0.189352C54.0456 0.257855 54.172 0.338873 54.33 0.520902C54.5022 0.71702 54.6462 1.02901 54.6719 1.3232C54.7154 1.93583 54.4732 2.22593 54.3705 2.3737C54.1327 2.65688 54.0522 2.66956 53.9844 2.72094C53.7525 2.85297 53.7825 2.82057 53.7501 2.83639C53.7274 2.84413 53.7071 2.85047 53.6871 2.8565C53.5954 2.88499 53.5604 2.88892 53.5043 2.90149C53.2927 2.94575 53.1227 2.97216 53.0242 2.99626C52.5007 3.1279 52.4233 3.28474 52.0429 3.39283C51.5546 3.52982 50.7514 3.55865 51.2096 3.81709C50.8936 3.9417 50.5683 4.06026 50.2332 4.13988C50.1948 4.14904 50.1867 4.04511 50.1712 4.04841C50.0723 4.06809 50.0712 4.16413 50.008 4.19096C49.8377 4.26316 50.0814 4.0622 49.8507 4.17602C49.7299 4.23607 49.6886 4.33407 49.3243 4.46551C47.1877 5.23515 44.8542 6.05454 42.6667 6.86403C42.5175 6.91933 42.65 6.97342 42.4606 7.03822C41.7953 7.2655 40.579 7.55486 40.0222 7.79479C39.4714 8.03206 39.6493 8.11598 39.3202 8.30817C39.2566 8.34543 39.2827 8.24813 39.2208 8.27095C38.8067 8.4246 38.271 8.49954 37.9307 8.614C37.7066 8.68917 37.7713 8.80089 37.6223 8.86996C37.4003 8.97257 37.1178 8.94676 36.9954 8.99139C36.4205 9.20261 36.0677 9.45772 35.5185 9.62517C35.5499 9.64269 35.5734 9.66116 35.6015 9.67961C35.1178 9.8737 34.6353 10.0694 34.1542 10.2668C34.0095 10.3262 33.865 10.3857 33.7206 10.4453C33.76 10.4566 33.7985 10.4685 33.838 10.4802C33.1013 10.7755 33.0771 10.4849 33.3705 10.9982C33.3258 11.0396 33.2786 11.0858 33.2353 11.1249C33.1375 10.8377 32.6083 10.8217 32.0164 10.9937C31.9726 11.0062 31.8137 11.3967 31.705 11.0639C31.6669 11.1735 31.6475 11.246 31.6165 11.3412C31.4559 11.296 31.2942 11.2528 31.1338 11.2083C31.076 11.2508 31.0168 11.2933 30.959 11.3358C30.9769 11.4026 31.0127 11.4643 31.0191 11.5347C30.7253 11.6747 30.0847 11.8664 29.8529 11.9797C29.2815 12.2589 28.766 12.6953 28.2336 12.7195C28.022 12.8388 28.2959 12.8606 27.9626 12.995C27.8974 12.9502 27.8356 12.907 27.768 12.8611C27.6291 13.2591 27.4971 13.1167 27.1044 13.2292C26.8391 13.3051 26.7113 13.4466 26.4701 13.5438C26.4088 13.5684 26.3794 13.4839 26.3399 13.5056C26.2067 13.5782 25.8716 13.8719 25.7781 13.92C24.9202 14.3626 24.1778 14.7057 23.3375 15.0815C23.2481 15.1217 23.4008 15.1446 23.3082 15.186C23.1596 15.2525 23.1859 15.0891 23.0985 15.1248C22.8526 15.2263 22.9123 15.3554 22.5857 15.5257C21.5082 16.0877 20.2172 16.6247 19.0897 17.2059C19.0542 17.2245 19.0951 17.2972 19.057 17.3182C18.8072 17.454 18.509 17.4842 18.2823 17.6062C17.9065 17.8081 17.6864 18.0593 17.3176 18.2588C16.5993 18.6483 15.9411 18.9438 15.2085 19.3562C14.6092 19.694 14.1047 19.9993 13.4669 20.3812C12.63 20.8843 11.81 21.4234 11.0675 21.9823C10.652 22.2944 10.2079 22.6688 10.051 22.878C10.0195 22.9098 10.0285 22.9659 10.1247 22.7336C10.1693 22.6074 10.2425 22.3228 10.1234 21.9535C9.99909 21.5775 9.74893 21.3751 9.63531 21.3003C9.39572 21.1574 9.42506 21.2038 9.46713 21.1994C9.51558 21.205 9.61301 21.2127 9.71329 21.2157C10.6141 21.2344 11.8195 21.1185 12.9644 21.0939C13.02 21.0925 13.0758 21.0913 13.1317 21.0901C13.218 21.0885 13.1875 21.1642 13.2136 21.1595C13.4613 21.1125 13.4772 21.0121 13.5784 21.2147C13.893 21.1555 13.9845 20.9937 14.3689 20.9845C14.573 20.9798 14.4335 21.2296 14.7722 21.0874C15.078 20.9596 14.7282 20.8421 15.6612 20.9353C15.6862 20.938 15.8128 21.0802 16.0037 21.0335C16.196 20.9873 15.9667 20.8908 16.4315 20.8398C17.5213 20.7205 18.9063 20.8025 20.1707 20.7277C20.2497 20.7229 21.0117 20.623 21.1611 20.5827C21.4512 20.5043 21.3869 20.3961 21.7654 20.3595C22.0572 20.3314 22.3019 20.4497 22.6451 20.4164C22.685 20.4124 22.7489 20.2829 23.0078 20.2936ZM52.8812 1.07207C52.8805 1.04125 52.8854 0.989017 52.8871 0.930798C52.8874 0.901919 52.8862 0.87177 52.8804 0.843323C52.8775 0.829134 52.8733 0.815381 52.8665 0.802977C52.8634 0.79674 52.8555 0.792141 52.8309 0.79735C52.7989 0.815714 52.7852 0.775688 52.5983 0.962198C52.5515 1.01954 52.4749 1.10401 52.4258 1.30329C52.3675 1.49509 52.4421 1.84576 52.6096 2.01253C52.8816 2.28393 53.0274 2.2569 53.1053 2.2828C53.258 2.30406 53.2793 2.29675 53.309 2.30177C53.3568 2.30735 53.3426 2.32137 53.3458 2.33294C53.3451 2.35687 53.333 2.38074 53.3074 2.40416C53.2598 2.45013 53.2179 2.47776 53.1125 2.49408C53.0882 2.4966 53.0604 2.49696 53.0286 2.49494C52.9884 2.49255 53.0987 2.131 52.8703 2.14325C52.9167 2.12246 52.9594 2.10391 52.9984 2.08727C53.1053 2.04723 53.1487 2.02706 53.2445 1.99562C53.2612 1.9897 53.2723 1.98543 53.2761 1.98285C53.2737 1.98268 53.268 1.98401 53.2394 1.98589C53.2242 1.98651 53.2043 1.98834 53.1593 1.9843C53.1141 1.97214 53.038 1.99539 52.8597 1.84897C52.7602 1.77586 52.6642 1.52928 52.7036 1.38633C52.7325 1.23954 52.7879 1.18042 52.8188 1.1409C52.8848 1.06796 52.9099 1.05935 52.9287 1.04567C52.9633 1.02478 52.967 1.02536 52.968 1.02503C52.9687 1.02924 52.9113 1.05668 52.8814 1.07253C52.8814 1.07238 52.8813 1.07222 52.8812 1.07207ZM24.9452 23.195C24.6223 23.1794 24.2986 23.164 23.9757 23.1484C24.1968 23.0873 24.4179 23.0263 24.6383 22.9648C24.7408 23.0415 24.8425 23.1183 24.9452 23.195ZM28.7893 10.1376C28.7891 10.1377 28.7888 10.1378 28.7885 10.138C29.074 9.94472 29.3629 9.75081 29.6488 9.55929C29.6339 9.61387 29.6189 9.66866 29.604 9.72323C29.3878 9.89452 29.1683 10.0677 28.9527 10.2399C28.8983 10.2058 28.8438 10.1717 28.7893 10.1376ZM26.5398 11.674C26.3208 11.7181 26.332 11.616 26.1876 11.5887C26.1877 11.5888 26.1877 11.589 26.1878 11.5891C26.1498 11.5822 26.0087 11.6264 25.9562 11.6473C25.9983 11.6884 26.0457 11.7262 26.0893 11.7662C25.6903 12.0994 24.5873 12.0956 25.6707 11.3755C25.6828 11.4465 25.6956 11.5169 25.7079 11.588C26.2736 11.3014 26.9875 11.1384 26.5398 11.674ZM48.6811 3.53672C48.2238 3.91335 48.0831 4.00622 47.3971 4.05163C47.4694 3.96217 47.5411 3.87297 47.6119 3.784C47.7357 3.81516 47.8576 3.84646 47.9792 3.8783C47.9795 3.87822 47.9798 3.87813 47.9801 3.87804C47.9805 3.80567 47.9809 3.73317 47.9804 3.66108C48.2029 3.62291 48.454 3.57616 48.6811 3.53672ZM8.29836 21.9552C8.03868 21.9689 7.97022 22.032 8.00198 21.9352C8.03455 21.8391 8.17696 21.6506 8.3189 21.4098C8.41844 21.2425 8.23592 21.3284 8.30533 21.2315C8.69848 20.7257 8.92008 20.9748 8.93697 21.1623C8.71469 21.3823 8.49124 21.5811 8.29904 21.9539C8.29881 21.9543 8.29858 21.9548 8.29836 21.9552ZM21.2621 22.6705C21.2624 22.6705 21.2627 22.6705 21.263 22.6705C21.2789 22.7811 21.0776 22.8162 21.3083 22.9153C21.1349 22.9194 20.9614 22.9231 20.7871 22.9275C20.8379 22.9157 20.8899 22.9045 20.9407 22.8928C20.8946 22.8559 20.8483 22.8186 20.8021 22.7817C20.744 22.9109 20.685 22.8383 20.5013 22.8007C20.5554 22.9355 20.6093 23.0703 20.6635 23.2051C20.4504 23.1704 20.2373 23.1356 20.0245 23.1012C20.0209 23.0669 20.0173 23.0326 20.0137 22.9984C19.9354 23.0445 19.8576 23.0912 19.7791 23.1373C19.7562 23.097 19.7341 23.0571 19.7112 23.0167C19.6159 23.0506 19.5208 23.0845 19.4253 23.1188C19.393 23.0205 19.6037 22.9711 19.2286 23.0078C19.3405 22.9025 19.4531 22.7975 19.5661 22.6923C20.1313 22.6837 20.6966 22.6767 21.2621 22.6705ZM11.4568 19.2521C10.9265 19.6089 11.0456 19.4501 11.0448 19.1832C11.1806 19.2067 11.3185 19.2293 11.4568 19.2521ZM40.6014 5.66312C40.7162 5.45489 40.8319 5.24817 40.9516 5.04417C41.2661 4.8331 41.7136 4.96351 41.4913 5.16472C41.2213 5.40751 40.8483 5.39164 40.6014 5.66312ZM48.4633 2.69589C48.0162 2.7798 48.3545 2.46531 48.412 2.33189C48.5799 2.45357 48.7513 2.37646 49.0181 2.30279C48.7762 2.40046 48.5331 2.68383 48.4635 2.69635C48.4634 2.6962 48.4633 2.69604 48.4633 2.69589ZM33.7813 8.18682C33.6375 8.25088 33.5056 8.34148 33.3625 8.37362C33.3407 8.37851 33.3188 8.38206 33.2964 8.38398C33.2939 8.34947 33.3094 8.32256 33.3318 8.30035C33.4093 8.22332 33.569 8.20301 33.3378 8.11638C33.4433 8.06825 33.5491 8.02024 33.6539 7.97223C33.6209 8.0836 33.7377 8.10807 33.7807 8.18655C33.7809 8.18664 33.7811 8.18673 33.7813 8.18682ZM16.6417 16.0755C17.036 16.0609 17.0583 15.9646 17.3219 15.6879C17.4331 15.789 17.1631 16.2012 16.956 16.3719C16.8517 16.2729 16.7485 16.1732 16.6417 16.0755ZM10.7775 14.9735C10.8063 14.7772 11.4074 14.5767 11.7181 14.5411C11.6901 14.5772 11.6621 14.6137 11.6343 14.6501C11.3505 14.7575 11.0601 14.8667 10.7775 14.9735ZM49.1456 2.27047C49.1007 2.2808 49.0582 2.29171 49.0181 2.30279C49.0609 2.2855 49.1036 2.2736 49.1456 2.27047ZM39.0181 5.58145C39.1102 5.37543 38.671 5.44982 39.2042 5.35663C39.2042 5.35647 39.2041 5.35632 39.2041 5.35616C39.5578 5.29401 39.6361 5.28236 39.9527 5.19949C39.9041 5.44285 39.2917 5.71158 40.1797 5.48754C40.1915 5.48415 40.1296 5.36707 40.2755 5.34112C40.3208 5.33306 40.4921 5.39233 40.7126 5.35747C40.7838 5.34611 41.3058 5.22112 40.6075 5.43653C40.6728 5.57586 40.6802 5.73483 40.7251 5.87566C40.4621 6.00089 40.1684 5.77868 39.8826 5.87362C39.4586 6.01523 39.3243 6.37167 39.1287 6.01761C39.4612 5.81436 40.0796 5.62305 40.228 5.82658C40.5753 5.72355 40.6224 5.50529 40.3103 5.49974C39.1486 5.98265 39.8959 5.32367 38.8893 5.79384C38.893 5.85027 38.8671 5.9201 38.8888 5.96757C38.5117 5.88024 38.9859 5.65491 39.0181 5.58145ZM41.6575 5.21543C41.4809 5.39097 41.3101 5.56574 41.1382 5.74031C41.0833 5.55884 41.1454 5.36197 41.4418 5.1598C41.5136 5.17853 41.5861 5.19701 41.6575 5.21543ZM24.1846 10.5901C24.1843 10.6979 24.1315 10.8125 24.1017 10.924C24.0656 10.8979 23.7918 10.9444 23.5331 10.9863C23.1467 11.0504 22.791 11.1056 23.2294 10.9205C23.2651 10.9055 23.3695 10.892 23.4983 10.8711C23.7512 10.8312 24.1031 10.7614 24.1846 10.5901ZM14.5465 17.4061C14.7449 17.3736 14.9365 17.3456 15.1305 17.3166C14.9083 17.4907 14.6776 17.672 14.4561 17.8491C14.4854 17.7018 14.5151 17.5543 14.5465 17.4061ZM43.4752 4.77467C43.4005 4.79828 43.5948 4.57487 43.3134 4.70325C43.4978 4.53799 43.6715 4.39173 43.8492 4.23513C43.9335 4.27546 44.0228 4.31367 44.1092 4.35329C44.1437 4.29464 44.1793 4.23592 44.2136 4.17737C44.2179 4.27994 44.2245 4.37917 44.2277 4.48391C43.796 4.41997 43.806 4.66954 43.4752 4.77467ZM33.2014 9.22672C33.0564 9.05735 33.5104 8.72934 33.0025 8.90626C33.0403 8.74594 33.1535 8.61923 33.4121 8.4924C33.4246 8.4863 33.4374 8.48019 33.4505 8.47408C33.5176 8.50386 33.5844 8.53335 33.6515 8.56319C33.603 8.42875 33.6571 8.34863 33.7813 8.18682C33.7815 8.18691 33.7817 8.187 33.7819 8.18709C34.2197 7.99425 34.2117 8.04949 34.4074 8.22257C33.8893 8.29314 33.9572 8.4974 33.6887 8.74739C33.6497 8.78372 33.6056 8.81606 33.5603 8.84659C33.3905 8.96074 33.2034 9.04985 33.2014 9.22672ZM25.7806 10.1043C25.4937 10.3785 25.8466 10.4463 25.183 10.4484C25.209 10.3929 25.2353 10.3378 25.2614 10.2823C25.4343 10.2226 25.6104 10.1624 25.7806 10.1043ZM31.2939 9.24934C31.4626 9.53439 31.8713 9.6369 31.7133 9.12291C31.3687 9.15255 31.6367 9.36698 31.2939 9.24934ZM48.4924 3.23191C47.8869 3.43195 47.8752 3.04235 48.0606 2.77901C48.1217 2.82883 48.1826 2.87885 48.2424 2.92872C48.337 2.86237 48.4304 2.79647 48.5225 2.73153C48.5129 2.89802 48.5029 3.06509 48.4924 3.23191ZM21.3595 14.2719C21.6882 13.8451 20.834 14.3891 21.0706 14.1067C21.2601 13.8806 21.6831 13.9343 21.6293 14.1266C21.5493 14.1711 21.456 14.2209 21.3604 14.2715C21.3601 14.2717 21.3598 14.2718 21.3595 14.2719ZM23.8333 12.9822C23.653 12.7908 23.787 12.807 23.4639 13.0135C23.3732 13.0711 22.5519 13.3672 22.9704 13.3941C23.2516 13.2569 23.5412 13.1203 23.8333 12.9822ZM51.1509 2.37543C51.1083 2.27404 51.6895 1.85034 51.7753 1.88767C51.7753 1.88752 51.7752 1.88736 51.7752 1.88721C52.0341 1.9809 51.389 2.19678 51.7384 2.32697C51.0313 2.33153 50.9784 2.84662 50.8409 2.23082C51.223 2.08744 51.0735 2.26771 51.1509 2.37543ZM2.71005 16.7694C2.70976 16.7695 2.70946 16.7695 2.70916 16.7696C2.7532 16.7624 3.15137 16.8151 3.12368 16.8808C2.68427 16.9571 2.73309 16.8334 2.38369 17.1136C2.34662 17.0661 2.31313 17.0194 2.2743 16.972C2.4221 16.8953 2.49174 16.8056 2.71005 16.7694ZM22.5033 10.8678C22.6487 10.7941 22.9659 10.822 23.1424 10.7614C22.7088 11.3671 21.9149 11.1636 22.5033 10.8678ZM15.181 22.8982C15.1806 22.8983 15.1801 22.8985 15.1797 22.8987C15.1798 22.8985 15.18 22.8982 15.1801 22.898C15.1804 22.898 15.1807 22.8981 15.181 22.8982ZM34.6331 7.4674C34.6044 7.44529 34.5856 7.42423 34.575 7.40395C34.5744 7.40193 34.5738 7.3999 34.5732 7.39788C34.592 7.421 34.6117 7.44421 34.6331 7.4674ZM49.8373 2.80501C49.5275 2.73941 50.3429 2.24031 50.6415 2.21116C50.6421 2.28356 50.6573 2.3448 50.6347 2.43497C50.3527 2.33167 49.8891 2.81612 49.8373 2.80501ZM36.7881 7.26004C37.4675 6.99389 36.8085 7.90361 36.5938 7.4731C36.5917 7.46389 36.7709 7.26777 36.7881 7.26004ZM51.1244 1.94216C51.004 2.17766 51.3756 2.09791 50.8074 2.26488C50.7586 2.23211 50.7094 2.19933 50.6599 2.16678C50.8221 2.08938 50.9662 2.01812 51.1244 1.94216ZM41.5237 6.26635C42.3477 5.8452 43.1065 5.37132 42.3688 5.1113C42.3091 5.1509 42.2468 5.19098 42.1883 5.23017C42.2647 5.46317 41.9808 5.42691 41.6256 5.55269C41.6098 5.66259 41.4219 5.75782 41.4142 5.84913C41.3999 6.02541 41.6641 6.04532 41.5237 6.26635ZM10.2981 22.6915C10.284 22.7335 10.2702 22.7757 10.256 22.8173C10.1143 22.8663 9.96753 22.9131 9.81532 22.9559C9.84162 22.8764 9.86752 22.7967 9.89299 22.717C10.0263 22.7111 10.1637 22.702 10.2972 22.6912C10.2975 22.6913 10.2978 22.6914 10.2981 22.6915ZM42.3603 4.46051C42.4131 4.92556 42.6746 4.7571 43.1673 4.36351C42.9015 4.39486 42.6317 4.42744 42.3603 4.46051ZM27.858 11.7289C27.7863 11.6179 27.7149 11.5072 27.6423 11.3967C27.4127 11.6516 27.5288 11.7632 27.7375 11.8579C27.7779 11.8148 27.8174 11.772 27.858 11.7289ZM23.7992 13.7004C23.9278 13.6684 23.8223 13.6023 23.8354 13.5983C24.1547 13.5055 24.222 13.5268 24.548 13.2822C24.5804 13.2359 24.6116 13.1887 24.6438 13.1416C24.357 12.9752 24.302 13.1669 23.8735 13.1948C23.9787 13.2484 24.0837 13.3022 24.1892 13.3562C23.9815 13.4341 23.776 13.5117 23.5707 13.5893C23.56 13.6267 23.5493 13.6638 23.5386 13.7012C23.6247 13.7008 23.7152 13.7034 23.7992 13.7004ZM11.9771 22.7293C12.1922 22.7261 12.4069 22.7229 12.6204 22.7196C12.6238 22.6518 12.6268 22.5835 12.6302 22.5157C12.4129 22.5868 12.1955 22.6583 11.9771 22.7293ZM38.2242 5.94287C38.2149 5.97073 38.2061 5.99861 38.1991 6.02635C38.1918 5.99738 38.2028 5.96966 38.2242 5.94287ZM2.06607 16.5686C1.82096 16.5896 1.49249 16.7157 1.23463 16.7791C1.30107 16.9361 1.93851 16.7053 2.19418 16.7389C2.2225 16.6992 2.16996 16.5596 2.06607 16.5686ZM47.6663 3.51178C47.6372 3.61194 47.6078 3.71181 47.579 3.8119C47.4314 3.85525 47.299 3.8927 47.1561 3.93457C47.1755 4.00107 47.1951 4.06811 47.2145 4.13461C47.7852 3.83356 47.726 4.06691 48.0915 4.14459C47.9499 3.93373 47.8089 3.72268 47.6663 3.51178ZM18.7569 21.9638C18.2875 22.0257 18.1239 22.1189 18.396 22.3173C18.5598 22.2642 18.7261 22.2112 18.8899 22.1584C18.8453 22.0935 18.8006 22.0286 18.7569 21.9638ZM29.9884 8.29202C29.6339 8.48091 29.5461 8.21672 29.2237 8.47729C29.4354 8.46651 29.6478 8.45612 29.8595 8.44531C29.9021 8.39442 29.9463 8.34277 29.9884 8.29202ZM48.2272 1.93072C48.0465 1.88431 47.8645 2.42046 47.3318 2.2272C47.2552 2.35645 47.2162 2.46953 47.1525 2.59273C47.0671 2.50575 46.9736 2.41979 46.8905 2.33302C46.8902 2.33311 46.8898 2.33321 46.8895 2.3333C46.4988 2.4902 46.7986 2.54066 46.8224 2.65328C46.8326 2.69985 46.5118 2.71436 46.635 2.78504C46.8423 2.90759 47.4281 2.62279 47.4904 2.83016C47.2576 2.82692 46.8521 3.01203 47.0188 3.11229C47.1992 3.22314 47.523 2.84703 47.8032 2.89947C47.3487 2.67583 48.115 2.55486 48.2794 2.78275C48.6501 2.45709 48.2356 2.49572 47.7848 2.64253C47.9962 2.36551 47.6313 2.59128 47.5182 2.44869C47.7614 2.26794 48.7512 2.05689 48.2272 1.93072ZM37.9964 7.71879C38.2834 7.59129 38.7762 7.52321 38.9153 7.28454C38.9955 7.14573 38.5095 7.25227 38.768 6.98247C38.4879 7.10832 38.4477 7.19021 38.5459 7.29975C38.4875 7.34037 38.4282 7.38097 38.3697 7.42129C38.33 7.40796 38.2897 7.39528 38.25 7.38198C38.2369 7.44808 38.2234 7.51383 38.2111 7.57962C38.1385 7.5962 38.0649 7.61314 37.992 7.62945C37.9944 7.65916 37.9898 7.68767 37.9964 7.71879ZM19.1775 11.5704C19.2607 11.5437 19.3442 11.517 19.427 11.49C19.4083 11.4606 19.3875 11.4303 19.3668 11.4005C19.3514 11.3767 19.3359 11.3528 19.3204 11.329C19.3975 11.4076 19.8353 11.4454 19.974 11.2952C20.0434 11.2198 19.7975 11.1002 20.1469 10.9616C19.8891 11.049 19.6577 11.1448 19.4147 11.234C19.4211 11.1746 19.4264 11.1149 19.4329 11.0555C19.4327 11.0555 19.4325 11.0554 19.4324 11.0554C19.3465 11.0682 19.2597 11.0806 19.1714 11.0941C19.1731 11.253 19.1756 11.4115 19.1775 11.5704ZM28.1963 11.8587C28.4196 11.6383 28.4872 11.5463 28.2878 11.4449C28.2875 11.445 28.2871 11.445 28.2868 11.4451C28.2186 11.5611 28.1505 11.677 28.0829 11.7929C28.1204 11.8149 28.158 11.8371 28.1963 11.8587ZM35.6136 6.13714C35.2047 6.9558 36.4445 6.15198 36.1197 6.01479C36.1052 6.0084 35.6919 6.18985 35.6136 6.13714ZM48.6694 3.38545C48.5103 3.44789 48.3457 3.51187 48.1813 3.57643C48.2453 3.64013 48.3136 3.70199 48.3791 3.76518C48.4776 3.63807 48.5745 3.51114 48.6694 3.38545ZM16.696 21.7356C16.5072 21.5607 16.0339 21.5142 15.8141 21.7223C15.9349 21.7402 16.0568 21.7582 16.1779 21.7763C15.9512 21.8086 15.7277 21.8435 15.4998 21.8754C15.499 22.1295 15.756 21.9701 16.1564 22.0233C16.2179 22.0319 16.6235 22.3305 16.7494 22.088C16.7746 22.0381 16.3562 22.0217 16.6404 21.8683C16.5133 21.8622 16.4032 21.8691 16.2829 21.8679C16.2717 21.8079 16.2606 21.7478 16.2485 21.6878C16.3979 21.7035 16.5468 21.7196 16.696 21.7356ZM39.6816 7.03919C40.0892 6.89661 40.1013 6.78356 40.1205 6.58411C39.9417 6.67462 39.7615 6.76558 39.5819 6.85682C39.6155 6.91732 39.6478 6.97831 39.6816 7.03919ZM12.8372 21.8732C12.6001 21.8592 12.7104 21.9982 12.6171 22.0321C12.2676 22.1596 12.0148 22.0724 11.6692 22.1596C11.6908 22.1301 11.7107 22.1024 11.7317 22.0737C11.7314 22.0738 11.7311 22.0738 11.7308 22.0738C10.0761 22.0423 10.9512 22.3321 11.9455 22.2144C11.9724 22.267 11.9985 22.3197 12.0256 22.3719C12.4661 22.2478 12.8738 22.1295 12.8372 21.8732ZM40.9614 4.48023C40.9333 4.45333 41.0249 4.19981 40.7643 4.38496C40.6261 4.75648 40.9581 4.49164 41.0871 4.57892C41.0177 4.63171 40.9461 4.68432 40.8771 4.73697C41.37 4.67953 41.4234 4.58491 41.1811 4.41824C41.1629 4.40763 40.9897 4.50698 40.9614 4.48023ZM37.8123 5.27968C37.883 5.74331 38.4202 5.36101 38.356 5.23C38.2721 5.24964 38.231 5.34435 38.1333 5.33785C38.0347 5.33161 37.9805 5.23482 37.8123 5.27968ZM51.561 2.80684C51.5801 2.8023 51.8159 2.92599 51.7477 2.78813C51.4153 2.52215 51.0604 2.89388 51.1784 2.98574C51.3173 2.93015 51.389 2.84738 51.5612 2.8073C51.5611 2.80715 51.5611 2.80699 51.561 2.80684ZM19.5333 21.529C19.5243 21.5162 19.0638 21.4518 19.0066 21.5265C18.9603 21.6099 18.9389 21.6985 18.905 21.7844C19.1554 21.6977 19.6676 21.7424 19.5324 21.529C19.5327 21.529 19.533 21.529 19.5333 21.529Z' fill='%23262D42'/%3e%3c/svg%3e ");
    ;
    bottom: 0;
    transform: translateY(75%) rotate(15deg);
    left: 0;
}

@media (max-width: 1400px) {
    .product-selection {
        padding-inline: 6%;
    }
}

@media (max-width: 1250px) {
    .product-selection {
        padding-inline: 40px;
    }

    .product-selection .container-title h2,
    .product-selection .container-title .words span {
        font: 600 34px / normal "WorkSans";
    }
}

@media (max-width: 1024px) {
    .product-selection {
        flex-direction: column;
        align-items: center;
        background-image: none;
        gap: 40px;
    }

    .product-selection .container-title h2,
    .product-selection .container-title .words span {
        font: 600 38px / normal "WorkSans";
        height: 44px;
    }

    .product-selection .slide-img img {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .product-selection .slide-img {
        height: 350px;
        width: auto;
    }

    .product-selection .scribe-text {
        transform: translateX(100%) rotate(10deg);
        right: 60px;
    }

    .product-selection .scribe-text svg {
        transform: rotate(6deg);
        margin-left: 50px;
    }

    .product-selection .right {
        width: 100%;
        max-width: 490px;
        justify-content: center;
        align-items: center;
    }

    .product-selection .border-dark-button {
        width: 100%;
        text-align: center;
    }

    .product-selection .description {
        font-size: 14px;
        max-width: 370px;
        text-align: center;
    }

    .product-selection .container-title {
        gap: 11px;
        height: 44px;
    }

    .product-selection .left {
        background-size: auto 95%;
        width: 100%;
    }

    .product-selection .scribe-text span:after {
        bottom: 3px;
        transform: translateY(75%) rotate(15deg) scale(0.9);
    }
}

@media (max-width: 768px) {
    .product-selection .container-title {
        gap: 0;
        height: 66px;
        flex-direction: column;
        align-items: center;
    }

    .product-selection .container-title h2,
    .product-selection .container-title .words span {
        font: 600 28px / normal "WorkSans";
        height: 33px;
        z-index: 1;
    }

    .product-selection .container-title h2 {
        width: 100%;
        text-align: center;
        background-color: var(--grey);
        z-index: 2;
    }

    .product-selection {
        padding: 25px 15px;
        margin: 30px 15px;
        gap: 30px;
        padding-top: 90px;
    }

    .product-selection .slide-img {
        height: 290px;
    }

    .product-selection .slide-img img {
        transform: translate(-50%, -50%) scale(0.6);
    }

    .product-selection .left {
        max-width: 260px;
        background-size: 100% 100%;
        width: 100%;
    }

    .product-selection .scribe-text svg {
        transform: rotate(-8deg);
        margin-left: 111px;
        margin-top: -2px;
        width: 25px;
        height: auto;
    }

    .product-selection .scribe-text p,
    .product-selection .scribe-text span {
        line-height: 24px;
    }

    .product-selection .scribe-text {
        transform: translateY(-100%) rotate(10deg);
        right: -25px;
        top: 42px;
    }

    .product-selection .scribe-text span:after {
        bottom: 5px;
    }
}

/*--END-- CHOICE IN 5 MINUTES */





/*--START-- CATEGORY LIST HOME */
.category-list {
    padding-inline: 25px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-list .top img {
    width: 60px;
    height: auto;
}

.category-list .top>div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.category-list .container-category {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.category-list .container-category .categorie {
    flex: 1;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--grey-2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list .container-category .categorie img {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.category-list .container-category .categorie h2 {
    font: var(--font-h3);
    color: var(--dark-blue);
    margin: 0;
}

@media (max-width: 1250px) {
    .category-list .container-category {
        gap: 15px;
    }

    .category-list .container-category .categorie {
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .category-list .container-category .categorie {
        width: 260px;
        flex: none;
    }

    .category-list .container-category .categorie img {
        aspect-ratio: 1 / 0.85;
    }

    .category-list .container-category {
        overflow: auto;
    }

    .category-list .container-category::-webkit-scrollbar {
        display: none;
    }

    .category-list {
        padding-inline: 0;
    }

    .category-list .top {
        padding-inline: 25px;
    }

    .category-list .container-category .categorie:first-child {
        margin-left: 25px;
    }

    .category-list .container-category .categorie:last-child {
        margin-right: 25px;
    }

    .category-list .container-category .categorie h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .category-list .container-category .categorie h2 {
        margin-bottom: 4px;
    }

    .category-list .top img {
        width: 44px;
    }

    .category-list .top>div {
        gap: 7px;
    }

    .category-list .top .link {
        display: none;
    }

    .category-list .top {
        padding-inline: 15px;
    }

    .category-list .container-category .categorie:first-child {
        margin-left: 15px;
    }

    .category-list .container-category .categorie:last-child {
        margin-right: 15px;
    }
}

/*--END-- CATEGORY LIST HOME */





/*--START-- SUPPORT PROJECTS */
.support-projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-block: 60px;
    background-color: var(--grey);
}

.support-projects>.top {
    padding-inline: 25px;
    display: flex;
    justify-content: space-between;
}

.support-projects .top .container-arrow {
    display: flex;
    gap: 20px;
}

.support-projects .top .arrow {
    display: block;
    cursor: pointer;
}

.support-projects .top .arrow rect,
.support-projects .top .arrow path {
    transition: .3s;
}

.support-projects .top .arrow:hover rect {
    fill: var(--dark-blue);
}

.support-projects .top .arrow:hover path {
    fill: var(--white);
}

.support-projects .bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.support-projects .bottom>img {
    width: 36%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 30px 30px 0;
    height: auto;
    max-height: 430px;
    min-width: 36%;
    z-index: 2;
}

.support-projects .bottom .container-slide {
    display: flex;
}

.support-projects .bottom .container-slide .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 37px 24px;
    background: var(--white);
    border-radius: 20px;
    margin-right: 20px;
    height: auto;
}

.support-projects .bottom .container-slide>:last-child {
    margin-right: 0;
}

.support-projects .bottom .slide .top {
    display: flex;
    gap: 9px;
    align-items: center;
}

.support-projects .bottom .slide .top p {
    font: var(--quote);
    color: var(--yellow);
    margin: 0;
}

.support-projects .bottom .slide .title {
    font: var(--font-h3);
    color: var(--dark-blue);
    margin: 0;
}

.support-projects .bottom .slide .description {
    font: var(--text);
    color: var(--dark-blue);
    margin: 0;
    flex: 1;
}

.support-projects .bottom .slide>svg {
    width: 100%;
    height: 7px;
}

.support-projects .bottom .slide .link p {
    margin-left: auto;
    font: var(--button);
}

@media (max-width: 1024px) {

    .support-projects .top .container-arrow,
    .support-projects .bottom>img {
        display: none;
    }

    .support-projects {
        align-items: center;
        padding-block: 40px;
        gap: 25px;
    }

    .support-projects .bottom .container-slide>:first-child {
        margin-left: 25px;
    }

    .support-projects .bottom .container-slide>:last-child {
        margin-right: 25px;
    }

    .support-projects .bottom {
        width: 100%;
    }

    .support-projects .bottom .container-slide {
        overflow: auto;
    }

    .support-projects .bottom .container-slide::-webkit-scrollbar {
        display: none;
    }

    .support-projects .bottom .slide .title {
        font: 600 18px/normal "WorkSans";
    }

    .support-projects .bottom .slide .description {
        font: 400 14px/normal "OpenSans";
    }

    .support-projects .bottom .container-slide .slide {
        min-width: 280px;
        width: 280px;
        max-width: 280px;
        padding: 25px 15px 30px;
    }

    .support-projects .bottom .slide .top p {
        font: 400 24px / normal "Caveat";
    }

    .support-projects .bottom .slide .top svg,
    .support-projects .bottom .slide .top img {
        width: 23px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .support-projects .bottom .slide .top p {
        font: 400 26px / normal "Caveat";
    }

    .support-projects .bottom .container-slide>:first-child {
        margin-left: 15px;
    }

    .support-projects .bottom .container-slide>:last-child {
        margin-right: 15px;
    }

    .support-projects .bottom .container-slide .slide {
        margin: 7.5px;
    }
}

/*--END-- SUPPORT PROJECTS */





/*--START-- ALTRAD PRESENT */
.word-altrad {
    margin: 25px;
    padding: 80px 25px;
    border-radius: 30px;
    background: var(--grey);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='827' height='351' viewBox='0 0 827 351' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3295_904)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M853.401 376.386C853.987 376.994 854.572 377.603 855.157 378.213C871.398 396.621 870.57 397.114 876.357 406.09C878.991 410.177 881.919 412.074 878.217 411.963C876.379 411.907 876.837 410.564 856.928 403.271C855.14 402.616 841.481 397.611 834.766 394.577C833.53 394.221 832.294 393.865 831.059 393.509C828.946 392.425 772.616 372.188 738.183 362.051C669.049 341.699 639.853 342.339 631.952 339.619C630.892 339.253 630.927 339.531 618.027 338.103C602.359 336.369 504.674 325.559 421.051 333.3C376.067 337.464 376.116 337.076 359.538 339.458C338.625 342.463 338.604 342.432 336.909 343.134C335.168 343.211 335.25 343.209 333.56 343.625C328.031 344.436 327.95 344.451 327.466 344.543C325.267 344.921 325.251 344.435 323.203 345.386C323.172 345.388 304.729 348.152 275.566 354.968C243.747 362.405 243.999 363.33 241.233 363.971C240.363 364.235 239.493 364.5 238.623 364.763C234.894 365.842 206.539 374.036 192.436 379.641L191.48 380.324C189.717 379.887 187.959 379.221 187.659 379.107C187.56 378.188 187.962 378.176 187.469 377.339C186.861 376.31 187.817 375.971 181.545 363.615C171.181 343.201 171.208 343.217 170.76 342.425C169.954 340.756 169.983 340.774 168.516 339.74C167.172 333.633 166.125 334.203 163.229 328.804C161.897 326.629 162.015 326.666 160.421 324.586C160.103 324.198 159.762 323.783 157.077 319.274C153.788 313.751 154.057 313.667 150.145 308.471C149.2 307.072 148.256 305.674 147.311 304.274C135.859 286.363 106.34 252.346 86.6557 237.57C85.3899 236.619 85.3555 236.735 70.6335 225.945C69.5817 225.24 68.5292 224.536 67.4774 223.831C55.397 215.408 55.204 215.834 46.8135 211.74L43.8237 209.752C43.079 209.371 37.0718 206.298 34.2467 205.543C27.76 203.811 28.3636 202.542 21.9348 200.612C20.7172 200.189 19.5005 199.767 18.2828 199.344C16.3494 198.421 -2.19169 192.945 -13.9604 194.984C-20.5372 196.125 -16.9434 192.216 -16.6434 192.123C-14.7211 191.527 -14.6578 192 8.41347 189.859C10.1328 189.656 11.5996 189.519 11.8763 189.493C17.2798 189.117 57.3149 183.199 76.074 184.235C76.3577 184.25 114.674 185.752 117.106 186.352C125.14 188.337 118.964 179.655 118.624 179.177C117.776 177.984 118.565 177.656 110.092 162.995C109.425 161.881 108.758 160.768 108.093 159.654C105.312 152.199 71.9241 98.2565 38.2853 64.7748C10.2241 36.8454 10.8191 36.2258 -24.7239 7.90748C-28.4566 4.93339 -49.3668 -11.7261 -73.7828 -26.0432C-74.3548 -26.4774 -74.3109 -26.3434 -74.7903 -26.7092C-74.9477 -26.8289 -74.9335 -26.8225 -76.7282 -28.2411C-77.3585 -28.5719 -77.1839 -28.6035 -84.5262 -32.5357C-85.9821 -33.3884 -87.438 -34.243 -88.894 -35.0975C-98.8921 -43.4524 -171.174 -78.2337 -190.377 -84.5789C-198.241 -87.1778 -197.754 -88.7899 -203.39 -89.1244C-203.623 -89.1382 -211.871 -92.6625 -212.606 -92.9758C-213.005 -93.1473 -250.539 -105.89 -252.248 -106.244C-253.695 -106.545 -281.466 -114.494 -284.004 -115.221C-317.188 -124.72 -333.648 -123.81 -329.492 -127.591C-329.005 -128.035 -311.014 -126.506 -297.374 -126.743C-286.632 -126.929 -278.079 -126.205 -276.407 -126.063C-273.693 -125.834 -254.845 -125.249 -252.969 -125.19C-249.659 -125.088 -242.776 -124.113 -241.516 -124.24C-236.225 -124.771 -197.102 -119.241 -195.227 -119.09C-185.435 -118.296 -125.915 -104.383 -119.572 -101.688C-115.511 -99.9641 -114.838 -102.075 -67.5151 -83.478C-65.2821 -82.325 -65.355 -82.4874 -62.8645 -81.7561C-61.7631 -81.1777 -61.6484 -81.5804 -48.5723 -75.6355C-46.0505 -74.4893 -45.8708 -75.1917 -43.3742 -73.8363C-37.3805 -70.5846 -36.2909 -72.9395 33.7597 -37.5609C34.2936 -37.2889 38.2763 -35.2535 40.2118 -33.7589C47.6983 -30.0217 47.5255 -29.9466 55.1245 -26.2481L58.0535 -24.1087C58.8542 -23.7233 59.6548 -23.3395 60.4563 -22.9549C60.8936 -22.6797 100.38 0.0158365 110.766 7.70928L113.598 10.0304C128.747 19.2407 143.353 31.2281 145.807 33.2436C146.73 34.0559 147.653 34.8683 148.576 35.6815C159.846 43.6654 199.124 80.4972 204.556 87.5795C210.003 94.6795 228.7 114.802 230.853 117.121C233.906 121.055 233.827 121.009 237.226 124.71C256.99 149.634 257.671 148.958 277.238 173.987C277.812 174.601 278.385 175.217 278.959 175.832C286.547 183.946 285.455 187.173 296.575 187.021C321.689 186.676 386.533 192.081 405.853 195.424C408.145 195.821 408.175 195.459 434.622 199.513C485.346 207.289 535.452 221.079 538.5 222C541.548 222.921 542.5 223.09 545.46 223.932C548.42 224.775 558.49 226.976 566.711 229.715C574.931 232.453 573.134 231.452 584.107 234.861C595.079 238.269 655.576 260.566 657.788 261.52C660 262.473 661.941 263 664.5 264C667.059 265 671 267 673.5 268C676 269 676.648 269.5 680.866 271.006C685.084 272.512 719.17 287.324 720.5 288C721.83 288.676 722.526 288.933 724.5 290C726.474 291.067 728.675 292.218 730.5 293C728.561 292.172 732.325 293.782 730.5 293C732.439 293.828 735 295 739.116 297.072C743.232 299.144 757.284 306.425 759.577 307.57C761.87 308.716 761.5 308.5 763 309.5C764.5 310.5 763.539 309.959 766.5 312C769.461 314.041 772.605 314.991 775.893 316.937C779.182 318.883 776.367 317.095 779.161 318.978C781.954 320.861 797.842 329.15 826.101 351.502C828.419 353.335 841.493 363.675 853.401 376.386Z' fill='%23F1F3F3'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3295_904'%3e%3crect width='827' height='351' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto 100%;
    order: 1;
}

.word-altrad .container {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    align-items: center;
    gap: 19px;
    position: relative;
}

.word-altrad .container::after {
    display: none;
}

.word-altrad .container .title {
    font: var(--font-h2);
    color: var(--dark-blue);
    margin: 0;
}

.word-altrad .container .description {
    font: var(--text);
    color: var(--dark-blue);
    margin: 0;
    text-align: center;
}

.word-altrad .container .scribe-text {
    position: absolute;
}

.word-altrad .container .scribe-text.scribe-text-left {
    top: 32px;
    left: 22px;
    transform: translate(-100%, -100%) rotate(-15deg);
}

.word-altrad .container .scribe-text.scribe-text-right {
    top: 37%;
    right: 12px;
    transform: translate(100%, -100%) rotate(19deg);
}

.word-altrad .container .scribe-text.scribe-text-left svg {
    margin-top: -5px;
    transform: rotate(15deg);
    position: absolute;
    right: -8px;
}

.word-altrad .container .scribe-text.scribe-text-right svg {
    margin-top: -3px;
    transform: rotate(-19deg);
    position: absolute;
    right: 22px;
}

.word-altrad .container .scribe-text p {
    max-width: 125px;
    font: var(--quote-big);
    color: var(--green);
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.8px;
}

.word-altrad .container .scribe-text.scribe-text-left p:after {
    display: block;
    position: absolute;
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='55' height='26' viewBox='0 0 55 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.014 25.1299C15.294 25.2972 14.3817 25.2221 14.9965 25.4626C14.8727 25.4866 14.7461 25.5115 14.6223 25.5358C14.5856 25.4378 14.5485 25.34 14.5114 25.2419C14.6777 25.2042 14.8465 25.1666 15.014 25.1294C15.014 25.1296 15.014 25.1297 15.014 25.1299ZM15.1887 23.8711C15.0443 24.1624 14.5555 24.2614 15.1007 24.4988C15.1387 24.3993 15.1782 24.2997 15.216 24.2003C15.4045 24.2676 15.595 24.3352 15.7835 24.4027C15.8488 24.3628 15.9141 24.3228 15.9791 24.2833C16.0708 24.4494 16.1618 24.6161 16.2536 24.7828C16.177 24.7609 16.0996 24.7387 16.0234 24.7169C15.7313 24.8667 15.4684 24.9154 15.0664 24.9595C15.1037 24.998 15.1411 25.0362 15.1784 25.0747C14.9705 25.0157 14.7628 24.9571 14.5563 24.8989C14.7292 24.8232 14.9242 24.7393 15.0854 24.6693C14.8111 24.4154 14.3523 24.5863 14.1153 24.6546C13.791 24.7479 13.8586 24.6176 13.618 24.6842C13.5797 24.6947 13.581 24.7939 13.5047 24.8C13.4105 24.8074 13.2951 24.8126 13.1808 24.8127C12.8216 24.8132 12.4622 24.7639 12.7873 24.5674C12.9173 24.5651 13.041 24.5546 13.1641 24.5393C13.6466 24.4794 14.0896 24.3476 14.5936 24.377C14.4144 24.118 14.7405 24.0101 15.1887 23.8711ZM11.9142 19.0174C11.8178 19.2322 11.4438 19.4101 11.169 19.4829C11.1687 19.483 11.1684 19.4832 11.1682 19.4834C11.1094 19.4981 10.8955 19.4321 11.0664 19.3282C11.3371 19.1653 11.6292 19.3011 11.6645 19.0593C11.7458 19.0481 11.8288 19.0314 11.9142 19.0174ZM12.4974 18.6323C12.7026 18.5835 12.7316 18.8062 12.4932 18.8894C12.4933 18.8895 12.4933 18.8897 12.4934 18.8898C12.3949 18.9241 12.477 18.6815 12.2567 19.0136C12.1272 18.9439 11.9981 18.8879 11.8687 18.8234C11.9446 18.7729 12.0169 18.7233 12.0933 18.6734C12.152 18.8847 12.293 18.6813 12.4974 18.6323ZM12.4686 24.7038C12.4505 24.8944 12.5774 24.885 12.8019 25.0021C12.5979 25.0089 12.3923 25.0156 12.1875 25.0224C12.2825 24.916 12.3739 24.8102 12.4686 24.7038ZM17.2481 24.5011C17.2484 24.5011 17.2487 24.5011 17.249 24.5011C17.315 24.469 17.3809 24.4369 17.4458 24.4053C17.4879 24.4714 17.5296 24.5373 17.5718 24.6034C17.806 24.5323 18.0416 24.4616 18.2755 24.3907C18.2531 24.5976 17.8282 24.577 17.5995 24.7288C17.2512 24.6781 17.0791 24.5646 17.0507 24.3907C17.1161 24.4274 17.1816 24.4645 17.2481 24.5011ZM51.6483 1.79634C51.7042 1.71494 51.7564 1.63482 51.8068 1.55543C51.7046 1.56528 51.6004 1.58238 51.4863 1.59214C51.3076 1.92233 51.2146 1.72243 50.8724 1.86429C49.8408 2.29344 50.2551 2.55187 49.1077 2.37307C49.8881 2.11359 49.4824 1.98042 49.8847 1.61436C50.0361 1.72452 49.6914 2.22542 50.0325 2.17752C50.4938 1.83225 50.9705 1.49426 51.5173 1.17992C51.4911 1.1609 51.4647 1.14182 51.4382 1.12291C51.3521 1.17263 51.2528 1.2273 51.1741 1.27428C51.2401 1.17331 51.329 1.06461 51.4034 0.95961C51.3321 1.16005 51.6245 0.955156 51.6446 1.14791C51.6556 1.23297 51.5552 1.39353 51.4933 1.50137C51.7284 1.4613 51.9776 1.41199 52.2054 1.37248C52.1139 1.47752 52.0295 1.5798 51.928 1.68819C51.8312 1.72609 51.7475 1.75844 51.6503 1.79637C51.6496 1.79636 51.649 1.79635 51.6483 1.79634ZM6.37912 17.2453C6.60884 16.9736 7.12348 16.7858 7.46096 16.9106C7.09989 17.0223 6.73794 17.1345 6.37912 17.2453ZM17.023 24.2476C17.0579 24.2794 17.0918 24.311 17.1268 24.3429C16.9801 24.4093 16.8313 24.4755 16.6849 24.5421C16.6528 24.4477 16.6202 24.3532 16.5871 24.2592C16.7316 24.2551 16.8781 24.2514 17.023 24.2476ZM8.63707 21.7462C8.55214 21.835 8.53334 21.8477 8.4129 21.9525C8.41309 21.9524 8.41327 21.9524 8.41346 21.9523C8.36224 21.978 7.92673 22.4445 7.89815 22.381C8.11421 22.047 8.32033 21.8501 8.52341 21.6537C8.56238 21.6835 8.59658 21.7172 8.63707 21.7462ZM10.0395 24.7236C10.0398 24.7238 10.0402 24.7239 10.0405 24.7241C10.13 24.7365 10.2166 24.7594 10.3057 24.7629C9.97453 24.879 9.92582 24.6718 9.60453 24.7123C9.27941 24.7455 9.01387 24.8394 8.70816 24.4381C8.87463 24.4522 9.01429 24.4198 9.13565 24.3917C9.60717 24.5797 9.7246 24.4619 10.0638 24.3596C10.0558 24.4812 10.0479 24.602 10.0395 24.7236ZM46.7758 2.98508C46.7555 3.14304 46.6284 3.0433 46.6196 3.04482C46.6197 3.04461 46.6198 3.04441 46.6198 3.0442C46.0377 3.40255 46.6706 2.94166 46.0759 3.14239C46.1499 3.07686 46.2207 3.01044 46.2976 2.94348C46.4579 2.95563 46.6239 2.97536 46.7758 2.98508ZM26.7999 11.3643C26.7766 11.33 26.7522 11.2962 26.7288 11.2619C27.0734 11.1067 27.0924 10.9188 27.4399 10.9158C27.2266 11.0652 27.0122 11.2153 26.8001 11.3647C26.8 11.3646 26.7999 11.3644 26.7999 11.3643ZM10.4006 20.737C10.2365 20.9065 10.075 21.0607 9.91481 21.1744C9.77423 21.2749 9.6447 21.3431 9.45984 21.4201C9.45948 21.4202 9.45912 21.4203 9.45876 21.4203C9.43425 21.4299 9.47627 21.2877 9.43732 21.2909C9.37397 21.3568 9.31579 21.4286 9.25952 21.4943C9.20716 21.4484 9.15511 21.4023 9.1028 21.357C9.30598 21.2153 9.51396 21.0791 9.73007 20.9425C9.67548 20.9331 9.62062 20.9244 9.56651 20.9149C9.59694 20.887 9.62786 20.859 9.6593 20.8307C9.77812 20.7215 9.91264 20.6031 10.038 20.4933C10.0483 20.6242 10.0502 20.7614 10.0589 20.8946C10.1773 20.838 10.2864 20.7881 10.4006 20.737ZM32.7026 9.13313C32.6238 9.11906 32.706 9.00078 32.5961 9.00724C32.4864 9.01415 32.3465 9.16743 32.3361 9.03399C32.456 8.96223 32.5816 8.88544 32.7041 8.81203C32.1954 8.78735 31.8619 9.16203 31.7412 8.90812C32.1721 8.79547 32.4866 8.61925 32.8446 8.37714C32.9178 8.58854 32.6078 8.93576 32.9363 9.02002C32.859 9.05715 32.7785 9.0973 32.7033 9.13231C32.7031 9.13258 32.7029 9.13285 32.7026 9.13313ZM23.0575 21.294C23.3164 21.3058 23.9068 21.2032 24.2359 21.3269C24.3167 21.3574 24.5922 21.7671 24.5919 21.8218C24.5875 22.0062 24.2613 22.0375 24.6135 22.1508C24.4958 22.1543 24.3817 22.1634 24.2651 22.169C24.2884 22.2923 24.3115 22.4154 24.334 22.5383C24.4757 22.517 24.618 22.4955 24.7596 22.4738C24.7674 22.5146 24.7751 22.5555 24.7829 22.5964C24.2718 22.607 24.5764 22.7594 24.3142 22.9118C24.5597 22.9816 24.8071 23.051 25.052 23.1208C24.9112 23.1144 24.7455 23.1108 24.6215 23.1025C24.609 23.3126 24.9033 23.2569 24.9548 23.2948C25.2441 23.5091 23.7901 23.426 23.6772 23.7338C23.91 23.7632 24.1538 23.7916 24.3916 23.8206C24.3243 23.8595 24.2562 23.8986 24.1888 23.9375C23.6468 23.7373 23.0421 23.6744 22.4127 23.5561C22.3562 23.566 22.2999 23.5761 22.2442 23.5855C22.2627 23.6799 22.2804 23.774 22.2989 23.8684C22.2137 23.8813 22.1273 23.8942 22.0421 23.9072C22.2874 23.5899 21.9388 23.6013 21.5137 23.4201C21.735 23.3056 22.0133 23.3662 21.9897 23.1623C21.2241 23.3357 20.3175 23.1342 19.5741 23.3311C19.3891 23.3799 19.3973 23.6432 18.9599 23.6309C18.9739 23.6016 18.975 23.5492 18.9835 23.5108C18.2326 23.6582 17.7771 23.7475 16.9893 23.6461C17.0378 23.7392 17.0856 23.8328 17.1341 23.9259C17.299 23.873 17.4632 23.8195 17.6276 23.7669C17.7463 23.9197 17.5803 23.9938 18.0767 23.9767C18.4825 23.9631 18.2389 23.9014 18.3481 23.8517C18.4964 23.784 18.6305 23.9047 18.7901 23.8294C18.9131 23.7717 18.7744 23.6463 19.1005 23.67C18.9739 23.8408 18.8465 24.0171 18.7194 24.1901C18.6391 24.1548 18.5595 24.1188 18.4794 24.083C18.5579 24.036 18.6353 23.9896 18.7142 23.9426C18.4345 24.031 18.1709 24.1146 17.8819 24.207C17.9689 23.9624 17.6712 24.0624 17.5082 24.0964C17.2554 24.1495 17.4678 23.976 17.3019 24.0093C17.1353 24.0432 16.9623 24.2351 16.6596 24.2064C16.8169 24.093 16.5939 24.0046 16.6327 23.9038C16.6713 23.8029 16.9902 23.7693 16.6793 23.6722C16.092 23.7766 16.7465 24.1305 16.3508 24.2068C15.8764 24.299 15.7374 23.6881 15.8747 23.5497C15.9823 23.4408 16.3704 23.4465 16.4799 23.3385C15.7789 23.1777 15.788 23.5488 15.6725 23.626C15.2544 23.9078 15.512 23.1919 15.0135 23.4693C15.017 23.3374 15.0193 23.2188 15.0232 23.0922C14.9359 23.1203 14.879 23.1549 14.7737 23.1789C15.0988 23.4203 14.8426 23.4213 14.7103 23.4281C14.5026 23.4389 14.8296 23.5484 14.7762 23.5833C14.6314 23.6766 14.3967 23.6491 14.5453 23.7548C14.4787 23.7055 14.4059 23.6563 14.337 23.6076C14.0984 23.6851 13.5604 24.2647 14.0942 24.1248C14.0542 24.3312 13.8757 24.2426 13.7374 24.2192C13.5994 24.1959 13.6094 24.3255 13.4891 24.3084C13.0077 24.2407 13.305 24.0003 13.3708 23.8219C13.2464 23.8532 13.1721 23.8801 13.1253 23.904C12.9347 24.0005 13.1908 24.0477 12.4673 24.1586C12.3891 24.3059 12.8173 24.4302 12.4736 24.5344C12.3924 24.2922 12.1239 24.133 11.6141 24.0811C11.5693 24.1406 11.5225 24.2005 11.4761 24.2599C11.1863 24.047 11.3186 23.8056 10.8166 24.1088C11.0738 23.5777 10.8936 23.9222 10.4343 23.7205C10.3408 23.6794 10.5506 23.568 10.4227 23.5156C10.3616 23.492 10.2283 23.5752 10.0846 23.5108C10.0173 23.4795 9.70958 23.2731 9.50419 23.3436C9.64041 23.6116 9.17856 23.7766 9.54132 24.0246C9.18378 23.9724 8.85178 23.8977 8.7198 23.7867C8.58259 23.6574 8.7644 23.7822 9.17242 23.695C9.0263 23.5904 8.86614 23.4261 8.90381 23.3282C8.83392 23.3449 8.75637 23.2482 8.75009 23.1162C8.96177 23.1763 8.94288 23.2299 9.17879 22.8843C9.09423 23.0465 9.03059 23.2671 9.08822 23.2896C9.1296 23.2965 9.17364 23.2896 9.21397 23.2934C9.15475 23.3689 9.1752 23.1929 9.28982 23.0312C9.39742 22.8641 9.53611 22.7061 9.57456 22.6333C9.65844 22.4819 9.41636 22.6838 9.41547 22.6128C9.41515 22.0141 9.61598 22.2768 9.79074 22.0347C9.89603 21.892 9.54816 22.112 9.60628 22.0404C9.81518 21.7839 10.0668 21.8478 10.307 21.7018C10.3213 21.6933 10.3356 21.6839 10.35 21.6736C10.3231 21.6662 10.2963 21.6589 10.2695 21.6514C10.1266 21.6188 9.98535 21.5843 9.84685 21.5494C9.91747 21.4976 9.99279 21.4426 10.0712 21.3846C10.2613 21.2441 10.4691 21.0855 10.6286 20.936C10.7178 20.8533 10.5866 20.8245 10.5989 20.8078C10.6663 20.7186 10.9473 20.4609 10.987 20.4341C11.2475 20.2575 11.3242 20.3709 11.5877 20.2061C11.4921 20.2828 11.4035 20.354 11.3141 20.4271C11.3939 20.6407 11.4738 20.8541 11.5561 21.0667C11.8009 20.9214 12.0592 20.7703 12.3124 20.6257C12.0906 20.681 11.875 20.734 11.6516 20.7937C11.8389 20.4538 12.0194 20.1224 12.2069 19.7896C12.4117 19.7895 12.6284 19.7826 12.8299 19.7862C13.2142 19.5117 12.9076 19.1769 13.3013 19.3937C13.4018 19.2929 13.5045 19.1912 13.6093 19.089C13.621 19.1474 13.6329 19.2056 13.6448 19.2639C13.7752 19.144 13.8982 19.0295 14.0255 18.9122C13.771 18.8346 13.5165 18.7455 13.2612 18.6763C13.5319 18.4609 13.6179 18.6057 13.6834 18.6149C13.8525 18.6422 14.0025 18.3775 14.1479 18.4103C14.1965 18.4222 13.9685 18.6877 14.1322 18.7381C14.1671 18.7458 14.7766 18.927 14.964 18.6912C14.9163 18.6208 14.8447 18.5422 14.7878 18.4686C15.0904 18.2301 15.4723 18.5207 15.4936 18.6519C15.6206 18.4768 15.8746 18.3212 15.8392 18.1849C15.9248 18.1316 16.0104 18.0786 16.0973 18.0248C16.1697 18.3645 16.5094 18.0997 16.394 17.8384C16.2359 17.9206 16.0792 18.002 15.9249 18.083C15.8662 17.7151 15.2962 17.7981 16.4229 17.5253C16.6957 17.5785 16.0852 17.6896 16.3021 17.7222C16.5986 17.6437 16.8123 17.4465 17.1246 17.4155C17.5096 17.3803 17.1997 17.7269 17.8276 17.1464C15.9907 17.5996 17.8749 16.7253 18.556 16.1783C19.0008 16.5014 19.7101 16.2926 20.5178 15.6956C20.3601 15.6228 20.1224 15.8303 19.9388 15.8772C19.7572 15.923 19.8914 15.7579 19.6618 15.8079C19.4324 15.8578 18.972 16.0073 18.723 16.0321C18.8577 15.8687 19.6057 15.2547 19.1588 15.7487C19.635 15.6471 19.9016 15.6634 20.425 15.414C20.477 15.1423 20.4084 15.0259 20.9044 14.7575C20.7474 15.1788 21.4145 15.0632 21.4329 15.4034C21.044 15.5264 21.1023 15.1557 20.8303 15.1363C20.8044 15.1336 20.5039 15.378 20.425 15.414C20.8873 15.4746 21.0517 15.5018 20.9947 15.8958C21.2189 15.7452 21.3817 15.7053 21.3323 15.5578C21.4125 15.5909 21.493 15.6239 21.5725 15.6574C21.6487 15.6155 21.7154 15.5736 21.7981 15.5318C21.5769 15.386 21.8651 15.3961 21.9688 15.2237C22.0749 15.05 21.7818 14.996 22.2076 14.7722C22.04 14.798 21.8887 14.8242 21.7283 14.8499C21.9735 14.6548 22.2255 14.4568 22.4743 14.2616C22.216 14.2352 21.6961 14.2679 21.6225 14.0964C21.7807 14.0932 22.1659 13.7551 22.2091 13.7273C22.3847 13.6155 22.338 13.7717 22.3532 13.7671C22.669 13.6689 22.8926 13.51 23.0849 13.6118C23.2664 13.4293 23.4516 13.3867 23.6829 13.2648C23.8102 13.1978 23.7265 13.0936 23.8131 13.0778C24.3871 12.9751 23.9825 13.3653 24.8064 12.5957C24.6486 12.5724 24.4911 12.5467 24.3331 12.5228C24.4269 12.4376 24.5204 12.3525 24.6151 12.2671C24.6953 12.2458 24.7745 12.2252 24.8547 12.2039C24.9407 12.3817 25.0266 12.5599 25.1127 12.7376C25.197 12.7079 25.2818 12.6777 25.3664 12.6479C25.2379 12.733 25.1096 12.8182 24.9822 12.9031C24.9851 12.9404 24.9891 12.9773 24.992 13.0146C25.218 12.9625 25.4442 12.9113 25.6721 12.8595C25.6457 12.796 25.6191 12.732 25.5927 12.6685C26.0975 12.527 26.1288 12.5765 26.4849 12.1929C26.8251 12.03 26.9722 11.6405 27.1164 11.4372C27.2033 11.4382 27.2906 11.4396 27.3784 11.4402C27.3989 11.3671 27.42 11.294 27.4406 11.2208C27.5649 11.2496 27.6883 11.2788 27.8115 11.3078C27.7835 11.1214 27.7855 11.0578 27.4101 11.1667C27.4328 10.9069 28.0883 10.7051 28.3728 10.6548C28.5865 10.6175 28.4563 10.8856 28.4895 10.8951C28.6013 10.9278 28.8849 10.7211 28.9563 10.702C29.2567 10.6205 29.4499 10.5204 29.7174 10.4423C29.7697 10.4272 29.9562 10.4717 29.9694 10.4698C30.0682 10.4465 30.3159 10.3961 30.3421 10.3859C31.6905 9.86798 30.0732 10.0383 31.3201 9.53271C31.2554 9.48744 31.1939 9.44126 31.1299 9.39567C31.2211 9.34996 31.3131 9.30419 31.4038 9.2589C31.5443 9.25794 31.4446 9.41572 31.6435 9.23529C31.6626 9.3184 31.6816 9.40156 31.6997 9.48463C31.7824 9.39805 31.8619 9.31347 31.9475 9.22585C32.2292 9.4175 32.8504 9.21463 32.9455 9.54522C32.9777 9.65758 32.6062 9.95216 32.878 9.96714C33.068 9.90972 32.8901 9.83705 32.9607 9.7979C33.4714 9.51758 33.5198 9.70796 33.716 9.56674C33.7164 9.56646 33.7168 9.56618 33.7172 9.5659C33.7182 9.47473 33.7203 9.38128 33.7219 9.28897C33.8139 9.27552 33.9061 9.26202 33.9989 9.24834C33.9958 9.18876 33.9935 9.12875 33.9905 9.06916C33.9114 9.0994 33.8226 9.1339 33.7499 9.16146C33.7622 8.91932 34.638 8.43561 34.3624 8.75543C34.2502 8.88533 33.9781 8.96843 34.2436 9.1322C34.4729 8.99287 34.7353 8.83907 34.9782 8.69517C35.0079 8.74237 35.037 8.7899 35.0667 8.83711C35.3993 8.65637 34.9977 8.58841 34.9519 8.47971C35.03 8.44274 35.1091 8.40584 35.1873 8.36898C35.2419 8.40373 35.2957 8.44151 35.3512 8.4741C35.3213 8.3946 35.2883 8.19406 35.5542 8.16097C35.7254 8.14032 35.5686 8.43914 35.8479 8.2889C35.7747 8.17609 35.6067 8.07174 35.9144 7.89577C36.0003 8.00961 36.0938 8.10763 36.175 8.23108C36.5256 7.93985 36.7925 8.05955 37.2064 7.72066C37.4676 7.50648 37.7511 7.01476 38.1478 7.42975C38.3729 7.35273 38.2527 7.2582 38.3064 7.2039C38.559 6.94766 38.8865 7.08819 38.9488 7.07896C39.3509 7.0189 39.4794 6.87251 39.8248 6.86244C39.7716 6.77718 39.7278 6.69385 39.6788 6.6096C39.4582 6.8582 39.3204 6.90621 38.9249 7.03231C39.0459 6.9617 39.1667 6.89086 39.2873 6.82069C39.2362 6.75472 39.1854 6.68866 39.1352 6.62277C38.0676 7.39773 38.1566 6.82162 39.1102 6.31716C39.2513 6.4204 39.3953 6.52208 39.5368 6.62573C40.0299 6.18451 40.3712 6.25845 41.0406 6.04311C41.1198 6.01742 41.3682 5.82708 41.4901 5.7745C41.4878 5.77477 41.4856 5.77504 41.4833 5.77531C41.5078 5.61484 41.3813 5.59533 41.3229 5.48354C41.3834 5.44275 41.4438 5.40208 41.5041 5.36145C41.6863 5.39246 41.6638 5.48558 41.9436 5.35129C41.87 5.27789 41.7969 5.2043 41.7231 5.13099C42.0359 5.0046 42.2857 5.01796 42.5644 4.86131C42.5279 4.9142 42.4919 4.96699 42.4553 5.01997C43.131 4.8553 42.8222 5.57613 43.2057 5.12821C43.2547 5.16161 43.3029 5.19579 43.3517 5.22923C43.1513 5.3198 42.9624 5.40573 42.7665 5.49497C42.7876 5.56094 42.8082 5.62676 42.83 5.69241C43.0371 5.58945 43.2378 5.48855 43.4486 5.38463C43.3067 5.48935 43.1689 5.5927 43.0305 5.69632C43.2867 5.63213 43.551 5.56516 43.8103 5.5004C43.4552 5.36529 43.7856 5.20417 43.6306 4.99431C44.1408 5.02185 44.5909 5.14424 45.2074 4.71971C45.3306 4.63509 45.1964 4.49791 45.6539 4.55287C45.4616 4.32656 45.8944 4.02185 45.7397 3.79595C45.6064 3.8602 45.4751 3.91868 45.3513 3.98259C45.5305 4.01321 45.6451 4.24128 45.4492 4.3964C45.1981 4.5946 44.7138 4.59141 44.8339 4.84727C44.7163 4.8781 44.6078 4.9113 44.4929 4.94345C44.5135 4.86065 44.533 4.77783 44.5526 4.69542C44.2777 4.91821 44.061 4.96351 43.8501 4.85594C44.2091 4.67399 44.5731 4.49137 44.9323 4.31126C44.8718 4.32152 44.8105 4.332 44.7523 4.34188C44.9718 4.06526 44.6191 4.01715 45.1385 3.77805C45.1645 3.85626 45.1912 3.93428 45.2174 4.01287C45.3304 3.7341 45.8627 3.53363 45.6032 3.36107C45.7927 3.37249 45.8425 3.40631 45.8849 3.24427C46.3689 3.2671 46.735 3.38972 46.684 3.71934C46.8262 3.61587 46.9664 3.51317 47.1035 3.41178C46.9864 3.37085 46.8684 3.33064 46.7497 3.29036C47.0218 3.19342 47.3013 3.09392 47.5757 2.99632C47.6862 3.2059 47.0697 3.26172 47.3048 3.39815C47.3523 3.42541 47.4695 3.28504 47.5165 3.29287C48.0143 3.38124 47.3085 3.44678 47.4975 3.58643C48.131 3.41473 47.745 3.91074 48.4951 3.33558C48.5408 3.39104 48.5884 3.44719 48.6322 3.50291C48.9174 3.40135 48.8456 3.26448 49.0867 3.14427C49.24 3.06831 49.5151 3.25363 49.634 3.01433C49.6513 2.97197 49.2518 2.76851 49.8634 2.55847C50.3418 2.39429 50.2289 2.68368 50.5099 2.66815C50.7915 2.65235 51.2738 2.13197 51.5687 2.41306C51.4257 2.41399 51.2267 2.4592 51.0742 2.47287C51.04 2.56127 51.006 2.64876 50.9704 2.73722C51.2705 2.52915 51.6583 2.50228 51.8403 2.25454C52.3835 2.33188 52.8094 1.91555 52.5678 1.69286C52.4375 1.78663 52.6467 1.84508 52.4036 1.84865C52.3575 1.79289 52.3069 1.73917 52.2653 1.68174C52.6303 1.55557 52.8651 1.46284 52.7837 1.71688C52.8418 1.70011 52.883 1.68973 52.952 1.66819C52.9078 1.5237 52.8616 1.37937 52.816 1.23539C52.8606 1.19999 52.9496 1.14491 52.9479 1.12616C52.9443 1.13105 52.9386 1.1335 52.9006 1.1648C52.8812 1.18479 52.8484 1.19892 52.7921 1.30267C52.7666 1.35443 52.7326 1.45132 52.7593 1.57366C52.785 1.69831 52.875 1.78737 52.9215 1.81767C53.1336 1.93388 53.1438 1.87806 53.1745 1.88636C53.1973 1.8828 53.2025 1.87924 53.2045 1.8769C53.1972 1.86992 53.1862 1.86385 53.1699 1.85928C53.1401 1.8493 53.0786 1.84862 53.0506 1.83907C53.0839 1.60649 53.2279 1.5364 52.7931 1.55289C52.7553 1.55305 52.71 1.55467 52.6541 1.55847C52.6757 1.63796 52.6966 1.71737 52.7183 1.79686C52.212 1.83874 52.1404 1.65246 51.5437 1.84377C51.9191 1.42859 52.3114 1.83979 52.1496 1.28925C52.2864 1.28719 52.3852 1.29725 52.5325 1.29275C52.5273 1.20752 52.5215 1.12233 52.5147 1.03757C51.8772 1.27204 51.0464 2.10465 50.5103 1.89152C50.4752 1.94884 50.4376 2.00089 50.4015 2.06201C49.9219 1.98236 49.9113 2.50091 49.4034 2.36345C49.3501 2.34903 49.3031 1.87954 48.7772 2.06215C48.8086 2.11521 48.8458 2.20942 48.8794 2.27825C48.7526 2.2795 48.6221 2.28013 48.4937 2.28103C48.4902 2.34027 48.4856 2.39981 48.4821 2.45948C48.6831 2.41879 48.8972 2.37443 49.0963 2.33448C48.9404 2.40336 48.7795 2.47393 48.6157 2.54542C48.8635 2.56246 48.9593 2.53339 48.8727 2.71282C48.6817 2.78201 48.5078 2.84639 48.3246 2.91318C48.3167 2.95467 48.3091 2.99655 48.3011 3.03807C48.4245 3.11552 48.547 3.1907 48.6688 3.2704C48.1621 3.33481 47.7396 3.46292 47.3004 3.37278C47.2258 3.3577 47.4064 3.14911 47.0123 3.41023C46.9827 3.3393 46.9526 3.28361 46.924 3.21845C46.4703 3.5866 46.2632 3.58493 45.6749 3.6086C46.0734 3.63411 45.729 3.64447 45.661 3.74715C45.6149 3.81766 45.8552 3.7334 45.8445 3.79539C45.8343 3.85679 45.5857 4.17032 45.8639 4.11059C46.3759 3.46721 46.7299 3.9309 47.5139 3.45211C47.4011 3.54975 47.2829 3.64926 47.1696 3.74712C47.2417 3.76644 47.3113 3.78263 47.3913 3.80207C46.8872 3.86703 47.1397 3.8485 46.967 3.97726C46.7992 4.1045 46.4465 4.27902 46.2257 4.36924C46.1536 4.39843 46.2009 4.2755 46.0306 4.3193C45.915 4.34889 45.6445 4.59455 45.5159 4.44651C45.4344 4.34942 45.8409 3.88247 45.1451 4.10345C44.9813 4.03483 45.3203 3.96496 45.3247 3.94906C45.3413 3.8005 44.8909 3.83529 44.7224 3.99807C44.7091 4.01173 44.8978 4.06363 44.7401 4.15739C44.3606 4.38218 44.0977 4.33738 43.7858 4.26291C43.8188 4.4557 43.5374 4.78755 43.1015 4.85054C43.0968 4.9102 43.0932 4.97001 43.0885 5.03008C43.145 4.9814 43.2014 4.93315 43.2575 4.88459C43.3392 4.89518 43.4202 4.89609 43.5035 4.91268C43.0967 5.09156 43.1172 5.36517 42.9424 5.52304C42.3398 6.06411 42.553 5.25602 42.6433 5.09975C42.7496 5.11773 42.8543 5.14224 42.9598 5.16308C42.9294 5.10193 42.8987 5.04032 42.8691 4.97851C41.8192 5.31345 42.5741 4.61249 42.0088 4.66011C41.9753 5.01899 41.5912 5.17435 41.0337 5.13013C40.9797 5.149 40.925 5.16678 40.8709 5.1861C40.8765 5.23512 40.899 5.30561 40.8937 5.34074C40.3144 5.58352 40.0486 5.13146 39.9796 5.10254C39.6655 4.97678 39.5597 5.32217 39.4864 5.3481C39.178 5.45677 39.0427 5.36121 38.7663 5.50835C38.4668 5.66761 38.7149 5.69516 38.6454 5.81227C38.5896 5.90551 38.3414 5.99767 38.2594 6.10195C38.2825 6.03062 38.3105 5.95896 38.3332 5.88747C37.9753 5.91373 37.6819 5.92172 37.3002 6.0215C37.0104 6.58183 36.4213 5.97845 36.7523 6.51435C37.1212 6.44124 37.3425 6.44407 37.5796 6.53218C37.3524 6.62509 37.1232 6.71807 36.895 6.81126C36.8069 6.76887 36.7389 6.72188 36.6378 6.68229C36.5069 6.87317 36.0834 6.94334 35.9365 7.03373C35.2511 7.45642 35.556 7.61456 34.7521 7.44119C35.2305 7.24784 35.1699 7.05909 35.6627 6.93152C35.5155 6.82968 35.278 6.93576 35.3861 6.72343C34.9295 6.91203 35.1268 7.00843 34.9846 7.19464C34.8619 7.3552 34.5453 7.46233 34.6091 7.6002C34.5517 7.53148 34.5024 7.46296 34.445 7.39432C34.1413 7.49143 33.8369 7.58793 33.5326 7.68522C33.6363 7.56162 33.7399 7.43789 33.8436 7.31471C33.7357 7.31463 33.6276 7.31473 33.5196 7.31467C32.8523 7.80838 31.4123 7.74691 31.8225 8.32606C31.468 8.46083 31.3974 8.39425 31.1628 8.33432C31.1567 8.39008 31.1486 8.43741 31.1442 8.4987C30.8946 8.52133 30.7737 8.76163 30.5532 8.77884C30.3329 8.79639 30.2272 8.63894 30.2895 8.94006C30.1302 8.89841 29.9765 8.87055 29.819 8.83484C29.7599 8.9264 29.7007 9.01715 29.6424 9.10801C29.5065 9.11276 29.3705 9.11769 29.2349 9.12231C29.2126 9.28252 28.7034 9.37734 28.5155 9.53947C28.2628 9.45421 28.1184 8.98012 27.6643 9.21652C27.7137 9.32982 27.7628 9.44285 27.8122 9.55615C27.6952 9.56614 27.5744 9.57744 27.4551 9.58815C27.4364 9.55199 27.4185 9.51556 27.3998 9.4794C27.4603 9.47334 27.5201 9.46743 27.5808 9.46171C27.511 9.41255 27.4424 9.36334 27.3735 9.31387C27.2342 9.46327 27.0952 9.61256 26.9562 9.76184C27.2073 9.76255 27.4595 9.7629 27.7126 9.76291C27.451 9.94007 27.2239 9.91729 27.0053 10.0917C26.738 9.998 26.7885 9.87956 26.8209 9.67626C26.7453 9.71658 26.6687 9.75663 26.5934 9.79686C26.5911 9.60446 26.4216 9.54284 26.896 9.4089C26.8479 9.36899 26.7998 9.33162 26.7519 9.28947C26.6773 9.32167 26.614 9.29505 26.5358 9.34094C26.3222 9.46642 26.2393 9.83171 26.2897 9.93475C26.316 9.98875 26.5114 9.80808 26.5275 9.89107C26.5657 10.0938 26.014 10.1712 26.8317 10.1292C26.6229 10.3318 26.5335 10.2568 26.2459 10.3079C26.2881 10.3662 26.3295 10.4242 26.3709 10.4828C26.2329 10.4932 26.0953 10.5037 25.9582 10.5139C26.0298 10.1238 25.0513 10.2937 25.8048 9.73501C25.5498 9.7988 25.296 9.86211 25.0383 9.92578C25.0793 9.87515 25.1205 9.82483 25.1616 9.77414C25.2815 9.75638 25.4002 9.73868 25.5176 9.72124C25.3666 9.69979 25.2119 9.6799 25.0583 9.65923C24.7666 9.83645 24.6819 9.99457 24.585 10.1873C24.9835 10.1805 24.818 10.0707 25.0949 9.95151C25.1143 10.0482 25.1546 10.1301 25.1604 10.2362C24.9508 10.0893 24.516 10.3808 24.4093 10.4247C24.0763 10.5609 24.2846 10.2864 24.0547 10.3541C23.8248 10.422 23.5933 10.6191 23.3506 10.4879C23.3871 10.5926 23.4361 10.6975 23.4795 10.7898C23.4348 10.8088 23.3966 10.8228 23.3639 10.8327C23.1422 10.8996 23.162 10.7878 23.1254 10.7839C22.455 10.7016 22.2106 11.0249 21.5508 11.2611C21.6453 11.2676 21.74 11.2704 21.8354 11.2744C21.4037 11.6561 21.7177 11.4825 22.1818 11.4188C21.76 11.5261 21.5942 11.788 21.3174 11.9368C21.0401 12.0858 20.5232 12.1391 20.3121 12.1208C20.6894 11.8679 21.1634 11.8092 21.6133 11.6314C21.5276 11.5398 21.4487 11.4642 21.3583 11.3624C21.1464 11.677 20.9354 11.5768 20.8339 11.5755C20.5356 11.5719 20.6052 11.7634 20.3778 11.605C20.4068 11.6748 20.4304 11.7338 20.458 11.7989C19.8824 11.9454 19.2445 12.0044 18.9593 12.3842C18.8724 12.2218 18.7956 12.0631 18.7028 11.8987C18.5089 12.1015 18.2616 12.0322 18.0705 12.1248C17.8808 12.2171 17.9995 12.3333 17.7836 12.4592C17.7431 12.4825 17.6293 12.422 17.5404 12.5202C17.4508 12.6189 17.2022 13.2239 17.0254 12.8173C16.8268 12.8766 16.6293 12.9207 16.4298 12.9745C16.6147 12.8915 16.8022 12.8083 16.9828 12.7265C16.7899 12.6744 16.5954 12.623 16.3992 12.5718C16.4064 12.6693 16.414 12.7684 16.4217 12.8644C16.0177 13.1104 15.6487 13.0613 15.2183 13.2323C15.146 13.261 15.3773 13.3868 15.0334 13.4424C14.6853 13.4993 14.3462 13.2359 13.8198 13.5393C13.7932 13.5548 13.7076 13.8625 13.4526 13.7458C13.3945 13.7194 13.5686 13.6008 13.4479 13.5797C13.3243 13.5596 12.8419 13.6595 12.7678 13.5441C12.7864 13.5873 12.8296 13.6247 12.8576 13.6659C12.7842 13.7117 12.7124 13.7571 12.6366 13.8032C12.6049 13.7267 12.5726 13.6503 12.5411 13.5743C12.1343 13.8989 11.9873 14.2707 11.278 14.3784C11.5025 14.4351 11.7291 14.4917 11.9565 14.5474C11.9848 14.451 12.014 14.3536 12.0409 14.2576C12.3597 14.1954 12.694 14.1282 13.0127 14.0658C13.0362 13.9586 13.059 13.8519 13.0827 13.7446C13.1697 13.731 13.2562 13.7171 13.3438 13.7033C13.3431 13.7758 13.342 13.848 13.3404 13.9208C13.503 13.8533 13.6607 13.7869 13.8196 13.7204C13.6105 14.2114 12.8735 13.9738 13.0192 14.2861C12.9296 14.2581 12.8424 14.229 12.7508 14.2012C12.7664 14.3695 12.5994 14.3707 12.3267 14.4266C12.4112 14.4861 12.5019 14.5426 12.5819 14.6043C12.291 14.5728 11.8329 14.7241 11.5538 14.7627C11.4314 14.7796 11.5131 14.6293 11.4742 14.6264C11.2761 14.6097 10.989 14.9157 10.914 14.9212C10.4585 14.9565 10.0641 14.6613 9.66998 15.0539C10.1757 14.9683 9.90173 15.0227 10.1157 15.1097C10.1822 15.1372 10.8329 15.0393 10.0414 15.235C9.94569 15.2588 8.44865 15.4243 8.8541 15.0823C8.64434 15.2157 8.48771 15.3439 8.2966 15.4758C7.6237 15.0999 7.95189 15.5445 8.18283 15.7742C8.09884 15.8007 8.02149 15.8271 7.93313 15.8536C8.03067 15.5101 7.08434 15.775 6.8093 16.0159C6.7174 16.0962 7.04262 16.0993 6.80963 16.2166C6.68686 16.2314 6.54319 16.2459 6.41233 16.2604C6.6475 16.3888 6.31425 16.5651 6.37502 16.7491C6.10092 16.651 5.82004 16.353 5.88869 16.1255C5.72336 16.2588 5.5605 16.3911 5.39541 16.5246C5.49639 16.5424 5.5964 16.5601 5.69632 16.5782C5.04884 16.6446 4.34308 17.1437 4.09783 16.792C4.01737 16.819 3.93611 16.8458 3.856 16.8726C3.85055 16.9459 3.84599 17.0191 3.84057 17.0924C3.45624 17.1445 3.07343 17.1956 2.68925 17.2474C3.00368 17.1097 3.05422 16.9926 3.419 16.9671C3.26418 16.9307 3.10811 16.8941 2.95565 16.8569C2.49973 17.2142 2.46954 17.3691 1.67458 17.5387C1.63869 17.5463 1.001 17.5491 0.975995 17.5384C0.861494 17.4894 0.968246 17.3374 0.915905 17.311C0.770407 17.2367 -0.00123196 17.1703 0.000116303 17.1255C0.0206239 16.5737 2.34354 15.8784 2.96355 15.6658C9.39933 13.4669 15.8604 11.8758 22.2886 9.79479C22.3543 9.77318 22.3024 9.70848 22.3296 9.69651C22.4987 9.62321 22.7082 9.68371 22.7751 9.66793C22.9181 9.63382 22.8078 9.55187 22.9102 9.51965C22.923 9.51568 22.9357 9.51171 22.9484 9.50776C23.9754 9.18857 24.9774 8.94017 26.0045 8.59689C26.0727 8.57408 26.0293 8.68106 26.1453 8.62804C26.2058 8.59992 26.3557 8.40956 26.4946 8.36361C26.9789 8.20355 27.4037 8.11545 27.9157 7.95166C28.1972 7.8615 28.6225 7.73934 28.9355 7.63826C29.074 7.59358 29.2 7.48826 29.3369 7.4428C29.5312 7.37835 29.5296 7.51165 29.562 7.50966C29.7035 7.50097 29.6796 7.36275 29.8052 7.32653C30.0389 7.25958 30.0793 7.34412 30.3715 7.24344C30.5809 7.17114 31.0397 6.94915 31.2985 6.84464C31.9521 6.75069 32.7201 6.46265 33.2887 6.24518C33.625 6.11647 33.6959 6.23028 33.8355 6.18563C34.3255 6.02771 34.6517 5.75027 35.1109 5.59904C35.7242 5.39726 36.2963 5.33096 36.897 5.14874C36.9938 5.11932 36.9357 5.01288 37.0293 4.97998C37.3748 4.85872 37.8173 4.69564 38.1345 4.61284C38.4878 4.52035 38.6646 4.64552 38.9973 4.50308C39.0942 4.46139 39.0779 4.30765 39.239 4.23612C39.4968 4.12229 39.8262 4.15797 40.02 4.11215C40.2824 4.04978 40.0133 3.97319 40.364 3.8837C40.3784 3.88007 40.4632 3.96892 40.5352 3.94056C40.7461 3.85805 40.6934 3.78361 41.0157 3.69012C41.047 3.68138 41.4977 3.64875 41.5387 3.63621C41.7798 3.56149 42.2884 3.4389 42.4258 3.37192C42.9174 3.13273 42.461 3.10329 43.0074 3.30796C43.1774 3.16161 43.3438 3.01519 43.5224 2.86876C43.412 2.98752 43.9927 2.92453 44.0353 2.90323C44.344 2.74253 44.1089 2.66998 44.525 2.56256C44.0839 3.04174 45.0621 2.43631 45.304 2.35117C46.4423 1.94911 47.5128 1.69575 48.6701 1.32989C49.0465 1.21071 49.5435 0.983151 49.9686 0.852189C50.0638 0.822586 50.015 0.918071 50.0985 0.893747C50.1809 0.869211 50.0645 0.815436 50.1591 0.790712C50.7748 0.630093 51.2792 0.64335 51.7752 0.280349C51.8127 0.29961 51.8188 0.32197 51.8748 0.338646C51.9403 0.289138 52.0152 0.247736 52.0918 0.214335C52.1901 0.174453 52.2879 0.143372 52.3768 0.12116C52.5316 0.0824434 52.5597 0.0764075 52.8515 0.0266609C52.9042 0.0193851 52.9443 0.00559227 53.1267 -1.40118e-05C53.2324 0.0109877 53.3421 -0.0400091 53.7809 0.138439C53.8919 0.19034 54.0303 0.268477 54.1789 0.408371C54.317 0.528626 54.5399 0.838271 54.6034 1.14673C54.7407 1.81194 54.4705 2.19133 54.3629 2.35347C54.1071 2.67757 54.0241 2.68274 53.9536 2.73916C53.8876 2.78061 53.851 2.79876 53.8198 2.81462C53.7469 2.85031 53.7571 2.84314 53.7386 2.85093C53.6858 2.87086 53.6447 2.88362 53.5998 2.89759C53.5291 2.91748 53.4816 2.92657 53.4158 2.94261C53.1992 2.98824 53.0114 3.01891 52.8945 3.05018C52.3766 3.18667 52.2883 3.34935 51.9201 3.45824C51.423 3.60533 50.6344 3.63942 51.0845 3.89605C50.7722 4.02403 50.4504 4.14609 50.1093 4.23268C50.0705 4.24254 50.0614 4.13859 50.0457 4.14217C49.9467 4.16333 49.9424 4.26103 49.8844 4.28685C49.722 4.35872 49.9564 4.15702 49.729 4.27324C49.6088 4.33491 49.5609 4.43638 49.2039 4.57056C47.0688 5.37163 44.7376 6.22616 42.5545 7.06953C42.4052 7.12728 42.5391 7.17927 42.3495 7.24718C41.6869 7.48412 40.4684 7.79362 39.9137 8.04236C39.365 8.28832 39.5438 8.3697 39.2161 8.56733C39.1528 8.60567 39.1777 8.50788 39.1159 8.53173C38.7046 8.69131 38.1653 8.77624 37.8273 8.89562C37.6034 8.97457 37.6699 9.08526 37.5213 9.15686C37.2999 9.26326 37.0163 9.24209 36.8945 9.28864C36.3204 9.50968 35.9707 9.77065 35.4222 9.94759C35.4539 9.96458 35.4778 9.98266 35.5061 10.0006C35.0547 10.1901 34.6045 10.381 34.1556 10.5734C33.9805 10.6484 33.8058 10.7237 33.6313 10.7991C33.6709 10.8097 33.7096 10.821 33.7494 10.832C33.0157 11.14 32.9858 10.8503 33.2884 11.3584C33.2438 11.4008 33.1974 11.4477 33.1546 11.4876C33.052 11.2021 32.522 11.195 31.9303 11.3781C31.8866 11.3914 31.7333 11.7849 31.6192 11.4539C31.5827 11.5642 31.5643 11.6371 31.5348 11.7329C31.373 11.6906 31.211 11.6499 31.0484 11.6088C30.9909 11.6524 30.9324 11.696 30.875 11.7396C30.8941 11.806 30.931 11.8671 30.9385 11.9375C30.6466 12.0826 30.0061 12.2867 29.7761 12.404C29.208 12.6937 28.6982 13.1399 28.1637 13.1747C27.9537 13.2979 28.2285 13.3146 27.8967 13.4552C27.8307 13.4117 27.7681 13.3696 27.6996 13.325C27.5675 13.7254 27.4309 13.5864 27.0399 13.706C26.775 13.7871 26.6506 13.9304 26.4086 14.0331C26.3477 14.0589 26.3168 13.9749 26.2775 13.9974C26.1453 14.0725 25.8146 14.3727 25.7218 14.4226C24.869 14.8821 24.1282 15.2412 23.294 15.6332C23.2052 15.6751 23.3585 15.695 23.2666 15.7382C23.1187 15.8077 23.143 15.6434 23.0548 15.6814C22.809 15.7884 22.8721 15.9159 22.5479 16.0928C21.4767 16.6772 20.1941 17.24 19.0717 17.8468C19.0365 17.8661 19.0788 17.938 19.0411 17.9598C18.7931 18.1009 18.4971 18.1362 18.2697 18.2645C17.8981 18.4738 17.6798 18.7312 17.3153 18.9379C16.6025 19.3433 15.9466 19.6546 15.2224 20.0824C14.6279 20.4342 14.1278 20.7515 13.4963 21.1485C12.6691 21.6705 11.8589 22.2297 11.1286 22.8069C10.7156 23.133 10.2824 23.5162 10.1193 23.7416C10.0857 23.7807 10.0863 23.8337 10.1641 23.6534C10.1971 23.562 10.265 23.3593 10.2074 23.0426C10.1528 22.714 9.91925 22.4189 9.7836 22.316C9.49539 22.1025 9.49272 22.1594 9.52266 22.1503C9.55711 22.1547 9.64793 22.1643 9.74628 22.1686C10.6302 22.1988 11.857 22.082 13.0125 22.0609C13.0538 22.06 13.0951 22.0591 13.1366 22.0583C13.2232 22.0569 13.1924 22.1325 13.2186 22.1278C13.4683 22.0811 13.4838 21.9809 13.5849 22.1837C13.9016 22.125 13.9935 21.9633 14.38 21.955C14.5848 21.9508 14.4437 22.2002 14.7846 22.0588C15.0918 21.9317 14.7413 21.8132 15.6779 21.909C15.7028 21.9117 15.83 22.0543 16.0216 22.0082C16.2146 21.9625 15.9853 21.8653 16.4518 21.8157C17.5471 21.6996 18.9374 21.7866 20.2072 21.7167C20.2867 21.7121 21.052 21.6152 21.2023 21.5756C21.4937 21.4983 21.4298 21.3899 21.8099 21.3548C22.1031 21.3278 22.3481 21.4471 22.6929 21.4153C22.733 21.4115 22.7977 21.2822 23.0575 21.294ZM52.7393 1.12491C52.754 1.05164 52.7321 0.903129 52.7649 0.766108C52.7655 0.750376 52.7644 0.735832 52.759 0.724093C52.7541 0.71935 52.7599 0.709293 52.7371 0.713907C52.7256 0.71662 52.7093 0.721106 52.6718 0.741384C52.6309 0.774403 52.5821 0.758571 52.404 0.996413C52.3609 1.06291 52.3052 1.15856 52.2729 1.31522C52.2395 1.46787 52.2519 1.69814 52.3477 1.88695C52.5709 2.27726 52.7589 2.29449 52.8751 2.34954C53.1035 2.4174 53.154 2.39586 53.2061 2.40064C53.2938 2.39913 53.3035 2.39824 53.3129 2.40173C53.3193 2.40956 53.3153 2.4184 53.3077 2.42688C53.2553 2.46655 53.2006 2.48444 53.0716 2.48519C53.0291 2.48487 53.1462 2.17421 52.9635 2.1389C52.9497 2.1345 52.9338 2.13248 52.9147 2.13347C52.929 2.12668 52.9428 2.12017 52.9562 2.11392C53.0689 2.0666 53.1688 2.02823 53.2262 2.00603C53.2221 2.00205 53.2725 2.00684 53.1286 2.0076C53.0833 1.99439 53.0107 2.03461 52.8017 1.86689C52.6828 1.7835 52.5982 1.48244 52.6559 1.35008C52.6988 1.20867 52.7516 1.16323 52.7811 1.12876C52.8961 1.02264 52.8925 1.04698 52.9038 1.03696C52.9092 1.03668 52.8918 1.04707 52.8709 1.05804C52.8153 1.08572 52.7931 1.09901 52.7394 1.12537C52.7394 1.12522 52.7393 1.12506 52.7393 1.12491ZM24.9898 24.2035C24.6657 24.1865 24.3409 24.1697 24.0168 24.1528C24.239 24.0926 24.4613 24.0325 24.6828 23.972C24.7853 24.0491 24.8871 24.1264 24.9898 24.2035ZM28.6804 10.5807C28.6802 10.5808 28.6799 10.581 28.6796 10.5811C28.9624 10.3827 29.2503 10.1827 29.5336 9.98609C29.5195 10.041 29.5054 10.0961 29.4913 10.1509C29.2768 10.3264 29.0591 10.5039 28.8458 10.6801C28.7907 10.6469 28.7355 10.6138 28.6804 10.5807ZM26.4481 12.1609C26.2294 12.2092 26.2389 12.1068 26.0937 12.0822C26.0938 12.0823 26.0938 12.0825 26.0939 12.0826C26.0557 12.0764 25.9151 12.1233 25.8627 12.1452C25.9057 12.1855 25.9538 12.2225 25.9982 12.2617C25.6021 12.6034 24.4967 12.6206 25.572 11.8787C25.5855 11.9496 25.5991 12.0199 25.6124 12.0909C26.1757 11.7928 26.8877 11.6168 26.4481 12.1609ZM48.728 3.57244C48.2793 3.95242 48.1291 4.05007 47.4476 4.10149C47.5189 4.01132 47.5894 3.92141 47.6591 3.83175C47.783 3.86166 47.905 3.89173 48.0268 3.92236C48.027 3.92227 48.0273 3.92218 48.0276 3.92209C48.0272 3.84973 48.0268 3.77725 48.0255 3.70518C48.258 3.66139 48.5004 3.61458 48.728 3.57244ZM8.35575 22.8327C8.09756 22.8394 8.02924 22.8934 8.06151 22.8033C8.09924 22.7068 8.2215 22.5531 8.36432 22.3004C8.45544 22.1375 8.27797 22.2229 8.34492 22.1253C8.72585 21.6122 8.95319 21.8548 8.97406 22.0427C8.75752 22.2647 8.53585 22.4838 8.35633 22.8316C8.35614 22.832 8.35595 22.8324 8.35575 22.8327ZM21.2948 23.6638C21.2951 23.6638 21.2955 23.6638 21.2958 23.6638C21.3113 23.7744 21.109 23.8087 21.3402 23.9087C21.1662 23.9121 20.9919 23.9152 20.817 23.9188C20.8681 23.9073 20.9202 23.8962 20.9713 23.8847C20.9252 23.8477 20.8788 23.8102 20.8327 23.7731C20.7739 23.902 20.7147 23.8292 20.5306 23.7909C20.5844 23.9259 20.6379 24.061 20.6917 24.1959C20.4781 24.1604 20.2642 24.1248 20.0508 24.0895C20.0474 24.0553 20.0438 24.021 20.0404 23.9867C19.9617 24.0326 19.8832 24.0789 19.8043 24.1248C19.7815 24.0844 19.7595 24.0443 19.7367 24.0039C19.6409 24.0374 19.5452 24.0709 19.4492 24.1049C19.4172 24.0065 19.6288 23.9579 19.2523 23.9932C19.365 23.8883 19.4783 23.7837 19.5924 23.6789C20.1597 23.6725 20.7272 23.6677 21.2948 23.6638ZM11.4583 20.0662C10.9351 20.4356 11.0509 20.2741 11.0443 20.007C11.1808 20.0273 11.3194 20.0467 11.4583 20.0662ZM40.466 5.90081C40.5787 5.69055 40.6924 5.4818 40.8102 5.2757C41.1196 5.0609 41.5739 5.18299 41.3523 5.38822C41.0845 5.63535 40.7111 5.6249 40.466 5.90081ZM48.3182 2.81299C47.8673 2.90469 48.206 2.58398 48.2629 2.44939C48.437 2.56713 48.5972 2.49156 48.8698 2.41186C48.6225 2.51517 48.3918 2.79851 48.3184 2.81345C48.3183 2.81329 48.3183 2.81314 48.3182 2.81299ZM33.6587 8.53853C33.5482 8.58989 33.445 8.65692 33.3379 8.70081C33.285 8.7225 33.2312 8.73857 33.175 8.74438C33.1684 8.67156 33.2435 8.63127 33.293 8.5979C33.3441 8.56341 33.3677 8.53626 33.2449 8.48781C33.2351 8.48396 33.2244 8.47997 33.2127 8.47584C33.2201 8.4723 33.2276 8.46875 33.2351 8.4652C33.3328 8.41875 33.4308 8.3724 33.5277 8.32606C33.4963 8.43806 33.6138 8.4605 33.6581 8.53827C33.6583 8.53836 33.6585 8.53844 33.6587 8.53853ZM16.5963 16.7683C16.9938 16.7438 17.0122 16.6482 17.2714 16.3656C17.3847 16.4644 17.1222 16.8823 16.9181 17.0574C16.8125 16.9601 16.7043 16.8642 16.5963 16.7683ZM10.8021 15.4545C10.8281 15.258 11.4314 15.0502 11.7418 15.0115C11.714 15.0479 11.6862 15.0847 11.6587 15.1215C11.3758 15.2318 11.0838 15.3448 10.8021 15.4545ZM48.9986 2.37724C48.9532 2.38838 48.9103 2.40006 48.8698 2.41186C48.913 2.39379 48.9561 2.38112 48.9986 2.37724ZM39.0518 5.7313C39.1431 5.52386 38.701 5.60412 39.2373 5.50392C39.2373 5.50376 39.2372 5.50361 39.2372 5.50345C39.5912 5.43722 39.6695 5.42467 39.986 5.33816C39.9397 5.58212 39.3286 5.85791 40.2164 5.62366C40.228 5.62018 40.1653 5.50367 40.3124 5.47566C40.3577 5.46708 40.53 5.5244 40.7506 5.48703C40.8218 5.47486 41.3437 5.3439 40.6461 5.5673C40.713 5.7059 40.722 5.86482 40.7683 6.00516C40.5068 6.13315 40.2072 5.91524 39.9225 6.01321C39.4987 6.15977 39.3684 6.51755 39.167 6.16626C39.5008 5.95836 40.1171 5.76046 40.2682 5.96221C40.6183 5.85421 40.6612 5.63605 40.3488 5.63391C39.1858 6.13131 39.9321 5.46243 38.9248 5.94521C38.929 6.00161 38.9038 6.07176 38.926 6.11898C38.547 6.03599 39.0202 5.80514 39.0518 5.7313ZM41.6978 5.33369C41.5236 5.51094 41.3505 5.68884 41.1809 5.86508C41.1247 5.68403 41.1825 5.48721 41.4811 5.28048C41.5532 5.29841 41.626 5.31607 41.6978 5.33369ZM24.2154 10.916C24.2162 11.0238 24.1642 11.1391 24.1353 11.251C24.0966 11.2239 23.7912 11.2812 23.5192 11.3281C23.1509 11.393 22.8391 11.4404 23.2602 11.2577C23.2915 11.2441 23.3758 11.2311 23.4831 11.213C23.7382 11.171 24.1302 11.0989 24.2154 10.916ZM14.5204 18.1463C14.7176 18.1099 14.9117 18.0761 15.1046 18.0434C14.8863 18.2218 14.6562 18.4098 14.4387 18.5913C14.4652 18.4433 14.4919 18.2952 14.5204 18.1463ZM43.3377 4.96736C43.2628 4.99221 43.4557 4.76545 43.1741 4.89852C43.3576 4.73013 43.5307 4.58093 43.7077 4.4213C43.7944 4.45974 43.8794 4.49859 43.9677 4.53643C44.0019 4.47717 44.0369 4.41782 44.0709 4.35866C44.0763 4.46124 44.0842 4.56044 44.0885 4.66522C43.6595 4.60593 43.6683 4.85713 43.3377 4.96736ZM33.0922 9.58912C32.9443 9.42222 33.3947 9.08613 32.888 9.27201C32.9252 9.10319 33.0461 8.96984 33.3309 8.83178C33.3572 8.84281 33.3834 8.8538 33.4095 8.86479C33.451 8.88227 33.4925 8.89974 33.534 8.91734C33.4834 8.78369 33.5365 8.70258 33.6587 8.53853C33.6589 8.53862 33.6591 8.53871 33.6593 8.53879C34.0957 8.33824 34.0885 8.39366 34.2873 8.56344C33.7686 8.643 33.8397 8.84619 33.574 9.10097C33.5599 9.11453 33.5451 9.12757 33.5298 9.14019C33.3466 9.2908 33.0915 9.38207 33.0922 9.58912ZM25.8119 10.4115C25.5257 10.6895 25.8828 10.7524 25.2159 10.7626C25.2415 10.7068 25.2674 10.6513 25.293 10.5955C25.4667 10.5335 25.641 10.4718 25.8119 10.4115ZM31.1789 9.64599C31.3522 9.92828 31.7647 10.023 31.5981 9.51176C31.2532 9.54747 31.5244 9.75754 31.1789 9.64599ZM48.3527 3.34921C47.7465 3.55855 47.7387 3.16574 47.9122 2.90312C47.9743 2.95196 48.0363 3.001 48.0972 3.04991C48.1922 2.98186 48.2859 2.91427 48.3784 2.84765C48.3702 3.01453 48.3617 3.182 48.3527 3.34921ZM21.2959 14.8635C21.6175 14.43 20.7716 14.9912 21.0036 14.704C21.1886 14.4744 21.616 14.5183 21.5648 14.7122C21.4838 14.7591 21.3917 14.8105 21.2967 14.8631C21.2965 14.8632 21.2962 14.8634 21.2959 14.8635ZM23.7551 13.5229C23.5711 13.3349 23.7056 13.3486 23.3855 13.5614C23.2963 13.6205 22.4762 13.934 22.8966 13.9524C23.1751 13.8099 23.4654 13.6664 23.7551 13.5229ZM51.1954 2.38248C51.1493 2.28227 51.7246 1.85322 51.821 1.8866C51.821 1.88645 51.8209 1.88629 51.8209 1.88614C52.091 1.97409 51.4305 2.20173 51.7832 2.32787C51.0665 2.34248 51.035 2.85315 50.8874 2.23993C51.2625 2.09439 51.1174 2.27537 51.1954 2.38248ZM2.72192 17.3396C2.72163 17.3397 2.72133 17.3398 2.72103 17.3399C2.76517 17.3321 3.16522 17.3806 3.13801 17.4466C2.69767 17.5276 2.74565 17.4033 2.39743 17.6875C2.35982 17.6404 2.3258 17.594 2.28641 17.547C2.43408 17.4686 2.50313 17.3782 2.72192 17.3396ZM22.5303 11.2136C22.6757 11.1381 22.9945 11.1623 23.1713 11.0995C22.7401 11.711 21.9451 11.5156 22.5303 11.2136ZM15.1901 23.8706C15.1896 23.8707 15.1892 23.8709 15.1887 23.8711C15.1888 23.8709 15.189 23.8706 15.1891 23.8704C15.1894 23.8704 15.1898 23.8705 15.1901 23.8706ZM34.6701 7.66951C34.6411 7.64772 34.6221 7.62688 34.6112 7.60672C34.6106 7.6047 34.6099 7.60268 34.6093 7.60067C34.6285 7.62357 34.6484 7.64656 34.6701 7.66951ZM49.8827 2.82667C49.5698 2.76508 50.3906 2.2542 50.6806 2.22457C50.6821 2.2969 50.698 2.35797 50.6768 2.44821C50.4011 2.34554 49.93 2.83869 49.8827 2.82667ZM36.662 7.56013C37.3404 7.2824 36.6913 8.20368 36.4699 7.77658C36.4677 7.7674 36.6448 7.56815 36.662 7.56013ZM50.9773 2.02161C50.868 2.2557 51.2387 2.17108 50.6622 2.34924C50.6123 2.31733 50.5615 2.28561 50.5116 2.25372C50.6735 2.17394 50.8295 2.09615 50.9773 2.02161ZM41.4003 6.48932C42.2203 6.05553 42.9759 5.56971 42.2315 5.3213C42.1711 5.36229 42.1126 5.40195 42.0538 5.44234C42.1334 5.67425 41.8475 5.64259 41.492 5.77427C41.4775 5.88452 41.2897 5.98288 41.2849 6.07368C41.2738 6.24987 41.5363 6.2668 41.4003 6.48932ZM10.2894 23.6505C10.2751 23.6924 10.261 23.7345 10.2466 23.7759C10.1004 23.8236 9.95346 23.8687 9.80198 23.9093C9.82916 23.8302 9.85586 23.751 9.88204 23.6716C10.0197 23.6676 10.1556 23.6598 10.2885 23.6502C10.2888 23.6503 10.2891 23.6504 10.2894 23.6505ZM42.3962 4.5701C42.4538 5.03461 42.714 4.86318 43.2034 4.46408C42.9375 4.49839 42.6677 4.53398 42.3962 4.5701ZM27.7711 12.1907C27.6973 12.081 27.624 11.9716 27.5494 11.8624C27.3235 12.1216 27.4417 12.2311 27.6523 12.3219C27.6922 12.2781 27.7311 12.2345 27.7711 12.1907ZM23.7334 14.242C23.8617 14.2076 23.7548 14.1434 23.7679 14.1391C24.0865 14.04 24.1526 14.0608 24.4774 13.8087C24.5091 13.7618 24.5395 13.7139 24.571 13.6662C24.2814 13.5049 24.2272 13.6989 23.799 13.7348C23.9053 13.7864 24.0115 13.8382 24.1181 13.8902C23.9114 13.9721 23.7068 14.0537 23.5025 14.1353C23.4925 14.1729 23.4823 14.2103 23.4723 14.2479C23.5586 14.2458 23.6492 14.2467 23.7334 14.242ZM11.9742 23.6956C12.1906 23.6928 12.4064 23.69 12.62 23.6871C12.6235 23.6193 12.6267 23.551 12.6302 23.4832C12.4126 23.5539 12.1945 23.625 11.9742 23.6956ZM38.2594 6.10195C38.2504 6.12993 38.2418 6.15792 38.2351 6.18574C38.2274 6.15685 38.2382 6.129 38.2594 6.10195ZM2.07392 17.1458C1.82811 17.1695 1.49961 17.2991 1.2414 17.3653C1.30944 17.5217 1.94709 17.2839 2.20397 17.3147C2.23204 17.2747 2.1781 17.1356 2.07392 17.1458ZM47.5266 3.64148C47.4983 3.74223 47.4696 3.84271 47.4415 3.94341C47.3027 3.98568 47.1632 4.02777 47.0209 4.0715C47.0411 4.13775 47.0617 4.20454 47.0819 4.27079C47.655 3.95966 47.5905 4.19696 47.962 4.26786C47.8171 4.05914 47.6726 3.85022 47.5266 3.64148ZM18.7829 22.9474C18.3114 23.0076 18.1466 23.1003 18.4193 23.2996C18.5837 23.2471 18.7511 23.1947 18.9157 23.1425C18.8711 23.0775 18.8265 23.0124 18.7829 22.9474ZM30.0171 8.5492C29.664 8.7421 29.5727 8.47906 29.2516 8.7435C29.4641 8.7302 29.6771 8.71728 29.8896 8.70394C29.9321 8.65246 29.9751 8.60054 30.0171 8.5492ZM48.2571 1.97135C48.0771 1.92648 47.8998 2.46481 47.3622 2.27811C47.2872 2.4081 47.2495 2.52155 47.1872 2.64537C47.101 2.55927 47.0068 2.47427 46.9228 2.38836C46.9225 2.38845 46.9222 2.38855 46.9219 2.38864C46.5239 2.55248 46.8303 2.59784 46.8538 2.71066C46.8646 2.75712 46.5443 2.77493 46.6681 2.84433C46.8741 2.96547 47.4652 2.67185 47.5272 2.87934C47.2964 2.87792 46.8874 3.06905 47.0569 3.16702C47.2439 3.27423 47.5591 2.89615 47.8402 2.94552C47.3813 2.72734 48.1554 2.5954 48.3189 2.82258C48.6837 2.4938 48.2753 2.535 47.8211 2.68812C48.0378 2.40628 47.6614 2.6403 47.5507 2.49768C47.8025 2.31105 48.7791 2.09302 48.2571 1.97135ZM37.8804 7.99918C38.1667 7.86684 38.6609 7.79042 38.7961 7.54984C38.8746 7.40967 38.3886 7.52413 38.6442 7.25004C38.3661 7.37998 38.3262 7.46285 38.4264 7.57077C38.3684 7.61237 38.3093 7.65398 38.2511 7.6953C38.2111 7.68262 38.1705 7.67061 38.1305 7.65796C38.1182 7.72431 38.1055 7.79033 38.094 7.85636C38.0213 7.87415 37.9477 7.89233 37.8748 7.90986C37.8776 7.93955 37.8733 7.96815 37.8804 7.99918ZM19.2002 11.9547C19.2832 11.9272 19.3683 11.899 19.449 11.8717C19.43 11.8425 19.4088 11.8125 19.3882 11.7828C19.3726 11.7591 19.3571 11.7353 19.3416 11.7116C19.4176 11.79 19.8592 11.8221 19.9967 11.6703C20.0658 11.5941 19.8177 11.4774 20.1674 11.3346C19.9092 11.425 19.6777 11.5236 19.4343 11.6158C19.4402 11.5563 19.4451 11.4965 19.451 11.437C19.4508 11.4369 19.4507 11.4369 19.4505 11.4369C19.3638 11.4509 19.2789 11.4637 19.1897 11.4784C19.1929 11.6374 19.1968 11.7958 19.2002 11.9547ZM28.1131 12.3139C28.3333 12.0892 28.3995 11.9959 28.198 11.8982C28.1977 11.8982 28.1974 11.8983 28.197 11.8984C28.1305 12.0157 28.0642 12.1329 27.9983 12.2501C28.0363 12.2714 28.0743 12.2929 28.1131 12.3139ZM35.6416 6.32717C35.2381 7.15121 36.4755 6.33216 36.148 6.19887C36.1334 6.19265 35.7206 6.37897 35.6416 6.32717ZM48.533 3.49992C48.3746 3.56451 48.2013 3.63422 48.047 3.69752C48.1124 3.76016 48.1784 3.82228 48.2435 3.88506C48.3416 3.75619 48.4383 3.62739 48.533 3.49992ZM16.7145 22.7123C16.5256 22.5368 16.0502 22.4889 15.8292 22.6964C15.9504 22.7146 16.0723 22.733 16.1943 22.7514C15.9663 22.7831 15.7418 22.8173 15.513 22.8486C15.5114 23.1027 15.7701 22.944 16.1717 22.9983C16.2336 23.0071 16.6399 23.3069 16.7669 23.0649C16.7923 23.015 16.3726 22.9973 16.6582 22.8448C16.5309 22.8383 16.4199 22.8449 16.2994 22.8434C16.2883 22.7833 16.2773 22.7232 16.2654 22.6631C16.4152 22.6793 16.5649 22.6958 16.7145 22.7123ZM39.5623 7.2917C39.9672 7.14341 39.9798 7.02935 39.9961 6.82963C39.8181 6.92297 39.6363 7.01771 39.4599 7.11086C39.4944 7.17085 39.5277 7.23133 39.5623 7.2917ZM12.8394 22.841C12.6018 22.8266 12.7113 22.9659 12.618 22.9996C12.2661 23.1266 12.0143 23.0389 11.6666 23.1253C11.6883 23.0958 11.7083 23.0682 11.7293 23.0396C11.729 23.0396 11.7286 23.0396 11.7283 23.0396C10.0723 23.0022 10.9466 23.296 11.9438 23.1807C11.9706 23.2333 11.9966 23.2861 12.0235 23.3383C12.4656 23.2152 12.8762 23.0973 12.8394 22.841ZM40.9911 4.60682C40.9626 4.58024 41.0519 4.32564 40.7927 4.51378C40.6579 4.88693 40.988 4.61827 41.118 4.70411C41.0491 4.75769 40.9778 4.81112 40.9093 4.86456C41.4039 4.80107 41.457 4.70568 41.2124 4.54178C41.195 4.53106 41.0187 4.63356 40.9911 4.60682ZM37.8398 5.44339C37.9153 5.9063 38.4502 5.51771 38.3845 5.38741C38.3005 5.40802 38.2603 5.50323 38.1623 5.49786C38.0633 5.49276 38.008 5.39658 37.8398 5.44339ZM51.4242 2.8809C51.4437 2.87595 51.6857 2.99491 51.6153 2.85811C51.2675 2.60076 50.9294 2.97266 51.0446 3.06443C51.1887 3.00492 51.2515 2.92411 51.4244 2.88136C51.4243 2.88121 51.4243 2.88105 51.4242 2.8809ZM19.564 22.5155C19.5548 22.5027 19.0931 22.4366 19.0352 22.511C18.9884 22.5943 18.9666 22.6828 18.9322 22.7686C19.184 22.6828 19.698 22.7294 19.5631 22.5155C19.5634 22.5155 19.5637 22.5155 19.564 22.5155Z' fill='%2387B78A'/%3e%3c/svg%3e ");
    bottom: 0;
    transform: translateY(56%) rotate(15deg);
    left: 20%;
}

@media (max-width: 1024px) {
    .word-altrad .container .scribe-text.scribe-text-left svg {
        right: 5px;
    }

    .word-altrad .container .scribe-text.scribe-text-left p:after {
        bottom: 4px;
        transform: translateY(56%) rotate(15deg) scale(0.9);
        left: 19%;
    }

    .word-altrad .container {
        max-width: 480px;
    }

    .word-altrad .container .scribe-text.scribe-text-left {
        top: 25px;
        left: 38px;
    }

    .word-altrad .container .scribe-text p {
        max-width: 120px;
    }

    .word-altrad .container .scribe-text.scribe-text-right {
        top: 15%;
        right: 20px;
        transform: translate(100%, -100%) rotate(15deg);
    }

    .word-altrad .container .scribe-text.scribe-text-right svg {
        margin-top: 6px;
        transform: rotate(-30deg);
        position: absolute;
        right: 1px;
    }
}

@media (max-width: 768px) {
    .word-altrad .border-dark-button {
        color: var(--blue-green);
        padding: 13px 39px;
        width: 100%;
        border: 1.5px solid var(--blue-green);
        text-align: center;
    }

    .word-altrad .border-dark-button:hover {
        color: var(--white);
        background: var(--blue-green);
        border-color: var(--blue-green);
    }

    .word-altrad .container .scribe-text.scribe-text-right {
        display: none;
    }

    .word-altrad .container {
        gap: 15px;
    }

    .word-altrad .container .scribe-text.scribe-text-left {
        position: initial;
        transform: rotate(-15deg);
        position: relative;
        top: auto;
        left: auto;
        margin-top: 15px;
        margin-left: -70px;
    }

    .word-altrad .container .scribe-text.scribe-text-left p {
        line-height: 24px;
    }

    .word-altrad {
        margin: 15px;
        padding: 30px 25px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='487' height='244' viewBox='0 0 487 244' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3296_903)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M492.917 251.185C493.262 251.547 493.608 251.909 493.953 252.272C503.537 263.215 503.045 263.507 506.453 268.84C508.004 271.269 509.735 272.398 507.54 272.328C506.45 272.292 506.725 271.496 494.934 267.143C493.875 266.752 485.785 263.766 481.81 261.957C481.078 261.744 480.346 261.531 479.614 261.318C478.363 260.673 445.001 248.594 424.601 242.537C383.643 230.374 366.32 230.717 361.64 229.094C361.012 228.875 361.032 229.04 353.383 228.177C344.093 227.128 286.17 220.592 236.537 225.082C209.838 227.497 209.868 227.267 200.026 228.66C187.611 230.417 187.598 230.398 186.59 230.813C185.557 230.857 185.606 230.855 184.602 231.1C181.32 231.574 181.272 231.583 180.984 231.637C179.679 231.859 179.671 231.57 178.453 232.132C178.435 232.133 167.485 233.751 150.164 237.759C131.267 242.132 131.414 242.682 129.771 243.059C129.254 243.214 128.737 243.37 128.22 243.525C126.005 244.161 109.16 248.988 100.777 252.297L100.208 252.7C99.1636 252.439 98.1224 252.042 97.9447 251.974C97.8884 251.428 98.1273 251.422 97.8372 250.925C97.4793 250.313 98.0474 250.113 94.3607 242.773C88.2689 230.647 88.2852 230.656 88.0214 230.186C87.5482 229.194 87.5652 229.205 86.6978 228.59C85.9174 224.965 85.2944 225.301 83.5914 222.094C82.8075 220.802 82.8775 220.824 81.9375 219.587C81.7497 219.357 81.5485 219.11 79.9683 216.431C78.0326 213.15 78.1925 213.1 75.8858 210.012C75.3292 209.181 74.7731 208.35 74.2164 207.519C67.4722 196.876 50.0547 176.654 38.4176 167.861C37.6693 167.296 37.6486 167.364 28.9446 160.943C28.3226 160.524 27.7001 160.104 27.0781 159.685C19.9346 154.672 19.819 154.924 14.8526 152.484L13.0844 151.301C12.6436 151.074 9.08834 149.243 7.4144 148.792C3.57084 147.756 3.93251 147.003 0.123875 145.85C-0.597333 145.598 -1.31797 145.346 -2.03918 145.093C-3.18363 144.544 -14.1682 141.271 -21.1559 142.466C-25.0609 143.135 -22.9179 140.82 -22.7397 140.765C-21.5975 140.414 -21.5613 140.695 -7.8679 139.453C-6.84734 139.335 -5.97672 139.255 -5.8125 139.24C-2.60572 139.024 21.1624 135.561 32.2887 136.199C32.4569 136.209 55.1847 137.148 56.6258 137.507C61.3863 138.695 57.7466 133.535 57.5465 133.251C57.0466 132.542 57.5157 132.349 52.5297 123.638C52.1369 122.976 51.7446 122.315 51.3529 121.653C49.724 117.226 30.0666 85.1754 10.2032 65.2658C-6.36674 48.6579 -6.01198 48.291 -27.0195 31.4429C-29.2258 29.6735 -41.5846 19.7619 -56.0299 11.2359C-56.368 10.9776 -56.3424 11.0571 -56.6258 10.8395C-56.7188 10.7683 -56.7104 10.7721 -57.7712 9.92803C-58.1442 9.73098 -58.0406 9.71241 -62.3855 7.37C-63.2469 6.86215 -64.1083 6.35328 -64.9696 5.84441C-70.8779 0.874252 -113.663 -19.8545 -125.039 -23.6435C-129.696 -25.1955 -129.403 -26.1515 -132.746 -26.357C-132.884 -26.3654 -137.767 -28.467 -138.202 -28.6538C-138.439 -28.756 -160.671 -36.3639 -161.684 -36.5764C-162.541 -36.7568 -178.995 -41.5082 -180.499 -41.9425C-200.159 -47.6203 -209.927 -47.1006 -207.451 -49.3391C-207.161 -49.6022 -196.492 -48.6723 -188.399 -48.796C-182.025 -48.8935 -176.953 -48.4533 -175.962 -48.367C-174.352 -48.2272 -163.171 -47.8568 -162.059 -47.8198C-160.096 -47.755 -156.015 -47.168 -155.267 -47.2416C-152.126 -47.5499 -128.931 -44.2203 -127.819 -44.128C-122.012 -43.645 -86.7396 -35.3153 -82.9839 -33.708C-80.5798 -32.68 -80.1746 -33.9319 -52.1512 -22.8377C-50.8296 -22.1507 -50.8725 -22.2472 -49.3969 -21.8102C-48.7452 -21.4656 -48.676 -21.7044 -40.9349 -18.1605C-39.442 -17.4772 -39.3334 -17.8938 -37.8561 -17.0864C-34.3093 -15.1495 -33.6563 -16.5455 7.80385 4.5349C8.1198 4.69701 10.477 5.90973 11.621 6.79902C16.0521 9.02591 15.9494 9.07028 20.4473 11.2744L22.179 12.5475C22.653 12.7772 23.1269 13.0059 23.6013 13.2351C23.86 13.399 47.223 26.9154 53.3631 31.4935L55.0368 32.8744C63.998 38.3585 72.6302 45.4899 74.0807 46.6889C74.626 47.1721 75.1713 47.6553 75.7161 48.139C82.3803 52.8906 105.58 74.795 108.783 79.0044C111.994 83.2243 123.031 95.1882 124.302 96.5669C126.102 98.9047 126.055 98.8776 128.061 101.078C139.717 115.892 140.123 115.492 151.662 130.368C152 130.733 152.339 131.1 152.677 131.465C157.156 136.289 156.5 138.203 163.097 138.126C177.997 137.953 216.452 141.241 227.905 143.248C229.263 143.487 229.282 143.272 244.961 145.711C275.033 150.388 304.721 158.633 306.526 159.183C308.332 159.733 308.896 159.835 310.65 160.338C312.403 160.842 318.372 162.161 323.241 163.796C328.11 165.431 327.047 164.835 333.547 166.871C340.047 168.908 375.876 182.213 377.186 182.782C378.495 183.351 379.646 183.666 381.161 184.262C382.676 184.859 385.009 186.05 386.489 186.647C387.97 187.243 388.353 187.541 390.851 188.44C393.349 189.339 413.53 198.171 414.317 198.573C415.104 198.976 415.516 199.129 416.684 199.765C417.853 200.4 419.155 201.086 420.236 201.552C419.088 201.058 421.316 202.019 420.236 201.552C421.384 202.046 422.9 202.745 425.336 203.98C427.772 205.214 436.088 209.552 437.446 210.234C438.803 210.917 438.584 210.789 439.471 211.384C440.358 211.979 439.789 211.657 441.54 212.872C443.292 214.087 445.154 214.654 447.099 215.813C449.045 216.972 447.38 215.908 449.032 217.028C450.684 218.149 460.087 223.087 476.79 236.386C478.16 237.476 485.887 243.628 492.917 251.185Z' fill='%23F1F3F3'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3296_903'%3e%3crect width='487' height='244' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
        background-size: 488px auto;
    }

    .word-altrad .container .title,
    .word-altrad .border-dark-button {
        text-align: center;
    }

    .word-altrad .container .scribe-text.scribe-text-left svg {
        top: 4px;
        transform: rotate(-85deg) translateY(100%);
        right: 3px;
    }

    .word-altrad .container .scribe-text.scribe-text-left p:after {
        left: 36%;
    }

    .word-altrad .container .description {
        font: var(--text-small);
    }
}

/*--END-- ALTRAD PRESENT */




/*--START-- PRODUCT MINIATURE */
.product-miniature {
    flex-direction: column;
    background-color: var(--white);
    border-radius: 20px;
    overflow: visible;
    border: 1px solid var(--grey-2);
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-miniature .thumbnail-top,
.product-miniature .thumbnail-container {
    overflow: visible;
}

.product-miniature:has(.out_of_stock) .thumbnail-top::after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    border-radius: 18px 18px 0 0;
}

.product-miniature .thumbnail-container {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.product-miniature .thumbnail-top {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-miniature .thumbnail-top picture {
    display: block;
    background-color: var(--grey);
    width: calc(100% + 2px);
    height: calc(100% + 1px);
    display: block;
    margin-top: -1px;
    margin-left: -1px;
    border-radius: 18px 18px 0 0;
    aspect-ratio: 1/1;
}

.product-miniature .thumbnail-top picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-miniature .product-list-reviews {
    display: none;
}

.product-miniature .product-description::after {
    display: none;
}

.product-miniature .product-description {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.product-small .product-miniature .product-description,
.product-small .product-miniature .thumbnail-container {
    border-radius: 0 20px 20px 0px;
}

.product-small .product-miniature .thumbnail-container {
    flex-direction: row;
    display: flex;
    width: 430px;
    border-radius: 20px;
}

.product-small {
    width: 430px;
}

.elementor-element .product-small {
    border-radius: 20px;
}

.product-small .product-miniature .price-miniature-small {
    flex-direction: row;
    display: flex;
    gap: 10px;
    padding-top: 7px;
    align-items: center;
}

.product-small .product-miniature .product-description {
    padding: 13px 15px 13px 10px;
    gap: 3px;
    margin: 0 !important;
    width: inherit;
}

.product-small .product-miniature .product-description .product-price-and-shipping {
    gap: 0;
    align-items: center;
    flex-direction: column;
    margin: 0;
}

.product-small .product-miniature .product-add-to-cart {
    margin: 0;
    flex: 1;
}

.product-small .product-miniature .product-description .product-categorie {
    font-size: 15px;
    line-height: normal;
}

.product-small .product-miniature .product-description .product-title {
    max-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-small {
    padding: 0 !important;
}

.product-small .product-miniature .thumbnail-top picture {
    border-radius: 19px 0 0 19px;
}

.product-small .product-miniature .thumbnail-top {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 200px;
    margin-bottom: -1px;
    border-radius: 20px 0 0 20px;
}

.product-miniature .product-description .avis {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 15px;
}

.product-miniature .product-description .avis .number {
    margin: 0;
    font: var(--text-small);
    color: var(--dark-blue);
    text-decoration: underline;
}

.product-miniature .product-description .product-categorie {
    font: var(--text-small);
    color: var(--dark-blue);
    margin: 0;
    height: 25px;
    display: flex;
    align-items: center;
}

.product-miniature .product-description .product-title {
    font: var(--text-bold);
    color: var(--dark-blue);
    margin: 0;
    text-align: left;
    flex: 1;
    text-transform: initial;
}

.product-miniature .product-description .product-manufacturer {
    font: var(--text-bold);
    color: var(--red);
    margin: 0;
    text-decoration: underline;
}

.product-miniature .product-description .product-price-and-shipping {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-miniature .product-description .product-price-and-shipping .regular-price {
    font: var(--text-big);
    color: var(--grey-3);
}

.product-miniature .product-description .product-price-and-shipping .price {
    font: var(--text-big-bold);
    color: var(--dark-blue);
}

.flag-fr {
    position: absolute;
    top: -2.8px;
    right: -2.8px;
    z-index: 10;
}

.product-flags {
    top: 20px;
    left: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.product-flags .product-flag {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    position: relative;
}

.product-flag svg {
    z-index: 1;
    height: 35px;
    min-width: 0;
    width: 100%;
    position: absolute;
}

.product-flag p {
    z-index: 2;
    font: var(--label);
    color: var(--white);
    margin: 0;
    word-break: keep-all;
    position: relative;
    margin-top: 3px;
    margin-inline: 16px 14px;
    text-transform: initial;
}

.product-miniature .product-add-to-cart {
    margin-inline: 15px;
    margin-bottom: 10px;
}

.product-miniature .product-add-to-cart button {
    width: 100%;
    border-radius: 50px;
    background: var(--red);
    font: var(--button);
    padding-block: 15px;
    transition: .2s;
}

.product-miniature .product-add-to-cart button:hover {
    background-color: var(--dark-red);
}

.product-miniature .addtocompare,
.product-miniature .removetocompare {
    background: none !important;
    color: var(--dark-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline: 15px;
    padding: 0;
    margin-bottom: 15px;
    width: fit-content;
}

.product-miniature .removetocompare {
    position: initial;
}

.product-miniature .addtocompare svg path,
.product-miniature .addtocompare svg rect,
.product-miniature .removetocompare svg path,
.product-miniature .removetocompare svg rect,
#product .product-container .addtocompare svg path,
#product .product-container .addtocompare svg rect,
#product .product-container .removetocompare svg path,
#product .product-container .removetocompare svg rect {
    transition: .3s;
}

.product-miniature .addtocompare:hover svg path,
.product-miniature .removetocompare:hover svg path,
#product .product-container .addtocompare:hover svg path,
#product .product-container .removetocompare:hover svg path {
    fill: var(--white);
}

.product-miniature .addtocompare:hover svg rect,
.product-miniature .removetocompare:hover svg rect,
#product .product-container .removetocompare:hover svg rect,
#product .product-container .addtocompare:hover svg rect {
    fill: var(--dark-blue);
}

.product-miniature .addtocompare p,
.product-miniature .removetocompare p {
    margin-bottom: 0;
    position: relative;
    font: var(--text-semi-bold);
    color: var(--dark-blue) !important;
    transition: .3s;
}

.product-miniature .addtocompare p::after,
.product-miniature .removetocompare p::after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background: var(--dark-blue);
    transition: .2s ease-in-out;
    position: absolute;
    margin-top: -5px;
}

.product-miniature .addtocompare:hover p::after,
.product-miniature .removetocompare:hover p::after {
    width: 100%;
}

.product-miniature .addtocompare:hover p,
.product-miniature .removetocompare:hover p {
    text-shadow: 0 0 1px var(--dark-blue);
}

#product .js-product {
    border: 1px solid var(--grey-2);
}

#product .js-product:hover {
    border: 1px solid var(--dark-blue);
}

#product .js-product .product-miniature {
    border: none;
}

.product-miniature:hover {
    border: 1px solid var(--dark-blue);
}

@media (max-width: 1024px) {

    .product-small .product-miniature .thumbnail-container,
    .product-small {
        flex-direction: column;
        width: 220px;
        min-width: 220px;
        border-radius: 20px;
    }

    /* .product-small{
        overflow: hidden;
    } */

    .product-small .product-miniature .thumbnail-top {
        width: 220px;
        margin-bottom: -0;
    }

    .product-miniature:hover {
        border: 1px solid var(--dark-blue);
    }

    #product .js-product .product-miniature {
        border: none;
        overflow: hidden;
    }

    .available-parts .product-small .product-miniature .thumbnail-top {
        border-radius: 20px 20px 0 0;
    }

    .product-small .product-miniature .thumbnail-top picture {
        border-radius: 19px 19px 0 0;
        width: 220px;
    }

    .product-small .product-miniature .product-description {
        padding: 10px 15px 15px;
        gap: 5px;
        border-radius: 0 0 20px 20px;
    }

    .slider-minia-product {
        padding-block: 25px 20px;
    }

    .slider-minia-products .top,
    .expert-advice .top {
        margin-bottom: 20px;
    }

    .product-small .product-miniature .product-description {
        border-radius: 0 0 20px 20px;
    }

    .product-small .product-miniature .price-miniature-small {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-small .product-miniature .product-description .product-price-and-shipping {
        gap: 8px;
        flex-direction: row;
    }

    .product-small .product-miniature .product-add-to-cart {
        width: 100%;
    }
}

@media (max-width: 768px) {


    .product-small .product-miniature .thumbnail-container,
    .product-small {
        width: 200px;
        min-width: 200px;
    }

    .product-small .product-miniature .thumbnail-top {
        width: 200px;
        border: none;
    }

    .product-small .product-miniature .thumbnail-top picture {
        width: 200px;
    }

    .product-miniature .product-description .product-price-and-shipping .price,
    .product-miniature .product-description .product-price-and-shipping .regular-price {
        font-size: 18px;
    }

    .product-miniature .product-add-to-cart button {
        padding: 13px;
    }
}

/*--END-- PRODUCT MINIATURE */





/*--START-- PRODUCT PAGE */
#product .product-container {
    padding: 5px 30px 50px;
    display: flex;
    gap: 50px;
    border-bottom: 1px solid var(--grey-2);
}

#product .product-container>.left {
    padding: 0;
    width: calc(50% - 25px);
    position: sticky;
    height: fit-content;
    top: 170px;
}

#product .product-container>.right {
    width: calc(50% - 25px);
    padding: 0;
    padding-right: 20px;
}

#product .product-container::after {
    display: none;
}

#product .product-container .left .page-content {
    width: 100%;
    max-width: none !important;
}

#product .product-container .left .images-container {
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2;
}

#product .product-container .left .product-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

#product .product-container .left .thumb-container {
    width: 90px;
    height: 90px;
    background-color: var(--grey);
    border-radius: 5px;
    overflow: hidden;
}

#product .product-container .left .thumb-container picture {
    width: 100%;
    height: 100%;
}

#product .product-container .left .thumb-container img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border: none;
}

#product .product-container .left .thumb-container:has(.selected) {
    display: none;
}

#product .product-container .left .js-qv-mask {
    width: 90px;
    height: 290px;
    overflow: hidden;
}

#product .product-container .left .product-cover {
    width: calc(100% - 110px);
    border-radius: 20px;
    background-color: var(--grey);
    overflow: hidden;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product .product-container .left .product-cover img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    background: none;
}

#product .product-container .product-flags {
    left: 120px;
    z-index: 8;
}

#product .product-container .scroll-box-arrows {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 45px;
    display: flex;
    flex-direction: column;
    height: 394px;
    justify-content: space-between;
    pointer-events: none;
}

#product .product-container .scroll-box-arrows svg {
    cursor: pointer;
    pointer-events: auto;
}

#product .product-container .scroll-box-arrows svg path,
#product .product-container .scroll-box-arrows svg rect {
    transition: .3s;
}

#product .product-container .scroll-box-arrows svg:hover path {
    fill: white;
}

#product .product-container .scroll-box-arrows svg:hover rect {
    fill: var(--dark-blue);
}

#product .product-container:has(.product-images > :nth-child(4)) .scroll-box-arrows {
    display: flex;
    z-index: 8;
}

#product .product-container:not(:has(.product-images > :nth-child(4))) .scroll-box-arrows {
    display: none;
}

#product .product-container .left .js-qv-mask:not(:has(.product-images > :nth-child(2))) {
    display: none;
}

#product .avis-manufacturer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

#product .avis-manufacturer .manufacturer {
    font: var(--font-h3);
    color: var(--red);
    text-decoration: underline;
    margin: 0;
}

#product h1 {
    font: var(--font-h2);
    color: var(--dark-blue);
    text-transform: none;
    margin-bottom: 10px;
}

#product .product-container .product-description {
    font: var(--text);
    color: var(--dark-blue);
    margin-bottom: 12px;
}

#product .product-container .product-description * {
    font: var(--text);
    color: var(--dark-blue);
}

#product .product-container .product-price,
#product .product-container .container-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
}

#product .product-container .container-price {
    margin-bottom: 12px;
}

#product .product-container .klarna-onsite-messaging-container {
    margin: 0;
}

#product .product-container .klarna-onsite-messaging-container::part(osm-container) {
    border: none;
    padding: 0;
}

#product .product-container .klarna-onsite-messaging-container .text {
    font: var(--text);
    color: #414141B2;
}

#product .product-container .current-price,
#product .product-container .current-price-value {
    font: var(--price);
    color: var(--dark-blue);
    margin: 0;
}

#product .product-container .product-discount .regular-price,
#product .product-container .product-discount {
    font: var(--price);
    color: var(--grey-3);
    font-weight: 500;
    margin: 0;
}

#product .product-container .price-ecotax {
    font: var(--text-small);
    color: var(--dark-blue);
}

#product .product-container .price-ecotax span {
    text-decoration: underline;
}

#product .product-container .addtocompare,
#product .product-container .removetocompare {
    background: none !important;
    color: var(--dark-blue) !important;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-block: 20px;
    width: fit-content;
}

#product .product-container .removetocompare {
    position: initial;
}

#product .product-container .addtocompare p,
#product .product-container .removetocompare p {
    margin-bottom: 0;
    position: relative;
    font: var(--text-semi-bold);
    color: var(--dark-blue) !important;
    transition: .3s;
    text-decoration: underline;
}

#product .product-discounts {
    margin: 0;
}

#product .qty {
    margin: 0;
}

#product .qty>.input-group,
#modal-cart-preview .input-group {
    border: 1px solid var(--grey-3);
    padding: 13px 24px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product .qty .input-group #quantity_wanted,
#modal-cart-preview .input-group .js-cart-line-product-quantity {
    padding: 0;
    color: var(--dark-blue);
    font: var(--button);
    border: none;
    text-align: center;
    height: 20px;
    width: 50px;
}

#product .qty .input-group .input-group-btn-vertical,
#modal-cart-preview .input-group .input-group-btn-vertical {
    display: flex;
    flex-direction: row-reverse;
    gap: 55px;
    margin-top: -21px;
    align-items: center;
}

#product .product-quantity .input-group-btn-vertical .btn i,
#modal-cart-preview .input-group .input-group-btn-vertical .btn i {
    position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-cart-preview .input-group .input-group-btn-vertical .btn {
    display: flex;
    align-items: center;
}

#product .bootstrap-touchspin .input-group-btn-vertical .touchspin-up::after,
#modal-cart-preview .input-group .input-group-btn-vertical .touchspin-up::after {
    content: '+';
    color: var(--dark-blue);
    font: var(--button);
}

#product .bootstrap-touchspin .input-group-btn-vertical .touchspin-down::after,
#modal-cart-preview .input-group .input-group-btn-vertical .touchspin-down::after {
    content: '-';
    color: var(--dark-blue);
    font: var(--button);
}

#product .product-quantity .input-group-btn-vertical .btn,
#modal-cart-preview .input-group .input-group-btn-vertical .btn {
    border: none;
    padding: 0;
}

#product .product-quantity {
    display: flex;
    gap: 10px;
    align-items: center;
}

#product .product-quantity::after {
    display: none;
}

#product .product-quantity .add {
    flex: 1;
    margin: 0;
}

#product .product-container .flag-fr {
    top: -2.8px;
    right: -2.8px;
}

#product .product-quantity .add .btn {
    background-color: var(--red);
    font: var(--button);
    color: var(--white);
    width: 100%;
    border-radius: 60px;
    padding: 14px 40px;
    height: fit-content;
    transition: .3s;
}

#product .product-quantity .add .btn:hover {
    background-color: var(--dark-red);
}

#product .product-quantity .add .btn[disabled],
.product-miniature .product-add-to-cart button[disabled] {
    background-color: var(--grey-2);
    color: var(--grey-3);
    opacity: 1;
}

.product-thumbnail-container .add-to-cart-btn[disabled],
.product-thumbnail-container .add-to-cart-btn[disabled]:hover {
    background-color: var(--grey-2);
}

#product .accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#product .accordion-item {
    background-color: var(--grey);
    border-radius: 10px;
    overflow: hidden;
}

#product .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

#product .accordion-title {
    font: var(--text-bold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

#product .accordion-item .chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    transform: scale(-1);
}

#product .accordion-item.active .chevron {
    transform: scale(1);
}

#product .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#product .accordion-item.active .accordion-content {
    max-height: 400px;
}

#product .accordion-content-inner {
    padding: 0 24px 24px 24px;
}

#product .accordion-content ul {
    list-style: disc;
    margin-left: 20px;
}

#product .accordion-content li {
    font: var(--text);
    color: var(--dark-blue);
}

#product .accordion-content li::marker {
    font-size: 10px;
}

#product .accordion-content .link-anim {
    margin-block: 10px;
}

#product .accordion-content p {
    font: var(--text);
    color: var(--dark-blue);
}

#product .accordion-content p:last-child {
    margin-bottom: 0;
}

#product .accordion-content .link-anim p {
    font: var(--button);
    text-transform: uppercase;
    color: var(--dark-blue);
}



#product .related-product {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
}

#product .related-product .section-title {
    font: var(--text-bold);
    color: var(--dark-blue);
    margin-bottom: 10px;
}

#product .related-product .product-card {
    background-color: #ffffff;
    border: 1px solid var(--grey-2);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#product .related-product .product-image-container {
    width: 60px;
    height: 60px;
    background-color: var(--grey);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    border: none;
    padding: 0;
}

#product .related-product .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#product .related-product .product-info {
    flex: 1;
    min-width: 0;
}

#product .related-product .product-name {
    font: var(--text);
    color: var(--dark-blue);
    margin-bottom: 5px;
}

#product .related-product .product-price .current-price {
    font: var(--text-bold);
    color: var(--dark-blue);
}

#product .related-product .product-price .regular-price {
    font: var(--text);
    text-decoration: line-through;
    color: var(--grey-3);
}

#product .related-product .product-card .add-to-cart {
    flex-shrink: 0;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 35px;
    font: var(--button);
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

#product .related-product .product-card .add-to-cart:hover {
    background-color: var(--dark-red);
}

#product .js-product-images-modal {
    background: white;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-minia-products,
.expert-advice {
    padding-block: 30px;
    overflow-x: hidden;
}

.slider-minia-products .top,
.expert-advice .top {
    padding-inline: 25px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.expert-advice {
    padding-inline: 25px;
}

.expert-advice .to {
    margin-bottom: 25px;
}

.slider-minia-products .top .title,
.caracteristics .title,
.expert-advice .title,
.discover-products .title {
    font: var(--font-h2);
    color: var(--dark-blue);
    margin: 0;
}

.expert-advice .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-advice .title img {
    width: 60px;
    height: auto;
}

.slider-minia-products .top .container-arrow,
.expert-advice .top .container-arrow,
.discover-products .top .container-arrow {
    display: flex;
    gap: 20px;
}

.expert-advice .top .container-arrow {
    align-items: center;
}

.available-parts.slider-minia-products:not(:has(.products .elementor-widget-wrap > :nth-child(4))) .container-arrow,
.expert-advice:not(:has(.slider-advice> :nth-child(3))) .top .container-arrow {
    display: none;
}

.slider-minia-products .top .arrow,
.expert-advice .top .container-arrow .arrow,
.discover-products .top .container-arrow .arrow {
    display: block;
    cursor: pointer;
}

.slider-minia-products .top .arrow:hover rect,
.expert-advice .top .container-arrow .arrow:hover rect,
.discover-products .top .container-arrow .arrow:hover rect {
    fill: var(--dark-blue);
}

.slider-minia-products .top .arrow path,
.expert-advice .top .container-arrow .arrow path,
.slider-minia-products .top .arrow rect,
.expert-advice .top .container-arrow .arrow rect,
.discover-products .top .container-arrow .arrow path,
.discover-products .top .container-arrow .arrow rect {
    transition: .3s;
}

.slider-minia-products .top .arrow:hover path,
.expert-advice .top .container-arrow .arrow:hover path,
.discover-products .top .container-arrow .arrow:hover path {
    fill: var(--white);
}

.slider-minia-products .container-slide .slide {
    margin-right: 20px;
}

.slider-minia-products .container-slide,
.expert-advice .slider-advice {
    padding-inline: 30px;
    display: flex;
}

.expert-advice .slider-advice .advice {
    min-width: calc((100% - 25px)/2);
    width: calc((100% - 25px)/2);
    margin-right: 25px;
}

.expert-advice .top,
.expert-advice .slider-advice {
    padding-inline: 0;
}

.expert-advice .slider-advice .advice.video iframe {
    aspect-ratio: 16/10;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.expert-advice .slider-advice .advice.video svg {
    display: none;
}

.expert-advice .slider-advice .advice.content {
    aspect-ratio: 16/10;
    width: auto;
    height: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.expert-advice .slider-advice .advice.content * {
    z-index: 2;
}

.expert-advice .slider-advice .advice.content h2 {
    font: var(--font-h2);
    color: var(--white);
}

.reassurance.product {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 4px 10px;
    background-color: var(--grey);
    margin-bottom: 20px;
    border-radius: 10px;
    justify-content: center;
}

.reassurance.product p {
    font: var(--text-small-bold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    margin: 0;
}

.reassurance.product hr {
    height: 18px;
    width: 1px;
    background-color: var(--grey-3);
    margin: 0;
}

.compatible-products .products {
    display: flex;
}

.caracteristics {
    margin: 30px;
    padding: 40px;
    margin-bottom: 0;
    padding-bottom: 50px;
    background: var(--grey);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.caracteristics .caracteristics-key {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.caracteristics .caracteristics-key>* {
    width: calc((100% - 20px*5)/6);
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 8px;
}

.caracteristics .caracteristics-key .caracteristic-name {
    margin: 0;
    font: var(--text-semi-bold);
    color: var(--dark-blue);
    text-align: center;
}

.caracteristics .all-caracteristics {
    display: flex;
    gap: 50px;
    width: 100%;
}

.caracteristics .all-caracteristics .features-group {
    flex: 1;
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.caracteristics .all-caracteristics .features-group>* {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid var(--grey-3);
    padding-block: 10px;
}

.caracteristics .all-caracteristics .features-group .name {
    font: var(--text-bold);
    color: var(--dark-blue);
}

.caracteristics .all-caracteristics .features-group .value {
    font: var(--text);
    color: var(--dark-blue);
    margin: 0;
    text-align: right;
}

.caracteristics .all-caracteristics .download-link-wrapper {
    border: none;
    padding: 0;
    padding-top: 22px;
}

.caracteristics .all-caracteristics .download-link-wrapper a {
    font: var(--link);
    text-decoration: underline;
    color: var(--dark-blue);
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.caracteristics .all-caracteristics .download-link-wrapper svg {
    margin-bottom: 2px;
}

.discover-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 39px;
    padding: 40px 30px 20px;
    overflow: hidden;
}

.discover-products .products {
    display: flex;
    gap: 20px;
    width: 100%;
}

.discover-products .products .js-product {
    flex: 1;
    width: calc((100% - 20px * 3) / 4);
    min-width: calc((100% - 20px * 3) / 4);
    border-radius: 20px;
    max-width: 350px;
}

.discover-products .products .js-product .product-miniature {
    height: 100%;
}

.discover-products .product-miniature .addtocompare p span,
.discover-products .product-miniature .removetocompare p span {
    display: none;
}

@media (min-width: 1600px) {
    .discover-products .products .js-product {
        width: calc((100% - 20px * 4) / 5);
        min-width: calc((100% - 20px * 4) / 5);
    }
}

.discover-products .products::after,
.discover-products::after {
    display: none;
}

.sticky-add-cart {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    left: 0;
    background: white;
    box-shadow: 0 -2px 10px #0000001a;
    justify-content: space-between;
    padding: 15px 10px 15px 30px;
    align-items: center;
    z-index: 24;
    transform: translateY(100%);
    transition: .3s;
    gap: 30px;
}

.sticky-add-cart.visible {
    transform: translateY(0);
}

.sticky-add-cart .name {
    font: var(--font-h3);
    color: var(--dark-blue);
    margin: 0;
}

.sticky-add-cart .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.carousel-dots-advice {
    display: none;
}

.carousel-dots-advice {
    justify-content: center;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-dots-advice .dot,
#product .pagination-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots-advice .dot.active,
#product .pagination-dots .dot.active {
    background: var(--dark-blue);
}

.sticky-add-cart .right .add-to-cart {
    display: flex;
    align-items: center;
    background-color: var(--red);
    font: var(--button);
    color: var(--white);
    width: 100%;
    border-radius: 60px;
    padding: 14px 84px;
    height: fit-content;
    transition: .3s;
    gap: 12px;
}

.sticky-add-cart .right .add-to-cart:hover {
    background-color: var(--dark-red);
}

.sticky-add-cart .right .add-to-cart[disabled] {
    background-color: var(--grey-2);
    color: var(--grey-3);
    opacity: 1;
}

.sticky-add-cart .right .add-to-cart hr {
    width: 6px;
    height: 2px;
    background-color: var(--white);
    margin: 0;
}

.sticky-add-cart .right .add-to-cart[disabled] hr {
    background-color: var(--grey-3);
}

#product .product-container .sticky-add-cart .addtocompare,
#product .product-container .sticky-add-cart .removetocompare {
    flex-direction: row;
    margin: 0;
}

#product .product-container .sticky-add-cart .addtocompare p,
#product .product-container .sticky-add-cart .removetocompare p {
    text-decoration: none;
}

#product .product-container:has(.out_of_stock) .product-cover::after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    position: absolute;
    pointer-events: none;
}

@media (max-width: 1250px) {
    #product .product-container .left .thumb-container {
        width: 70px;
        height: 70px;
    }

    #product .product-container .left .js-qv-mask {
        width: 70px;
        height: 230px;
    }

    #product .product-container .scroll-box-arrows {
        left: 35px;
        height: 360px;
    }

    #product .product-container {
        gap: 40px;
    }

    #product .product-container>.right {
        width: calc(50% - 20px);
        padding-right: 0;
    }

    #product .product-container>.left {
        width: calc(50% - 20px);
    }

    .caracteristics .caracteristics-key .caracteristic-name,
    .caracteristics .all-caracteristics .features-group .name,
    .caracteristics .all-caracteristics .download-link-wrapper a {
        font: var(--text-small-bold);
    }

    .caracteristics .all-caracteristics .features-group .value {
        font: var(--text-small);
    }

    .caracteristics .caracteristics-key>* {
        padding-block: 18px;
    }

    .sticky-add-cart .right .add-to-cart {
        padding-inline: 40px;
    }
}

@media (max-width: 1024px) {
    .reassurance.product {
        overflow: hidden;
        display: block;
        padding-bottom: 17px;
        height: 76px;
        position: relative;
    }

    .reassurance.product>p,
    .reassurance.product>hr {
        display: none;
    }

    .reassurance.product>p.carousel-active {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .reassurance.product>p.carousel-active svg {
        width: 46px;
        height: 46px;
    }

    .carousel-dots-reassurance {
        display: flex;
        justify-content: center;
        gap: 10px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }

    .carousel-dots-reassurance .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--grey-2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .carousel-dots-reassurance .dot.active {
        background: var(--dark-blue);
    }

    .carousel-dots-reassurance .dot:hover {
        background: #999;
    }

    .compatible-products .products {
        width: 100%;
        overflow-x: auto;
        padding-inline: 25px;
    }

    .compatible-products .products::-webkit-scrollbar,
    .slider-minia-products .top .container-arrow {
        display: none;
    }

    #product .product-container {
        flex-direction: column;
        gap: 25px;
        padding: 5px 15px 40px;
    }

    #product .product-container>.left {
        width: 100%;
        max-width: 800px;
        position: initial;
        align-self: center;
    }

    #product .product-container>.right {
        width: 100%;
    }

    #product .product-container .product-flags {
        left: 14px;
    }

    .discover-products .products {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-inline: 25px;
        width: 100%;
    }

    .discover-products .products::-webkit-scrollbar {
        display: none;
    }

    .discover-products {
        overflow-x: hidden;
        padding: 0;
        gap: 25px;
    }

    .discover-products .title {
        padding-inline: 25px;
    }

    #product .elementor {
        overflow-x: hidden;
    }

    #product .pagination-dots {
        display: none;
        position: absolute;
    }

    #product .related-product .product-card {
        gap: 15px;
    }

    #product .related-product .product-image-container {
        width: 100px;
        height: 100px;
    }

    #product .related-product .product-card {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: auto;
        grid-auto-rows: 1fr;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        gap: 5px 15px;
        grid-template-areas:
            "img content"
            "img cart";
    }

    #product .related-product .product-image-container {
        grid-area: img;
    }

    #product .related-product .product-info {
        grid-area: content;
    }

    #product .related-product .btn {
        grid-area: cart;
    }

    .sticky-add-cart {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .sticky-add-cart .right {
        width: 100%;
        gap: 24px;
    }

    .sticky-add-cart .right .add {
        flex: 1;
    }

    .sticky-add-cart .right .add-to-cart {
        padding-block: 11px;
        justify-content: center;
    }

    .caracteristics .caracteristics-key {
        flex-wrap: wrap;
        gap: 10px;
    }

    .caracteristics .caracteristics-key>* {
        width: calc((100% - 10px)/2);
    }

    .caracteristics .caracteristics-key .caracteristic-name {
        font: var(--text-semi-bold);
    }

    .caracteristics {
        margin: 30px 15px;
        padding: 20px 15px 50px;
        gap: 20px;
    }

    .caracteristics .all-caracteristics {
        gap: 10px;
        flex-direction: column;
    }

    .caracteristics .all-caracteristics .features-group>* {
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .caracteristics .all-caracteristics .features-group .name {
        font: var(--text-bold);
    }

    .caracteristics .all-caracteristics .features-group .value {
        font: var(--text);
    }

    .caracteristics .all-caracteristics .download-link-wrapper {
        padding-top: 20px;
        gap: 20px;
    }

    .expert-advice .top .container-arrow {
        position: absolute;
        width: calc(100% - 30px);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
    }

    .expert-advice .top .container-arrow .arrow {
        position: initial;
    }

    .expert-advice .top {
        justify-content: center;
    }

    .expert-advice .title img {
        width: 42px;
    }

    .expert-advice .slider-advice {
        overflow: initial;
        gap: 0;
    }

    .expert-advice .slider-advice .advice {
        min-width: 100%;
        width: 100%;
        margin-right: 15px;
    }

    .expert-advice {
        padding: 20px 15px 40px;
        position: relative;
        margin-bottom: 20px;
    }

    .carousel-dots-advice {
        display: flex;
        bottom: 16px;
    }

    .discover-products .product-miniature .thumbnail-container {
        width: 310px;
    }

    .discover-products .products .js-product {
        min-width: 310px;
        width: 310px;
    }

    .discover-products .top .container-arrow {
        display: none;
    }

    #product .product-container .container-price {
        position: relative;
        padding-bottom: 34px;
    }

    #product .product-container .klarna-onsite-messaging-container {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        width: auto;
    }
}

@media (max-width: 768px) {
    #product .pagination-dots {
        display: flex;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    #product .product-container {
        padding-top: 0;
    }

    #product .product-container .product-prices {
        margin-top: 12px;
    }

    #product .product-container .addtocompare,
    #product .product-container .removetocompare {
        margin-block: 12px 20px;
    }

    #product .qty>.input-group {
        padding: 13px 10px;
    }

    #modal-cart-preview .input-group {
        padding: 4px 10px;
    }

    #modal-cart-preview .container-qty-price {
        gap: 6px;
    }

    #product .qty .input-group .input-group-btn-vertical,
    #modal-cart-preview .input-group .input-group-btn-vertical {
        gap: 36px;
    }

    #product .qty .input-group #quantity_wanted,
    #modal-cart-preview .input-group .js-cart-line-product-quantity {
        width: 38px;
    }

    #product .accordion-header,
    #product .accordion-content-inner {
        padding: 15px;
    }

    #product .accordion-content-inner {
        padding-top: 0;
    }

    #product .related-product .product-image-container {
        width: 120px;
        height: 120px;
    }

    #product .related-product .product-card {
        grid-template-columns: 120px 1fr;
    }

    #product .related-product .product-name,
    #product .related-product .product-price .regular-price {
        font-size: 16px;
    }

    .slider-minia-products .top {
        margin-bottom: 20px;
    }

    .compatible-products .products,
    .slider-minia-products .top {
        padding-inline: 15px;
    }

    .expert-advice .title img {
        width: 34px;
    }

    .expert-advice .top {
        justify-content: left;
        margin-bottom: 20px;
    }

    .discover-products .product-miniature .thumbnail-container {
        width: 280px;
    }

    .discover-products .products {
        gap: 15px;
    }

    .expert-advice .slider-advice .advice.content {
        padding: 15px;
        gap: 15px;
    }

    .expert-advice .slider-advice .advice.content h2 {
        margin: 0;
        font: var(--font-h3);
    }

    .expert-advice .slider-advice .advice.content .link {
        padding: 12px 20px;
    }

    .discover-products .products .js-product {
        min-width: 280px;
        width: 280px;
    }

    .discover-products .top {
        justify-content: center !important;
    }

    #modal-cart-preview #cart-product-list .cart-product-line .product-description .product-name a,
    #modal-cart-preview #cart-product-list .cart-product-line .product-description .product-name a:hover {
        font: var(--text-small);
    }

    #modal-cart-preview .container-qty-price {
        align-items: flex-start;
        flex-direction: column;
    }
}

/*--END-- PRODUCT PAGE */

/*--START-- LATERAL CART */

#modal-cart-preview .modal-dialog {
    width: 545px;
}

#modal-cart-preview .modal-header {
    padding: 20px;
    background: none;
    border-bottom: 1px solid #E7EAED;
}

#modal-cart-preview .modal-header .left-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

#modal-cart-preview .modal-header .close {
    line-height: 0;
}

#modal-cart-preview .modal-header #modal-cart-preview-label {
    color: var(--dark-blue);
    font: var(--font-h2);
    margin: 0;
    text-transform: initial;
}

#modal-cart-preview .modal-header span,
#modal-cart-preview #cart-product-list .cart-product-line .product-description .product-name a,
#modal-cart-preview #cart-product-list .cart-product-line .product-description .product-name a:hover {
    color: var(--dark-blue);
    font: var(--text);
}

#modal-cart-preview .modal-body {
    padding: 0;
}

#modal-cart-preview #cart-product-list .cart-product-line {
    margin: 0;
    padding: 20px;
    border-bottom: none;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-image .product-qty,
#modal-cart-preview #cart-product-list .cart-product-line .has-discount .discount {
    display: none;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-image {
    padding: 0;
    width: 120px;
    height: 120px;
    flex-basis: auto;
}

#modal-cart-preview #cart-product-list .cart-product-line {
    display: flex;
    gap: 15px;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-description {
    flex: 1;
    padding: 0;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-description>:first-child {
    display: flex;
    gap: 20px;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-description .product-name {
    flex: 1;
}

#modal-cart-preview #cart-product-list .cart-product-line::after,
#modal-cart-preview .modal-footer .cart-detailed-subtotals::after {
    display: none;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-image .product-thumbnail {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
    border: none;
    border-radius: 10px;
    background-color: var(--grey);
}

#modal-cart-preview #cart-product-list .cart-product-line .product-description .remove-from-cart {
    position: initial;
}

#modal-cart-preview .container-qty-price {
    margin: 0 !important;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#modal-cart-preview .container-qty-price .container-price {
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-price {
    padding: 0;
    margin: 0;
}

#modal-cart-preview #cart-product-list .cart-product-line .price {
    font: var(--text-bold);
    color: var(--dark-blue);
}

#modal-cart-preview #cart-product-list .cart-product-line .product-discount .regular-price {
    text-decoration: line-through;
    font: var(--text);
    color: var(--grey-3);
}

#modal-cart-preview .modal-footer .container-cart-total {
    padding: 20px;
    background-color: var(--grey);
    border-top: 1px solid #E7EAED;
}

#modal-cart-preview .block-promo .btn,
#modal-cart-preview .modal-footer .cart-detailed-actions .btn {
    padding: 15px 37px;
    background-color: var(--red);
    font: var(--button);
    color: var(--white);
    transition: .3s;
    border-radius: 0 50px 50px 0;
    border: none;
    text-transform: uppercase;
    margin: 0;
}

#modal-cart-preview .block-promo .btn span {
    font: var(--button);
}

#modal-cart-preview .modal-footer .cart-detailed-actions .btn {
    border-radius: 50px;
}

#modal-cart-preview .block-promo .btn:hover,
#modal-cart-preview .modal-footer .cart-detailed-actions .btn:hover {
    background-color: var(--dark-red);
}

#modal-cart-preview .block-promo .promo-input {
    flex: 1;
    height: auto;
    border: none;
    border-radius: 50px 0 0 50px;
    font: var(--text);
    background-color: var(--white);
    padding: 15px 20px;
    color: var(--dark-blue);
}

#modal-cart-preview .block-promo .promo-input::placeholder {
    color: #A0A0AF;
}

#modal-cart-preview .block-promo form {
    display: flex;
    height: fit-content;
}

#modal-cart-preview .modal-footer .cart-detailed-subtotals {
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-bottom: none;
    margin-bottom: 0;
}

#modal-cart-preview .modal-footer .cart-detailed-subtotals .cart-summary-line {
    margin: 0;
}

#modal-cart-preview .modal-footer .cart-detailed-subtotals .cart-summary-line span {
    font: var(--text);
    color: var(--dark-blue);
}

#modal-cart-preview .modal-footer .card-block.cart-summary-totals {
    padding-inline: 0;
    margin: 0;
    padding-top: 20px;
}

#modal-cart-preview .modal-footer .container-cart-total .cart-summary-line.cart-total {
    margin: 0;
    padding: 0;
    border: none;
}

#modal-cart-preview .modal-footer .container-cart-total .cart-summary-totals .value {
    font: var(--font-h3);
    color: var(--dark-blue);
}

#modal-cart-preview .modal-footer .cart-detailed-actions {
    margin-top: 20px;
}

#modal-cart-preview #cart-product-list .cart-product-line .product-description.has-qty-input .remove-from-cart {
    display: block;
}

@media (max-width: 768px) {
    #modal-cart-preview .modal-dialog {
        width: 440px;
    }

    #modal-cart-preview #cart-product-list .cart-product-line {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    #modal-cart-preview .modal-dialog {
        max-width: 440px;
        width: 90%;
    }

    #modal-cart-preview #cart-product-list .cart-product-line .product-description>:first-child {
        gap: 15px;
    }
}

/*--END-- LATERAL CART */

/* Reusable block */

.alcamultifaq-headtitle,
.alcamultifaqs,
.alcamultifaqs .single_faq:last-child {
    margin: 0;
}

.alcamultifaqs .single_faq {
    margin-bottom: 20px;
}

.bloc_faq_content_left p {
    margin-bottom: 20px;
}

#product .bloc_faq {
    margin-bottom: 40px;
    margin-inline: 30px;
}

@media (max-width: 1024px) {
    #product .bloc_faq {
        margin-inline: 15px;
    }
}

/* Reusable block */




.container-images-product.desktop-view {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.container-images-product.mobile-view {
    display: none;
}

/* Flèches de navigation verticales */
.desktop-view .scroll-box-arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 1;
}

.desktop-view .scroll-box-arrows svg {
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: var(--slider-transition);
    opacity: 1;
}

.desktop-view .scroll-box-arrows svg.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Images container */
.desktop-view .images-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    order: 2;
    flex: 1;
}

/* Image principale */
.desktop-view .product-cover {
    order: 2;
    flex: 1;
    position: relative;
    background: white;
    border-radius: var(--slider-border-radius);
    overflow: hidden;
    box-shadow: var(--slider-shadow);
}

.desktop-view .product-cover img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Thumbnails container */
.desktop-view .js-qv-mask {
    order: 1;
    width: 120px;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.desktop-view .product-images {
    display: flex;
    flex-direction: column-reverse;
    /* IMPORTANT : Inverse l'ordre visuel */
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

/* Thumbnails */
.desktop-view .thumb-container {
    width: 98px;
    height: 98px;
    flex-shrink: 0;
}

.desktop-view .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: var(--slider-border-radius);
    cursor: pointer;
    transition: var(--slider-transition);
    display: block;
}

.desktop-view .thumb:hover {
    border-color: var(--slider-primary-color);
    transform: scale(1.05);
}

.desktop-view .thumb.selected,
.desktop-view .thumb.js-thumb-selected {
    border-color: var(--slider-primary-color);
    box-shadow: 0 4px 12px rgba(65, 65, 65, 0.2);
}

/* Layer zoom */
#product .product-container .desktop-view .layer {
    position: absolute;
    bottom: 20px;
    top: auto;
    left: auto;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--slider-transition);
    opacity: 1;
    background: none;
}

#product .product-container .desktop-view .layer svg path,
#product .product-container .desktop-view .layer svg rect,
#product-modal .interactions-modal-zoom svg path,
#product-modal .interactions-modal-zoom svg circle,
#product-modal .scroll-box-arrows-horizontal svg path,
#product-modal .scroll-box-arrows-horizontal svg rect {
    transition: .3s;
}

#product .product-container .desktop-view .layer:hover svg path,
#product-modal .interactions-modal-zoom svg.zoom:hover path:last-child {
    stroke: white;
}

#product-modal .scroll-box-arrows-horizontal svg:hover path,
#product-modal .interactions-modal-zoom svg:hover path {
    fill: white;
}

#product .product-container .desktop-view .layer:hover svg rect,
#product-modal .interactions-modal-zoom svg:hover circle,
#product-modal .scroll-box-arrows-horizontal svg:hover rect,
#product-modal .interactions-modal-zoom svg.zoom:hover path:first-child {
    fill: var(--dark-blue);
}

#product .product-container .desktop-view .product-cover:hover .layer {
    opacity: 1;
}


/* ========================================
   VERSION MOBILE
   ======================================== */
@media (max-width: 1024px) {
    .container-images-product.desktop-view {
        display: none;
    }

    .container-images-product.mobile-view {
        display: block;
    }
}

.mobile-view .images-container {
    position: relative;
}

/* Image principale mobile */
.mobile-view .product-cover {
    position: relative;
    background: white;
    border-radius: var(--slider-border-radius);
    overflow: hidden;
    box-shadow: var(--slider-shadow);
    aspect-ratio: 1;
}

.mobile-view .product-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* Flèches horizontales */
.scroll-box-arrows-horizontal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.scroll-box-arrows-horizontal svg {
    width: 42px;
    height: 42px;
    cursor: pointer;
    pointer-events: all;
    transition: var(--slider-transition);
}

.scroll-box-arrows-horizontal svg:active {
    transform: scale(0.95);
}

.scroll-box-arrows-horizontal svg.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Pagination dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0;
}

.pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--slider-transition);
    border: none;
    padding: 0;
}

.pagination-dots .dot.active {
    background: var(--slider-primary-color);
    transform: scale(1.3);
}

.pagination-dots .dot:hover {
    background: #999;
}

/* ========================================
   RESPONSIVE TABLETTE
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .desktop-view .js-qv-mask {
        width: 100px;
    }

    .desktop-view .thumb-container {
        width: 80px;
        height: 80px;
    }

    .desktop-view .product-cover {
        max-width: 600px;
    }
}

/* ========================================
   ACCESSIBILITÉ
   ======================================== */
.arrow-up:focus,
.arrow-down:focus,
.arrow-left:focus,
.arrow-right:focus,
.thumb:focus,
.dot:focus {
    outline: 2px solid var(--slider-primary-color);
    outline-offset: 2px;
}

/* Désactiver le tap highlight sur mobile */
.arrow-left,
.arrow-right,
.dot {
    -webkit-tap-highlight-color: transparent;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.thumb-container {
    animation: slideUp 0.3s ease;
}

/* ========================================
   ÉTATS DE CHARGEMENT
   ======================================== */
.thumb img:not([src]),
.js-qv-product-cover:not([src]),
.js-qv-product-cover-mobile:not([src]) {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e0e0e0 50%,
            #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   COMPATIBILITÉ PRESTASHOP
   ======================================== */
/* Surcharge des styles PrestaShop si nécessaire */
.container-images-product .scroll-box-arrows svg {
    display: block;
}

.container-images-product .mask {
    overflow: hidden;
}

/* Hidden class pour PrestaShop */
.hidden-sm-down {
    display: block;
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }
}

/* ========================================
   PRINT
   ======================================== */
@media print {

    .scroll-box-arrows,
    .scroll-box-arrows-horizontal,
    .pagination-dots,
    .layer {
        display: none !important;
    }

    .desktop-view .images-container {
        display: block;
    }

    .desktop-view .product-cover {
        max-width: 100%;
    }
}


#products #js-product-list .product .product-miniature {
    height: 100%;
}




#product-advice-survey #content {
    padding: 0;
    margin: 0;
}

#product-advice-survey #footer {
    padding-top: 0;
}

#product-advice-survey .page-footer {
    margin: 0;
}

#index #footer {
    padding: 0;
}

#index .page-footer {
    display: none;
}


.current-offer .slider-nav {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.current-offer .nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    background: white;
}

.current-offer .nav-btn:disabled {
    cursor: initial;
    transform: none;
}

.current-offer .nav-btn path {
    transition: .3s;
}

.current-offer .nav-btn:not(:disabled):hover {
    background: var(--dark-blue);
}

.current-offer .nav-btn:not(:disabled):hover path {
    fill: white;
}

/* ===== PROGRESS BAR ===== */
.current-offer .slider-progress {
    height: 4px;
    background: #EFF1F1;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
}

.current-offer .slider-progress-bar {
    height: 100%;
    background: var(--blue-green);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.current-offer .container-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 25px;
    flex-direction: row-reverse;
}








/* Widget global */
.avis-verifies-widget {
    display: flex;
    width: 100%;
    background: var(--grey);
    overflow: hidden;
}

/* Bloc note globale */
.avis-verifies-widget .avis-summary {
    background: var(--blue-green);
    color: #fff;
    padding: 20px;
    flex: 0 0 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avis-verifies-widget .avis-stars {
    color: gold;
    font-size: 20px;
}

.avis-verifies-widget .avis-score {
    font-weight: bold;
    margin: 10px 0 5px;
}

.avis-verifies-widget .avis-base {
    font-size: 12px;
}

.avis-verifies-widget .avis-logo {
    margin-top: auto;
    font-size: 14px;
    font-weight: bold;
}

/* Carrousel */
.avis-verifies-widget .avis-carousel {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.avis-verifies-widget .avis-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

.avis-verifies-widget .avis-item {
    min-width: 300px;
    /* largeur d’un avis */
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #eee;
}

.avis-verifies-widget .avis-item:last-child {
    border-right: none;
}

.avis-verifies-widget .avis-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffb800;
}

.avis-verifies-widget .avis-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.avis-verifies-widget .avis-content {
    font-size: 14px;
    margin-bottom: 6px;
}

.avis-verifies-widget .avis-footer {
    font-size: 12px;
    color: #777;
}

/* Flèches navigation */
.avis-verifies-widget .avis-prev,
.avis-verifies-widget .avis-next {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
}


#module-advanceproductcomparison-FrontAdvanceProductComparison .table-comparison .product-miniature .thumbnail-container a.product-thumbnail {
    height: 300px;
    align-self: center;
    aspect-ratio: 1 / 1;
    width: auto;
}

#module-advanceproductcomparison-FrontAdvanceProductComparison .table-comparison .product-miniature .thumbnail-container .product-thumbnail img {
    aspect-ratio: 1 / 1;
    object-position: center;
    object-fit: cover;
    width: 100% !important;
    height: 100%;
}

#module-advanceproductcomparison-FrontAdvanceProductComparison .add-to-cart .text-full {
    display: block;
}

#module-advanceproductcomparison-FrontAdvanceProductComparison .add-to-cart {
    width: 100%;
    border-radius: 50px;
    background: var(--red);
    font: var(--button);
    padding-block: 15px;
    transition: .2s;
}

#module-advanceproductcomparison-FrontAdvanceProductComparison .add-to-cart:hover {
    background: var(--dark-red);
}

@media (max-width: 1024px) {
    #module-advanceproductcomparison-FrontAdvanceProductComparison .table-comparison .product-miniature .thumbnail-container a.product-thumbnail {
        height: 200px;
    }
}

.sticky-container .list_product .cancell {
    font-size: 24px;
    color: var(--red);
    right: auto;
    margin-top: -12px;
    margin-right: auto;
    margin-left: -12px;
}

#product .compatible-products .product-small .product-miniature {
    border: 1px solid var(--grey-2) !important;
}

#product .compatible-products .product-small .product-miniature .product-description {
    border: none !important
}

body#checkout section.checkout-step .payment-options .single_option_payement {
    cursor: pointer;
}

body#checkout section.checkout-step .payment-options .single_option_payement .payment-option form {
    display: none;
}

body#checkout section.checkout-step .payment-options .single_option_payement .additional-information {
    display: none;
}

body#checkout section.checkout-step .single_option_payement:has(input[type=radio]:checked) .additional-information {
    display: block;
}

#category #left-column #search_filters .facet {
    overflow: hidden;
}

#category #left-column #search_filters .facet .h6 {
    line-height: 20px;
}

.cartimage-block {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.cartimage-block img {
    width: 100%;
    max-width: 400px;
}

.modal-footer .klarna-onsite-messaging-container,
#cart .klarna-onsite-messaging-container {
    padding-top: 20px;
}

.sticky-container {
    top: auto;
    bottom: 0;
    right: 0;
    padding-left: 30px;
    width: 100%;
    background: white;
    padding-right: 82px;
    box-shadow: 0 0 15px hsl(0deg 0% 0% / 5%);
    transition: .3s;
}

body:has(.sticky-add-cart.visible) .sticky-container {
    bottom: 80px;
}

.sticky-container .sticky .list_product {
    list-style-type: none;
    background-color: #fff;
    color: #efefef;
    height: fit-content;
    padding: 0px;
    margin: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    border: 1px solid var(--grey-2);
}

.sticky-container .sticky .list_product:first-child {
    border-right: none;
    border-radius: 6px 0 0 0;
}

.sticky-container .sticky .list_product:not(:last-child) {
    border-right: none;
    border-radius: 6px 0 0 0;
}

.sticky-container .sticky .list_product:last-child {
    border-radius: 0 6px 0 0;
}

.sticky-container ul {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.sticky-container .sticky .list_product {
    margin-left: 0 !important;
}

.sticky-container .sticky .list_product p {
    display: none;
}

.swal2-container .product-description {
    display: none;
}

.swal2-container .product-price-and-shipping {
    margin-block: 14px;
}

.homecategories-wrapper .homecategory-item {
    box-sizing: border-box;
}

.homecategories-slider {
    padding-bottom: 2px;
}

#fmm-compare-now-btn {
    width: fit-content;
    border-radius: 50px;
    background: var(--red);
    font: var(--text-semi-bold);
    padding-block: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding-inline: 20px;
    align-self: center;
    margin-right: 10px;
    color: var(--white);
    gap: 5px;
    transition: .3s;
}

#fmm-compare-now-btn:hover {
    background: var(--dark-red);
}

#fmm-compare-now-btn span {
    font: var(--text-semi-bold);
}

.sticky-container #stickness:not(:has(:nth-child(2))) #fmm-compare-now-btn {
    display: none;
}

#stickness:not(:has(.list_product:nth-child(3))) #fmm-compare-now-btn {
    background: var(--grey-2);
    pointer-events: none;
}

@media (max-width: 768px) {

    #fmm-compare-now-btn span {
        display: none;
    }

    #fmm-compare-now-btn {
        padding-inline: 12px;
    }
}

body .cc-yv368 .cc-1kr6o .cc-18ov6 .cc-1qbp0 {
    width: 45px !important;
    height: 45px !important;
}

body #crisp-chatbox.cc-yv368 .cc-1kr6o .cc-18ov6 .cc-1qbp0 .cc-11f3x {
    width: 27px !important;
    height: 23px !important;
}

@media (min-width: 768px) {
    body .cc-yv368 .cc-1kr6o .cc-18ov6 {
        bottom: 12px !important;
        right: 18px !important;
    }
}

@media (max-width: 1024px) {
    body:has(.sticky-add-cart.visible) .sticky-container {
        bottom: 114px;
    }
}

@media (max-width: 768px) {
    body .cc-yv368 .cc-1kr6o .cc-18ov6 {
        bottom: 6px !important;
        right: 8px !important;
    }

    body .cc-yv368 .cc-1kr6o .cc-18ov6 .cc-1qbp0 {
        width: 40px !important;
        height: 40px !important;
    }

    body #crisp-chatbox.cc-yv368 .cc-1kr6o .cc-18ov6 .cc-1qbp0 .cc-11f3x {
        width: 27px !important;
        height: 23px !important;
        top: 11px !important;
        left: 7px !important;
    }

    body:has(.sticky-add-cart.visible) .sticky-container {
        bottom: 108px;
    }

    .sticky-container {
        padding-left: 20px;
        padding-right: 56px;
    }

    #category #left-column #search_filters .facet:has(.title:not(.collapsed)) ul {
        max-height: none !important;
    }
}

@media (max-width: 650px) {
    body:has(.sticky-add-cart.visible) .sticky-container {
        bottom: 0;
    }
}


.skeepers_carousel_container .skeepers-reviewer-wide.skp-display-publisher,
.skeepers_carousel_container .skeepers-reviewer-wide .skp-darker {
    font-size: 14px!important;
}
#category #left-column #search_filters .facet[data-type="price"] {
    overflow: initial;
}
#search_filters .facet.open>ul {
    max-height: fit-content!important;
}

.avis-manufacturer .skeepers_product__stars {
    background-color: #f5f7f7;
    border-radius: 5px;
    margin: 0;
}
.avis-manufacturer .skeepers_product__stars .review__header {
    padding: 5px 8px;
}
.product-description .avis .skeepers_product__stars .review__header,
.avis-manufacturer .skeepers_product__stars .review__header {
    outline: none;
}
.product-description .avis .skeepers_product__stars .review__header .stars,
.avis-manufacturer .skeepers_product__stars .review__header .stars {
    align-items: center;
}
.product-description .avis .skeepers_product__stars .review__header .stars .stars__item,
.avis-manufacturer .skeepers_product__stars .review__header .stars .stars__item {
    background: none!important;
    width: 20px;
    height: 20px;
}
.product-description .avis .skeepers_product__stars .review__header .stars .stars__item {
    width: 15px;
    height: 15px;
}
.product-description .avis .skeepers_product__stars .review__header .stars .stars__item .star-svg,
.product-description .avis .skeepers_product__stars .review__header .stars .stars__item .star-svg path,
.avis-manufacturer .skeepers_product__stars .review__header .stars .stars__item .star-svg,
.avis-manufacturer .skeepers_product__stars .review__header .stars .stars__item .star-svg path {
    fill: #f2ae2c;
}
.product-description .avis .skeepers_product__stars .stars__rating .text__rating,
.avis-manufacturer .skeepers_product__stars .stars__rating .text__rating {
    margin: 0;
}
.product-description .avis .skeepers_product__stars .stars__rating .text__rating .rate-aggregate,
.product-description .avis .skeepers_product__stars .stars__rating .text__rating .rate-aggregate__separator,
.product-description .avis .skeepers_product__stars .stars__rating .text__rating .rate-aggregate__max,
.avis-manufacturer .skeepers_product__stars .stars__rating .text__rating .rate-aggregate,
.avis-manufacturer .skeepers_product__stars .stars__rating .text__rating .rate-aggregate__separator,
.avis-manufacturer .skeepers_product__stars .stars__rating .text__rating .rate-aggregate__max {
    display: none;
}
.product-description .avis .skeepers_product__stars .stars__rating .text__rating .rate-total,
.avis-manufacturer .skeepers_product__stars .stars__rating .text__rating .rate-total {
    text-decoration: underline;
    color: black;
}
.product-miniature .skeepers_product__stars {
    margin: 0;
    margin-bottom: 5px;
}


.header-light-container .header-light .header-light-phone a {
    outline: none;
}
.header-light-container .header-light .header-light-phone a:hover {
    text-decoration: underline!important;
    color: white!important;
}
.skeepers_product__reviews {
    margin-left: 30px!important;
    margin-right: 30px!important;
    display: inline-block;
    width: calc(100% - 60px)!important;
}

/* =========================================================
   Style pour widget Avis Vérifiés (Skeepers)
   A coller dans le CSS de ton site, sans toucher au HTML
   ========================================================= */

/* ===== Layout général (deux colonnes) ===== */
.skeepers_product__reviews .widget__wrapper {
  display: flex!important;
  flex-wrap: wrap!important;
  gap: 32px!important;
  align-items: flex-start!important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif!important;
}

/* Colonne gauche : résumé des notes */
.skeepers_product__reviews .widget__block--sidebar.rating {
  /* flex: 0 0 280px!important;
  max-width: 280px!important; */
}

/* Colonne droite : liste des avis */
.skeepers_product__reviews .widget__reviews {
  flex: 1 1 500px!important;
  min-width: 300px!important;
}

/* ===== Bloc note globale ===== */
.skeepers_product__reviews .rating__value {
  margin-bottom: 20px!important;
}

.skeepers_product__reviews .rating__value-numeric .text__rating {
  font-size: 28px!important;
  font-weight: 700!important;
  color: #1a1a1a!important;
}

/* Les grosses étoiles au-dessus de la note ne sont pas dans la maquette */
.skeepers_product__reviews .rating__value-stars {
  display: none!important;
}

.skeepers_product__reviews .rating__details-text {
  font-size: 13px!important;
  color: #737373!important;
}

.skeepers_product__reviews .rating__details-text #nr-total-reviews {
  font-weight: 600!important;
  color: #1a1a1a!important;
}

/* Masque la bulle d'info et le lien "voir tous les avis" (optionnel, à retirer si tu veux les garder) */
.skeepers_product__reviews .show_informations_tooltip_product,
.skeepers_product__reviews .rating__details-link {
  display: none!important;
}

/* ===== Barres de répartition par étoile ===== */
.skeepers_product__reviews .filters__marks {
  list-style: none!important;
  padding: 0!important;
  margin: 16px 0!important;
}

.skeepers_product__reviews .filters__mark {
  display: flex!important;
  align-items: center!important;
  gap: 8px!important;
  margin-bottom: 8px!important;
  cursor: pointer!important;
}

.skeepers_product__reviews .filters__mark label {
  font-size: 13px!important;
  color: #444!important;
  width: 60px!important;
  flex-shrink: 0!important;
}

.skeepers_product__reviews .filters__mark-scale {
  flex: 1!important;
  height: 6px!important;
  background: #ececec!important;
  border-radius: 3px!important;
  overflow: hidden!important;
}

.skeepers_product__reviews .filters__mark-bar {
  height: 100%!important;
  background: #f2ae2c!important;
  border-radius: 3px!important;
}

.skeepers_product__reviews .filters__mark-count {
  font-size: 12px!important;
  color: #999!important;
  width: 55px!important;
  text-align: right!important;
}

.skeepers_product__reviews .filters__mark input[type="radio"] {
  display: none!important;
}

/* ===== Logo Avis Vérifiés ===== */
.skeepers_product__reviews .widget-logo-hyperlink {
  display: inline-block!important;
  margin-top: 12px!important;
}

/* ===== Masquer tri / recherche (optionnel) ===== */
.skeepers_product__reviews .rating__sorting {
  display: none!important; /* retire cette règle si tu veux garder le tri/la recherche */
}

/* ===== Cartes d'avis ===== */
.skeepers_product__reviews .reviews {
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
  display: flex!important;
  flex-direction: column!important;
  gap: 16px!important;
}

.skeepers_product__reviews .review {
  background: #f4f5f6!important;
  border-radius: 12px!important;
  padding: 20px 24px!important;
}

.skeepers_product__reviews .review__header {
  display: flex!important;
  align-items: center!important;
  gap: 12px!important;
  margin-bottom: 4px!important;
}

.skeepers_product__reviews .review__stars .stars__item svg {
  width: 15px!important;
  height: 15px!important;
}

/* Le score "X/5" par avis n'est pas dans la maquette */
.skeepers_product__reviews .review__rating {
  display: none!important;
}

/* Badge "avis vérifié", boutons utile/signaler, image, réponse de la marque : masqués */
.skeepers_product__reviews .review_actions,
.skeepers_product__reviews .review__status,
.skeepers_product__reviews .review__image,
.skeepers_product__reviews .moderations__list,
.skeepers_product__reviews .toggle-responses-count {
  /* display: none!important; */
}
#skeepers_product_widget .moderations__item {
    background-color: #ffffff!important;
    border-radius: 10px!important;
}

.skeepers_product__reviews .review__message {
  display: flex!important;
  flex-direction: column!important;
}

/* Fait remonter la ligne "date / auteur" au-dessus du texte de l'avis */
.skeepers_product__reviews .review__data {
  order: -1!important;
  font-size: 13px!important;
  color: #737373!important;
  margin-bottom: 6px!important;
}

.skeepers_product__reviews .review__data-name {
  font-weight: 700!important;
  color: #1a1a1a!important;
  display: block!important;
  margin-bottom: 2px!important;
}

.skeepers_product__reviews .review__text {
  font-size: 14px!important;
  color: #333!important;
  line-height: 1.5!important;
  margin: 0!important;
}

/* Ne garde que la date, masque "Avis du" / "suite à une expérience du" / "par" */
.skeepers_product__reviews [data-lang="REVIEW_OF"],
.skeepers_product__reviews [data-lang="EXPERIENCE_OF"],
.skeepers_product__reviews [data-lang="EXPERIENCE_BY"] {
  /* display: none!important; */
}
#skeepers_product_widget .stars__item:not(:last-of-type),
#skeepers_product_widget .review__header .stars {
    margin: 0!important;
}
#skeepers_product_widget .review__data {
    display: flex!important;
    gap: 5px!important;
    color: #262D42 !important;
    flex-wrap: wrap !important;
}
#skeepers_product_widget .review__header {
    margin-bottom: 22px !important;
}
#skeepers_product_widget .review__data .review__data-name {
    color: #262D42 !important;
}
/* ===== Pagination ronde ===== */
.skeepers_product__reviews .pagination__list {
  list-style: none!important;
  display: flex!important;
  justify-content: center!important;
  gap: 8px!important;
  padding: 0!important;
  margin-top: 0!important;
}

.skeepers_product__reviews .pagination__list__item__link {
    width: 25px!important;
    height: 25px!important;
    border-radius: 50%!important;
    border: none!important;
    background: #ececec!important;
    color: #333!important;
    font-size: 13px!important;
    cursor: pointer!important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center!important;
}

.skeepers_product__reviews .pagination__list__item.active .pagination__list__item__link {
  background: #1a1a2e!important;
  color: #fff!important;
}
/* ICC DIGITAL - MLQ - Ajout copyright */
.container-copyright p, .container-copyright a {
    color: white;
}
/* ICC DIGITAL - MLQ - Ajout text return compte */
#my-account .text-return-contact {
    margin: 0;
    margin-top: 20px;
}