/*
Theme Name: asticotheme
Theme URI: None
Author: asticoweb.com
Author URI: https://asticoweb.com
Description: Simple wordpress theme made with ❤️ by asticoweb.com | All rights reserved ©
Tags: theme, madewithlove, asticonet, asticoweb, asticoweb.com, asticotheme, coding, spreadthelove, personal, personaluseonly
Version: 3.8
License: License asticoweb.com
License URI: https://asticoweb.com
Text Domain: asticotheme
*/

::selection {
    background: var(--bleu);
    color: white;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--bleu);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: var(--bleu);
    color: white;
    text-shadow: none;
}

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none !important;
    text-decoration: none;

}

section,
div,
header,
nav,
article,
section,
aside,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
figure,
figcaption,
class,
img {

    margin: 0;
    padding: 0;
}


html,
body {

    width: 100%;
    padding: 0;
    margin: 0;
    font-family: chaloops, sans-serif;
    position: relative;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {

    overflow-x: hidden;
    overflow-y: overlay;
    background: white;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--ciel);
}

::-webkit-scrollbar-button {
    display: none;
}

.page main>section>h1,
br.clear,
a.post-edit-link {

    display: none;
}

input::placeholder,
textarea::placeholder {

    opacity: 1 !important;
}

input {

    accent-color: var(--ciel);
}

a {

    color: var(--ciel);
}

:root {
    --bleu: #00006F;
    --ciel: #009DE2;
    --rose: #E5007E;
    --jaune: #ffdc00;
    --vert: #009c3d;
    --blanc95: #F2F2F2;
    --blanc90: #E5E5E5;
    --gris75: ##BFBFBF;
    --gris50: ##7F7F7F;
    --gris25: ##3F3F3F;
}

/*------------------------------------*\
    OVERLAY
\*------------------------------------*/

.overlay::after,
.overlay::before {

    content: '' !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000054;
    pointer-events: none;
}

.overlay::after {

    mix-blend-mode: color;
    z-index: 3;
}

.overlay::before {

    z-index: 2;
    opacity: .75 !important;
}

.overlay.safari:after {

    display: none;
}

/*------------------------------------*\
    DARK MODE
\*------------------------------------*/

input[type="search"] {

    background: white;
}

/*------------------------------------*\
    UNDERLINE
\*------------------------------------*/

.underline .elementor-button-text,
#footer a,
#nav a {

    position: relative;
}

.underline .elementor-button-text:after,
#footer a:not(a#asticoweb):not(#footer #contact):after,
#nav a:after {
    content: '';
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform .5s, background .5s;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--rose);
    top: 100%;
    left: 0;
    pointer-events: none;
}

.underline:hover .elementor-button-text:after,
#footer a:hover::after,
#nav a:hover::after {

    transform-origin: 0% 50% !important;
    transform: scale3d(1, 1, 1) !important;
}

/*------------------------------------*\
    EXIT
\*------------------------------------*/

#exit {

    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 84, .5);
    z-index: 9998;
    cursor: pointer;
    display: none;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

#header div.btn button#menu {

    display: none;
}

#header {

    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}

#header:before {

    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--bleu);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 68, .25);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 68, .25);
    translate: 0 -100%;
    transition: translate .3s;
}

.active-header:before {

    translate: 0 !important;
}

#header ul {

    display: flex;
    gap: 50px;
}

#header li {

    list-style: none;
}

#header a {

    font-family: chaloops, sans-serif;
    color: white;
    font-size: 1.25vw;
}

#header a#logo {

    display: inline-flex;
    padding: 25px;
    padding-top: 37.5px;
    translate: 0 -12.5px;
    position: relative;
    rotate: -2.5deg;
    background: white;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 68, .25);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 68, .25);
    transition: background .3s, margin .3s;

}

#header a#logo:hover {

    background: var(--blanc90);
}

.active-logo {

    margin-bottom: -37.5px !important;
}

#header a#logo img {

    height: 100px;
    width: auto;
}

#nav {

    position: absolute;
    left: 50%;
    translate: -50%;
}

#header a#contact {

    padding: 15px 25px;
    border-radius: .5em;
    background: var(--ciel);
}

#header a#contact,
#footer a#contact {

    transition: background .3s;
}

#header a#contact:hover,
#footer a#contact:hover {

    background: var(--rose);
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

#footer {

    background: #000054;
    padding: 100px 150px 50px 150px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer li {

    list-style: none;
    color: var(--ciel);
}

#footer a {

    color: white;
}

#footer h6 {

    font-family: chaloops, sans-serif;
    font-size: 1.25vw;
    font-weight: 600;
}

#footer img {

    height: 100px;
    width: auto;
}

#footer a#contact {

    padding: 15px 25px;
    border-radius: .5em;
    background: var(--ciel);
    font-family: chaloops, sans-serif;
    font-weight: normal;
}

#footer .full {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: solid 1px #00003a;
}

#footer .full a {

    font-size: .75vw;
    color: var(--rose);
}

#footer .full ul {

    display: flex;
    gap: 50px;
}

#footer a#asticoweb {

    position: relative;
    transition: color .3s;
}

#footer a#asticoweb:hover {

    color: white;
}

#footer a#asticoweb:before {
    content: '';
    display: inline-block;
    transform: translateY(25%);
    width: 1.75em;
    height: 1.75em;
    margin-right: 6.25px;
    background: var(--rose);
    transition: background .3s;
    -webkit-mask: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194.4 200"><path d="M90.5,102.2c-1.2-.2-2.9-.3-4.1-.3-5.9-.4-12.2,1.5-15.3,6.3-5,6.9-3.9,19,3.7,23.8,3.4,2.3,7.8,2.8,13.4,2.2h0c11.7-1,22.3-7.9,28.6-17.6-6.6-7.8-15.9-13.2-26.3-14.4Z"/><path d="M108.3,0C59.7,0,0,59.3,0,109.3s59.7,90.7,108.3,90.7,86.1-40.7,86.1-90.7h0C194.4,59.5,156.9,0,108.3,0ZM137.2,142.2c0,3-2.5,5.4-5.5,5.3-2.9,0-5.3-2.4-5.3-5.3,0-3.1-.4-6.2-1.2-9.1-10,10.4-24.1,16.7-38.5,16.9-7.2.3-14.5-1.2-20.5-5.5-10.6-7.3-14.6-21.3-11.6-33.4,3-12.6,13.9-21.7,26.8-22.3,1.8-.2,3.7-.1,5.5,0,1,.1,3.1.2,4.1.3,11.6,1.5,22.6,7,30.8,15.3.4-1.6.6-3.5.8-5.1.1-1.1.1-2.7.1-3.9-.1-3.6-.8-7.1-2.3-10.4-.5-.9-1.1-2.3-1.7-3.1-8.6-14.2-28.9-16.6-40.3-4.5-9.8,9.5-24-4-14.9-14.3,17.9-18.3,49.2-17.5,65.9,2,6.7,7.5,10.7,17.4,11.1,27.4h0c.5,10.2-2.2,20.5-7.2,29.4,2.7,6.5,4,13.5,3.9,20.3Z"/></svg>') no-repeat;
    mask: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194.4 200"><path d="M90.5,102.2c-1.2-.2-2.9-.3-4.1-.3-5.9-.4-12.2,1.5-15.3,6.3-5,6.9-3.9,19,3.7,23.8,3.4,2.3,7.8,2.8,13.4,2.2h0c11.7-1,22.3-7.9,28.6-17.6-6.6-7.8-15.9-13.2-26.3-14.4Z"/><path d="M108.3,0C59.7,0,0,59.3,0,109.3s59.7,90.7,108.3,90.7,86.1-40.7,86.1-90.7h0C194.4,59.5,156.9,0,108.3,0ZM137.2,142.2c0,3-2.5,5.4-5.5,5.3-2.9,0-5.3-2.4-5.3-5.3,0-3.1-.4-6.2-1.2-9.1-10,10.4-24.1,16.7-38.5,16.9-7.2.3-14.5-1.2-20.5-5.5-10.6-7.3-14.6-21.3-11.6-33.4,3-12.6,13.9-21.7,26.8-22.3,1.8-.2,3.7-.1,5.5,0,1,.1,3.1.2,4.1.3,11.6,1.5,22.6,7,30.8,15.3.4-1.6.6-3.5.8-5.1.1-1.1.1-2.7.1-3.9-.1-3.6-.8-7.1-2.3-10.4-.5-.9-1.1-2.3-1.7-3.1-8.6-14.2-28.9-16.6-40.3-4.5-9.8,9.5-24-4-14.9-14.3,17.9-18.3,49.2-17.5,65.9,2,6.7,7.5,10.7,17.4,11.1,27.4h0c.5,10.2-2.2,20.5-7.2,29.4,2.7,6.5,4,13.5,3.9,20.3Z"/></svg>') no-repeat;
}

#footer a#asticoweb:hover::before {

    background: white;
}

/*------------------------------------------------------------------------*\
    RESPONSIVE
\*------------------------------------------------------------------------*/

@media only screen and (max-width:950px) {

    /*------------------------------------*\
    HEADER
\*------------------------------------*/

    #header {

        padding: 0 50px;
    }

    #header a {

        font-size: 2.5vw;
    }

    #header a#logo img {

        aspect-ratio: 1;
        object-fit: cover;
        object-position: center left;
    }

    /*------------------------------------*\
    MENU
\*------------------------------------*/

    #header div.btn {

        display: flex;
        gap: 25px;
    }

    #header div.btn button#menu {

        display: inline-block;
        border: none;
        font-family: chaloops, sans-serif;
        font-size: 2.25vw;
        font-weight: 600;
        background: var(--rose);
        transition: background .3s;
        cursor: pointer;
        overflow: hidden;
    }

    #header div.btn button#menu span {

        position: relative;
        display: inline-block;
    }

    #header div.btn button#menu span,
    #header div.btn button#menu span:after {

        transition: translate .3s, color .3s;
    }

    #header div.btn button#menu span:after {

        content: 'Fermer';
        position: absolute;
        top: 110%;
        left: 50%;
        translate: -50%;
        color: transparent;
    }

    .active-btn-menu {

        translate: 0 -100% !important;
        color: transparent !important;
    }

    .active-btn-menu:after {

        color: white !important;
    }

    /*------------------------------------*\
    NAV
\*------------------------------------*/

    #nav {

        position: fixed;
        background: white;
        padding: 50px;
        bottom: 0;
        white-space: nowrap;
        display: none;
    }

    #nav a {

        color: var(--bleu);
    }

    /*------------------------------------*\
    FOOTER
\*------------------------------------*/

    #footer {

        padding: 100px 50px 50px 50px;
        gap: 50px;
    }

    #footer h6 {

        font-size: 2.5vw;
    }

    #footer .content:not(.full) {

        width: 100%;
        justify-content: center;
        text-align: center;
    }

    #footer a#contact {

        display: inline-block;
    }

    #footer .full {

        flex-direction: column;
        margin-top: 0;
    }

    #footer .full a {

        font-size: 1.75vw;
    }


}

@media only screen and (max-width:650px) {

    /*------------------------------------*\
    HEADER
\*------------------------------------*/

    #header {

        padding: 0 25px;
    }

    #header ul {

        gap: 25px;
        justify-content: center;
    }

    #header a {

        font-size: 4vw;
    }

    #header a#logo {

        padding: 12.5px;
        padding-top: 18.75px;
        translate: 0 -6.25px;
    }

    .active-logo {

        margin-bottom: -12.5px !important;
    }

    #header a#logo img {

        height: 75px;
    }

    #nav {

        left: 0;
        translate: 0;
        width: 100%;
        padding: 50px 25px 125px 25px;
    }


    /*------------------------------------*\
    MENU
\*------------------------------------*/

    #header div.btn button#menu {

        position: fixed;
        z-index: 9999;
        left: 0;
        bottom: 0;
        font-size: 4vw;
        width: -webkit-fill-available;
        margin: 25px;
    }

        /*------------------------------------*\
    FOOTER
\*------------------------------------*/

#footer {

    padding: 50px 25px 125px 25px;
    gap: 25px;
}

#footer h6 {

    font-size: 4vw;
}

#footer .full {

    padding-top: 25px;
}

#footer .full a {

    font-size: 2.5vw;
}
}