html {
  font-size: 100%;
}
body {
  width: 100%;
  font-size: 0.95em;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; color: inherit; }
/**
* formatage des conteneurs html
*/
input[type="text"],
textarea {
  font-family: inherit;
  font-size: 1.15rem;
  transition: all 0.3s linear;
}
input[type="text"]:focus,
textarea:focus {
  border: 1px solid var(--bleu);
  outline: none;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.1);
  background-color: #efefef;
}
.form_loading {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
}
.form_loading .icon-valider {
  display: block;
  font-size: 5rem;
  color: green;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--bleu);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  }
.form {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin: auto auto 6rem auto;
}
.line_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.line_form_bt {
  text-align: center;
}
.line_form label {
  text-align: center;
  padding: 0.5rem 0 1rem 0;
}
.input_text {
  font-size: 1.125em;
  padding: calc(0.667em + 2px) calc(1.333em + 2px) !important;
  border: 1px solid #cccccc;
  border-radius: 9999px !important;
}
.text_area {
  min-height: 250px;
  font-size: 1.125em;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border: 1px solid #cccccc;
  border-radius: 20px;
  resize: none;
}
#capt {
  display: flex;
  justify-content: center;
}
.input_captcha {
  width: 180px;
  margin: auto;
  text-align: center;
  font-size: 0.9em;
  padding: 0.25em;
  border: 1px solid #cccccc;
}
.input_captcha::placeholder {
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
}
.wp-block-button__link {
  transition: all 0.4s linear;
}
.wp-block-button__link:hover,
.home_content_cours .wp-block-button__link:hover {
  background-color: #000000;
}
.wp-block-button__link:hover > i,
.home_content_cours .wp-block-button__link:hover > i {
  transform: translateX(-5px);
}
.wp-block-button__link:active,
.wp-block-button__link:focus,
.home_content_cours .wp-block-button__link:active,
.home_content_cours .wp-block-button__link:focus {
  color: var(--bleu) !important;
  background-color: var(--marron) !important;
}
.wp-block-columns {
  margin-bottom: 0;
}
.bt {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.125em;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.bt > .icon-envoie_mail {
  display: inline-block;
  margin: 0 0 0 1rem;
  transition: all 0.4s linear;
}
.bt:hover > .icon-envoie_mail {
  transform: translateX(-5px);
}
.bt_bleu {
  color: #ffffff;
  background-color: var(--bleu);
}
.bt_bleu:hover,
.bt_bleu:active,
.bt_bleu:focus
 {
  color: var(--bleu);
  background-color: var(--marron);
}
/* HEADER */
.header_nav_atelier {
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3rem;
  padding: 1.5rem 0;
  background-color: #ffffff;
  background: rgba(255,255,255,1);
  box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.1);
  transition: all 0.4s linear;
}
.header_logo_atelier {
  padding: 0.5rem 2rem;
}
.menu-menu-header-container {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
/* MENU */
.menu-item {
  text-transform: uppercase;
}
.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  margin: 0;
}
.menu a:link,
.menu a:active,
.menu a:visited,
.menu a:hover {
  display: block;
  position: relative;
  padding: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #363636;
}
.menu a::after {
	display: block;
  box-sizing: border-box;
	content: '';
	width: 100%;
	height: 4px;
  top: 2px;
	background-color: var(--bleu);
	position: relative;
  z-index: 1;
	transform-origin: center;
	transform: scaleX(0);
	transition: transform 0.2s;
}
.menu a:hover::after {
	transform: scaleX(1);
}

.menu ul ,
.menu li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.current-menu-item > a,
.current-menu-ancestor > a {
background-color: var(--bleu);
color: #ffffff !important;
}
/**
* Boutons
*/
.wp-block-button__link i {
  display: inline-block;
  margin-left: 0.8rem;
  transition: all 0.4s;
}
/**
* Home bandeau
*/
.home_content {
  margin-bottom: 5rem;
}
.titre_home {
  font-family: 'Michland';
  font-size: 8rem !important;
  letter-spacing: 0;
  line-height: 0.65;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.sous_titre_home {
  font-size: 3rem;
  margin: 0 auto;
  padding: 0;
  color: var(--bleu) !important;
}
.home_presentation {
  max-width: 950px;
  margin: 6rem auto !important;
}
.home_presentation > figure {
  overflow: hidden;
  border-radius: 50%;
}
.wp-block {
  padding: 0;
  margin: 0;
}
.home_content_cours {
  max-width: 950px;
  margin: auto;
}
.home_content_videos {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 4rem auto;
}
/* .fake-video {
  max-width: 98%;
  min-height: 150px;
  background-color: #cccccc;
} */
.home_content_videos > div {
  width: 100%;
  height: 100%;
  margin: 1rem;
  text-align: center;
}
.content-video {
  overflow: hidden;
  border-radius: 2rem;
  line-height: 0;
}
.victor-titre-video {
 	display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem 0;
 }
.victor-titre-video .icon-video {
  font-size: 3rem;
}
.victor-titre-video h2 {
  font-family: 'Michland';
  font-size: 3rem !important;
  letter-spacing: 0;
  line-height: 0.5;
  padding: 0;
  margin: 0 0 0 1rem;
  font-weight: normal;
}
.wp-block-victor-blocks-adresse-victor {
  max-width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  height: 550px;
  margin: 0;
  padding: 0;
}
.rappel {
  padding: 1rem;
  margin-bottom: 1rem !important;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
 /* border-bottom-left-radius: 1rem; */
}
.col_adresse .wp-block-media-text {
  display: flex;
  flex: 1;
  width: 100%;
  padding: 1rem 0;
  align-items: flex-start;
}
.col_adresse .wp-block-media-text h2,
.col_adresse .wp-block-media-text p {
  margin: 0;
}
.col_adresse .wp-block-media-text__media {
  flex: 0 0 70px;
  margin: 0 !important;
}
.home-adresse {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 350px;
  width: 100%;
  background-color: var(--bleu);
}
.home-adresse-rond {
  flex: 0 0 auto;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 30px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--marron);
  box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.1);
  transition: width 0.3s ease-out ,height 0.3s ease-out;
}
.home-adresse-rond h3 {
  margin: 0 0 1rem 0;
  font-weight: normal;
  font-size: 2rem;
  padding: 0 4rem;
  text-align: center;
  line-height: 1;
}
.sous-titre-adresse {
  font-size: 1.2rem;
  color: var(--bleu);
}
.home-adresse-rond .icon-localisation {
  font-size: 2rem;
  margin-top: 1.5rem;
}
.texte-adresse {
  padding-top: 1rem;
  text-align: center;
}
.texte-adresse p {
  font-size: 1.2rem;
  padding: 0;
  line-height: 1.3 !important;
  margin: 0.5rem auto;
}
/**
* FOOTER
*/
#footer {
  width: 100%;
  min-height: 50px;
  text-align: center;
  letter-spacing: 0.06rem;
  color: #ffffff;
  padding: 0 0 1rem 0;
  background-color: var(--marron);
}
#footer > h4 {
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 1.5rem 0 0 0;
}
.footer_content_reseau {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.picto_reseau {
  padding: 0 1rem;
}
.picto_reseau i {
  color: var(--bleu);
  font-size: 3rem;
}
#footer small {
  display: block;
  padding: 3rem 0 3rem 0;
  text-transform: uppercase;
}
/**
* VIDEO YOUTUBE
*/
.wp-block-embed__wrapper {
  display: flex;
}
.wp-block-embed__wrapper iframe {
  margin: auto;
  max-width: 100%;
  min-width: 100%;
  height: 80vh;
}
/**
* style pour PAGE LES COURS
*/
.content_cours {
  margin: 3rem auto;
}
.content_cours > .ariane,
.content_cours > .titre_rubrique,
.content_cours > h2,
.content_cours > p {
  max-width: 1024px;
  margin: auto;
  padding: 1.2rem;
}
.content_cours > .is-layout-constrained {
  max-width: 1024px;
  padding: 1.5rem 3rem;
  margin: 1rem auto;
  border-radius: 2rem;
}
.content_details_cours {
  max-width: 1024px;
  margin: 1rem auto;
}
.content_details_cours > .is-layout-flow {
  border-radius: 2rem;
}
.content_cours > .wp-block-image.aligncenter {
  display: block;
  margin: 0;
}
.content_cours > .wp-block-image.aligncenter + p {
  padding-top: 0;
}
/**
* Page CONTACT
*/
.content_contact {
  max-width: 1024px;
  margin: 3rem auto;
}
.content_contact .ariane,
.content_contact .titre_rubrique {
  padding: 1.2rem;
}
.content_contact .has-bleu-background-color {
  margin: 0;
}
.content_contact iframe {
  width: 100%;
}
/**
* style pour ARCHIVE
*/
.content_rubrique {
  max-width: 1024px;
  margin: 3rem auto;
  padding: 1.2rem;
}
.ariane {
  padding: 0 0 2rem 0;
  color: #cccccc;
}
.ariane a {
  color: var(--marron);
}
.content_rubrique > iframe {
  max-width: 100%;
  min-width: 100%;
}
.titre_rubrique, .titre_article {
  font-family: 'Michland';
  font-size: 4rem !important;
  color: var(--bleu);
  letter-spacing: 0;
  line-height: 0.65;
  padding: 0;
  margin: 0 0 3rem 0;
  font-weight: normal;
}
.titre_article {
  margin: 0 0 0.5rem 0;
}
.date_article {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
}
.date_article i {
  display: inline-block;
  margin-right: 0.25rem;
}
.liste_rub {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}
.liste_rub > li {
  display: block;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
}
.ligne_video {
  /* display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; */
}
.date_ligne_video {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--bleu);
}
.date_ligne_video > .icon-calendrier {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.p_ligne_video {
  color: var(--gris);
}
.link-archive-article {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  height: 360px;
  width: 480px;
  line-height: 0;
  border-radius: 2rem;
  border: 0px solid var(--bleu);
  transition: border 0.2s ease-in-out;
}
.link-archive-article:hover,
.link-archive-article:focus {
  border: 6px solid var(--bleu);
}
/*
.link-archive-article:hover,
.link-archive-article:active {
  background: rgba(64,156,186,0.15);
} */
/**
* Menu mobile
*/
#menu-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: center;
  position: relative;
	font-size: 1.05rem;
	color: var(--marron);
	width: 5rem;
	height: 5rem;
	cursor: pointer;
}
#menu-burger > span {
  display: block;
  position: absolute;
  width: 60%;
  height: 5px;
  border-radius: 5px;
  background-color: var(--marron);
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#menu-burger > span:nth-child(1){
  top: 20px;
}
#menu-burger > span:nth-child(2){
  top: 30px;
}
#menu-burger > span:nth-child(3){
  top: 40px;
}
#menu-burger.open > span:nth-child(1){
  top: 30px;
  width: 50%;
  transform: rotate(135deg);
}
#menu-burger.open > span:nth-child(2){
  opacity: 0;
}
#menu-burger.open > span:nth-child(3){
  top: 30px;
  width: 50%;
  transform: rotate(-135deg);
}
#menu-burger > div {
  position: absolute;
  top: 52px;
}
/**
* Mobile et Tablette
*/
@media (max-width: 975px){

  .home_content_videos {
    margin: 0 auto 0 auto;
    flex-direction: column;
  }
  .home_content_videos > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 450px;
    margin: auto auto 1.5rem auto;
    text-align: center;
  }
  .home_content_videos iframe {
    min-height: 250px;
  }
  .content_details_cours {
    margin: 0 1rem;
  }
  .content_cours > .is-layout-constrained {
    border-radius: unset;
  }
  .liste_rub {
    justify-content: center;
  }
}
@media (max-width:750px) {

  .header_nav_atelier {
    flex-direction: column;
    height: auto;
    padding: 0.8rem 0 0 0;
  }
  #content_menu_mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .menu {
    flex-direction: column;
  }
  .header_logo_atelier {
    width: 40%;
    padding: 0 0 0 1rem;
  }
  #menu-burger {
    display: flex;
  }
  .menu-menu-header-container {
    display: none;
    margin-top: 1rem;
    border-top: 1px solid #cccccc;
  }
  .menu a::after {
    display: block;
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: -1;
  	content: '';
  	width: 100%;
  	height: 100%;
  	background: rgba(0,0,0,0.05);
  	transform: translateX(-50%) scaleX(0.001);
  	transition: all 0.2s linear;
  }
  .home_presentation {
    margin: 6rem auto 3rem auto !important;
  }
  .sous_titre_home {
    font-size: 2.5rem;
  }
  .home_content_cours h2 {
    text-align: center;
  }
  .wp-block-media-text__media {
    width: 70%;
    margin: auto !important;
  }
  .wp-block-buttons {
    justify-content: center;
    padding-bottom: 2rem;
  }
  .home_content_videos iframe {
    min-width: 100%;
  }
  .wp-block-embed__wrapper iframe {
    height: 250px;
  }
  .content_rubrique .wp-block-media-text__content {
     padding: 0 !important;
  }
  /**
  * zone video dans la page archive
  */
  .liste_rub > li {
    max-width: 100%;
  }
  .link-archive-article {
    max-width: 100%;
    height: auto;
  }
  .ligne_video {
    display: block;
  }
  .ligne_video iframe {
    max-width: 100%;
    min-width: 100%;
    min-height: 250px;
  }
  /*
  *
  */
  .victor-titre-video {
    padding: 1rem;
    flex-direction: column;
  }
  .victor-titre-video .icon-video {
    font-size: 4rem;
  }
  .victor-titre-video h2 {
    font-size: 2.6rem;
    margin: 0;
    line-height: 1.5;
  }
  .home_content_videos {
    margin: 0 auto 0 auto;
    flex-direction: column;
  }
  .home_content_videos > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    min-height: 210px;
    margin: auto auto 2.5rem auto;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 2rem;
    text-align: center;
  }
  .home_content_videos > div:last-child {
    border: none;
  }
  .home-adresse {
    height: 450px;
  }
  .form {
    max-width: 90%;
  }
  .text_area {
    min-height: 200px;
  }
  .input_text, .text_area {
    border: 2px solid #cccccc;
  }
  .content_details_cours {
    margin: 0 1rem;
  }
  .content_cours > .wp-block-image.aligncenter + p {
    font-size: 0.85em;
  }

  .group_mobile {
    padding: 1rem!important;
  }
  .rappel {
    padding: 0;
    margin-bottom: 0;
    border-radius: unset;
  }

}

html :where(.editor-styles-wrapper) {
  font-family: inherit;
}


/**
* Signature de GOUEG.FR
*/
.goueg_signature {
	margin: 3rem auto 1rem auto;
}
.goueg_signature span {
	display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
}
