@import "communs.css";
@import "lightbox.css";
@import "about.css";
@import "carousel.css";
@import "form.css";
:root {
    --primary: #6e2c89;
    --yellow: #eac24c;
    --secondary:#1e1e1e;
    --tertiary: #d0d1ce;
    --quaternary: #0A0A0A;
    --quinterny: #757575;
    --shadow: #0000009c;
    --ligh :#ffffffb0;
    --foot :#0b010e;
    --hexaterny: linear-gradient(0.45turn, #9311ca, #3e164d);
}
*{
    box-sizing: border-box;
}

ul,li,figure,h1,h2,h3,h4,h5,h6,a,p{
    margin:0;
    list-style: none;
    text-decoration: none;
    padding: 0;
}
ul{
    padding-left: 0;
}
img{
    height: 100%;
}
svg{
    height: 100%;
}
@font-face{
    font-family:Roboto-Medium;
    src: url(../fonts/Roboto-Medium.ttf);
}

html, body{
    scroll-behavior: smooth;
    font-family: Roboto-Medium, sans-serif;
    
}
.bobor{
    border: 1px solid red;
}
h2{
    margin-bottom: 40px;
    font-size: 38px;
    text-shadow: -1px -1px 3px var(--shadow), 1px 1px 3px var(--ligh),
    -6px -6px 12px var(--ligh), 6px 6px 12px var(--shadow);
    letter-spacing: 5px;
    text-align: center;
}
body{
    height: 100%;
    margin: 0 auto;
    display: inline;
}
#shadowHead{
    height: 100%;
    position: fixed;
    background-color: #000000ce;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;

    &.is-opened{
        visibility: visible;
        opacity: 1;
        transition: opacity 0.5s;
        z-index: 2;
    }
}
/* -----------------------HEADER-------------------------- */
header{
    height: 100px;
	position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 6px 6px 15px var(--shadow),
    inset -2px -2px 5px var(--shadow), inset 2px 2px 5px var(--ligh);
    border-radius: 0 0 15px 15px;
    transition: 0.5s;
    z-index: 3;
}
.menu-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 5px 5px 8px var(--shadow), -5px -5px 6px var(--ligh); 

    #back_menu{
        width: 59px;
        height: 59px;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        transform: translate(-50%,-50%);
        box-shadow: inset -4px -4px 8px var(--shadow), inset 4px 4px 5px var(--ligh); 
        transition: box-shadow 0.5s; 
        z-index: 1;
    }

    span::before, span::after{
        transform-origin: 50% 50%;
            position: absolute;
        z-index: 2;
    }
    span{
        display: block;
        width: 45px;
        height: 7px;
        border-radius: 4px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition: background 0.5s steps(1, end), width 0.1s;
        transition-delay: 0s, 0.4s;
        z-index: 2;

        &::before, &::after {
            display: block;
            width: 33px;
            height: 7px;
            content: '';
            top: 0;
            left: 50%;
            transform: translateX(-50%) translateY(-12px);
            background-color: var(--primary);
            transition: transform 0.7s, width 0.2s;
            transition-delay:  0s, 0.2s;
            border-radius: 5px;
            z-index: 2;
        }
        &::after {
            transform: translateX(-50%) translateY(12px); 
        }
        
    }

    svg{
        fill: transparent;
        stroke-width: 7px;
        stroke: var(--primary);
        stroke-dasharray: 45 282;
        opacity: 0;
        transition: stroke-dashoffset 0.5s, stroke-dasharray 0.5s, 
        opacity 0.5s steps(1, end);
        z-index: 2;
    }
    &.is-opened{
        
        #back_menu{
            background-color: transparent;
            box-shadow: inset -4px -4px 8px var(--ligh), inset 4px 4px 5px var(--shadow);
        }
        span{
            width: 0;
            box-shadow:  none;
            transition: background 0.5s steps(1, start), width 0.1s;
        }
        span::before{
            transform: translateY(0) translateX(-50%) rotate(-225deg);
            width: 40px;
            height: 7px;
            box-shadow:  none;
            transition: transform 0.7s, width 0.2s;
            transition-delay: 0.05s, 0.5s;
        }
        span::after{
            transform: translateY(0) translateX(-50%) rotate(225deg);
            width: 40px;
            height: 7px;
            box-shadow:  none;
            transition: transform 0.7s, width 0.2s;
            transition-delay: 0.05s, 0.5s;
        }
        svg{
            opacity: 1;
            transition: opacity 0.5s steps(1, start);
            animation: path_animation 0.5s linear;
            animation-fill-mode: forwards;
        }
    }
    &.is-closed{
        svg{
            animation: path_animation-out 0.5s linear;
        }
    }
}
@keyframes path_animation{
    60%{
        stroke-dashoffset: -105;
    }
    61%{
        stroke-dasharray: 45 282;
    }
    100%{
        stroke-dashoffset: -105;
        stroke-dasharray: 220;
    }
}
@keyframes path_animation-out{
    0%{
        stroke-dashoffset: -105;
        stroke-dasharray: 220;
    }
    60%{
        stroke-dasharray: 45 282;
    }
    61%{
        stroke-dashoffset: -105;
    }
    100%{
        stroke-dashoffset: 0;
    }
}
#logo{
    height: 70px;
    padding: 10px;
    border-top-left-radius: 37px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 37px;
    border-bottom-right-radius: 8px;
    
}
#logo figure{
    height: 100%;
    filter: drop-shadow(-4px -4px 3px var(--ligh)) 
    drop-shadow(3px 3px 3px var(--shadow));
}
header nav{
    width: 200px;
    top: 15px;
    left: 0;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--tertiary);
    box-shadow: 6px 6px 15px var(--shadow),
    inset -2px -2px 5px var(--shadow), inset 2px 2px 5px var(--ligh);
    transform: translateX(-110%) translateY(85px);
    transition: transform 0.5s;
    
    &.is-opened{
        transform: translateX(0) translateY(85px);
        transition: transform 0.5s cubic-bezier(.49,.4,.42,1.41);
    }
}
header nav ul{
    height: 100%;
    border: var(--quinterny) 3px solid;
    border-radius: 10px;
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow);
}
.menu .onglet {
    height: 40px;
    padding: 0 12px;
    text-align: start;
    line-height: 40px;
    font-size: 22px;
    font-weight: 600;
    color: var(--quinterny);
    background-color: var(--ligh);
    box-shadow: inset 2px 2px 5px var(--shadow), inset -2px -2px 5px var(--ligh);
    display: block;
    cursor: pointer;
    transition: .3s;
}
.menu .active{
    color: var(--tertiary);
    transition: .3s;
    background: var(--hexaterny);
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 0px 0px 3px 2px #23062e;
    transition: .3s;
}
.menu .active:hover{
    color: var(--tertiary);
}
.onglet:hover{
    color: var(--primary);
}
/* -----------------------FIN HEADER-------------------------- */
#content{
    z-index: 1;
}
section{
    width: 100%;
    padding: 0 10px 110px 10px;
}

@keyframes apparition{
    0%{opacity: 0}
    100%{opacity: 100%}
}
/* ------------------------ACCUEIL------------------------------ */

#home{
    z-index: 1;
}
#kame_home{
    width: 100%;
    padding: 50px 10px;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 20px;
    row-gap: 30px;
    z-index: 1;
}
#kame_home h2{
    margin-bottom: 0;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
}
#kame_home img{
    height: 230px;
    filter: 
      drop-shadow(-2px -2px 1px var(--tertiary)) 
      drop-shadow(2px -2px 1px var(--tertiary)) 
      drop-shadow(2px 2px 1px var(--tertiary))
      drop-shadow(-2px 2px 1px var(--tertiary))
      drop-shadow(7px -7px 4px var(--ligh)) 
      drop-shadow(-7px 6px 6px var(--shadow));
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    transform: scaleX(-1);

    .reveal [class*="reveal-"]{
        opacity: 0;
        transform: scale(0.98);
        filter:
        drop-shadow(0 0 0 var(--tertiary)) 
        drop-shadow(0 0 0 var(--tertiary)) 
        drop-shadow(0 0 0 var(--tertiary))
        drop-shadow(0 0 0 var(--tertiary))
        drop-shadow(0 0 0 var(--shadow)) 
        drop-shadow(0 0 0 var(--ligh));
    }

    .reveal-3{
        transition-delay: opacity 0.2s, transform 1.7s, filter 1.5s!important;
    }
}
#kame_home figcaption{
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
    z-index: 2;
}
#home p{
    height: 100%;
    margin-left: 12px;
    font-size: 25px;
    color: var(--shadow);
    border-radius: 15px;
    text-shadow: -1px -1px 1px var(--shadow), 1px 1px 1px var(--ligh),
    -4px -4px 10px var(--ligh), 4px 4px 10px var(--shadow);
}

/* -----------------------FIN ACCUEIL-------------------------- */

/* -----------------------REALISATIONS-------------------------- */
#reals{
    z-index: 1;
}
#reals p{
    margin-bottom: 40px;
    padding: 10px 10px 0 10px;
    font-size: 17px;
}

#categories{
    max-width: 450px;
    margin: 0 auto 40px auto;
    padding: 10px 5px;
    display: grid;
    justify-content: space-around;
    grid-template-columns: auto auto auto;
    row-gap: 20px;
}
.categ{
    width: 110px;
    height: 40px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 35px;
    color: var(--quinterny);
    text-align: center;
    text-shadow: -1px -1px 1px var(--quaternary), 1px 1px 1px var(--ligh);
    border: var(--tertiary) 3px solid;
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 1px 1px 2px var(--shadow), inset -1px -1px 2px var(--shadow),
    inset 2px 2px 5px var(--shadow), inset -2px -2px 5px var(--ligh),
    inset 4px 4px 5px var(--ligh), inset -4px -4px 5px var(--shadow);
    cursor: pointer;
}
.categ a{
}
#categories .active{
    text-align: center;
    text-shadow: -1px -1px 3px #290435, 1px 1px 3px #bd86d4;
    background: var(--primary);
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 2px 2px 5px #290435, inset -2px -2px 5px #290435,
    inset 3px 3px 8px #290435, inset -3px -3px 8px #290435,
    inset 8px 8px 8px var(--primary), inset -8px -8px 8px var(--primary),
    inset 10px 10px 8px #bd86d4, inset -10px -10px 8px #290435;
}
#categories .active a{
    color: var(--tertiary);
    transition-duration: .3s;
}
#categories a{
    border-radius: 15px;
    padding-left: 3px;
    text-align: center;
    display: block;
    transition-duration: .3s;
}
.realstab-content{
    display: none;
    opacity: 0;
    margin-top: 15px;
}
.realstab-content.active{
    display: block;
    opacity: 1;
    transition-duration: .3s;
    animation: apparition .3s;
}
.underpict{
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 10px;
 }
.picture{
    position: relative;
    overflow: hidden;
    width: 70px;
    height: 100px;
    border-radius: 10px; 
    transform: skewX(-10deg);
    cursor: pointer;
    transition-duration: .3s;
}
.shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: inset 6px 6px 12px var(--quaternary), inset -3px -3px 10px var(--ligh);
    z-index: 2;
}
.picture img{
    position: absolute;
    opacity: 70%;
    transform: scale(1.5);
    z-index: 1;
    transition-duration: .3s;
}
.picture:hover> img{
    opacity: 100%;
    transition-duration: .3s;
}
/* -----------------------FIN REALISATIONS--------------------------
/* -----------------------PRESTATIONS-------------------------- */
#presta{
    z-index: 1;
}
#p_presta{
    width: 100%;
    margin-bottom: 40px;
    padding: 10px;
    font-size: 20px;
}
#p_presta2{
    width: 100%;
    margin-bottom: 40px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
}
/* -----------------------FIN PRESTATIONS-------------------------- */
/* -----------------------CONTACT-------------------------- */
#contact{
    z-index: 1;
}
.svgStroke{
    height: 100%;
    font-size: 25px;
    font-weight: bold;
    fill: var(--yellow);
    stroke: #3f0752;
    stroke-width: 5px;
    stroke-linejoin: round;
    paint-order: stroke;
    filter: 
        drop-shadow(-4px -4px 2px var(--ligh)) 
        drop-shadow(2px 2px 3px var(--shadow));
}
#toGether{
    padding-right: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
#toGether svg{
    height: 35px;
    &.elm_1{
        width: 129px;
    }
    &.elm_2{
        width: 115px;
    }
    &.elm_3{
        width: 51px;
    }
    &.elm_4{
        width: 31px;
    }
    &.elm_5{
        width: 75px;
    }
    &.elm_6{
        width: 84px;
    }
}
.contact{
    padding: 10px;
}
.contact p{
    margin-bottom: 10px;
    padding: 10px;
    font-size: 17px;
}
@keyframes disparition{
    0%{opacity: 100%}
    95%{opacity: 100%}
    100%{opacity: 0; display: none;}
}
.contactPict{
    display: none;
}
.send_success{
    top: 120px;
    left: 0;
    box-shadow: 6px 6px 15px var(--shadow),
    inset -2px -2px 5px var(--shadow), inset 2px 2px 5px var(--ligh);
    border-radius: 10px;
    animation: disparition 4s ease-in-out both;
}
.alert-success{
    margin-top: 10px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: -1px -1px 1px var(--shadow), 1px 1px 1px var(--ligh),
    -3px -3px 4px var(--ligh), 2px 2px 6px var(--shadow);
}
.send_success figure{
    width: 300px;
    margin: 20px auto;
}
.send_success figure img{
    filter: 
      drop-shadow(-2px -2px 1px var(--tertiary)) 
      drop-shadow(2px -2px 1px var(--tertiary)) 
      drop-shadow(2px 2px 1px var(--tertiary))
      drop-shadow(-2px 2px 1px var(--tertiary))
      drop-shadow(-7px -7px 4px var(--ligh)) 
      drop-shadow(7px 6px 6px var(--shadow));
}
/* -----------------------FIN CONTACT-------------------------- */
/* -----------------------FOOTER-------------------------- */
footer{
    height: 300px;
    padding: 20px;
    background-color: var(--secondary);
    color: var(--primary);
}
footer a{
    color: var(--primary);
}
footer a:hover{
    color: var(--tertiary);
}
#reso_socio{
    width: 100%;
    margin: 30px auto;
    height: 43px;
    display: flex;
    justify-content: center;
    gap: 25px;
}
#reso_socio figure{
    height: 100%;
    cursor: pointer;
}
#reso_socio figure img{
    width: initial;
    height: 100%;
}
.res1{
    display: none;
}
#reso_socio figure:hover >.res1{
    display: block;
}
#reso_socio figure:hover >.res2{
    display: none;
}
#menufoot{
    margin-top: 50px;
}
#menufoot ul{
    height: 100px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
/* -----------------------FIN FOOTER-------------------------- */

/* ----------------------MEDIA QUERIES------------------------ */

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

	.carousel__pagination{
        display: block;
    }
}

@media only screen and (min-width: 801px) and (max-width: 1023px){


h2{
    margin-bottom: 60px;
    font-size: 70px;
    letter-spacing: 12px;
    text-align: start;
}
body{
    height: auto;
    padding: 0;
}
#shadowHead{
    display: none;
}
.paddiingLargeSection{
    padding: 150px 50px 60px 50px;
}
/* ------------------------ACCUEIL------------------------------ */

#home{
    padding: 0 50px;
}
#kame_home{
    height: 100%;
    padding: 40px 0px;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 50px;
    z-index: 2;
}
#kame_home h2{
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: start;
}
#kame_home img{
    height: 500px;
    margin: 0;
    filter: 
      drop-shadow(-3px -3px 1px var(--tertiary)) 
      drop-shadow(3px -3px 1px var(--tertiary)) 
      drop-shadow(3px 3px 1px var(--tertiary))
      drop-shadow(-3px 3px 1px var(--tertiary))
      drop-shadow(15px -14px 6px var(--ligh)) 
      drop-shadow(-15px 12px 10px var(--shadow));
}
#kame_home figcaption{
    margin-left: 50px;
    margin-top: 0px;
}
#home p{
    width: 100%;
    font-size: 55px;
    display: block;
    margin-left: 0;
}

/* -----------------------FIN ACCUEIL-------------------------- */
/* -----------------------REALISATIONS-------------------------- */
#reals{
    width: 100%;
    z-index: 2;
}
#reals p{
    font-size: 22px;
    margin-bottom: 60px;
}
.reals{
    display: flex;
    grid-auto-flow: column;
    gap: 100px;
}
#categories{
    width: 210px;
    padding: 0px;
    grid-template: repeat(auto-fill, minmax(70px, 70px)) / repeat( 1, 1fr);
    row-gap: 30px;
}
.categ{
    width: 100%;
    height: 70px;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 5px;
}
.categ a{
    color: var(--quinterny);
}
.categ:hover>a{
    color: var(--primary);
}
#categories a{
    padding: 15px;
}
.realstab-content{
    width: 100%;
    margin: 0;
    padding: 0;
}
 .underpict{
    padding: 0;
    padding-right: 12px;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 5px;
 }
.picture{
    width: 105px;
    height: 150px;
}
.shadow{
    width: 100%;
    height: 100%;
    z-index: 2;
}
/* -----------------------FIN REALISATIONS--------------------------*/
/* -----------------------PRESTATIONS-------------------------- */
#presta{
    width: 100%;
    z-index: 2;
}
#presta h2{
    text-align: end;
}
#p_presta{
    margin-bottom: 70px;
    clear: right;
    font-size: 22px;
}
#p_presta2{
    margin-bottom: 40px;
    font-size: 22px;
}
#prestas{
    margin-bottom: 90px;
}
/* -----------------------FIN PRESTATIONS-------------------------- */
/* -----------------------CONTACT-------------------------- */
#contact h2{
    margin-bottom: 50px;
}
.contact{
    padding: 0;
}
#toGether{
    justify-content: flex-start;
}
#toGether svg{
    height: 50px;
    &.elm_1{
        width: 152px;
    }
    &.elm_2{
        width: 137px;
    }
    &.elm_3{
        width: 59px;
    }
    &.elm_4{
        width: 36px;
    }
    &.elm_5{
        width: 87px;
    }
    &.elm_6{
        width: 94px;
    }
}
.svgStroke{
    transform:translateY(12px);
    font-size: 30px;
    stroke-width: 5px;
    filter: 
        drop-shadow(-4px -4px 2px var(--ligh)) 
        drop-shadow(2px 2px 3px var(--shadow));
}
.contact p{
    margin-bottom: 40px;
    font-size: 22px;
}
.send_success{
    width: 600px;
}
.send_success figure{
    width: 420px;
}
.send_success figure img{
    filter: 
      drop-shadow(-3px -3px 1px var(--tertiary)) 
      drop-shadow(3px -3px 1px var(--tertiary)) 
      drop-shadow(3px 3px 1px var(--tertiary))
      drop-shadow(-3px 3px 1px var(--tertiary))
      drop-shadow(-15px -14px 6px var(--ligh)) 
      drop-shadow(15px 12px 10px var(--shadow));
}

/* -----------------------FIN CONTACT-------------------------- */
/* -----------------------FOOTER-------------------------- */
footer{
    height: 300px;
}
#reso_socio{
    width: 95px;
    margin: 20px auto;
    justify-content: space-between;
}
#menufoot {
    max-width: 800px;
    margin: 5vw auto 0 auto;
    display: flex;
    justify-content: space-between;
}
/* -----------------------FIN FOOTER-------------------------- */
}    
@media only screen and (min-width: 1024px) and (max-width: 1079px){
        
    #kame_home h2{
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row-start: 1;
        grid-row-end: 1;
    }
    #kame_home img{
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
        height: 500px;
    }
    #kame_home figcaption{
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 2;
        grid-row-end: 3;
    }

}
@media only screen and (min-width: 1024px){
	.col-1{width: 8.3%;}
	.col-2{width: 16.6%;}
	.col-3{width: 25%;}
	.col-4{width: 33.3%;}
	.col-5{width: 41.6%;}
	.col-6{width: 50%;}
	.col-7{width: 58.3%;}
	.col-8{width: 66.6%;}
	.col-9{width: 75%;}
	.col-10{width: 83.3%;}
	.col-11{width: 91.6%;}
	.col-12{width: 100%;}


    h2{
        margin-bottom: 100px;
        font-size: clamp(70px, 5.88vw, 90px);
        text-shadow: -1px -1px 3px var(--shadow), 1px 1px 3px var(--ligh),
         -6px -6px 12px var(--ligh), 6px 6px 12px var(--shadow);
         letter-spacing: 12px;
         text-align: start;
    }
    body{
        height: auto;
        padding: 0;
    }
    #shadowHead{
        display: none;
    }
    .paddiingLargeSection{
        padding: 150px 50px 60px 50px;
    }
/* -----------------------HEADER-------------------------- */
header{
    padding: 10px 20px;
}
#burger{
    display: none;
}
#logo{
    height: 80px;
    top: 0px;
}
header nav{
    position: relative;
    width: 650px;
    height: 80px;
    top: 16px;
    padding: 0;
    border-radius: 37px;
    background-color: transparent;
     box-shadow: none;
    transform: translateX(0) !important;
    transition: transform 0s  !important;
}
header nav ul{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border: none;
    border-radius: 37px;
    box-shadow: none;
}
.menu .onglet {
    height: 33px;
    padding: 0 15px;
    line-height: 160%;
    font-size: 17px;
    white-space: nowrap;
    border-radius: 15px;
    border: var(--tertiary) 3px solid;
    background-color: var(--tertiary);
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 2px 2px 5px var(--shadow), inset -2px -2px 5px  var(--ligh);
}
.menu .active{
    box-shadow: -6px -6px 17px  var(--ligh), 6px 6px 15px var(--shadow),
    inset 0px 0px 3px 2px #23062e;
}
.menu .active:hover{
    color: var(--tertiary);
}
.onglet:hover{
    color: var(--primary);
}
/* -----------------------FIN HEADER-------------------------- */

#content{
    padding: 0;
}
.under_layer{
    width: 100%;
    max-width: 1500px;
}
/* ------------------------ACCUEIL------------------------------ */

#home{
    padding: 150px clamp(10px, 90px, 90px) 0 clamp(10px, 90px, 90px);
}
@media only screen and (min-width: 1079px){

    #kame_home h2{
        grid-column-start: 2;
        grid-column-end: 5;
        grid-row-start: 1;
        grid-row-end: 1;
    }
    #kame_home img{
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 4;
        height: 700px;
    }
    
}
#kame_home{
    width:initial;
    height: 100%;
    max-width: auto !important;
    padding: 0;
    grid-template-columns: auto auto;
    row-gap: 50px;
    column-gap: clamp(20px, 5.88vw, 70px);
    z-index: 2;
}
#kame_home h2{
  margin: 0;
  text-align: start;
}
#kame_home img{
    margin: 15px auto;
    filter: 
        drop-shadow(-3px -3px 1px var(--tertiary)) 
        drop-shadow(3px -3px 1px var(--tertiary)) 
        drop-shadow(3px 3px 1px var(--tertiary))
        drop-shadow(-3px 3px 1px var(--tertiary))
        drop-shadow(17px -15px 6px var(--ligh)) 
        drop-shadow(-17px 10px 10px var(--shadow)) ;
}
#kame_home figcaption{
    max-width: 1100px;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
}
#home p{
    max-width: 100%;
    margin-left: 0;
    display: block;
    font-size: 70px;
}

/* -----------------------FIN ACCUEIL-------------------------- */
/* -----------------------REALISATIONS-------------------------- */
#reals{
    width: 100%;
    z-index: 2;
}
#reals p{
    font-size: 22px;
    margin-bottom: 100px;
}
.reals{
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
#categories{
    width: 320px;
    padding: 30px 0;
    grid-template: repeat(auto-fill, minmax(70px, 70px)) / repeat( 1, 1fr);
    row-gap: 30px;
}
#categories .active{
    text-align: center;
    text-shadow: -1px -1px 3px #290435, 1px 1px 3px #bd86d4;
    background: var(--primary);
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 2px 2px 5px #290435, inset -2px -2px 5px #290435,
    inset 6px 6px 8px #290435, inset -6px -6px 8px #290435,
    inset 8px 8px 8px var(--primary), inset -8px -8px 8px var(--primary),
    inset 10px 10px 8px #bd86d4, inset -10px -10px 8px #290435;
}
.categ{
    width: 100%;
    height: 70px;
    letter-spacing: 5px;
    font-size: 40px;
    line-height: 75%;
    text-shadow: -1px -1px 3px var(--quaternary), 1px 1px 3px var(--ligh);
    box-shadow: -6px -6px 17px var(--ligh), 6px 6px 15px var(--shadow),
    inset 1px 1px 2px var(--shadow), inset -1px -1px 2px var(--shadow),
    inset 2px 2px 5px var(--shadow), inset -2px -2px 5px var(--ligh),
    inset 8px 8px 5px var(--ligh), inset -8px -8px 5px var(--shadow);
}
.categ a{
    color: var(--quinterny);
}
.categ:hover>a{
    color: var(--primary);
}
#categories a{
    padding: 15px;
}
.realstab-content{
    margin: 0;
    width: 100%;
    opacity: 0;
}
 .underpict{
    padding: 30px 13px 0 30px;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
 }
.picture{
    width: 120px;
    height: 172px;
}
/* -----------------------FIN REALISATIONS--------------------------*/
/* -----------------------PRESTATIONS-------------------------- */
#presta{
    width: 100%;
    z-index: 2;
}
#presta h2{
    text-align: end;
}
#p_presta{
    font-size: 22px;
    width: 70%;
    margin-bottom: 120px;
}
#prestas{
    margin-bottom: 120px;
}
#p_presta2{
    font-size: 22px;
    text-align: initial;
}
/* -----------------------FIN PRESTATIONS-------------------------- */
/* -----------------------CONTACT-------------------------- */
.contact{
    padding: 0;
    display: grid;
    grid-template-columns: auto auto auto auto;
    row-gap: 30px;
    column-gap: 20px;
}
#toGether{
    justify-content: flex-start;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
}
#toGether svg{
    height: 50px;
    &.elm_1{
        width: 175px;
    }
    &.elm_2{
        width: 156px;
    }
    &.elm_3{
        width: 67px;
    }
    &.elm_4{
        width: 42px;
    }
    &.elm_5{
        width: 102px;
    }
    &.elm_6{
        width: 114px;
    }
}
.svgStroke{
    transform:translateY(12px);
    font-size: 35px;
    stroke-width: 5px;
    filter: 
        drop-shadow(-4px -4px 2px var(--ligh)) 
        drop-shadow(2px 2px 3px var(--shadow));
}
.contact p{
    margin-bottom: 20px;
    font-size: 22px;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
}
.contactPict{
    display: block;
    width: 100%;
    position: absolute;
    top: 80px;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
}
.contactPict figure{
    width: 80%;
    padding: 49px 0;
    margin-top: 32px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}
.contactPict figure img{
    max-width: 70%;
    filter: 
        drop-shadow(-0.15vw -0.15vw 0.05vw var(--tertiary)) 
        drop-shadow(0.15vw -0.15vw 0.05vw var(--tertiary)) 
        drop-shadow(0.15vw 0.15vw 0.05vw var(--tertiary))
        drop-shadow(-0.15vw 0.15vw 0.05vw var(--tertiary))
        drop-shadow(-1.1vw -1vw 0.4vw var(--ligh)) 
        drop-shadow(1vw 0.33vw 0.7vw var(--shadow)) ;
}
#contact figure{
    height: 100%;
}
.send_success{
    max-width: initial;
    top: 80px;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
    border: none;
    box-shadow: none;
}
.alert-success{
    font-size: 40px;
}
.send_success figure{
    width: 80%;
    margin-top: 32px;
}
.send_success figure img{
    filter: 
        drop-shadow(-0.2vw -0.2vw 0.05vw var(--tertiary)) 
        drop-shadow(0.2vw -0.2vw 0.05vw var(--tertiary)) 
        drop-shadow(0.2vw 0.2vw 0.05vw var(--tertiary))
        drop-shadow(-0.2vw 0.2vw 0.05vw var(--tertiary))
        drop-shadow(-1.1vw -1vw 0.4vw var(--ligh)) 
        drop-shadow(1vw 0.33vw 0.7vw var(--shadow)) ;
}
/* -----------------------FIN CONTACT-------------------------- */
/* -----------------------FOOTER-------------------------- */
#reso_socio{
    margin: 20px auto;
    width: 95px;
    height: 43px;
    justify-content: space-between;
}
#menufoot {
    max-width: 800px;
    margin: 70px auto 0 auto;
}
#menufoot ul{
    flex-direction: row;
    max-width: 800px;
    height: 30px;
}
/* -----------------------FIN FOOTER-------------------------- */

}
