/*
 Theme Name:   twentytwentyone- Massage Zen Assis
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Twenty one Child Theme
 Author:       PatK - ADN PME
 Author URI:   http://www.adnpme.com/
 Template:     twentytwentyone
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready 
*/


@font-face {
    font-family: Armata;
    src: url(https://jamensband.com/wp-content/themes/twentytwentyone-child/fonts/Armata-Regular.ttf);
}

@font-face {
    font-family: squarespace-ui-font;
    src: url(https://jamensband.com/wp-content/themes/twentytwentyone-child/fonts/squarespace-ui-font.ttf);
}

/* Anim */
@keyframes bounce {
    0% {
        transform: translateY(0) rotate(90deg);
    }

    100% {
        transform: translateY(-20px) rotate(90deg);
    }
}

@keyframes animslideOn {
    0% {
        left: -100vw
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes animslideOn {
    0% {
        left: -100vw
    }

    100% {
        left: 0
    }
}

@keyframes animslideOff {
    0% {
        left: 0
    }

    100% {
        left: -100vw
    }
}

@-webkit-keyframes animslideOff {
    0% {
        left: 0
    }

    100% {
        left: -100vw
    }
}

.animslideOn {
    animation: animslideOn .5s;
    animation-fill-mode: forwards;
}

.animslideOff {
    animation: animslideOff .5s;
    animation-fill-mode: forwards;
}


@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    50% {
        opacity: 0.3;
        transform: scale(.9, .9);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: .5s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes anim-logo-on {
    0% {
        max-width: 230px;
    }

    100% {
        max-width: 110px;
    }
}

@keyframes anim-logo-off {
    0% {
        max-width: 110px;
    }

    100% {
        max-width: 230px;
    }
}

@keyframes fade-in {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade-out {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        display: block;
        visibility: visible;
    }
}

.loader {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: block;
  margin: 20px auto;
  position: relative;
  background: currentColor;
  color: tomato;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}

.loader::after, .loader::before {
  content: '';
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  box-sizing: border-box;
  animation: animloader 0.3s  0.45s  linear infinite alternate;
}
.loader::before {
  left: -20px;
  animation-delay: 0s;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: var(--bg-gradient);
    position: fixed;
    z-index: 100;
}

@keyframes animloader {
  0%   { height: 48px} 
  100% { height: 4px}
}


/****/

:root {
    --primary-color: #26383c;   
    --secondary-color: #f3f3f3;
    --primary-font: 'Armata', 'sans serif';
    --secondary-font: 'Arial', sans-serif;   
    --bg-header: #57828b;
   
    
}

*,
h4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

ul, li {
    margin: initial;
    padding: initial;
    box-sizing: border-box;
    list-style-type: square;
}

html {
    font-size: 15px;
}


body {
    font-family: var(--primary-font);
    background: var(--secondary-color); 

}

body.custom-background {
    background: var(--bg-gradient);
}

img,
video {
    max-width: 100%;
    height: auto;
    width: auto;
    border: 2px var(--primary-color) solid;
}


hr {
    background-color: transparent;
    border: 0;
    height: 1px;
    margin: 0;
    width: 100%;
}

p {
    margin-bottom: 25px;
}

a,
i,
li.current-menu-item>a,
.main-navigation ul li a,
.site-title a,
ul.menu li a,
.site-branding h1 a,
button.menu-toggle,
button.menu-toggle:hover,
.handheld-navigation .dropdown-toggle {
    transition: all .5s;
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover,
i:hover {
    transform: translateY(-7px);
}

.main-navigation ul li a:hover,
.main-navigation ul li:hover>a,
.site-title a:hover,
.site-header ul.menu li.current-menu-item>a {
    color: var(--primary-color);
}

.widget h1,
.widget h2,
.widget h3,
.widget h4 {
    color: var(--primary-color);
    font-weight: 300;
}

h1,h2,h3,h4 {
     color: var(--primary-color);
}

h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

hr {
    background-color: var(--bg-dark-mode);
    width: 50%;
    margin: auto;
    margin-bottom: 50px;
}

#video-phoenix-loop video {
    max-width: 960px;
    margin: auto;
    display: block;
    width: 100%;    
}

#main h2 {
    font-size: 4rem !important;    
}

#main h2.vp-portfolio__item-meta-title {
    font-size: 2rem;
}

h3,
#main .widget-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    color: var(--bg-dark-mode);
    text-align: center;
    font-weight: 300;
}

.widget h3 {
    font-size: 2.5rem;
    text-align: initial;
    margin: 15px 0;
}

h4 {
    color: var(--bg-dark-mode);
}

a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
    outline: none;
}

#content input[type=text],
#content input[type=number],
#content input[type=email],
input[type=email],
#content nput[type=tel],
input[type=url],
#content input[type=password],
input[type=search],
#content textarea,
#content .input-text,
#content select {
    box-shadow: none;
    border-radius: 20px;
    border: 2px var(--secondary-color) solid;
    padding: 10px 15px
}

#main {
    padding: 0 50px;
    min-height: 53vh;
}

#content {
    padding: 0 10px;
}

.site-logo .custom-logo {
    max-width: 112%;
    max-height: 12%;   
    border-radius: 50%;
    border: none;
}

.site-header > .site-logo {   
    width: 132px;
    padding: 0;
    position: absolute;
    top: 10px;
    border: none;
    z-index: 100;
    left: 50px;
}

#colophon .site-logo .custom-logo {
    max-width: 18%;
    max-height: 18%;
   

}

/* class */
.center {
    text-align: center;
    margin: auto;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-third {
    background-color: var(--bg-dark-mode);
}

.big-font {
    font-size: 2.5rem;
    line-height: 2.2rem;
}

.bigger-font {
    font-size: 3.5rem;
    line-height: 3rem;
}

.middle-font-home-box {
    font-size: 1rem;
}

.middle-font {
    font-size: 2.5rem;
}

.small-font {
    font-size: .8rem;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.third-color {
    color: var(--third-color);
}

.flex {
    display: flex;
}

.flex-vert {
    flex-direction: column;
}

.box-shadow {
    box-shadow: 9px 8px 13px -6px rgba(163, 153, 153, 0.85)
}

.call-to-action {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    border-radius: 100rem !important;
    padding: 7px 20px;
    display: inline-block;
    font-size: 1.3rem;
    border: var(--secondary-color) 2px solid;
    margin: 15px 0;
}

.main-width,
#content .panel-layout {
    max-width: 1440px;
    width: auto;
    margin: auto;
    padding: 0 50px;
}

#masthead {
    background-color: var(--bg-header);
    width: 100%;
    max-width: 100%;
    padding: 15px;
    justify-content: space-between;
    gap: 3%;
}

/****primary nav*******/
.primary-navigation a:hover, .primary-navigation a:link, .primary-navigation a:visited {
    color: var(--secondary-color);
    font-size: 1.2rem;
}


.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    color: var(--primary-color);
}

/**************************/
#header-socials {
    padding-right: 15px;
}

#header-socials [class *=instagram] .sow-icon-fontawesome::before {
    font-size: 25px;
}

#header-socials .social-media-button-container {
    text-align: right;
}

#header-socials .social-media-button-container a {
    border-radius: 50%;
    padding: .95em;
}

.site-logo {
    margin: 0;
}

#header-top-container {
    display: flex;
    max-width: var(--responsive--alignwide-width);
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    z-index: 10;
    margin-top: 10px;
}

#header-top-container .call-to-action {
    margin-left: 25px;
    padding: 5px 20px;
}



/***************/
.singular .entry-title {
    font-size: 5rem;
    margin-top: 3%;
    color: var(--primary-color);
    
}

.singular .entry-header {
    border-bottom: 1px solid var(--primary-color);   
}

.singular .entry-title span {
    font-size: 2rem;
   
}

.site-title {
    display: none;
}

.site-name {
    font-size: 2.5rem;
    font-family: "cherry-blossoms-regular", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: initial !important;
}



/** page home **/
#home-header {
    border-bottom: 5px var(--primary-color) solid;
}

#home-section-amma {
    border-top: 6px var(--bg-header) solid;
}

#home-section-comment,
#home-section-comment h3 {
    color: var(--secondary-color);
}
#home-section-bienfaits p {
    font-size: 1.5rem
    
}

/* page offres */
#page-offres-section-offres .ow-pt-columns-atom {
    gap: 3%;
    display: flex;
}

.ptsColHeader.ptsToggle.ptsShow p {
text-transform: uppercase;
}

#page-offres-section-offres .ptsCol .ptsActBtn .ptsEditArea {
    font-size: 1em!important;   
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    background: none;
}
.site .button, button, input[type=submit], input[type=reset], .wp-block-search .wp-block-search__button, .wp-block-button .wp-block-button__link, .wp-block-file a.wp-block-file__button {
   border-radius: 100rem;
   
}

/* page contact */
#form-page-contact {
    display: flex;
    justify-content:space-between;
}
.site .button:not(:hover):not(:active):not(.has-background), button:not(:hover):not(:active):not(.has-background), input[type=submit]:not(:hover):not(:active):not(.has-background), input[type=reset]:not(:hover):not(:active):not(.has-background), .wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background), .wp-block-button .wp-block-button__link:not(:hover):not(:active):not(.has-background), .wp-block-file a.wp-block-file__button:not(:hover):not(:active):not(.has-background) {
    background-color: var(--primary-color);
    border-radius: 100rem;
    border: 3px var(--primary-color) solid;
}
/**/
#colophon {
    margin: 0;
    background: var(--primary-color);  
    max-width: 100%;
    padding: 0 25px;  
}
#colophon a {
    text-decoration: underline;
    display: inline-block;
    color: var(--secondary-color);
}

.site-footer > .site-info  {   
    color: var(--secondary-color);
    font-size: .8rem;
    border-top: 1px solid var(--secondary-color);
    max-width: 90%;
    margin: auto;
}

#copyright {
    font-size: .8rem;
    text-align: center;    
}

aside.widget-area {
    margin-top: 0;
}

.widget a:link,
.widget a:visited,
.widget a:active {
    border-radius: 50%;
}

aside.widget-area {   
    background: #7ea8a6;
    width: 100%;
    max-width: 100%;
    padding: 20px 50px;
}


/***/
#main .vp-portfolio__items-style-fly .vp-portfolio__item-overlay {
    background: rgba(0, 0, 0, .5);
}

#page-home .vp-pagination__style-minimal .vp-pagination__item a {
    background: #000;
    border-radius: 100rem;
    transition: .5s all;
}

#page-home .vp-pagination__style-minimal .vp-pagination__item>a:focus,
#page-home .vp-pagination__style-minimal .vp-pagination__item>a:hover {
    color: var(--primary-color);
}

.has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    color: var(--primary-color) !important;
}

.login .wp-login-logo a {
    border-radius: 50%;
}





@media (max-width: 1024px) {
    html {
        font-size: 12px;
    }

    .singular .entry-title {
        font-size: 3.7rem;
        /*color: var(--secondary-color);*/
    }

    .main-width,
    #content .panel-layout {
        padding: 0;
    }

    #main {
        padding: 0 35px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 10px;
    }

    h2 {
        font-size: 2.7rem;
    }

    h3 {
        font-size: 2.1rem;
    }

    .flex {
        flex-direction: column;
    }

    section {
        padding: 0;
    }

    #galerie a {
        margin-bottom: 7vh
    } 

    .singular .entry-header {
        max-width: 100%;
    }

    .menu-button-container #primary-mobile-menu .dropdown-icon.open .svg-icon {
        width: 30px;
        height: 30px;
    }

    .singular .entry-title {
        font-size: 4rem;
    }

    .main-width,
    #content .panel-layout {
        padding: 0 30px;
    }

    #main {
        padding: 0;
    }

    .site-logo .custom-logo {
        max-width: 37%;
    }

    .site-footer .site-logo .custom-logo {
        max-width: 25%;
    }

    #video-phoenix-loop {
        min-height: initial;
    }

    #header-top-container {
        position: static;
    }

    body:not(.primary-navigation-open) .site-header.has-logo.has-title-and-tagline .menu-button-container #primary-mobile-menu {
        background: #000;
        padding: 10px;
        border-radius: 21%;
    }

    body:not(.primary-navigation-open) .site-header.has-logo.has-title-and-tagline .primary-navigation {
        position: absolute;
        top: 15px;
    }
    .site-header.has-logo.has-title-and-tagline.has-menu .site-branding {
    max-width: 100%;
    }
    .site-title {
    font-size: 5rem;   
    }
    #video-extracts div {   
    flex-direction: column;   
    }
    #video-extracts video {  
        width: 95%;
        margin: auto; 
    }
    .primary-navigation {    
    top: 0; 
    margin-right: 30px;
    }

    #video-extracts .call-to-action {
        font-size: 2rem;
    }

    .primary-navigation a:hover, .primary-navigation a:link, .primary-navigation a:visited {    
    font-size: 1.5rem;
    }

    #video-phoenix-loop div {
        position: absolute; 
        width: 100%;   
    }


}