@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --main-color: #d3ad7f;
  --black: #13131a;
  --bg: #010103;
  --border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
}

html {
  font-size: 10px;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5rem;
}

body {
  background: var(--bg);
}

.montserrat {
  font-family: "Montserrat", Helvetica, sans-serif;
}

/***** FLECHE RETOUR HAUT *****/
.btn-fleche {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}

section {
  margin-top: 50px;
  padding: 2rem 7%;
}

.heading {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 3.5rem;
  font-size: 4rem;
}

.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

.color {
  text-decoration: none;
  color: #fff;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  background: var(--main-color);
  cursor: pointer;
}

.btn:hover {
  letter-spacing: 0.2rem;
}

.header {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .logo img {
  height: 8rem;
}

.header .navbar a {
  margin: 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}

.header .navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0.5rem;
}

.header .icons div {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header .icons div:hover {
  color: var(--main-color);
}

.header .icons i {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header .icons i:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
}

/* SECTION LOGO YUMI */
.logoyumi {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.logoyumi .box {
  margin-top: 70px;
  padding: 2rem;
  border-radius: .5rem;
  /* background: #f5f5f5; */
  text-align: center;
}

.logoyumi .box img {
  width: 30rem;
  height: auto;
  margin-bottom: 1rem;

  transition: transform .5s;
}

.logoyumi .box img:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5);
}

.distributeur {
  margin-top: 0 !important;
  display: flex;
  justify-content: center;
}

.distributeur .box-distrib h2 {
  color: #fff;
  font-size: 45px;
  letter-spacing: 1px;
}

.distributeur .box-distrib p {
  color: #fff;
  letter-spacing: 2px;
  font-size: 20px;
}

.distributeur .box-distrib p span {
  text-transform: uppercase;
  font-weight: 600;
}

@media screen and (max-width: 1414px) {
  .logoyumi .box img {
  width: 25rem;
}
}

@media screen and (max-width: 1198px) {
  .logoyumi .box img {
  width: 22rem;
}
}

@media screen and (max-width: 1045px) {
  .logoyumi .box img {
  width: 21rem;
}
}

@media screen and (max-width: 993px) {
  .logoyumi .box img {
  width: 20rem;
}
}

@media screen and (max-width: 820px) {
  .logoyumi .box img {
  width: 18rem;
}
}

@media screen and (max-width: 765px) {
  .logoyumi .box img {
  width: 16rem;
}
}

@media screen and (max-width: 705px) {
  .logoyumi .box img {
  width: 14rem;
}
}

@media screen and (max-width: 660px) {
  .logoyumi .box img {
  display: none;
}

.distributeur .box-distrib h2 {
  margin-top: -100px;
}

}

@media screen and (max-width: 540px) {
  .distributeur .box-distrib h2 {
  font-size: 35px;
}

.distributeur .box-distrib p {
  font-size: 16px;
}
}

@media screen and (max-width: 431px) {
  .distributeur .box-distrib h2 {
  font-size: 30px;
}

.distributeur .box-distrib p {
  font-size: 14px;
}
}

@media screen and (max-width: 396px) {
  .distributeur .box-distrib h2 {
  font-size: 30px;
}

.distributeur .box-distrib p {
  font-size: 13px;
}
}


/* SECTION ACCUEIL */

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../img/griffe-dor-bourges.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border-bottom: 3px solid var(--black);
}

.home .content {
  max-width: 70rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.home .content h3 {
  font-size: 4.6rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.home .content p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

/* SECTION HORAIRES */
.home-horaires {
  min-height: 400px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-horaires .content {
  max-width: 80rem;
  background: var(--main-color);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-horaires .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-horaires .content h2 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #303030;
  text-align: center;
}

.home-horaires .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #303030;
}

.home-horaires .content .minuscule {
  text-align: center;
  font-size: 1.5rem;
  color: #303030;
}

@media screen and (max-width: 405px) {
    .home-horaires .content p {
      font-size: 1.6rem;
    }
}

@media screen and (max-width: 343px) {
    .home-horaires .content p {
      font-size: 1.4rem;
    }
}

/* SECTION A PROPOS */
.about .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.about .row .image {
  flex: 1 1 45rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.about .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  padding: 5rem;
  text-align: center;
  border: var(--border);
}

.menu .box-container .box img {
  height: 10rem;
}

.menu .box-container .box h3 {
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0;
}

.menu .box-container .box .price {
  color: #fff;
  font-size: 2.5rem;
  padding: 0.5rem 0;
}

.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: lighter;
}

.menu .box-container .box:hover {
  background: #fff;
}

.menu .box-container .box:hover > * {
  color: var(--black);
}

/* SECTION CONTACT */
.contact .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
  gap: 1rem;
}

.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}

.contact .row .cont {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}

.contact .row .cont h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
}

.contact .row .cont h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #fff;
}

.contact .row .cont p {
  font-size: 1.8rem;
  color: #fff;
}

.contact .row .cont p {
  text-align: left;
  padding-bottom: 2rem;
}

/***.contact .row .cont .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--bg);
  border: var(--border);
}

 .contact .row .cont .inputBox span {
  color: #fff;
  font-size: 2rem;
  padding-left: 2rem;
}

.contact .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background: none;
}

.contact .row form .inputBox textarea {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background: none;
}

.contact .row form .message {
  margin-bottom: 1.25rem;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 1rem;
  color: #fff;
  line-height: 1.3rem;
}

.contact .row form .erreur {
  background: #cf5f5f;
  border-bottom: 2px solid #ad3434;
}

.contact .row form .confirmation {
  background: #5fcf80;
  border-bottom: 2px solid #34ad58;
}
***/

/* SECTION FORMATIONS */
.formations .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.formations .box-container .box {
  border: var(--border);
}

.formations .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}

.formations .box-container .box .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.formations .box-container .box:hover .image img {
  transform: scale(1.2);
}

.formations .box-container .box .content {
  padding: 2rem;
}

.formations .box-container .box .content .title {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #d3ad7f;
}

.formations .box-container .box .content .title:hover {
  color: var(--main-color);
}

.formations .box-container .box .content span {
  color: var(--main-color);
  display: block;
  padding-top: 1rem;
  font-size: 2rem;
}

.formations .box-container .box .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
  padding: 1rem 0;
}

/***** SECTION Institut *****/
/* #institut {
    height: 60rem;
    padding-bottom: 10rem;
} */

.containerFlexTeam {
    width: 100%;
    height: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team {
    height: 60rem;
    width: 40rem;
    margin: 2rem;
    overflow: hidden;
}

.teamPic {
    width: 100%;
    height: 80%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.pic1 {
    background: url(../img/institu1.jpg);
    background-position: 25% 15%; /*** Changer suivant la taille de la photo ***/


}
.pic1:hover {
    transform: scale(1.2);
}
.pic2 {
    background: url(../img/institu2.jpg);
    background-position: 30% 40%; /*** Changer suivant la taille de la photo ***/
}
.pic2:hover {
    transform: scale(1.2);
}
.pic3 {
    background: url(../img/institu3.jpg);
    background-position: 48% 40%; /*** Changer suivant la taille de la photo ***/
}
.pic3:hover {
    transform: scale(1.2);
}

/* SECTION PRIX */
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.menu .box-container .box{
    padding:5rem;
    text-align: center;
    border:var(--border);    
}

.boxprix div {
  display: flex;
  justify-content: center;
}

.menu .box-container .boxprix div img{
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.menu .box-container .boxprix h3{
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  padding:1rem 0;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding:.5rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover{
    background:#fff;
}

.menu .box-container .box:hover > *{
    color:var(--black);
}

.pose {
    color: #fff;
    font-size: 1.8rem !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
}
div .btn-div {
  text-align: center;
}
.btn-prix {
  margin-top: 1rem;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  background: var(--main-color);
  cursor: pointer;
}

.btn-prix:hover {
  letter-spacing: 0.2rem;
}

p .spanprix {
  padding-left: 3rem;
  font-size: 1.6rem;
}

/* SECTION ANCIEN PRIX */
.prix .box-container-prix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.prix .box-container-prix .box-prix {
  border: var(--border);
}

.prix .box-container-prix .box-prix .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}

.prix .box-container-prix .box-prix .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.prix .box-container-prix .box-prix:hover .image img {
  transform: scale(1.2);
}

.prix .box-container-prix .box-prix .content {
  padding: 2rem;
}

.prix .box-container-prix .box-prix .content span {
  padding-bottom: 1rem;
}

.prix .content p .spanprix {
  padding-left: 2rem;
  font-size: 1.6rem;
}

.prix .box-container-prix .box-prix .content .prixminuscule {
  font-size: 1.2rem;
  line-height: .2;
  padding-top: 0;
  padding-bottom: 0;
}

.prix .box-container-prix .box-prix .content .titleprix {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--main-color);
}

.prix .box-container-prix .box-prix .content .titleprix:hover {
  color: var(--main-color);
}

.prix .box-container-prix .box-prix .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
}


/* SECTION FIL ACTUALITÉ */
.fil .fil-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.fil .fil-container .fil {
  border: var(--border);
  border-radius: 1rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--main-color);
}

.fil .fil-container .fil h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: #303030;
}

.fil .fil-container .fil p {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #303030;
  padding: 2rem 0;
}

.btn-fil {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  background: var(--black);
  cursor: pointer;
}

.btn-fil:hover {
  letter-spacing: 0.2rem;
}

/* SECTION FOOTER */
.footer {
  background: var(--black);
  text-align: center;
}

.footer .share {
  padding: 0 0 1rem;
}

.footer .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: var(--border);
  margin: 0.3rem;
  border-radius: 50%;
}

.footer .share a:hover {
  background-color: var(--main-color);
}

.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 1rem;
}

.footer .links a {
  padding: 0.7rem 2rem;
  color: #fff;
  border: var(--border);
  font-size: 2rem;
}

.footer .links a:hover {
  background: var(--main-color);
}

.footer .credit {
  font-size: 1.4rem;
  color: #fff;
  font-weight: lighter;
  padding: 1.5rem;
}

.footer .credit span {
  color: var(--main-color);
}

/* ------------ SECTION MENTIONS LEGALES -------------- */
.header-cgv {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-cgv .logo img {
  height: 10rem;
}

.header-cgv p {
  color: #fff;
  font-size: 1.6rem;
}

.header-cgv .navbar a {
  margin: 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}

.header-cgv .navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0.5rem;
}

.header-cgv .icons div {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header-cgv .icons div:hover {
  color: var(--main-color);
}

.header-cgv .icons i {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header-cgv .icons i:hover {
  color: var(--main-color);
}

.home-cgv .content {
  max-width: 70rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.home-cgv .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.home-cgv .content p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}
.mlegales-content {
  width: 60%;
  margin: auto;
  padding: 60px 0;
  font-size: 16px;
}

.mlegale {
  text-decoration: none;
  color: #fff;
}

.mlegales-content h1 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 100px 0 30px;
}

.mlegales-contenu h2 {
  text-align: left;
  color: #fff;
  font-weight: 600;
  margin: 20px 0;
}

.mlegales-contenu p {
  color: #999;
  padding: 20px;
  line-height: 25px;
}

.mlegales-contenu span {
  font-weight: 600;
  color: #fff;
}

.retour {
  margin-bottom: 10px;
}

.mlegales-contenu a {
  color: #999;
  cursor: pointer;
}

.mlegales-contenu ul ol {
  color: #999;
}

/* SECTION STAGE MANAGER */

.home-manager {
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url(../img/stage-manager.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-manager .content {
  max-width: 90rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-manager .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-manager .content h2 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.home-manager .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.content h2 {
  font-size: 2rem;
  text-align: left;
  color: #fff;
  font-weight: 600;
  margin: 20px 0;
}

.content span {
  color: #fff;
  font-weight: 500;
}

/* SECTION STAGE DEBUTANT */

.home-debutant {
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url(../img/stage-debutant.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-debutant .content {
  max-width: 90rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-debutant .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-debutant .content h2 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.home-debutant .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

/* SECTION STAGE INITIATION */

.home-initiation {
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url(../img/stage-initiation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-initiation .content {
  max-width: 90rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-initiation .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-initiation .content h2 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.home-initiation .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

/* SECTION STAGE PERFECTIONNEMENT */

.home-perfectionnement {
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url(../img/stage-perfectionnement.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-perfectionnement .content {
  max-width: 90rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-perfectionnement .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-perfectionnement .content h2 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.home-perfectionnement .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

/* SECTION PROTESIE ONGULAIRE */
.home-proth {
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url(../img/prothesiste-ongulaire.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-proth .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-proth .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-proth .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.proth .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.proth .row .image {
  flex: 1 1 45rem;
}

.proth .row .image img {
  width: 100%;
}

.proth .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.proth .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.proth .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.proth .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

/* SECTION POSE ET ENTRETIEN */
.home-pose {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../img/ongles-gel2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-pose .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-pose .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-pose .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.pose-entretien .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.pose-entretien .row .image {
  flex: 1 1 45rem;
}

.pose .row .image img {
  width: 100%;
}

.pose-entretien .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.pose-entretien .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.pose-entretien .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.pose-entretien .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

@media screen and (max-width: 500px) {
    .home-pose {
      background-position: right;
    }
    .home-pose .content h3 {
      font-size: 4rem;
      letter-spacing: 2px;
    }
}

@media screen and (max-width: 390px) {
    .home-pose .content h3 {
      font-size: 3.5rem;
    }
}

/* SECTION SOINS MAINS ET PIEDS */

.home-pieds {
  min-height: 900px;
  display: flex;
  align-items: center;
  background: url(../img/mains-pieds2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-pieds .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-pieds .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-pieds .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.pieds .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.pieds .row .image {
  flex: 1 1 45rem;
}

.pose .row .image img {
  width: 100%;
}

.pieds .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.pieds .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.pieds .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.pieds .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

@media screen and (max-width: 660px) {
    .home-pieds .content h3 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 550px) {
    .home-pieds .content h3 {
    font-size: 3rem;
  }
}


/* SECTION MAQUILLAGE ONGLES */
.home-maquillage {
  min-height: 900px;
  display: flex;
  align-items: center;
  background: url(../img/pose2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-maquillage .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-maquillage .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-maquillage .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.maquillage .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.maquillage .row .image {
  flex: 1 1 45rem;
}

.pose .row .image img {
  width: 100%;
}

.maquillage .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.maquillage .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.maquillage .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.maquillage .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .home-maquillage .content h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 516px) {
  .home-maquillage .content h3 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 422px) {
  .home-maquillage .content h3 {
    font-size: 2.2rem;
  }
}

/* SECTION CILS */
.home-cils {
  min-height: 900px;
  display: flex;
  align-items: center;
  background: url(../img/cils2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-cils .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-cils .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-cils .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.cils .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.cils .row .image {
  flex: 1 1 45rem;
}

.pose .row .image img {
  width: 100%;
}

.cils .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.cils .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.cils .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.cils .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
    .home-cils .content h3 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 555px) {
    .home-cils .content h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 496px) {
    .home-cils .content h3 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 410px) {
    .home-cils .content h3 {
    font-size: 2.2rem;
  }
}


/* SECTION POSE ET ENTRETIEN */
.home-callus {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../img/pieds2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--black);
}

.home-callus .content {
  max-width: 90rem;
  position: relative;
  top: 200px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.home-callus .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.home-callus .content p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.soins-callus .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
}

.soins-callus .row .image {
  flex: 1 1 45rem;
}

.soins-callus .row .image img {
  width: 100%;
}

.soins-callus .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.soins-callus .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.soins-callus .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

.soins-callus .row .content a {
  text-decoration: none;
  color: var(--main-color);
  cursor: pointer;
}

@media screen and (max-width: 735px) {
    .home-callus {
      background-position: right;
    }
    .home-callus .content h3 {
      font-size: 3.5rem;
    }
}

@media screen and (max-width: 526px) {
    .home-callus .content h3 {
      font-size: 3rem;
    }
}

@media screen and (max-width: 469px) {
    .home-callus .content h3 {
      font-size: 2.5rem;
    }
}

@media screen and (max-width: 387px) {
    .home-callus .content h3 {
      font-size: 2rem;
    }
}


/* MEDIA QUERIE */

@media screen and (max-width: 1450px) {
  .formations .box-container {
    grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #f1f1f1;
    width: 30rem;
    height: calc(100vh - 9.5rem);
  }

  .header .navbar.active {
    right: 0;
  }

  .header .navbar a {
    color: var(--border);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .header .search-form {
    width: 90%;
    right: 2rem;
  }

  .home {
    background-position: right;
    justify-content: center;
    text-align: center;
  }

  .home .content {
    max-width: 50rem;
    padding: 20px;
    border-radius: 10px;
  }

  .home .content h3 {
    font-size: 4.5rem;
  }

  .home .content p {
    font-size: 1.8rem;
  }

  .sub-header h2 {
    font-size: 24px;
  }

  .home-manager .content {
    max-width: 70rem;
    margin: 0 auto;
  }

  .links a {
    display: none;
  }

  .home-proth .content {
    max-width: 46rem;
    padding: 0px;
  }

  .home-stylist .content {
    max-width: 46rem;
    padding: 0px;
  }

.box-container .containerFlexTeam {
    display: none;
  }

}

@media screen and (max-width: 592px) {

  .home .content {
    max-width: 40rem;
    padding: 15px;
    border-radius: 10px;
  }

  .home .content h3 {
    font-size: 4rem;
  }

  .home-manager .content h3 {
    font-size: 3rem;
    letter-spacing: 1.6px;
  }

  .home-manager .content p {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .home-proth .content {
    max-width: 40rem;
  }

  .home-proth .content h3 {
    font-size: 4rem;
    letter-spacing: 1.8px;
  }

  .home-stylist .content h3 {
    max-width: 40rem;
  }

  .home-stylist .content h3 {
    font-size: 4rem;
    letter-spacing: 1.8px;
  }
}

@media screen and (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .content {
    max-width: 30rem;
    padding: 10px;
  }

  .home .content h3 {
    font-size: 3.6rem;
  }

  .home-proth .content h3 {
    max-width: 30rem;
  }

  .home-proth .content h3 {
    font-size: 3rem;
  }

  .home-stylist .content h3 {
    max-width: 30rem;
  }

  .home-stylist .content h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 415px) {
  .about .row .content h3 {
    font-size: 2.2rem;
  }

  .content h2 {
    font-size: 1.4rem;
    text-align: left;
    color: #fff;
    font-weight: 600;
    margin: 20px 0;
  }

  .proth .row .content h3 {
    font-size: 2.2rem;
  }

  .proth h2 {
    font-size: 1.4rem;
    text-align: left;
    color: #fff;
    font-weight: 600;
    margin: 20px 0;
  }
}
