@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #000;
}

.color-change {
  color: #7F8C7F;
}

body {
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  font-family: "Clash Display", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #3C3C3B;
}

h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #3C3C3B;
}

h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #3C3C3B;
}

h4 {
  font-family: "Clash Display", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #3C3C3B;
}

#reservation__button, #reservation__button2 {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem;
  border-radius: 15px;
  width: 8rem;
  background: #7F8C7F;
  background-size: 200% 100%;
  transition: all 0.3s ease-out;
  border-radius: 30px;
  border: 1px solid #7F8C7F;
}
#reservation__button:hover, #reservation__button2:hover {
  background-color: #fff;
  border: 1px solid #7F8C7F;
  color: #7F8C7F;
}

#showBtn {
  background: #fff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
  width: 10rem;
  border: none;
  color: #fff;
  border-radius: 30px;
  transition: 300ms;
  color: #3C3C3B;
  border: 1px solid #fff;
  cursor: pointer;
}
#showBtn:hover {
  background-color: #3C3C3B;
  color: #fff;
  border: 1px solid #fff;
  opacity: 0.8;
}

.cta {
  background: #7F8C7F;
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
  width: 10rem;
  border: 2px solid #7F8C7F;
  color: #fff;
  border-radius: 30px;
  transition: 300ms;
}
.cta:hover {
  background-color: #fff;
  color: #7F8C7F;
}

.cta-reverse {
  background: #fff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
  width: 10rem;
  border: 2px solid #fff;
  color: #7F8C7F;
  border-radius: 30px;
  transition: 300ms;
}
.cta-reverse:hover {
  background-color: #7F8C7F;
  color: #fff;
}

.header {
  position: relative;
  margin: 1rem 3rem 1rem 3rem;
  height: 3rem;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.12);
}
.header .header__nav {
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
}
.header .header__nav--homepage a {
  color: #fff;
  box-shadow: none;
}
.header a {
  padding: 0 0.5rem 0 0.5rem;
  margin: 0 1.5rem 0 1rem;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1rem;
}
.header .border {
  position: relative;
}
.header .border:hover:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 3px #7F8C7F;
  animation: leftToRight 500ms ease-out forwards;
}
.header img {
  height: 7rem;
  filter: invert(59%) sepia(4%) saturate(1054%) hue-rotate(71deg) brightness(91%) contrast(82%);
}

#header {
  box-shadow: none;
}

@keyframes leftToRight {
  20% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .header {
    flex-direction: column;
    height: 10rem;
    padding-top: 1rem;
    margin: 0;
  }
  .header .header__nav, .header .header__nav--homepage {
    padding: 0;
  }
  .header a {
    font-size: 1rem;
    font-weight: bold;
    padding: 0 0.7rem 0 0.7rem;
    transition: 300ms;
  }
  .header a:hover {
    border: none;
    font-weight: bold;
  }
}
@media screen and (max-width: 630px) {
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    height: 5rem;
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /* Close btn */
    /* Icône burger */
    /* Cache le menu burger + nav */
  }
  .header a {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .header .header__nav, .header .header__nav--homepage {
    display: none;
    visibility: hidden;
  }
  .header__closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1rem;
    margin-top: 0.5rem;
    font-weight: bold;
    cursor: pointer;
  }
  .header__burgerNav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -250px;
    align-self: flex-end;
    background-color: #414D41;
    padding-top: 60px;
    transition: right 0.5s ease;
    /* Sidenav menu links */
    /* Active class */
  }
  .header__burgerNav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #B5B8A5;
    display: block;
    margin-bottom: 2rem;
    transition: 0.3s;
  }
  .header__burgerNav a::after {
    content: "";
    transform: translateX();
  }
  .header__burgerNav a:hover {
    color: #fff;
  }
  .header__burgerNav.active {
    right: 0;
  }
  .header .burger-icon span {
    display: block;
    width: 35px;
    height: 5px;
    background-color: #B5B8A5;
    margin: 6px 0;
    margin-right: 2rem;
  }
  .header .heaver__burgerNav, .header .burger-icon {
    display: none;
    visibility: hidden;
  }
  .header__burgerNav, .header .burger-icon, .header ul {
    display: block;
    visibility: visible;
  }
}
@media screen and (min-width: 630px) {
  .header__burgerNav {
    display: none;
    visibility: hidden;
  }
}
.main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.main #live {
  position: absolute;
  top: 0;
  z-index: -10;
  width: 100%;
  min-height: 800px;
  object-fit: cover;
  filter: brightness(0.7);
}
.main .banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 0rem 8rem 5rem;
}
.main .banner__title {
  margin: 0;
  font-size: 40px;
  color: #7F8C7F;
}
.main .banner__description {
  text-align: justify;
  color: #fff;
}
.main .banner__subtitle {
  margin: 0;
  color: #7F8C7F;
}

.main__img {
  position: absolute;
  bottom: 0;
  top: -15rem;
  right: 0;
  z-index: -5;
  height: 55rem;
  visibility: hidden;
  display: none;
}

.news {
  padding: 5rem 5rem 10rem 5rem;
  background-color: #414D41;
  color: #fff;
  text-align: center;
  position: relative;
  bottom: -5rem;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.news .tel {
  font-weight: bold;
  color: #fff;
}
.news h2, .news p {
  color: #fff;
  text-align: left;
}
.news__container {
  display: flex;
  justify-content: center;
  justify-content: space-around;
  margin-top: 3rem;
}
.news__container img {
  width: 45%;
  border-radius: 30px;
  margin-bottom: 5rem;
  border: 2px solid #7F8C7F;
  pointer-events: none;
}

.apropos {
  position: relative;
  background-color: #7F8C7F;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding-left: 5rem;
}
.apropos__decoration {
  position: absolute;
  top: 0;
}
.apropos__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.apropos__title {
  color: #fff;
  margin-top: 0;
}
.apropos__description {
  color: #fff;
  margin-bottom: 3rem;
  padding-right: 5rem;
}
.apropos__img {
  width: 25rem;
  border-top-right-radius: 30px;
  height: 30rem;
  object-fit: cover;
}
.apropos__decoration {
  height: 10rem;
  position: absolute;
  top: -20%;
}

.forfaits {
  position: relative;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  background-color: #fff;
}
.forfaits h2 {
  align-self: self-start;
}
.forfaits__mediator {
  position: absolute;
  right: 0;
  height: 45rem;
  margin-top: 5rem;
}
.forfaits__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.forfaits__container .forfaits__infos {
  position: relative;
  text-align: center;
  width: 40%;
  height: 30rem;
  overflow: hidden;
  margin: 2rem;
  border-radius: 30px;
}
.forfaits__container .forfaits__infos img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
  position: relative;
  background-color: #7F8C7F;
  filter: brightness(50%);
}
.forfaits__container .forfaits__infos .forfaits__text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.forfaits__container .forfaits__infos .forfaits__text h3 {
  margin: 0;
  color: #fff;
}
.forfaits__container .forfaits__infos .forfaits__text p {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
}
.forfaits #cercle-decoration {
  height: 7rem;
  position: relative;
  align-self: end;
  top: 14rem;
  z-index: 2;
}

.reviews h2 {
  padding-left: 5rem;
  margin-bottom: 25rem;
}
.reviews__students {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5rem;
  flex-wrap: wrap;
  padding: 5rem;
  background-color: #7F8C7F;
}
.reviews__students .reviews__box {
  display: flex;
  flex-direction: column;
}
.reviews__students .high {
  position: relative;
  bottom: 15rem;
}
.reviews__students .reviews__student {
  position: relative;
  bottom: 10rem;
  background-color: #fff;
  border-radius: 60px;
  height: 35rem;
  width: 17rem;
  padding: 1rem;
  margin: 1rem;
  -webkit-box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, 0.34);
  box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, 0.34);
}
.reviews__students .reviews__student img {
  height: 4rem;
  width: 3rem;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.reviews__students .reviews__student p {
  font-weight: bold;
}
.reviews__students .reviews__student p:nth-child(3), .reviews__students .reviews__student p:nth-child(4) {
  color: #7F8C7F;
  margin: 0;
}
.reviews__students .reviews__student p:nth-child(4) {
  font-weight: lighter;
}
.reviews__students #first-doublequote {
  position: relative;
  bottom: 4rem;
  right: 9.5rem;
  z-index: 2;
  height: 6rem;
}
.reviews__students #second-doublequote {
  position: relative;
  top: 68rem;
  left: 9.5rem;
  z-index: 2;
  height: 6rem;
}

@keyframes fromLeftToRight {
  from {
    width: 0;
  }
  to {
    width: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .news img {
    width: 90%;
  }
  .news__container {
    flex-wrap: wrap;
  }

  .apropos {
    padding: 0rem 5vw 10rem 5vw;
    text-align: center;
  }
  .apropos__decoration {
    height: 5rem;
    top: -8%;
    left: 0;
    padding-left: 5vw;
  }
  .apropos h2, .apropos p {
    text-align: left;
  }
  .apropos .apropos__container--right {
    display: none;
    visibility: hidden;
  }
  .apropos .apropos__container--left {
    padding-top: 5rem;
  }
  .apropos .apropos__container--left h2 {
    align-self: baseline;
  }
  .apropos .apropos__container--left .apropos__description {
    padding: 0;
    text-align: justify;
    text-align: center;
  }
  .apropos .apropos__container--left #apropos-mobile-img {
    height: 20rem;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
  }
}
@media screen and (max-width: 525px) {
  .news {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 2rem;
  }
  .news h2 {
    text-align: center;
    font-size: 32px;
  }
  .news p {
    text-align: justify;
  }
  .news img {
    margin-bottom: 2rem;
  }

  .apropos {
    padding-top: 2rem;
  }
  .apropos h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 800px) {
  .apropos .apropos__container--left #apropos-mobile-img {
    display: none;
    visibility: hidden;
  }
}
.lessons__container .lessons__maintitle {
  text-align: center;
  margin-top: 3rem;
}
.lessons__container .lessons__informations {
  display: flex;
  flex-direction: row;
  padding: 5rem 0 5rem 0;
}
.lessons__container .lessons__informations .lessons__box {
  display: flex;
  flex-direction: column;
  width: 60%;
  padding-left: 1rem;
  margin-right: 3rem;
}
.lessons__container .lessons__informations .lessons__box .lessons__picto {
  width: 8rem;
  height: 8rem;
}
.lessons__container .lessons__informations .lessons__image {
  width: 40%;
}
.lessons__container .lessons__informations .lessons__image img {
  width: 100%;
  object-fit: cover;
  height: 38rem;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.lessons__container .lessons__informations .lessons__text {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.lessons__container .lessons__informations .lessons__text--container {
  display: flex;
  flex-direction: column;
  margin-left: 2rem;
}
.lessons__container .lessons__informations .lessons__text--container h2 {
  margin: 0;
  padding: 0;
  font-size: 32px;
}
.lessons__container .lessons__informations .lessons__text--container p {
  margin-top: 0.5rem;
}

.details {
  height: 15rem;
  background-color: #7F8C7F;
  text-align-last: center;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details h2 {
  font-size: 32px;
  color: #fff;
  margin: 0;
}
.details p {
  width: 80%;
}

.lessons__icons {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  animation: apparition 1.5s ease-in-out forwards;
}
.lessons__icons p {
  color: #fff;
}

@keyframes apparition {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
.lessons__imgs {
  height: 4rem;
  justify-content: space-between;
  padding-top: 1rem;
  transition: 300ms;
  width: 75px;
  height: 64px;
}
.lessons__imgs:hover {
  transform: scale(1.1);
}

.prices {
  padding-top: 10rem;
}
.prices__line {
  height: 25rem;
  position: absolute;
  z-index: -1;
}
.prices__circle {
  position: absolute;
  height: 5rem;
  padding: 3rem 15vw;
  align-self: end;
  right: 0;
  margin-top: -12rem;
}
.prices p:first-child {
  font-weight: bold;
}
.prices__infos {
  text-align: center;
}
.prices__infos .prices__titles {
  padding-top: 3rem;
}
.prices__infos .prices__titles p:first-child {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #7F8C7F;
}
.prices__infos .prices__titles p:last-child {
  font-weight: bolder;
  margin-top: 0;
}
.prices__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 5rem 0 12rem 0;
}
.prices__container .prices__card {
  height: 26rem;
  width: 15rem;
  margin: 0 1rem 0 1rem;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  color: #000;
  -webkit-box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, 0.34);
  box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, 0.34);
}
.prices__container .prices__card .prices__titles {
  margin-top: 6rem;
}
.prices__container .prices__card .prices__titles p:first-child {
  font-family: "Clash Display", sans-serif;
  color: #7F8C7F;
  font-size: 2.5rem;
  margin-bottom: 0;
}
.prices__container .prices__card .prices__description {
  margin-top: 5.5rem;
  display: flex;
  align-items: center;
}
.prices__container .prices__card .prices__description span {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.prices__container .prices__card .prices__description span i {
  margin-right: 0.5rem;
}
.prices__container .prices__card a {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.prices__container .prices__card:last-child {
  background-color: #7F8C7F;
  color: #fff;
}
.prices__container .prices__card:nth-child(4) .prices__titles p:first-child {
  color: #fff;
}
.prices__container .prices__card:nth-child(4) #reservation__button {
  background-color: #fff;
  color: #7F8C7F;
}
.prices__container .prices__card:nth-child(4) #reservation__button:hover {
  background-color: #7F8C7F;
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 880px) {
  .prices__card {
    height: 30rem;
  }

  .prices__img {
    height: 60%;
  }
}
@media screen and (max-width: 848px) {
  .reviews h2 {
    margin-bottom: 10rem;
  }
  .reviews__students .high {
    position: static;
  }
}
@media screen and (max-width: 775px) {
  .main__img {
    width: 60%;
  }
  .main .banner {
    margin: 0;
  }
  .main .banner .banner__title, .main .banner .banner__subtitle {
    font-size: 30px;
  }

  #live {
    filter: brightness(0.7);
  }

  .lessons__container {
    flex-direction: column;
    margin: 0;
  }
  .lessons__container .lessons__maintitle h1 {
    font-size: 38px;
    text-align: center;
  }
  .lessons__container .lessons__informations {
    flex-direction: column;
    padding-top: 0;
  }
  .lessons__container .lessons__informations .lessons__image {
    width: 100%;
    height: 30rem;
  }
  .lessons__container .lessons__informations .lessons__image img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 100%;
  }
  .lessons__container .lessons__informations .lessons__box {
    width: 100%;
    padding: 0;
  }
  .lessons__container .lessons__informations .lessons__box .lessons__text {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .lessons__container .lessons__informations .lessons__box .lessons__text .lessons__picto {
    padding-left: 5vw;
  }
  .lessons__container .lessons__informations .lessons__box .lessons__text h2 {
    font-size: 26px;
  }
  .lessons__container .lessons__informations .lessons__box .lessons__text p {
    padding-right: 5vw;
    margin: 0;
  }

  .details {
    height: 100%;
    padding: 2rem 5vw 2rem 5vw;
  }
  .details h2 {
    font-size: 32px;
  }
  .details p {
    width: 100%;
    text-align: center;
  }

  .prices {
    padding: 2rem 5vw 0 5vw;
  }
  .prices__line, .prices__circle {
    display: none;
    visibility: hidden;
  }
  .prices__title {
    font-size: 32px;
  }
  .prices__container {
    margin-bottom: 8rem;
  }
  .prices__container .prices__card {
    margin: 1rem 5vw 1rem 5vw;
  }

  .prices__container {
    flex-direction: column;
    align-items: center;
  }

  .forfaits {
    padding: 5rem 10vw 5rem 10vw;
  }
  .forfaits h2 {
    font-size: 38px;
  }
  .forfaits__mediator {
    display: none;
    visibility: hidden;
  }
  .forfaits__container {
    justify-content: space-evenly;
  }
  .forfaits__container .forfaits__infos {
    margin: 0;
    height: 20rem;
  }

  .reviews h2 {
    font-size: 38px;
    padding-left: 10vw;
  }
  .reviews__students {
    padding: 5rem 10vw 5rem 10vw;
  }
}
@media screen and (max-width: 525px) {
  .main .banner {
    padding: 15rem 5vw 10rem 5vw;
    align-items: center;
    text-align: center;
    margin-right: 0;
  }
  .main .banner a {
    align-self: center;
    margin-top: 2rem;
  }
  .main .banner h1, .main .banner h2 {
    font-size: 26px;
  }

  .forfaits {
    padding: 2rem 5vw 5rem 5vw;
  }
  .forfaits h2 {
    font-size: 32px;
  }
  .forfaits__container {
    flex-direction: column;
    align-items: center;
  }
  .forfaits__container .forfaits__infos {
    margin: 2rem;
    width: 100%;
    height: 25rem;
  }

  .reviews h2 {
    font-size: 32px;
    padding-left: 5vw;
  }
  .reviews__students {
    padding: 5rem 5vw 5rem 5vw;
  }
  .reviews__students #first-doublequote, .reviews__students #second-doublequote {
    display: none;
    visibility: hidden;
  }

  .lessons__banner {
    height: 20rem;
  }

  .lessons__icons {
    flex-wrap: wrap;
  }
  .lessons__icons .lessons__imgs {
    height: 3rem;
  }
  .lessons__icons p {
    font-size: 16px;
    margin: 1rem;
  }

  .lessons__text {
    width: 100%;
    padding: 0;
  }

  .prices__card {
    width: 20rem;
    height: 26rem;
  }
}
@media screen and (max-width: 350px) {
  .lessons__banner {
    height: 25rem;
  }

  .prices__container p {
    font-size: 1rem;
  }

  .prices__card {
    width: 100%;
    padding: 0;
    height: 28rem;
  }
}
.bio {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 3rem 0 5rem;
  height: 50rem;
}
.bio__img {
  height: 45rem;
  object-fit: cover;
  /* margin: 1rem; */
  position: absolute;
  width: 45%;
  z-index: -1;
  right: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.bio__title {
  display: flex;
  flex-direction: column;
  width: 8rem;
}
.bio__title h1 {
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  flex-direction: row;
}
.bio__txtcontainer {
  max-height: 50rem;
  max-width: 45rem;
  margin-bottom: 1rem;
  text-align: justify;
}
.bio__description {
  display: flex;
  flex-direction: column;
  position: relative;
}

.result {
  margin: 8rem 0 8rem 0;
}
.result h2 {
  text-align: center;
  margin: 0.5rem 0 0.5rem 0;
}
.result .results {
  display: flex;
  justify-content: center;
  background-color: #7F8C7F;
  color: #fff;
  padding: 2rem 0 2rem;
  width: 80%;
  border-radius: 30px;
  margin: 0 auto;
}
.result .results__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 2rem 0 2rem;
}
.result .results__container p:first-child {
  margin: 0;
  font-size: 44px;
  font-weight: bolder;
}
.result .results__container p:last-child {
  margin: 0;
}

.band {
  padding: 0 5vw;
}
.band .bands {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10rem;
}
.band .bands a {
  width: 100%;
}
.band .bands__container {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0.5rem;
  border-radius: 30px;
  text-align: center;
  height: 30vh;
}
.band .bands__container img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  border-radius: 30px;
}
.band .bands__container:hover {
  overflow: hidden;
}
.band .bands__container:hover img {
  transform: scale(1.03);
  transition: 300ms;
  filter: brightness(80%);
}
.band .bands__container .bands__infos {
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: 5vh;
  padding: 1rem;
  text-align-last: center;
}
.band .bands__container .bands__infos p:nth-child(2) {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}
.band .bands__container .bands__infos p:last-child {
  text-align: justify;
}

@media screen and (max-width: 1500px) {
  .bio__description {
    flex-direction: column;
  }
  .bio__description .bio__txtcontainer {
    width: 40vw;
  }
}
@media screen and (max-width: 1275px) {
  .music .music__container .music__videos--container {
    margin: 0;
  }
}
@media screen and (max-width: 1000px) {
  .bio {
    flex-direction: column;
    margin: 0;
    height: 100%;
    padding: 0 10vw 0 10vw;
  }

  .bio__img {
    height: 35rem;
    z-index: 0;
    display: none;
    visibility: hidden;
  }

  .bio__img--mobile {
    display: block;
    visibility: visible;
    width: 100%;
    border-radius: 30px;
  }

  .bio__description {
    align-items: center;
    margin-top: 2rem;
  }
  .bio__description .bio__txtcontainer {
    width: 100%;
  }

  .music .music__title, .music .music__videos {
    padding: 0 10vw 0 10vw;
  }
}
@media screen and (min-width: 1000px) {
  .bio__img--mobile {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 810px) {
  .band {
    padding: 0 10vw 0 10vw;
  }
  .band h2 {
    margin-left: 0;
    font-size: 38px;
  }
  .band .bands {
    flex-direction: column;
    align-items: center;
  }
  .band .bands__container {
    width: 100%;
    padding: 1rem 0 1rem 0;
    margin: 0;
  }
}
@media screen and (max-width: 750px) {
  .results {
    flex-direction: column;
  }
  .results__container {
    margin: 1rem 0 1rem 0;
  }
}
@media screen and (max-width: 650px) {
  .music .music__title {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .bio {
    margin-bottom: 10rem;
    padding: 0 5vw 0 5vw;
  }
  .bio .bio__title {
    align-self: baseline;
  }

  .result {
    margin: 0 5vw 10rem 5vw;
    justify-content: center;
  }
  .result h2 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 3rem;
  }
  .result .results {
    margin: 0;
    width: 100%;
  }

  .band, .music {
    padding: 0 5vw 0 5vw;
  }

  .band h2 {
    font-size: 32px;
  }

  .music .music__title, .music .music__videos {
    padding: 0 5vw 0 5vw;
  }
  .music .music__title {
    padding-bottom: 1rem;
  }
  .music h2 {
    font-size: 32px;
  }
  .music__videos--container:last-child {
    display: none;
    visibility: hidden;
  }
}
.bio__container2 {
  background-color: lightgray;
  width: 100%;
  height: 20rem;
  margin: 5rem 0 5rem 0;
}

.music {
  text-align: center;
}
.music__container {
  background-color: #7F8C7F;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.music__title {
  text-align: center;
  margin-bottom: 10rem;
  padding: 0 5vw 0 5vw;
  text-align: justify;
}
.music__videos {
  position: relative;
  display: flex;
  padding: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.music__videos--container:nth-child(1), .music__videos :nth-child(3) {
  margin-left: 10rem;
  align-self: left;
}
.music__videos--container:nth-child(2) {
  margin-right: 10rem;
  align-self: left;
}
.music__videos--container {
  position: relative;
  bottom: 10rem;
}
.music iframe {
  width: 28rem;
  height: 17rem;
  margin: 2rem;
  border: none;
  border-radius: 30px;
}

@media screen and (max-width: 1200px) {
  iframe {
    width: 35rem;
    height: 20rem;
  }
}
@media screen and (max-width: 650px) {
  .music iframe {
    margin: 1rem 0 1rem 0;
    width: 100%;
  }
  .music__videos {
    padding: 0 5vw 0 5vw;
  }
}
@media screen and (max-width: 550px) {
  .bio__container .bio__img {
    height: 23rem;
  }

  .bio__description h1 {
    font-size: 1.5rem;
    width: 10rem;
  }

  .music {
    padding: 0;
  }

  iframe {
    height: 13rem;
  }
}
.main__mentions {
  padding-top: 3rem;
  margin: 2rem;
  min-height: 100%;
  position: relative;
  padding-bottom: 150px;
}
.main__mentions h1 {
  margin-bottom: 0;
}

@keyframes apparition {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #3C3C3B;
  align-items: center;
  flex-wrap: wrap;
}
.footer__container {
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem 5rem;
}
.footer__container img {
  height: 2.5rem;
  margin: 1rem 0rem 2rem 0rem;
}
.footer__container i {
  font-size: 2rem;
  padding: 1rem;
  transition: 300ms;
  opacity: 0.8;
  color: #fff;
}
.footer__container i:hover {
  color: #B5B8A5;
}
.footer__container a {
  text-align: right;
  color: #fff;
}
.footer__legals {
  display: flex;
  flex-direction: row;
}
.footer__legals a {
  padding: 0 1rem 0 1rem;
  color: #fff;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  padding: 0 5rem 0 2rem;
  color: #fff;
  align-items: center;
  text-align: center;
}
.footer__contact i {
  font-size: 3rem;
}
.footer__contact p:nth-child(2) {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.footer__contact p:nth-child(3) {
  margin-top: 0.5rem;
}
.footer .footer__mentions {
  font-size: 1rem;
  transition: 300ms;
  padding-bottom: 0.3rem;
}
.footer .footer__mentions:hover {
  color: #fff;
}

@media screen and (max-width: 950px) {
  .footer {
    flex-direction: column;
    padding: 2rem 0 2rem 0;
  }
  .footer__container, .footer__contact {
    padding: 2rem 5vw 2rem 5vw;
  }
  .footer div:first-child {
    align-items: center;
  }
  .footer__legals {
    flex-direction: column;
    align-items: center;
    padding: 0 5vw 0 5vw;
  }
  .footer__legals a:first-child {
    margin-bottom: 1rem;
  }
}
.hiddenDiv {
  width: 80%;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  bottom: -2rem;
  background-color: #7F8C7F;
  height: 38rem;
  display: flex;
  flex-direction: row;
  display: none;
}
.hiddenDiv .hidden__infos {
  display: flex;
  color: #fff;
  margin: 0 auto;
  margin-top: 3rem;
  justify-content: space-between;
}
.hiddenDiv .hidden__infos h2 {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #fff;
  font-weight: lighter;
}
.hiddenDiv .hidden__infos a {
  color: #fff;
}
.hiddenDiv .hidden__infos a:hover {
  color: #cccec2;
}
.hiddenDiv .hidden__infos p {
  text-align: justify;
  width: 90%;
  margin-top: 0;
}
.hiddenDiv .hidden__infos span {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 5px 0 5px 0;
}
.hiddenDiv .hidden__infos i {
  padding-right: 1rem;
  margin: 5px 0 5px 0;
}
.hiddenDiv .hidden__form {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.hiddenDiv .hidden__form input {
  margin-bottom: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 5px;
  height: 2rem;
  border-radius: 30px;
  padding-left: 1rem;
  border: none;
}
.hiddenDiv .hidden__form textarea {
  margin-top: 0.3rem;
  margin-bottom: 1.3rem;
  height: 5rem;
  border-radius: 30px;
  padding-left: 1rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
}
.hiddenDiv .hidden__form .form__btn {
  background: #fff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
  width: 10rem;
  border: 2px solid #fff;
  color: #7F8C7F;
  border-radius: 30px;
  transition: 300ms;
  cursor: pointer;
  margin: 0 auto;
}
.hiddenDiv .hidden__form .form__btn:hover {
  background-color: #7F8C7F;
  color: #fff;
}
.hiddenDiv .hidden__container:nth-child(1) {
  width: 40%;
  margin-left: 2rem;
}
.hiddenDiv .hidden__container:nth-child(2) {
  width: 50%;
  margin-right: 2rem;
}

@media screen and (max-width: 700px) {
  .hiddenDiv {
    align-items: center;
    padding: 3rem 0 5rem 0;
    width: 90%;
  }
  .hiddenDiv .hidden__infos {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .hiddenDiv .hidden__form {
    margin-top: 0;
  }
  .hiddenDiv .hidden__form textarea {
    height: 10rem;
  }
  .hiddenDiv .hidden__container:nth-child(1), .hiddenDiv .hidden__container:nth-child(2) {
    width: 90%;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .hiddenDiv {
    justify-content: center;
  }
  .hiddenDiv .hidden__container {
    margin: 0 15vw 0 15vw;
  }
  .hiddenDiv .hidden__infos {
    position: absolute;
    z-index: 1;
    width: 100%;
  }
  .hiddenDiv label {
    font-weight: bold;
  }
}
.connexion {
  margin: 5rem 5rem 0 5rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
}
.connexion .connexion__login, .connexion .connexion__signup {
  display: flex;
  flex-direction: column;
  background-color: #414D41;
  padding: 1rem;
  border-radius: 5px;
  color: #fff;
}
.connexion .connexion__login h2, .connexion .connexion__signup h2 {
  margin-top: 1rem;
}
.connexion .connexion__login form, .connexion .connexion__signup form {
  position: relative;
  display: flex;
  flex-direction: column;
}
.connexion .connexion__login form input, .connexion .connexion__signup form input {
  margin-bottom: 1rem;
}

/*# sourceMappingURL=style.css.map */
