/*
Theme Name: Studio Kaer
Author: Catalyst Webdesign
Description: Thème pour Studio Kaer
Version: 1.0
*/


:root {
    --bleu: #2033ff;
    --orange: #ff6600;
    --spacegrotesk: "Space Grotesk", sans-serif;
    --inclusive: "Inclusive Sans", sans-serif;
    --ibm: "IBM Plex Mono", monospace;
}



html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--bleu);
    font-family: var(--inclusive);
    overflow-x: hidden;
    font-weight: 200;
    width: 100¨%;
    max-width: 100%;
    box-sizing: border-box;
}

.parallax {
    transition: .5s;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--spacegrotesk);
    font-weight: 500;
    text-align: center;
}


header ul,
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



a:not(.logo) {
    color: var(--bleu);
    text-decoration: none;
    transition: .5s;
    position: relative;
    padding: 0;
    margin: 5px 10px;
    padding: 2px 15px !important
}

a svg.round-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: -1px;
}

header a svg.round-svg,
footer .coord a svg.round-svg,
section#f a svg.round-svg {
    display: none !important;
}

a .round-1 {
    fill: none;
    stroke: #2033ff;
    stroke-miterlimit: 10;
    stroke-width: 1;
    stroke-dasharray: 1000;
    /* longueur approximative du path */
    stroke-dashoffset: 1000;
    /* commence caché */
    transition: stroke-dashoffset 0.6s ease;
    /* vitesse du tracé */
    vector-effect: non-scaling-stroke;
    /* empêche le trait de grossir/réduire */
}

a:hover svg.round-svg .round-1 {
    stroke-dashoffset: 0;
    /* le trait se dessine */
}

a:hover {
    color: var(--orange);
}

a.bouton {
    font-style: italic;
    font-weight: 600;
}

a.bouton svg#fleche {
    transition: .5s;
    position: absolute;
    left: -30px;
    top: 5px;
}

a.bouton:hover svg#fleche {
    transform: translateX(5px);
}

a.bouton svg#fleche path,
a.bouton svg#fleche line {
    transition: .5s;
}

a.bouton:hover svg#fleche path,
a.bouton:hover svg#fleche line {
    stroke: var(--orange);
}

.wrapper {
    width: 1200px !important;
    max-width: 90% !important;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.image {
    position: relative;
}

.video-block {
    position: relative;
    width: 100%;
}

.video-block::after {
    content: "";
    z-index: -1;
    width: 80px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("/wp-content/themes/studiokaer/images/Googly_eyes.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.video-block .image {
    width: 100%;
    height: 100%;
}

span.legende {
    position: absolute;
    right: 5px;
    font-size: 10px;
    font-family: var(--ibm);
    font-weight: light;
    font-style: italic;
    top: calc(100% + 10px);
    text-align: right;
    width: calc(100% - 10px);
}

span.legende a {
    font-weight: 500;
    margin: 0;
    padding: 0 !important;
}

.bg-video-lazy {
    position: relative;
    overflow: hidden;
}

.bg-video-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-video-inner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bg-video-sound {
    position: absolute;
    bottom: 50px;
    right: 30px;
    color: white;
    border: 0;
    border-radius: 0;
    cursor: none;
    z-index: 999;
    background: transparent;
    width: 30px;
}

.bg-video-sound img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.bg-video-sound img.off {
    display: block;
}

.bg-video-sound img.on {
    display: none;
}

.bg-video-sound.sound-on img.on {
    display: block;
}

.bg-video-sound.sound-on img.off {
    display: none;
}

.totop {
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 50px auto;
    text-transform: lowercase;
}

.totop #fleche {
    transform: rotate(-90deg);
    position: absolute;
    transition: .5s;
    top: -20px;
    left: 20px;
}

.totop:hover #fleche {
    transform: rotate(-90deg) translateX(10px);
}

.totop:hover #fleche line,
.totop:hover #fleche path {
    stroke: var(--orange);
}


.totop img {
    position: absolute;
    width: 80px;
    left: -50px;
    top: calc(50% - 10px);
    transform: translateY(-50%);
}


.home section {
    margin: 150px 0;
    position: relative;
    box-sizing: border-box;
}

header {
    width: 100%;
}

header .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo-animation {
    margin: 30px 0;
    width: 120px;
    height: 124px;
}

.desktop header #logo-animation {
    width: 150px;
    height: 154px;
}

header #logo-animation * {
    transition: .5s;
}


header nav #menu-principal {
    display: flex;
    justify-content: flex-end;
}

header nav #menu-principal > li {
    font-size: 16px;
    font-weight: 400;
    text-transform: lowercase;
}

header nav #menu-principal li a {
    margin: 0;
    padding: 2px 10px !important;
}

.mobile header nav {
    opacity: 0;
    position: absolute;
    padding: 20px;
    right: -300px;
    transition: .5s;
    top: 20px;
}

.mobile header nav.show {
    right: 10px;
    opacity: 1;
}

.mobile header nav ul {
    flex-direction: column;
    text-align: right;
}


.desktop header .burger {
    display: none;
}

.mobile header .burger {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

.mobile header .burger div {
    width: 100%;
    height: 4px;
    background-color: var(--bleu);
    transition: .5s;
}

.mobile header .burger:hover div {
    background-color: var(--orange);
}

header ul.sub-menu {
    display: none;
    margin-top: 10px;
    padding-bottom: 10px;
    z-index: 999;
    text-transform: lowercase;
    font-weight: 200;
}

.desktop header ul.sub-menu {
    position: absolute;
    background: white;
}

.mobile header ul.sub-menu {
    right: 0;
}

header li {
    white-space: nowrap;

}

header .lang-item-fr img {
    content: url("/wp-content/themes/studiokaer/images/fr.png");
    height: auto !important;
    width: 30px !important;
}

header .lang-item-en img {
    content: url("/wp-content/themes/studiokaer/images/en.png");
    height: auto !important;
    width: 30px !important;
}

/*endregion*/
/*endregion*/

/*endregion*/

/* MAIN region*/

.home main {
    margin: 50px 0;
}

.home section#a {
    width: 100%;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    color: white;
    font-family: var(--ibm);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.mobile.home section#a {
    margin: 0 0 50px 0;
}

.home section#a .after {
    width: 100%;
    height: 150%;
    top: -20%;
    left: 0;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -2;
    transition: .3s;
}

.home section#a .wrapper {
    padding: 40px 0 45px 0;
    box-sizing: border-box;
}

.home section#a h1 {
    margin-top: 0;
}

.home section#a h1 span {
    white-space: nowrap;
}

.home.mobile section#a h1 {
    font-size: 20px;
}

.home section#a ul {
    display: flex;
    justify-content: center;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.home.mobile section#a ul {
    flex-direction: column;
}

.home section#a li {
    text-align: center;
    white-space: nowrap;
}

.home.desktop section#a li:not(:last-of-type) {
    padding-right: 7px;
    border-right: 1px solid white;
}

.home section#a a {
    color: white;
    text-transform: lowercase;
    margin: 5px 0;
}

.home section#a a .round-1 {
    stroke: #fff !important;
}

.home.mobile section#a li {
    font-size: 12px;
    line-height: 12px;
}

.home section#b {
    margin: 50px 0;
}

.home section#b .texte {
    position: relative;
}

.home section#b .texte p {
    font-size: 16px;
    margin: 20px 0;
    line-height: 16px;
    position: relative;
    display: block;
}

.home.mobile section#b .texte p {
    font-size: 16px;
    margin: 30px 0;
    line-height: 18px;
}

.home section#b .texte p:first-of-type:first-letter {
    font-weight: 800;
    font-size: 80px;
}

.home.mobile section#b .texte p:first-of-type:first-letter {
    font-size: 60px;
}

.home section#b .texte p:first-of-type::after {
    content: "";
    width: 60px;
    height: 50px;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/Uafter.png);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -15px;
    top: -5px;
    z-index: -1;
}

.home.mobile section#b .texte p:first-of-type::after {
    width: 50px;
    height: 40px;
}

.home section#b #b_gouttes {
    position: absolute;
    top: -90px;
    left: 70px;
}

.home section#b #b_gouttes path {
    fill: var(--orange);
    transition: .5s;
}

.home section#b .image {
    text-align: right;
    margin-bottom: 100px;
}

.home.desktop section#b .image {
    margin-bottom: -100px;
}

@media screen and (max-width:1090px) {
    .home.desktop section#b .image {
        margin-bottom: -50px;
    }
}

.home section#b .image img {
    width: 600px;
    height: auto;
    max-width: 100%;
}

.home section#b #b_vague {
    margin: 50px auto;
    display: block;
}

.home section#c {
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    background-color: rgba(25, 52, 255, 0.6);
    margin-top: 50px;
}

.home section#c .after {
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondrose.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: -20px;
    width: 100%;
    height: calc(100% + 20px);
    z-index: -1;
}

.home section#c #gouttesCd {
    position: absolute;
    right: 100px;
    top: -50px;
}

.home section#c #gouttesCg {
    position: absolute;
    left: 100px;
    top: 50px;
}

.home.mobile section#c #gouttesCg {
    display: none;
}

.home section#c .image {
    text-align: center;
}

.home section#c .image img {
    width: 200px;
    margin: 60px 0;
}

.home section#c .texte {
    color: white;
    font-weight: bold;
    text-align: center;
    position: absolute;
    display: inline-block;
    width: 95%;
    margin: 0 auto;
    top: 40%;
}

.home section#c .texte p {
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 10px;
    text-decoration-color: var(--orange);
    font-size: 26px;
    text-decoration-skip-ink: none;
    line-height: 40px;
    margin: 0;
    text-underline-offset: -1px;
}

.home section#c .texte span {
    white-space: nowrap;
}

.home.mobile section#c .texte span {
    font-size: 20px;
}

.home section#d .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.home.mobile section#d .wrapper {
    flex-direction: column-reverse;
    padding: 0 10px;
}

.home.mobile section#d .image {
    max-width: 500px;
}

.home.desktop section#d .image {
    max-width: 50%;
}

.home.mobile section#d .texte {
    text-align: left;
}

.home.desktop section#d .texte {
    max-width: 50%;
    text-align: right;
}

.home section#e {
    margin-bottom: 50px;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.home section#e .after:first-of-type {
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondrose.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: -20px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home section#e .after:nth-of-type(2) {
    background-color: var(--orange);
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.home section#e .wrapper {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    color: white;
    box-sizing: border-box;
}

.home.mobile section#e .wrapper {
    flex-direction: column-reverse;
    padding: 50px 10px;
}

.home.desktop section#e .texte {
    width: 60%;
}


.home.desktop section#e .image {
    width: 40%;
    text-align: center;
}

.home.desktop section#e .image img {
    max-width: 300px;
}

.home .decouverte {
    text-align: right;
}

.home section#f {
    margin: 50px 0;
}

.home section#f .wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.home.mobile section#f .wrapper {
    flex-direction: column-reverse;
    align-items: center;
}

.home.mobile section#f .wrapper > div {
    width: 100%;
    max-width: 500px;
}

.home.mobile section#f .wrapper a {
    margin: 10px 0;
    font-size: 15px;
}

.home.desktop section#f .texte {
    max-width: 60%;
    text-align: right;
    font-weight: 200;
    line-height: 24px;
    margin-top: 100px;
}

.home section#f .texte article {
    position: relative;
}

.home.desktop section#f .texte p {
    margin: 0;
}

.home section#f .texte span {
    font-weight: 600;
}

.home section#f .texte article div {
    background-size: cover;
    background-position: center;
    width: 60px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.home section#f .image {
    position: relative;
}

.home.desktop section#f .image {
    max-width: 40%;
}

.home section#f .image > * {
    max-width: 100%;
}

.home section#f .image .caillou {
    position: absolute;
}

.home section#f .image .caillou1 {
    top: 11%;
    left: 11%;
    width: 20%;
}

.home section#f .image .caillou2 {
    top: 7%;
    left: 50%;
    width: 18%;
}

.home section#f .image .caillou3 {
    top: 40%;
    left: 6%;
    width: 16%;
}

.home section#f .image .caillou4 {
    top: 28%;
    left: 43%;
    width: 14%;
}

.home section#f .image .caillou5 {
    top: 33%;
    left: 73%;
    width: 18%;
}

.home section#f .image .caillou6 {
    top: 55%;
    left: 57%;
    width: 14%;
}

.home section#f .image .caillou7 {
    top: 72%;
    left: 14%;
    width: 18%;
}

.home section#f .image .caillou8 {
    top: 85%;
    left: 44%;
    width: 23%;
}

.home section#g {
    text-align: right;
    color: white;
    font-family: var(--ibm);
    font-style: italic;
    line-height: 25px;
    font-weight: 300;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.home section#g .after {
    width: 100%;
    height: 150%;
    top: -20%;
    left: 0;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -1;
    transition: .3s;
}

.home section#g .wrapper {
    padding: 50px;
    box-sizing: border-box;
}

.home.mobile section#g .wrapper {
    padding: 50px 0;
}

.home section#g p {
    margin: 0;
}

.home.mobile section#g p {
    font-size: 14px;
}

.home section#g strong {
    font-weight: 600;
}

.home section#h img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
}

/*endregion*/

/* FOOTER region*/

footer {
    width: 100%;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    color: white;
    font-family: var(--ibm);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

footer .after {
    width: 100%;
    height: 150%;
    top: -20%;
    left: 0;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -2;
    transition: .3s;
}

footer .wrapper {
    padding: 20px;
    box-sizing: border-box;
}

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

.mobile footer .flex {
    flex-direction: column;
}

footer a {
    color: white !important;
}

footer .coord a {
    padding: 0 !important;
    margin: 5px 0 !important;
}


footer a .round-1 {
    stroke: #fff !important;
}

footer .coord a:hover {
    color: var(--orange) !important;
}

footer .coord {
    display: flex;
    flex-direction: column;
    gap: 0;
}

footer .coord svg {
    margin-top: 5px;
}

footer .coord .titre {
    margin: 0;
    font-weight: 600;
    font-family: var(--spacegrotesk);
}

footer .content-menu-footer {
    text-align: right;
    line-height: 22px;
    text-transform: lowercase;
}

.mobile footer .content-menu-footer {
    width: 100%;
}

footer .sub-menu {
    display: none;
}

footer .mentionslegales {
    text-align: right;
    font-size: 10px;
    display: block;
    margin-left: auto;
}

/* Masque le curseur natif */
body,
html {
    cursor: none !important;
}

/* Style du curseur personnalisé */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #dfcc00;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, background-color 0.1s ease-out, opacity 0.15s ease-out, width 0.1s ease-out, height 0.1s ease-out;
    z-index: 9999;
    mix-blend-mode: difference;
}

#custom-cursor.googlyeyes {
    background-color: transparent;
    background-image: url(images/Googly_eyes.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: normal;
    width: 90px;
    height: 50px;
}

a:hover {
    cursor: none !important;
}

#cursor-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transform: translate(-50%, -120%);
    z-index: 10000;
    opacity: 0;
}




/*endregion*/

/* PAGES region*/

/* * Front page region*/

.page-template-page-theme main {
    margin: 0;
}

.page-template-page-theme .image {
    background-size: cover;
    background-position: center;
}

.page-template-page-theme section {
    padding: 50px 0;
}

.page-template-page-theme #title {
    margin: 0;
    width: 100%;
    text-align: center;
    text-transform: lowercase;
    background-color: var(--bleu);
    color: white;
    padding: 50px 0;
    margin-top: 22px;
}

.page-template-page-theme #title h1 {
    margin: 0;
    display: inline;
    font-size: 22px;
    position: relative;
}




.page-template-page-theme #title h1::after {
    content: "";
    width: 20px;
    height: 80%;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/Uafter.png);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -25px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}

.page-template-page-theme h2 {
    margin: 10px 0;
    font-size: 17px;
    text-align: left;
    font-family: var(inclusive);
    font-weight: 500;
}

.page-template-page-theme p {
    font-family: var(inclusive);
    font-weight: 200;
}

.page-template-page-theme p strong {
    font-weight: 500;
}


.page-template-page-theme #zoneA {
    width: 100vw;
    height: 30vw;
    background-color: #f7f2ef;
    padding: 0;
    background-position: center;
    background-size: cover;
}


.page-template-page-theme #zoneA .video-block {
    width: 100vw;
    height: 30vw;
}


.page-template-page-theme #zoneA .bg-video-lazy {
    width: 100%;
    height: 100%;

}

.page-template-page-theme #zoneB {
    padding-bottom: 150px;
}

.page-template-page-theme #zoneB .texte {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
}

.page-template-page-theme #zoneB svg {
    margin: 50px auto;
    display: block;
}

.page-template-page-theme #zoneB .image {
    width: 720px;
    height: 480px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.page-id-125 #zoneB .image,
.page-id-447 #zoneB .image {
    height: 405px;
}

.page-template-page-theme #zoneC {
    background-color: #f7f2ef;
}

.page-template-page-theme #zoneC .flex {
    gap: 100px;
    justify-content: flex-start;
    display: flex;
}

.mobile.page-template-page-theme #zoneC .flex {
    flex-direction: column-reverse;
    gap: 50px;
}


.page-template-page-theme #zoneC .image {
    width: 350px;
    height: 300px;
    max-width: 100%;
}

.page-id-125 #zoneC .image,
.page-id-447 #zoneC .image {
    height: 405px;
    width: 720px;
}


.page-template-page-theme #zoneC .texte {
    margin-top: 100px;
    max-width: calc(100% - 450px);
    width: 600px;
}

.mobile.page-template-page-theme #zoneC .texte {
    max-width: 100%;
}

.page-template-page-theme #zoneD .flex {
    display: flex;
    justify-content: space-between;
}

.mobile.page-template-page-theme #zoneD .flex {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: fit-content !important;
}



.page-template-page-theme #zoneD .image,
.desktop.page-template-page-theme #zoneD .video-block {
    width: 360px;
    height: 280px;
}

.page-id-125 #zoneD .image,
.desktop.page-id-125 #zoneD .video-block,
.page-id-447 #zoneD .image,
.desktop.page-id-447 #zoneD .video-block {
    width: 620px;
    height: 420px;
}

.desktop.page-template-page-theme #zoneD .video-block,
.desktop.page-template-page-theme #zoneD .image {
    max-width: 30%;
}

.page-template-page-theme #zoneD .video-block {
    width: 360px;
    height: 280px;
    margin: 0 auto;
}



.page-template-page-theme #zoneE .flex {
    gap: 150px;
    justify-content: space-between;
    display: flex;
}

.mobile.page-template-page-theme #zoneE .flex {
    flex-direction: column;
    gap: 50px;
}

.desktop.page-template-page-theme #zoneE .flex .col1 {
    width: 60%;
}

.desktop.page-template-page-theme #zoneE .flex .col2 {
    width: calc(40% - 150px);
}

.page-template-page-theme #zoneE .col1 .texte {
    margin: 50px 0;
}

.page-template-page-theme #zoneE .col1 .image {
    width: 100%;
    height: 400px;
    margin-top: 150px;
}

.page-template-page-theme #zoneE .col2 .image {
    width: 100%;
    height: 500px;
    margin-top: 150px;
}

.mobile.page-template-page-theme #zoneE .image {
    width: 100%;
    height: 300px !important;
    margin-top: 30px;
}

.page-template-page-theme #zoneF {
    background-color: #f7f2ef;
}

.page-template-page-theme #zoneF .flex {
    display: flex;
    justify-content: space-between;
    gap: 150px;
}

.mobile.page-template-page-theme #zoneF .flex {
    flex-direction: column-reverse;
    gap: 50px;
}

.desktop.page-template-page-theme #zoneF .flex .image {
    max-width: 40%;
    width: 960px;
    height: 520px;
}

.page-id-125 #zoneF .flex .image,
.page-id-447 #zoneF .flex .image {
    width: 960px;
    height: 540px;
}

.desktop.page-template-page-theme #zoneF .flex .texte {
    width: calc(60% - 150px);
}

.page-template-page-theme #zoneG .contact {
    text-align: right;
    margin-bottom: 350px;
}

.page-template-apropos section#a {
    width: 100%;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    color: white;
    font-family: var(--inclusive);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.page-template-apropos section#a .after {
    width: 100%;
    height: 150%;
    top: -20%;
    left: 0;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -2;
    transition: .3s;
}

.page-template-apropos section#a .wrapper {
    padding: 40px 0 45px 0;
    box-sizing: border-box;
}


.page-template-apropos #a .flex {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.mobile.page-template-apropos #a .flex {
    flex-direction: column;
}


.desktop.page-template-apropos #a .texte {
    width: 60%;
}

.page-template-apropos #a .texte h2 {
    display: flex;
    gap: 10px;
}

.page-template-apropos #a .texte h2 svg:last-of-type {
    transform: rotate(180deg);
}

.page-template-apropos #a .texte a {
    text-align: left;
    color: white;
    display: block;
    margin: 5px 0;
    padding: 0 !important;
    font-family: var(--ibm);
    width: fit-content;
}

.page-template-apropos #a .texte a:hover {
    color: var(--orange);
}

.page-template-apropos #a .image {
    width: 80%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.desktop.page-template-apropos #a .image {
    width: 30%;
}

.page-template-apropos #b {
    padding: 50px 0;
}



.page-template-apropos #b .wrapper > a {
    margin: 15px auto;
    padding: 0 !important;
    display: block;
}



.page-template-apropos #b .wrapper > a.voirplus {
    display: none;
}

.desktop.page-template-apropos #b .wrapper .grid-sizer {
    width: calc(33% - 30px);
}

.mobile.page-template-apropos #b .wrapper .grid-sizer {
    width: calc(45% - 30px);
}

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

    .page-template-apropos #b .wrapper > a {
        display: none;
        position: static !important;
    }

    .page-template-apropos #b .wrapper > a.voirplus {
        display: block;
        text-align: center;
        width: fit-content;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%);
        top: unset !important;
        bottom: -50px;
        padding: 10px !important;
    }

    .page-template-apropos #b .wrapper > a.show {
        display: block;
    }

    .mobile.page-template-apropos #b .wrapper .grid-sizer {
        width: 100%;
    }
}

.desktop.page-template-apropos #b .wrapper > a {
    position: absolute;
}

.page-template-apropos #b .friend {
    position: relative;
}

.page-template-apropos #b img {
    max-width: 100px;
    max-height: 100px;
    height: auto;
}

.page-template-apropos #b .texte {
    position: absolute;
    font-family: var(--ibm);
}

.page-template-apropos #b h2 {
    font-weight: 800;
    font-style: italic;
    font-size: 15px;
    margin: 0;
    text-align: center;
    position: relative;
    font-family: var(--ibm);
}

.page-template-apropos #b span.entreprise {
    font-weight: 800;
    font-style: italic;
    text-align: center;
    position: relative;
    font-size: 12px;
}

.page-template-apropos #b p {
    margin: 0;
    text-align: center;
    position: relative;
    font-size: 12px;
}



/* maéva region*/

.page-template-apropos #b #Maeva {
    width: 215px;
    height: 136px;
    display: block;
}

.page-template-apropos #b #Maeva article {
    padding: 10px 95px 60px 20px;
}

.page-template-apropos #b #Maeva .texte {
    right: 0;
    bottom: 15px;
}

.page-template-apropos #b #Maeva .texte > p:nth-of-type(1) {
    right: 40px;
}

.page-template-apropos #b #Maeva .texte > p:nth-of-type(2) {
    right: 30px;
}

.page-template-apropos #b #Maeva .texte > p:nth-of-type(3) {
    right: -5px;
}

/*endregion*/

/* Sarah region*/
.page-template-apropos #b #Sarah {
    width: 188px;
    height: 164px;
    display: block;
}

.page-template-apropos #b #Sarah article {
    padding: 20px 100px 40px 20px;
}

.page-template-apropos #b #Sarah .texte {
    right: 0;
    bottom: 20px;
}

.page-template-apropos #b #Sarah .texte > h2 {
    right: 5px;
}

.page-template-apropos #b #Sarah .texte > p:nth-of-type(2) {
    right: 20px;
}

.page-template-apropos #b #Sarah .texte > p:nth-of-type(3) {
    left: 25px;
}

/*endregion*/

/* Kevin region*/
.page-template-apropos #b #Kevin {
    width: 264px;
    height: 134px;
    display: block;
}

.page-template-apropos #b #Kevin article {
    padding: 10px 10px 20px 170px;
}

.page-template-apropos #b #Kevin .texte {
    left: 75px;
    bottom: 10px;
}

.page-template-apropos #b #Kevin .texte > h2 {
    right: 15px;
}

.page-template-apropos #b #Kevin .texte > p:nth-of-type(1) {
    right: 60px;
}

.page-template-apropos #b #Kevin .texte > p:nth-of-type(2) {
    right: 20px;
}



/*endregion*/

/* Benjamin region*/
.page-template-apropos #b #Benjamin {
    width: 211px;
    height: 124px;
}

.page-template-apropos #b #Benjamin article {
    padding: 10px 10px 10px 120px;
}

.page-template-apropos #b #Benjamin .texte {
    left: 15px;
    top: 20px;
}

.page-template-apropos #b #Benjamin .texte > h2 {
    left: 25px;
}

.page-template-apropos #b #Benjamin .texte > p:nth-of-type(1) {
    left: 15px;
}

.page-template-apropos #b #Benjamin .texte > p:nth-of-type(2) {
    left: 0;
}


/*endregion*/

/* Anne region*/
.page-template-apropos #b #Anne {
    width: 211px;
    height: 124px;
}

.page-template-apropos #b #Anne article {
    padding: 10px 120px 10px 20px;
}

.page-template-apropos #b #Anne .texte {
    right: 20px;
    top: 40px;
}

.page-template-apropos #b #Anne .texte > * {
    text-align: left;
}

.page-template-apropos #b #Anne .texte > p:nth-of-type(1) {
    left: 7px;
}

.page-template-apropos #b #Anne .texte > p:nth-of-type(2) {
    left: 15px;
}

/*endregion*/

/* Pascaline region*/
.page-template-apropos #b #Pascaline {
    width: 220px;
    height: 124px;
}

.page-template-apropos #b #Pascaline article {
    padding: 10px 120px 10px 10px
}

.page-template-apropos #b #Pascaline .texte {
    right: 10px;
    bottom: 30px;
}

.page-template-apropos #b #Pascaline .texte > p:nth-of-type(2) {
    right: 25px;
}

/*endregion*/

/* David region*/
.page-template-apropos #b #David {
    width: 157px;
    height: 164px;
}

.page-template-apropos #b #David article {
    padding: 10px 50px 50px 30px;
}

.page-template-apropos #b #David .texte {
    right: 44px;
    bottom: 20px;
}

.page-template-apropos #b #David .texte > h2 {
    left: 50px;
}

.page-template-apropos #b #David .texte > p:nth-of-type(2) {
    left: -45px;
}

/*endregion*/

/* Bleuenn region*/
.page-template-apropos #b #Bleuenn {
    width: 232px;
    height: 141px;
}

.page-template-apropos #b #Bleuenn article {
    padding: 10px 120px 30px 10px;
}

.page-template-apropos #b #Bleuenn .texte {
    right: 0;
    bottom: 10px;
}

.page-template-apropos #b #Bleuenn .texte > p:nth-of-type(1) {
    right: 30px;
}

.page-template-apropos #b #Bleuenn .texte > p:nth-of-type(2) {
    right: -10px;
}

/*endregion*/

/* JP region*/
.page-template-apropos #b #JP {
    width: 157px;
    height: 136px;
}

.page-template-apropos #b #JP article {
    padding: 10px 10px 20px 80px;
}

.page-template-apropos #b #JP .texte {
    left: 10px;
    bottom: 10px;
}

/*endregion*/

/* Gweno region*/
.page-template-apropos #b #Gweno {
    width: 213px;
    height: 131px;
}

.page-template-apropos #b #Gweno article {
    padding: 20px 10px 5px 105px;
}

.page-template-apropos #b #Gweno .texte {
    left: 10px;
    top: 10px;
}

.page-template-apropos #b #Gweno .texte > * {
    text-align: right;
}

.page-template-apropos #b #Gweno .texte > p:nth-of-type(1) {
    right: 7px;
}

.page-template-apropos #b #Gweno .texte > p:nth-of-type(2) {
    right: 15px;
}

/*endregion*/

/* Camille region*/
.page-template-apropos #b #Camille {
    width: 241px;
    height: 136px;
}

.page-template-apropos #b #Camille article {
    padding: 10px 10px 20px 160px;
}

.page-template-apropos #b #Camille .texte {
    left: 35px;
    bottom: 10px;
}

.page-template-apropos #b #Camille .texte > p:nth-of-type(1) {
    right: 25px;
}

.page-template-apropos #b #Camille .texte > p:nth-of-type(2) {
    right: -35px;
}

/*endregion*/

/* Laureline region*/
.page-template-apropos #b #Laureline {
    width: 219px;
    height: 146px;
}

.page-template-apropos #b #Laureline article {
    padding: 10px 115px 30px 10px;
}

.page-template-apropos #b #Laureline .texte {
    right: 0;
    bottom: 10px;
}

.page-template-apropos #b #Laureline .texte > p:nth-of-type(1) {
    right: 35px;
}


/*endregion*/

/* Marie region*/
.page-template-apropos #b #Marie {
    width: 204px;
    height: 136px;
}

.page-template-apropos #b #Marie article {
    padding: 10px 10px 20px 120px;
}

.page-template-apropos #b #Marie .texte {
    left: 35px;
    bottom: 10px;
}

.page-template-apropos #b #Marie .texte > p:nth-of-type(1) {
    left: -25px;
}

.page-template-apropos #b #Marie .texte > p:nth-of-type(2) {
    left: 10px;
}

/*endregion*/

/* Lena region*/
.page-template-apropos #b #Lena {
    width: 207px;
    height: 137px;
}

.page-template-apropos #b #Lena article {
    padding: 10px 95px 30px 10px;
}

.page-template-apropos #b #Lena .texte {
    right: 35px;
    bottom: 10px;
}

.page-template-apropos #b #Lena .texte > h2 {
    left: 15px;
}

.page-template-apropos #b #Lena .texte > p:nth-of-type(1) {
    left: 25px;
}

/*endregion*/

/* Melanie region*/
.page-template-apropos #b #Melanie {
    width: 211px;
    height: 126px;
}


.page-template-apropos #b #Melanie article {
    padding: 10px 115px 10px 10px;
}

.page-template-apropos #b #Melanie .texte {
    right: 20px;
    bottom: 15px;
}

.page-template-apropos #b #Melanie .texte > p:nth-of-type(1) {
    left: 7px;
}

.page-template-apropos #b #Melanie .texte > p:nth-of-type(2) {
    left: -15px;
}

.page-template-apropos #b #Melanie .texte > p:nth-of-type(3) {
    left: -20px;
}

/*endregion*/

/* Yoann region*/
.page-template-apropos #b #Yoann {
    width: 185px;
    height: 136px;
}

.page-template-apropos #b #Yoann article {
    padding: 10px 95px 20px 10px;
}

.page-template-apropos #b #Yoann .texte {
    right: 25px;
    bottom: 10px;
}

.page-template-apropos #b #Yoann .texte > p:nth-of-type(1) {
    left: 18px;
}

.page-template-apropos #b #Yoann .texte > p:nth-of-type(2) {
    left: -7px;
}

/*endregion*/

/* Gilles region*/
.page-template-apropos #b #Gilles {
    width: 196px;
    height: 126px;
}


.page-template-apropos #b #Gilles article {
    padding: 10px 10px 10px 110px;
}

.page-template-apropos #b #Gilles .texte {
    left: 0;
    bottom: 10px;
}

.page-template-apropos #b #Gilles .texte > p:nth-of-type(1) {
    left: 12px;
}

.page-template-apropos section#c {
    width: 100%;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    color: white;
    font-family: var(--inclusive);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.page-template-apropos section#c .after {
    width: 100%;
    height: 150%;
    top: -20%;
    left: 0;
    background-image: url(https://studiokaer.xyz/wp-content/themes/studiokaer/images/fondbleu.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -2;
    transition: .3s;
}

.page-template-apropos section#c .wrapper {
    padding: 40px 0 45px 0;
    box-sizing: border-box;
}


.page-template-apropos #c .flex {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.mobile.page-template-apropos #c .flex {
    flex-direction: column-reverse;
}


.desktop.page-template-apropos #c .texte {
    width: 60%;
}

.page-template-apropos #c .image {
    width: 427px;
    max-width: 40%;
    height: 640px;
    background-position: center;
    background-size: cover;
}

.desktop.page-template-apropos #c .image {
    max-width: 20%;
}

.page-template-apropos .decouverte {
    text-align: right;
    margin: 20px 0;
}

.page-template-apropos #d {
    padding: 50px 0;
}

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

    .page-template-apropos #d .desktop,
    .page-template-apropos #d .tablette {
        display: none;
    }

    .page-template-apropos #d .mobile {
        display: block;
    }
}

@media screen and (min-width: 600px) and (max-width:1200px) {

    .page-template-apropos #d .desktop,
    .page-template-apropos #d .mobile {
        display: none;
    }

    .page-template-apropos #d .tablette {
        display: block;
    }
}

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

    .page-template-apropos #d .tablette,
    .page-template-apropos #d .mobile {
        display: none;
    }

    .page-template-apropos #d .desktop {
        display: block;
    }
}

.page-template-videpoche #grille .wrapper {
    padding: 150px 0;
    min-height: 650px;
}

.desktop.page-template-videpoche #grille .wrapper .grid-sizer {
    width: calc(25% - 10px);
}

.mobile.page-template-videpoche #grille .wrapper .grid-sizer {
    width: 45%;
}

.page-template-videpoche #grille article {
    position: relative;
    width: calc(25% - 10px);
    margin-bottom: 3px;
}

.mobile.page-template-videpoche #grille article {
    position: relative;
    width: 45%;

}

.page-template-videpoche #grille article a {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999;
    transition.5s;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page-template-videpoche #grille article a span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    z-index: 999;
}

.page-template-videpoche #grille article:hover a {
    opacity: 1;
}

.page-template-videpoche #grille img {
    width: 100%;
    height: auto;
    display: block;
}

/*endregion*/


/*endregion*/

/* * blog region*/

.blog {}

/* endregion */

/* * Articles region*/
.single {}

/*endregion*/

/* * Page 404 region*/
.error404 main {
    text-align: left;
    min-height: calc(100vh - 320px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--inclusive);
    font-weight: 200;
}

.error404 main .wrapper section {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}


.error404 main h2 {
    font-family: var(--inclusive);
    font-weight: 600;
    text-align: left;
}

.error404 main a {
    margin-left: 0;
}

.error404 main a svg {
    margin-right: 10px;
}

.error404 main img {
    max-width: 400px;
}

/*endregion*/

/* * Page mentions legales region*/
.page-template-mentionslegales main {
    padding-bottom: 50px;
}

.page-template-mentionslegales main h2,
.page-template-mentionslegales main h3 {
    text-align: left;
}

.page-template-mentionslegales main a {
    margin-left: 0;
    padding-left: 0 !important;
}


/*endregion*/

/*endregion*/

/* EXTENSIONS region*/


/*endregion*/
